/*/////////////////////////////////////////////
//// BEGIN: Page Hero
/////////////////////////////////////////////*/
.section-hero {
	position: relative;
	height: calc(100vh - var(--teak-menu-height));
	/* max-height: 923px; */
	max-height: 1010px;
	padding: var(--teak-menu-height) 0 40px;
	background: var(--teak-seagreen);
	text-align: center;
	display: flex;
	flex-direction: column;
}

.section-hero .section-hero__intro-helper {
	flex-shrink: 0;
	flex-grow: 1;
}

.section-hero .section-wrapper {
	display: flex;
	width: calc(100% - 80px);
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}

.section-hero__image {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: var(--teak-border-radius);
	overflow: hidden;
}

.section-hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-hero__overlay {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
}

.section-hero .section-absolute {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.section-hero .section-hero__header {
	width: 80%;
}

.section-hero .section-hero__header h1 {
	color: var(--teak-mint);
	font-size: 180px;
	font-size: calc(5.29vw + 5.29vh + 1.92vmin);
}

/*.section-hero:has(.section-hero__image) .section-hero__header h1 {
	font-size: 180px;
	font-size: calc(5.35vw + 5.35vh + 2vmin);
}*/

.section-hero .addbutton {
	background-color: var(--teak-evergreen);
	color: var(--teak-mint);
	background-image: url('../images/arrow_right_mint_C7FFC6.svg');
}

.section-hero:has(.section-hero__image) .addbutton {
	background-color: var(--teak-mint);
	color: var(--teak-evergreen);
	background-image: url('../images/arrow_right_evergreen_024732.svg');
}

/* BEGIN: Intro Section
-----------------------------------*/
.section-hero__intro {
	padding: 80px 0 62px;
}

.section-hero__intro .reverse-column {
	flex-direction: row-reverse;
}

.section-hero__intro .col h2 {
	font-size: 45px;
	font-weight: 600;
	line-height: 1.4;
}

.section-hero__intro .col p {
	font-size: 26px;
	line-height: 1.31;
}

.section-hero__intro .col-left {
	width: 493px;
	max-width: 36.12%;
}

.section-hero__intro .col-right {
	width: 812px;
	max-width: 60%;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/

/* BEGIN: Hovers
-----------------------------------*/
@media screen and (min-width: 992px) {
}

/* BEGIN: Responsive
---------------------------------------------*/
@media screen and (min-width: 1920px) {
	
	.section-hero .section-hero__header h1 {
		font-size: 180px;
	}
}

/* BEGIN: Responsive
---------------------------------------------*/
@media screen and (min-width: 992px) and (max-width: 1440px) {

	.section-hero .section-wrapper,
	.section-hero .section-hero__header {
		width: 100%;
	}

	.section-hero .section-hero__header h1 {
		font-size: 90px;
	}
	
	.section-hero__intro .col h2 {
		font-size: 36px;
	}
	
	.section-hero__intro .col p {
		font-size: 24px;
	}
}

/* BEGIN: Responsive - Vertical Monitor
---------------------------------------------*/
@media screen and (min-height: 1200px) {
	
	.section-hero .section-hero__header h1 {
		font-size: 130px;
	}

}

/* BEGIN: iPad / Mobile */
@media screen and (max-width: 991px) {

	.section-hero {
		max-height: 400px;
	}

	.section-hero:has(.section-hero__image) {
		max-height: 500px;
	}

	.section-hero .section-wrapper {
		width: 100%;
        padding: 0 20px;
	}
	
	.section-hero .section-absolute {
		padding-top: 0;
	}
	
	.section-hero .section-hero__header {
		width: 100%;
	}

	.section-hero .section-hero__header h1 {
		font-size: 45px;
	}
	
	.section-hero .button-container {
		padding: 0 20px;
	}
	
	.section-hero__intro {
		padding: 55px 0 50px;
	}
	
	.section-hero__intro:has(.cta-section) {
		padding-bottom: 0;
	}
	
	.section-hero__intro .reverse-column {
		flex-direction: column-reverse;
	}
	
	.section-hero__intro .col {
		width: 100% !important;
		max-width: 100% !important;
	}

	.section-hero__intro .col h2 {
		font-size: 24px;
	}
	
	.section-hero__intro .col p {
		font-size: 18px;
	}
}

/* BEGIN: Mobile
-----------------------------------*/
@media screen and (max-width: 767px) {

	.section-hero .section-hero__header h1 {
		font-size: 34px;
	}
}

/* BEGIN: Mobile
-----------------------------------*/
@media screen and (max-width: 460px) {
}

/* BEGIN: Small Mobile
-----------------------------------*/
@media screen and (max-width: 400px) {
}
/* FIN */