section.video-banner {
    padding: 0px;
    width: 100%;
    height: 100vh;
    position: relative;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-sec {
    width: 100%;
    height: 100%;
}

#play{
    display: none;
}
#pause{
    display: none;
}
.search{
    position: absolute;
    /* top: 450px; */
    width: 88%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
    z-index: 1;
}
.search .col-3{
    padding-left: 16px;
    padding-right: 16px;
    width: 21%;
}
.search .col-3.loc{
    width: 20%;
    position:relative;
}

/*img.destree {
    position: absolute;
    left: -5px;
}*/

.row.srch-row {
    gap: 0 20px;
}


.search .col-3:first-child, form.Search-bar .checkbar{
    /*border-right: 1px solid #0000006e;*/
}
.search span{
    /* font-size: 16px; */
    font-family: var(--primary-font);
    color: #fff;
    font-weight: 500;
}
form.Search-bar {
    position: relative;
    margin: auto;
    justify-content: center;
    width: 88%;
    left: 0;
    right: 0;
    top: -15px;
    background: #fff;
        padding: var(--p10) ;
    border-radius: 0px;
    z-index: 2;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 12%);
    border-radius: 10px;
}

form.Search-bar .checkbar{
    display: flex;
    width: 33%;
    gap: 10px;
    position: relative;
    padding-top: 0;
}
form.Search-bar .people{
    display: flex;
    justify-content: center;
      width: 100%;
}
form .adult_field {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}
form.Search-bar .people label{
    width: 100%;
}
form.Search-bar .people .adult{
    width: 100%;
    flex-direction: column;
}
form.Search-bar .people .children{
    width: 50%;
}
form.Search-bar  .check-out{
    width: 50%;
}
form.Search-bar  .check-in{
    width: 50%;
}

form.Search-bar  .check-in input{
border-right:0 !important;
}

form.Search-bar select option{
    /* background:#222; */
    border:1px solid #222;
}
form.Search-bar input, form.Search-bar select{
    width: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    font-family: var(--primary-font);
    color: #a6a8a8;
    height: 33px;
}

form.Search-bar input::placeholder{
    color: #a6a8a8;
  font-size: 16px !important;
}
form.Search-bar input:focus-visible, form.Search-bar select:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
} 
form.Search-bar .people button{
    background: transparent;
    border-radius: 50%;
    border: 1px solid #0000006e;
    width: 25px;
    height: 25px;
    font-family: var(--primary-font);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #0000006e;
    margin-left: 0;
}
form.Search-bar .people button.disabled {
    opacity: 0.3;
}

.adult_field {
    text-align: center;
}

form.Search-bar .sub-btn{
    width: 20%;
    /* align-items: center; */
    justify-content: end;
    display: flex;
    align-items: center;
    padding-right: 0;
    /*padding-right: 16px;*/
}
form.Search-bar .adult-box {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    justify-content: center;
    width: 130px;
    gap: 0px;
}
form.Search-bar .adult-box input{
    text-align: center;
    width: 35px;
    padding: 0;
}
form.Search-bar .submit-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
form.Search-bar .submit-btn button{
        width: 100%;
    height: 50px;
    padding: 10px;
    border-radius: 8px;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: var(--f14);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-color: var(--secondary-color);
}
form.Search-bar .submit-btn button:hover{
    /* border-radius: 0px; */
}
form.Search-bar label{
    font-size: var(--f16);
    font-weight: 700;
    font-family: var(--primary-font);
    color: var(--black-color);
    text-transform: uppercase;
}
form.Search-bar input::placeholder{
    font-size: var(--f13);
}
form.Search-bar .people .inc{
    border: 1px solid var(--btn-color); 
} 
.datepicker-section{
                         position: relative;
                     }
                     .datepicker-common-2{
                         padding:0;
                         position: absolute;
                         width: 100%;
                         height: 33px;
                         left: 0;
                         bottom: 0;
                     }
                     input#demo17 {
                         position: absolute;
                         left: 0px;
                         top: auto !important;
                         bottom: 0px !important;
                         width: 100% !important;
                         opacity: 0;
                         height: 33px !important;
                         z-index: 9;
                     }
.scroll .chevron {
position: absolute;
width: 28px;
height: 8px;
opacity: 0;
transform: scale3d(0.5, 0.5, 0.5);
animation: move 3s ease-out infinite;
}

.scroll .chevron:first-child {
animation: move 3s ease-out 1s infinite;
}

