:root{
    --primary: #8BB63C;
    --darkGray: #343741;
}

.header-main .container-fluid {
    max-width: 1536px;
    margin: 0 auto;
}
.booking-form-fixed{
    z-index: 99;
}
@media (min-width: 1600px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1536px;
    }
}
@media (min-width: 1200px) {
    .section-hero {
        min-height: 500px;
        height: 100vh !important;
    }
}

.logo {
    display: block;
    width: 150px;
    position: relative;
}

.card-locations {
    border-radius: 14px;
    display: block;
    text-decoration: none;
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border: 0;
}
@media (max-width: 1600px) {
    .card-locations {
        padding-bottom: 120%;
    }
}

.card-locations:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.card-locations img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.3s ease all;
}


.card-locations .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    color: #fff;
    z-index: 2;
}

.card-locations .content p {
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-locations .content h3 {
    margin-bottom: 5px;
}
@media (max-width:768px){
    .card-locations .content {
        padding: 9px 12px;
    }
    .card-locations .content p {
        font-size:11px;
        margin-bottom: 0px;
    }
    .card-locations .content h3 {
        font-size: 16px;
    }
}

.card-locations:hover img {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ================= Tabs ================= */

.Hpro-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
@media (max-width:768px){
    .Hpro-tabs-wrap {
        margin-bottom: 20px;
        overflow-x: auto;
        justify-content: start;
    }
}

.Hpro-tabs {
    background: #fff;
    padding: 6px;
    border-radius: 20px;
    display: flex;
    gap: 6px;
    border: 1px solid #efefef;
}

.Hpro-tab-btn {
    border: none;
    background: transparent;
    padding: 10px 18px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    white-space:nowrap;
    color:#000000;
}

.Hpro-tab-btn.active {
    background: var(--primary);
    color: #fff;
}

/* ================= Swiper / Property ================= */

.Hpro-tab-content {
    display: none;
    position: relative;
}
.Hpro-tab-content .swiper {
    padding: 22px;
}

.Hpro-tab-content.active {
    display: block;
}

.Hpro-property-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: black;
}

.Hpro-property-img {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
}

.Hpro-property-img img {
    position: absolute;    
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease all;
}

.Hpro-property-card:hover .Hpro-property-img img{
    transform: translate(-50%, -50%) scale(1.1);
}

.Hpro-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 1;
}

.Hpro-property-info {
    padding: 18px;
}

.Hpro-property-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.Hpro-property-info p {
    margin: 0 0 12px;
    font-size: 13px;
    color: #777;
}

.Hpro-property-info .price {
    font-size: 18px;
    font-weight: bold;
    border-top: 1px solid var(--darkGray);
    padding-top: 8px;
}
.Hpro-property-info .price span{
    font-size: 14px;
    font-weight: normal;
}

/* Swiper arrows */

.Hpro-tab-content .swiper-button-next,
.Hpro-tab-content .swiper-button-prev {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}
.Hpro-tab-content .swiper-button-prev{
    left: 5px !important;
    right: auto !important;
}
.Hpro-tab-content .swiper-button-next{
    right: 5px !important;
    left: auto !important;
}

.Hpro-tab-content .swiper-button-next::after,
.Hpro-tab-content .swiper-button-prev::after {
    font-size: 14px;
    color: #000;
}
.Hpro-tab-content .swiper-button-next:hover,
.Hpro-tab-content .swiper-button-prev:hover {
    font-size: 14px;
    color: #ffffff !important;
    background-color: var(--primary);
}

/* ================= Stay Type Section ================= */

