html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin-top: 0;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    font-family: "Lato Regular";
    color: var(--green);
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a{
    text-decoration: none;
}
h1{
    line-height: 1.3;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
 -moz-appearance: textfield;
}
input{
    font-family: "Lato Regular";
}
/*styles*/
@font-face {
    font-family: "Lato Regular";
    src: url("./assets/fonts/Lato-Regular.ttf");
}
@font-face {
    font-family: "Lato Semibold";
    src: url("./assets/fonts/Lato-SemiBold.ttf");
}
@font-face {
    font-family: "Lato Bold";
    src: url("./assets/fonts/Lato-Bold.ttf");
}
@font-face {
    font-family: "Nelphim";
    src: url("./assets/fonts/Nelphim.ttf");
}

/*Layout*/
body{
    background: var(--light-cream);
}
.container {
    max-width: 1200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
}
.container-fluid{
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.row{
    width: calc(100% + 3rem);
    display: flex;
    flex-wrap: wrap ;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}
.col{
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
.row-sm{
    width: calc(100% + 1.5rem);
    display: flex;
    flex-wrap: wrap ;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
.col-sm{
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
section{
    margin-bottom: 5rem;
}
input{
    border: none;
    background: none;
    outline: none;
    font-family: "Lato Regular";
}

:root{
    --brown: #957D61;
    --light-brown: #BDAB90;
    --light-cream: #FAF4F0;
    --cream: #F2E7D6;
    --dark-brown: #261E13;

    --green: #646658;
    --dark-green: #35342E;

    --white: #ffffff;
    --light-gray: #EAEAEA;
    --gray: #8D8D8D;
    --black: #2B2B2B;

    --br: 20px;
    --br-sm: 10px;
}
body.lock{
    overflow: hidden;
}
h1{
    font-size: 4rem;
    font-family: "Nelphim";
}
h2{
    font-size: 3rem;
    font-family: "Nelphim";
}
h1,h2{
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3{
    font-size: 2rem;
    font-family: "Nelphim";
    margin-bottom: 1rem;
}
h4{
    font-size: 1.5rem;
    font-family: "Nelphim";
    margin-bottom: .5rem;
}
h3,h4{
    line-height: 1.5;
}
h1.lato,h2.lato,h3.lato,h4.lato{
    font-family: "Lato Bold";
}

/*Heading Color*/
h1,h2,h3,h4{
    color: var(--dark-green);
}
h1 > p,h2 > p,h3 > p ,h4 > p{
    font-size: inherit;
}
h1.white,h2.white{
    color: var(--white);
}
h1.brown,h2.brown,h3.brown,h4.brown{
    color: var(--brown) !important;
}
h1.green,h2.green,h3.green,h4.green{
    color: var(--green) !important;
}

div{
    line-height: 1.5;
    color: inherit;
}
p{
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
input, textarea{
    font-family: "Lato Regular";
    font-size: 1rem;
}
a{
    color: var(--black);
}
a:hover{
    color: var(--pr-green);
    transition: ease-out .2s color;
}
button{
    font-family: "Lato Semibold";
}
img,svg,video{
    max-width: 100%;
    max-height: 100%;
}
.text-center{
    text-align: center;
}
.rounded{
    border-radius: var(--br-sm);
}
.bg-img{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-header{
    margin-bottom: 2rem;
}
/*Custom Cursor*/
.cursor {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid var(--brown);
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 101;
}
.cursor.hover{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100px;
        height: 100px;
        overflow: hidden;
        background: rgba(0,0,0,0.2);
        border: 1px solid transparent;
        backdrop-filter: saturate(0);
}

.cursor2 {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--brown);
    opacity: .3;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 101;
}
.cursorinnerhover {
    width: 50px;
    height: 50px;
    opacity: .5;
}
.smooth-scroll-wrapper {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-image: url(../assets/img/texture.png);
}
.smooth-scroll-wrapper.disabled{
    position: initial;
}

/*Component*/
.mixitup-pagination-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mixitup-pagination-wrapper .mixitup-page-list{
    background: var(--cream);
    border-radius: 1000px;
}
.mixitup-pagination-wrapper button{
    display: inline-block;
    font-family: "Lato Semibold";
    background: none;
    border-radius: 1000px;
    height: 36px;
    width: 36px;
    font-size: 1rem;
    color: var(--green);
    border: none;
}
.mixitup-pagination-wrapper button.mixitup-control-active{
    color: var(--white);
    background: var(--brown);
}
.mixitup-pagination-wrapper .mixitup-page-stats{
    font-family: "Nelphim";
    font-size: 1.5rem;
}
@media(max-width: 600px){
    .mixitup-pagination-wrapper{
        flex-direction: column;
    }
}
/*Animation*/
.clip-reveal{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.clip-reveal .char{
    transform: translateY(220%);
    transition: ease transform 1s;
}
/*Barba Transition*/
.transition .loading-screen {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    background-color: #4bedc2;
    width: 0%;
    height: 100%;
}

.transition{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}
/*Transition*/
body.lock{
    overflow: hidden;
}
body{
    overflow: auto;
}
.loader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light-cream);
    z-index: 1002;
    padding: 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: ease 0.4s all;
}
.loader > div{
    display: flex;
    flex-direction: column;
}
.loader .loader-reveal{
    opacity: 0 !important;
}
.loader h1,
.loader h2,
.loader h3,
.loader h4{
    opacity: 1;
    transition: ease 0.1s all;
    margin-bottom: .5rem;
}
.loader.active{
    opacity: 1;
    pointer-events: none;
}
.loader.active.leave h1{
    opacity: 0;
}
.loader img{
    height: 80px;
}
.loader .logo{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 56px;
    width: fit-content;
    background: var(--light-cream);
    border: 1px solid var(--brown);
    border-radius:  var(--br-sm);
    margin-bottom: .5rem;
}
.loader .logo{

}

/*Button*/
.btn{
    /* font-family: "Lato Semibold"; */
    display: inline-flex;
    padding: 8px 2rem;
    border-radius: 1000px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    transition: ease 0.4s all;
}
.btn i{
    align-self: center;
    font-size: 1rem;
    margin-left: 1rem;
    margin-right: -.5rem;
}
.btn:active{
    transform: translateY(5px) !important;
}
.btn-pr{
    background: var(--brown);
    color: var(--white);
    border: none;
    transition: ease 0.4s all;
}
.btn-sc{
    background: transparent;
    border: 1px solid var(--green);
    color: var(--green);
    transition: ease 0.4s all;
}
.btn-white.btn-pr{
    background: var(--white);
    color: var(--brown);
}
.btn-pr:hover{
    background: var(--dark-green);
    color: var(--white) !important;
}
.btn-sc:hover{
    background: var(--green);
    color: var(--white) !important;
}
.btn-white.btn-sc,
.btn-white.btn-icon{
    border: 1px solid var(--white);
    color: var(--white);
}
.btn.icon-right i{
    margin-left: .5rem;
}
.btn.icon-left i{
    margin-right: .5rem;
}
.btn-icon{
    cursor: pointer;
    height: 48px;
    width: 48px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    background: transparent;
    color: var(--green);
    border-radius: 50%;
    transition: ease 0.5s all;
}
.btn-icon i{
    font-size: 24px;
    transition: ease 0.5s all;
}
.btn-icon:hover{
    transform: translateY(-5px) !important;
    box-shadow: 0px 15px 20px rgba(0,0,0,0.2);
    transition: ease 0.5s all;
}
.btn-icon:hover i{
    transform: translateY(-5px);
}
.btn-icon:active{
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
    transform: translateY(5px) !important;
}
button{
    cursor: pointer;
}
.btn-wrap{
}
.link-icon{
    cursor: pointer;
    user-select: none;
    display: flex;
    font-family: "Lato Semibold";
    color: var(--dark-green);
}
.link-icon i{
    margin-left: 1rem;
    font-size: 1.5rem;
    transition: ease 0.2s all;
}
.link-icon:hover{
    color: var(--brown);
}
.link-icon:hover i{
    transform: translateX(5px);
}

/*Input Group*/
.ellora-input{

}
.ellora-input select{
    font-family: "Lato Semibold";
    color: var(--brown);
    font-size: 1rem;
    border: none;
    background: none;
    padding-right: 1.5rem;
}
.search-input{
    min-width: 360px;
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--light-brown);
    border-radius: 1000px;
}
.search-input i{
    font-size: 24px;
    margin-right: 1rem;
}

/*Slider Components*/
.slider-btn-wrap{
    display: flex;
    z-index: 2;
    pointer-events: none;
}
.slider-btn-wrap button:nth-child(1){
    margin-right: 2rem;
}
.slider-btn-wrap .btn-icon{
    position: relative;
    pointer-events: all;
}

.slider-control{
    display: flex;
    justify-content: space-between;
}
.slider-control .slider-count{
    display: flex;
    align-items: center;
}
.slider-count.sc-white .sc-load-wrap{
    background: var(--green);
}
.slider-count.sc-white .sc-load{
    background: var(--light-cream);
}
.slider-count.sc-white *{
    color: var(--white);
}
.slider-control .slider-count > div{
    margin-left: 1.2rem;
}
.slider-control .sc-load-wrap,
.slider-control .sc-load{
    height: 4px;
}
.slider-control .sc-load-wrap{
    width: 220px;
    background: var(--light-gray);
}
.slider-control .sc-load{
    width: 20%;
    background: var(--green);
    transition: ease 0.8s all;
}
.slider-control .dots{
    display: none;
}

/*Blogs*/
.blog-card{
    position: relative;
}
.blog-card .blog-img{
    height: 380px;
    margin-bottom: 1.2rem;
}
.blog-card .blog-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-card .b-title{
    width: 100%;
}
.blog-card .b-tags{
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
}
.blog-card .b-tag-div{
    height: 18px;
    width: 1px;
    background: var(--green);
    margin: 0 1rem;;
}
.blog-card .b-cat{
    color: var(--brown);
}
.blog-card .b-time{
    display: flex;
    align-items: center;
}
.blog-card .b-time i{
    font-size: 18px;
    margin-right: .5rem;
}
.blog-card h4{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*Wellness Card*/
.wl-card{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 200px;
    background-size: cover ;
    background-position: center;
    background-repeat: no-repeat ;
}
.wl-card h4,
.wl-card p{
    color: var(--white);
    margin-bottom: 4px;
}
.wl-card .overlay-link{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.wl-card .wl-body{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;

    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 66.67%, rgba(0, 0, 0, 0.6) 100%);
}
.wl-card .wl-tags-wrap{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
.wl-card .wl-tag{
    position: relative;
    color: var(--light-cream);
}
.wl-card .wl-tag::before{
    content: "";
    position: absolute;
    bottom: 0;
    margin-bottom: -5px;
    display: block;
    width: 0;
    height: 2px;
    background: var(--light-brown);
    transition: ease 0.5s all;
}

.wl-card .wl-tag:hover:before{
    width: 100%;
}
.wl-card .wl-tag-div{
    content: "";
    display: block;
    height: 18px;
    width: 1px;
    background: var(--light-cream);
    margin: 0 1rem;
}

@media(max-width: 450px){
    .wl-card .wl-icon{
        display: none;
    }
}

/*Filters*/
/*Filters*/
.filter-container{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-brown);
}
.filter-wrap{
    display: flex;
}
.filter-wrap label{
    color: var(--green);
    margin-right: 3rem;
}
.filter-btn-wrap{
    display: flex;
    flex-wrap: wrap;
    color: var(--green);
    margin-bottom: -1.5rem;
}
.filter-btn-wrap > *{
    margin-bottom: 1.5rem;
}
.filter-btn-wrap span{
    margin: 0 1rem;
}
.filter-wrap button{
    background: none;
    border: none;
    color: var(--green);
    font-size: 1rem;
    position: relative;
    padding-bottom: 3px;
    overflow: hidden;

}
.filter-btn-wrap button::before{
    content: "";
    position: absolute;
    bottom: 0;
    background: var(--brown);
    border-radius: 100px;
    height: 2px;
    width: calc(90%);
    transform: translateX(-150%);
    transition: ease 1s all;
}
.filter-btn-wrap button.mixitup-control-active{
    color: var(--brown);
    font-family: "Lato Bold";
}
.filter-btn-wrap button.mixitup-control-active::before{
    transform: translateX(0);
}

.filter-mobile{
    display: none;
}
.filter-mobile select{
    width: 100%;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--cream);
}
.filter-mobile td{
    padding-bottom: 1rem;
}
@media(max-width: 900px){
    .filter-container{
        flex-direction: column;
    }
}
@media(max-width: 600px){
    .filter-desktop{
        display: none;
    }
    .filter-mobile{
        display: flex;
    }
}
@media(max-width: 450px){
    .filter-wrap button{
        font-size: 14px;
    }
}


/*Property Info*/
#property-info{
    margin-bottom: 0;
    background: var(--white);
    padding: 3rem 0;
}
#property-info tr td:first-child{
    color: var(--green);
    padding-right: 1.5rem;
    padding-bottom: .5rem;
}
#property-info tr td:last-child{
    color: var(--dark-green);
}
#property-info .cta-btn{
    flex-shrink: 0;
    margin-left: auto;
}
#property-info{
    
}
@media(max-width: 900px){
    #property-info .col{
        width: 100%;
    }
    #property-info h3{
        margin-bottom: 1rem;
    }
    #property-info .contact{
        margin-bottom: 1.5rem;
    }
}

