/*
* Created by CeLa
* Copyright by Amdre GmbH
* Main Theme CSS
*/

/* 
 * Montserrat Latin 
 */
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 200;
	src: url('../fonts/montserrat-200.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/montserrat-300.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat-regular.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/montserrat-800.woff2') format('woff2');
}
@font-face {
	font-display: swap;
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/montserrat-900.woff2') format('woff2');
}

/*
 * Default styles
 */
:root {
	--base-color: #252c2f;
	--pri-color: #386562;
	--sec-color: #007b8e;
	--thd-color: #007b8e;
}

/*
 * Base styles
 */
html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat';
	font-weight: 400;

	color: var(--base-color);
}


/*
 * Headline styles
 */
.sppb-section.heading > .sppb-row-container .sppb-title-heading,
.sppb-section.heading > .sppb-container-inner .sppb-title-heading {
	margin-bottom: 0 !important;
	font-weight: 800 !important;
	text-transform: uppercase;
}
.sppb-section.heading:not(.light) > .sppb-row-container .sppb-title-heading,
.sppb-section.heading:not(.light) > .sppb-container-inner .sppb-title-heading {
	color: var(--pri-color);
}
.sppb-section.heading > .sppb-row-container h2.sppb-title-heading,
.sppb-section.heading > .sppb-container-inner h2.sppb-title-heading {
	font-size : clamp(2rem, 5vw, 3rem);
}
.sppb-section.heading > .sppb-row-container .sppb-title-subheading,
.sppb-section.heading > .sppb-container-inner .sppb-title-subheading {
	font-size : clamp(1.25rem, 5vw, 2rem) !important;
	text-transform: uppercase;
}

.sppb-addon.heading > .sppb-addon-title {
	color: var(--pri-color);
	font-weight: 800;
	text-transform: uppercase;
}
.sppb-addon.heading > h2.sppb-addon-title {
	font-size: 2.5rem;
}

/*
 * Text styles
 */
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.text-bold {
	font-weight: 800;
}
.text-left {
	text-align: left ! important;
}
.text-xs {
	font-size: 0.875rem;
}
.text-sm {
	font-size: 1rem;
}
.text-md {
	font-size: 1.125rem;
}
.text-lg {
	font-size: 1.25rem;
}
.text-xl {
	font-size: 1.5rem;
}

strong {
	font-weight: 800;
}
@media(min-width: 768px){
	.two-column .sppb-addon-content {
		column-count: 2;
		column-gap: 30px;
	}
	.three-column .sppb-addon-content {
		column-count: 3;
		column-gap: 30px;
	}
}

