/*TABLE OF CONTETN*/
/* ------------------------------- 
 . General
 2. Navbar
 3. Slider
 4. About
 5. Rooms
 6. Services
 7. Team
 8. Gallery
 9. Price
 10. Blogs
 11. Footer

 -----------------------------*/

/*1. General*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

:root {
    /*background-color: ;*/
    --primary-color: #AEEEEE;
    --secondary-color: #FF7F50;
    --other-color: #f8f7f1;
    --heading-color: #B2D8B2;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --bg-black: #000;

    /*Text Style*/
    --primary-font: 'Poppins', sans-serif;
    --secondary-font: 'Poppins', sans-serif;
    --primary-text: #021832;
    --secondary-text: #02c3ff;
    --text-white: #fff;
    --text-black: #000;
    --text-gray: #e4e4e4;
}

@font-face {
    font-family: 'Blacksword';
    src: url('Blacksword.otf')
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
    color: var(--text-black);
    overflow: hidden;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

section {
    padding: 3.125rem 0;
}

.main-btn {
    font-size: 18px;
    color: var(--text-white);
    background: var(--secondary-color);
    border: 0rem solid var(--secondary-color);
    padding: 15px 25px;
    border-radius: 0;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    letter-spacing: 0.06em;
}

.main-btn:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder {
    /* Edge */
    color: #bbb;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbb;
}

input::placeholder select::placeholder {
    color: #bbb;
}

h1 {
    font-size: 3.75rem;
    line-height: 4.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}

h3 {
    margin-bottom: 1.375rem;
    line-height: 1.875rem;
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--primary-text);
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}

h3 span {
    color: var(--secondary-color);
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-text);
    font-weight: 500;
    /*text-transform: uppercase;*/
    font-family: var(--secondary-font);
}

h6 {
    font-size: 1.5rem;
    margin-bottom: .9375rem;
    color: var(--primary-text);
    /*text-transform: uppercase;*/
    font-weight: 300;
    font-family: var(--secondary-color);
}

p {
    font-size: 1rem;
    line-height: 1.625rem;
    color: var(--text-black);
}

.section-title:after {
    content: '';
    background-image: url('../images/title-icon.webp');
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin-top: -0.937rem;
    height: .9375rem;

}


 .klc-hero-line, .klc-property-head h1::after {
    border-radius: 2px;
    display: block;
    background: #ff7f50;
}
.klc-hero-line {
    width: 52px;
    height: 3px;
    margin: 0rem auto 0;
}


header.header {
    position: absolute;
    width: 100%;
}

/*2. Navbar*/
.header .navbar {
    padding: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s, opacity 0s ease-in-out 0s;
    z-index: 1;
}

.header .navbar-toggler {
    border: 0;
    color: var(--primary-text);
    line-height: 2;
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.header .nav-item {
    margin: 0;
}

.header .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding: 22px 20px;
}

.header .nav-item .nav-link:hover,
.header .nav-item .nav-link.active {
    border-color: var(--text-white);
}

header.header img {
    width: 150px;
}

.navbar.header-scrolled {
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgb(255, 255, 255, .58);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeIdDown;
}

@keyframes fadeIdDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0%;
    }
}

.social_icon ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    margin-bottom: 0;
    padding-bottom: 0;
}

.social_icon ul li {
    margin-left: 15px;
}

.social_icon ul li i {
    color: var(--primary-text);
    font-size: 20px;
}

/*video section*/

.banner-wrapper {
    height: 100vh;
}

.video-sec {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.video-sec button {
    display: none;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: #ae745a6b; */
    z-index: 0;
}

.hero-scetion .hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    position: relative;
}

.hero-scetion .hero-content {
    width: 90%;
    text-align: center;
    margin: auto;
    color: rgb(255, 255, 255);
}

.nst {
    font-size: 5rem;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.h-big {
    font-family: 'Blacksword';
    width: 100%;
    text-shadow: 0px 0px 4px #000;
    color: #ffffff;
    font-weight: 300;
    /*margin: auto;*/
    line-height: 88px;
    font-size: 58px;
    line-height: 1.2em;
    text-align: center;
}

.h-li-big {
    margin: 10px 0px 0px 0px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-family: var(--primary-font);
    letter-spacing: 0.05em;
    display: block;
    transition: all .5s ease-in-out 0s;
    font-size: 27px;
    text-shadow: 0px 0px 4px #000;
}

/*end video*/

.booking-area {
    position: absolute;
    margin: auto;
    justify-content: center;
    width: 68%;
    left: 0;
    right: 0;
    bottom: 1rem;
    background: var(--text-white);
    box-shadow: 0px 0px 6px #000;
    align-items: center;
    padding: 10px 20px;
    border-radius: 40px;
}

.booking-area .form-control {
    height: 46px;
    font-size: 14px;
    color: #777777;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 12px 22px 11px 45px;
    background: transparent;
    border: 0px solid #e0e0e0;
    border-right: 2px solid var(--secondary-color);
}

.booking-area .icns i {
    color: var(--secondary-color);
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 18px;
    display: flex;
}

.booking-area .col-lg.md-3.icns.mb-lg-0.position-relative {
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
    align-items: center;
}

.booking-area .form-select {
    padding: 10px;
    text-indent: 1.7rem;
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #757272;
    padding: 10px;
    border: 0.13rem solid var(--secondary-color);
}


.srch-btn .main-btn {
    padding: 6px;
    width: 170px;
    margin-right: 10px;
    border-radius: 40px;
    text-transform: uppercase;
    height: 55px;
    font-size: 16px;
    letter-spacing: 0px;
}

.srch-btn .main-btn:hover {
    background-color: #c29d59a9;
}


/*start about*/

.about_wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

.about_wrapper a {
    font-size: 1rem;
    /* font-weight: 500; */
    color: var(--text-white);
    background: var(--secondary-color);
    border: 0.0625rem solid var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 0;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
}

.about_wrapper a:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.heading_sec {
    margin-bottom: 50px;
    text-align: center;
}

.about-img1 {
    text-align: left;
}

.about-img1 img {
    height: 370px;
    object-fit: cover;
}

.col-lg-6.mb-4.mb-lg-0.ps-lg-4.position-relative.text-center {
    padding-left: 0px !important;
}

.about-img2 {
    text-align: right;
}

.about-img2 img {
    position: absolute;
    right: 0;
    width: 336px;
    bottom: -130px;
    height: 300px !important;
    border: 12px solid #fff;
    object-fit: cover;
}

.about_wrapper .col-lg-6.text-center.text-lg-start p {
    font-size: 17px;
    text-align: justify;
}

.subhead {
    color: #caa269;
    font-size: 18px;
    /*line-height: 35px;*/
}

.about_wrapper .col-lg-6.text-center.text-lg-start {
    padding-right: 5%;
}

.about_wrapper h2 {
    font-size: 50px;
    margin: 10px 0;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
}

p.abt {
    font-weight: 600;
    letter-spacing: 1px;
}


section.second-sec {
    padding-top: 0px;
    padding-bottom: 50px;
    text-align: center;
}

.second-sec-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.left-s {
    width: 40px;
    height: 40px;
    margin-right: 30px;
}

.left-s svg {
    width: 100%;
    height: 100%;
}

.left-s svg path {
    fill: var(--secondary-color) !important;
}

.middle-s h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 0px;
}

.right-s {
    padding-left: 30px;
}

/*end about section*/

/*property*/

/*end property*/


/*Booking seciton*/
.booking_sec {
    background-image: url(../images/hero_Kauai.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
    padding: 0px 0px;
}

.booking_sec h3 {
    color: var(--text-white);
    margin-top: 20px;
    font-size: 35px;
}

.booking_sec .main-container {
    padding: 0px 0px;
    background-color: rgba(0, 0, 0, 0.3);
}

.booking_img {
    position: absolute;
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -24%;
    box-shadow: 0px 0px 0px 10px #ffffff85;
}

.booking_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    display: none;
}

.bookin_box h2 {
    line-height: 1.2;
    font-size: 2rem;
    border-left: 0px solid #fff;
    padding-left: 0px;
    font-weight: 700;
    font-family: var(--primary-font);
}

.bookin_box p {
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 20px !important;
}

.bookin_box a {
    margin-top: 0rem !important;
    margin-bottom: 0px !important;
}

.booking-right_sec {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    justify-content: center;
    color: #fff;
    width: 100%;
    margin-left: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

.booking-right_sec p {
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
}

.booking-right_sec h2 {
    font-size: 55px;
    line-height: 1.2;
    border-left: 3px solid #fff;
    padding-left: 29px;
}



/*end bookind section*/

/*Property section*/

.property-sec {
    padding: 60px 0;
    background: #efefef;
}


.contain {
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.item {
    align-items: center;
    background-color: transparent;
    color: white;
    display: flex;
    height: 100%;
    justify-content: center;
}

.booking.item {
    height: auto;
}

.contain img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-details-area {
    padding: 0 0 40px;
}

.pro-sec-right h6 {
    font-size: 22px;
    font-family: var(--secondary-font);
    color: var(--text-black);
    font-weight: bold;
}

.pro-sec-right h2 {
    font-family: var(--secondary-font);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
    margin: 18px 0;
    color: var(--secondary-color);
}

section.property-sec h3.price {
    color: var(--secondary-color);
}

section.property-sec .pro-sec-right p {
    max-height: 110px;
    overflow: hidden;
}

.location {
    margin-bottom: 10px;
}

.location .fa-location-dot {
    color: var(--secondary-color);
}

.price {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: var(--primary-font);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.elementor-button-wrapper {
    margin-top: 25px;
    border-top: 2px dashed #bbb;
    padding-top: 10px;
    border-bottom: 2px dashed #bbb;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elementor-counter {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.amnt {
    text-align: center;
}

.amnt .elementor-counter-number {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--primary-font);
}

/*attractions start*/
.fourth-sec {
    padding: 60px 0px 60px;
    text-align: center;
}

.fourth-sec .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.attr-f {
    position: relative;
    margin-top: 0px;
    padding: 0;
}

.attr-f h4 a {
    color: #fff;
    font-weight: bold;
}

.fourth-sec h3 {
    margin-bottom: 0;
    font-size: 40px;
    color: var(--text-black);
    line-height: 1.2;
}

.attr-f img {
    width: 100%;
    height: 450px;
    position: relative;
    object-fit: cover;
}

.text-overlay {
    position: absolute;
    top: 0;
    padding: 20px;
    width: 100%;
    z-index: 9;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 90%);
}

.text-overlay h4 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 13px;
    display: flex;
    margin-bottom: 13px;
    align-items: flex-start;
    height: auto;
    font-family: var(--secondary-font);
    justify-content: center;
}

