/* HERO SECTION */
.hero_container {
    height: 100vh;
    position: relative;
}

.hero-heading {
    font-size: 150px;
    font-style: italic;
    font-family: "Playfair Display", serif !important;
    margin-top: 300px;
	animation: fadeInUpHero .5s ease-in .4s;
}

.home_label {
	animation: translateXhero .5s ease-in .4s;
}

@keyframes translateXhero {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUpHero {
	from {
		opacity: 0;
		transform: translateY(150px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInHero {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.hero_subheading {
    margin-top: 80px;
	animation: fadeInHero 1s ease-in .4s;
}

.hero-section__underline {
    max-width: 850px;
	animation: underlineAnim .8s ease-in .4s;
}

@keyframes underlineAnim {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

.home_title_label {
    position: absolute;
    font-size: 90px;
    opacity: 5%;
    font-family: "Playfair Display", serif !important;
    font-style: italic;
}

/* END OF HERO SECTION */

@media only screen and (max-width: 1100px) {
    .hero_container {
        max-height: 70vh;
    }

    .hero-heading {
        font-size: 60px;
        margin-top: 70px;
    }

    .hero-section__underline {
        display: none;
    }
}