ul.list-checkmark {
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.list-checkmark li {
	position: relative;
	margin-bottom: 4px;
	padding-left: 32px;
}
ul.list-checkmark li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../images/checkmark-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

/*
 * Colors
 */
.base-color {
	color: var(--base-color);
}
.pri-color {
	color: var(--pri-color);
}
.sec-color {
	color: var(--sec-color);
}
.thd-color {
	color: var(--thd-color);
}

/*
 * Content sizes
 */
.sppb-column.content-xs,
.sppb-column.content-sm,
.sppb-column.content-md,
.sppb-column.content-lg,
.sppb-column.content-xl {
	margin: 0 auto;
}
.sppb-column.content-xs {
	max-width: 480px;
}
.sppb-column.content-sm {
	max-width: 600px;
}
.sppb-column.content-md {
	max-width: 768px;
}
.sppb-column.content-lg {
	max-width: 992px;
}
.sppb-column.content-xl {
	max-width: 1140px;
}

/*
 * Section styles
 */
@media(min-width: 600px){
	.section-xs > .sppb-row-container {
		max-width: 600px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 768px){
	.section-sm > .sppb-row-container {
		max-width: 768px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 900px){
	.section-md > .sppb-row-container {
		max-width: 900px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 1140px){
	.section-lg > .sppb-row-container {
		max-width: 1140px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 600px){
	.content-xs {
		max-width: 600px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 768px){
	.content-sm {
		max-width: 768px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 900px){
	.content-md {
		max-width: 900px !important;
		margin: 0 auto !important;
	}
}
@media(min-width: 1140px){
	.content-lg {
		max-width: 1140px !important;
		margin: 0 auto !important;
	}
}

/*
 * Layout styles
 */
@media (min-width: 1200px) {
    .sppb-row-container {
        max-width: 1320px !important;
    }
}
@media (min-width: 992px) {
	#offcanvas-toggler {
		display: none !important;
	}
}
.offcanvas-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 
 * Header styles
 */

#sp-header {
	position: fixed;
	top: 50px;
	right: 10%;
	left: 10%;
	width: 80%;
	background-color: transparent;
	box-shadow: none;
	height: inherit !important;
	transition: all ease-in-out .25s;
	z-index: 1001;
}
#sp-header.scrolled {
	background-color: rgba(255,255,255,.75);
	border: 1px solid rgba(255,255,255,.85) !important;
	backdrop-filter: blur(5px);
}
#sp-header > .container {
	max-width: 100% !important;
}
@media (min-width: 1400px) {
	#sp-header > .container {
		max-width: 80%;
	}
}
/* Logo styles */
#sp-logo .sp-column .logo {
	height: auto;
	margin: 15px;
}
#sp-logo .sp-column .logo a img {
	transition: all ease-in-out .25s;
}
#sp-header:not(.scrolled) #sp-logo .sp-column .logo a img {
	width: 15vw;
	min-width: 175px;
	height: auto !important;
}
#sp-header.scrolled #sp-logo .sp-column .logo a img {
	width: 6vw;
	height: auto !important;
}
/* Navbar styles */
#sp-menu nav.sp-megamenu-wrapper {
	width: 100%;
	justify-content: end;
}
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent {
	margin: 0 !important;
	float: none !important;
	width: 100%;
	max-width: 1140px;
	background-color: rgba(255,255,255,0);
	transition: all ease-in-out .25s;
	border: 1px solid transparent;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
@media(min-width: 992px){
	#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent {
		display: flex !important;
	}	
	#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li {
		flex: 1;
		text-align: center;
	}
}
#sp-menu nav.sp-megamenu-wrapper ul.sp-megamenu-parent > li > a {
	font-size: 1.25rem;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Header section */
.header-section {
	position: relative;
	z-index: 95;
}
.header-image-outer .sppb-container-inner {
	position: relative;
	z-index: 100;
}
.header-image .sppb-addon-single-image-container {
	width: 100%;
}
.header-image .sppb-addon-single-image-container img {
	object-fit: cover;
	object-position: 50% bottom !important;
	width: 100%;
	height: auto;
	min-height: 500px;
}
.social-links-outer {
	position: absolute;
	right: 50px;
	bottom: 75px;
	width: 75px;
	z-index: 105;
	height: auto;
}
.social-links-header .sppb-icons-group-list {
	margin: 0 !important;
	padding: 0 !important;
}
.social-links-header .sppb-icons-group-list li a {
	border: 0 !important;
	font-size: 2rem;
	line-height: 1;
}
.social-links-header .sppb-icons-group-list li a,
.social-links-header .sppb-icons-group-list li a:visited {
	color: rgba(255,255,255,1) !important;
}
.social-links-header .sppb-icons-group-list li a:hover,
.social-links-header .sppb-icons-group-list li a:active,
.social-links-header .sppb-icons-group-list li a:focus {
	color: rgba(255,255,255,.6) !important;
}


/*
 * Footer section
 */
.social-links .sppb-icons-group-list {
	margin: 0 !important;
	padding: 0 !important;
}
.social-links .sppb-icons-group-list li a {
	border: 0 !important;
	font-size: 2rem;
}
.social-links .sppb-icons-group-list li a,
.social-links .sppb-icons-group-list li a:visited {
	color: rgba(255,255,255,1) !important;
}
.social-links .sppb-icons-group-list li a:hover,
.social-links .sppb-icons-group-list li a:active,
.social-links .sppb-icons-group-list li a:focus {
	color: rgba(255,255,255,.6) !important;
}
/* Navbar */
.footer-navbar .menu li {
	margin: 0 5px !important;
}
.footer-navbar .menu li:not(:first-child) {
	border-left: 2px solid var(--pri-color);
	padding-left: 10px;
}
.footer-navbar .menu li a {
	font-size: 1rem;
	font-weight: 500;
}