.text-overlay p {
    font-size: 16px;
    color: #fff;
    display: block;
    height: 130px;
    overflow: hidden;
}

.attr-f:nth-child(2) img {
    object-position: 10%;
}


/*end attractions*/
.catch-f {
    background-image: url(../img/back-bg.jpg);
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 0;
    padding-bottom: 12rem;
}

.catch-f .row {
    width: 100%;
    padding: 0;
    margin: 0;
}

.catch-f .row .col-lg-6 {
    padding: 0;
}

.catch-f .row .pro-sec-right {
    padding: 50px;
    padding-top: 15px;
    background: #fff;
}

.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}

.catch-f .row .pro-sec-right p {
    margin-bottom: 1rem;
    font-size: 15px;
}

.catch-f .row .pro-sec-right p:nth-child(2),
.catch-f .row .pro-sec-right p.location {
    margin-bottom: 5px;
}

.pro-sec-right a {
    margin-top: 0rem;
}

p.subhead {
    font-weight: bold;
}

.catch-f .row .pro-sec-right p.subhead {
    font-size: 22px;
    font-family: var(--secondary-font);
}

.catch-f h3 {
    font-size: 44px;
    font-family: 'Oswald', sans-serif;
    line-height: 38px;
    color: #000;
}

/*Review section*/
.testimonial-sec {
    padding: 60px 0;
    background: #f8f7f1;
    border-top: 1px solid #6e6c6c;
}

.testimo-centent {
    padding: 0px 30px;
    width: 100%;
    margin: 0rem auto 1rem;
    text-align: center;
}

.testimonial-sec h3 {
    margin-bottom: 0;
    font-size: 45px;
    width: 72%;
    color: #525252;
    font-weight: bold;
    text-align: left;
    line-height: 1.3;
}

.col-lg-6.test-head {
    display: flex;
    align-items: center;
}

.testimo-centent .slick-arrow {
    position: absolute;
    color: #6e6c6c;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor: pointer;
}

.testimo-centent .fa-angle-left {
    left: -20px;
}

.testimo-centent .fa-angle-right {
    position: absolute;
    right: 0;
    text-align: right;
}

.testimo-centent p {
    font-size: 20px;
    text-align: center;
    text-align: justify;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 10px;
}

.slick-list.draggable {
    height: 100% !important;
}

.testimo-centent h4 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}

/*end Review section*/

/*Footer section*/
footer {
    /*margin-top: 4rem;*/
    background: url(../images/footer-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    width: 100%;
    padding: 50px 0 0;
    background-position: center;
}

footer::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background-color: #000;
    left: 0;
    right: 0;
    top: 0;
    /*z-index: -1;*/
    opacity: .6;
}

.footer_overlay {
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 53%);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

footer .container {
    z-index: 1;
    position: relative;
}

.footer_links h4 {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.footer_links p {
    color: #b3adad;
    font-size: 15px;
    list-style-type: none;
    padding-bottom: 0px;
}

.footer-social ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    margin-top: 20px;
    float: left;
}

.footer-social ul {
    padding-left: 0;
    margin-left: 0;
}

.footer-social ul li {
    display: inline-block;
    color: #b3adad;
    margin-right: 10px;
}

.footer-social ul li span {
    display: inline-block;
    margin-right: 4px;
    font-size: 14px;
    color: #b3adad;
}

.footer-social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 30px;
    font-size: 12.5px;
    border: 1px solid #716f6f;
}

.footer_link {
    padding: 0;
    margin: 0;
}

.footer_links ul li {
    list-style-type: none;
    margin-bottom: 6px;
    color: #b3adad;
    line-height: 30px;
    font-size: 15px;
}

.footer_links ul li a {
    color: #b3adad;
    font-size: 15px;
}

.footer_logo img {
    width: 170px;
    margin-bottom: 0rem;
}

.copyright p {
    margin: auto;
    font-size: 15px !important;
    color: #c3c0c0;
}

.right_copyright {
    text-align: right;
}

.copyright {
    margin-top: 30px;
    background: transparent;
    padding: 20px 0;
    position: relative;
}

.right_copyright p img {
    width: 135px;
}

.license h4 {
    margin-top: 25px;
}

.copyright::before {
    content: '';
    position: absolute;
    background-color: #1a422d;
    height: 1px;
    width: 92%;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
}

/*end footer section*/


/*=============================  ABOUT US PAGE =======================*/

.page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 40% center;
    height: 500px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.page-title .auto-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 65%;
    align-items: center;
    justify-content: flex-end;
}

.page-title h1 {
    position: relative;
    /*top: 2rem;*/
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2em;
    font-family: var(--secondary-font);
    font-size: 40px;
    text-transform: capitalize;
    text-shadow: 2px 1px 4px #000;
    margin-top: 20px;
    margin-bottom: 0px;
}

.checklist {
    text-align: left;
    background: #fff;
    border-radius: 40px;
    z-index: 9;
    width: fit-content;
    margin-bottom: 10px;
    margin-top: 20px;
}

.checklist p {
    font-size: 16px;
    padding: 0px 0px 0px 30px;
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: space-between;
    font-family: var(--primary-font);
}

.checklist a.g-transparent-a {
    justify-content: end;
    position: relative;
    right: auto;
    background-color: var(--secondary-color);
    border-radius: 0px 40px 40px 0px;
    padding: 18px 25px;
    margin-left: 1rem;
    display: block;
    font-size: 16px;
    color: #fff;
    height: 60.8px;
    cursor: initial;
}

.checklist a span {
    color: #021832 !important;
}

.agency-section {
    padding: 70px 0;
}

.agency-section h2 {
    font-size: 50px;
    font-weight: bold;
}

.agency-section p {
    line-height: 1.8em;
    font-size: 17px;
    font-family: var(--primary-font);
    padding-right: 0px;
    text-align: justify;
}

.agency-section .image {
    text-align: right;
}

.agency-section .image img {
    height: 420px;
    width: 94%;
}

.image img {
    border-radius: 30px;
    object-fit: cover;
}


/*======================= ATRACTION ========================*/


.summary-section p {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 12px;
}

.summary-section .inner-column .image img {
    width: 106%;
    display: block;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 4px #060606;
    max-width: 107%;
    position: absolute;
}

.dot {
    position: absolute;
    right: -2rem;
    bottom: -3.6rem;
    left: auto;
    text-align: end;
    width: fit-content;
}

.summary-section .row {
    margin-bottom: 6rem;
}

.summary-section .row:nth-child(even) .inner-column .image img {
    right: 0;
}

.summary-section .row:nth-child(even) .dot {
    left: -2rem;
}

.inner-column-content {
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0px 0px 1px #060606;
    right: 0;
    top: 20px;
    background: #fff;
    min-height: 435px;
    z-index: 1;
    padding: 20px;
    height: 100%;
}

section.summary-section a {
    position: relative;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 30px;
    font-family: var(--secondary-font);
}

.line {
    height: 2px;
    width: 100px;
    background: #02c3ff;
    position: relative;
    top: -7px;
}

.rights::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -20px;
    right: -20px;
}

.rights::after {
    position: absolute;
    content: "";
    height: 10px;
    width: 38px;
    background-color: #02c3ff;
    top: -5px;
    right: -34px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*=====================  CONTACT US =======================*/
.contact-page-section {
    position: relative;
}

.contact-info-box {
    position: relative;
    margin-bottom: 30px;
    border-right: 1px solid #cdcdcd;
}

.box-inner {
    position: relative;
    padding: 40px 0px 40px 0px;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 12%);
}

.contact-info-box .box-inner {
    position: relative;
    padding: 0px 9px;
}

.contact-info-box .box-inner a {
    color: var(--text-black);
}

.contact-info-box .box-inner h5 {
    position: relative;
    font-family: var(--secondary-font);
    color: var(--text-black);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.contact-info-box .box-inner p {
    position: relative;
    color: var(--text-black);
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.7em;
}

.contact-info-box:nth-last-child(1) {
    border-right: 0px solid #cdcdcd;
}

.contact-page-section .inner-container {
    position: relative;
    padding: 40px 40px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}

.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
}

.contact-form {
    position: relative;
    margin-top: 0rem;
}

.contact-form .form-group {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}

.contact-form .ui-selectmenu-button.ui-button,
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    font-size: 13px;
    color: #060606;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 10px 20px 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    resize: none;
}

.contact-map {
    overflow: hidden;
    height: 100%;
    box-shadow: 0px 0px 5px #ccc;
}

.contact-map iframe {
    position: relative;
    top: 0rem;
    height: 100%;
}

.contact-page-section .sec-title h3 {
    margin-bottom: 2rem;
}

/*====================== PROPERT DETAILS =====================*/

.upper-box {
    position: relative;
}

.upper-box .rating {
    position: relative;
    color: var(--text-black);
    font-size: 14px;
}

.upper-box .rating .fa {
    position: relative;
    margin-right: 1px;
    display: inline-block;
}

.upper-box h3 {
    position: relative;
    line-height: 1.3em;
    margin-top: 4px;
    text-align: left;
    font-size: 28px;
    font-weight: 400;
}

.upper-box .hotel-info {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 0px;
    margin-top: 0px;
}

.hotel-info i {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-black);
    margin-right: 5px;
}

.price {
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.upper-box .price {
    position: relative;
    width: 100%;
    height: 98px;
    color: #060606;
    float: right;
    font-size: 23px;
    padding-top: 20px;
    line-height: 1.3em;
    border-radius: 50px;
    text-align: right;
    display: inline-block;
    background-color: #ffffff;
}

.upper-box .food-list {
    position: relative;
    padding: 15px 0px 15px;
    margin-bottom: 30px;
    /* border-bottom: 1px solid #efefef; */
    border-top: 1px dashed var(--secondary-color);
    margin-top: 13px;
}

.upper-box .food-list li {
    position: relative;
    color: #060606;
    font-size: 17px;
    margin-right: 15px;
    display: inline-block;
}

.food-list li i {
    color: #000;
}

.amenities {
    list-style-type: none;
    padding-left: 0.5rem;
}

.amenities i {
    color: var(--secondary-color);
}

.amenities li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.properties-amenities h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.comment-meta h3 {
    font-size: 22px;
    margin-top: 0.5rem;
    margin-bottom: 10px;
}

.comment span {
    font-weight: 600;
}

.contact-page-sec {
    padding: 35px;
    box-shadow: 0px 0px 5px #dadada;
}

.contact-page-section.lv .contact-form .form-group.col-lg-6.col-md-6 {
    width: 50%;
}

.contact-page-section.lv {
    padding: 0;
}

.contact-page-section.lv .contact-form {
    margin-top: 0;
}

.contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-6,
.contact-page-section.lv .contact-form .form-group.col-lg-4.col-md-4.col-sm-12 {
    width: 33%;
}

.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
    border: 0;
    font-size: 0;
}

