/*
 * Homepage-specific styles
 */

/* Header ========== */

	header.home {
		padding: 0;
		position: absolute;
		z-index: 99;
		width: 100%;
		background: transparent;
	}

	header.home small {
		font-size: 50%;
		width: 100%;
		display: block;
	}


/* Quote ========== */
	#quotes {
		width: 100%;
		float: left;
		height: calc(100vh - 213px);
		position: relative;
	}

#quotes .owl-carousel .owl-item {
	height: calc(100vh - 160px);
}

#quotes .quote-loop {
	position: relative;
	top: 30%;
	transform: translateY(-50%);
}

#quotes h2 {
	width: 80%;
	margin: 0 auto;
	text-align: center;
	font-size: 36px;
	color: #FFF;
	line-height: 55px;
	font-weight: 600;
}

/* Ball */
.ball{
    width: 3px;
    height: 3px;
    margin-left: 2px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
}

h2:hover .ball{
	animation: bounce 0.5s cubic-bezier(.5,0.05,1,.5);
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes bounce {
	from { transform: translate3d(0, 0, 0);     }
	to   { transform: translate3d(0, 10px, 0);  }
}

/* Banner */
	#banner{
		position: relative;
	}
	#banner .home-banner{
		height: 750px;
		min-height: 350px;
		background: blue;
		padding: 0;
		background-size: cover;
		background-position: center;
	}
		#banner .blue-overlay {
			width: 100%;
			height: 100%;
			background: rgba(9,45,98,0.8);
		}
		#banner .banner-caption{
			text-align: center;
			margin-top: 18em;
			height: 425px;
		}
			#banner h3{
				color: #fff;
				font-weight: 700;
				font-size: 32px;
				line-height: 1.25em;
				font-family: 'Roboto Slab', serif;
				padding: 0 165px;
			}
			#banner a{
				color: #fff;
				border: solid 2px #fff;
				text-decoration: none;
				text-transform: uppercase;
				padding: 10px 26px;
				border-radius: 25px;
				display: inline-block;
				margin-top: 4em;
				-webkit-transition: all 0.3s ease;
				-moz-transition: all 0.3s ease;
				-o-transition: all 0.3s ease;
				transition: all 0.3s ease;
			}
				#banner a:hover{
					background: #748599;
					border-color: #748599;
				}
	#banner .owl-dots{
		text-align: center;
		width: 100%;
		position: absolute;
		z-index: 999;
	}
		#banner .owl-dots .owl-dot{
			width: 16px;
			height: 16px;
			border: 3px solid #fff;
			display: inline-block;
			box-sizing: content-box;
			border-radius: 50%;
			background: #fff;
			margin: 0 5px;
		}
			#banner .owl-dots .owl-dot.active{
				background: transparent;
				border: 3px solid #fff;
			}
	#banner .owl-nav {
		position: absolute;
		top: 380px;
		z-index: 999;
		width: 100%;
	}
		#banner .owl-nav .owl-prev, 
		#banner .owl-nav .owl-next {
			display: inline-block;
			width: 36px;
			height: 36px;
			text-indent: -9999px;
		}
			#banner .owl-nav .owl-prev {
				margin-right: 1em;
				background: url(/wp-content/themes/website-theme/images/SVG/chevron-left.svg) no-repeat center;
				float: left;
			}
			#banner .owl-nav .owl-next {
				background: url(/wp-content/themes/website-theme/images/SVG/chevron-right) no-repeat center;
				float: right;
			}

/* Main ========== */
	.white-bg h2 {
		color: #092d62;
		font-family: 'Roboto Slab', serif;
		font-weight: 700;
		font-size: 30px;
		line-height: 1em;
		text-align: center;
		margin: 0 0 2em 0;
	}