/*Header*/
header{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 101;
    transition: ease 0.2s all;
}

header.scroll{
    /* background: rgba(255,255,255, 0.85); */
    background: rgba(250, 244, 240, .85);
    backdrop-filter: blur(8px);
}
header.hide{
    transform: translateY(-100%);
}
header.scroll nav,
header.scroll .btn,
header.mobile .btn{
    color: var(--green);
}
header.scroll .btn,
header.mobile .btn{
    border: 1px solid var(--gray);
}


header nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav *{
    color: inherit;
}
header .header-logo{
    height: 3rem;
}
header ul{
    display: flex;
    align-items: center;
}
header li{
    margin: 0 .75rem;
}
header li > a,
header li .dn-btn{
    text-transform: uppercase;
}

header li a{
    position: relative;
    margin-bottom: 1rem;
}

header li a::before{
    content: "";
    position: absolute;
    bottom: 0;
    margin-bottom: -3px;
    display: block;
    width: 0;
    height: 2px;
    background: var(--brown);
    transition: ease 1s all;
}
header.header-white:not(.scroll) li a::before{
    background: var(--white);
}
header li a:hover::before{
    width: 100%;
}

header.header-white{
    color: var(--white);
}

header .header-action{
    display: flex;
    align-items: center;
}
header .menu-btn{
    display: none;
    margin-right: 1.5rem;
}
header.header-white .menu-btn svg{
    /* fill: var(--white); */
    fill: var(--white);
}
header .menu-btn svg,
header.scroll .menu-btn svg,
header.mobile .menu-btn svg{
    fill: var(--green);
}
header .menu-btn{
    position: relative;
    z-index: 102;
}
header .menu-btn{
    margin-left: auto;
    cursor: pointer;
    height: 36px;
}
header .menu-btn rect{
    transition: ease 0.3s all;
}
header.mobile{
    background: var(--light-cream);
}
header.mobile .menu-btn rect:nth-child(2){
    opacity: 0;
}

