:root {
    --blue140:#113DFA;
    --blue120:#375CFB;
    --blue100:#5D7BFC;
    --blue80:#849BFD;
    --blue20:#E4E9FE;
    --white140:#ffffff;
    --white120:#fcfdfd;
    --white100:#F1F3F5;
    --white80:#E6E9EC;
    --white60:#DADFE4;
    --white40:#C4CBD3;
    --white20:#ADB7C3;
    --white10:#F3F4F6;
    --blk140:#1F252A;
    --blk120:#303841;
    --blk100:#414B58;
    --blk80:#515F6E;
    --blk60:#627285;
    --blk40:#8090A1;
    --blk20:#97A4B2;

    --purple: #af52de;
  	--green: #34c759;
  	--orange: #ff9500;
  	--seablue: #409cff;
  	--skyblue: #64D2FF;
  	--yellow: #ffcc00;
  	--red: #ff3b30;
  	--pink: #ff6482;
  	--brown: #b25000;

    --studio:#C4CBD3;
    --1bed:#FA887B;
    --2bed:#FFE07F;
    --3bed:#8CCDF3;
    --4bed:#C9B2FD;
    --5bed:#FFAF80;
    --penthouse:#E4E9FE;
    --red:#FF453A;
    --radius4:4px;
    --radius6:6px;
    --radius8:8px;
    --radius12:12px;
    --radius16:16px;
    --radius24:24px;

    /*fonts*/
    --fs42:42px;
    --fs34:34px;
    --fs28:28px;
    --fs26:26px;
    --fs24:24px;
    --fs22:22px;
    --fs20:20px;
    --fs18:18px;
    --fs17:17px;
    --fs16:16px;
    --fs15:15px;
    --fs14:14px;
    --fs13:13px;
    --fs12:12px;
    --fs11:11px;
    --shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.05);
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Light.woff2') format('woff2'),
        url('../fonts/Rubik-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Bold.woff2') format('woff2'),
        url('../fonts/Rubik-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Medium.woff2') format('woff2'),
        url('../fonts/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
        url('../fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
body {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: var(--blk140);
  line-height: 1.5;
}
.blk20{
    color: var(--blk20);
}
.blk40{
    color: var(--blk40);
}
.blk60{
    color: var(--blk60);
}
.blk80{
    color: var(--blk80);
}
.blk100{
    color: var(--blk100);
}
.blk120{
    color: var(--blk120);
}
.blk140{
    color: var(--blk140);
}

.bl20{
    color: var(--blue20);
}
.bl40{
    color: var(--blue40);
}
.bl60{
    color: var(--blue60);
}
.bl80{
    color: var(--blue80);
}
.bl100{
    color: var(--blue100);
}
.bl120{
    color: var(--blue120);
}
.bl140{
    color: var(--blue140);
}

.wt10{
    color: var(--white10);
}
.wt20{
    color: var(--white20);
}
.wt40{
    color: var(--white40);
}
.wt60{
    color: var(--white60);
}
.wt80{
    color: var(--white80);
}
.wt100{
    color: var(--white100);
}
.wt120{
    color: var(--white120);
}
.wt140{
    color: var(--white140);
}

.red100{
    color: var(--red);
}
.fs-10{
    font-size: var(--fs10);
}
.fs-12{
    font-size: var(--fs12);
}
.fs-13{
    font-size: var(--fs13);
}
.fs-14{
    font-size: var(--fs14);
}
.fs-16{
    font-size: var(--fs16);
}
.fs-17{
    font-size: var(--fs17);
}
.fs-18{
    font-size: var(--fs18);
}
.fs-22{
    font-size: var(--fs22);
}
.fs-20{
    font-size: var(--fs20);
}
.fs-24{
    font-size: var(--fs24);
}
h2{
    font-size: var(--fs42);
}
h3{
    font-size: var(--fs34);
}
h4{
    font-size: var(--fs28);
}
h5{
    font-size: var(--fs24);
}
h6{
    font-size: var(--fs20);
}
.br4{
    border-radius: var(--radius6) !important;
}
.br6{
    border-radius: var(--radius6) !important;
}
.br8{
    border-radius: var(--radius8) !important;
}
.br16{
    border-radius: var(--radius16) !important;
}
.br24{
    border-radius: var(--radius24) !important;
}
.lh-1{
    line-height: 1.3;
}
.shadow-sm{
    box-shadow: var(--shadow);
}
.bg-wt100{
    background: var(--white100);
}
.bg-orange {
  background: var(--orange);
}
.bg-pink {
  background: var(--pink);
}
.bg-yellow {
  background: var(--yellow);
}
.bg-skyblue {
  background: var(--skyblue);
}
.bg-purple{
  background: var(--purple);
}
.bg-brown {
  background: var(--brown);
}
.bg-red{
  background: var(--red);
}
h1, h2, h3, h4, h5, h6{
  font-weight: 500;
}
.t-h1, .t-h2, .t-h3, .t-h4, .t-h5, .t-h6{
  letter-spacing: 0.5px;
}
a{
	color: var(--blue140);
}
a:hover, a:focus{
	text-decoration: none;
	color: var(--blue140);
}
.text-underline{
    text-decoration: underline !important;
}
.btn{
	font-weight: 500;
	border-radius: 8px;
	font-size: var(--fs18);
	padding: 10px 20px;
	letter-spacing: 0;
}
.btn:hover, .btn:focus{
	box-shadow: none;
	-webkit-box-shadow: none;
}
.t-h1, h1{
	font-size: 56px;
}
.t-h2, h2{
	font-size: 48px;
}
.t-h3, h3{
	font-size: 40px;
}
.t-h4, h4{
	font-size: 32px;
}
.t-h5, h5{
	font-size: 24px;
}
.t-h6, h6{
	font-size: 20px;
}
.fs-20{
	font-size: 20px;
}
.fs-xl{
	font-size: 3rem;
}
.fs-xxl{
	font-size: 4rem;
}
.text-theme{
	color: var(--blue140);
}
.text-dark{
	color: #000 !important;
}
.text-452B00{
	color: #452B00;
}
.section{
	padding: 50px 0;
}
.section h2{
	margin-bottom: 30px;
}
.fw-300{
	font-weight: 300 !important;
}
.fw-400{
	font-weight: 400 !important;
}
.fw-500{
	font-weight: 500 !important;
}
.fw-600{
	font-weight: 600 !important;
}
.fw-700{
    font-weight: 700 !important;
}
.text-wt75{
	color: rgba(255,255,255,0.75);
}
.text-bl80{
	color: var(--blue80); !important;
}
.section video{
	display: block;
	min-height: 450px;
  	object-fit: cover;
}
.bg-dark{
	background: var(--blk140); !important;
}
.hero-banner{
	position: relative;
	text-align: center;
}
.hero-banner > img, .hero-banner > video{
	width: 100%;
	object-position: center;
	object-fit: cover;
	height: 100vh;
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
}
.vimeo-wrapper {
	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	z-index: -1;
  	pointer-events: none;
  	overflow: hidden;
  	background-size: cover;
  	background-repeat: no-repeat;
}

.sb-img .vimeo-wrapper{
	max-height: 860px;
	min-height: 600px;
}
.vimeo-wrapper iframe {
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%, 0%);
   display: block;
}
.vimeo-wrapper-relative, .vimeo-wrapper-relative iframe{
	position: relative;
}
.hero-content{
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#181818+0,181818+25,181818+54,181818+100&0.4+0,0.7+25,0.9+54,1+100 */
	background: linear-gradient(to bottom,  rgba(255,255,255,0.4) 0%,rgba(255,255,255,0.7) 15%,rgba(255,255,255,0.98) 74%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	position: relative;
	z-index: 1;
	padding-top: 50px;
	padding-bottom: 50px;
	height: 100vh;
	display: flex;
	align-items: center;
}
.sb-img-alt{
	min-height: 600px;
  	display: flex;
  	align-items: flex-end;
  	text-align: center;
}
.site-logo{
	display: block;
	padding-bottom: 10vh;
	padding-top: 5vh;
}
.btn-particle{
	position: relative;
}
.btn-particle{
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-anime {
	position: relative;
	z-index: 2;
	background: var(--blk140);
	color: var(--white140);
	border-radius: 80px;
	padding: 12px 20px;
	text-transform: uppercase;
	display: flex;
  	align-items: center;
  	text-align: left;
  	white-space: normal;
  	text-align: center;
}
.btn-anime:hover, .btn-anime:focus{
	box-shadow: none;
	outline: none;
	background: var(--blk140);
	color: var(--white140);
}
.btn-theme, .btn-theme:hover, .btn-theme:focus{
	background: var(--blk140);
	border-color: var(--blk140);
	color: var(--white140);
}
.btn-alt{
	background: var(--white140);
	color: var(--blk140);
	border-radius: 80px;
	text-transform: uppercase;
	box-shadow: 24px 24px 48px 0px rgba(0, 0, 0, 0.12);
}
.btn-alt img{
	vertical-align: top;
	margin-inline: 10px;
}
.btn-alt:hover, .btn-alt:focus{
	background: var(--white140);
	color: var(--blk140);
	border-radius: 80px;
/*	box-shadow: 0px -1.5px 0px 0px #DED8B9, 0px 2.515px 0px 0px #000;*/
}
.btn-anime span{
	display: block;
	line-height: 1.3;
}
.btn-anime small{
	font-size: var(--fs12);
	font-weight: 400;
}
.btn-anime-invert, .btn-anime-invert:hover, .btn-anime-invert:focus{
	background: var(--white140);
	color: var(--blk140);
	box-shadow: 0px -1.5px 0px 0px #DED8B9, 0px 2.515px 0px 0px #000;
}
.btn-anime-invert img{
	filter: invert(100%);
	-webkit-filter: invert(100%);
}
.btn-link, .btn-link:hover, .btn-link:focus{
	color: var(--blue140);
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}
.canvas-container {
	height: auto;
	width: auto;
	padding-top: 50px;
	padding-bottom: 0;
	position: relative;
	margin: 0px auto 30px auto;
	max-width: 436px;
}
.canvas-container canvas{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 0;
}

#countdown li {
  display: inline-block;
  font-size: 1rem;
  list-style-type: none;
  padding-right:3vw;
  text-transform: uppercase;
  text-align: center;
}

#countdown li span {
  display: block;
  font-size: 2.75rem;
  line-height: 1;
  font-weight:500;

}
.overlay{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(253, 255, 254, 0.25) 0%, rgba(253, 255, 254, 0.75) 50%, #FDFFFE 100%);
	padding: 6vw 0;
}
.overlay.no-bg{
	background: transparent;
}
.overlay.highlight, .highlight{
	background: rgba(31, 37, 42, 0.8);
}
.overlay.noGrad{
	background: rgba(255, 255, 255, 0.7);
}
.tourSlide .tour-col iframe {
	object-fit: cover;
	height: calc(100vh - 120px);
	width:100%;
	display: block;
}
.tourSlides .tour-col iframe {
	object-fit: cover;
	height: 400px;
	width:100%;
	display: block;
}
.tour-col {
	width: 100%;
	position: relative;
	background: var(--white140);
}
.tour-col iframe {
	opacity: 1;
}
.active .tour-col iframe {
	opacity:1;
}
.tourSlide .play-btn, .tour-col .play-btn{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.tourSlide .play-btn img, .tour-col .play-btn img{
	width: 50px;
	object-fit: contain;
}
.nl-overflow {
	overflow: hidden;
}
.nl-overflow .owl-carousel .owl-stage-outer {
	overflow: visible;
}
.owl-nav {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
	height: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.owl-carousel .owl-nav button.owl-prev {
	background: url("../img/arrow.png") no-repeat center center;
	background-size: 18px;
	width: 18px;
	margin-left: 10px;
}
.owl-carousel .owl-nav button span {
	font-size: 55px;
	color: var(--white140);
	opacity: 0;
}
.owl-carousel .owl-nav button.owl-next {
	background: url("../img/arrow.png") no-repeat center center;
	background-size: 18px;
	width: 18px;
	transform: rotate(180deg);
	margin-right: 10px;
}
.bg-gradient{
	background: linear-gradient(254deg, #BD9D68 0%, #AE7921 61.28%);
}
.card-transparent{
	background: transparent;
}
.card.card-transparent{
	background: transparent;
	border:none;
}
.accordion-faq .card-header{
	text-transform: uppercase;
	border-bottom: 1px solid var(--blk20);
	padding-bottom: 10px !important;
	background: transparent;
	margin-bottom: 10px;
	text-align: left;
	padding-right: 0;
}
.accordion-faq .card-header a{
	padding-right: 40px;
	display: block;
	color: var(--blk140);
}
.accordion-faq .card-header p{
	cursor: pointer;
}
.accordion-faq .card-header .icon{
	color: var(--white140);
	height: 36px;
	width: 36px;
	background: var(--blk140);
	padding: 5px;
	margin-right: 10px;
	border-radius: 4px;
}
.accordion-faq .card-header::after {
	content: "\e95a";
	font-family: icomoon;
	position: absolute;
	right: 0;
	top: 0px;
	height: 24px;
	width: 24px;
	border-radius: 26px;
	background: var(--blue140);
	color: var(--white140);
	text-align: center;
	cursor: pointer;
	font-size: var(--fs14);
	padding: 3px;
	pointer-events: none;
}
.accordion-faq .card-header:has(.collapsed):after{
	content: "\e959";
}
.project-row .accordion-faq .card-header::after{
	right: 15px;
  	top: 13px;
}
.blue-bg {
	position: relative;
	background-size: 51%;
	background-repeat: no-repeat;
	z-index: 2;
	background-position: left bottom;
	background-size: cover;
}
.blue-bg::before {
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ae7922+0,bd9d67+100 */
	background: linear-gradient(45deg, rgba(255,255,255,1) 0%, #E3E3E3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0px;
	bottom: 0px;
	z-index: 0;
}
/*.sitemap{
	position: relative;
	background-image: url("../img/img-8786.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}
.amenitiesSlides {
	width: calc(100% + 200px);
}
.amenitySlide{
	border: 1px solid rgba(255,255,255,0.5);
}
.amenitySlide .amenityHead, .amenitySlide .amenityBody{
	padding:20px;
	border-bottom: 1px solid rgba(255,255,255,0.5);

}
.amenitiesSlides .active.owl-item{
	transform: scale(1);
	transition: 0.3s ease;
	opacity: 1;
}
.amenitiesSlides .active + .active, .amenitiesSlides .owl-item{
	transform: scale(0.8);
	transform-origin: bottom left;
	transition: 0.3s ease;
	opacity: 0.6;
}
.amenitiesSlides .owl-nav {
	max-width: 100px;
	top: 0;
	transform: translate(-100px,-50px);
	left: 50%;
	height: auto;
}
.amenitiesSlides .owl-nav button.owl-next{
	background-color: var(--blue140);
  	height: 40px;
  	width: 40px;
  	background-size: 12px;
  	border-radius: 40px;
  	background-image: url(../img/arrow_black.png);
  	margin-left: 0;
}
.amenitiesSlides .owl-nav button.owl-prev{
	background-color: var(--blue140);
  	height: 40px;
  	width: 40px;
  	background-size: 12px;
  	border-radius: 40px;
  	background-image: url(../img/arrow_black.png);
  	margin-left: 0;
}
.amenitiesSlides .owl-nav button.disabled{
	opacity: 0.2;
}
.amenitiesSlides .owl-nav button span{
	font-size: 0;
}*/
.container-left{
	padding-left: calc((100% - 1410px) / 2)
}
.sb-img{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.si-img{
	object-fit: cover;
	min-height: 450px;
}
.py-8{
	padding-top: 8rem;
	padding-bottom: 8rem;
}
.hr-theme{
	border-color: var(--blue140);
}
.logo-br:before{
	position: absolute;
	width: 18vw;
	background: var(--blue140);
	height: 1px;
	left: 0;
	content: '';
	top: 50%;
}
.logo-br:after{
	position: absolute;
	width: 18vw;
	background: var(--blue140);
	height: 1px;
	right: 0;
	content: '';
	top: 50%;
}
.bg-alt{
	max-height: 900px;
	min-height: 700px;
	object-fit: cover;
}
.project-col {
	border: 1px solid rgba(255,255,255,0.5);
}
.project-img{
	position: relative;
}
.project-img:before{
	position: absolute;
	background: rgba(0,0,0,0.4);
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	content: '';
}
.project-brand{
	position: absolute;
	width: 60%;
	z-index: 0;
	left: 50%;
	right: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}
.project-row{
	background-repeat: no-repeat;
	background-position: center;
	background-color: var(--white140);
	padding-top:10vh;
	position: relative;
}
.project-row::before {
	position: absolute;
	content: '';
	background: rgba(255,255,255,0.5);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.features{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.features span{
	border-right: 1px solid rgba(255,255,255,0.44);
	margin: 0;
	padding: 0 15px;
	text-transform: uppercase;
	width: 33.33%;
}
.features span:last-of-type{
	border-right: none;
}
.video-inline{
	height: 650px;
}
.ico-xs dotlottie-player{
	height: 30px;
	width: 30px;
}
.ico-sm dotlottie-player{
	height: 35px;
	width: 35px;
}
.ico-md dotlottie-player{
	height: 45px;
	width: 45px;
}
.logo-inline{
	width: 350px;
}

.thumb-col {
  width: 100%;
}

/* The Modal (background) */
#tourGallery {
  padding-top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
}

/* Modal Content */
#tourGallery .modal-content {
  position: relative;
  background-color: #000;
  margin: auto;
  padding: 0 15px;
}

/* The Close Button */
#tourGallery .close {
  color: white;
  position: absolute;
  top: 40px;
  right: 25px;
  font-size: 24px;
  z-index: 1;
}

#tourGallery .close:hover,
#tourGallery .close:focus {
  color: var(--white140);
  text-decoration: none;
  cursor: pointer;
}

#tourGallery .tourSlide {
  display: none;
}
.tourSlide iframe{
	height: 100vh;
}
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
#tourGallery .prev,
#tourGallery .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
#tourGallery .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
#tourGallery .prev:hover,
#tourGallery .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  padding: 8px 0;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 15px;
  color: white;
}

.galleryThumb {
  opacity: 1;
  border-radius: 8px;
}

.galleryThumb.active,
.galleryThumb:hover {
  opacity: 0.6;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
}
.qi-col {
  width: 20%;
  border-bottom: 1px solid var(--white60);
  padding: 20px 0;
  color: var(--blk120);
  padding-right: 10px;
}
.qi-col p {
  margin-bottom: 0;
  font-weight: 300;
  margin-top: 8px;
}
.site-footer{
	padding: 40px 0;
}
.border-md-right {
	border-right: 1px solid var(--blk20);
}
.table-responsive {
	scrollbar-width: thin;
	scrollbar-color: #D9D9D9 transparent;
}
.table-rounded {
	border-radius: var(--radius16);
	border: 1px solid var(--white60);
}
.flex-wrp {
	display: flex;
	justify-content: space-between;
}
.table-rooms .table-responsive {
	height: 445px;
	overflow-y: scroll;
}
.t-tl {
	font-weight: 500;
	font-size: var(--fs18);
	white-space: nowrap;
}
.sq {
	display: flex;
	background: #fff;
	width: 100%;
	height: 60px;
	align-items: center;
	border-radius: var(--radius8);
	border: 1px solid var(--white60);
}
.img-sq {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 50px;
	min-width: 50px;
	border-radius: 8px 0 0 8px;
}
.sq p {
	font-weight: 400;
	color: var(--blk140);
	margin-bottom: 0;
}
.tb-room p {
	line-height: 1.2;
	white-space: nowrap;
}
.tb-room td {
	vertical-align: middle;
} 
.img-sq .sq-c {
	width: 24px;
	height: 24px;
	border-radius: var(--radius8);
}
.img-wrp {
	border: 1px solid var(--white60);
	text-align: center;
	border-radius: var(--radius16);
	height: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.flex-wrp-base {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.fcn-wrapper {
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  position: relative;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  max-height: 560px;
}
.fcn-wrapper:after {
  position: absolute;
  bottom: 0;
  height: 70px;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(252, 253, 253, 0) 0%,
    rgba(255, 255, 255, 0.74) 53.65%,
    #ffffff 100%
  );
}
.fc-nearby {
  overflow: hidden;
}
.fcn-search {
  position: relative;
  background: var(--white);
  background: var(--white);
  padding: 10px 10px 10px 50px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius8);
}
.fcn-ico {
  background: var(--blue120);
  height: 35px;
  width: 35px;
  border-radius: var(--radius8);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  left: 15px;
  top: 11px;
}
.fcn-search .form-control {
  box-shadow: none;
}
.fcn-search .form-control:hover,
.fcn-search .form-control:focus {
  border-color: transparent;
}
.amenities-grid {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  padding-left: 15px;
  padding-right: 15px;
}
.ag-col {
  background: var(--white);
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius8);
  margin-bottom: 15px;
}
.ag-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--radius8);
  text-align: center;
  padding: 5px;
  margin-right: 10px;
  display: inline-block;
}
.ag-ico img {
  width: 30px;
}
.ag-header,
.ag-body {
  padding: 10px;
  position: relative;
}
.ag-header p{
	font-size: var(--fs18);
	font-weight: 500;
}
.ag-body {
  padding-top: 0;
}
.ag-list {
  margin-bottom: 0;
}
.ag-list-item {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 10px 0;
  padding-right: 70px;
  border-top: 1px solid var(--white60);
}
.accordion .ag-header:after {
  position: absolute;
  content: "\e959";
  font-family: icomoon;
  position: absolute;
  right: 20px;
  top: 18px;
  height: 26px;
  width: 26px;
  border-radius: 26px;
  background: var(--blue140);
  color: var(--white140);
  text-align: center;
  cursor: pointer;
}
.accordion .ag-header.collapsed:after {
  content: "\e95a";
}
.walk-distane {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: var(--fs14);
  text-align: right;
  display: flex;
  align-items: center;
}
.walk-distane img {
  width: 10px;
  margin-left: 5px;
  margin-inline: 5px;
}

