/* body,
.date-label {
    background-color: #f8f9fa;
    font-family: 'Barlow', sans-serif !important;
} */

/* ========================== */
body {
    font-family: 'Barlow', sans-serif;
}

span.page-link {
    background: #015c35 !important;
    color: #fff !important;
    border-color: #015c35 !important;
}

a.page-link {
    color: #015c35 !important;
}

/* Loader Overlay */
.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sp_pdf {
    transform: translateY(-50%);
    position: relative;
    top: 50%;
    box-shadow: 0 0 1.04167vw rgba(0, 0, 0, .1);
    position: fixed;
    z-index: 125;
    right: 0;
}

.sp_pdf img.lazyloaded {
    width: 100px;
}

/* Spinner */
.loader {
    position: relative;
    top: 70%;
    left: 50%;
    border: 4px solid #f3f3f3; /* Light gray border */
    border-top: 4px solid #1a3c6d; /* Matches brand color from previous emails */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Disable form during loading */
.form-loading {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
}

.ns_navbar {
    background: #121111 !important;
    /*  padding: 10px 0 !important; */
}

.ns_navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    padding: 35px 13px !important;
    position: relative;
}

.navbar-brand img {
    width: 120px !important;
}

.ns_navbar .nav-link:before {
    content: "";
    width: 80%;
    height: 5px;
    background: #015c35;
    position: absolute;
    bottom: 0;
    /*  left: 0; */
    transform: rotateY(90deg);
    transition: 0.5s;
}

.ns_navbar .nav-link:hover:before {
    transform: rotateY(0deg);
}

.navbar-nav-centered {
    flex: 1;
    justify-content: center;
}

.consultation_btn {
    background-color: #015c35;
    color: #fff;
    font-weight: 600;
    padding: 10px 32px 10px 28px;
    font-size: 20px;
    border-radius: 0px !important;
    text-transform: uppercase;
    border: 2px solid #015c35;
    transition: 0.5s;
}

.consultation_btn:hover {
    background-color: #ffffff;
    color: #015c35 !important;
    border: 2px solid #015c35;
}

/* ========================== */



.product-img {
    max-width: 100%;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d6efd;
}

.old-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 8px;
}