header.mobile .menu-btn rect:nth-child(1){
    transform: rotateZ(45deg) translate(7px, -9px);
}

header.mobile .menu-btn rect:nth-child(3){
    transform: rotateZ(-45deg) translate(-18px, -1px);
}

/*Header Dropdown Nav*/
.dropdown-nav{
    position: relative;
}
.dn-body{
    position: absolute;
    width: 600px;
    top: 4rem;
    padding: 1rem 1.3rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--br);

    visibility: hidden;
    pointer-events: none;
    transform: translateY(-200%);
    opacity: 0;
    transition: ease 1s all;
}
.dropdown-nav.active .dn-body{
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
    opacity: 1;
}
.dropdown-nav.active .dn-btn{
    color: var(--light-brown);
    font-family: "Lato Semibold";
}
.dn-btn{
    cursor: pointer;
}
.dn-body a, .dn-body h4{
    color: var(--green);
}
.dn-body > div:not(:last-child){
    margin-bottom: 1.5rem;
}
.dn-body .col-sm{
    width: 190px;
    margin-bottom: .6rem;
}

.mobile-menu,
.mobile-menu .sub-menu{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow-y: scroll;
    z-index: 100;
    background: var(--light-cream);
    padding: 1.5rem;
    padding-top: 8rem ;
    
    /* transform: translateY(-110%); */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition: ease .6s all;
    transition-delay: .5s;

}

