@charset "UTF-8";
/* =============ABSTRACTS==================== */
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Thin.ttf") format("truetype");
				font-weight: 100;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-ThinItalic.ttf") format("truetype");
				font-weight: 100;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-ExtraLight.ttf") format("truetype");
				font-weight: 200;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf") format("truetype");
				font-weight: 200;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Light.ttf") format("truetype");
				font-weight: 300;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-LightItalic.ttf") format("truetype");
				font-weight: 300;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
				font-weight: 400;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
				font-weight: 400;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
				font-weight: 500;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-MediumItalic.ttf") format("truetype");
				font-weight: 500;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
				font-weight: 600;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf") format("truetype");
				font-weight: 600;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
				font-weight: 700;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-BoldItalic.ttf") format("truetype");
				font-weight: 700;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
				font-weight: 800;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf") format("truetype");
				font-weight: 800;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-Black.ttf") format("truetype");
				font-weight: 900;
				font-style: normal;
				font-display: swap;
}
@font-face {
				font-family: "Poppins";
				src: url("/assets/fonts/Poppins/Poppins-BlackItalic.ttf") format("truetype");
				font-weight: 900;
				font-style: italic;
				font-display: swap;
}
@font-face {
				font-family: "Cyrene";
				src: url("/assets/fonts/Cyrene/CyreneRegularAdvanced.woff2") format("woff2"), url("/assets/fonts/Cyrene/CyreneRegularAdvanced.woff") format("woff"), url("/assets/fonts/Cyrene/CyreneRegularAdvanced.ttf") format("truetype");
				font-weight: 400;
				font-style: normal;
				font-display: swap;
}
/* =============BASE==================== */
.text-sm {
				font-size: clamp(0.63rem, 0.25vw + 0.57rem, 0.88rem);
}

.text-base {
				font-size: clamp(0.88rem, 0.25vw + 0.83rem, 1.13rem);
}

.text-lg {
				font-size: clamp(0.94rem, 0.31vw + 0.88rem, 1.25rem);
}

.text-xl {
				font-size: clamp(1.25rem, 0.94vw + 1.06rem, 2.19rem);
}

.text-2xl {
				font-size: clamp(1.88rem, 1.25vw + 1.63rem, 3.13rem);
}

.font-regular {
				font-weight: 400;
}

.font-medium {
				font-weight: 500;
}

.font-bold {
				font-weight: 700;
}

.text-white {
				color: #FFFFFF;
}

.text-black {
				color: #000000;
}

.text-red {
				color: #DA0021;
}

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

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

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

.uppercase {
				text-transform: uppercase;
}

.bg-white {
				background-color: #FFFFFF;
}

.bg-black {
				background-color: #000000;
}

.bg-gray {
				background-color: #707070;
}

.bg-red {
				background-color: #DA0021;
}

.border-white {
				border: 2px solid #FFFFFF;
}

.border-red {
				border: 2px solid #DA0021;
}

.shadow {
				-webkit-box-shadow: 0 0 10px rgba(0, 3, 6, 0.2);
				        box-shadow: 0 0 10px rgba(0, 3, 6, 0.2);
}

html {
				-ms-text-size-adjust: 100%;
				-webkit-text-size-adjust: 100%;
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
}

body {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				font-weight: 300;
				font-size: 14px;
				line-height: 1.25;
				color: #443A2D;
}

h1 {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				font-weight: 600;
				font-size: 14px;
				line-height: 1.25;
				color: #443A2D;
				margin: 0 0 20px 0;
				/*@include tablet{
				    font-size: 30px;
				}
				@include phone{
				    font-size: 24px;
				}*/
}

h2 {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				font-weight: 600;
				font-size: 14px;
				line-height: 1.25;
				color: #443A2D;
				margin: 0 0 20px 0;
				/*@include tablet{
				    font-size: 24px;
				}
				@include phone{
				    font-size: 20px;
				}*/
}

h3 {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				font-weight: 600;
				font-size: 14px;
				line-height: 1.25;
				color: #443A2D;
				margin: 0 0 20px 0;
				/*@include phone{
				    font-size: 18px;
				}*/
}

h1, h2, h3, .subtitle {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				font-weight: 600;
				padding: 0;
}
h1 a, h2 a, h3 a, .subtitle a {
				text-decoration: none;
}

p {
				margin: 0;
}
p strong, p b {
				font-weight: 600;
}
p:not(p:last-of-type) {
				padding-bottom: 20px;
}

strong, b {
				font-weight: 600;
}

a {
				color: #443A2D;
}