.icon-box {
    text-align: center;
    padding: 20px 10px 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.info-section {
    /* background: #fff; */
    border-radius: 8px;
    /*  padding: 1rem; */
    margin-bottom: 1rem;
}

.info-section h4 {
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/*   footer {
            background: #fff;
            border-top: 1px solid #ddd;
            padding: 2rem 0;
            margin-top: 2rem;
        }
 */

/* ============= */
.product-img {
    max-width: 100%;
    border-radius: 10px;
}

.product-box {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-old {
    text-decoration: line-through;
    color: #888;
}

.price-new {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.reserve-btn {
    width: 100%;
}

.info-box {
    margin-top: 20px;
}

/* @media (min-width: 992px) {
    .right-column {
        position: sticky;
        top: 20px;
    }
}
 */
/*  tbody, td, tfoot, th, thead, tr {
            border-color: inherit;
            border-style: solid;
            border-width: 1px;
            padding: 13px !important;
        } */
.right-column h2 {
    font-weight: 700;
    font-size: 35px;
}

/* ========= */
.key-feature .content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
}

.key-feature {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 24px;
}


.carousel_box {
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 20px;
}

.thumb-carousel {
    margin-top: 15px;
    border-top: 1px solid #d4d4d4;
    padding-top: 20px;
}

.owl-item {
    transform: scale(0.7);
    transition: all 0.3s;
}

.owl-item.active {
    animation: zoomIn 0.6s ease forwards;
}

/* Zoom-in animation */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0.7;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.carousel-container {
    max-width: 600px;
    margin: auto;
}

.main-carousel img {
    width: 100%;
    border-radius: 12px;
}

.thumb-carousel .item {
    padding: 5px;
}

.thumb-carousel img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 10px;
}

.thumb-carousel img.active {
    border: 2px solid #000000;
}

.main-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translate(0%, 50%);
}

.main-carousel .owl-item img {
    padding: 40px;
}

.main-carousel button>span {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #000000;
    font-size: 42px;
    color: #000000;
    line-height: 0.6;
    border-radius: 5px;
}

/* ================= */
img.icon {
    background: #f4f4f4;
    padding: 13px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.icon-box p {
    word-break: break-all;
}

/* =================== */

.ns_table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
}
.ns_table .label,
.ns_table .values{
    color: #000 !important;
}
.ns_table div:nth-child(odd) {
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.ns_table div:nth-child(2n) {
    border-bottom: 1px solid #E5E5E5;
}

.ns_table div:nth-last-child(1),
.ns_table div:nth-last-child(2) {
    border-bottom: none !important;
}


.ns_table div {
    text-align: left;
    padding: 10px;
    display: flex;
    align-items: center;
}

/* ================== */
.rental-card {
    /*   max-width: 450px; */
    /* margin: 30px auto; */
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px;
    background: #fff;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
}

.price-old {
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
    font-size: 18px;
}

.discount-badge {
    background: #000;
    color: #fff;
    font-size: 18px;
    padding: 2px 8px;
    border-radius: 12px;
}

.price-now {
    font-size: 30px;
    font-weight: bold;
    color: #222;
}

.deposit-text {
    font-size: 16px;
    color: #555;
}

.date-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    flex: 1;
}

.date-label {
    font-weight: 600;
    font-size: 16px;
}

.contact-box {
    /*  border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-weight: 500; */
}

.ns_query {
    background: #ffffff;
    font-size: 18px;
    color: #000000;
    border: 1px solid #000000 !important;
}

.ns_query:hover {
    background: #000000;
    font-size: 18px;
    color: #fff;
    border: 1px solid #000000 !important;
}

.ns_query.book {
    background: #000000;
    font-size: 18px;
    color: #fff;
    border: 1px solid #000000;
}

.ns_query.book:hover {
    border: 1px solid #000000;
    background: #ffffff;
    font-size: 18px;
    color: #000000;
}

/* ================= */
/* .footer {
    width: 100%;
    float: left;
    display: flow-root;
    padding-top: 0px;
    position: relative;
}

.footer_content {
    background: #151010;
    color: white;
    padding: 60px 0 35px;
}

.footer .footer_bottom {
    width: 100%;
    background: #000000;
    padding: 15px 0;
}

.footer .footer_bottom p {
    color: #bfbfbf;
    font-size: 15px;
    width: 100%;
    font-weight: 400;
    margin: 0 auto;
}

.footer_content ul li a {
    color: #fff;
    text-decoration: none;
}

.footer_content ul li a:hover {
    color: #fff;
    text-decoration: underline
}

.social-icons .fa-brands {
    font-size: 30px;
    margin: 30px;
    transition: 0.3s;
    margin-left: 0;
}

.social-icons a {
    color: #fff;
    display: inline-block;
}

.social-icons a:hover .fa-brands {
    transform: scale(1.2);
} */

/* ============= */
@media only screen and (max-width: 767px) {

    .sp_pdf img.lazyloaded {
        width: 70px;
    }

   /*  .navbar-toggler-icon {
        filter: invert(1);
    }

    .ns_navbar .nav-link {
        font-size: 14px;
        padding: 15px 13px !important;
    }

    .right_nav {
        align-items: flex-start !important;
    }

    .consultation_btn {
        background-color: #015c35;
        color: #fff;
        font-weight: 600;
        padding: 6px 20px 6px 20px;
        font-size: 16px;
        border-radius: 0px !important;
        text-transform: uppercase;
        border: 2px solid #015c35;
        transition: 0.5s;
        margin-bottom: 20px;
        margin-left: 14px;
        margin-top: 20px;
    } */

    /* ============ */
   /*  .icon-box {
        margin-bottom: 20px;
    }

    .rental-card {
        padding: 30px;
    }

    .info-section {
        margin-top: 20px;
    }

    .container.content div {
        text-align: center;
    }

    .footer_content ul li a {
        padding: 7px 0;
        display: block;
    }
 */
    /* ============ */
   /*  .main-carousel button>span {
        display: block;
        width: 24px;
        height: 32px;
        border: 1px solid #000000;
        font-size: 29px;
        color: #000000;
        line-height: 0.8;
        border-radius: 5px;
    }

    .ns_table {
        grid-template-columns: 34% 1fr;
    } */

    /* =========== */
   /*  .social-icons .fa-brands {
        margin-left: 30px;
    }

    .right-column h2 {
        font-weight: 700;
        font-size: 29px;
    } */

}


/* ======================== */
/* ======================== */
/* ======================== */
/* ======================== */


.ns_navbar {
    background: #121111 !important;
    /*  padding: 10px 0 !important; */
}

.ns_navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 18px;
    padding: 35px 13px !important;
    position: relative;
}

