@font-face {
	font-family: 'Manual';
	src: url('../fonts/Manual-Regular.woff2') format('woff2'), url('../fonts/Manual-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans';
	src: url('../fonts/OpenSans.woff2') format('woff2'), url('../fonts/OpenSans.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

* {
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
	--c-green: #223931;
	--c-lightgreen: #86b896;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", Arial, sans-serif;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 1rem;
	background-color: var(--c-green);
}

a {
	color: white;
	text-decoration: none;
}

p {
	margin-block: 0 1em; }

img {
	max-width: 100%;
	display: block;
}

header {
	background-color: #223931;
	padding: 35px 20px 30px 20px;
	position: relative;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.35);
}

small {
	font-size: 0.7em;
}

large {
	font-size: 2em;
}

.text-center {
	text-align: center;
}

.main_frame {
	padding: 0 20px 0 20px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.logo {
	display: block;
	margin: auto;
	/* max-width:200px; */
	user-select: none;
	/*
	left:-20px;
	position:relative;
	*/
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo img {
	display: block;
	/* width:100%; */
	pointer-events: none;
}

.lang {
	position: absolute;
	top: 20px;
	right: 20px;
}

.lang img {
	display: block;
	width: 64px;
	pointer-events: none;
}

footer {
	padding: 20px 0 5px 0;
	background-color: #223931;
	color: white;
	text-align: center;
}

footer a, .footer a {
	text-transform: uppercase;
	margin-right: 10px;
	margin-left: 10px;
	line-height: 30px;
}

footer span, .footer span {
	margin-right: 10px;
	margin-left: 10px;
}

a.icon {
	padding-left: 66px;
	background-size: 50px 50px;
	background-position: 0 0;
	background-repeat: no-repeat;
	font-family: 'Manual';
	font-size: 2em;
	line-height: 50px;
	display: inline-block;
}

a.phone {
	background-image: url(../images/icon_phone.svg);
}

a.mail {
	background-image: url(../images/icon_mail.svg);
}

a.whatsapp {
	background-image: url(../images/icon_whatsapp.svg);
}

a.instagram {
	background-image: url(../images/icon_instagram.svg);
}

section {
	padding-top: 4em;
	padding-bottom: 4em;
	background-image: url(../images/bkg2.jpg);
	background-image: url(../images/bkg2.webp);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

h1, h2 {
	font-size: 3.2em;
	/* text-align:center; */
	font-weight: 300;
	text-wrap: balance;
	@media(max-width: 500px) {
		font-size: 2.3em;
	}
}

.frame {
	font-family: 'Manual';
	padding: 20px;
	border: 2px solid var(--c-lightgreen);
	text-align: center;
	margin-top: 0;
}

/* Input elements */
label {
	font-size: 14pt;
}

fieldset {
	border: none;
	padding: 0;
	margin-bottom: 30px;
}

fieldset.textfield label {
	display: block;
}

input[type=text], input[type=number], input[type=password], input[type=email], input[type=phone], textarea, select {
	margin: 0px;
	font-size: 1.5em;
	color: var(--c-lightgreen);
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--c-lightgreen);
	padding: 15px 0px 15px 0px;
	border-radius: 0px;
	box-sizing : border-box;
	/* box-shadow: inset 1px 2px 8px rgba(0, 0, 0, 0.05); */
	-webkit-transition: .18s ease-out;
	-moz-transition: .18s ease-out;
	-o-transition: .18s ease-out;
	transition: .18s ease-out;
	font-family: 'Manual';
	font-weight: 500;
	width: 100%;
	outline-color: rgba(255,255,255,0.5);
	outline: none;
}

input[type=checkbox] {
	width: 26px;
	height: 26px;
	margin: 0px;
	vertical-align: top;
	margin-right: 10px;
}

.form_button, .form_button:link, .form_button:visited, input[type=submit], input[type=button] {
	color: #223931;
	font-size: 1.5em;
	font-weight: bold;
	padding: 20px 30px;
	margin: 0px;
	display: inline-block !important;
	text-align: center;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-decoration: none !important;
	box-sizing : border-box;
	text-align: center;
	line-height: 1;
	margin-bottom: 10px;
	background-size: 20px 10px;
	background-color: var(--c-lightgreen);
	position: relative;
	margin: 0 0px 10px 0px;
	border: none;
	transition: background 0.5s;
	cursor: pointer;
	font-family: 'Manual';
	font-weight: 300;
	text-transform: uppercase;
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.35);
}

.form_button2 {
	background-color: #007878 !important;
	color: white !important;
	padding: 15px !important;
	font-size: 1.1em !important;
	box-shadow: none !important;
}

.form_button:active, input[type=submit]:active, .form_button:hover, input[type=submit]:hover, input[type=button]:active {
	background-color: #223931;
	color: #FFFFFF !important;
	transition: background 0.5s;
}

.form_button2:hover {
	background-color: var(--c-lightgreen) !important;
}

@media only screen and (max-width: 800px) {
	.start_frame .footer, footer {
		font-size:0.8em;
	}
}

@media only screen and (max-width: 500px) {
	h1, h2, h3, a {
		-ms-word-break: break-all;
		word-break: break-all;
		word-break: break-word;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
	}

	header {
		background-color: #223931;
		padding: 4em 1em 1em 1em;
	}

	.logo {
		/* max-width: 50vw; */
		/* position:relative; */
		/* left:-10px; */
		width: 150px !important;
		height: auto !important;
	}

	.start_frame .logo {
		width: 100% !important;
		height: auto !important;
	}
}

h2 {
	font-size: 2.2em;
	text-align: center;
	font-weight: 300;
}

a.icon {
	font-size: 1.3em;
	padding-left: 45px;
	background-size: 32px 32px;
	background-position: 0 0px;
	line-height: 32px;
}

.lang img {
	width: 45px;
}

section {
	padding-top: 30px;
	padding-bottom: 30px;
}

.main_frame {
	padding-left: 10px;
	padding-right: 10px;
}

input[type=text], input[type=number], input[type=password], input[type=email], input[type=phone], textarea, select {
	outline: none;
}

.form_button, .form_button:link, .form_button:visited, input[type=submit], input[type=button] {
	padding: 10px 20px;
}

/* Start */
.start_frame {
	display: grid;
	grid-template-columns: 50% 50%;
	grid-template-rows: 1fr auto;
	min-height: 100vh;
	width: 100%;
	/* overflow: hidden; */
	padding: 0;
}

@media(max-width: 500px) {
	.start_frame {
		padding-top: 2em;
	}
}

.start_frame .left {
	position: relative;
	align-self: center;
	/* justify-self: center; */
	padding: 2em;
	text-align: center;
	/* width: 50%; */
}

.start_frame .left p {
	max-width: 45ch;
	/* width: 100%; */
	/* max-width: 75vw; */
	/* margin: 0; */
}

.start_frame .right {
	/* background-color:#74A0C2; */
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transition: opacity 0.5s;
	/* grid-row: 1 / 3; */
	grid-column: 2;
	position: relative;
}

.start_frame .right .item {
	height: 100vh;
}

.start_frame .right .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	scale: 1;
}

@media(max-width: 600px) {
	.start_frame .right .item {
		height: auto;
		aspect-ratio: 4 / 5;
	}
}

.start_frame .right .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	scale: 1;
}

.start_frame .right .owl-dots {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 1em;
	gap: 0.25em;
}

.start_frame .right .owl-dots button {
	width: 1em;
	aspect-ratio: 1;
	background-color: #223931;
	border-radius: 100%;
	transition: all 0.3s ease;
	opacity: 0.5;
}

.start_frame .right .owl-dots button:hover, .start_frame .right .owl-dots button.active {
	background-color: white;
	opacity: 1;
}

.start_frame .logo {
}

.start_frame .logo img {
}

.start_frame .footer {
	text-align: center;
	grid-column: 1 / 2;
	padding: 1em 0;
}

.start_frame .lang {
	display: none;
}

.form_button2 {
	position: relative;
	right: -10px;
	margin-top: 20px !important;
}

.start header {
	padding: 0;
}

.offerrow {
	display: grid;
	grid-template-columns: 2fr 3fr;
	grid-template-rows: auto 1fr;
	gap: 2em;
}

.offerrow>h1 {
	grid-column: 2;
	margin-bottom: 0;
}

.offerrow>.img-holder {
	grid-row: 1 /3;
	display: grid;
}

.offerrow>.img-holder img {
	grid-row: 1;
	grid-column: 1;
}

.offerrow>.img-holder .overlay {
	color: var(--c-green);
	background-color: var(--c-lightgreen);
	margin: 0;
	font-weight: 600;
	font-size: 2em;
	align-self: start;
	justify-self: start;
	padding: 0.25em 0.5em;
	margin: 1em 0 0;
	position: relative;
	margin-left: -0.5em;
	transform: rotateZ(-4deg);
	grid-row: 1;
	grid-column: 1;
}

.offerrow>.img-holder .overlay:before {
	position: absolute;
	content: "";
	top: 100%;
	left: 0;
	aspect-ratio: 1;
	z-index: -1;
	border-top: 0.22em solid var(--c-lightgreen);
	border-right: 0.22em solid var(--c-lightgreen);
	border-left: 0.22em solid transparent;
	border-bottom: 0.22em solid transparent;
	transform: skewX(-4deg);
}

.offerrow>.img-holder .overlay:after {
	position: absolute;
	content: "";
	inset: 0;
	box-shadow: 0 0 14px #0008;
	filter: drop-shadow(0px 0px 0 black);
}

@media(max-width: 800px) {
	.offerrow {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}
}

.imgrow {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 2em;
}

@media(max-width: 600px) {
	.imgrow {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}
}

.cta {
	background-image: none;
	border-bottom: 2px solid #58b08c;
}

.cta .contactsrow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 3em;
	gap: 1em;
}