a[href^="mailto:"], a[href^="tel:"] {
				text-decoration: none;
}
a[href^="mailto:"]:hover, a[href^="tel:"]:hover {
				text-decoration: underline;
}

* {
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
				outline: none;
				position: relative;
}

html {
				height: 100%;
				margin: 0;
				padding: 0;
}

body {
				scroll-behavior: smooth;
				height: 100%;
				max-width: 100%;
				margin: 0 auto;
				padding: 0;
				background-color: #F3F0ED;
				overflow-x: hidden;
				opacity: 0;
				-webkit-animation: body-fade-in 0.5s ease-out forwards;
				        animation: body-fade-in 0.5s ease-out forwards;
}

@-webkit-keyframes body-fade-in {
				from {
								opacity: 0;
				}
				to {
								opacity: 1;
				}
}

@keyframes body-fade-in {
				from {
								opacity: 0;
				}
				to {
								opacity: 1;
				}
}
.plg-container {
				width: 100%;
				padding: 0 50px;
}
@media (max-width: 950px) {
				.plg-container {
								padding: 0 20px;
				}
}

main {
				height: 100%;
}

#content {
				height: 100%;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
}

img {
				display: block;
				height: auto;
				width: 100%;
}

.plg-imagecontainer {
				display: block;
				width: 100%;
				overflow: hidden;
}

.error__container a {
				color: unset;
				text-decoration: underline;
}

.swiper {
				height: 100%;
				width: 100%;
}

@-webkit-keyframes fadeIn {
				from {
								opacity: 0;
				}
				to {
								opacity: 1;
				}
}

@keyframes fadeIn {
				from {
								opacity: 0;
				}
				to {
								opacity: 1;
				}
}
.fadeanimation {
				opacity: 0;
				-webkit-animation: 0.5s fadeIn 0.5s ease-out forwards;
				        animation: 0.5s fadeIn 0.5s ease-out forwards;
}

.ratio__portrait {
				position: relative;
				height: 0;
				width: 100%;
				padding-bottom: 150%;
				overflow: hidden;
}
.ratio__landscape {
				position: relative;
				height: 0;
				width: 100%;
				padding-bottom: 70%;
				overflow: hidden;
}
.ratio__landscape.square {
				padding-bottom: 90%;
}
.ratio__square {
				position: relative;
				height: 0;
				width: 100%;
				padding-bottom: 100%;
				overflow: hidden;
}
.ratio__fullscreen {
				position: relative;
				height: 100%;
				width: 100%;
				overflow: hidden;
}
.ratio__banner {
				position: relative;
				height: 0;
				width: 100%;
				padding-bottom: calc(100svh - 228px);
				overflow: hidden;
}
.ratio__thumbnail {
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
				-webkit-transition: all 0.4s ease;
				transition: all 0.4s ease;
}
.ratio__logo {
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 100%;
				-o-object-fit: contain;
				   object-fit: contain;
				-webkit-transition: all 0.4s ease;
				transition: all 0.4s ease;
}
.ratio__video {
				position: absolute;
				top: 0;
				left: 0;
				height: 100%;
				width: 124%;
}

/* Icons */
@font-face {
				font-family: "slick";
				font-weight: normal;
				font-style: normal;
				src: url("../fonts/slick/slick.eot");
				src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
}
/* Slider */
.slick-loading .slick-list {
				background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
				position: absolute;
				display: block;
				height: 24px;
				width: 24px;
				line-height: 0px;
				font-size: 0px;
				cursor: pointer;
				background: transparent;
				color: transparent;
				top: 50%;
				-webkit-transform: translate(0, -50%);
				transform: translate(0, -50%);
				padding: 0;
				border: none;
				outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
				outline: none;
				background: transparent;
				color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
				opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
				opacity: 0.5;
}

.slick-prev:before, .slick-next:before {
				font-family: "slick";
				font-size: 20px;
				line-height: 1;
				color: white;
				opacity: 1;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
				left: -25px;
}
[dir=rtl] .slick-prev {
				left: auto;
				right: -25px;
}
.slick-prev:before {
				display: block;
				content: "";
				width: 24px;
				height: 24px;
				background-image: url("../images/arrow-left.png");
				background-size: contain;
				background-repeat: no-repeat;
				background-position: center center;
}
[dir=rtl] .slick-prev:before {
				content: "";
				background-image: url("../images/arrow-right.png");
				background-size: contain;
				background-repeat: no-repeat;
				background-position: center center;
				width: 24px;
				height: 24px;
}