.navbar-brand img {
    width: 120px !important;
}

.ns_navbar .nav-link:before {
    content: "";
    width: 80%;
    height: 5px;
    background: #015c35;
    position: absolute;
    bottom: 0;
    /*  left: 0; */
    transform: rotateY(90deg);
    transition: 0.5s;
}

.ns_navbar .nav-link:hover:before {
    transform: rotateY(0deg);
}

.navbar-nav-centered {
    flex: 1;
    justify-content: center;
}

.consultation_btn {
    background-color: #015c35;
    color: #fff;
    font-weight: 600;
    padding: 10px 32px 10px 28px;
    font-size: 20px;
    border-radius: 0px !important;
    text-transform: uppercase;
    border: 2px solid #015c35;
    transition: 0.5s;
}

.consultation_btn:hover {
    background-color: #ffffff;
    color: #015c35 !important;
    border: 2px solid #015c35;
}

.hero-section {
    background-color: #202020;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 15px;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #fff;
}

.hero-text h1>span {
    font-size: 100px;
    font-weight: 800;
    line-height: 0;
    letter-spacing: 1px;
}

.hero-text .ns_small {
    font-size: 32px;
    color: #fff;
}

.hero-text .start_from {
    width: 50px;
    display: inline-block;
    line-height: 1;
    margin-right: 0px;
    transform: translatey(-18px);
    font-size: 16px;
    font-weight: 500;
}

.hero-text .price-tag {
    font-size: 65px;
    font-weight: bold;
    margin: 0px 0px 50px;
    display: inline-block;
    color: #fff;
}


.hero-text .btn-shop {
    background-color: #015c35;
    color: #fff;
    font-weight: 600;
    padding: 10px 32px 10px 28px;
    font-size: 20px;
    border-radius: 0px;
    text-transform: uppercase;
    border: 2px solid #015c35;
    transition: 0.5s;
}

.hero-text .btn-shop:hover {
    background-color: #ffffff;
    color: #015c35;
}

.circle-bg {
    position: absolute;
    right: -47px;
    bottom: -278px;
    width: 834px;
    height: 800px;
    background: #015c35;
    border-radius: 50%;
    z-index: 0;
}

.hero-img img {
    max-width: 110%;
    z-index: 1;
    position: relative;
    margin-left: -260px;
    margin-bottom: -15px;
}

.btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.fa-arrow-right {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    overflow: hidden;
    margin-bottom: -5px;
    transform: translate(10px);
}

.fa-arrow-right::before {
    content: "\f061";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.4s ease;
}

.fa-arrow-right::after {
    content: "\f061";
    font-weight: 900;
    position: absolute;
    left: -30px;
    top: 0;
    transition: transform 0.4s ease, left 0.4s ease;
}

.btn:hover .fa-arrow-right:before,
.ns_btn:hover .fa-arrow-right:before {
    transform: translateX(30px);
}

.ns_btn:hover .fa-arrow-right:after,
.btn:hover .fa-arrow-right:after {
    left: 0;
}

/* ================= */
.heading_row {
    padding: 0px 0 40px;
}

.section-title {
    font-size: 60px;
    color: #015c35;
    font-weight: 700;
}

.btn-view-all {
    background-color: #015c35;
    color: #fff;
    font-weight: 600;
    padding: 10px 50px;
    font-size: 18px;
    border-radius: 0px;
    border: 1px solid #015c35;
}

.btn-view-all:hover {
    background-color: #ffffff;
    color: #015c35;
    border: 1px solid #015c35;
}

.product-card {
    border: 1px solid #eaeaea;
    /*  padding: 15px; */
    border-radius: 0px;
    position: relative;
    transition: all 0.3s ease;
}