.walk-distane small {
  display: block;
  color: var(--blk60);
}
.ag-green .ag-ico {
  background: var(--green);
}
.ag-blue .ag-ico {
  background: var(--seablue);
}
.ag-purple .ag-ico {
  background: var(--purple);
}
.ag-brown .ag-ico {
  background: var(--brown);
}
.ag-orange .ag-ico {
  background: var(--orange);
}
.ag-red .ag-ico {
  background: var(--red);
}
.ag-yellow .ag-ico {
  background: var(--yellow);
}
.flex-center{
	display: flex;
	align-items: center;
}
.custom-check [type="checkbox"]:checked,
.custom-check [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custom-check [type="checkbox"]:checked + label,
.custom-check [type="checkbox"]:not(:checked) + label{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-weight: 600;
}
.custom-check [type="checkbox"]:checked + label:before,
.custom-check [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--blk140);
    border-radius: 3px;
   
}

.custom-check [type="checkbox"]:checked + label:before{
    border: 1px solid var(--blk140);
    background: var(--blk140);
}
.custom-check [type="checkbox"]:checked + label:after,
.custom-check [type="checkbox"]:not(:checked) + label:after {
    content: '\e975';
    font-family: 'icomoon';
    position: absolute;
    left: 4px;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}
.cc-style-alpha.custom-check [type="checkbox"]:checked + label:before,
.cc-style-alpha.custom-check [type="checkbox"]:not(:checked) + label:before {
	top: 50%;
	margin-top: -10px;
}
.cc-style-alpha.custom-check [type="checkbox"]:checked + label:after,
.cc-style-alpha.custom-check [type="checkbox"]:not(:checked) + label:after{
	top: 50%;
	margin-top: -10px;
}
.custom-check [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custom-check [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*custom radios*/

.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
}
.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--blk140);
    border-radius: 100%;
    background: #fff;
}
.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--blk140);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custom-radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.custom-radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
#mapdiv{
	border-radius: var(--radius16);
	z-index: 2;
}
.container{
	max-width: 1366px;
}
.prj-it .image img {
	height: auto;
}
.train-tag{
	color: var(--white);
	border-radius: var(--radius4);
	padding: 1px 5px;
	text-transform: uppercase;
	font-size: var(--fs11);
}
.tt1{
	background: #248A3D;
}
.tt2{
	background: #92D300;
}

