@media (min-width: 1024px) {
	.mainHeader {
		height: 90px;
	}

	.headerMenus {
		height: 90px;
	}

	.headerMenus__main {
		height: 90px;
		background: #FFF;
		box-shadow: 0 0 30px 0 rgba(0,0,0,0.06);
	}
}

.headerMenus__mainMenu .entryLink {
	cursor: pointer;
}

.headerMenus__mobile {
	padding: 6px 0 6px 16px;	
}

@media (min-width: 1024px) {
	.footerMenu__menu .entry {
		width: 33.33%;
		max-width: none;
	}
}

.field_wysiwyg .wave {
	margin: 40px auto;
	max-width: 100%;
	height: auto;
	display: block;
}

.landingHero {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	flex-direction: column;

}

.landingHero__item {
	position: relative;
	cursor: default;

}

.landingHero__item__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1));
}

.landingHero__item__background__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0.5;
}

.landingHero__item__content {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	flex-direction: column;
	color: #FFFFFF;
	padding: 60px 30px;
	text-align: center;
}

.landingHero__item__title {
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
}

.landingHero__item__title h2 {
	color: #FFFFFF;
	margin: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.landingHero__item__text {
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	padding-top: 15px;
	transition: opacity 0.2s ease, transform 0.4s ease;
}

.landingHero__item__button {
	margin: 15px auto 0;
}

@media (min-width: 1024px) {
	.landingHero {
		flex-direction: row;
	}

	.landingHero__item {
		width: 33.33%;
		min-height: calc(100vh - 90px);
		min-height: calc(100dvh - 90px);
	}

	.landingHero__item__content {
		padding: 30px;
	}

	.landingHero__item__text {
		transform: translateY(-15px);
		opacity: 0;
	}

	.landingHero__item__title h2 {
		transform: translateY(50%);
	}

	.landingHero__item:hover .landingHero__item__title h2 {
		transform: none;
	}

	.landingHero__item:hover .landingHero__item__text {
		transform: none;
		opacity: 1;
	}
}