fieldset.score input {
    display: none !important;
}

.score label {
    display: inline-block !important;
    width: 1.2em;
    height: 0.9em;
    overflow: hidden;
    text-indent: 100%;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
    display: block;
}

.score label::before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}

.score label:hover:before,
.score label:hover~label:before,
.score input:checked~label:before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦";
    color: #ffbb04;
}

.get-quote {
    padding: 0px;
    box-shadow: 0px 0px 0px #ccc;
    border-radius: 5px;
    position: sticky;
    top: 1rem;
    text-align: center;
}

.forms-booking-tab ul {
    background: var(--secondary-color);
    padding: 7px;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}

.ovabrw_datetime_wrapper {
    position: relative;
    width: 49%;
    display: inline-block;
}

.ovabrw_datetime_wrapper input {
    width: 100%;
    padding: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
}

.ovabrw_datetime_wrapper i,
.ovabrw_service_select.rental_item i,
.pets i {
    position: absolute;
    left: 0.5rem;
    top: 0.7rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.pets i {
    left: 1.3rem;
}

.pets select {
    font-size: 14px;
    text-indent: 20px;
    height: 39px;
    margin-top: 1rem !important;
    border: 1px solid var(--secondary-color) !important;
}

.pets {
    position: relative;
}

div#gaurav-new-data-area a {
    color: var(--secondary-color);
}

div#gaurav-new-data-area .col-md-6 {
    text-align: left;
}

.ovabrw_service_select.rental_item {
    width: 100%;
    margin: 1rem 0;
    position: relative;
}

.ovabrw_service_select.rental_item select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--secondary-color);
    color: #bbb;
    text-indent: 20px;
}

.ovabrw-book-now button {
    width: 100%;
    font-size: 19px;
    margin-bottom: 1rem;
}


/*  Gaurav*/


/*Property page css start*/



section.blog-details-area.ptb-90 {
    padding: 0;
}

img.rsImg.rsMainSlideImage {
    margin-left: auto !important;
}

.property_meta {
    margin-top: 2rem;
}

h3.heading-2 {
    font-size: 28px;
    color: #000;
    font-weight: 400;
}

.rsDefault .rsThumbsArrow {
    height: 100% !important;
}

.abouttext h4 {
    font-size: 1.5rem !important;
    font-family: var(--secondary-font);
    font-weight: 600;
}

.properties-amenities ul {
    list-style: none;
    margin-top: 8px;
    margin-bottom: 0;
}

.abouttext ul li,
.comment-content p {
    font-size: 15px;
}

.properties-amenities ul li {
    line-height: 1.5rem;
    margin-bottom: 14px;
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    z-index: -1;
    margin-left: -33px;
}

.properties-amenities ul li i {
    margin-right: 5px;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    padding: 10px;
}

.responsiveTab tr:nth-of-type(odd) {
    background: #eee;
}

.responsiveTab th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    font-family: var(--secondary-font);
}

.comment-meta span.checked,
.comment-content span.checked {
    color: goldenrod;
}

.comment-meta h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.comments .contact-form {
    background: #ffffff;
    padding: 0px;
    box-shadow: 0px 0px 0px #dfdede;
    width: 100%;
}

.contact-form .form-group label {
    position: relative;
    color: #2b2b2b;
    font-size: 16px;
    text-align: left;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.comments .contact-form .form-group input,
.comments .contact-form .form-group select,
.comments .contact-form .form-group textarea {
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.elementor-widget-container.get-quote {
    position: sticky;
    top: 5px;
}

.forms-booking-tab {
    padding: 30px 20px;
    box-shadow: 0px 0px 13px #dad9d9;
    border-radius: 10px;
}

.forms-booking-tab ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.head-filter {}

.booking {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--text-white);
    background: var(--secondary-color);
}

.rental_item {
    margin-bottom: 1rem;
    display: inline-block;
    width: 48%;
}

.forms-booking-tab .romancy-booking label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.ovabrw_datetime_wrapper {
    position: relative;
}

.forms-booking-tab .romancy-booking .ovabrw-container select,
.forms-booking-tab .romancy-booking .ovabrw-container input {
    border: 1px solid #cacaca;
    border-radius: 8px;
    height: 52px;
    width: 100%;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    caret-color: var(--primary-color);
}

.forms-booking-tab .ovabrw_booking_form .wrap_fields .ovabrw_datetime_wrapper input {
    padding: 15px 15px 15px 42px;
}

.ovabrw_datetime_wrapper .modal-bodyss i,
.ovabrw_service_select.rental_item .modal-bodyss i {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 22px;
    color: var(--secondary-color);
    left: auto;
    cursor: pointer;
}

.ovabrw_service_select.rental_item {
    position: relative;
    width: 100%;
}

.forms-booking-tab .romancy-booking .ovabrw-container select {
    text-indent: 47px;
}

.ovabrw_service_select.rental_item i {
    left: 0.5rem;
}

.ovabrw-book-now {
    position: relative;
    width: 100%;
    gap: 0rem;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 0px 0px 5px 5px;
}

.ovabrw-book-now .main-btn {
    width: 100%;
}

.score input {
    position: absolute !important;
    top: -2em;
    clip: rect(0, 0, 0, 0);
}

.score label::before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    text-indent: 0px;
    line-height: 1em;
    color: rgb(170, 170, 170);
}

.score label:hover::before,
.score label:hover~label::before,
.score input:checked~label::before {
    content: "ÃƒÂ¢Ã‹Å“Ã¢â‚¬Â¦";
    color: rgb(255, 187, 4);
}

.score label {
    display: inline-block !important;
    line-height: 2rem;
    width: 1.2em;
    height: 1em;
    overflow: hidden;
    text-indent: 100%;
}

.score {
    unicode-bidi: bidi-override;
    direction: rtl;
    border: 0;
    text-align: left;
}

/*Property page css end*/


input#show-target-data {
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    background-color: #fff;
    height: 39px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
}

#guestsss {
    width: 100%;
    min-width: 300px;
    background: #fff;
    padding: 25px 20px;
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;

    display: none;
    box-shadow: 0px 0px 3px 0px #888888;
}

.booking-area .icns .modal-bodyss i {
    position: absolute;
    top: 5px !important;
    right: 20px !important;
    left: auto !important;
    font-size: 18px;
    color: var(--secondary-color);
    cursor: pointer;
}

.booking-area input#show-target-data {
    font-size: 14px;
    background-color: #fff;
    border: 0px solid var(--secondary-color);
    height: 46px;
    line-height: 34px;
    font-weight: 400;
    border-radius: 0px;
    padding: 12px 22px 11px 45px;
    transition: all 300ms ease;
    color: rgba(0, 0, 0, 0.63) !important;
}

.ac-box {
    margin-bottom: 20px;
}

.ac-box,
.btnssss {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adult {
    display: flex;
    color: #000;
    font-size: 15px;
    align-items: center;
}

.adult p {
    margin-bottom: 0px;
}

.button1 {
    background: transparent;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    line-height: 40px;
    margin-left: 14px;
    border: 1px solid #717171;
    color: #717171;
    transition: all .3s;
    cursor: pointer;
}

.adult-popup .modal-bodyss button.main-btn.btn {
    width: 100%;
    color: #fff !important;
    border-radius: 40px;
}

.booking-area .col-lg.md-4.md-lg-0.srch-btn {
    padding-left: 0px;
    padding-right: 0px;
    display: flex;
}

button.main-btn.btn {
    background: var(--secondary-color) !important;
    border: 0.0625rem solid var(--secondary-color) !important;
}


section.get-quote-sec h2 {
    font-weight: 400;
    font-size: 2.45rem;
    color: var(--secondary-color);
    /* text-transform: uppercase; */
    font-family: var(--secondary-font);
    margin-bottom: 1.375rem;
}

section.get-quote-sec .container {
    max-width: 990px;
}

section.get-quote-sec th {
    background: var(--secondary-color);
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-size: 15px;
}

.table-bordered>:not(caption)>*>*,
.table-bordered>:not(caption)>* {
    border-color: var(--secondary-color);
}

section.get-quote-sec td {
    font-weight: bold;
    font-size: 15px;
}

section.get-quote-sec b,
section.get-quote-sec strong {
    font-weight: bold;
}

section.get-quote-sec label {
    display: inline-block;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
}

section.get-quote-sec .form-control {
    border-color: var(--secondary-color);
}

.About-sec th {
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.About-sec td {
    border: 1px solid var(--secondary-color);
    font-weight: bold;
    font-size: 15px;
}

.About-sec b,
.About-sec strong {
    font-weight: bold;
}

.About-sec .t1 {
    border-color: transparent;
}

.About-sec .book {
    background-color: transparent;
    color: #000;
}

section.about_wrapper.error {
    padding: 5rem 0;
}

section.about_wrapper.error h1 {
    color: var(--secondary-color);
    font-size: 100px;
    font-weight: bold;
    font-family: var(--primary-font);
    margin-bottom: 40px;
}

section.about_wrapper.error .row.m-0 {
    text-align: center;
}

section.about_wrapper.error a {
    width: 150px;
    margin: auto;
}

#sig-canvas {
    width: 100%;
}

.rsDefault .rsThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.Blog-details img {
    width: 550px;
    margin-right: 20px;
    object-fit: cover;
}

section.Blog-details .container {
    display: flex;
}

form#booking_form p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

form#booking_form p a {
    color: var(--secondary-color);
}

.showReadMores .morecontent span {
    display: none;
}

.showReadMores .ReadMore {
    display: visible;
}

.footer-sec {
    margin-top: 0rem;
}

.ac,
.kapat {
    display: inline-block !important;
    background: #79a0fb;
    width: 140px !important;
    padding: 7px 20px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin-top: 19px;
}

.theme-item-page-desc.more {
    font-size: 17px;
}

.more+[data-readmore-toggle],
.more[data-readmore] {
    display: block;
    width: 100%;
    overflow: hidden;
}

#less {
    display: none;
}

.btn-check:focus+.btn-success,
.btn-success:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem var(--secondary-color);
}

.modal-footer {
    display: none;
}

.overview-content {
    height: 180px;
    overflow: hidden;
}

#more,
#less {
    cursor: pointer;
}

.btn-success {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    border-radius: 0px;
}

.btn-success:hover {
    color: var(--secondary-color);
    background-color: transparent;
    border-color: var(--secondary-color);
}

.form-control:focus {
    box-shadow: 0 0 0 0rem rgb(13 110 253 / 25%);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -45px;
    top: 52%;
    z-index: 999;
    display: none;
    color: #fff !important;
    background: var(--secondary-color);
}

.prop.slick-testimonial img {
    height: 422px;
}

