/* Hero Banner 
*
*
*
*/
.hero {
	position: relative;
	width: 100%;
	background-color: #ddd;
}
.hero-image:before {
	content: "";
	display: block;
	padding-bottom: 42.2272%;
}

.hero-image .container {
	position: absolute;
	top: 50%;
	left: auto;
	right: 50%;
	transform: translate(50%, -50%);
}

.hero .stairs-container {
	position: absolute;
	bottom: 0;
	left: 0;
}

.hero .stairs-container > div:nth-child(1) {
	background-image: linear-gradient(to right, #0b6961, #006353);
}
.hero .stairs-container > div:nth-child(2) {
	display: none;
}
.hero .stairs-container > div:nth-child(3) {
	background-image: linear-gradient(to right, #3c809e, #006353);
}

/* #09e2e7 #1eb6c5 */
/* #1eb6c5 #3094ab */
/* #3094ab #3c7c98 */

.hero .hero-image[style] {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.hero .hero-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	color: white;
	font-weight: 700;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}
.hero-title {
	font-size: 3.125rem;
	letter-spacing: 1px;
	line-height: 1.34;
}
.hero-description {
	font-size: 1.5625rem;
	margin-bottom: 15px;
	line-height: 1.32;
}
.hero-search-box {
	position: relative;
	width: calc(100% - 40px);
	max-width: 556px;
	margin: auto;
	font-weight: 400;
}
.hero-search-box:before {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	background-color: white;
	opacity: 0.8;
	z-index: 0;
	border-radius: 4px;
}
.hero-search-box form {
	position: relative;
	z-index: 1;
	display: flex;
}
.hero-search-box form input {
	position: relative;
	z-index: 1;
	background-color: transparent;
	padding: 0 0 0 15px;
	height: 3.125rem;
	border: 0;
	flex: 1 1 auto;
	font-size: 1.05rem;
}
.hero-search-box form button {
	width: 60px;
	border: 0;
	background-color: transparent;
	background-image: url("../img/home-search-icon.png");
	background-repeat: no-repeat;
	background-position: center center;
}
.hero-search-box form button:focus,
.hero-search-box form input:focus {
	outline: none;
	outline: 0;
}

.hero-search-box form input::-webkit-input-placeholder {
	color: #333;
	text-overflow: ellipsis;
}
.hero-search-box form input:-ms-input-placeholder {
	color: #333;
	text-overflow: ellipsis;
}
.hero-search-box form input::placeholder {
	color: #333;
	text-overflow: ellipsis;
}
.hero-search-box form input[placeholder] {
	text-overflow: ellipsis;
}

.hero-mouse-scroll {
	display: flex;
	justify-content: center;
	margin-top: 62px;
}
.hero-mouse-scroll .mouse {
	width: 31px;
	position: relative;
	border: 4px solid white;
	border-radius: 28px;
}
.hero-mouse-scroll .mouse:before {
	content: "";
	display: block;
	padding-bottom: 180%;
}
.hero-mouse-scroll .mouse:after {
	content: "";
	display: block;
	width: 20%;
	height: 25%;
	background: white;
	border-radius: 100px;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	animation: mouse 1.5s infinite;
}
@keyframes mouse {
	0% {
		opacity: 1;
		top: 10%;
	}
	100% {
		opacity: 0;
		top: 70%;
	}
}

/* 
*
*
* End Hero Banner */

@media (max-width: 767px) {
	.hero {
		height: 457px;
	}
	.hero .stairs-container > div {
		height: 30px;
	}
	.hero-title {
		font-size: 2.1875rem;
	}
	.hero-description {
		font-size: 1.0625rem;
		line-height: 1.1176;
	}
	.hero-search-box form input {
		font-size: 1rem;
	}
	.hero-search-box {
		width: 100%;
	}
	.hero .hero-image[style] {
		background-position: 24% center;
	}
}