.mobile-menu .sub-menu{
    
    transition: ease .2s all;
    transition-delay: .1s;
}
.mobile-menu.active,
.mobile-menu .sub-menu.active{
    /* transform: translateY(0); */
    visibility: visible;
    pointer-events: initial;
    transition-delay: 0s;
    opacity: 1;
}
.mobile-menu > ul > li{
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(84, 66, 42, 0.2);
    /* transform: translateX(-1rem); */

    
    opacity: 0;
    transition: ease .6s all;
    /* transition-delay: .5s; */
}
.mobile-menu .nav-link{
    font-family: "Nelphim";
    font-size: 2rem;

}
.mobile-menu.active > ul > li{
    /* transform: translateX(0); */
    opacity: 1;
    transition-delay: 0s;
}
.mobile-menu .sub-menu-btn,
.mobile-menu .sm-view-all{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-menu .sub-menu{
    position: fixed;

}
.mobile-menu .property-list .hp-loc{
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(84, 66, 42, 0.2);
}
.mobile-menu .hp-loc li{
    margin-bottom: 1rem;
}
.mobile-menu .hp-loc h4{
    margin-bottom: 2rem;
}
.mobile-menu .hp-loc a:not(.sm-view-all){
    font-family: "Nelphim";
    font-size: 2rem;
    color: var(--brown);
}


/*Footer*/
footer{
    background: var(--cream);
    padding-bottom: calc(3rem + 80px);
}
footer *{
    color: var(--green);
}
footer .f-info,
footer .f-properties,
footer .f-social-nav{
    padding: 3rem 0;
    border-bottom: 1px solid rgba(84, 66, 42, 0.2);
}
footer .f-cr{
    padding-top: 3rem;
}
footer .f-info{
    display: flex;
    align-items: center;
}
footer .footer-logo{
    display: block;
    height: 3rem;
    margin-right: 2rem;
}
.f-info-dtl .dtl{
    display: flex;
}
.f-info-dtl .dtl a{
    margin-right: 1.5rem;
}

footer .f-properties{
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}
footer .f-properties h4{
    margin-right: 2rem;
    white-space: nowrap;
}
footer .properties-list,
footer .f-nav{
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
footer .properties-list a,
footer .f-nav a{
    position: relative;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

footer .properties-list a::before,
footer .f-nav a::before{
    content: "";
    position: absolute;
    bottom: 0;
    margin-bottom: -3px;
    display: block;
    width: 0;
    height: 2px;
    background: var(--brown);
    transition: ease 1s all;
}
footer .properties-list a:hover:before,
footer .f-nav a:hover:before{
    width: 100%;
}
footer .f-social-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .f-social{
    display: flex;
    align-items: center;
}
footer .f-social h4{
    margin-right: 2rem;
}
footer .f-social .btn-icon{
    margin-right: 1rem;
}

/*Util*/
.whatsapp-contact{
    position: fixed;
    display: flex;
    align-items: end;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 50;
    transition: ease 0.2s all;
}
.whatsapp-contact.sd-is-on{
    bottom: calc(1.5rem + 80px);
}
.whatsapp-contact button{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-cream);
    /* #219653; */
    height: 70px;
    width: 70px;
    border: none;
    outline: none;
    z-index: 51;
    transition: ease 0.5s all;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}
.whatsapp-contact button:active{
    transform: translateY(15px);
}
.whatsapp-contact.hide button.hide{
    transform: translateX(-400%);
    pointer-events: none;
}
.whatsapp-contact.hide .wa-contact-list{
    /* transform: translateX(-200%); */
    left: -400px;
    pointer-events: none;
} 
.whatsapp-contact .wa-contact-list{
    position: absolute;
    left: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    /* display: initial; */
    pointer-events: initial;
    user-select: none;
    transition: ease 0.5s all;
}
.whatsapp-contact .wa-contact{
    font-family: "Lato Semibold";
    display: flex;
    width: fit-content;
    padding: 8px 1.5rem;
    padding-right: 8px;
    margin-top: .5rem;
    border-radius: 1000px;
    white-space: nowrap;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--light-gray);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    color: #219653;

    transition: ease 0.5s all;
}
.whatsapp-contact .wa-contact i{
    color: var(--gray);
    font-size: 1.5rem;
    margin-left: 1rem;
}
.whatsapp-contact .wa-contact:hover{
    transform: translateX(10px);
}

.book-now.hide{
    transform: translateX(200%);
}
.book-now{
    position: fixed;
    max-width: calc(100vw - 3rem) ;
    top: 100px;
    right: 1.5rem;
    background: var(--light-cream);
    padding: 1.5rem;
    z-index: 10;
    border-radius: var(--br);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
    transition: ease 0.5s all;

}
.book-now .bn-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Lato Bold";
    padding-bottom: .7rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-brown);
    color: var(--green);
}
.book-now .close-btn{
    font-size: 2rem;
    background: none;
    outline: none;
    border: none;
    color: var(--green);
}
.book-now .input-group,
.special-deals .input-group{
    margin-bottom: 1.5rem;
}
.book-now label,
.special-deals label{
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: .2rem;
}
.book-now label i,
.special-deals label i{
    margin-right: .5rem;
}
.book-now .dates,
.special-deals .dates{
    display: flex;
    align-items: center;
}
.book-now .dates-wrap input::placeholder,
.special-deals .dates-wrap input::placeholder{
    color: var(--brown);
}
.book-now .dates i,
.special-deals .dates i{
    font-size: 1.5rem;
    margin: 0 1rem;
}
.book-now .dates i.arrow-mobile,
.special-deals .dates i.arrow-mobile{
  display: none;  
}
.book-now select, 
.book-now input,
.special-deals select,
.special-deals input{
    color: var(--brown);
    font-family: "Lato Bold";
    font-size: 1rem;
    cursor: pointer;
}
.book-now select,
.special-deals select{
    border: none;
    background: none;
}
.book-now form button{
    width: 100%;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}