.section-stayType {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.section-stayType::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.section-stayType > div {
    position: relative;
    z-index: 1;
}

.section-stayType .HstayWrap {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}

/* Swiper Wrapper */

.section-stayType .home-swiper {
    position: relative;
}

/* Card Box */

.section-stayType .home-Staycard {
    background: #f7f4ee;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

/* Image */

.section-stayType .home-Staycard .imgBox {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.section-stayType .home-Staycard .imgBox img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    transition: 0.3s ease all;
}

.section-stayType .home-Staycard:hover .imgBox img {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Content */

.section-stayType .home-Staycard .home-card-content {
    padding: 22px 24px 26px;
}

.section-stayType .home-Staycard .home-card-content h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #000;
}

.section-stayType .home-Staycard .home-card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Arrows */

.section-stayType .swiper-button-next,
.section-stayType .swiper-button-prev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.section-stayType .swiper-button-next::after,
.section-stayType .swiper-button-prev::after {
    font-size: 14px;
    color: #000;
}
.Hpro-tab-content .swiper-button-next[aria-disabled="true"],
.Hpro-tab-content .swiper-button-prev[aria-disabled="true"]{
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

/* Responsive */

.section-stayType .swiper-slide {
    height: auto;
}


.bg-light-custom{
  background:#fbf9f4;
}

.feature-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow: 0 2px 2px rgba(0,0,0,0.10);
  transition: 0.3s ease all;
}
.feature-card:hover{
  box-shadow: 0 3px 3px rgba(0,0,0,0.25);
}

.feature-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.col-lg-5 .feature-card img{
  height:100%;
  min-height:520px;
}

.card-body-custom{
  padding:22px 24px;
}

.card-body-custom h4,
.card-body-custom h5{
  font-weight:500;
  margin-bottom:10px;
}

.card-body-custom em{
  font-style:italic;
}

.card-body-custom p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

.card-body-custom a{
  color: var(--primary);
  font-size:14px;
  text-decoration:none;
}

.card-body-custom a:hover{
  text-decoration:underline;
}
.subNew{
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.subText{
    font-size: 16px;
    color: var(--darkGray);
}
.newShadowBox{
    display: block;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.10);
    transition: 0.5s ease all;
}
@media (max-width:575px){
.newShadowBox h6{
    font-size:14px;
    margin: 0 !important;
}
}
.newShadowBox:hover{
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}
.section-guests-comments .comments-images{
    margin-left: 0 !important;
}
.testimonialBoxNew{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
    margin: 0 20px;
}

.comments-slider-wrapper{
    padding: 40px;
}
@media (max-width:767px){
    .comments-slider-wrapper blockquote{
        font-size:16px;
    }
}
.hblog-swiper, .blog-swiper{
    padding:  0 20px;
}
.swiper-track{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 !important;
    margin: 0;
    transform: translateY(-50%);
    z-index: 1;
}
.swiper .cs-prev, .swiper .cs-next, .section-swiper .cs-prev, .section-swiper .cs-next{
    width: 40px;
    height: 40px;
    pointer-events: all;
    border-radius: 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: #fff;
    border: 0px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.15);
}

.swiper-track:after{
    display: none;
}
.swiper-button-disabled{
    opacity: 0.3 !important;
    pointer-events: none !important;
    cursor: not-allowed;
}
.swiper .cs-next:hover, .section-swiper .cs-next:hover, .swiper .cs-prev:hover, .section-swiper .cs-prev:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.numberBorder{
    border-left: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
}
@media (max-width:991px){
    .numberBorder{
        border-left: 0px solid #eeeeee;
        border-right: 0px solid #eeeeee;
        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
    }
    .tagline-text{
        padding: 20px 0;
    }
}
.section-tagline{
    display: none;
}
.card-insta{display: block; border: 0px; background-color: transparent;}
.card-insta .imgBox{width:100%; display: block; position:relative; cursor: pointer; padding-bottom: 160%; border-radius:12px; overflow: hidden;}
.card-insta .imgBox img, .card-insta .imgBox video{position:absolute; width:100%; height:100%; object-fit: cover;}

.swiper-pagination-bullet-active{
    background: var(--primary);
}
.ratio-4x3 {
    --bs-aspect-ratio: 78%;
}
.fContact li{margin: 8px 0;}
.fContact a{display: inline-flex; align-items: center; gap: 15px; text-decoration: none; color: #000; transition: 0.3s ease all;}
.fContact a span{width: 36px; height: 36px; border-radius: 50%; box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); background-color: #ffffff;display: flex; align-items:center; justify-content: center; color: #000;}

.fContact a:hover{color: var(--primary);}

.fContact a:hover span{color: var(--primary);}

.footer-main{
    display: none;
}
@media (max-width: 991px) {
    .footer-main{
        padding-bottom:80px;
    }
}
.card-insta video {
  width: 100%;
  height: auto;
  display: block;
  background: #000; /* important for iOS */
}

@media (max-width: 575.98px) {
    .social-links {
        padding-top: 0px;
    }
    .section-location{
        padding-top: 0px;
    }
    .section-tagline{
        padding: 30px 0;
    }
    .section-tagline .tagline-text strong {
        font-size: 40px;
    }
    .section-tagline .tagline-text span {
        font-size: 12px;
        margin-right: 0px;
    }
    .section-hero{
        padding-bottom: 30px;
    }
    .submit-wrap-mob button.btn-secondary{
        margin-top: 30px;
    }
}