.slick-next {
				right: -25px;
}
[dir=rtl] .slick-next {
				left: -25px;
				right: auto;
}
.slick-next:before {
				display: block;
				width: 24px;
				height: 24px;
				content: "";
				background-image: url("../images/arrow-right.png");
				background-size: contain;
				background-repeat: no-repeat;
				background-position: center center;
}
[dir=rtl] .slick-next:before {
				content: "";
				background-image: url("../images/arrow-left.png");
				background-size: contain;
				background-repeat: no-repeat;
				background-position: center center;
				width: 24px;
				height: 24px;
}

/* Dots */
.slick-dotted .slick-slider {
				margin-bottom: 30px;
}

.slick-dots {
				position: absolute;
				bottom: 0;
				list-style: none;
				display: block;
				text-align: center;
				padding: 0;
				margin: 0;
				width: 100%;
}
.slick-dots li {
				position: relative;
				display: inline-block;
				height: 20px;
				width: 20px;
				margin: 0 5px;
				padding: 0;
				cursor: pointer;
}
.slick-dots li button {
				border: 0;
				background: transparent;
				display: block;
				height: 20px;
				width: 20px;
				outline: none;
				line-height: 0px;
				font-size: 0px;
				color: transparent;
				padding: 0;
				cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
				outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
				opacity: 1;
}
.slick-dots li button:before {
				position: absolute;
				top: 0;
				left: 0;
				content: "•";
				width: 20px;
				height: 20px;
				font-family: "slick";
				font-size: 16px;
				line-height: 20px;
				text-align: center;
				color: #DA0021;
				opacity: 0.5;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
				color: #DA0021;
				opacity: 1;
}

/* SLICK Slider */
.slick-slider {
				position: relative;
				display: block;
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
				-webkit-touch-callout: none;
				-webkit-user-select: none;
				-moz-user-select: none;
				-ms-user-select: none;
				user-select: none;
				-ms-touch-action: pan-y;
				touch-action: pan-y;
				-webkit-tap-highlight-color: transparent;
}

.slick-list {
				position: relative;
				overflow: hidden;
				display: block;
				margin: 0;
				padding: 0;
}
.slick-list:focus {
				outline: none;
}
.slick-list.dragging {
				cursor: pointer;
				cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
				-webkit-transform: translate3d(0, 0, 0);
				transform: translate3d(0, 0, 0);
}

.slick-track {
				position: relative;
				left: 0;
				top: 0;
				display: block;
				margin-left: auto;
				margin-right: auto;
}
.slick-track:before, .slick-track:after {
				content: "";
				display: table;
}
.slick-track:after {
				clear: both;
}
.slick-loading .slick-track {
				visibility: hidden;
}

.slick-slide {
				float: left;
				height: 100%;
				min-height: 1px;
}
[dir=rtl] .slick-slide {
				float: right;
}
.slick-slide img {
				display: block;
}
.slick-slide.slick-loading img {
				display: none;
}
.slick-slide {
				display: none;
}
.slick-slide.dragging img {
				pointer-events: none;
}
.slick-initialized .slick-slide {
				display: block;
}
.slick-loading .slick-slide {
				visibility: hidden;
}
.slick-vertical .slick-slide {
				display: block;
				height: auto;
				border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
				display: none;
}

/* =============COMPONENTS==================== */
.plg-header {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				z-index: 101;
}
.plg-header-container {
				padding: 50px;
				-webkit-transition: padding 0.5s ease;
				transition: padding 0.5s ease;
}
@media (max-width: 950px) {
				.plg-header-container {
								padding: 50px 20px;
				}
}
.plg-header-logo {
				width: 100%;
				height: auto;
				max-width: 190px;
				-webkit-transition: all 0.5s ease;
				transition: all 0.5s ease;
}
.plg-header-inner {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
}
.plg-header-hamburger {
				z-index: 100;
				display: none;
				margin-right: 20px;
				cursor: pointer;
}
@media (max-width: 950px) {
				.plg-header-hamburger {
								display: inline-block;
								position: fixed;
								top: 50px;
								right: 20px;
				}
}
@media (max-width: 750px) {
				.plg-header-hamburger {
								margin-right: 0;
				}
}
.plg-header-hamburger-inner {
				height: 22px;
				width: 22px;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				-webkit-box-align: end;
				    -ms-flex-align: end;
				        align-items: flex-end;
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
}
.plg-header-hamburger-line {
				width: 22px;
				height: 2px;
				background-color: #443A2D;
				margin-bottom: 3px;
				border-radius: 3px;
				-webkit-transition: all 0.5s ease;
				transition: all 0.5s ease;
}
.plg-header-hamburger-line:last-child {
				margin-bottom: 0;
}
.plg-header.active .plg-header-hamburger-line {
				position: absolute;
}
.plg-header.active .plg-header-hamburger-line:nth-child(1) {
				-webkit-transform: rotate(45deg);
				        transform: rotate(45deg);
				margin-bottom: 0;
}
.plg-header.active .plg-header-hamburger-line:nth-child(2) {
				opacity: 0;
				width: 0;
				-webkit-transition: none;
				transition: none;
}
.plg-header.active .plg-header-hamburger-line:nth-child(3) {
				-webkit-transform: rotate(-45deg);
				        transform: rotate(-45deg);
				margin-bottom: 0;
}
.plg-header.active .menu {
				visibility: visible;
				opacity: 1;
				pointer-events: auto;
}
@media (max-width: 950px) {
				.plg-header.scrolled .plg-header-container {
								padding-top: 20px;
								padding-bottom: 20px;
								background-color: #F3F0ED;
				}
}
@media (max-width: 950px) {
				.plg-header.scrolled .plg-header-logo {
								max-width: 130px;
				}
}