.cookie-policy {
	z-index: 4;
	position: fixed;
	padding: 20px;
	right: 20px;
	border-radius: 16px;
	left: 20px;
	width: 100%;
	max-width: 400px;
	bottom: 60px;
	backdrop-filter: blur(2px);
	background: rgba(209, 217, 254, 0.9);
}
.wizard .nav-tabs {
	margin-bottom: 0;
	border-bottom-color: transparent;
	position: absolute;
	left: calc(50% + 465px);
	bottom: 50px;
	display: flex;
  	flex-wrap: nowrap;
}
.wizard .nav-tabs > li a {
    width: 30px;
    height: 6px;
    display: inline-block;
    border-radius: 6px;
    background: #D9D9D9;
    z-index: 2;
    position: relative;
    left: 0;
    color: #0e214b;
  	margin-left: 3px;
}
.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    background: var(--blk140);
}
.wizard .nav-tabs > li.disabled a{
	background: #D9D9D9;
}
.wizard {
	padding: 0 15px;
}
.wizard form {
/*	color: #1F252A;*/
	position: relative;
}
.wizard .tab-pane {
	position: relative;
}
.wizard-right {
	height: 100vh;
	display: flex;
	justify-content: center;
	max-width: 700px;
	flex-direction: column;
	padding-right: 50px;
	padding-bottom: 60px;
}
.prev-step{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	color: var(--blk140);
	position: absolute;
  	bottom: 50px;

}
.wizard-left {
	height: 100vh;
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.wizard-left .wiz-hero {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
.wiz-img {
	height: calc(100% - 200px);
	object-fit: contain;
	max-width: 85%;
	margin-bottom: 30px;
}
#country-select dd, #country-select dt, #country-select ul {
	margin: 0px;
	padding: 0px;
}
#country-select dd ul li a span:first-child, #country-select dt a span span:first-child {
	background-image: url("../img/flags.png");
	background-repeat: no-repeat;
	width: 16px;
	height: 11px;
	display: inline-block;
	margin:5px;
	vertical-align: top;
}
#country-select dt a span {
	cursor: pointer;
	display: block;
	padding: 13px 10px;
	white-space: nowrap;
}
#country-select dt a img {
	position: relative;
	z-index: 1;
}
#country-select dt a span span:first-child:before {
	position: absolute;
	content: '';
	width: 15px;
	height: 10px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.2) inset;
}
#country-select dt a span span {
	display: inline-block;
	padding: 0;
}
#country-select dt a span span:first-child {
	padding: 0;
}
#country-select dd {
	position: relative;
}
#country-select a, #country-select a:visited {
	color: #4a535f;
	text-decoration: none;
	outline: none;
}
#country-select a:hover {
	color: #5d4617;
}
#country-select dt a:hover, #country-select dt a:focus {
	color: #5d4617;
}
#country-select dt a {
	position: relative;
	background: #fff;
	display: block;
	padding-right: 20px;
	border-radius: 4px;
	overflow: hidden;
	border:1px solid #C4CBD3;
	width:74px;
	height: 48px;
}
/*#country-select dt a:after {
	content: '';
	background: transparent;
	position: absolute;
	
	height: 32px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
*/
#country-select dt a:before {
    background:#FFFFFF;
    content: "\e959";
    font-family: 'icomoon';
    position: absolute;
    right: 7px;
    top: 15px;
    width: 20px;
    z-index: 2;
    font-size: 12px;
}
#country-select dd ul {
	background: #fff;
	color: #C5C0B0;
	display: none;
	left: 0px;
	padding: 5px 0px;
	position: absolute;
	width: 270px;
	border:1px solid #fff;
	list-style: none;
	max-height: 170px;
	overflow-y: scroll;
	top:10px;
	z-index: 2;
	box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.06);
}

