/*
 *	### Body
 */

body {
	background: #fff;
	font-family: 'Open Sans', sans-serif;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a:hover {
	text-decoration: none;
}

/*
 *	### Main
 */

main[role="main"] {
	position: relative;
	z-index: 10;
	background: #fff;
	height: 100%;
}

/*
 * Carousel
 */

.carousel-item {
	height: 100vh;
	min-height: 640px;
	background: no-repeat center center scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.carousel-item p.lead {
	font-weight: 700;
	font-size: 1.75rem;
}

.carousel-item p {
	color: #fff;
}

.carousel-caption {
	width: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	padding-bottom: 10px;
	background: rgba(0, 0, 0, 0.45);
}

.carousel-item .btn {
	margin-bottom: 5px;
}

.carousel-item .btn:not(:last-child) {
	margin-right: 10px;
}

/*
 *	### Media Queries
 */

@media only screen and (max-width: 767px) {
	.carousel-caption p.lead {
		line-height: 1;
	}

	.carousel-caption [class*="mt"] {
		margin-top: 0.5rem !important;
	}
}