.plg-header-spacer {
				position: relative;
				display: block;
				height: 250px;
				-webkit-box-flex: 0;
				    -ms-flex: 0 0 250px;
				        flex: 0 0 250px;
}

@media (max-width: 950px) {
				#menu {
								position: fixed;
								top: 0;
								left: 0;
								right: 0;
								bottom: 0;
								background-color: #F3F0ED;
								z-index: 99;
								padding: 50px;
								display: -webkit-box;
								display: -ms-flexbox;
								display: flex;
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								-webkit-box-pack: center;
								    -ms-flex-pack: center;
								        justify-content: center;
								-webkit-box-align: center;
								    -ms-flex-align: center;
								        align-items: center;
								visibility: hidden;
								pointer-events: none;
				}
				#menu ul {
								margin: 0;
								padding: 0;
								list-style-type: none;
				}
				#menu ul li {
								text-align: center;
								margin: 0 0 10px 0;
				}
}
@media (max-width: 950px) {
				#menu.active {
								visibility: visible;
								pointer-events: auto;
				}
}

html.is-animating .swup-transition-main {
				-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
				transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
				transition: opacity 0.5s ease, transform 0.5s ease;
				transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

html.is-leaving .swup-transition-main {
				opacity: 0;
				-webkit-transform: translateY(20px);
				        transform: translateY(20px);
}

html.is-rendering .swup-transition-main {
				opacity: 0;
				-webkit-transform: translateY(-20px);
				        transform: translateY(-20px);
}

.menu {
				z-index: 100;
}
.menu ul {
				margin: 0;
				padding: 0;
				list-style-type: none;
}
.menu ul li {
				margin: 0;
				padding: 0;
}
.menu ul li a {
				font-family: "Cyrene", "Helvetica", "Arial", sans-serif;
				font-size: 40px;
				line-height: 0.875;
				text-decoration: none;
				font-weight: 400;
				text-transform: uppercase;
				-webkit-transition: color 0.3s ease;
				transition: color 0.3s ease;
				cursor: pointer;
				color: #E0DCD7;
}
.menu ul li a.active, .menu ul li a:hover {
				color: #443A2D;
				text-decoration: none;
}

.template-home .menu ul li a {
				color: #443A2D;
}
.template-home .menu ul li a.active, .template-home .menu ul li a:hover {
				color: #E0DCD7;
}

.plg-navigation-spacer {
				width: 270px;
				-ms-flex-negative: 0;
				    flex-shrink: 0;
}
@media (max-width: 950px) {
				.plg-navigation-spacer {
								display: none;
				}
}

.plg-footer {
				/*position: fixed;
				bottom: 50px;
				left: 50px;
				right: 50px;*/
				width: 100%;
				margin: auto 0 0 0;
}
.plg-footer-inner {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: end;
				    -ms-flex-align: end;
				        align-items: flex-end;
				padding: 50px;
}
@media (max-width: 950px) {
				.plg-footer-inner {
								padding: 50px 20px;
				}
}
.plg-footer-inner-item.footernav {
				/*position: fixed;
				bottom: 50px;
				left: 50px;*/
}
.plg-footer-inner-item.footercontactinfo {
				text-align: right;
				margin: 0 0 0 auto;
}
.plg-footer-inner-item.footercontactinfo * {
				color: #000000;
}
.plg-footer a {
				text-decoration: none;
}
.plg-footer a:hover {
				text-decoration: underline;
}
.plg-footer {
				/*.siteby{
				  color: #D7D5D3;
				  a{
				      color: #D7D5D3;
				  }
				}*/
}

.template-home .plg-footer {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
}

.template-portfolio .plg-footer-inner-item.footernav, .template-portfolio-item .plg-footer-inner-item.footernav, .template-inspiration .plg-footer-inner-item.footernav {
				position: fixed;
				bottom: 50px;
				left: 50px;
}

.privacy__container {
				padding: 10px var(--cel);
}

#privacypolicy {
				background: #FFFFFF;
				color: #000000;
}
#privacypolicy a {
				color: #000000;
}