.prop .slick-list.draggable {
    height: 422px !important;
}

.prop .slick-arrow {
    position: absolute;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    cursor: pointer;
}

.prop .slick-arrow.fa-angle-right {
    right: 10px;
}

.prop .fa-angle-left {
    left: 10px;
    z-index: 9;
}

section.property-sec {
    padding: 60px 0;
    background: #efefef;
}

section.amn {
    background: var(--other-color);
    padding: 60px 0;
}

section.amn h3 {
    color: var(--text-black);
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 0px;
}

.left-amn span {
    font-size: 25px;
}

.left-amn h2 {
    font-size: 30px;
    margin: 10px 0;
    color: #00a9dd;
    font-weight: bold;
}

.left-amn p {
    font-size: 18px;
}

.left-amn {
    margin-bottom: 50px;
}

.amn .img-fluid {
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 40px;
    width: 100%;
}

p.cancll {
    font-family: 'Poppins', sans-serif !important;
    color: #000;
    font-size: 15px !important;
}

p.cancll .clck {
    color: red;
    cursor: pointer;
}

.cancl {
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 2px 2px 2px 2px #888888;
    color: #000;
    position: relative;
    display: none;
}

.cancl i {
    position: absolute;
    right: 30px;
    font-size: 18px;
    cursor: pointer;
}

.cancl strong {
    color: #000;
}

.cancl p {
    font-family: 'Poppins', sans-serif !important;
    color: #000;
    font-size: 15px !important;
}

section.get-quote-sec table {
    margin-bottom: 5px;
}

span.start {
    font-size: 20px;
}

.row.text-center.mt-4.bttn {
    justify-content: center;
    display: flex;
    align-items: center;
}

.row.text-center.mt-4.bttn p {
    margin-bottom: 0px;
    width: 60px;
    font-size: 20px;
}

.row.text-center.mt-4.bttn div {
    width: auto;
    text-align: center;
    padding: 0px;
}

.row.text-center.mt-4.bttn label {
    display: none;
}

.upper-box .col-lg-9,
.upper-box .col-lg-3 {
    padding: 0px;
}

div#calender_nrj {
    padding: 0px;
}

section.get-quote-sec .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
    padding: 0px;
}


/* new header css */




header.desk-nav{
    padding:10px;
    position:absolute;
    width:100%;
    background:#ffffff3b;
    z-index:999;
    transition: all .3s ease;
}

/* Sticky state */
header.desk-nav.sticky{
    position:fixed;
    top:0;
    left:0;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

header.desk-nav .top-header img {
    width: 100px;
}

header.desk-nav .col-2 {
    text-align: center;
}

header.desk-nav ul.contact {
    display: flex;
    justify-content: end;
    gap: 35px;
    margin-bottom: 0;
}

header.desk-nav ul.contact li {
    list-style: none;
    color: #fff;
    font-size: var(--f17);
}

header.desk-nav ul.contact li a {
    color: #fff;
    text-decoration: none;
}

header.desk-nav .top-header .container {
    padding-bottom: 0px;
    border-bottom: 0px solid #fff;
}

header.desk-nav .top-header .col-10 {
    display: flex;
    justify-content: center;
    align-items: center;
}

header.desk-nav .nav-links {
    justify-content: center;
    display: flex;
    height: 100%;
}

header.desk-nav .nav-links ul.up {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-bottom: 0;
    gap: 33px;
    align-items: center;
}

header.desk-nav .nav-links ul li {
    list-style: none;
    color: #fff;
}

header.desk-nav .nav-links .main-btn:hover{
    color: white;
    box-shadow: 1px 1px 10px var(--secondary-color);
}
header.desk-nav .nav-links .main-btn{
    padding: 10px;
}
header.desk-nav .nav-links ul li a {
    color: #000;
    text-decoration: none;
    padding: 0px;
    /* padding-bottom: 5px; */
    font-size: 16px;
    /* font-weight: 500; */
    font-family: var(--secondary-font);
    /* border-bottom: 1px solid transparent; */
}

header.desk-nav .nav-links ul li a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Base style for the navigation links */
header.desk-nav .nav-links ul li a {
    position: relative;
    text-decoration: none;
    color: #333; /* Replace with your preferred text color */
    padding-bottom: 4px; /* Space between text and underline */
    display: inline-block;
    transition: color 0.3s ease;
}

/* Create the hidden underline (width: 0) */
header.desk-nav .nav-links ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; /* Starting state */
    height: 2px; /* Thickness of the line */
    background-color:var(--secondary-color); /* Your theme color */
    transition: width 0.35s ease-in-out; /* The 0 to 100 animation */
}

/* Animation on Hover (width: 100%) */
header.desk-nav .nav-links ul li a:hover::after {
    width: 100%; /* Ending state */
}

/* Optional: Change text color on hover to match underline */
header.desk-nav .nav-links ul li a:hover {
    color: var(--secondary-color);
}

/* Ensure the "Book Now" button doesn't get the underline if it has the 'main-btn' class */
header.desk-nav .nav-links ul li a.main-btn::after {
    display: none;
}

header ul.dropdown-menu.show {
    position: absolute;
    border-radius: 0;
    padding: 0;
    border: 0 solid;
    box-shadow: 0 0 6px #0000004f;
}

header ul.dropdown-menu a.dropdown-item {
    padding: 6px 10px !important;
}

header ul.dropdown-menu a.dropdown-item:hover {
    color: #fff !important;
    background: var(--secondary-color);
}

header.desk-nav .nav-links ul li.book a.main-btn {
    line-height: 1;
    display: block;
    padding: 13px 20px;
    color: var(--text-white);
    font-size: 14px;
    background: #330505;
}

header.desk-nav a.active {
    border-bottom: 1px solid #fff;
}

header.desk-nav .bottom-header {
    padding: var(--p14) 0;
}


header.page-header.mob {
    display: none;
}



/* attrction page css start here ! -----------========*/
section.summary-section a {
    color: var(--heading-color);
    font-size: 28px
}

section.summary-section a.main-btn.mr {
    width: 150px;
    font-size: 16px;
    text-align: center
}

section.summary-section a.main-btn.mr:hover span {
    color: #fff
}

.how-we-value-wrapp .atr-cont {
    background: transparent;
    width: 100%;
}

.how-we-value-wrapp .atr-cont h4 {
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 24px;
    /* color: #000; */
    font-family: var(--primary-font);
    padding: 15px 0;
    text-align: center;
    text-transform: capitalize;
}

.how-we-value-wrapp .img-card:hover {
    transform: translateY(-30px);
}

.how-we-value-wrapp img.img-fluid {
    border-radius: 0px;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.how-we-value-wrapp .row {
    gap: 40px 0;
    justify-content: center;
}

.how-we-value-wrapp .img-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.7s ease;
    position: relative;
    transform: translateY(0px);
}

.how-we-value-wrapp img.img-fluid {
    border-radius: 0px;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* attrction page css end here ! -------------=======*/


/* property page css start here ! -------------=======*/
hr {
    border-color: #DDDDDD;
    opacity: 1;
}

.big-img {
    width: 73%;
}

.main {
    padding: 0;
}

.breadcrumb {
    padding-left: var(--p0);
}

.hidden-gallery {
    display: none;
}

.prop-price h5 {
    font-family: var(--primary-font);
    font-size: var(--f28);
    color: var(--other-color);
}

.property-detail .upper-area h3 {
    font-size: var(--f26);
    color: var(--heading-color);
    margin-bottom: 0;
}

.property-detail .adr-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-detail h6 {
    font-size: var(--f14);
    color: var(--black-color);
    font-weight: 500;
    font-family: var(--primary-font);
    margin-bottom: 0;
}

.property-detail .share-area {
    position: relative;
}

.property-detail .share-area .icon-area {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 40px;
    right: 0;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
    z-index: 1;
}

.property-detail .share-area .icon-area svg {
    width: 14px;
}

.property-detail .share-area:hover .icon-area {
    display: block;
}

.property-detail .share-area a {
    display: inline-block;
    background: transparent;
    border: transparent;
    color: var(--black-color);
    font-size: var(--f14);
    font-weight: 400;
    padding: var(--p8);
    width: 100%;
    text-align: center;
}

.property-detail .share-area a:hover {
    background: var(--btn-color);
    border: var(--btn-color);
    color: var(--white-color);
    box-shadow: inset 0 0px 0 0 var(--btn-color);
}

.property-detail .share-area a:hover svg {
    fill: var(--white-color);
}

.property-detail .upper-area {
    margin-bottom: var(--m40);
}

.property-detail .gallery .col-6 {
    padding: 0px;
    width: 49.5%;
}

.property-detail .gallery .col-6.right .row .col-6 {
    padding: 0px;
    width: 49%;
    margin-bottom: var(--m14);
    position: relative;
}

.property-detail .gallery .col-6.right .col-6:nth-child(2) img {
    border-radius: 0px 12px 0px 0px;
}

.property-detail .gallery .col-6.right .col-6:nth-child(4) img {
    border-radius: 0px 0px 12px 0px;
}

.property-detail .row.gallery {
    gap: 1%;
    margin-top: var(--m10);
}

.property-detail .gallery .col-6.left img {
    height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px 0px 0px 12px;
}

.property-detail .gallery .col-6.right .row {
    gap: 2%;
}

.property-detail .gallery .col-6.right img {
    width: 100%;
    height: 193px;
    object-fit: cover;
}

.property-detail .gallery button.main-btn {
    padding: var(--p10);
    width: 150px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--other-color);
    border: 1px solid var(--other-color);
    color: var(--white-color);
}

.property-detail .gallery button.main-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.property-detail .row.bottom h4 {
    font-size: var(--f26);
    color: var(--heading-color);
    margin-bottom: var(--m20);
    font-weight: 500;
}

.property-detail .ammenity-home span {
    font-size: var(--f14);
    color: var(--black-color);
}

.property-detail .ammenity-home span i {
    color: var(--heading-color);
}

.checklist p {
    display: none;
}

.page-title h1 {
   /* display: none;*/
}

.property-detail .ammenity-home {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.property-detail .row.hosted .col-12 {
    padding: 0px;
}

.property-detail .row.bottom .col-8,
.property-detail .row.bottom .col-4,
.property-detail .row.bottom .col-6,
.property-detail .row.bottom .col-9,
.property-detail .row.bottom .col-3 {
    /* padding: 0px; */
}

.property-detail .row.hosted .col-3 {
    text-align: right;
}

.property-detail .row.hosted h4 {
    margin-bottom: var(--m10);
}

.property-detail .row.hosted img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 100%;
}

.property-detail .overcontent h3 {
    font-size: var(--f16);
    line-height: 1.3;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--m5);
    font-family: var(--primary-font);
}