.scroll .chevron:nth-child(2) {
animation: move 3s ease-out 2s infinite;
}

.scroll .chevron:before,
.scroll .chevron:after {
content: ' ';
position: absolute;
top: 0;
height: 100%;
width: 51%;
background: var(--white-color);
}

.scroll .chevron:before {
left: 0;
transform: skew(0deg, 30deg);
}

.scroll .chevron:after {
right: 0;
width: 50%;
transform: skew(0deg, -30deg);
}

@keyframes move {
25% {
 opacity: 1;

}
33% {
 opacity: 1;
 transform: translateY(30px);
}
67% {
 opacity: 1;
 transform: translateY(40px);
}
100% {
 opacity: 0;
 transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
}
}

.scroll .text {
display: block;
margin-top: 75px;
margin-left: -30px;
font-family: var(--primary-font);
font-size: var(--f12);
color: var(--white-color);
text-transform: uppercase;
white-space: nowrap;
opacity: .25;
animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
to {
 opacity: 1;
}
}
.form-control:focus {
 background-color: var(--white-color) !important;
 border-color: var(--white-color) !important;
 box-shadow: 0 0 0 0rem rgba(13,110,253,.25) !important;
}


.video-cont {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.4);
    padding-top: 0;
    flex-direction: column;
}
.video-cont h1 {
    max-width: 100%;
    margin: auto;
    margin-bottom: 0;
    color: #ffffff;
    text-shadow: 0px 0px 2px #000;
    text-transform: capitalize;
    font-size: var(--f60);
    letter-spacing: 2px;
    font-family: var(--secondary-font);
    font-weight: 600;
    text-align: center;
    position: relative;
    margin-top: var(--m50);
}
.number-head {
    font-weight: 700;
    font-family: var(--secondary-font);
    font-size: var(--f18);
    letter-spacing: 0.1765px;
}
.number-head:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 38px;
    height: 5px;
    background: var(--secondary-color);
    margin-left: var(--m11);
    margin-top: -1px;
}
.head-sec h2{
    font-size: var(--f32);
    line-height: 1.3;
    font-weight: 600;
    color: var(--black-color);
    /* text-transform: capitalize; */
    margin-bottom: 0px;
    font-family: var(--secondary-font);
    width: auto;
    display: inline-block;
}

.head-sec span{
    font-size: var(--f45);
    font-weight: 400;
    line-height: 1;
    margin-top: -10px;
    color: var(--btn-hover);
    font-family: var(--other-font);
    text-align: right;
}



/* video bottom section */

.banner-text{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--p20);
    gap: 30px;
    background: #fffaf4;
}

.banner-text .main-btn{
    border-radius: 10px;
    background: #fffaf4;
    border: 0px solid var(--btn-color);
    color: var(--btn-color);
    text-decoration: none;
    font-size: var(--f14);
    width: 200px;
    text-align: center;
    padding: var(--p10) var(--p15);
}
.banner-text .main-btn:hover{
    color: var(--white-color);
    box-shadow: inset 0 50px 0 0 var(--btn-color);
}
.banner-text h2 {
    font-size: var(--f32);
    margin-bottom: 0px;
}


/* property section */


.propety-list{
    /* padding: var(--p70) var(--p12); */
    text-align: center;
    /* padding-top: 120px; */
}
.propety-list .owl-prev, .propety-list .owl-next {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 7px #00000033;
}
.propety-list .owl-nav i {
    font-size: 19px;
}
.propety-list h2{
    margin-bottom: var(--m20);
    /* font-size: var(--f40); */
    /* text-transform: uppercase; */
}
.propety-list p{
    margin-bottom: var(--m40);
    font-size: var(--f16);
    font-weight: 400;
}
.propety-list img{
height: 320px;
object-fit: cover;
}
.propety-list .name{
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: left;
    padding: 15px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0));
   
}
.propety-list .name h6{
    color: var(--white-color);
    font-size: var(--f16);
    margin-bottom: 0px;
    font-family: var(--primary-font);
}

  /* fix blank or flashing items on carousel */
  .owl-carousel .item {
    position: relative;
    z-index: 100; 
    -webkit-backface-visibility: hidden; 
  }
  
  /* end fix */
  .owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .owl-nav i {
    font-size: 24px;
  }
  
  .owl-nav .owl-prev {
    left: -46px;
  }
  
  .owl-nav .owl-next {
    right: -46px;
  }
  .owl-prev{
    border-radius: 50%;
    padding: var(--p5);
    border: 1px solid var(--black-color);
  }
  .owl-next{
    border-radius: 50%;
    padding: var(--p5);
    border: 1px solid var(--black-color);
  }