.termsfeed-com---nb-simple {
				max-width: unset !important;
				bottom: 25px !important;
				left: 25px !important;
				right: 25px !important;
}

.cc-nb-main-container {
				font-size: 13px !important;
				background: #000000 !important;
				display: -ms-grid !important;
				display: grid !important;
				-ms-grid-columns: 1fr 1fr !important;
				grid-template-columns: 1fr 1fr !important;
				padding: 20px 50px !important;
}
@media (max-width: 1150px) {
				.cc-nb-main-container {
								padding: 20px 50px !important;
								-ms-grid-columns: 1fr !important;
								grid-template-columns: 1fr !important;
				}
}
.cc-nb-title {
				display: none;
}
.cc-nb-text {
				color: #FFFFFF !important;
				line-height: 1.5 !important;
				font-size: 12px !important;
}
.cc-nb-text-container {
				-ms-grid-column: 1;
				-ms-grid-column-span: 1;
				grid-column: 1/2;
				-ms-grid-row: 2;
				-ms-grid-row-span: 1;
				grid-row: 2/3;
}
@media (max-width: 1150px) {
				.cc-nb-text-container {
								grid-column: unset !important;
								grid-row: unset !important;
				}
}
.cc-nb-okagree {
				background: none !important;
				border: none !important;
				color: #FFFFFF !important;
}
.cc-nb-okagree:hover {
				background: #000000 !important;
				color: #FFFFFF !important;
}
.cc-nb-reject {
				background: none !important;
				border: none !important;
				color: #FFFFFF !important;
				opacity: 40% !important;
}
.cc-nb-changep {
				color: #000000 !important;
				background: rgba(255, 255, 255, 0.7) !important;
}
.cc-nb-buttons-container {
				-ms-grid-column: 2;
				-ms-grid-column-span: 1;
				grid-column: 2/3;
				-ms-grid-row: 1;
				-ms-grid-row-span: 2;
				grid-row: 1/3;
				display: -webkit-box !important;
				display: -ms-flexbox !important;
				display: flex !important;
				-webkit-box-orient: horizontal !important;
				-webkit-box-direction: normal !important;
				    -ms-flex-direction: row !important;
				        flex-direction: row !important;
				-webkit-box-pack: end !important;
				    -ms-flex-pack: end !important;
				        justify-content: flex-end !important;
				-webkit-box-align: center !important;
				    -ms-flex-align: center !important;
				        align-items: center !important;
				height: 100% !important;
}
@media (max-width: 1150px) {
				.cc-nb-buttons-container {
								grid-column: unset !important;
								grid-row: unset !important;
								-webkit-box-orient: vertical !important;
								-webkit-box-direction: reverse !important;
								    -ms-flex-direction: column-reverse !important;
								        flex-direction: column-reverse !important;
				}
}
.cc-nb-buttons-container button {
				text-transform: uppercase !important;
				letter-spacing: 0.075em !important;
				font-size: 10px !important;
				outline: none !important;
				-ms-flex-item-align: end !important;
				    align-self: flex-end !important;
				padding: 10px 20px !important;
}
@media (max-width: 1150px) {
				.cc-nb-buttons-container button {
								width: 100% !important;
				}
}

.cc-cp-foot-save {
				background: #000000 !important;
}
.cc-cp-foot-save:focus {
				outline: none !important;
				border: none !important;
}

form,
input,
label,
textarea {
				-webkit-box-sizing: border-box;
				        box-sizing: border-box;
}

form {
				list-style-type: none;
				margin: 0;
				padding: 0;
				width: 100%;
}
form .error {
				color: crimson;
}
form .error::-webkit-input-placeholder {
				color: crimson;
}
form .error::-moz-placeholder {
				color: crimson;
}
form .error:-ms-input-placeholder {
				color: crimson;
}
form .error::-ms-input-placeholder {
				color: crimson;
}
form .error::placeholder {
				color: crimson;
}
form .error + label {
				color: crimson;
				font-weight: bold;
}
form .error + label a {
				color: crimson !important;
}
form .error a {
				color: crimson;
}
form .error .checkbox:before {
				border: 0.5px solid crimson;
}
form {
				/*.form-grid {
					display: grid;
					grid-template-columns: repeat(2, 1fr);
					gap: 30px;

					.form-group {
						grid-column: span 1;

						&.w-full {
							grid-column: span 2;
						}
					}
				}*/
}
form .form-group {
				margin-top: 10px;
}
form .form-group:first-child {
				margin-top: 0;
}
form .plg-arrowbutton {
				margin-top: 20px;
				text-transform: uppercase;
}
form .plg-arrowbutton button {
				text-transform: uppercase;
}