.property-detail .overcontent {
    height: 135px;
    overflow: hidden;
    margin-bottom: var(--m10);
}

.property-detail .overcontent p {
    color: var(--black-color);
}

#more,
#less,
#revw,
#revl,
#revw1,
#revl1,
#revw2,
#revl2,
.rul {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 5px;
    cursor: pointer;
    fill: var(--secondary-color);
    justify-content: center;
    text-decoration: none;
}

#more:hover,
#less:hover,
#revw:hover,
#revl:hover,
#revw1:hover,
#revl1:hover,
#revw2:hover,
#revl2:hover,
.rul:hover {
    /* text-decoration:underline; */
}

#less,
#revl,
#revl1,
#revl2 {
    display: none;
}

.property-detail .overview a {
    /* color:var(--btn-color); */
}

.property-detail .overview a path {
    fill: var(--btn-color);
}

.property-detail .overview a:hover {
    /* color:var(--btn-color); */
    text-decoration: underline;
}

.property-detail .overview a:hover path {
    fill: var(--btn-color);
    text-decoration: underline;
}

.property-detail .amenities i {
    font-size: var(--f17);
    margin-right: var(--m5);
    color: var(--heading-color);
}

.property-detail .amenities ul.amenities-detail {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--m10);
}

.property-detail .amenities ul.amenities-detail li {
    width: 50%;
    /* color: var(--black-color); */
    margin-bottom: var(--m15);
}

#amn,
#rvw,
#house,
#safety,
#cancel {
    transition: all .3s ease;
}

#amn .modal-dialog,
#rvw .modal-dialog,
#house .modal-dialog,
#safety .modal-dialog,
#cancel .modal-dialog {
    max-width: 700px;
    height: 100vh;
    position: absolute;
    right: 0;
    width: 700px;
    top: 0;
    margin: 0px;
    transition: all .3s ease;
}

#amn h5,
#rvw h5,
#house h5,
#safety h5,
#cancel h5 {
    font-size: var(--f19);
    margin-top: var(--m30);
    line-height: 1.3;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: var(--m20);
    font-family: var(--secondary-font);
}

#amn .modal-content,
#rvw .modal-content,
#house .modal-content,
#safety .modal-content,
#cancel .modal-content {
    border-radius: 0px;
    border: 0px solid;
    min-height: 100vh;
    height: auto;
    background: #fff;
}

#amn .modal-header,
#rvw .modal-header,
#house .modal-header,
#safety .modal-header,
#cancel .modal-header {
    border: 0px solid;
    padding-bottom: 0px;
}

#rvw h4,
#house h4,
#safety h4,
#cancel h4 {
    font-size: var(--f22);
    color: var(--heading-color);
    margin-bottom: var(--m20);
}

#rvw .guest-profile {
    display: flex;
    gap: 10px;
    margin-bottom: var(--m10);
}

#rvw .review-box {
    margin-bottom: var(--m20);
}

#book .side-area {
    /* border: 1px solid rgb(221, 221, 221); */
    border-radius: 10px;
    padding: var(--p15) var(--p20);
    box-shadow: 0px 0px 4px #00000045;
    position: sticky;
    top: 80px;
    /* z-index: 4; */
    background: var(--white-color);
}

#book .price {
    display: flex;
    align-items: center;
    gap: 5px;
}

#book .price p {
    font-size: var(--f22);
    font-weight: 600;
    letter-spacing: 0px;
    margin-bottom: 0px;
}

#book .side-area .upper-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

#book .side-area .upper-area h3 {
    padding: 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--primary-font);
    /* color: var(--text-white); */
    /* background: var(--secondary-color); */
    width: 100%;
    /* color:var(--white-color); */
}

#book .side-area a#reset-button-gaurav-data {
    font-size: var(--f16);
    cursor: pointer;
    color: var(--heading-color);
    text-decoration: underline;
}

#book .side-area a#reset-button-gaurav-data:hover {
    color: var(--btn-color);
}

div#book {
    /* padding-right: 0px; */
    /* padding-left: var(--p24); */
    z-index: 1;
}

.description {
    padding: var(--p20) var(--p12);
    border-bottom: 1px solid #b7b7b7;
}

.description h2 {
    color: var(--other-color);
    font-family: var(--primary-font);
}

.description p {
    text-align: justify;
    font-family: var(--primary-font);
}

.read-more {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white-color);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 26px;
    border-radius: 5px;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 0.06em;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.read-more:hover {
    background: var(--other-color);
    color: var(--white-color);
    border: 2px solid var(--other-color);
}

.ammenities {
    padding: var(--p20) var(--p12);
    border-bottom: 1px solid #b7b7b7;
}

.ammenities h2 {
    color: var(--other-color);
    font-family: var(--primary-font);

}

.ammenities h5 {
    padding-left: 0;
    color: var(--black-color);
}

.ammenities .col-4 {
    margin-bottom: var(--m10);
    font-family: var(--primary-font);
}

.reviews .reviews-head {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews .reviews-head p {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 26px;
    color: var(--heading-color);
    margin-top: 0px;
    font-family: var(--heading-font);
}

.reviews .reviews-head span {
    font-size: 26px;
    color: var(--heading-color);
    padding-left: 4px;
}

.reviews h4 {
    margin-bottom: 0px !important;
}

.reviews .col-lg-6 {
    padding-left: 0px;
    padding-right: 0px;
    width: 49%;
    margin-top: var(--m10);
    margin-bottom: var(--m20);
    border: 7px solid #00000061;
    border-radius: 45px;
    padding: 30px;
}

.reviews .row.rev {
    gap: 2%;
    height: auto;
    overflow: hidden;
    max-height: 545px;
}

.rev .guest-profile {
    display: flex;
    gap: 10px;
    margin-bottom: var(--m10);
}

.guest-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.guest-profile p {
    font-weight: bold;
    margin-bottom: 0px;
    font-size: var(--f16);
}

.prof span {
    font-size: var(--f14);
}

.prof span.star-review {
    padding-left: 10px;
    color: var(--black-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.guest-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: var(--m10);
    height: 90px;
}

.rvw-area .guest-content {
    height: auto;
    display: block;
}

.get-quote {
    padding: 0px;
    box-shadow: 0px 0px 0px #ccc;
    border-radius: 5px;
    position: sticky;
    top: 1rem;
    text-align: center;
}

.get-quote .main-cal {
    display: flex;
    justify-content: space-between;
}

.forms-booking-tab {
    padding: 30px 20px;
    box-shadow: 0px 0px 13px #dad9d9;
    border-radius: 10px;
}

.get-quote .col-md-12 {
    padding: 0px;
}

.forms-booking-tab ul {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
}

.forms-booking-tab ul {
    background: transparent;
    padding: 0px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--secondary-font);
    letter-spacing: 1px;
    margin-bottom: 0;
}

.booking.item {
    height: auto;
}

.booking {
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--text-white);
    background: var(--secondary-color);
}

.item {
    display: block;
}

.ovabrw_datetime_wrapper {
    position: relative;
    width: 48.4%;
    display: inline-block;
}

.ovabrw_datetime_wrapper input {
    width: 100%;
    padding: 8px 0 8px 30px;
    border: 1px solid var(--secondary-color);
    font-size: 14px;
    height: 42px;
    margin-top: 1rem;
    border-radius: 20px;
    width: 100%;
    padding: 15px 15px 15px 29px;
    border: 1px solid #cacaca;
    font-size: 14px;
    height: 45px;
    border-radius: 8px;
    background: #fff;
    color: #000;
}

.pool,
.pet {
    position: relative;
}

.ovabrw_datetime_wrapper i,
.ovabrw_service_select.rental_item i,
.pet i,
.pool i {
    position: absolute;
    left: 0.5rem;
    top: 1.7rem;
    font-size: 18px;
    color: var(--secondary-color);
}

.ovabrw_service_select.rental_item i,
.pool i {
    top: 0.8rem !important;
}

i.fa-solid.fa-users.users-icn {
    top: 0.7rem;
}

.ovabrw_service_select.rental_item {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    margin-bottom: var(--m5);
}

input#show-target-data {
    padding: 10px 10px 10px 35px;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    width: 100%;
    width: 100%;
    padding: 13px 15px 13px 32px;
    border: 1px solid #cacaca;
    font-size: 14px;
    height: 45px;
    border-radius: 8px;
    background: #fff;
    color: #000;
}

button.main-btn.close111 {
    height: 43px;
    padding: var(--p5) var(--p15);
    font-size: var(--f14);
}

div#guestsss {
    width: 100%;
    min-width: 250px;
    background: #fff;
    padding: var(--p20);
    position: absolute;
    z-index: 9;
    left: 0;
    border-radius: 10px;
    display: none;
    box-shadow: 0px 0px 3px 0px #888888;
}

#guestsss .close1 {
    /* position: absolute; */
    right: 10px;
    left: auto;
    top: 0.3rem !important;
    font-size: var(--f18);
    color: var(--secondary-color);
    cursor: pointer;
}

#guestsss .adult-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--m20);
}

#guestsss .adult-box p {
    margin-bottom: 0px;
    letter-spacing: 0px;
}

#guestsss button.button1 {
    background: transparent;
    height: 35px;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    font-size: var(--f20);
    line-height: 35px;
    margin-left: 0;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: all .3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#guestsss button.button11.button1 {
    margin-left: var(--m14);
}

form#booking_form p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0px;
}

button.main-btn.close111 {
    width: 100%;
    border-radius: 0;
}

#datepicker-demo17.datepicker {
    top: 60px !important;
    right: 0;
    left: auto;
}

.ovabrw_datetime_wrapper .modal-bodyss i,
.ovabrw_service_select.rental_item .modal-bodyss i {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 22px;
    color: var(--secondary-color);
    left: auto;
    cursor: pointer;
}

.ac-box,
.btnssss {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adult {
    display: flex;
    color: #000;
    font-size: 15px;
    align-items: center;
}

.button1 {
    background: transparent;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    line-height: 40px;
    margin-left: 14px;
    border: 1px solid #717171;
    color: #717171;
    transition: all .3s;
    cursor: pointer;
}

.adult-popup .modal-bodyss button.main-btn.btn {
    width: 100%;
    color: #fff !important;
}

button.main-btn.btn {
    background: var(--secondary-color) !important;
    border: 0.0625rem solid var(--secondary-color) !important;
}

.main-btn span {
    display: block;
    position: relative;
    font-weight: 600;
}

ovabrw_service_select.rental_item i {
    left: 0.5rem;
}

.ovabrw_datetime_wrapper i,
.ovabrw_service_select.rental_item i,
.pets i {
    position: absolute;
    left: 0.5rem;
    top: 1.7rem;
    font-size: 18px;
    color: var(--secondary-color);
    left: 0.45rem;
    top: 1.75rem;
    color: var(--btn-color);
}

.ovabrw-book-now {
    position: relative;
    width: 100%;
    gap: 0rem;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0px;
    margin-top: 10px;
    background-color: transparent;
    border-radius: 0px 0px 5px 5px;
}

.ovabrw-book-now .main-btn {
    width: 100%;
    padding: 10px 16px;
}

.get-quote select#pet_fee_data_guarav {
    padding: 10px 10px 10px 10px;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    width: 100%;
    margin-top: 1rem;
    text-indent: 22px;
}