/*
 * Main section
 */
.main-section {
	position: relative;
	z-index: 95;
}
.main-section:before {
	content: '';
	position: absolute;
	top: -50px;
	bottom: 0;
	left: 0;
	right: 0;
	height: auto;
	width: 100%;
	z-index: 100;
	background-color: var(--pri-color);
	clip-path: polygon(0 50px, 100% 0%, 100% calc(100% - 50px), 0% 100%);
}
.main-section > .sppb-container-inner {
	padding: 0 30px;
	position: relative;
	z-index: 105;
}
@media(min-width: 992px){
	.main-section > .sppb-container-inner > .sppb-row > div:nth-child(1) {
		display: flex;
		justify-content: end;
	}
	.main-section > .sppb-container-inner > .sppb-row > div:nth-child(1) > .sppb-column  {
		max-width: 600px !important;
	}
	.offer-text {
		text-align: right !important;
	}
}

.offer-addon {
	display: flex;
	flex-direction: column;
}
@media (max-width: 479px){
	.offer-addon {
		margin-bottom: -60px;
	}
	.offer-addon .sppb-image-content-title br {
		border: 5px solid lime;
		display: none;
	}	
}
@media (min-width: 480px){
	.offer-addon {
		margin-bottom: -100px;
	}
}
.offer-addon .sppb-addon-image {
	order: 2;
}
.offer-addon .sppb-addon-body {
	order: 1;
}
.offer-addon .sppb-addon-body .sppb-image-content-title {
	font-weight: 800;
	text-transform: uppercase;
	font-size : clamp(1.5rem, 5vw, 3rem);
}
.offer-addon .sppb-addon-body .sppb-image-content-subtitle {
	font-weight: 800;
	color: rgba(255,255,255,.2);
	white-space: nowrap;
	line-height: .6;
	text-transform: uppercase;
}
@media(max-width: 991px){
	.offer-addon .sppb-addon-body .sppb-image-content-subtitle {
		font-size: 12vw;
	}
}
@media(min-width: 992px){
	.offer-addon .sppb-addon-body .sppb-image-content-subtitle {
		font-size: 7.5vw;
	}
}


/*
 * Home
 * Building section
 */
.building-section {
	position: relative !important;
	z-index: 105 !important;
}
.building-outer {}
@media(max-width: 1460px){
	.building-outer {}
}
.building-outer > .sppb-column-addons {
	display: block !important;
	position: relative;
	width: 1440px !important;
	margin: 0 auto;
	padding-right: 50px;
	padding-left: 50px;
	z-index: 95;
}
.custom-dropdown .dropdown-toggle {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	text-align: left;
	line-height: 1;
}
.custom-dropdown .dropdown-toggle {
	font-weight: 900;
	text-transform: uppercase;
	font-size: 1.125rem;
	border: 2px solid var(--pri-color);
	color: var(--pri-color);
}
.custom-dropdown .dropdown-toggle:before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url(../images/checkmark.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	transform: translate(calc(-100% - 5px), 10px);
}
.custom-dropdown .dropdown-toggle:after {
	display: none;
}
.custom-dropdown .dropdown-menu {
	min-width: 300px;
	margin-top: 4px !important;
	padding: 10px 15px;
	font-size: .875rem !important;
	border: 0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.custom-dropdown .dropdown-menu li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 2px;
	font-size: 1rem;
}
.custom-dropdown .dropdown-menu li:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 14px;
	height: 14px;
	background-image: url(../images/checkmark-grey.svg);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
