/*
*	Global styling
*/
* {
	font-family: 'lato';
}

img {
	display: inline-block;
}

/*
*	Global header
*/
.global-logo {
	height: 40px;
}

.md-logo {
    height: 75px;
}

/*
*	Global navigation
*/
.arrow:after {
	content: '\25BE';
    font-style: normal;
}

nav *:first-letter {
	text-transform: capitalize;
}

.nav-item {
	display: inline-block;
	position: relative;
}

.sub-menu {
	position: absolute;
	left: 0;
	display: none;
}

.sub-menu .btn {
	width: 100%;
	background-color: #fff;
}

/*
*	Global sub header / jumbotron
*/
.bg-jumbo {
	background-image: url('../files/background.jpg');
}

/*
*	custom colors
*/
.bg-dust {
    background-color: #e5e5e5;
}

.bg-teal {
    background-color: #37BDBF;
}

.bg-orange {
    background-color: #F26524;
}

/*
*	Background classes
*/
.bg-cover { 
	background-size: cover
}

.bg-contain {
	background-size: contain
}

.bg-center {
	background-position: center
}

.bg-top {
	background-position: top
}

.bg-right {
	background-position: right 
}

.bg-bottom {
	background-position: bottom
}

.bg-left {
	background-position: left
}

/*
*	Custom elements
*/
.divider {
	height: 2px;
}

/*
*	Media quries -> control size for phones
*/
@media all and (max-width: 40em) {
	* {
		font-size: 80%;
	}

	.bg-jumbo .btn {
			padding: .5rem 1rem;
	}
}