.get-quote select#heating_pool_fee_data_guarav {
    padding: 10px 10px 10px 10px;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    border: 1px solid var(--secondary-color);
    border-radius: 0px;
    width: 100%;
    margin-top: 1rem;
    text-indent: 22px;
}

.contact-form {
    padding: var(--p20) var(--p12);

}

.contact-form h2 {
    font-family: var(--primary-font);
}

.main-form {
    padding: var(--p30) var(--p20);
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
}

.form-control {
    border: none;
    width: 100%;
    border: 3px solid var(--other-color);
    border-radius: 0px;
}

.textarea {
    width: 90%;
}

.contact-form .row {
    padding-top: 30px;
}

.submit-btn {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 26px;
    border-radius: 5px;
    line-height: 1.75rem;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 0.06em;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;

}

.submit-btn:hover {
    background: var(--other-color);
    border: 2px solid var(--other-color);
}

.submit {
    padding-top: 20px;
}

div#gaurav-new-data-area a {
    text-align: left;
    display: block;
    cursor: pointer;
    color: var(--heading-color);
    text-decoration: underline;
}

div#gaurav-new-data-area .col-md-6,
div#gaurav-new-modal-days-area .col-md-6 {
    padding: 0px;
    text-align: left;
    font-size: var(--f14);
}

.policy .col-lg-4 {
    padding-left: 0px;
}

.policy .area {
    overflow: hidden;
    margin-bottom: var(--m10);
    height: 159px;
}

.policy p {
    margin-bottom: var(--m10);
}

.policy p.main {
    font-weight: bold;
    font-size: var(--f16);
}

.policy a:hover {
    color: var(--btn-color);
}

.policy a:hover path {
    fill: var(--btn-color);
}

ul.amenities-detail img {
    width: 30px;
}

.modal-header .btn-close {
    transition: all .3s ease;
    color: #fff !important;
    background-image: url("../images/close-modal.svg");
    opacity: 1;
}

div#gaurav-new-data-area {
    margin-top: var(--m15);
}

div#gaurav-new-data-area .row .col-md-6:last-child {
    text-align: right;
}

div#gaurav-new-data-area .row {
    margin-bottom: var(--m5);
}

div#gaurav-new-data-area .days-box {
    width: 400px;
    position: absolute;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px, rgba(0, 0, 0, 0.07) 0px 0px 0px 1px !important;
    /* margin-top: var(--m10); */
    border-radius: 10px;
    bottom: -40px;
    right: 105%;
    display: none;
    transition: all .3s ease;
}

div#gaurav-new-data-area .col-md-6.days-area {
    position: relative;
}

div#gaurav-new-data-area .days-box h4 {
    margin-bottom: 0px;
    text-align: center;
    font-size: var(--f20);
}

div#gaurav-new-data-area .days-box i {
    font-size: var(--f18);
    position: absolute;
    top: 21px;
    cursor: pointer;
}

div#gaurav-new-data-area .upper {
    position: relative;
    /* height: 29px; */
    padding: var(--p16) var(--p24);
    border-bottom: 1px solid #ddd;
}

div#gaurav-new-data-area .inner-area {
    padding: var(--p20) var(--p24);
    padding-bottom: var(--p16);
    max-height: 300px;
    overflow-y: scroll;
    height: auto;
}

div#gaurav-new-data-area .inner-area .left p {
    text-align: left;
}

div#gaurav-new-data-area .inner-area .right p {
    text-align: right;
}

div#gaurav-new-data-area .bottom {
    padding: var(--p20) var(--p24);
    padding-top: 0px;
}

div#gaurav-new-data-area .bottom .left p {
    text-align: left;
    font-weight: bold;
}

div#gaurav-new-data-area .bottom .right p {
    text-align: right;
    font-weight: bold;
}

div#gaurav-new-data-area hr {
    margin-top: 0px;
}

div#gaurav-new-data-area .days-box .inner-area::-webkit-scrollbar,
div#gaurav-new-data-area .additional-box .inner-area::-webkit-scrollbar {
    width: .225rem;
}

div#gaurav-new-data-area .days-box .inner-area::-webkit-scrollbar-track,
div#gaurav-new-data-area .additional-box .inner-area::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

div#gaurav-new-data-area .days-box .inner-area::-webkit-scrollbar-thumb,
div#gaurav-new-data-area .additional-box .inner-area::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

div#myModal {
    margin: 0px !important;
    padding: 0px !important;
}

div#myModal .modal-dialog {
    padding: 0px !important;
    margin-top: 0px !important;
    max-width: 400px !important;
    margin-right: 0px !important;
}

div#myModal .modal-content {
    border-radius: 0px !important;
    height: 420px !important;
    overflow-y: scroll;
}

div#myModal h4 {
    font-size: var(--f20);
}

div#myModal .col-md-6 {
    margin-bottom: 10px;
}

div#gaurav-new-data-area .col-md-6.additional {
    position: relative;
}

div#gaurav-new-data-area .additional-box {
    width: 400px;
    position: absolute;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 6px, rgba(0, 0, 0, 0.07) 0px 0px 0px 1px !important;
    /* margin-top: var(--m10); */
    border-radius: 10px;
    bottom: -40px;
    right: 105%;
    display: none;
    transition: all .3s ease;
}

div#gaurav-new-data-area .additional-box h4 {
    margin-bottom: 0px;
    text-align: center;
    font-size: var(--f20);
}

div#gaurav-new-data-area .additional-box i {
    font-size: var(--f18);
    position: absolute;
    top: 21px;
    cursor: pointer;
}

#book .error-box {
    margin-top: var(--m10);
}

#book .error-box p {
    margin-bottom: 0px;
    line-height: 1.5;
    font-size: var(--f12);
    color: red;
}

a.sticky.main-btn {
    transform: rotate(-90deg);
    position: fixed;
    left: auto;
    right: -36px;
    top: 52%;
    z-index: 3;
    display: none;
    letter-spacing: 0px;
}

input#demo17 {
    position: absolute;
    left: 0px;
    top: 15px;
    height: 45px !important;
    width: 100% !important;
}

@media (min-width: 981px) {
    .datepicker {
        right: 0;
    }
}

.about-owner-section {
    text-algin: center;
    display: none;
}

.about-owner-section p {
    margin-bottom: 0px !important;
}

pre {
    white-space: pre-line;
    word-break: break-word;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    text-align: justify;
    /* color: var(--black-color); */
}

.more-properties h4 {
    margin-bottom: 25px;
}

.more-properties .pro-img {
    position: relative;
}

.more-properties .pro-img a {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    display: flex;
    border-radius: 20px 20px 0 0;
}

.more-properties img.img-fluid {
    width: 100%;
    height: 320px;
    object-fit: cover;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.more-properties .pro-img:hover img {
    transform: scale(1.14);
}

.more-properties .view {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: var(--p15);
    background: #ffffffbd;
}

.more-properties h5 {
    font-size: var(--f18);
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 0;
}

.more-properties h5 span {
    font-weight: 600;
    font-size: var(--f22);
    color: var(--black-color);
}

.more-properties .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--p40) var(--p25) var(--p25) var(--p25);
    background: var(--white-color);
    box-shadow: 0px 1px 17px 0px rgb(0 0 0 / 12%);
    margin-top: -20px;
    border-radius: 0 0 20px 20px;
}

.more-properties i {
    margin-right: var(--m8);
    color: var(--secondary-color);
}

.more-properties p.adr {
    font-size: var(--f14);
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: var(--m15);
    line-height: 1.5;
    height: auto;
    overflow: hidden;
    border-bottom: 1px solid #36454f59;
    padding-bottom: 10px;
}

.more-properties h3.title {
    font-size: var(--f20);
    line-height: 30px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: var(--m11);
    height: 30px;
    overflow: hidden;
    width: 98%;
}

.more-properties h3.title a {
    color: var(--territiary-color);
}

.more-properties .descp {
    max-height: 60px;
    overflow: hidden;
}

.more-properties .amn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #36454f59;
    padding-top: var(--p20);
}

.more-properties ul {
    margin: 0 0 0;
    padding: 0;
    /* background-color: #f2f2f2; */
    font-size: var(--f14);
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.more-properties ul li {
    font-size: var(--f14);
    color: var(--black-color);
    font-weight: 500;
}

.more-properties .prop-view-btn {
    padding-top: var(--p20);
}

.more-properties .prop-view-btn a {
    text-decoration: underline;
    font-size: var(--f18);
}

.more-properties .show-properties-btn {
    text-align: center;
    margin-top: 30px;
}

.more-properties .row {
    gap: 30px 0;
}

.more-properties .owl-nav {
    display: flex;
    gap: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    justify-content: center;
    width: 80%;
    margin-top: 15px;
}

.owl-carousel {
    display: flex;
    justify-content: space-between;
}

.owl-carousel .owl-stage-outer {
    padding-left: 0;
    padding-right: 0px;
}

.more-properties .owl-prev {
    font-size: 16px !important;
    border-radius: 3px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}

.more-properties .owl-next {
    font-size: 16px !important;
    border-radius: 3px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}

.more-properties .owl-prev:hover,
.more-properties .owl-next:hover {
    background: var(--btn-hover) !important;
}

.more-properties .owl-prev i,
.more-properties .owl-next i {
    color: var(--white-color) !important;
    margin-right: 0;
}

.more-properties .owl-nav {
    display: flex;
    gap: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    justify-content: center;
    width: 80%;
    margin-top: 15px;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: flex;
}

.more-properties .owl-nav {
    display: flex;
    gap: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    justify-content: center;
    width: 80%;
    margin-top: 25px;
}

section.blog-details-area.ptb-90 div#calender_nrj {
    padding: 0;
}

.rsContainer {
    text-align: center;
}

section.property-detail {
    position: relative;
    padding-top: 135px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: auto;
    height: auto;
    background-color: #000;
}

/* Darken modal backdrop */
.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.8);
    /* Adjust opacity as needed */
}

.modal.fade.modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out !important;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background: #555555c2;
}

.attraction-sec .row {
    gap: 20px 0;
}

.attraction-sec .item {
    padding-left: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
}

.attr-card {
    /* margin-left: 10px; */
    margin-right: 10px;
    margin-bottom: 10px;
}