.product-detial {
    /* border: 1px solid #eaeaea; */
    /* padding: 15px 30px; */
    padding: 25px 30px 15px;
    border-radius: 0px;
    position: relative;
    transition: all 0.3s ease;
}

.listing_row>div:nth-child(2) div:first-child,
.listing_row>div:nth-child(5) div:first-child {
    border-left: 0px !important;
    border-right: 0px !important;
}

.listing_row>div:nth-child(8) div:first-child {
    border-left: 0px !important;
}

.listing_row>div:nth-child(1) div:first-child,
.listing_row>div:nth-child(2) div:first-child,
.listing_row>div:nth-child(3) div:first-child  {
    border-bottom: 0px !important
}
.listing_row>div:nth-child(7) div:first-child ,
.listing_row>div:nth-child(8) div:first-child {   
    border-top: 0px !important;
}

.stock-badge {
    background: #0f9d58;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 0px;
}

.stock-badge.backorder {
    background: #999;
}

.product-card img {
    max-width: 100%;
    margin-bottom: 15px;
    padding: 70px 30px 20px;
    transition: all 0.3s ease;
}

.link_cart {
    text-decoration: none;
    transition: all 0.3s ease;
}

.link_cart:hover .product-detial img {
    transition: all 0.3s ease;
}

.link_cart:hover .product-detial img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.product-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 5px 0;
    color: #000;
}

.product-category {
    font-size: 15px;
    color: #777;
    color: #000;
}

.product-price {
    font-size: 1rem;
    font-weight: bold;
    margin: 8px 0;
    color: #000;
}

.stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.btn-cart {
    border-top: 1px solid #eaeaea;
    /* border-radius: 50px; */
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: #333;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.btn-cart .fa-plus {
    margin-right: 10px;
    transition: 0.5s;
}

.btn-cart:hover .fa-plus {
    transform: rotate(360deg);
}

.btn-cart:hover {
    background: #015c35;
    color: #fff;
    border-color: #015c35;
}

.btn-cart:hover {
    background: #015c35;
    color: #fff;
    border-color: #015c35;
}

/* ======================= */
.promo-section {
    margin: 60px 0;
}