#country-select li a {
	font-size:13px;
}

#country-select li a span:nth-child(2) {
    line-height: 2em;
}
#country-select dd ul::-webkit-scrollbar-track {
 -webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.3);
 border-left:1px solid rgba(0,0,0,0.1);
}
#country-select dd ul::-webkit-scrollbar-thumb {
 background: rgba(0,0,0,0.4);
/*-webkit-box-shadow: inset 0 0 1px rgba(0,0,0,0.5), 1px 0 0 #5cace9 inset, 2px 0 0 #b3d5ee inset;
    border-radius:10px;*/
}
#country-select dd ul::-webkit-scrollbar-thumb:window-inactive {
 background: blue;
}
#country-select span.value {
	display: none;
}
#country-select dd ul li a {
	padding: 5px;
	display: block;
	font-size: 12px !important;
}
#country-select dd ul li a:hover {
	background-color: rgba(0,0,0,0.05);
}
dl#country-select {
	display: inline-block;
	width: auto;
	margin-bottom: 0;
}
dl#country-select span:nth-child(3) {
	color: rgba(0,0,0,0.4)
}
dl#country-select > span:nth-child(2) {
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
}
dl#country-select span:nth-child(3) {
	float: right;
}
dl#country-select dt span:nth-child(2) {
	color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6em;
    display: none;
}
dl#country-select dt span:nth-child(3) {
	display: none;
}
.countryFlag {
	padding: 0;
	background-image: url("../img/flags.png");
	background-repeat: no-repeat;
	display: inline-block;
	height: 11px;
	margin-right: 4px;
	width: 16px;
	cursor: pointer;
	white-space: nowrap;
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: #BFBFC1 #B6B6B6 #969696;
	border-image: none;
	border-radius: 2px 2px 2px 2px;
	border-style: solid;
	border-width: 1px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
}
.form-control {
	font-size: 18px;
	padding: 10px 15px;
	max-width: 550px;
}
.form-control:focus, .form-control:hover{
	box-shadow: none;
	-webkit-box-shadow: none;
	border-color: #000;
}
.editable.active{
    padding-top: 30px;
}
.editable{
    position: relative;
}
.edit-row {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 3;
}
.edit-row span{
	background: rgba(255,255,255,0.5);
    width: 30px;
    height: 30px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    border-radius: 30px;
    padding: 8px;
    font-size: 14px;
    text-align: center;
    display: block;
}
.btn-theme.next-step{
	text-transform: uppercase;
	padding: 15px 20px;
}

