/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: auto;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #0909099d;
}

html::-webkit-scrollbar-thumb {
    background-color: #090909;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    color: #212121;
    font-family: 'Marcellus Regular';
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
}

a,
a:hover,
a:focus {
    color: #BD945A;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Marcellus Regular';
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.container-fluid {
    padding: 0 40px;
}


/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    overflow: hidden;
    z-index: 99999;
}

.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 4px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #000;
    transition: all .5s;
    z-index: 9;
}

.popup .popup__content .close:hover {
    background-color: #BD945A;
}

.popup .popup__content .close:hover span {
    background-color: #FFF;
}

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #ffffff;
}

.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}

.left {
    background: url(../img/gallery1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.6)
    );
        z-index: -1;
    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: url(../img/stay-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
.title{
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-30{
    margin-bottom: 30px;
}
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-60{
    margin-bottom: 60px;
}
p {
    color: #212121;
    font-family: 'Marcellus Regular';
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 170.588%;
}
.section-title {
    color: #000;
    font-family: 'Marcellus Regular';
    font-size: 114px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
}
.primary-btn {
    font-family: 'Marcellus Regular';
    background: #FFEFD6;
    padding: 19px 29px;
    color: #000;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 0px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    span{
        width: 50px;
        height: 10px;
        display: inline-block;
        margin-left: 15px;
        transform: translateY(-4px);
        transition: 0.6s;
    }
}

.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #000000;
    z-index: -1;
    transition: all .35s;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    top: 0;
}

.primary-btn:hover {
    color: #FFF;
    span{
        filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(24%) hue-rotate(98deg) brightness(105%) contrast(109%);
    }
}

.primary-btn:focus {
    color: #000;
}


.call{
    color: #FFF;
    font-family: 'Marcellus Regular';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: 88.235%;
    display: flex;
    align-items: center;
    gap: 19px;
    &:hover{
        color: #BD945A;
        img{
            filter: brightness(0) saturate(100%) invert(78%) sepia(5%) saturate(5810%) hue-rotate(341deg) brightness(89%) contrast(62%);
        }
    }
}


.form-control {
    font-family: 'Marcellus Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 19px;
    background: #bd945a3d;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    outline: none;
    border: none;
}


form .btn-group {
    justify-content: center;
}

form .primary-btn {
   background: #000;
   color: #FFF;
   padding: 12px 40px;
   border: none;
}

form .primary-btn:hover {
    background: #BD945A;
    color: #FFF;
}

.form-group {
    margin-bottom: 15px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: #000;
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}

.fixed-btn{
    position: fixed;
    text-align: right;
    height: auto;
    right: 0;
    top: 37%;
    z-index: 99;
}
.enq-btn {
    color: #FFF;
    font-size: 20px;
    font-family: 'Marcellus Regular';
    font-style: normal;
    font-weight: normal;
    background: #030303;
    padding: 60px 24px;
    transition: 0.8s;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    overflow: hidden;
    margin-bottom: 26px;
}
.enq-btn:before,
.enq-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: #FFEFD6;
    z-index: -1;
    transition: all .35s;
}
.enq-btn:before {
    opacity: .5;
}
.enq-btn:after {
    transition-delay: .2s;
}
.enq-btn:hover:before,
.enq-btn:hover:after {
    top: 0;
}
.enq-btn:hover{
    color: #000;
}
.wp{
    width: 72px;
    height: 72px;
    display: block;
    &:hover{
        scale: 1.05;
    }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 5.88%, rgba(26, 26, 26, 0.00) 100%);
        z-index: -1;
        transition: 0.6s;
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100%;
}