.form-group {
				padding: 12px 20px 12px 20px;
				border: 1px solid #443A2D;
				border-radius: 8px;
				margin-top: -1px;
				position: relative;
}
.form-group.policy {
				position: relative;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
				margin-top: 0;
}
.form-group.policy a {
				color: #443A2D;
				text-decoration: underline;
}

.noline {
				border: none;
				padding: 0;
				margin-top: 0;
}

label,
input {
				-webkit-transition: color 0.4s ease, background-color 0.1s ease-in-out;
				transition: color 0.4s ease, background-color 0.1s ease-in-out;
}

input,
textarea {
				background-color: transparent;
				border: none;
				color: #443A2D;
				font-size: 14px;
				margin: 0;
				outline: none;
				width: 100%;
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				color: #443A2D;
				font-size: 14px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				color: #443A2D;
				font-size: 14px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				color: #443A2D;
				font-size: 14px;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				color: #443A2D;
				font-size: 14px;
}
input::placeholder,
textarea::placeholder {
				font-family: "Poppins", "Helvetica", "Arial", sans-serif;
				color: #443A2D;
				font-size: 14px;
}
input:focus,
textarea:focus {
				color: #443A2D;
				background-color: transparent;
				-webkit-box-shadow: none;
				        box-shadow: none;
}
input,
textarea {
				/*&.error {
				  padding: 10px 0 2em 0;
				}*/
}
input[name=website],
textarea[name=website] {
				font-size: 0;
}

textarea {
				resize: none;
}

.error-text {
				/*position: absolute;
				bottom: -30px;
				left: 0;*/
				margin: 0;
				font-size: 14px;
				color: crimson;
}
.error-text.error-policy {
				position: relative;
				bottom: 0;
				left: 0;
}

#policy {
				-webkit-appearance: none;
				-moz-appearance: none;
				appearance: none;
				border: none;
				display: inline-block;
				width: 0;
				height: 0;
				position: absolute;
				left: -99999999px;
				color: #443A2D;
				font-size: 14px;
}
#policy:checked + label:after {
				content: "✕";
				line-height: 1.1;
				background: transparent;
				position: absolute;
				top: 1px;
				left: -24px;
				width: 15px;
				height: 15px;
				text-align: center;
				color: #443A2D;
}

.checkbox {
				position: relative;
				margin-left: 25px;
				cursor: pointer;
				color: #443A2D;
				font-size: 14px;
}
.checkbox:before {
				content: "";
				position: absolute;
				width: 15px;
				height: 15px;
				border: 1px solid #443A2D;
				border-radius: 4px;
				left: -25px;
				top: 0px;
}
.checkbox a {
				color: #443A2D !important;
				text-decoration: none !important;
}

.label--required:after {
				content: "*";
				color: crimson;
				margin-left: 5px;
}

.button {
				margin-top: 20px;
}

button {
				background-color: transparent;
				border: none;
				margin: 0;
				padding: 0;
				text-align: inherit;
				font: inherit;
				border-radius: 0;
				-webkit-appearance: none;
				   -moz-appearance: none;
				        appearance: none;
				color: #F3F0ED;
				cursor: pointer;
}

.newsletter-form input::-webkit-input-placeholder, .newsletter-form textarea::-webkit-input-placeholder, .property-form input::-webkit-input-placeholder, .property-form textarea::-webkit-input-placeholder {
				color: #443A2D;
}

.newsletter-form input::-moz-placeholder, .newsletter-form textarea::-moz-placeholder, .property-form input::-moz-placeholder, .property-form textarea::-moz-placeholder {
				color: #443A2D;
}

.newsletter-form input:-ms-input-placeholder, .newsletter-form textarea:-ms-input-placeholder, .property-form input:-ms-input-placeholder, .property-form textarea:-ms-input-placeholder {
				color: #443A2D;
}