@media(max-width: 800px) {
	.cta {
		grid-template-columns: 2fr 3fr;
	}
}

@media(max-width: 500px) {
	.cta {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 800px) {
	.cta .contactsrow {
		display: flex;
		flex-direction: column;
	}

	.cta .contactsrow>*:nth-child(3) {
		order: 4;
	}
}

.highlightrow {
	display: flex;
	width: 100%;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.05em;
	hyphens: auto;
	text-wrap: balance;
}

.highlightrow>* {
	flex-grow: 1;
	text-align: center;
	padding: 1em;
}

.highlightrow>*:first-child {
	background-color: white;
	color: var(--c-green);
}

.highlightrow>*:last-child {
	background-color: var(--c-lightgreen);
	color: var(--c-green);
}

nav {
}

nav>ul {
	display: none;
	position: fixed;
	width: 50%;
	right: 0;
	top: 0;
	z-index: 2;
	height: 100%;
	transition: all 0.66s ease;
	transition-behavior: allow-discrete;
	transform: translateX(100%);
	opacity: 0;
	padding: 2em;
	margin: 0;
	font-size: 2em;
	box-shadow: 0 0 90px #000;
	background: var(--c-green);
	list-style: none;
	flex-direction: column;
	overflow: auto;
}

nav>ul>li {
	margin: 0.5em 0;
}

nav.open>ul {
	display: flex;
	transform: translateX(0);
	opacity: 1;
	@starting-style {
		transform: translateX(100%);
		opacity: 0;
	}
}

nav.open>ul: after {
	content: "";
	position: absolute;
	right: 100%;
	width: 0%;
	background: linear-gradient(270deg, #0008, #0000);
	height: 100%;
	top: 0;
	/* backdrop-filter: blur(2px); */
}

nav>button {
	position: fixed;
	width: 4rem;
	aspect-ratio: 1.2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 0;
	background: none;
	right: 1em;
	top: 1em;
	z-index: 4;
	cursor: pointer;
	padding: 1em;
	transition: all 0.3s ease;
}

nav>button span {
	width: 100%;
	background-color: white;
	height: 4px;
	transition: all 0.3s ease;
	border-radius: 2px;
	position: relative;
	display: grid;
}

nav>button span:nth-child(2):after, nav>button span:nth-child(2):before {
	content: "";
	width: 100%;
	background-color: white;
	height: 4px;
	transition: all 0.3s ease;
	border-radius: 2px;
	transform: rotateZ(45deg) scaleX(0);
	grid-row: 1;
	grid-column: 1
}

nav>button span:nth-child(2):before {
	transform: rotateZ(-45deg) scaleX(0);
}

nav>button:hover span {
	background-color: white;
}

nav.open>button>span {
	background-color: transparent!important;
}

nav.open>button>span:nth-child(2):after {
	transform: rotateZ(45deg) scaleX(1);
}

nav.open>button>span:nth-child(2):before {
	transform: rotateZ(-45deg) scaleX(1);
}

@media(max-width: 600px) {
	nav>button>span {
		background-color: white;
	}

	nav>ul {
		width: 100%;
		overscroll-behavior: contain;
	}
}

@media only screen and (max-width: 600px) {
	.start_frame {
		grid-template-columns: 0.8fr;
		grid-template-rows: auto auto auto;
		display: flex;
		flex-direction: column;
		min-height: unset;
	}

	.start_frame .left {
		/* height:100%; */
	}

	.start_frame .right {
		/* height:300%; */
		grid-column: 1;
		grid-row: 2;
		width: 100%;
		aspect-ratio: 4 /5;
	}

	.start_frame .logo {
	}

	.start_frame .footer {
		bottom: 10px;
	}

	.start_frame .logo img {
		width: 150px !important;
		height: auto!important;
	}

	.form_button2 {
		margin-top: 10px !important;
	}
}

.teasers {
	background: var(--c-lightgreen);
	background: var(--c-green);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	padding: 3.333333vw;
	text-align: center;
	gap: 3.333333vw;

	@media(max-width: 50em){
		grid-template-columns: 1fr 1fr; 
	}
}

.teasers .item {
	/* padding: 1em; */
	display: flex;
	flex-direction: column;
	gap: 1em;
	border: 2px solid var(--c-green);
	/* background: var(--c-lightgreen); */
}

.teasers .item:hover .img-holder img {
	transform: scale(1.1)
}

.teasers .item .img-holder {
	width: 100%;
	aspect-ratio: 3/2;
	overflow: hidden;
}

.teasers .item .img-holder img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease;
}

.teasers .item .img-holder.img-top img {
	object-position: top;
}

.teasers .item .text-holder {
	padding: 1em;
	color: black;
	border: 2px solid white;
	border: 2px solid var(--c-lightgreen);
	color: var(--c-green);
	color:white;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.05em;
	font-family: 'Manual';
	flex-grow: 1;
	align-content: center;
}