/* features section starts */
  .experience{
    /* padding: var(--p70) var(--p12); */
    padding-bottom: var(--p20);
  }
  .experience .col-4{
    margin-bottom: var(--m40);
  }
  .experience img{
    margin-bottom: var(--m15);
    height: 47px;
  }
  .experience h4{
    margin-bottom: var(--m15);
    font-size: var(--f16);
    font-weight: 600;
    font-family: var(--primary-font);
  }
  .experience h2{
    text-align: center;
    margin-bottom: var(--m40);
  }
  .experience .img{
    display: inline-block;
  }
  img.experience-hover {
    display: none;
}
  .experience .img:hover img.experience-normal{
    display: none;
  }
   .experience .img:hover img.experience-hover{
    display: inline-block;
  }

/* cta  */

.cta{
    /*background-image: url(../images/cta-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: var(--p90) var(--p40);
    text-align: center;*/
    /*border-radius: 10px;*/
}

section.video-banner.cta-banner {
    height: 70vh;
    text-align: center;
}

section.cta-sec .container-fluid {
    padding: 0;
}

.cta h2 {
    width: 80%;
    margin: auto;
    color: var(--white-color);
    line-height: 1.5;
    text-shadow: 1px 1px 28px #000000;
    font-size: var(--f30);
}
.cta a.main-btn {
    display: block;
    width: 250px;
    margin: auto;
    border-radius: 7px;
    text-decoration: none;
    color: var(--secondary-color);
    background-color: var(--white-color);
    border-color: var(--white-color);
    margin-top: var(--m40);
    font-size: 14px;
    font-weight:700;
    box-shadow: none;
}
.cta a.main-btn:hover{
    color: var(--white-color);
    box-shadow: inset 0 60px 0 0 var(--btn-color);
     border-color: var(--secondary-color);
}



/* About css ==========================*/