/* Begin float */

.float-cta {
  position:fixed;
  bottom:50px;
  right:40px;
  text-align:center;
  z-index:1000;
}

.float-cta .trigger {
  border-radius:50%;
  box-shadow: 0 2px 5px rgba(16, 179, 23, 0.25);
  position:relative;
  background:#10b317;
  color:#fff;
  height:60px;
  width:60px;
  vertical-align:middle;
  animation: 1.5s linear 0s infinite normal pulse;
  transition: ease-in-out 0.2s;
  cursor: pointer;
  z-index: 30;
}

.float-cta .trigger:hover{
  transform:scale(1.1);
}
.float-cta.open::after {
	position: fixed;
	content: '';
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 9;
}
.float-cta.open .trigger .fa::before{
  content: "\f00d";
}

.float-cta .trigger .fa::after{
  transition: ease-in-out 1s;
}

.fab.open .trigger i{
  transition: all 0.4s ease;
  transform: translateY(5px) rotate(360deg);
}

.trigger span{
  line-height: 58px;
	font-size:28px
}
.float-cta .actions {
	opacity: 0;
	transition: opacity 0.4s ease;
	background: var(--white140);
	padding: 10px;
	border: 1px solid var(--white60);
	display: block;
	border-radius: var(--radius16);
	position: absolute;
	bottom: 100%;
	right: 0;
	width: 240px;
	margin-bottom: 20px;
	pointer-events: none;
}
.float-cta .actions::after {
	position: absolute;
	content: '';
	bottom: -8px;
	right: 26px;
	width: 14px;
	height: 14px;
	background: #fff;
	transform: rotate(45deg);
	border-right: 1px solid var(--white60);
	border-bottom: 1px solid var(--white60);
}
.float-cta .actions span{
	font-size: 22px;
}
.float-cta.open .actions {
	opacity: 1;
	/* overflow: hidden; */
	box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
	z-index: 30;
	pointer-events: auto;
}