.attraction-sec img.img-fluid {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    position: relative;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}

.attraction-sec .pro-img:hover img {
    transform: scale(1.14);
}

.attraction-sec .pro-img a:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    z-index: 1;
}

.attraction-sec .pro-img a {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
    border-radius: 10px 10px 0 0;
    display: block;
}

.attraction-sec .pro-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--p24);
    border-radius: 0px 0px 10px 10px;
    background: var(--white-color);
    box-shadow: 0px 4px 5px rgba(189, 189, 189, 0.24);
}

.attraction-sec h3.title {
    font-size: var(--f20);
    line-height: 1.2;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: var(--m11);
    height: 24px;
    overflow: hidden;
}

.attraction-sec h3.title a {
    color: var(--heading-color);
}

.attraction-sec .pro-img {
    position: relative;
}

.attraction-sec .owl-nav {
    position: absolute;
    top: -48px;
    right: 0;
    /* text-align: right; */
    width: auto;
    z-index: 2;
    display: block !important;
}

.attraction-sec .owl-nav button {
    background: var(--secondary-color);
    padding: var(--p10);
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.attraction-sec .owl-nav button.owl-prev {
    margin-right: var(--m15);
    background: var(--secondary-color);
}

.attraction-sec .owl-nav button.owl-next {
    background: var(--secondary-color);
}

.attraction-sec .owl-nav button.owl-prev:hover,
.attraction-sec .owl-nav button.owl-next:hover {
    background: var(--btn-color);
}

.attraction-sec .owl-nav button i {
    font-size: var(--f20);
    line-height: 35px;
    color: var(--white-color);
}

.attraction-sec h4 {
    padding-left: 12px;
    padding-right: 12px;
}

.attraction-sec #attr-slider {
    padding-left: 12px;
    padding-right: 12px;
}

.attraction-sec {
    margin-top: 30px;
    z-index: 0;
    position: relative;
}


#guestsss .adult-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--m10);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(46, 39, 57, .1);
}

#guestsss .adult-box p {
    letter-spacing: 0;
    color: var(--para-color);
    text-shadow: 0 0 0 #000;
    font-size: var(--f16);
    text-align: left;
    margin: 0;
    display: block !important;
}

.adult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(224, 212, 198, .25);
    border: 1px solid #e7ded0;
    height: 43px;
    border-radius: 50px;
}

.adult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(224, 212, 198, .25);
    border: 1px solid #e7ded0;
    height: 43px;
    border-radius: 50px;
}

#guestsss button.button1 {
    background: 0 0;
    height: 43px;
    width: 43px;
    text-align: center;
    border-radius: 50%;
    font-size: var(--f30);
    line-height: 30px;
    margin-left: 0;
    border: 1px solid #e7ded0;
    color: var(--para-color);
    transition: .3s;
    cursor: pointer;
}

#guestsss button.button11.button1 {
    margin-left: 0;
    background: var(--lt-bg-color);
}

div#guestsss {
    width: 100%;
    min-width: 400px;
    background: #fff;
    right: 0;
    border-radius: 0;
    display: none;
    padding: 27px;
}

.rsDefault .rsThumbsHor {
    width: 100%;
    height: 72px;
    position: relative;
    z-index: 0;
}

.rsDefault .rsFullscreenBtn {
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    z-index: 22;
    display: block;
    position: absolute;
    cursor: pointer;
    z-index: 0;
}





section.testimonial .bg-img {
    background: url('../images/testy.webp');
    height: 600px;
    padding: 0;
    background-size: cover;
    position: relative;
    z-index: 1;
}

section.testimonial .attr-bnt {
    position: absolute;
    bottom: 7.7%;
    right: 45%;
    z-index: 1;
}

section.testimonial .para {
    max-height: 135px;
    overflow: hidden;
    margin-bottom: 15px;
}

section.testimonial {
    /* background: #fff; */
    position: relative;
    padding: 0;
    padding-bottom: 0px;
}

section.testimonial .container {
    padding: 0px;
}

section.testimonial .col-6.cont-head {
    margin-top: 88px;
    padding: 105px 27px 0;
    background: transparent url(../images/testi-bg-a.jpg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
    display: none;
}

section.testimonial .col-6.cont-head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.50;
}

section.testimonial .head-sec {
    position: relative;
    text-align: left;
    width: 100%;
    margin: auto;
    padding-left: var(--p30);
    padding-top: var(--p50);
    margin-bottom: var(--m20);
}

section.testimonial .icon {
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    z-index: 1;
    top: -5px;
}

section.testimonial .icon img {
    height: 50px;
}

section.testimonial .testy {

    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    background: transparent;
    position: relative;
    z-index: 1;
}

section.testimonial .item {
    /* padding-left: var(--p15); */
    /* padding-right: var(--p15); */
    padding-bottom: var(--p5);
}

section.testimonial .top-text {
    position: relative;
    /* height: 100px; */
}

section.testimonial .overlay {
    background-color: #fff;
    width: 100%;
    margin: auto;
    padding: 0;
    padding-bottom: 0;
    border-radius: 0px;
    position: relative;
    right: 0px;
    padding: 20px 30px;
}

section.testimonial .owl-nav {
    display: flex;
    gap: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    justify-content: center;
    width: 80%;
}

.owl-carousel .owl-stage-outer {
    padding-left: 0;
    padding-right: 0px;
}

section.testimonial .owl-prev {
    font-size: 16px !important;
    border-radius: 0px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}

section.testimonial .owl-next {
    font-size: 16px !important;
    border-radius: 0px;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--btn-color) !important;
    border: 0px solid !important;
    color: var(--white-color) !important;
}

section.testimonial .owl-prev:hover,
section.testimonial .owl-next:hover {
    background: var(--btn-hover) !important;
}

section.testimonial .test-pro {
    height: 100px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
}

section.testimonial .test-pro:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

section.testimonial .test-pro img {
    position: absolute;
    /*top: -35%;*/
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    max-width: none;
}

section.testimonial .user-icon {
    position: absolute;
    z-index: 1;
    left: 17%;
    top: 20%;
    -webkit-transform: translate3d(-50%, -10px, 0);
    -moz-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

section.testimonial .user-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--white-color);
}


section.testimonial .test-card {
    text-align: center;
    background: var(--white-color);
    border-radius: 0px;
    /* box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.1); */
    padding-bottom: 0;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, .07);
    padding: var(--p25);
    height: 320px;
    width: 100%;
}

section.testimonial .test-card p {
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: var(--m10);
}

section.testimonial .test-card h4 {
    font-size: var(--f20);
    margin-bottom: var(--m7);
    font-weight: 600;
    color: var(--heading-color);
}

section.testimonial .cont-sec {
    margin-top: var(--m50);
    text-align: center;
}

section.testimonial i.fa-solid.fa-star {
    color: #FCAF3D;
    font-size: var(--f10);
    margin-right: var(--m3);
}

section.testimonial hr {
    width: 200px;
    opacity: 1;
    border-top: 3px solid;
    color: var(--white-color);
}

section.testimonial h3 {
    padding-left: 0;
    font-size: var(--f20);
    font-weight: 700;
    text-align: center;
    color: var(--territiary-color);
    margin-bottom: 0;
}

section.testimonial .container-fluid {
    padding: 0;
}

section.testimonial h6 {
    font-size: 16px;
    font-family: var(--heading-font);
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 0;
}

section.testimonial .owl-item.active:first-child .item {
    border-right: 2px solid var(--white-color);
}

section.testimonial .para p {
    text-align: center;
    width: 90%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    color: var(--black-color);
    height: auto;
    max-height: 141px;
    margin-top: var(--m10);
    font-size: var(--f16);
    overflow: hidden;
    margin-bottom: var(--m20);
}

section.testimonial .para i {
    font-size: var(--f30);
}

section.testimonial i.fa-solid.fa-quote-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
}

section.testimonial i.fa-solid.fa-quote-left {
    position: absolute;
    left: 20px;
    top: -10px;
}

section.testimonial p.clt-name {
    color: var(--heading-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-top: var(--m15);
    margin-bottom: 0px;
}

section.testimonial span {
    height: auto;
    overflow: hidden;
    display: block;
}

section.testimonial .test-card:hover .test-pro {
    height: 180px;
}

section.testimonial .test-card:hover .test-pro img {
    top: 0;
    height: 100%;
}

section.testimonial a.main-bttn {
    display: inline-block;
    padding: 0px;
}


video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.rsDefault .rsGCaption {
    display: none !important;
}



section.testimonial .owl-item {
    margin-right: 60px !important;
}

section.testimonial .owl-stage-outer {
    height: 570px !important;
}


.testy iframe {
    width: 315px;
    height: 560px;
}

.upper-gallery .grid-container-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto;
}

.upper-gallery {
    padding-bottom: 10px;
   padding-top: 8rem;
}

.upper-gallery .box {
    border: 2px solid #ccc;
    overflow: hidden;
    cursor: pointer;
    height: max-content;
}

.upper-gallery .small-grid-right .box {
    height: 197px;
    width: 49%;
}

.upper-gallery .box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.upper-gallery .small-grid-right .box img {
    height: 195px;
}

.upper-gallery .box:hover img {
    transform: scale(1.05);
}

.upper-gallery .large-left {
    grid-row: 1;
    grid-column: 1;
    border-radius: 25px 0px 0px 25px;
}

.upper-gallery .small-grid-right>.box:nth-child(2) {
    border-top-right-radius: 25px;
}

.upper-gallery .small-grid-right>.box:last-child {
    border-bottom-right-radius: 25px;
}

.upper-gallery .small-grid-right {
    display: flex;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    /* grid-column: 2; */
    flex-wrap: wrap;
}

.gallery-modal-btn {
    font-weight: 500;
    font-size: var(--f14);
    color: var(--white-color);
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color) !important;
    box-shadow: inset 0 0 0 0 #f6f6f9;
    padding: var(--p5) var(--p20);
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    border-radius: 7px;
    transition: 0.5s;
    font-family: var(--secondary-font);
}

#galleryModal .modal-header {
    border: none;
    justify-content: end;
}

.card-gallery-modal {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgb(61 82 97 / 50%);
}

.card-gallery-modal img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
}

/* Amenities main section */
.amenities-wrapper {
    width: 100%;
    max-width: 900px;
}

.amenities-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Two-column layout */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.amenities-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-grid li {
    font-size: 15px;
    margin-bottom: 14px;
}