.newsletter-form input::-ms-input-placeholder, .newsletter-form textarea::-ms-input-placeholder, .property-form input::-ms-input-placeholder, .property-form textarea::-ms-input-placeholder {
				color: #443A2D;
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder, .property-form input::placeholder,
.property-form textarea::placeholder {
				color: #443A2D;
}

.fancybox__content {
				padding: 5rem !important;
}
.fancybox__content .carousel__button.is-close {
				top: 0 !important;
				right: 0;
}
.fancybox__content .carousel__button.is-close svg {
				color: #000000;
				-webkit-filter: none;
				        filter: none;
				width: 1.25rem;
				height: 1.25rem;
}

.popup-modal {
				background-color: #FFFFFF;
				max-width: 650px;
				text-align: center;
				color: #443A2D;
				font-size: 16px;
}
@media (max-width: 750px) {
				.popup-modal {
								max-width: 98%;
				}
}

.btnwrap {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				gap: 10px;
}

.plg-arrowbutton {
				display: inline-block;
				text-decoration: none;
				font-size: 14px;
				text-transform: uppercase;
				font-weight: 400;
				cursor: pointer;
}
.plg-arrowbutton:hover {
				text-decoration: none;
}

.button {
				display: inline-block;
				text-decoration: none;
				color: #F3F0ED;
				background-color: #443A2D;
				padding: 12px 40px;
				border-radius: 24px;
				font-size: 14px;
				font-weight: 400;
				cursor: pointer;
}
.button:hover {
				text-decoration: none;
}
@media (max-width: 1150px) {
				.button {
								padding: 10px 25px;
				}
}

/* =============BLOCKS==================== */
/* =============PAGES==================== */
.plg-h1-section {
				position: relative;
				height: 100vh;
}
.plg-h1-section .plg-fullscreen-slideshow {
				position: relative;
				width: 100%;
				height: 100%;
}
.plg-h1-section .plg-fullscreen-slideshow .plg-fullscreen-slideshow-inner {
				position: relative;
				width: 100%;
				height: 100%;
}
.plg-h1-section .plg-fullscreen-slideshow .plg-fullscreen-slideshow-item {
				position: relative;
				height: 100%;
				width: 100%;
}
.plg-h1-section .plg-fullscreen-slideshow .plg-fullscreen-slideshow-item .plg-imagecontainer {
				position: relative;
				width: 100%;
				height: 100%;
}
.plg-h1-section .plg-fullscreen-slideshow .plg-fullscreen-slideshow-item .plg-imagecontainer img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
}
.plg-h1-section .plg-tagline {
				position: fixed;
				top: 50px;
				right: 50px;
				text-transform: uppercase;
				font-weight: 600;
				color: #000000;
}
@media (max-width: 950px) {
				.plg-h1-section .plg-tagline {
								position: absolute;
								top: unset;
								bottom: 50px;
								right: unset;
								left: 20px;
				}
}

.plg-a1-section-grid {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
}
@media (max-width: 950px) {
				.plg-a1-section-grid {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
				}
}
.plg-a1-section-grid-item.text {
				max-width: 375px;
				width: 100%;
}
@media (max-width: 950px) {
				.plg-a1-section-grid-item.text {
								max-width: 100%;
				}
}
.plg-a1-section-grid-item.image {
				max-width: 790px;
				width: 100%;
				padding: 0 130px;
}
@media (max-width: 1150px) {
				.plg-a1-section-grid-item.image {
								padding: 0 50px;
				}
}
@media (max-width: 950px) {
				.plg-a1-section-grid-item.image {
								padding: 0;
								max-width: 100%;
								margin-top: 100px;
				}
}

#plg-textpage h1,
#plg-textpage h2 {
				text-transform: uppercase;
				font-size: 50px;
				line-height: 0.95;
				letter-spacing: 0;
				margin-bottom: 25px;
}
#plg-textpage h1 span,
#plg-textpage h2 span {
				display: block;
}
#plg-textpage h3 {
				text-transform: uppercase;
				font-size: 16px;
				line-height: 1;
				letter-spacing: 0;
}
#plg-textpage p + h2 {
				margin-top: 50px;
}

#plg-textpage .txt {
				padding: 200px 0;
				text-align: center;
}

.plg-p1-section-inner {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
}