.float-cta .p-info{
  position: relative;
  opacity:0;
  transition: transform 0.4s ease;
  transition: all 0.4s ease;
/*  transform: translateY(-60px);*/
  right:0;
  width:100%;
  height:auto;
}

.float-cta.open .p-info{
  opacity:1;
  position: relative;
  transition: transform 0.4s ease;
  transition: all 0.4s ease;
  transform: translateY(0px);
  margin-bottom: 10px;
}
.float-cta a{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 60px;
	font-weight: 500;
	padding: 15px;
	text-transform: uppercase;
}
.actions .btn-wp a{
	background: #10b317;
	color: #fff;
	box-shadow: 0px 3px 10px rgba(16, 179, 23,0.5);
}
.actions .btn-cl a{
	background: #113DFA;
	color: #fff;
	box-shadow: 0px 3px 10px rgba(17,61,250,0.5);
}
.float.open a{
  position: relative;
  text-align: center;
}
.footer-logo{
	width: 142px;
	height: 42px;
	background-image: url(../img/propnex-logo.png);
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}
.modal-xl {
	max-width: 1000px;
}
.h-auto{
	height: auto;
}
/* Animations */
@keyframes pulse {
    0% {
      box-shadow: 0px 1px 0px 3px rgba(16, 179, 23, 0.30), 0px 0px 0px 0px rgba(16, 179, 23, 0.50);
    }
    30% {
      box-shadow: 0px 1px 0px 3px rgba(16, 179, 23, 0.30), 0px 0px 0px 5px rgba(16, 179, 23, 0.50);
    }
    70% {
      box-shadow: 0px 1px 0px 3px rgba(16, 179, 23, 0.30), 0px 0px 0px 15px rgba(16, 179, 23, 0.10);
    }
    100% {   
      box-shadow: 1px 1px 2px 1px rgba(16, 179, 23, 0.30), 0px 0px 0px 20px rgba(16, 179, 23, 0.0);
    }
  }