/* Button */
.amenities-btn {
    margin-top: 30px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

.amenities-btn:hover {
    background-color: var(--secondary-color);
}

/* Offcanvas */
.amenities-offcanvas {
    width: 420px;
}

.amenities-offcanvas h2 {
    font-size: 24px;
    font-weight: 500;
}

/* Offcanvas list */
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenities-list li {
    font-size: 15px;
    margin-bottom: 16px;
}

.reviews-wrapper {
    max-width: 1000px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 26px;
}

.reviews-header span {
    font-size: 18px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.review-card {
    border: 4px solid #9c9c9c;
    border-radius: 30px;
    padding: 25px;
}

.review-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.review-meta {
    font-size: 13px;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
}

.reviews-btn {
    margin-top: 30px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
}

.reviews-offcanvas {
    width: 700px;
}

.full-review h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.full-review p {
    font-size: 14px;
    line-height: 1.7;
}

.explore-attractions {
    width: 100%;
    padding-top: 0;
}
.explore-attractions .owl-carousel{
    z-index: 0;
}

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.explore-header h2 {
    font-size: 30px;
    font-weight: 500;
}

.explore-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-left: 8px;
}

.attraction-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.attraction-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.attraction-content {
    padding: 18px;
    height: 100px;
}

.attraction-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.attraction-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* remove owl default dots */
.attractions-carousel .owl-dots {
    display: none;
}


/* property page css end here ! -------------=======*/


.gallery-sec-new {
    background: #f2f2f2;
}



.gallery-sec-new .gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-sec-new .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* .gallery-sec-new .gallery-item:hover img {
    transform: scale(1.08);
} */

.gallery-sec-new .gallery-row {
    row-gap: 25px;
}



/* ================================ gallery section --------------------------------- */
/* CSS Scope to avoid conflicts */
#custom-gallery-section {
    background-color: #d1d9d9;
}

#custom-gallery-section .gallery-title {
    /* Or any elegant serif font */
    font-size: 42px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

#custom-gallery-section .gallery-tabs {
    margin-bottom: 60px;
    border: none;
}

#custom-gallery-section .nav-link {
    color: #444;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    background: transparent;
    border: none;
    padding: 12px 35px;
    margin: 0 10px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#custom-gallery-section .nav-link.active {
    background-color: #ffffff;
    color: #000;
    border-radius: 50px;
}

/* Slick Slide Gap */
#custom-gallery-section .gallery-item {
    padding: 0 15px;
}

#custom-gallery-section .gallery-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
}

/* Navigation Arrows Styling */
/* Target arrows specifically within your section */
#custom-gallery-section .slick-prev,
#custom-gallery-section .slick-next {
    background-color: #fff;
    /* White background like the image */
    border: none;
    outline: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Remove the default Slick "before" icons so Font Awesome can show */
#custom-gallery-section .slick-prev::before,
#custom-gallery-section .slick-next::before {
    display: none;
}

/* Style the Font Awesome icons inside the buttons */
#custom-gallery-section .slick-prev i,
#custom-gallery-section .slick-next i {
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

/* Positioning adjustments */
#custom-gallery-section .slick-prev {
    left: 20px;
    z-index: 2;
    padding: 20px;
}

#custom-gallery-section .slick-next {
    right: 20px;
    z-index: 2;
    padding: 20px;
}

/* Footer Button */
#custom-gallery-section .button-wrapper {
    margin-top: 60px;
}

#custom-gallery-section .btn-view-more {
    background-color: #24424a;
    color: #ffffff;
    padding: 18px 55px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

#custom-gallery-section .btn-view-more:hover {
    background-color: #1a3138;
}

/* ================================ gallery section --------------------------------- */

/*-------------------------------New attraction section--------------------------------*/

/* ===============================
   AROUND THE CLOCK ATTRACTIONS
   Fully Scoped – No Conflict
=================================*/

section.around-clock-section {
}


/* Header */
section.around-clock-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

section.around-clock-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
}

/* Grid */
section.around-clock-section .attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
section.around-clock-section .attraction-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

section.around-clock-section .attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Image */
section.around-clock-section .card-image {
    height: 220px;
    overflow: hidden;
}

section.around-clock-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

section.around-clock-section .attraction-card:hover .card-image img {
    transform: scale(1.08);
}

/* Content */
section.around-clock-section .card-content {
    padding: 20px;
}

section.around-clock-section .card-content .category {
    font-size: 12px;
    font-weight: 600;
    color: #ff5a1f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section.around-clock-section .card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

section.around-clock-section .card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Button */
section.around-clock-section .section-btn {
    text-align: center;
    margin-top: 40px;
}


/* ----------------======================= start new about section css start here -====================== */

/* Prefixing all styles with #luxury-rentals-about to ensure zero conflicts */
#luxury-rentals-about {
    background-color: #ffffff;
    color: #333;
    overflow: hidden; /* Important for the skew animation */
}

/* --- Layout Grid (No bootstrap utility classes used) --- */
#luxury-rentals-about .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* --- Left Side: Tilt Image Area --- */
#luxury-rentals-about .image-area {
    position: relative;
    perspective: 1000px; /* Essential for 3D tilt effects */
}

#luxury-rentals-about .image-container {
    width: 500px;
    margin: auto;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.6s ease-out, box-shadow 0.6s ease;
    
    /* Initial 'Hide-Tilt' State */
    /* transform: rotateY(15deg) skewX(-2deg) scale(0.95); */
     transform: rotate(-5deg) scale(1.02);
    opacity: 0.9;
}

#luxury-rentals-about .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Hover Show-Tilt Animation */
#luxury-rentals-about .image-area:hover .image-container {
      transform: rotate(0deg) scale(1.02);
    opacity: 1;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Guest Rating Badge */
#luxury-rentals-about .rating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

#luxury-rentals-about .rating-badge .icon-circle {
    background-color: var(--secondary-color); /* Deep Pink icon */
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

#luxury-rentals-about .rating-badge .text span {
    display: block;
}

#luxury-rentals-about .rating-badge .score {
    font-size: 20px;
    font-weight: 700;
}

#luxury-rentals-about .rating-badge .label {
    font-size: 11px;
    color: #888;
}

/* --- Right Side: Text Area --- */
#luxury-rentals-about .subtitle {
     /* Or similar script-style font */
     font-size: 20px;
     color: var(--secondary-color);
     font-weight: 400;
     margin-bottom: 10px;
     display: block;
}

#luxury-rentals-about h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
    font-weight: 700;
}

#luxury-rentals-about h2 span {
     /* Golden Highlight */
     display: inline-block;
     color: var(--secondary-color);
}

#luxury-rentals-about p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}

#luxury-rentals-about .explore-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: letter-spacing 0.3s ease;
}

#luxury-rentals-about .explore-link:hover {
    letter-spacing: 0.5px;
}

#luxury-rentals-about .explore-link i {
    margin-left: 8px;
}

/* --- Bottom Statistics Area --- */
#luxury-rentals-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #f1f1f1;
    padding-top: 50px;
}

#luxury-rentals-about .stat-item {
    text-align: center;
}

#luxury-rentals-about .stat-item .icon-circle {
    background-color: #fdf2f8; 
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
#luxury-rentals-about .stat-item .icon-circle:hover{
    background-color: var(--secondary-color);
}
#luxury-rentals-about .stat-item .icon-circle:hover i {
     color: white;
}

#luxury-rentals-about .amenities-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 40px; /* vertical and horizontal spacing */
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

#luxury-rentals-about .amenities-grid ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    font-size: 16px;
}

#luxury-rentals-about .amenities-grid ul li i {
    color: var(--secondary-color); 
    font-size: 7px;
    min-width: 22px;
    text-align: center;
}

#luxury-rentals-about h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: #111;
}

#luxury-rentals-about .stat-item p {
    color: #888;
    margin: 0;
    font-size: 14px;
}

/* ================= TESTIMONIAL SECTION ================= */
#luxury-testimonials-section {
    background: #d1d9d9; /* Lighter off-white background */
    position: relative;
    text-align: center;
}

/* Heading Area */
#luxury-testimonials-section .guest-badge {
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#luxury-testimonials-section .main-title {
    font-size: 48px;
     /* Use a serif font for the 'luxury' look */
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black-color);
}

#luxury-testimonials-section .desc {
    color: #777;
    max-width: 550px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Rating Summary Box */
#luxury-testimonials-section .rating-summary {
    background:var(--secondary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    border-radius: 12px;
    gap: 25px;
    margin-bottom: 50px;
}

#luxury-testimonials-section .rating-left h3 {
    font-size: 36px;
    margin: 0;
    line-height: 1;
    color: white;
}

#luxury-testimonials-section .rating-left .stars {
    color: #ffc107;
    font-size: 12px;
    margin-top: 5px;
}

#luxury-testimonials-section .rating-divider {
    width: 1px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
}

#luxury-testimonials-section .rating-right {
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
}

/* Testimonial Card */
#luxury-testimonials-section .testimonial-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

#luxury-testimonials-section .review-card {
    background: #f9f7f2; /* Light beige from image */
    border-radius: 18px;
    padding: 50px;
    margin: 10px;
    border: 1px solid #e0dbd1;
    text-align: left;
    outline: none;
}

#luxury-testimonials-section .quote-star {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

#luxury-testimonials-section .quote-star .quote {
    font-size: 35px;
    color: #d1cdc4;
}

#luxury-testimonials-section .quote-star .stars {
    color: #ffc107;
    font-size: 16px;
}

#luxury-testimonials-section .review-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

#luxury-testimonials-section .review-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#luxury-testimonials-section .review-user strong {
    display: block;
    font-size: 16px;
    color: #1a3c4d;
}

#luxury-testimonials-section .review-user span {
    font-size: 14px;
    color: #888;
}

#luxury-testimonials-section .review-date {
    font-size: 14px;
    color: #aaa;
}

/* Navigation Arrows */
#luxury-testimonials-section .review-prev,
#luxury-testimonials-section .review-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s;
}

#luxury-testimonials-section .review-prev { left: -70px; }
#luxury-testimonials-section .review-next { right: -70px; }

#luxury-testimonials-section .review-prev:hover,
#luxury-testimonials-section .review-next:hover {
    background:var(--secondary-color);
}

/* Container for dots */
#luxury-testimonials-section .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 8px; /* Space between dots */
}

/* Hide the default Slick font icon */
#luxury-testimonials-section .slick-dots li button:before {
    display: none;
}

/* Base style for all dots (circles) */
#luxury-testimonials-section .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0;
}

#luxury-testimonials-section .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d1d5db; /* Light grey for inactive dots */
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

/* Active dot style (The Pill) */
#luxury-testimonials-section .slick-dots li.slick-active {
    width: 35px; /* Width of the pill */
}

#luxury-testimonials-section .slick-dots li.slick-active button {
    width: 100%;
    background: var(--secondary-color); /* Dark teal color from your image */
    border-radius: 20px; /* Makes it pill-shaped */
}

.owl-carousel .owl-nav{
display: none;
}