.plg-images-grid {
				display: -ms-grid;
				display: grid;
				width: 100%;
				max-width: 1200px;
				-ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
				grid-template-columns: repeat(6, 1fr);
				gap: 40px 20px;
}
@media (max-width: 750px) {
				.plg-images-grid {
								-ms-grid-columns: (1fr)[4];
								grid-template-columns: repeat(4, 1fr);
				}
}
.plg-images-grid-item {
				position: relative;
				-ms-grid-column-span: 2;
				grid-column: span 2;
				text-decoration: none;
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: vertical;
				-webkit-box-direction: normal;
				    -ms-flex-direction: column;
				        flex-direction: column;
}
.plg-images-grid-item .projecttitle {
				font-weight: 600;
				margin: 0 0 10px 0;
}
.plg-images-grid-item .plg-imagecontainer {
				position: relative;
				width: 100%;
				height: 0;
				padding-bottom: 136%;
}
.plg-images-grid-item .plg-imagecontainer img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				-o-object-fit: cover;
				   object-fit: cover;
}
.plg-images-grid-item.horizontalthumb {
				-ms-grid-column-span: 4;
				grid-column: span 4;
}
.plg-images-grid-item.horizontalthumb .plg-imagecontainer {
				-webkit-box-flex: 1;
				    -ms-flex-positive: 1;
				        flex-grow: 1;
				height: 100%;
				padding-bottom: 0;
}
@media (max-width: 750px) {
				.plg-images-grid-item.horizontalthumb .plg-imagecontainer {
								height: 0;
								padding-bottom: 66%;
				}
}

.plg-pi1-section-grid {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: start;
				    -ms-flex-align: start;
				        align-items: flex-start;
}
@media (max-width: 950px) {
				.plg-pi1-section-grid {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
				}
}
.plg-pi1-section-grid-item.text {
				max-width: 375px;
				width: 30%;
				position: sticky;
				top: 250px;
				left: 0;
}
@media (max-width: 950px) {
				.plg-pi1-section-grid-item.text {
								position: relative;
								top: unset;
								left: unset;
								width: 100%;
				}
}
.plg-pi1-section-grid-item.image {
				width: 70%;
				padding: 0 130px;
}
@media (max-width: 1150px) {
				.plg-pi1-section-grid-item.image {
								padding: 0 50px;
				}
}
@media (max-width: 950px) {
				.plg-pi1-section-grid-item.image {
								padding: 0;
								margin-top: 100px;
								width: 100%;
				}
}
.plg-pi1-section-grid-item.image .plg-imagecontainer {
				position: relative;
				width: 100%;
				height: auto;
				margin-bottom: 20px;
}
.plg-pi1-section-grid-item.image .plg-imagecontainer img {
				position: relative;
				width: 100%;
				height: auto;
}
.plg-pi1-section-grid-item.image .plg-imagecontainer:last-child {
				margin-bottom: 0;
}

.plg-i1-section-inner {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: end;
				    -ms-flex-pack: end;
				        justify-content: flex-end;
}

.plg-s1-section-grid {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
				-webkit-box-align: center;
				    -ms-flex-align: center;
				        align-items: center;
				padding: 0 0 0 50px;
}
@media (max-width: 950px) {
				.plg-s1-section-grid {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
								padding: 0;
				}
}
.plg-s1-section-grid-item.text {
				max-width: 375px;
				width: 30%;
}
@media (max-width: 950px) {
				.plg-s1-section-grid-item.text {
								max-width: 100%;
								width: 100%;
								padding: 0 20px;
				}
}
.plg-s1-section-grid-item.image {
				width: 66.666%;
				padding: 0;
}
@media (max-width: 950px) {
				.plg-s1-section-grid-item.image {
								width: 100%;
								padding-left: 20px;
								margin-top: 100px;
				}
}
.plg-s1-section-grid-item.image .plg-s1-slideshow {
				width: 100%;
}
.plg-s1-section-grid-item.image .plg-s1-slideshow .slick-list {
				margin: 0 -10px;
				padding-right: 50px;
}
.plg-s1-section-grid-item.image .plg-s1-slideshow .slick-slide {
				margin: 0 10px;
}

.plg-c1-section-grid {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-orient: horizontal;
				-webkit-box-direction: normal;
				    -ms-flex-direction: row;
				        flex-direction: row;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: space-between;
}
@media (max-width: 950px) {
				.plg-c1-section-grid {
								-webkit-box-orient: vertical;
								-webkit-box-direction: normal;
								    -ms-flex-direction: column;
								        flex-direction: column;
				}
}
.plg-c1-section-grid-item.text {
				max-width: 375px;
				width: 100%;
}
@media (max-width: 950px) {
				.plg-c1-section-grid-item.text {
								max-width: 100%;
								width: 100%;
				}
}
.plg-c1-section-grid-item.image {
				max-width: 790px;
				width: 100%;
				padding: 0 130px;
}
@media (max-width: 1150px) {
				.plg-c1-section-grid-item.image {
								padding: 0 50px;
				}
}
@media (max-width: 950px) {
				.plg-c1-section-grid-item.image {
								padding: 0;
								margin-top: 100px;
								width: 100%;
				}
}