@media screen and (min-width:1600px){
	.container{
		max-width: 1440px;
	}
}
@media screen and (max-width:1600px){
	
	.t-h1, h1{
		font-size: 50px;
	}
	.t-h2, h2 {
		font-size: 42px;
	}
	.t-h3, h3 {
		font-size: 32px;
	}
	.t-h4, h4{
		font-size: 28px;
	}
	
	.site-logo {
		padding-bottom: 6vh;
		padding-top: 3vh;
	}
	.amenitiesSlides .owl-nav button.owl-next,
	.amenitiesSlides .owl-nav button.owl-prev{
		height: 35px;
  		width: 35px;
  		margin-left: 10px;
	}
	.container-left {
		padding-left: 40px;
	}
/*	.blue-bg{
		background-size: 60%;
	}*/
	.wizard .nav-tabs{
		left: auto;
		right: 50px;
	}
	.wizard .nav-tabs > li a{
		width: 22px;
	}
	.btn{
		font-size: var(--fs17);
	}
}
@media screen and (max-width:1199px){
	.fs-xxl{
		font-size: 3.75rem;
	}
	.fs-xl{
		font-size: 2.75rem;
	}
	.t-h4, h4{
		font-size: var(--fs22);
	}
	.t-h5, h5{
		font-size: var(--fs20);
	}
	.t-h6, h6 {
		font-size: var(--fs18);
	}
	.btn-anime, .btn{
		font-size: var(--fs16);
	}
	.blue-bg{
		background-size: contain;
	}
	.video-inline{
		height: 500px;
	}
	.wizard-left{
		min-height: 600px;
	}
	.wizard-left .wiz-hero{
		min-height: 600px;
		object-position: bottom;
	}
	.vimeo-wrapper iframe{
		height: 680px;
  		min-height: 680px;
	}
	.hero-banner .vimeo-wrapper iframe{
		height: 56.25vw;
  		min-height: 100vh;
	}
	.amenities-grid{
		padding-top: 5px;
		padding-left: 5px;
		padding-right: 5px;
	}

}
@media screen and (max-width:991px){
	
	.logo-br::before, .logo-br::after{
		width: 25vw;
	}
	.blue-bg::before{
		width: 100%;
	}
	.container-left {
		padding-left: 40px;
		width: 100%;
		padding: 0 15px;
	}
	.video-inline{
		height: 400px;
	}
	.wizard .nav-tabs{
		right: 50px;
	}
	.vimeo-wrapper iframe{
		height: 430px;
  		min-height: 430px;
	}
	.hero-banner .vimeo-wrapper iframe{
		height: 56.25vw;
  		min-height: 100vh;
	}
	.qi-col{
		width: 33.33%;
	}
	.hero-content{
		padding-bottom: 0;
	}
	.sq{
		border: none;
  		padding: 0;
  		height: auto;
	}
	.img-sq{
		width: auto;
  		min-width: 25px;
  		margin-right: 6px;
	}
	.tb-room p{
		white-space: normal;
		font-size: var(--fs14);
	}
	.t-tl{
		font-size: var(--fs14);
	}
	.table-rooms .table-responsive{
		height: auto;
	}
	.wizard-right{
		padding-right: 20px;
	}
}
@media screen and (max-width:768px){
	.fs-xxl{
		font-size: 3.5rem;
		word-break: break-word;
	}
	.fs-xl{
		font-size: 2.25rem;
	}
	.t-h1, h1{
		font-size: 42px;
	}
	.t-h2, h2 {
		font-size: 32px;
	}
	.t-h3, h3 {
		font-size: 22px;
	}
	.t-h4, h4{
		font-size: 18px;
	}
	.t-h5, h5{
		font-size: 20px;
	}
	.t-h6, h6 {
		font-size: 16px;
	}
	.video-inline{
		height: 300px;
	}
	.bg-alt{
		min-height: 600px;
	}
	.logo-br img{
		width: 60px;
	}
	.features{
		flex-direction: column;
	}
	.features span{
		border-right: none;
		padding: 5px 0;
		position: relative;
	}
	.features span:after{
		position: absolute;
		bottom: 0;
		width: 100px;
		content: '';
		left: 0;
		right: 0;
		margin: 0 auto;
		height: 1px;
		background: rgba(255,255,255,0.44);
	}
	.features span:last-child:after{
		content: none;
	}
	.wizard-left, .wizard-right, .wizard-left .wiz-hero {
		height: auto;
	}
	.wizard-left{
		min-height: initial;
		margin-bottom: 40px;
	}
	.wizard .nav-tabs{
		bottom: 10px;
	}
	.wizard-right{
		padding-right: 0;
		padding-bottom: 0;
	}
	.wizard .nav-tabs{
		right: 15px;
	}
	.features span{
		width: 100%;
	}
	.hero-content{
		height: auto;
	}
	.qi-col{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.qi-col p{
		font-size: 14px;
		margin-top: 3px;
	}
	.table-rooms .table-responsive{
		height: auto;
	}
	.btn-theme.next-step {
		width: 100%;
	}
	.prev-step {
		width: 100%;
		text-align: center;
		border: 1px solid #ddd;
		border-radius: 8px;
		padding: 10px 20px;
		margin-top: 15px;
		position: relative;
	    display: block;
	    bottom: 0;
	    background: #e9e9e9;
	}
	.wizard .nav-tabs {
		position: relative;
		left: 0;
		right: 0;
		text-align: center;
		justify-content: center;
		margin-top: 30px;
	}
	.wizard-right{
		max-width: 100%;
	}
	.btn-alt{
		text-transform: capitalize;
		padding: 8px 15px;
		font-size: var(--fs14);
	}
}
@media screen and (max-width:576px){
	.fs-xxl{
		font-size: 3rem;
	}
	.py-8{
		padding-bottom: 2rem;
	}
	.ico-xs dotlottie-player{
		height: 25px;
		width: 25px;
	}
	.ico-sm dotlottie-player{
		height: 30px;
		width: 30px;
	}
	.ico-md dotlottie-player{
		height: 40px;
		width: 40px;
	}
	
	#countdown li span{
		font-size: 3rem;
	}
	.amenitySlide .amenityHead, .amenitySlide .amenityBody{
		padding: 15px;
	}
	
	.amenitiesSlides .owl-nav button.owl-next, .amenitiesSlides .owl-nav button.owl-prev{
		height: 30px;
		width: 30px;
	}
	.amenitiesSlides .owl-nav button.owl-next{
		margin-left: 0;
	}
	.amenitiesSlides .owl-nav {
	  max-width: 85px;
	}
	.amenitiesSlides .owl-nav {
	  transform: translate(-86px,-44px);
	}
	.btn-anime, .btn {
		font-size: 16px;
	}
	.logo-inline{
		width: 250px;
	}
	.hero-content{
		padding-bottom: 0;
	}
	
	.qi-col{
		width: 50%;
	}
	.btn-anime{
		padding-left: 15px;
		padding-right: 15px;
	}
	#mapdiv{
		height: 360px !important;
	}
	.sb-img .vimeo-wrapper{
		min-height: 500px;
	}
	.wizard-left{
		display: none;
	}
	.wizard-right{
		padding-top: 50px;
	}
	.float-cta{
		bottom: 30px;
	}
	.cookie-policy{
		bottom: 20px;
	}
	.btn-alt{
		font-size: var(--fs14);
	}
	.cookie-policy{
		padding: 10px;
		max-width: 280px;
		font-size: var(--fs15);
	}
	.cookie-policy h5{
		font-size: var(--fs16);
	}
	.cookie-policy p {
	  font-size: var(--fs12);
	  line-height: 1.3;
	}
	.float-cta{
		right: 20px;
	}
}
@media screen and (max-width:480px){
	.bg-alt {
		min-height: 680px;
	}
	.btn-anime, .btn{
		font-size: var(--fs15);
	}
	.cookie-policy{
		width: auto;
	    right: 20px;
	}
	.fs-xxl{
		font-size: 2.5rem;
	}

	.btn-alt{
		font-size: var(--fs14);
		padding: 8px 10px;
	}
}