.book-now .jq-date-wrap,
.special-deals .jq-date-wrap{
    display: flex;
    align-items: center;
}
.book-now .jq-date-wrap input,
.special-deals .jq-date-wrap input,
.special-deals input[type="text"],
.book-now select,
.special-deals select{
    border-bottom: 1px solid var(--light-brown);
    padding-bottom: 10px;
    width: 130px;
}

.book-now select,
.special-deals select{
    border-bottom: 1px solid var(--cream);
    width: auto;
}
.book-now .jq-date-wrap i,
.special-deals .jq-date-wrap i{
    margin: 0;
    margin-left: 1.5rem;
    color: var(--brown);
    font-size: 1rem;
}
.special-deals .mobile-back{
    display: none;
}
.ul-widget.ui-widget-content{
    background: var(--light-cream);
    border: none;
    border-radius: 10px;
}
.ui-widget-header{
    border: none;
    font-family: "Nelphim";
    color: var(--brown);
    background: none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active 
{
    background: none;
    border: 1px solid var(--cream);
    color: var(--green);
    font-family: "Lato Regular";
}
.ui-state-highlight{
    background: var(--light-brown);
}
.ui-state-active, .ui-state-highlight.ui-state-active{
    background: var(--brown);
    color: var(--white);
}

/*Special Deal Desktop*/
.sd-desktop{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light-cream);
    padding: 1rem 1.5rem;
    z-index: 10;
    opacity: 1;
    transition: ease .5s all;
}
.sd-desktop.hide{
    opacity: 0;
    transform: translateY(300%);
    pointer-events: none;
}