.promo-box {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.promo-box img {
    width: 100%;
    height: 100%;
    /*  object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0; */
    position: relative;
}

.promo-content {
    position: absolute;
    padding: 30px;
    max-width: 320px;
   /*  max-width: 280px; */
    z-index: 1;
    left: 0;
    background: #015c35;
    height: 100%;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 77% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.promo-content h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 5px;
}

.promo-content p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.promo-content a.btn.btn-shop {
    background: #fff;
    color: #015c35;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 18px;
    border: 2px solid #ffffffff !important;
}

.btn-shop:hover {
    background: #015c35 !important;
    color: #fff !important;
}

/* ======================= */

.testimonial-section {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.testimonial-section:before {
    content: "";
    background: url(./images/ts01.jpg);
    width: 100%;
    height: 100%;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.testimonial-section:after {
    content: "";
    background: url(./images/ts02.jpg);
    width: 370px;
    height: 100%;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
    /* background: red; */
    bottom: 0;
}

.testimonial-section .quote {
    font-size: 3rem;
    color: #0f9d58;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 35px;
    font-weight: 500;
    max-width: 741px;
    margin: 0 auto 50px auto;
    line-height: 1.2;
}

.author {
    font-weight: 500;
    margin-top: 15px;
    font-size: 20px;
}

.date {
    font-size: 13px;
    color: #aaa;
    padding-top: 5px;
}

.carousel-indicators {
    position: static;
    margin-top: 25px;
}

.carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin: 0 6px;
}

.carousel-indicators [data-bs-target].active {
    border-color: #ffffff00;
    border-bottom: 5px solid #015B35;
    padding-bottom: 10px;
    background: transparent;
}

.carousel-indicators img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*  border-radius: 50%; */
    display: block;
}




/* ============= */
.blog_card {
    column-count: 2 !important;
    column-gap: 10px;
    display: grid !important;
    grid-template-columns: 50% 1fr;
    grid-auto-flow: dense;
    box-shadow: none !important;
}

.blog_card img {
    border-radius: 0px;
    width: 100%;
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 15px;
}

.card-body.border_rt {
    border-right: 2px solid #e6e6e6;
}

.card-body .badge {
    background: #c0c0c0 !important;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 14px;
}

.blog_card .card-title {
    color: #000;
    font-size: 30px;
    margin-top: -40px;
}

.blog_card .card-body p {
    font-size: 12px;
    font-weight: 500;
}

/* =============== */
ul.insta_gallery {
    display: flex;
    list-style: none;
}

ul.insta_gallery li {
    width: 20%;
    background: #015B35;
}

ul.insta_gallery li.insta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

ul.insta_gallery li img {
    border-radius: 0px !important;
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
}

ul.insta_gallery .insta svg {
    width: 25px !important;
    height: 25px !important;
}

ul.insta_gallery .insta p {
    font-size: 18px;
    font-weight: 600;
    margin: 9px 0 5px !important;
}

ul.insta_gallery .insta small {
    font-size: 14px;
    font-weight: 600;
}

ul.insta_gallery .insta small {
    font-size: 14px;
    font-weight: 600;
}

/* ================= */
.footer {
    width: 100%;
    float: left;
    display: flow-root;
    padding-top: 0px;
    position: relative;
}

.footer_content {
    background: #151010;
    color: white;
    padding: 60px 0 35px;
}

.footer .footer_bottom {
    width: 100%;
    background: #000000;
    padding: 15px 0;
}

.footer .footer_bottom p {
    color: #bfbfbf;
    font-size: 15px;
    width: 100%;
    font-weight: 400;
    margin: 0 auto;
}

.footer_content ul li a {
    color: #fff;
    text-decoration: none;
}

.footer_content ul li a:hover {
    color: #fff;
    text-decoration: underline
}

.social-icons .fa-brands {
    font-size: 30px;
    margin: 30px;
    transition: 0.3s;
    margin-left: 0;
}

.social-icons a {
    color: #fff;
    display: inline-block;
}

.social-icons a:hover .fa-brands {
    transform: scale(1.2);
}

/* ========== */

/* ============= */
/* ============= */
.date-time-card {
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    margin-bottom: 25px;
}
.date-time-card .form-label {
    text-align: left !important;
    width: 100%;
    font-weight: 600;
}
.payment-pill-container {
    margin: 20px 0 30px !important;
}
.date-time-card .flatpickr-input {
    width: 100%;
    padding: 0px !important;
    text-align: left;
    border: 0px !important;
    font-size: 15px;
    font-weight: 500;
    box-shadow:none !important;
}
.form_box label {
    margin-bottom: 10px;
    font-weight: 400;
}
.form_box input ,
.form_box .form-control,
.datetimes{
    padding: 10px !important;
    min-height:auto !important;
    height: auto !important;
}
.datetimes {
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    padding: 0px !important;
}
.Times div{
    width: 100%;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    padding: 0px !important;
}
.date-time-card .modal-subtitle {
    margin-bottom: 20px;
}
/* ============= */
/* ============= */
@media only screen and (max-width: 767px) {

    
    .navbar-toggler-icon {
        filter: invert(1);
    }

    .ns_navbar .nav-link {
        font-size: 14px;
        padding: 15px 13px !important;
    }

    .right_nav {
        align-items: flex-start !important;
    }

    .consultation_btn {
        background-color: #015c35;
        color: #fff;
        font-weight: 600;
        padding: 6px 20px 6px 20px;
        font-size: 16px;
        border-radius: 0px !important;
        text-transform: uppercase;
        border: 2px solid #015c35;
        transition: 0.5s;
        margin-bottom: 20px;
        margin-left: 14px;
        margin-top: 20px;
    }

    /* ============ */


    .hero-text h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-text h1>span {
        font-size: 50px;
    }

    .hero-text .price-tag {
        font-size: 35px;
        font-weight: bold;
        margin: 0px 0px 15px;
        display: inline-block;
    }

    .hero-text .start_from {
        width: 40px;
        display: inline-block;
        line-height: 1;
        margin-right: 0px;
        transform: translatey(-8px);
        font-size: 13px;
        font-weight: 500;
        color: #fff;
    }

    .hero-text .btn-shop {
        background-color: #015c35;
        color: #fff;
        font-weight: 600;
        padding: 7px 20px 7px 20px;
        font-size: 14px;
        border-radius: 0px;
        text-transform: uppercase;
        border: 2px solid #015c35;
        transition: 0.5s;
    }

    .fa-arrow-right {
        height: 17px;
    }

    .hero-img img {
        max-width: 100%;
        z-index: 1;
        position: relative;
        margin-left: 0;
        margin-bottom: -15px;
    }

    .circle-bg {
        position: absolute;
        right: -120px;
        bottom: -287px;
        width: 459px;
        height: 557px;
        background: #015c35;
        border-radius: 90%;
        z-index: 0;
    }

    .hero-text {
        margin-bottom: 50px;
    }



    .heading_row {
        padding: 0px 0 40px;
        flex-direction: column;
    }

    .section-title {
        font-size: 36px;
        color: #015c35;
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }

    .promo-content h3 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .promo-content {
        position: absolute;
        padding: 18px;
    }

    .promo-box {
        position: relative;
        overflow: hidden;
        border-radius: 0px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: #fff;
    }

    .promo-content a.btn.btn-shop {
        padding: 6px 14px;
        font-size: 12px;
    }

    .promo-content {
        max-width: 200px;
    }

    .testimonial-text {
        font-size: 25px;
    }

    /* ============ */
    .blog_card {
        column-count: 1 !important;
        column-gap: 10px;
        display: flex !important;
        flex-direction: column;
    }

    .blog_card img {
        border-radius: 0px;
        width: 100%;
        height: auto;
    }

    .blog_card>.card-body {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0px;
        /* height: 300px; */
        margin-top: 20px;
    }

    .blog_card .card-title {
        color: #000;
        font-size: 30px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    /* ============ */

    .container.content div {
        text-align: center;
    }

    .footer_content ul li a {
        padding: 7px 0;
        display: block;
    }

    /* ============ */
    ul.insta_gallery {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        background: #fff;
        border: 1px solid #E5E5E5;
        border-radius: 8px;
    }

    ul.insta_gallery li {
        width: 100%;
        background: #015B35;
    }

    .hero-section {
        min-height: max-content;
    }

    /* ===== */
    .social-icons .fa-brands {
        margin-left: 30px;
    }

    .promo-content a.btn.btn-shop .fa-arrow-right {
        height: 15px;
    }

    /* =========== */
    .listing_row>div:nth-child(2) div:first-child,
    .listing_row>div:nth-child(5) div:first-child {
        border-left: 1px solid #eaeaea !important;
        border-right: 1px solid #eaeaea !important;
    }
    
   /*  .listing_row>div:nth-child(7) div:first-child {
        border-left: 1px solid #eaeaea !important;
        border-right:0px solid #eaeaea !important;
    } */
    /* .listing_row>div:nth-child(7) .product-card,
    .listing_row>div:nth-child(8) .product-card {
        border-left: 1px solid #eaeaea !important;
        border-right: 1px solid #eaeaea !important;
    } */
    .listing_row>div:nth-child(7) .product-card ,
    .listing_row>div:nth-child(8) div:first-child {
        border-left: 1px solid #eaeaea !important;
        border-right: 1px solid #eaeaea !important;
    }

    /* =============== */
    .testimonial-section:after,
    .testimonial-section:before {
        display: none;
    }


    /* =================== */
    /* =================== */
        .icon-box {
            margin-bottom: 20px;
        }
    
        .rental-card {
            padding: 30px;
        }
    
        .info-section {
            margin-top: 20px;
        }
    
        .container.content div {
            text-align: center;
        }
    
        .footer_content ul li a {
            padding: 7px 0;
            display: block;
        }
    
        /* ============ */
        .main-carousel button>span {
            display: block;
            width: 24px;
            height: 32px;
            border: 1px solid #000000;
            font-size: 29px;
            color: #000000;
            line-height: 0.8;
            border-radius: 5px;
        }
    
        .ns_table {
            grid-template-columns: 34% 1fr;
        }
    
        /* =========== */
        .social-icons .fa-brands {
            margin-left: 30px;
        }
    
        .right-column h2 {
            font-weight: 700;
            font-size: 29px;
        }






}


{{CSS_CONTENT_PLACEHOLDER}}