@media(max-width: 991px){
	.alarm-dropdown,
	.electricity-dropdown,
	.smart-dropdown,
	.antenna-dropdown,
	.solar-dropdown,
	.lights-dropdown,
	.ground-dropdown {
		margin-bottom: 15px;
	}
	.custom-dropdown .btn {
		display: block;
		width: 280px;
	}
	.custom-dropdown .dropdown-menu {
		margin-left: 300px !important;
		margin-top: 0% !important;
		background-color: rgba(255,255,255,1);
		transform: translateY(-0px) !important;
	}
}
@media(max-width: 576px){
	.custom-dropdown .dropdown-menu{
		position: relative !important;
		margin-left: 0px !important;
	}
	.custom-dropdown .btn{
		 width: 100%;
	}
}
@media(min-width: 992px){
	.alarm-dropdown,
	.electricity-dropdown,
	.smart-dropdown,
	.antenna-dropdown,
	.solar-dropdown,
	.lights-dropdown,
	.ground-dropdown,
	.upgrade-dropdown {
		position: absolute;
		z-index: 105;
	}
	.lights-dropdown {
		top: -6%;
		left: 14%;
	}
	.solar-dropdown {
		top: -12%;
		left: 46%;
	}
	.antenna-dropdown {
		top: -4%;
		right: 15%;
	}
	.smart-dropdown {
		top: 12%;
		right: -2%;
	}
	.electricity-dropdown {
		bottom: -40px;
		left: 15%;
	}
	.alarm-dropdown {
		bottom: -14%;
		left: 35%;
	}
	.ground-dropdown {
		bottom: -8%;
		right: 32%;
	}
	.upgrade-dropdown {
		bottom: -2%;
		right: 6%;
	}
	.alarm-dropdown:before,
	.electricity-dropdown:before,
	.smart-dropdown:before,
	.antenna-dropdown:before,
	.solar-dropdown:before,
	.lights-dropdown:before,
	.ground-dropdown:before,
	.upgrade-dropdown:before {
		content: '';
		position: absolute;
		width: 10px;	
		height: 10px;
		background-color: var(--pri-color);
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
		
		left: -16px;
		transform: translateX(calc(-50% + 1px));
	}

	.lights-dropdown:before {
		top: calc(100% + 120px);
	}
	.solar-dropdown:before {
		top: calc(100% + 145px);
	}
	.antenna-dropdown:before {
		top: calc(100% + 115px);
	}
	.smart-dropdown:before {
		top: calc(100% + 180px);
	}
	.electricity-dropdown:before {
		top: calc(-100% - 46px);
	}
	.alarm-dropdown:before {
		top: calc(-100% - 70px);
	}
	.ground-dropdown:before {
		top: calc(-100% - 5px);
	}
	.upgrade-dropdown:before {
		top: calc(-100% - 50px);
	}
	.alarm-dropdown:after,
	.electricity-dropdown:after,
	.smart-dropdown:after,
	.antenna-dropdown:after,
	.solar-dropdown:after,
	.lights-dropdown:after,
	.ground-dropdown:after,
	.upgrade-dropdown:after {
		content: '';
		position: absolute;
		background-color: var(--pri-color);
		width: 2px;
		left: -16px;
	}
	.lights-dropdown:after {
		height: 120px;
	}
	.solar-dropdown:after {
		height: 145px;
	}
	.antenna-dropdown:after {
		height: 117px;
	}
	.smart-dropdown:after {
		height: 182px;
	}
	.electricity-dropdown:after {
		height: 95px;
		bottom: 100%;
	}
	.alarm-dropdown:after {
		height: 96px;
		bottom: 100%;
	}
	.ground-dropdown:after {
		height: 50px;
		bottom: 100%;
	}
	.upgrade-dropdown:after {
		height: 75px;
		bottom: 100%;
	}
}
.btn-request {
	position: relative;
	max-width: 375px;
	line-height: 1;
	background-color: var(--pri-color);
	color: #fff;
	text-align: left;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 2rem;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	transform: translateY(30px);
}
.btn-request:after {
	content: '';
	position: absolute;
	width: 38%;
	height: 28px;
	right: 12px;
	bottom: 10px;
	background-image: url(../images/arrov-white.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-size: 100% auto;
}
.btn-request-outer {
	max-width: 1320px;
	margin: 0 auto;
}


/*
 * Views section
 */
.views-section {
	position: relative !important;
	z-index: 95 !important;
}
@media(max-width: 767px){
	.building-views > .sppb-column-addons {
		max-width: 480px;
		margin: 0 auto;
	}
}
@media(min-width: 768px){
	.building-views > .sppb-column-addons {
		display: flex !important;
		gap: 45px;
	}
}
.ground-view-section {
	overflow: hidden;
}
.ground-view-outer {
	padding: 75px;
	-webkit-box-shadow: 0px 0px 125px 150px #fff !important; 
	box-shadow: 0px 0px 125px 150px #fff !important;
	background-color: rgba(255,255,255,1);
}
@media(max-width: 991px){
	.ground-view-section {
		background-size: auto 800px !important;
		background-position: 50% 0 !important;
	}
	.ground-view-outer {
		margin-top: 800px !important;
		max-width: 800px;
		margin: 0 auto;
	}
}

/*
 * Social media section
 */
.social-media-section {}
.btn-social {
	display: inline-flex;
	font-size: 2.5rem;
	font-weight: 900;
	text-transform: uppercase;
}
.btn-social:after {
	content: '';
	width: 90px;
	margin-left: 10px;
	background-image: url(../images/arrov-green.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

/*
 * House types section
 */
.house-types-section {}
.house-types-outer {}
@media(max-width: 991px){
}
@media(min-width: 992px){
	.house-type {
		display: grid;
		grid-gap: 30px;
		grid-template-columns: repeat(2, 40% 60%);
	}
	.house-types-outer > .sppb-column-addons .addon-root-image-content:nth-child(odd) .house-type {
		grid-auto-flow: dense;
		direction: rtl;
	}
	.house-types-outer > .sppb-column-addons .addon-root-image-content:nth-child(even) .house-type {
		grid-auto-flow: dense;
		direction: ltr;
	}
}
.house-type:before {
	display: none;
}
.house-type .sppb-addon-image {
	position: relative;
	margin-bottom: 0;
	z-index: 95;
}
.house-type .sppb-addon-image:before {
	content: '';
	position: absolute;
}
@media(max-width: 991px){
	.house-type .sppb-addon-image:before {
		bottom: 0;
		left: 50%;
		border-bottom: 75px solid #fff;
		border-left: 100px solid transparent;
		border-right: 100px solid transparent;
		transform: translateX(-50%);
	}
	.house-type .sppb-addon-body {
		margin-top: 30px;
	}
}
@media(min-width: 992px){
	.house-type .sppb-addon-image:before {
		top: 50%;
		transform: translateY(-50%);
	}
	.house-types-outer > .sppb-column-addons .addon-root-image-content:nth-child(odd) .house-type .sppb-addon-image:before {
		left: 0;
		border-left: 75px solid #fff;
		border-top: 100px solid transparent;
		border-bottom: 100px solid transparent;
	}
	.house-types-outer > .sppb-column-addons .addon-root-image-content:nth-child(even) .house-type .sppb-addon-image:before {
		right: 0;
		border-right: 75px solid #fff;
		border-top: 100px solid transparent;
		border-bottom: 100px solid transparent;
	}
	.house-type .sppb-addon-image img {
		object-fit: cover;
		object-position: 50% bottom !important;
		width: 100%;
		height: 100%;
	}	
}
.house-type .sppb-addon-body {
	padding: 75px 10%;
	background-color: #efefef;
	font-size: 1.25rem;
}
.house-type .sppb-addon-body .sppb-image-content-title {
	display: block;
	margin-bottom: 0;
	line-height: 1;
	text-align: right;
	color: var(--pri-color);
	font-weight: 900;
	font-size : clamp(2rem, 5vw, 3rem);
	text-transform: uppercase;
}
.house-type .sppb-addon-body .sppb-image-content-subtitle {
	margin-top: -6px;
	line-height: 1;
	text-align: right;
	font-weight: 900;
	font-size : clamp(1.5rem, 5vw, 2.25rem);
	color: #d1d6d7;
}
.house-type .sppb-addon-body .sppb-image-content-text {
	margin-top: 75px;
	text-align: left;
}
.house-type .sppb-addon-body .sppb-image-content-text > h3 {
	margin-bottom: 30px;
	font-weight: 900;
	text-transform: uppercase;
}
.ico-user {}
.ico-user:before {
	content: '\f007';
	float: left;
	margin-right: 12px;
	margin-top: 6px;
	font-weight: 900;
	font-family: "Font Awesome 6 Free";
	line-height: 1;
}
.house-type .sppb-addon-body .sppb-image-content-text .ico-user:before {
	color: var(--pri-color);
	font-size: 3rem;
}

/*
 * Partner section
 */
.partner-section {}
.partner-carousel {
	margin-right: 120px;
	margin-left: 120px;
}
.partner-carousel .sppb-carousel-extended-item img {
	filter: grayscale(1);
	transition: filter ease-in-out .25s;
}
.partner-carousel .sppb-carousel-extended-item:hover img {
	filter: grayscale(0);
}
.partner-carousel .sppb-carousel-extended-nav-control .nav-control {}
.partner-carousel .sppb-carousel-extended-nav-control .nav-control.prev-control {
	margin-left: -100px;
}
.partner-carousel .sppb-carousel-extended-nav-control .nav-control.next-control {
	margin-right: -100px;
}
.partner-carousel .sppb-carousel-extended-outer-stage {
	height: auto !important;
}
.partner-carousel .sppb-carousel-extended-list .sppb-carousel-extended-item {}
.partner-carousel .sppb-carousel-extended-nav-control .prev-control,
.partner-carousel .sppb-carousel-extended-nav-control .next-control {
	background-image: url(../images/arrov-green.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
	overflow: hidden;
}
.partner-carousel .sppb-carousel-extended-nav-control .prev-control i,
.partner-carousel .sppb-carousel-extended-nav-control .next-control i {
	display: none;
}
.partner-carousel .sppb-carousel-extended-nav-control .prev-control {
	margin-left: -100px;
	transform: rotate(180deg);
}
.partner-carousel .sppb-carousel-extended-nav-control .next-control {
	margin-right: -100px;
}

/*
 * Eco section
 */
.eco-section {
	position: relative;
	z-index: 95;
}
@media(max-width: 1199px){
	.eco-section {
		background-size: auto 400px !important;
		background-position: 100% 100% !important;
	}
}
@media(min-width: 1200px){
	.eco-section {
		background-size: 55% auto !important;
		background-position: 100% calc(100% + 60px) !important;
	}
}
.eco-section:before,
.eco-section:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 60px;
	width: 100%;
	z-index: 100;
	clip-path: polygon(0 50px, 100% 0%, 100% 60px, 0% 60px);
}
.eco-section:before {
	top: -50px;
	background-color: var(--pri-color);
}
.eco-section:after {
	bottom: -5px;
	background-color: #fff;
}
.eco-section > .sppb-row-container,
.eco-section > .sppb-container-inner {
	position: relative;
	z-index: 105;
}

@media(max-width: 1199px){
	.eco-info {
		display: flex;
		gap: 30px;
		flex-direction: column-reverse;
	}
	.eco-info .sppb-addon-image {
		max-height: 250px;
		overflow: hidden;
		text-align: right;
		transform: translateY(50%);
	}
	.eco-info .sppb-addon-image img {
		display: inline-block;
		max-height: 100% !important;
		max-width: inherit !important;
		width: inherit !important;
		height: 250px !important;
	}
}
@media(min-width: 1200px){
	.eco-info {
		display: flex;
		gap: 30px;
		flex-direction: row-reverse;
	}
	.eco-info > * {
		flex: 1;
	}
	.eco-info .sppb-addon-image {
		transform: translate(40%, 40%);
	}
}

/*
 * Diary section
 */


@media(min-width: 992px){
	.diary-slider {
		margin-right: 120px;
		margin-left: 120px;
	}
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-item {
	display: flex;
	flex-direction: row-reverse;
}
@media(max-width: 1199px){
	.diary-slider .sppb-carousel-extended-outer-stage {
		height: auto !important;
	}
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-item {
		flex-direction: column;
	}
}
@media(min-width: 1200px){
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-item {
		gap: 30px;
	}
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-item > * {
		flex: 1;
	}
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-item img {
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 0;
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap {
	position: static;
	text-align: left !important;
	align-items: start;
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-heading {
	color: #f3f4f4;
	font-weight: 900;
	font-size : clamp(4rem, 8vw, 8rem);
	line-height: .5	;
	text-transform: uppercase;
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-subheading {
	color: var(--pri-color);
	font-weight: 900;
	font-size : clamp(1.5rem, 6vw, 3rem);
	text-transform: uppercase;
	transform: translateY(-50%);
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description {
	color: var(--base-color);
	line-height: 1.5rem;
	font-size: 1.125rem;
}
.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description > h3 {
	color: var(--pri-color);
	text-transform: uppercase;
	font-weight: 300;
	font-size : clamp(1.25rem, 6vw, 2rem);
}
@media(max-width: 767px){
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description {
		margin-top: -15px;
	}
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description > h3 {
		margin-bottom: 25px;
	}
}
@media(min-width: 768px){
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description {
		margin-top: -30px;
	}
	.diary-slider .sppb-carousel-extended-outer-stage .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description > h3 {
		margin-bottom: 45px;
	}
}
.diary-slider .sppb-carousel-extended-nav-control .prev-control,
.diary-slider .sppb-carousel-extended-nav-control .next-control {
	background-image: url(../images/arrov-green.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
	overflow: hidden;
}
.diary-slider .sppb-carousel-extended-nav-control .prev-control i,
.diary-slider .sppb-carousel-extended-nav-control .next-control i {
	display: none;
}
.diary-slider .sppb-carousel-extended-nav-control .prev-control {
	transform: rotate(180deg);
}
.diary-slider .sppb-carousel-extended-nav-control .next-control {}
@media(max-width: 575px){
	.diary-slider .sppb-carousel-extended-nav-control .prev-control,
	.diary-slider .sppb-carousel-extended-nav-control .next-control {
		-webkit-border-radius: 3px !important;
		-moz-border-radius: 3px !important;
		border-radius: 3px !important;
		background-color: rgba(255,255,255,.6);
		border: 2px solid rgba(255,255,255,.6) !important;
		backdrop-filter: blur(5px);
	}
	.diary-slider .sppb-carousel-extended-nav-control .prev-control {
		margin-left: 0px;
	}
	.diary-slider .sppb-carousel-extended-nav-control .next-control {
		margin-right: 0px;
	}
}
@media(min-width: 576px){
	.diary-slider .sppb-carousel-extended-nav-control .prev-control {
		margin-left: -100px;
	}
	.diary-slider .sppb-carousel-extended-nav-control .next-control {
		margin-right: -100px;
	}
}

/*
 * References section
 */
.references-section {}

.references-slider {}
.references-slider .sppb-carousel-extended-outer-stage {
	height: auto !important;
}

/*
 * Events section
 */
 
.events-section {}

.events-slider {
}
.events-slider .sppb-carousel-extended-outer-stage {
	padding-top: 60px;
	height: auto !important;
}
.events-slider .sppb-carousel-extended-item {
	display: block;
	height: 100% !important;
	min-height: 400px;
	background-color: #fff;
}
.events-slider .sppb-carousel-extended-item .sppb-carousel-extended-content-wrap {
	position: static !important;
	padding: 0px;
	align-items: start;
	justify-content: start;
	height: 100%;
}
.events-slider .sppb-carousel-extended-item .sppb-carousel-extended-content-wrap .sppb-carousel-extended-heading {
	margin-left: 30px;
	margin-right: 30px;
	text-align: left;
	order: 2;
	color: var(--base-color);
	font-size: 1.5rem;
	font-weight: 900;
	text-transform: uppercase;
}
.events-slider .sppb-carousel-extended-item .sppb-carousel-extended-content-wrap .sppb-carousel-extended-subheading {
	position: relative;
	width: 100%;
	margin: 0 !important;
	padding: 0;
	line-height: 1.6;
	transform: translateY(-100%);
	text-align: left;
	color: #fff;
	font-weight: 300;
	font-size: 1.75rem;
	order: 1;
	overflow: hidden;
	display: flex;
}
.events-slider .sppb-carousel-extended-item .sppb-carousel-extended-content-wrap .sppb-carousel-extended-subheading:after {
	content: '';
	vertical-align: middle;
	width: 100%;
	margin-left: 12px;
	margin-right: -100%;
	background-color: #fff;
}
.events-slider .sppb-carousel-extended-item .sppb-carousel-extended-content-wrap .sppb-carousel-extended-description {
	margin-left: 30px;
	margin-right: 30px;
	padding-bottom: 30px;
	text-align: left;
	order: 3;
	color: var(--base-color);
	line-height: 1.6;
}

/*
 * Contact section
 */
.contact-section {}
.contact-section > .sppb-row-container > .sppb-row {
	padding: 45px 60px;
}
@media(min-width: 576px){
	.contact-section > .sppb-row-container > .sppb-row {
		-webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.4); 
		box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.4);
	}
}
.contact-person {
	background-color: var(--pri-color);
	color: #fff;
}
.contact-person .sppb-addon-image {
	margin-bottom: 0;
}
.contact-person .sppb-addon-body {
	padding: 30px;
}
.contact-person .sppb-addon-body .sppb-image-content-title {
	font-weight: 900;
	font-size: 1.35rem;
	text-transform: uppercase;
}
.contact-person .sppb-addon-body .sppb-image-content-subtitle {
	margin-bottom: 15px;
	font-size: 1.15rem;
}
@media(max-width: 1199px){
	.contact-person {
		max-width: 576px;
		margin: 0 auto 30px auto;
	}
}
@media(min-width: 1200px){
	.contact-person {
		margin-right: -30px;
		transform: translateX(-50%);
	}
}

.contact-form {
	padding-top: 30px;
}
.contact-form .rsform-block-anrede {
	display: inline-flex;
	width: 100%;
	border: 1px solid #dedfe0;
	padding: 14px 12px 12px 12px;
}
.contact-form .rsform-block-anrede * {
	font-weight: 500;
}
.contact-form .rsform-block-anrede .form-label {
	margin-right: 15px;
	margin-bottom: 0;
}
.contact-form .formControls .form-control {
	padding: 12px;
	border: 1px solid #dedfe0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.contact-form .formControls .form-control::placeholder {
	color: var(--base-color);
	font-weight: 500;
}
.contact-form .rsform-block-datenschutz {
	padding: 12px;
	border: 1px solid #dedfe0;
	font-weight: 500;
}
.contact-form .rsform-block-datenschutz .form-check-label {
	font-size: 1rem !important;
}
.contact-form .rsform-type-submitbutton {
	text-align: center;
}
.contact-form .rsform-type-submitbutton .btn-primary {
	display: inline-flex;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	border: 0;
	background-color: transparent;
	color: var(--base-color);
	text-transform: uppercase;
	font-size: 2.5rem;
	font-weight: 900;
}
.contact-form .rsform-type-submitbutton .btn-primary:after {
	content: '';
	width: 90px;
	margin-left: 10px;
	background-image: url(../images/arrow-dark.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
.contact-form .rsform-type-hashcash .formControls > button {
	width: 100%;
	padding: 10px;
	background-color: transparent;
	border: 1px solid #dedfe0;
	text-align: left;
}

/*
 * Rights pages
 */
body.page-rights #sp-main #sp-main-body {
	padding-top: 0 !important;
}
body.page-rights #sp-main #sp-main-body > .container {
	max-width: 100% !important;
	padding: 0 !important;

}
body.page-rights #sp-main-body .article-details .article-full-image img {
	object-fit: cover;
	object-position: 50% bottom !important;
	width: 100%;
	height: auto;
	max-height: 800px;
	min-height: 500px;
	border-radius: 0;
}
body.page-rights #sp-main-body .article-details .article-header > h1,
body.page-rights #sp-main-body .article-details .article-header > h2 {
	color: var(--pri-color);
	font-weight: 800;
	margin-bottom: 45px;
	font-size: 3rem;
	text-transform: uppercase;
}