.sd-desktop h4,
.sd-button h4{
    white-space:nowrap;
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
    margin-bottom: 0;
}
.sd-desktop h4 i ,
.sd-button h4 i{
    margin-left: .75rem;
    color: var(--light-brown);
}
.sd-desktop .dates-wrap{
    display: flex;
}
.sd-desktop .input-group{
    margin-bottom: 0;
    margin-right: 2rem;
}
.sd-desktop form{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sd-desktop .btn-wrap{
    display: flex;
    align-items: center;
}
.sd-button{
    display: none;
    position: fixed;
    left: 0;
    bottom: 1.5rem;
    /* bottom: 50%;
    transform: translateY(50%); */
    background: var(--light-cream);
    border: 1px solid var(--light-brown);
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
    padding: .75rem;
    padding-left: 1.5rem;
    border-radius: 0 10px 10px 0;
    z-index: 10;
    transition: ease 0.5s all;
}
.sd-button.hide{
    transform: translateX(-300%);
    pointer-events: none;
}
.sd-button h4{
    margin-right: 0;
    font-size: 1rem;
}
/*Lock Overlay*/
.lock-overlay{
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
    opacity: 1;
    transition: ease 0.2s all;
}
.lock-overlay.hide{
    opacity: 0;
    pointer-events: none;
}
.lock-overlay.none{
    display: none;
}

@media(max-width: 1130px){
    .whatsapp-contact.sd-is-on{
        bottom: 1.5rem;
    }
    
    .whatsapp-contact{
        left: auto;
        right: 1.5rem;
        flex-direction: row-reverse;
    }
    .whatsapp-contact .wa-contact-list{
        left: auto;
        right: calc(100% + 1rem);
        align-items: flex-end;
    }
    .whatsapp-contact.hide .wa-contact-list {
        transform: translateX(200px);
        right: -400%;
        left: auto;
    }
    .whatsapp-contact.hide button.hide{
        transform: translateX(400%);
        pointer-events: none;
    }

    .sd-desktop.hide{
        transform: translateX(-300%);
    }
    .sd-button{
        display: block;
    }
    .special-deals .mobile-back{
        display: flex;
    }
    .sd-desktop{
        padding: 1.5rem;
        max-width: 100vw;
        right: initial;
        left: initial;
        /* bottom: 50%;
        transform: translateY(50%); */
        display: flex;
        align-items: center;
        bottom: 0;
        height: 100vh;
        z-index: 1001;
        box-shadow: 5px 10px 20px rgba(0,0,0,0.1);
    }
    .sd-desktop .btn-icon{
        margin-bottom: 1.5rem;
    }
    .sd-desktop h4{
        margin-bottom: 2rem;
    }
    .sd-desktop form{
        flex-direction: column;
        align-items: flex-start;
    }
    .sd-desktop .dates-wrap{
        flex-direction: column;
    }
    .sd-desktop .input-group{
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
    .special-deals .jq-date-wrap input, .special-deals input[type="text"],
    .sd-desktop select{
        width: 100%;
    }
    .sd-desktop .dates{
        flex-direction: column;
        align-items: flex-start;
    }
    .sd-desktop .dates i.arrow-mobile{
        display: block;
        margin: .5rem 0;
    }
    .sd-desktop .dates i.arrow-desktop{
        display: none;
    }
    .sd-desktop .btn-wrap, 
    .sd-desktop button{
        width: 100%;
    }
    .sd-desktop button{
        display: block;
        text-align:  center;
    }
}
@media(max-width: 900px){
    header .menu-btn{
        display: block;
    }
    header .header-nav{
        display: none;
    }
    footer .f-info{
        align-items: flex-start;
    }
    .f-info-dtl .dtl{
        flex-direction: column;
    }
    .f-info-dtl .dtl a:not(:last-child){
        margin-bottom: .5rem;
    }
    footer .f-properties{
        flex-direction: column;
    }
    footer .f-properties h4,
    footer .f-nav{
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    footer .properties-list, 
    footer .f-nav{
        justify-content: flex-start;
        margin-left: 0;
    }
    footer .f-social-nav{
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}
@media(max-width: 768px){
    /*Elements*/
    h1{
        font-size: 3.4rem;
    }
    h2{
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    h3{
        font-size: 1.7rem;
    }
    h4{
        font-size: 1.4rem;
    }
}
@media(max-width: 600px){
    .slider-control .sc-load-wrap{
        width: 130px;
    }
    footer{
        padding-bottom: 3rem;
    }
}
@media(max-width: 450px){
    section{
        margin-bottom: 3rem;
    }
    /*Elements*/
    h1{
        font-size: 3rem;
    }
    h2{
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    h3{
        font-size: 1.5rem;
    }
    h4{
        font-size: 1.3rem;
    }
    p, body, a:not(.sm-view-all){
        font-size: 14px;
    }
    .whatsapp-contact button{
        height: 48px;
        width: 48px;
    }
    footer .f-info{
        flex-direction: column;
    }
    footer .footer-logo{
        margin-bottom: 1.5rem;
    }
    footer .f-info,
    footer .f-properties,
    footer .f-social-nav{
        padding: 1.5rem 0;
    }

    
    .slider-control .sc-load-wrap{
        width: 80px;
    }

    .book-now{
        min-width: calc(100vw - 3rem);
    }

    .book-now .dates{
        flex-direction: column;
        align-items: flex-start;
    }
    .book-now .dates i.arrow-mobile{
        display: block;
        margin: .5rem 0;
    }
    .book-now .dates i.arrow-desktop{
        display: none;
    }
    .book-now input,
    .book-now select{
        width: 100%;
        border-bottom: 1px solid var(--cream);
        padding-bottom: 10px;
    }
    .book-now .jq-date-wrap input,
    .special-deals .jq-date-wrap input,
    .book-now .jq-date-wrap, .special-deals .jq-date-wrap{
        width: 100%;
    }

}