/* ===================================
	Hero section
====================================== */
.hero-section-wrapper {
	position: relative;
	height: 100vh;
	overflow: hidden;
}
.hero-section-wrapper .hero-image {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.hero-section-wrapper .hero-image img {
	transition: all 450ms cubic-bezier(0, .5, .61, .99);
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    width: 100%;
}
.hero-section-wrapper:hover .hero-image img {
	filter: grayscale(100%) contrast(110%) blur(0);
    transform: translate3d(-20px, 20px, 0) scale3d(1.05, 1.05, 1.05);
}
.hero-section-wrapper .hero-overlay {
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.hero-section-wrapper .content-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 1;
}
.hero-section-wrapper .reveal-item-hover {
	flex: 0 0 auto;
	width: 25%;
	padding: 0 15px;
	position: relative;
	-webkit-transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
	transition: all 400ms cubic-bezier(0.37, 0, 0.63, 1);
}
.hero-section-wrapper .content-wrapper .reveal-item-hover:last-child {
	text-align: right;
}
.hero-section-wrapper .title-wrapper {
	flex: 0 0 auto;
	width: 50%;
	padding: 0 15px;
	text-align: center;
}
.hero-section-wrapper .title-wrapper .title {
	font-size: 6.25rem;
    line-height: 5.70rem;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 0;
}
.hero-section-wrapper .reveal-item-hover .title {
	font-size: 19px;
	line-height: 26px;
	color: #fff;
	margin: 0 15%;
	border-bottom: 1px solid;
	display: inline-block;
}
.hero-section-wrapper .reveal-item-hover .hover-reveal {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    transition: opacity .25s, transform .51s cubic-bezier(.215, .61, .355, 1), -webkit-transform .51s cubic-bezier(.215, .61, .355, 1);
    width: auto;
}
.hero-section-wrapper .reveal-item-hover:hover .hover-reveal {
	opacity: 1;
}
.hero-section-wrapper .reveal-item-hover .hover-reveal .hover-reveal__inner {
    position: relative;
    overflow: hidden;
}
.hero-section-wrapper .reveal-item-hover .hover-reveal .hover-reveal__img {
    will-change: transform;
}
.hero-section-wrapper .reveal-item-hover .hover-reveal .hover-reveal__img img {
	border-radius: 10px;
}
.hero-section-wrapper .hero-bottom-text {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	padding-bottom: 3%;
}
.hero-section-wrapper .hero-bottom-text .text-inner {
	display: flex;
	align-items: center;
}
.hero-section-wrapper .hero-bottom-text .offer-text,
.hero-section-wrapper .hero-bottom-text .offer-action {
	font-size: 13px;
	line-height: 26px;
	text-transform: uppercase;
	color: #fff;
	display: block;
	transition: all 0.3s;
	margin-bottom: 0;
}
.hero-section-wrapper .hero-bottom-text .offer-text a,
.hero-section-wrapper .hero-bottom-text .offer-action a {
	color: inherit;
}
.hero-section-wrapper .hero-bottom-text .offer-text {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	padding-right: 25px;
	margin-right: 25px;
}
.hero-section-wrapper .hero-bottom-text .offer-text:last-child {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}

/* Responsive CSS Here */
@media (max-width: 1399px) {
	.hero-section-wrapper .title-wrapper {
		width: 58%;
	}
	.hero-section-wrapper .reveal-item-hover {
		width: 21%;
	}
	.hero-section-wrapper .reveal-item-hover .title {
		margin: 0;
	}
}
@media (max-width: 1199px) {
	.hero-section-wrapper .reveal-item-hover .hover-reveal {
		display: none;
	}
	.hero-section-wrapper .title-wrapper .title {
	    font-size: 5rem;
	    line-height: 5rem;
	}
	.hero-section-wrapper .title-wrapper {
    	width: 66.66666667%;
    }
    .hero-section-wrapper .reveal-item-hover {
		width: 16.66666667%;
	}
	.hero-section-wrapper .reveal-item-hover .title {
		font-size: 16px;
	}
}
@media (max-width: 991px) {
	.hero-section-wrapper .reveal-item-hover {
		display: none;
	}
	.hero-section-wrapper .reveal-item-hover.disable-hover-reveal-tablet {
		display: block;
	}
	.hero-section-wrapper .title-wrapper {
        width: 100%;
    }
    .hero-section-wrapper .reveal-item-hover {
    	flex: 0 0 auto;
    	width: 100%;
    }
    .hero-section-wrapper .content-wrapper {
    	flex-direction: column;
    }
    .hero-section-wrapper .reveal-item-hover,
    .hero-section-wrapper .content-wrapper .reveal-item-hover:last-child {
    	text-align: center;
    }
    .hero-section-wrapper .title-wrapper {
    	margin: 25px 0;
    }
}
@media (max-width: 767px) {
	.hero-section-wrapper .hero-bottom-text .text-inner {
		flex-direction: column;
	}
	.hero-section-wrapper .hero-bottom-text .offer-text {
		border-right: 0;
		padding: 0;
		margin: 0;
	}
	.hero-section-wrapper .title-wrapper .title {
	    font-size: 4rem;
	    line-height: 4rem;
	}
}