.about-section .image-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .about-section .image-section .img-box {
      position: relative; }
      .about-section .image-section .img-box + .img-box {
        margin-left: 60px; }
      .about-section .image-section .img-box img {
        -webkit-box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15);
                box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.15); }
      .about-section .image-section .img-box .no-class {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        background-color: #ef3f3e;
        padding: 5px;
        left: -15px;
        -webkit-box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.4);
                box-shadow: 2.5px 4.33px 25px 0px rgba(239, 63, 62, 0.4); }
        .about-section .image-section .img-box .no-class h3 {
          font-size: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
          color: var(--white-color);
          margin-bottom: 0;
          font-weight: 700; }
  
  .about-section .about-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding-left: 60px; }
    .about-section .about-text h5 {
      font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
      font-style: italic;
      color: #adadad;
      text-transform: capitalize;
      font-weight: 700;
      margin-bottom: 15px;
      margin-top: -2px; }
      .about-section .about-text h5 span {
        color: #ef3f3e; }
    .about-section .about-text h3 {
      font-size: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
      text-transform: capitalize;
      font-weight: 800;
      letter-spacing: 0.001em;
      margin-bottom: 35px; }
    .about-section .about-text h2 {
      font-size: calc(18px + (45 - 18) * ((100vw - 320px) / (1920 - 320)));
      color: #ef3f3e;
      font-weight: 800;
      margin-bottom: 35px; }
    .about-section .about-text p {
      font-size: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));
      line-height: 1.5;
      font-weight: 600;
      margin-bottom: 25px; }
  
  .about-section.three-image .image-section .img-box + .img-box {
    margin-left: 45px; }
  
  .about-section.three-image .about-text {
    padding-left: 20px; }
    .about-section.three-image .about-text h5 {
      font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
      margin-bottom: 30px; }
    .about-section.three-image .about-text h2 {
      color: var(--black-color);
      font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
      margin-bottom: 10px; }
      .about-section.three-image .about-text h2 span {
        font-size: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
        text-transform: lowercase;
        margin-bottom: 0;
        display: block;
        margin-top: 14px;
        font-weight: 400;
        color: rgba(0, 0, 0, 0.6); }
    .about-section.three-image .about-text p {
      font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320))); }
  
  .about-section.about_page .image-section .img-box:nth-child(odd) {
    margin-bottom: 40px; }
    .about-section.about_page .image-section .img-box:nth-child(odd) .title-box {
      bottom: -40px; }
  
  .about-section.about_page .image-section .img-box:nth-child(even) {
    margin-top: 40px; }
    .about-section.about_page .image-section .img-box:nth-child(even) .title-box {
      top: -40px; }
  
  .about-section.about_page .image-section .img-box .title-box {
    padding: 20px;
    background-color: var(--white-color);
    display: inline-block;
    text-align: center;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-shadow: -2px 0px 20px 0px rgba(0, 0, 0, 0.08);
            box-shadow: -2px 0px 20px 0px rgba(0, 0, 0, 0.08);
    min-width: 162px; }
    .about-section.about_page .image-section .img-box .title-box h3 {
      font-size: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
      text-transform: capitalize;
      color: var(--black-color);
      margin-top: -4px;
      font-weight: 800;
      margin-bottom: 7px; }
    .about-section.about_page .image-section .img-box .title-box h6 {
      font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (1920 - 320)));
      text-transform: uppercase;
      margin-bottom: -4px;
      word-break: break-word;
      color: gray; }
  
  .about-section.about_page .about-text {
    padding-left: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .about-section.about_page .about-text .title-3 {
      text-align: left;
      margin-bottom: 35px; }
      .about-section.about_page .about-text .title-3 .title-label {
        text-transform: uppercase;
        -webkit-box-shadow: 5px 8.66px 20px 0px rgba(239, 63, 62, 0.22);
                box-shadow: 5px 8.66px 20px 0px rgba(239, 63, 62, 0.22); }
    .about-section.about_page .about-text h2 {
      font-weight: 700; }
      .about-section.about_page .about-text h2 span {
        font-size: calc(18px + (40 - 18) * ((100vw - 320px) / (1920 - 320)));
        text-transform: capitalize;
        margin-top: 20px; }
    .about-section.about_page .about-text .buttons-about {
      margin-top: 45px; }
      .about-section.about_page .about-text .buttons-about .btn + .btn {
        margin-left: 20px; }
  
  .about_section .about_img {
    position: relative;
    margin: 20px 0; }
    .about_section .about_img img {
      border-radius: 25px;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; 
      width: 100%;
      height: 460px;
    }
    .about_section .about_img .side-effect:after {
      content: "";
      position: absolute;
      top: -12px;
      height: calc(100% - 18px);
      background: url(../images/about.webp);
      border-radius: 25px;
      width: calc(100% - 65px);
      left: 76px;
      z-index: -1;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      background-blend-mode: overlay;
      opacity: 0.3; }
    .about_section .about_img .side-effect:before {
      content: "";
      position: absolute;
      top: -20px;
      height: calc(100% - 44px);
      background: url(../images/about.webp);
      border-radius: 25px;
      width: calc(100% - 97px);
      left: 120px;
      z-index: -1;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      background-blend-mode: overlay;
      opacity: 0.1; }
    .about_section .about_img .side-effect span:after {
      content: "";
      position: absolute;
      bottom: -12px;
      height: calc(100% - 18px);
      background: url(../images/about.webp);
      border-radius: 25px;
      width: calc(100% - 65px);
      right: 76px;
      z-index: -1;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      background-blend-mode: overlay;
      opacity: 0.3; }
    .about_section .about_img .side-effect span:before {
      content: "";
      position: absolute;
      bottom: -20px;
      height: calc(100% - 44px);
      background: url(../images/about.webp);
      border-radius: 25px;
      width: calc(100% - 97px);
      right: 120px;
      z-index: -1;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
      background-blend-mode: overlay;
      opacity: 0.1; }
    .about_section .about_img:hover img {
      -webkit-transform: scale(1.02);
              transform: scale(1.02);
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .about_section .about_img:hover .side-effect:before, .about_section .about_img:hover .side-effect:after {
      top: 0;
      left: 20px;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }
    .about_section .about_img:hover .side-effect span:after, .about_section .about_img:hover .side-effect span:before {
      bottom: 0;
      right: 20px;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }
  
  .about_section .about_content {
    margin-left: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%; }
    .about_section .about_content h5 {
      font-size: var(--f28);
      color: var(--black-color);
      text-transform: capitalize;
      font-weight: 800;
      font-style: italic;
      margin-bottom: 15px; 
      position: relative;
  }
  .about_section .about_content .abt-cont {
    height: 335px;
    overflow: hidden;
    margin-bottom: 20px;
}
  .about_section .about_content h5:before{
  position: absolute;
  bottom: -20px;
  width: 100px;
  height: 2px;
  background: var(--secondary-color);
  }
  
      .about_section .about_content h5 span {
        color: var(--other-color); }
    .about_section .about_content h2 {
      color: var(--black-color);
      font-weight: 800;
      text-transform: capitalize;
   }
    .about_section .about_content p {
      color: #464646;
      line-height: 1.9;
      font-weight: 300;
      font-size: var(--f16);
    }
    .about_section .about_content .about_bottom {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .about_section .about_content .about_bottom h6 {
        margin-left: 25px;
        background-color: #f7f7f7;
        color: #acacac;
        font-size: 14px;
        text-transform: capitalize;
        margin-bottom: 0;
        padding: 8px 12px;
        border-radius: 20px;
        font-weight: 600; }

section.about-home {
    padding: 0 var(--p12);
}
section.about-home img{
   width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 360px;
    object-fit: cover;
}
.head-sec {
    margin-bottom: var(--m30);
}
section.about-home .col-7.md-12.sm-12 {
    /*background: var(--black-color);*/
    padding: var(--p50) var(--p80);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
section.about-home p {
    font-family: var(--primary-font);
    color: var(--black-color);
    font-size: var(--f16);
    line-height: 30px;
    margin-bottom: var(--m20);
}

section.about-home a.abt-btn.main-btn {
    width: 250px;
    text-align: center;
    padding: var(--p13) var(--p20);
    margin-top: var(--m10);
}
section.about-home .abt-cont {
    height: auto;
    max-height: 395px;
    overflow: hidden;
}

/* Home Properties section start */

section.properties-sec {
    /*background: var(--lt-bg-color);*/
    /* border-bottom: 1px solid #9f9f9f; */
}


.home-properties{
    /* padding: var(--p70) var(--p12); */
}
.home-properties .upper-head {
    text-align: center;
    width: 96%;
    margin: auto;
    margin-bottom: var(--m40);
}
.home-properties h2{
    margin-bottom: var(--m20);
    font-size: var(--f30);
}
.home-properties p{
  font-size: var(--f16);
  font-weight: 400;
}
.hmprop-row {
	gap: 20px 10px;
	justify-content: space-between;
}
.hmprop {
    padding: 15px;
    background: var(--white-color);
    width: 32%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.home-properties img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    /*border-radius: 10px;*/
}
.home-properties .heart-icon {
    width: 35px;
    height: 35px;
    background: #000000b5;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    color: var(--white-color);
}
.home-properties .owl-prev, .home-properties .owl-next{
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-properties .owl-nav i {
    font-size: 19px;
}
.home-properties .owl-nav .owl-prev {
    left: 10px;
}
.home-properties .owl-nav .owl-next {
    right: 10px;
}
.home-properties .owl-nav{
    display: none;
}
.home-property-image{
    position: relative;
}
.home-property-image:hover .owl-nav{
    display: block;
}
.home-property-content {
    padding-top: 15px;
}
.home-property-content h4{
    font-family: var(--primary-font);
    font-size: var(--f16);
    font-weight: 600;
    margin-bottom: var(--m5);
}
.home-property-content a{
     color: var(--primary-color);
}
.home-property-content h4 a{
    color: var(--black-color);
    text-decoration: none;
    font-size: 18px;
}
.home-properties .location {
    margin-bottom: var(--m8);
    display: none;
}

.location i {
    font-size: 14px;
    color: #f7d200;
}

.home-properties .location span{
    font-size: var(--f14);
     font-family: var(--primary-font);
}
.home-properties p.amenity {
    margin-bottom: var(--m5);
}
.home-properties .price span{
    font-weight: bold;
}
.home-properties .owl-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.home-properties .owl-dot span{
    width: 7px;
    height: 7px;
    background: #fff;
    display: block;
    border-radius: 100%;
    opacity: 0.5;
}
.home-properties .owl-dot.active span{
    opacity: 1;
}


/* Border css start */
.border-sec{
    background: #fdfaf3;
}
.border-sec hr{
    margin: 0px !important;
    border-color: #e8e8e8;
    opacity: 1;
}

/* Activities css start */
.activities {
    /* padding: var(--p70) var(--p12); */
}
.activities .upper-head {
    text-align: center;
    width: 70%;
    margin: auto;
    margin-bottom: var(--m40);
}

.activities h2 {
    margin-bottom: var(--m20);
}
.activities img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}
.activities h4{
    font-size: var(--f20);
    font-family: var(--primary-font);
    margin-top: var(--m20);
    font-weight: 600;
}
.activities h4 a{
    color: var(--black-color);
    text-decoration: none;
}
.activities .row{
    gap: 30px 0;
}
.activities a.main-btn {
    display: block;
    border-radius: 7px;
    width: 170px;
    text-align: center;
    margin: auto;
    margin-top: var(--m20);
    text-decoration: none;
    font-size: var(--f13);
}

/* Testimonial css start */
.testimonial {
    /*background: #e1e1e1;*/
    /*padding: var(--p70) var(--p12);*/
}
.testimonial .upper-head{
    text-align: center;
    margin-bottom: var(--m40);
}
.testimonial .testimonial-box {
    background: var(--white-color);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 0 10px #00000059;
    height: 330px;
}
.testimonial .testimonial-box p{
    height: 100%;
    overflow: hidden;
    margin-bottom: 5px;
}
.testimonial .testimonial-box a{
    font-family: var(--primary-font);
    color: var(--btn-color);
    font-size: var(--f13);
    font-weight: bold;
}

.testimonial .testimonial-box p.testi-date {
    margin-bottom: 0px;
    font-size: var(--f13);
    line-height: 1.4;
    color: var(--primary-color);
    height: auto;
}
.testimonial .item{
    padding: 8px;
}
.testimonial .testimonial-box img{
    width: 25px !important;
    margin: auto;
    margin-bottom: var(--m20);
}
.testimonial  h5.testimonial-owner {
    font-weight: bold;
    font-family: var(--primary-font);
    margin-top: var(--m20);
    font-size: var(--f16);
    margin-bottom: var(--m5);
}
.testimonial p.testi-para {
    margin-bottom: 5px;
    font-size: var(--f13);
    line-height: 1.4;
    color: #999999;
    height: auto;
}
.testimonial .owl-nav {
   width: 150px;
   margin: auto;
   position: relative;
   display: flex;
   gap: 20px;
   justify-content: center;
   align-items: flex-end;
   margin-top: 20px;
   height: auto;
}
.testimonial .owl-nav .owl-prev, .testimonial .owl-nav .owl-next {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 7px #00000033;
}
.testimonial .owl-nav .owl-prev {
    left: 0px;
    position: relative;
    top: 0;
    transform: translateY(0%);
}
.testimonial .owl-nav .owl-next {
    right: 0px;
    position: relative;
    top: 0;
    transform: translateY(0%);
}
.testimonial .owl-nav i {
    font-size: 20px;
    padding: 0;
    /* background: #fff; */
    border-radius: 100%;
}

.ser-para.short {
  max-height: 102px;
  overflow: hidden;
  position: relative;
}

.toggle-btn {
  /*color: #007BFF;*/
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}



/* Collection css start */
.collection {
    /* padding: var(--p70) var(--p12); */
    background: var(--white-color);
}
.collection .col-6.collection-image {
    padding-right: var(--p40);
}
.collection .owl-nav .owl-prev, .collection .owl-nav .owl-next {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 7px #00000033;
}
.collection .owl-nav .owl-prev{
    left: 0px;
    position: relative;
}
.collection .owl-nav i {
    font-size: 20px;
    padding: 6px 10px;
}
.collection .owl-nav .owl-next {
    right: 0px;
    position: relative;
}
.collection .owl-nav > div{
    margin-top: 0;
    top: auto;
}
.collection .owl-nav {
    width: 150px;
    margin: auto;
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.collection .col-6.collection-content {
    padding-left: var(--p70);
}
.collection h2 {
    text-align: center;
    margin-bottom: var(--m40);
}
.collection p{
    text-align: center;
}
.collection li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    width: 49%;
    list-style: none;
    color: var(--black-color);
}
.collection ul{
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px 0;
}
.collection ul img{
    width: 40px;
}
.collection .collection-slider img{
    height: 350px;
    object-fit: cover;
    width: 90%;
    margin: auto;
}
.collection a.main-btn {
    display: block;
    border-radius: 7px;
    width: 150px;
    text-align: center;
    margin: auto;
    margin-top: var(--m30);
    text-decoration: none;
}

/* Video css start */
.video img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}



section.activities-sec .col-4{
  width: 33%;
}


section.video-cta{
  padding:0;
}


section.experience-sec{
  padding-bottom:0;
}

section.activities-sec{
  padding-bottom:0;
}

section.home-testimonial{
  /*padding-bottom:0;*/
}

section.cta-sec{
      padding: var(--p60) var(--p0);
    padding-bottom: 0;
}




/* experience section */


section.exprnc-sec {
      /* padding-top: 20px; */
      /*background: var(--white-color);*/
}


.exprnc h2 {
    text-align: center;
    /* padding-bottom: 36px; */
    font-size: 30px;
    margin-bottom: 40px;
    text-transform: math-auto;
}


.exprnc-row {
	gap: 40px 0px;
	position: relative;
	justify-content: space-between;
}

.exprnc-mncol {
	padding:0;
  width: 49%;
}

.row.exprnc-feature {
    position: relative;
}

.exprnc-img {
    position: relative;
  padding-left: 0;
}

.exprnc-img img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 100px;
}

.exprnc-contt{/* padding: 0; *//* padding-left: 10px; *//* align-self:center; */position: relative;z-index: 1;height: 100%;display: flex;justify-content: center;flex-direction: column;}

.exprnc-contt h4 {
    font-size: 20px;
    margin-bottom: 5px;
    text-transform: math-auto;
}

.exprnc-contt h4 a{
    color:var(--black-color);
}

.exprnc-contt p {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 26px;
    text-transform: none;
    text-align: justify;
    hyphens: auto;
}

section.property {
    /* border-bottom: 1px solid #9f9f9f; */
}

/* review section start */



.testimonial-page-wrap .card figure{
  position: relative;
  text-align:left;
      padding: 6px !important;
}

/*.testimonial-page-wrap .card figure:before{
  content: '\f10e';
  position: absolute;
  top: -29px;
  font-weight: 600;
  font-family: 'Font Awesome 5 Free';
  width: 45px;
  height: 45px;
  background-color: var(--secondary-color);
  justify-content: center;
  align-items: center;
  display: flex;
  color: var(--white-color);
}*/

.testimonial-page-wrap .card{
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px #ccc;
    border-radius: 5px;
    border: none;
      padding: 10px 5px !important;
}
.testimonial-page-wrap .card .blockquote-footer{
   margin-top: 10px;
    text-align: right;
    color: var(--secondary-color)!important;
    font-weight: 600;
    font-family: var(--secondary-font);
}
.testimonial-page-wrap .card blockquote p{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--black-color);
      line-height: 24px;
}

.testimonial-page-wrap .card .blockquote-footer cite{
  font-weight: 800;
}
.testimonial-page-wrap .card img{
        width: 50px;
    height: 50px;
    border-radius: 100%;
    object-fit: cover;
}
.testimonial-page-wrap .col-lg-4{
    margin-bottom:var(--m30);
}
.testimonial-page-wrap .rating {
    margin-top: var(--m7);
}
.rating span {
    font-size: 14px;
      color: #747474;
}

span.rating-count {
    padding-right: 10px;
}

.testimonial-page-wrap i.fa-solid.fa-star {
    color: #000000c7;
    font-size: var(--f14);
}

.revtest-cont {
    align-self: center;
  padding: 0;
}

.revtest-cont h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.revtest-cont p {
        margin: 0;
    color: #747474;
    font-size: 14px;
    line-height: 20px;
}

.testimonial-page-wrap .revtest-img {
    margin: 0;
      padding: 0;
      width: 21%;
}

section.common-page-wrap h2 {
    text-align: center;
    font-size: 28px;
  padding-bottom: 20px;
}

section.common-page-wrap {
    position: relative;
    /*padding-bottom: 220px;*/
}

.testimonial-page-wrap {
    position: relative;
}

.row.andre-revrow4 {
    gap: 30px 0;
}

.andre-revcol4 {
    position: relative;
    margin-top: -80px;
      padding: 0;
}

.andre-revcol8 {
    padding-right: 0;
    padding-left: 0;
      position: relative;
}


/* property owl */

.owl-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

.owl-carousel button.owl-prev {
    width: 40px;
    height: 40px;
    font-size: 40px;
    border: 1px solid var(--secondary-color);
    color: var(--white-color) !important;
    background: var(--secondary-color) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -4%;
    transform: translateY(-50%);
}

.owl-carousel button.owl-next {
    width: 40px;
    height: 40px;
    font-size: 40px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background:rgb(255 255 255 / 35%) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
    color: var(--white-color) !important;
    background: var(--secondary-color) !important;
}


/* review box set */

.ser-para.short {

  overflow: hidden;
  position: relative;
}

.ser-para.short.lilshrt{
  max-height: 180px; 
}

.ser-para.short.rvside5char{
  max-height: 60px; 
}

.ser-para.short.rvside8char{
  max-height: 80px; 
}

.toggle-btn {
  color: var(--secondary-color);
  cursor: pointer;
  display: inline-block;
      /*margin-top: 15px;*/
    font-size: 14px;
}

.blockquote {
    margin-bottom: 0;
}

.rvside1 {
    width: 36%;
}

.testimonial-page-wrap .rvside1 .card.rvside1card {
	 width: 88%;
}


.rvside2{
    width: 30%;
}

.rvside3,
.rvside5{
    width: 34%;
}

.rvside3 {
    margin-bottom: 9% !important;
}

section.common-page-wrap .rvside4 {
    margin-top: -8%;
    width: 36%;
}

.rvside6{
    width: 30%;
  margin-top: -5%;
}




/* team section css */

section.mtteam {
    /*padding:var(--p80) var(--p24);*/
    /* border-bottom: 1px solid #9f9f9f; */
}

.ser-para.short.rentakentpara {
    max-height: 58px;
}

section.mtteam .upper-head {
    text-align: center;
    width: 96%;
    margin: auto;
    padding-bottom: var(--p30);
    font-weight: 600;
}

section.mtteam .upper-head h2 {margin-bottom: var(--m20);font-size: var(--f30);/* text-transform:uppercase; */}

section.mtteam .upper-head p {margin-bottom: var(--m16);font-size: var(--f16);font-weight: 400;}


section.mtteam .row {
    gap: 20px 0;
      justify-content: center;
}

section.mtteam h3 {
    text-align: center;
    padding:0 0 20px 0;
      font-size: var(--f50);
  text-transform: capitalize;
  color: var(--heading-color);
}

section.mtteam p {
    font-size: var(--f18);
    text-align: center;
}

section.mtteam .card {
    padding: 0;
    border-color: rgb(0 0 0 / 8%);
      border: none;
      background: transparent;
}

section.mtteam .card-body {
    padding: 0 var(--p10) var(--p20);
}

section.mtteam .mtteam-head {
padding-bottom: var(--p30);
}


section.mtteam img.card-img-top {
    height: 210px;
    object-fit: cover;
}

section.mtteam .card-body h5 {
    margin: var(--m15) 0 0 0;
    text-transform: capitalize;
    font-size: var(--f20);
}

section.mtteam .card-body span{
    text-align: left;
    font-size: 16px;
    color: #a9243c;
    font-weight: 600;
}

section.mtteam .card-body p{
    text-align: left;
    font-size: var(--f16);
    line-height: 24px;
    margin-top: var(--m10);
    margin-bottom: 0;
    /*text-align: justify;*/
}


/*** Superhost section css start ***/


section.superhost-section {
    text-align: center;
    /* border-bottom: 1px solid #9f9f9f; */
}
section.superhost-section .head-sec{
 margin-bottom:40px; 
}
section.superhost-section hr{
  opacity: 1;
  width: 221px;
  border-color: transparent;
  display: none;
}
section.superhost-section .superhost-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: auto;
}

section.superhost-section .superhost-images img{
 max-width:116px; 
}


/**********************************************/



.property .item {
    overflow: hidden;
    position: relative;
}

.property .item img {
    transition: transform 0.3s ease-in-out;
    display: block;
    width: 100%;
}

.property .item:hover img {
    transform: scale(1.14);
}

section.mtteam .img-inner {
  overflow: hidden;
  position: relative;

}

section.exprnc-sec .img-inner {
  overflow: hidden;
  position: relative;
  border-radius: 100px;
}

.img-inner img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  transform-origin: center center;
}

 .img-inner:hover img {
  transform: scale(1.14);
}

section.superhost-section .head-sec h3 {
    font-size: 30px;
    /* text-transform: uppercase; */
}


section.exprnc-sec{
      font-size: 40px;
    text-transform: uppercase;
}

section.home-testimonial .upper-head h2{
    font-size: 30px;
    /* text-transform: uppercase; */
}

 .hr_line {
    width: 400px;
    display: block;
    margin: auto;
}
.mob-sec{
  display:none;
}