header.sticky {
    background: #242424;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    &::after{
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.67) 5.88%, rgba(26, 26, 26, 0.00) 100%);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: ease-in-out .4s;
}
.header-btn{
    padding: 19px 37px;
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/************************************* Home Page **************************************/
/*************************************
        Banner 
**************************************/
.banner {
    position: relative;
}
.banner-img{
    transition: transform 5s ease; /* Smooth transition */
}
.banner-item{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 2;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.97;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 22.76%, rgba(78, 78, 78, 0.00) 70.68%);
    }
}
.banner-content{
    width: 65%;
    h1{
        color: #FFF;
        font-size: 124px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        width: 75%;
        color: #FFF;
        font-size: 22px;
        line-height: 166.667%;
    }
    .primary-btn{
        span{
            width: 82px;
        }
    }
}
.banner-slider{
    /* Dots */
    .slick-dots {
        width: 10%;
        position: absolute;
        top: 50%;
        left: 114px;
        transform: translateY(-50%);
        display: flex !important;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 20px;
        z-index: 1;
    }
    .slick-dots li {
        list-style: none;
        margin: 0;
        position: relative;
        width: 50px;
        height: 50px;
        transition: all 0.5s ease;
    }
    .slick-dots li button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.35);
        background: transparent;
        font-size: 18px;
        font-weight: normal;
        color: #FFF;
        z-index: 2;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    .slick-dots li button:before {
        display: none;
    }
    .slick-dots li.slick-active button {
        background: #FFF5E9;
        border-color: #FFF5E9;
        color: #000;
    }
    .slick-arrow{
        width: 15px;
        height: 50px;
        left: 131px;
        top: 36%;
        border: none;
        border-radius: 0;
        z-index: 2;
        &::before{
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: url(../img/slider-arrow1.webp) no-repeat;
            background-position: center;
            background-size: 100%;
            transition: 0.5s;
        }
        &:hover{
            background: transparent;
        }
    }
    .slick-prev{
        &::before{
            transform: translate(-50%, -50%) rotateX(180deg);
        }
    }
    .slick-next{
        top: unset;
        bottom: 32%;
    }
    .slick-active{
        h1{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.5s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .primary-btn{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.7s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.scroll-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    width: 52px;
    height: 102px;
    border: 2px solid #fff;
    border-radius: 30px;
}
/* Arrow line */
.scroll-indicator .arrow {
  position: absolute;
  top: 10px;
  left: 18px;
  width: 12px;
  height: 48px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(-10%);
  }
  50% {
    opacity: 1;
    transform: translateY(30%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.rotate-text{
    position: absolute;
    bottom: 35px;
    right: 234px;
    z-index: 9;
    &:hover{
        .textcircle{
            animation-play-state: running;
        }
    }
    span{
        width: 126px;
        height: 126px;
        background: #fff;
        position: absolute;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s;
    }
}
.textcircle {
    position: relative;
    display: block;
    width: 267px;
    height: 267px;
    animation: rotate 10s linear infinite;
}
.textcircle text {
    font-size: 42px;
    font-family: 'Marcellus Regular';
    letter-spacing: 7%;
    fill: #FFF;
    transition: all 0.5s;
}
.textcircle textPath {
letter-spacing: 17px;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/************************************
    About
************************************/
.about{
    background: #000;
    position: relative;
    z-index: 1;
    .section-title, p{
        color: #FFF;
    }
    &::after{
        position: absolute;
        content: '';
        width: 424px;
        height: 600px;
        right: 0;
        top: 160px;
        background: #242424;
        z-index: -1;
    }
    &::before{
        position: absolute;
        content: '';
        width: 612px;
        height: 722px;
        left: 0;
        bottom: 0;
        background: #242424;
        z-index: -1;
    }
    .row{
        .col-lg-5{
            position: relative;
            &::after{
                position: absolute;
                content: '';
                width: 1px;
                height: 128px;
                right: 36%;
                top: -150%;
                background: #FFF;
                z-index: -1;
            }
        }
        .col-lg-7{
            padding-left: 30px;
        }
    }
    .primary-btn:before, .primary-btn:after {
        background: #BD945A;
    }
}
.about-slider{
    margin-bottom: 100px;
    margin-top: 40px;
    .slick-slide{
        transition: 0.5s;
    }
    .slick-current{
        scale: 1.2;
        position: relative;
        .about-box{
            padding-left: 14px;
        }
        &::before{
            position: absolute;
            content: '';
            width: 80%;
            height: 105%;
            background: #FFF5E9;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: -1;
            transition: 0.5s;
        }
    }
    .slick-slide{
        margin: 0 40px;
    }
    .slick-list{
        margin: 0 -40px;
    }
    .slick-track{
        padding: 90px 0;
    }
}
.about-box{
    img{
        aspect-ratio: 1/1.3;
    }
}
.slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #FFF;
    background: transparent;
    top: unset;
    bottom: -50px;
    left: 0;
    z-index: 2;
    transition: 0.6s;
    &::before {
        position: absolute;
        content: '';
        width: 55%;
        height: 55%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow2.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
}
.slick-arrow:hover{
    background: #BD945A;
}
.slick-prev {
    &::before {
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
.slick-next {
    left: 55px;
}
/***********************************
    Smooth Slider
************************************/
.luxury-smooth{
    background: #FFEFD6;
}
.luxury-smooth.sec-gap{
    padding: 40px 0;
}
.luxury-smooth-box{
    color: #020202;
    font-family: 'Marcellus Regular';
    font-size: 109px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 53px;
    span{
        display: block;
    }
}
/************************************
    Types of Wedding
************************************/
/* ***** counter ***** */
.counter{
    background: #F0EBE2;
    display: flex;
    align-items: center;
    .row{
        .col{
            position: relative;
            &::after {
                position: absolute;
                content: '';
                width: 1px;
                height: 100%;
                background: #B3AFAF;
                right: 0;
                top: -60px;
            }
        }
        .col:last-child::after{
            display: none;
        }
    }
}
.counter-item{
    transition: 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    h3{
        color: #020202;
        font-family: 'Marcellus Regular';
        font-size: 85px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: capitalize;
    }
    p{
        color: #000;
        font-size: 26px;
        line-height: 111.538%;
    }
    &:hover{
        scale: 1.1;
    }
}
/************************************
    Stay
************************************/
.stay{
    background: url(../img/stay-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 0;
    padding-left: 17%;
    .section-title{
        white-space: nowrap;
        position: relative;
        z-index: 1;
    }
}
.stay-point{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    &:hover{
        .stay-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.stay-icon{
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;

}
.stay-point-content{
    width: 76%;
}
.stay-point-content h3{
    color: #000;
    font-family: 'Marcellus Regular';
    font-size: 38px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.316%;
    margin-bottom: 20px;
}
.stay-point-content p{
    font-size: 18px;
    line-height: 161.111%;
    margin-bottom: 0;
}
.stay-image{
    height: 100%;
}
/************************************
    Accommodation
************************************/
.section-sub-title{
    color: #FFF;
    font-family: 'Marcellus Regular';
    font-size: 37px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
.accommodation{
    background: url(../img/accomodation-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    .section-title{
        color: #FFF;
        font-size: 110px;
    }
    p{
        color: #FFF;
    }
    &::after{
        position: absolute;
        content: '';
        width: 670px;
        height: 100%;
        background: #242424;
        left: 170px;
        top: 0;
        z-index: -1;
    }
}
.acco-box-img{
    position: relative;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: linear-gradient(358deg, rgba(0, 0, 0, 0.96) 2.53%, rgba(102, 102, 102, 0.00) 38.19%);
    }
}

.acco-box-title{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    z-index: 1;
    h3{
        color: #FFF;
        font-family: 'Marcellus Regular';
        font-size: 32px;
        font-style: normal;
        font-weight: normal;
        line-height: 107.407%;
    }
}
.right-mg{
    margin-left: auto;
}
/* .acco-content{
    position: relative;
    inset: 0;
    padding: 20px;
    background: #fff5e9e8;
    z-index: 3;
    opacity: 0;
    scale:  1 0.9;
    transition: all 0.3s ease-in-out;
    p{
        color: #000;
        line-height: 147.059%;

    }
    ul{
        list-style: square;
        padding-left : 20px;
        margin-bottom: 10px;
        li{
            color: #000;
            font-family: 'Marcellus Regular';
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 135.5%;
            margin-bottom: 5px;
        }
    }
    .primary-btn{
        background: #000;
        color: #FFF;
        span{
            filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(24%) hue-rotate(98deg) brightness(105%) contrast(109%);
        }
    }
    .primary-btn:before, .primary-btn:after {
        background: #BD945A;
    }
} */
 .acco-content{
    inset: 0;
    padding: 20px;
    background: #fff5e9e8;
    transition: all 0.3s ease-in-out;
    p{
        color: #000;
        line-height: 147.059%;

    }
    ul{
        list-style: square;
        padding-left : 20px;
        margin-bottom: 10px;
        li{
            color: #000;
            font-family: 'Marcellus Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 135.5%;
            margin-bottom: 5px;
        }
    }
    .primary-btn{
        background: #000;
        color: #FFF;
        span{
            filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(24%) hue-rotate(98deg) brightness(105%) contrast(109%);
        }
    }
    .primary-btn:before, .primary-btn:after {
        background: #BD945A;
    }
}
.acco-title{
    color: #000;
    font-family: 'Marcellus Regular';
    font-size: 33px;
    font-style: normal;
    font-weight: normal;
    line-height: 87.879%;
    margin-bottom: 10px;
}
.slick-slide{
    margin: 0 20px;
}
.slick-list{
    margin: 0 -20px;
}
.accommodation-slider-box{
    padding-left: 17%;
}
.accommodation-slider{
    .slick-arrow{
        width: 36px;
        height: 36px;
        top: 45%;
        bottom: unset;
        left: -65px;
        &::before{
            background: url(../img/slider-arrow3.webp) no-repeat;
            background-size: contain;
            background-position: center;
        }
        &:hover,
        &:focus{
            background: #FFF;
            &::before{
                filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(200%) hue-rotate(320deg) brightness(90%) contrast(85%);
            }
        }
    }
    .slick-prev{
        top: 34%;
    }
}
/*************************
    Amenities
 ************************/
 .amenities{
    background: #FFF5E9;
    position: relative;
 }
 .star{
    position: absolute;
    top: 75px;
    right: 300px;
 }
 .vector{
    position: absolute;
    left: 0;
    top: 80px;
    width: 83%;
 }
 .amenities-box{
    position: relative;
 }
  .amenities-box-right{
    position: absolute;
 }
 .amenities-title{
    position: absolute;
    left: 0;
    bottom: 25px;
    color: #000;
    font-family: 'Marcellus Regular';
    font-size: 27px;
    font-style: normal;
    font-weight: normal;
    line-height: 107.407%;
    padding: 17px 50px;
    background: #FFF;
    display: inline-block;
 }
 .amenities-box-bottom{
    margin-top: 720px;
 }
/*************************
    Kanteen
 ************************/
.kanteen{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
    }
    .img-cover {
        margin-bottom: -5px;
    }
}
.kanteen-box{
    width: 45%;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px 60px;
    padding-bottom: 40px;
    background: #ffffffe8;
    box-shadow: 320px 0 0 0 #ffffffe8;
    p{
        font-size: 31px;
        line-height: 138.71%;
        color: #000;
    }
}
/*************************
        Peg
 ************************/
 .peg{
    background: #040303;
    padding-left: 17%;
    position: relative;
    z-index: 1;
    .section-title{
        width: 70%;
        color: #FFF;
        span{
            font-size: 84px;
        }
    }
    p{
        color: #FFF;
    }
    &::after{
        position: absolute;
        content: '';
        width: 950px;
        height: 720px;
        right: 290px;
        top: 185px;
        background: #242424;
        z-index: -1;
    }
 }
 .peg-content{
    padding-right: 50px;
 }
 .peg-img{
    position: relative;
 }
 .peg-small{
    position: absolute;
    bottom: -30px;
    left: -80px;
    border: 9px solid #FFF;
 }
/*************************
        Banquet
 ************************/
 .banquet{
    background: #FFF5E9;
    padding-bottom: 0;
    position: relative;
    &::before{
        position: absolute;
        content: '';
        width: 1px;
        height: 369px;
        background: #000;
        left: 30%;
        top: 20%;
    }
    .col-lg-9{
        margin-left: auto;
    }
    .primary-btn{
        background: #000;
        color: #FFF;
        span{
            filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(24%) hue-rotate(98deg) brightness(105%) contrast(109%);
        }
    }
    .primary-btn:before, .primary-btn:after {
        background: #BD945A;
    }
    .vector{
        top: 50px;
        width: 70%;
    }
 }
 .banquet-hall1{
    position: absolute;
    left: 0;
    top: 245px;
 }
 .banquet-slider-box{
    width: 67%;
    margin-left: auto;
 }
 .banquet-slider{
    .slick-slide{
        margin: 0;
    }
    .slick-list{
        margin: 0;
    }
    .slick-arrow{
        width: 68px;
        height: 76px;
        background: #D9D9D9;
        border: none;
        border-radius: 0;
        left: -69px;
        top: unset;
        bottom: 60px;
        &::before{
            background: url(../img/slider-arrow4.webp) no-repeat;
            background-size: contain;
            background-position: center;
            width: 35%;
            height: 35%;
        }
        &:hover,
        &:focus{
            background: #000;
            border: none;
            &::before{
                filter: brightness(0) saturate(100%) invert(99%) sepia(46%) saturate(5%) hue-rotate(253deg) brightness(119%) contrast(100%);
            }
        }
    }
    .slick-prev {
        bottom: 136px;
        &::before {
            transform: translate(-50%, -50%) rotateX(180deg);
        }
    }
 }
 .banquet-img{
    position: relative;
 }
 .banquet-title{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #FFF;
    padding: 18px 50px;
    h3{
        color: #000;
        font-family: 'Marcellus Regular';
        font-size: 39px;
        font-style: normal;
        font-weight: normal;
        line-height: 156.41%;
    }
 }
/*************************
 Event Setaing
 ************************/
.event-seating{
    background: #040303;
    position: relative;
    .section-title{
        color: #FFF;
        text-align: right;
    }
    .col-lg-9{
        margin-left: auto;
        position: relative;
        z-index: 1;
    }
}
 .event-seat-img{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40%;
 }
.table-wrapper {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: #2A2828;
    color: #000;
    font-family: 'Marcellus Regular';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: 142.857%;
}
thead th {
    padding: 25px 17px;
    background: #FFEFD6;
    border-right: 1px solid #3B3939;
}

tbody td {
    padding: 25px 17px;
    color: #FFF;
    border-right: 1px solid #3B3939;
    border-bottom: 1px solid #3B3939;
}

tbody tr {
    transition: 0.3s ease;
}

tbody tr:hover {
    background: #ffefd613;
}
/* ********************
        Gallery 
 ******************* */
.gallery-img{
    position: relative;
    height: 379px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -5px;
    }
    span{
        position: absolute;
        inset: 0;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(.9);
        opacity: 0;
        transition: all .5s;
        img{
            width: 202px;
            height: 202px;
            z-index: 1;
        }
    }
    &:hover{
        span{
            transform: scale(1);
            opacity: 0.6;
        }
    }
}

/*********************************
    Testimonials
********************************/
.testimonial{
    position: relative;
    background: url(../img/testimonial-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
    .section-title{
        color: #FFF;
    }
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #000;
        opacity: 0.6;
        z-index: -1;
    }
}
.testi-item-content{
    text-align: center;
    padding: 70px 125px;
    position: relative;
    background: transparent;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: rgba(181, 181, 181, 0.43);
        filter: blur(100px);
        z-index: -1;
    }
    p{
        color: #FFF;
        font-size: 23px;
        line-height: 142.609%;
    }
}
.user-name{
    color: #FFFBFB;
    font-family: 'Marcellus Regular';
    font-size: 39px;
    font-style: normal;
    font-weight: normal;
    line-height: 156.41%;
    margin-bottom: 5px;
}
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 25px;
    i {
        width: 36px;
        height: 36px;
        background: url(../img/rating-star.webp) no-repeat;
        background-size: contain;
    }
}
.testi-slider{
    .slick-arrow{
        width: 45px;
        height: 70px;
        border: none;
        border-radius: 0;
        top: 50%;
        &::before {
            transform: translate(-50%, -50%);
            background: url(../img/slider-arrow5.webp) no-repeat;
            background-position: center;
            background-size: 100%;
            transition: 0.5s;
        }
        &:hover{
            background: transparent;
        }
    }
    .slick-prev {
        left: 20px;
        &::before {
            transform: translate(-50%, -50%) rotateY(180deg);
        }
    }
    .slick-next{
        left: unset;
        right: 20px;
    }
    .slick-slide{
        margin: 0;
    }
    .slick-list{
        margin: 0;
    }
}
/***********************************
    Neighbour
************************************/
.neighbour{
    padding-left: 17%;

    .col-lg-10{
        p{
            font-size: 31px;
            line-height: 138.71%;
        }
    }
    h4{
        color: #000;
        font-family: 'Marcellus Regular';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 154.545%;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .col-lg-6{
        p{
            padding-left: 40px;
            font-size: 21px;
            color: #000;
        }
    }
    iframe {
        bottom: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
}
/************************
        Footer
************************/
footer{
    background: url(../img/footer-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    .section-title{
        color: #FFF;
        text-transform: capitalize;
        font-size: 117px;
    }
    h4{
        color: #FFFBFB;
        font-family: 'Marcellus Regular';
        font-size: 35px;
        font-style: normal;
        font-weight: normal;
        line-height: 174.286%;
    }
    p, p a{
        font-size: 21px;
        color: #FFF;
    }
    .star{
        top: 65px;
        left: 50%;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }
}

.footer-img{
    position: absolute;
    left: 0;
    bottom: 225px;
}
.footer-content{
    margin-top: 125px;
    padding: 50px 20px;
    background: #292727;
    box-shadow: 350px 0 0 0 #292727, -50px 0 0 0 #292727;
}
.footer-title{
    color: #FFF;
    font-family: 'Marcellus Regular';
    font-size: 77px;
    font-style: normal;
    font-weight: normal;
    line-height: 151.948%;
}
.footer-social{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-left: 25px;
    a{
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.00);
        border: 1px solid #EFEDED;
        border-radius: 50%;
        transition: 0.5s;
        &:hover{
            background: #BD945A;
            border-color: #BD945A;
        }
    }
}
.footer-title-small{
    font-size: 40px;
    padding-left: 25px;
    margin-top: 60px;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 100px;
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
/* =========================================================
   ULTRA WIDE SCREENS (2K / Large Desktop)
   ========================================================= */
@media (max-width: 1800px) {}

/* =========================================================
   LAPTOP LARGE (1600px)
   ========================================================= */
@media (max-width: 1600px),
(max-width: 1536px) {
    .fixed-btn{
        top: 34%;
    }
    .banner-slider {
        .slick-dots {
            left: 45px;
        }
        .slick-arrow {
            left: 63px;
            top: 35%;
        }
        .slick-next {
            top: unset;
            bottom: 29%;
        }
    }
    .luxury-smooth-box {
        font-size: 88px;
        gap: 60px;
    }
    .amenities-box-bottom {
        margin-top: 610px;
    }
    .section-title{
        font-size: 104px;
    }
    .accommodation {
        .section-title {
            color: #FFF;
            font-size: 100px;
        }
    }
    .peg {
        padding-left: 10%;
        .section-title {
            width: 80%;
        }
    }
    .banquet-slider-box {
        width: 70%;
    }
    .banquet-hall1 {
        width: 25%;
    }
    .banquet {
        &::before {
            left: 27.5%;
        }
    }
    tbody td, thead th{
        padding: 18px 17px;
    }
    .footer-img {
        width: 50%;
    }
    .copyright {
        margin-top: 40px;
        gap: 50px;
    }
    .stay {
        padding-left: 10%;
    }
    .neighbour {
        padding-left: 10%;
    }
}

/* =========================================================
   1920px @125% SCALING (1536px viewport)
   ========================================================= */
@media (max-width: 1536px) {
    .luxury-smooth-box {
        font-size: 84px;
    }
}
/* =========================================================
   LAPTOP STANDARD (1440px / 1366px)
   ========================================================= */
@media (max-width: 1440px),
(max-width: 1366px) {
    .fixed-btn{
        top: 32%;
    }
    .form-control{
        font-size: 15px;
    }
    .title{
        font-size: 34px;
    }
    .right {
        padding: 20px;
    }
    p{
        font-size: 16px;
    }
    .logo{
        width: 270px;
    }
    .call {
        font-size: 26px;
        gap: 12px;
        img{
            width: 28px;
        }
    }
    .primary-btn{
        font-size: 16px;
        padding: 14px 23px;
            span {
            transform: translateY(-2px);
            width: 40px;
        }
    }
    .banner-content {
        h1 {
            font-size: 94px;
        }
        p{
            font-size: 19px;
        }
        .primary-btn{
            span{
                width: 62px;
            }
        }
    }
    .banner-slider {
        .slick-dots li button {
            width: 40px;
            height: 40px;
        }
        .slick-dots{
            gap: 10px;
        }
        .slick-arrow {
            left: 57px;
            top: 32%;
        }
        .slick-next {
            top: unset;
            bottom: 27%;
        }
    }
    .textcircle {
        width: 205px;
        height: 205px;
    }
    .rotate-text {
        span {
            width: 96px;
            height: 96px;
            padding: 20px;
            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }
    }
    .scroll-indicator {
        width: 42px;
        height: 82px;
    }
    .scroll-indicator .arrow {
        width: 7px;
        height: 30px;
        left: 16px;
    }
    .section-title {
        font-size: 84px;
    }
    .about {
        &::before {
            width: 512px;
            height: 622px;
        }
        .row {
            & .col-lg-5 {
                &::after {
                    top: -210%;
                }
            }
        }
    }
    .luxury-smooth-box {
        font-size: 73px;
        gap: 60px;
    }
    .counter-item {
        h3 {
            font-size: 75px;
        }
        p {
            font-size: 22px;
        }
    }
    .stay {
        padding-left: 9%;
    }
    .stay-icon {
        width: 140px;
        height: 140px;
        padding: 30px;
    }
    .stay-point-content h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .accommodation {
        .section-title {
            font-size: 90px;
        }
    }
    .section-sub-title {
        font-size: 30px;
    }
    .star {
        top: 68px;
        width: 68px;
    }
    .amenities-box-bottom {
        margin-top: 525px;
    }
    .amenities-title {
        font-size: 21px;
    }
    .kanteen-box {
        p {
            font-size: 23px;
        }
    }
    .peg {
        padding-left: 9%;
        .section-title {
            width: 60%;
            span {
                font-size: 54px;
            }
        }
        &::after {
            width: 850px;
            height: 550px;
            right: 125px;
            top: 175px;
        }
    }
    .peg-content{
        img{
            width: 80%;
        }
    }
    .peg-small {
        width: 40%;
    }
    .banquet {
        .vector {
            width: 65%;
        }
        &::before {
            height: 269px;
            top: 23%;
        }
    }
    .banquet-hall1 {
        top: 215px;
    }
    .banquet-title {
        h3 {
            font-size: 27px;
        }
    }
    .banquet-slider {
        .slick-arrow {
            bottom: 40px;
        }
        .slick-prev {
            bottom: 115px;
        }
    }
    table {
        font-size: 17px;
    }
    tbody td, thead th {
        padding: 17px 13px;
    }
    .gallery-img {
        & span {
            img {
                width: 150px;
                height: 150px;
                z-index: 1;
            }
        }
    }
    .gallery-img {
        height: 325px;
    }
    .testi-item-content {
        p {
            font-size: 19px;
        }
    }
    .user-name {
        font-size: 29px;
    }
    .rating {
        i {
            width: 28px;
            height: 28px;
        }
    }
    .neighbour {
        & .col-lg-10 {
            p {
                font-size: 26px;
            }
        }
        h4 {
            font-size: 18px;
            gap: 10px;
            img{
                width: 16px;
            }
        }
        .col-lg-6 {
            p {
                font-size: 17px;
                padding-left: 25px;
            }
        }
    }
    footer {
        .section-title {
            font-size: 100px;
        }
        h4 {
            font-size: 29px;
        }
        p, p a {
            font-size: 17px;
        }
    }
    .footer-title {
        font-size: 66px;
    }
    .footer-title-small {
        font-size: 30px;
        margin-top: 40px;
    }
    .footer-social {
        a {
            width: 54px;
            height: 54px;
            padding: 14px;
        }
    }
    .enq-btn {
        font-size: 17px;
        padding: 50px 18px;
    }
    .testi-item-content{
        padding: 60px 100px;
    }
    .wp {
        width: 62px;
        height: 62px;
    }
    .about-slider {
        .slick-slide{
            margin: 0 30px;
        }
        .slick-list {
            margin: 0 -30px;
        }
    }
}
/* =========================================================
   1920px @150% SCALING (1280px viewport)
   ========================================================= */
@media (max-width: 1280px) {
    .banner-slider {
        .slick-dots {
            left: 20px;
        }
        .slick-arrow {
            left: 33px;
        }
    }
    .luxury-smooth-box {
        font-size: 66px;
    }
    .amenities-box-bottom {
        margin-top: 494px;
    }
    .banquet {
        .vector {
            top: 86px;
        }
    }
    .event-seat-img {
        width: 45%;
    }
}
/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */
@media (max-width: 1199.98px){

}
/* =========================================================
   MOBILE LARGE
   ========================================================= */
@media (max-width: 991.98px) {
    .about {
        &::after {
            display: none;
        }
    }
    .about {
        & .row {
            & .col-lg-5 {
                &::after {
                    display: none;
                }
            }
        }
    }
    .popup .popup__content {
        width: 60%;
    }
    .left {
        display: flex;
        align-items: center;
        justify-content: center;
        &::after {
            background: linear-gradient(to top, rgb(0 0 0 / 32%), rgb(0 0 0 / 80%));
        }
    }
    .flex-box{
        gap: 20px;
    }
    .banner-item{
        height: 700px;
    }
    .banner-content {
        width: 70%;
        h1{
            font-size: 74px;
        }
    }
    .rotate-text {
        bottom: 0px;
        right: 70px;
    }
    .scroll-indicator {
        bottom: 15px;
    }
    .banner-slider{
        .slick-dots{
            width: auto;
            display: block !important;
            top: unset;
            bottom: 30px;
            left: 115px;
        }
        .slick-arrow {
            left: 57px;
            top: unset;
            bottom: 57px;
            transform: rotate(-90deg);
        }
        .slick-next {
            left: 294px;
        }
    }
    .about-slider {
        margin-bottom: 50px;
        margin-top: 0px;
        .slick-track {
            padding: 40px 0;
        }
        .slick-slide{
            margin: 0 20px;
        }
        .slick-list {
            margin: 0 -20px;
        }
        .slick-current {
            .about-box {
                padding-left: 9px;
            }
        }
    }
    .section-title {
        font-size: 60px;
    }
    .about {
        & .row {
            .col-lg-7 {
                padding-left: 15px;
            }
        }
    }
    .luxury-smooth.sec-gap {
        padding: 30px 0;
    }
    .luxury-smooth-box {
        font-size: 60px;
        gap: 80px;
    }
    .counter-item {
        h3 {
            font-size: 65px;
        }
        p {
            font-size: 20px;
        }
    }
    .counter {
        & .row {
            & .col {
                &::after {
                    height: 80%;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
            .col:nth-child(2)::after {
                display: none;
            }
        }
    }
    .stay{
        padding-inline: 25px !important;
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .stay-icon {
        width: 130px;
        height: 130px;
    }
    .accommodation {
        .section-title {
            font-size: 55px;
            margin-bottom: 10px;
        }
        &::after {
            width: 360px;
            height: 100%;
            left: 36px;
        }
    }
    .section-sub-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .mb-60 {
        margin-bottom: 30px;
    }
    .acco-box-title {
        h3 {
            font-size: 24px;
        }
    }
    .star {
        top: 35px;
        width: 50px;
        right: 30px;
    }
    .mb-40{
        margin-bottom: 20px;
    }
    .amenities-box-bottom {
        margin-top: 296px;
    }
    .vector {
        top: 175px;
    }
    .amenities-title {
        padding: 12px 30px;
    }
    .kanteen{
        height: 450px;
    }
    .kanteen-box {
        width: 65%;
    }
    .peg-img {
        padding-left: 50px;
    }
    .peg-small {
        left: 0;
    }
    .peg{
        padding-inline: 25px !important;
        .row{
            .col-lg-6:last-child{
                order: -1;
            }
        }
        &::after {
            width: 560px;
            right: 0;
            top: 365px;
            height: 390px;
        }
        .section-title {
            width: 100%;
            margin-bottom: 10px;
        }
    }
    .sec-gap {
        padding: 30px 0;
    }
    .banquet-hall1 {
        display: none;
    }
    .banquet-slider-box{
        width: 87%;
    }
    .banquet-title {
        padding: 10px 30px;
    }
    .event-seat-img{
        display: none;
    }
    .banquet {
        .vector {
            display: none;
        }
        &::before {
            display: none;
        }
    }
    .banquet-slider {
        .slick-arrow {
            width: 58px;
            height: 66px;
            left: -60px;
            bottom: 30px;
        }
        .slick-prev{
            bottom: 90px;
        }
    }
    tbody td, thead th {
        padding: 12px 8px;
    }
    .event-seating {
        .section-title {
            text-align: left;
        }
    }
    .gallery-img {
        & span {
            img {
                width: 110px;
                height: 110px;
            }
        }
    }
    .gallery-img {
        height: 220px;
    }
    .testi-item-content {
        p {
            font-size: 17px;
        }
    }
    .rating {
        i {
            width: 24px;
            height: 24px;
        }
    }
    .neighbour {
        padding-inline: 25px !important;
    }
    .neighbour{
        iframe{
            height: 400px;
        }
    }
    footer {
        .star {
            top: 30px;
            left: unset;
            right: 30px;
        }
        .section-title {
            font-size: 70px;
        }
        h4 {
            font-size: 23px;
        }
    }
    .footer-content {
        margin-top: 40px;
        padding: 30px 20px;
    }
    .footer-title {
        font-size: 44px;
    }
    .footer-img {
        display: none;
    }
    .footer-title-small {
        font-size: 24px;
        margin-top: 20px;
    }
    .footer-social {
        a {
            width: 46px;
            height: 46px;
            padding: 12px;
        }
    }
    .copyright{
        margin-top: 10px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
        .logo{
            margin-bottom: -20px;
        }
    }
    .enq-btn {
        padding: 30px 14px;
    }
    .wp {
        width: 52px;
        height: 52px;
    }
    .mb-50 {
        margin-bottom: 30px;
    }
}
/* =========================================================
   MOBILE SMALL
   ========================================================= */
@media (max-width: 575.98px) {
    .fixed-btn {
        top: 36%;
    }
    .popup .popup__content {
        width: 90%;
    }
    .title {
        font-size: 26px;
    }
    .form-control{
        padding: 13px 12px;
    }
    p{
        font-size: 14px;
        line-height: 145.588%;
    }
    .call {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #BD945A;
        padding: 10px;
        span{
            display: none;
        }
        img {
            width: 20px;
        }
    }
    .logo {
        width: 160px;
    }
    .primary-btn {
        font-size: 13px;
        padding: 9px 14px;
        span {
            width: 30px;
            margin-left: 5px;
        }
    }
    .banner-item{
        height: 400px;
    }
    .banner-content{
        width: 100%;
        h1{
            font-size: 44px;
        }
        p{
            font-size: 14px;
            line-height: 145.667%;
            width: 100%;
        }
        .primary-btn{
            span{
                width: 40px;
                transform: translateY(2px);
            }
        }
    }
    .rotate-text {
        right: 0;
        span {
            width: 60px;
            height: 60px;
            padding: 12px;
        }
    }
    .textcircle {
        width: 130px;
        height: 130px;
    }
    .banner-slider {
        .slick-dots li button {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }
        .slick-dots {
            bottom: 5px;
            left: 15px;
        }
        .slick-dots li {
            width: 30px;
            height: 30px;
            margin-inline: 5px;
        }
    }
    .scroll-indicator {
        width: 32px;
        height: 52px;
    }
    .scroll-indicator .arrow {
        top: 4px;
        left: 11px;
        width: 6px;
        height: 20px;
    }
    .slick-arrow {
        width: 33px;
        height: 33px;
        border-width: 1px;
        left: 38%;
    }
    .slick-next{
        left: 50%;
    }
    .section-title {
        font-size: 34px;
    }
    .about {
        &::after {
            display: none;
        }
        &::before {
            width: 100%;
            height: 300px;
        }
    }
    .about {
        & .row {
            & .col-lg-5 {
                &::after {
                    display: none;
                }
            }
        }
    }
    .luxury-smooth-box {
        font-size: 30px;
        gap: 30px;
        span{
            width: 50px;
        }
    }
    .luxury-smooth{
        slick-slide, .slick-list{
            margin: 0;
        }
    }
    .counter-item {
        h3 {
            font-size: 36px;
        }
        p{
            font-size: 14px;
        }
    }
    .luxury-smooth.sec-gap {
        padding: 15px 0;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .stay {
        padding-inline: 10px !important;
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    .stay-point {
        flex-direction: column;
        text-align: center;
        gap: 13px;
        background: #FFEFD6;
        padding: 13px;
        margin-bottom: 20px;
    }
    .stay-point-content {
        width: 100%;
    }
    .stay-icon {
        width: 100px;
        height: 100px;
        padding: 25px;
    }
    .stay-point-content h3 {
        font-size: 23px;
    }
    .stay-point-content p {
        font-size: 14px;
    }
    .accommodation {
        .section-title {
            font-size: 28px;
            margin-bottom: 5px;
        }
    }
    .section-sub-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .acco-box-title {
        padding: 13px;
        h3 {
            font-size: 20px;
        }
    }
    .acco-content {
        padding: 10px;
        ul {
            li {
                font-size: 14px;
            }
        }
    }
     .accommodation {
        &::after {
            width: 40%;
            left: unset;
            right: 0;
        }
    }
    .star {
        display: none;
    }
    .amenities-title {
        font-size: 17px;
        padding: 9px 15px;
    }
    .mb-40 {
        margin-bottom: 10px;
    }
    .amenities-box-right {
        position: relative;
    }
    .amenities-box-bottom {
        margin-top: 0;
    }
    .kanteen-box {
        width: 100%;
        padding: 20px;
        p {
            font-size: 18px;
        }
    }
    .peg {
        padding-inline: 10px !important;
    }
    .peg-img {
        padding-left: 20px;
    }
    .peg-small{
        border-width: 5px;
    }
    .peg {
        & .section-title {
            span {
                font-size: 20px;
            }
        }
        &::after {
            top: 355px;
        }
    }
    .peg-content {
        padding-right: 0;
    }
    .banquet-title {
        padding: 5px 20px;
        h3 {
            font-size: 16px;
        }
    }
    .banquet {
        padding-bottom: 50px;
    }
    .banquet-slider-box {
        width: 100%;
    }
    .banquet-slider {
        .slick-arrow {
            width: 38px;
            height: 46px;
            transform: rotate(-90deg);
            left: 39%;
            bottom: -48px;
        }
        .slick-next {
            left: 54%;
        }
    }
    table {
        font-size: 14px;
    }
    tbody td, thead th {
        padding: 12px 8px;
        white-space: nowrap;
    }
    .gallery-img {
        height: 295px;
    }
    .mb-60 {
        margin-bottom: 15px;
    }
    .testi-item-content {
        padding: 20px 10px;
        p {
            font-size: 14px;
        }
    }
    .user-name{
        font-size: 22px;
    }
    .rating{
        i{
            width: 18px;
            height: 18px;
        }
    }
    .testi-slider{
        .slick-arrow{
            top: 71%;
            width: 30px;
            height: 40px;
        }
    }
    .neighbour {
        & .col-lg-10 {
            p {
                font-size: 15px;
            }
        }
    }
    .mb-30 {
        margin-bottom: 10px;
    }
    .neighbour {
        padding-inline: 10px !important;
        h4 {
            font-size: 15px;
            gap: 10px;
            img {
                width: 11px;
            }
        }
    }
        .neighbour {
        & .col-lg-6 {
            p {
                font-size: 14px;
                padding-left: 25px;
            }
        }
                iframe {
            height: 250px;
        }
    }
    footer {
        text-align: center;
        .section-title {
            font-size: 30px;
        }
        h4 {
            font-size: 16px;
        }
        p, p a {
            font-size: 14px;
        }
    }
    .footer-title {
        font-size: 26px;
    }
    .footer-content {
        margin-top: 10px;
        padding: 10px;
        box-shadow: unset;
    }
    .footer-title-small {
        font-size: 20px;
        margin-top: 10px;
    }
    .footer-social {
        justify-content: center;
        a {
            width: 36px;
            height: 36px;
            padding: 9px;
        }
    }
    .copyright{
        gap: 0;
        .logo{
            margin-bottom: -5px;
        }
    }
    .enq-btn {
        font-size: 14px;
        padding: 20px 10px;
    }
    .wp {
        width: 42px;
        height: 42px;
    }
    .neighbour {
        h4 {
            line-height: 120.545%;
        }
    }
    .banner-item {
        &::after {
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 22.76%, rgb(78 78 78 / 69%) 70.68%);
        }
    }
}
