/**************************************
                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: unset;
}
html::-webkit-scrollbar {
    width: 6px;
    background-color: #C89C65;
}

html::-webkit-scrollbar-thumb {
    background-color: #182841;
    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;
}

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

}

body {
    color: #3A3939;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 177.778%;
    background: #F1F1F1;
}

a,
a:hover,
a:focus {
    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,
h5,
h6 {
    font-family: 'PlayfairDisplay 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 70px;
}


/* Popup */
.overlay {
  position: fixed;
  inset: 0;
    background: #04153869;
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
 display: none;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#overlay.open {
  display: flex;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #ffffff;
  width: 100%;
  max-width: 30%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}
.overlay.open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-bar {
  height: 4px;
  background: linear-gradient(90deg, #c89c65 0%, #b1a697 70%, #f1f1f1 100%);
}
.modal-head {
  background: #182841;
  padding: 16px 30px 16px;
  position: relative;
  p{
    color: #FFF;
  }
}
.close-btn {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.close-btn:hover { background: rgba(201,168,76,0.18); border-color: #e7eeff; }
.close-btn svg { width: 11px; height: 11px; stroke: #9aa3b5; stroke-width: 2.5; }

.modal-body { padding: 20px 30px; }
.field input.err, .field select.err { border-color: #d94f4f; }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-wrap::after {
  content: '';
  position: absolute; right: 13px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-top-color: #8a93a6;
  pointer-events: none;
}
textarea {font-family: 'Gabarito Regular'; }
.popup-title{
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 105.263%;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}
.modal-body{
    .primary-btn{
        width: 100%;
        background: #182841;
        border-radius: 4px;
        &:hover{
            background: #C89C65;
        }
    }
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 80px 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;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}
p {
    color: #3A3939;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 177.778%;
}
.title {
    color: #FFF;
    font-family: 'PlayfairDisplay Regular';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: 167.647%;
    text-transform: uppercase;
}
.section-title {
    color: #000;
    font-family: 'PlayfairDisplay Regular';
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 114%;
    text-transform: capitalize;
}
.section-sub-title{
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 105.263%;
    letter-spacing: 5.13px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    span{
        display: block;
        width: 128px;
        height: 1px;
        background: #000;
    }
}
.card-title{
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 112.5%;
    text-transform: capitalize;
}
.btn-group{
    display: flex;
    align-items: center;
    justify-content: start;
}
.primary-btn {
    border-radius: 60px;
    background: #C89C65;
    padding: 18px 30px;
    display: inline-block;
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 20px;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn:after {
  left: 100%;
  transform: rotate(180deg);
  background: #182841;
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #fff;
  img{
    transform: translateX(10px);
  }
}
.form-control {
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.00);
    background: #F1F1F1;
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 155.556%;
    padding: 13px 16px;
    width: 100%;
    outline: none;
}
.form-control::placeholder {
    color: #3A3939;
}
.form-control:focus {
    border-color: #C89C65;
}
input.primary-btn{
    border: none;
    text-transform: capitalize;
    padding: 18px 50px;
    cursor: pointer;
    &:hover{
        background: #182841;
    }
}
textarea{
    font-family: 'Gabarito Regular';
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@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;
}

@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}
::view-transition-group(*) {
    animation-duration: 2s;
}
/*******************************
	Menu
*******************************/
.flex-box {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.5s;
}
.logo{
    transition: 0.5s;
    img{
        transition: 0.5s;
    }
}
header.sticky {
    position: fixed;
    top: 0;
    padding-block: 13px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 3px solid #C89C65;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.35);
    animation: slideDown 0.45s ease-out;
}

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

    to {
        transform: translateY(0);
    }
}
.call-btn,
.call-btn a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
    transition: 0.5s;
    img{
        margin-right: 10px;
    }
    span{
        display: flex;
        gap: 4px;
    }
}
.call-btn a:hover{
    color: #C89C65;
}
.main-menu {
    will-change: backdrop-filter;
    display: flex;
    align-items: center;
    gap: 40px;
    .flex-box{
        .primary-btn{
            padding: 16px 30px;
        }
    }
}

header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    width: 100%;

    
}
nav {
    position: relative;
    margin: 0 auto
}

#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 80px;
}

#menu>.main-menu>ul>li {
    float: left;
    margin-inline: 15px;
}
#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    padding: 12px 0;
    display: inline-block;
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    border-radius: 8px;
}
  
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 115%;
}
.hamburger{
    display: none;
}

#menu > .main-menu > ul > li > a {
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 10%;
        height: 1px;
        background: #BBBBBB;
        scale: 0 0;
        transform-origin: left;
        transition: all .5s;
    }
}
#menu > .main-menu > ul > li:hover > a, #menu .main-menu ul li.current-menu-item a {
    &::after {
        scale: 1 1;
    }
}

#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
    background: #e9cba400 !important;
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


#menu>.main-menu>ul>li.has-sub>a::before {
    top: 17px;
    right: -14px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    transform: rotate(225deg);
}

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    padding-inline: 0;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    backdrop-filter: blur(30px);
    background: #000000c2;
    -webkit-backdrop-filter: blur(30px);
    transition: all .25s ease
}


#menu li:hover>ul {
    left: auto
}

#menu li:hover>ul>li {
    height: 39px;
    display: flex;
    align-items: center;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu ul ul li a {
    font-family: 'Gabarito Regular';
    font-style: normal;
    font-weight: normal;
    width: 100% !important;
    display: block;
    padding: 10px 20px;
    width: auto;
    font-size: 18px;
    line-height: normal;
    text-decoration: none;
    color: #FFF;
    font-weight: normal;
    white-space: nowrap;
}

#menu .main-menu ul ul li:last-child>a,
#menu .main-menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    background-color: #C89C65;
    color: #FFF;
}
#menu .main-menu ul ul li .has-sub> a:after {
    position: absolute;
    top: 13px;
    right: 11px;
    width: 8px;
    height: 8px;
    display: block;
    content: '';
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(-45deg);
    transition: all .4s;
}


#menu .main-menu ul ul li.has-sub:hover,
#menu .main-menu ul li.has-sub ul li.has-sub ul li:hover {
    background: #363636
}

#menu ul ul ul li.active a {
    border-left: 1px solid #333
}

#menu>.main-menu>ul>li.has-sub>ul>li.active>a,
#menu .main-menu>ul ul>li.has-sub>ul>li.active>a {
    border-top: 1px solid #333;
}


#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}

@media screen and (max-width:992px) {
    #menu .main-menu ul li.current-menu-item ul li a {
        color: #ffffff;
    }
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        z-index: 9;
        width: 50%;
        position: fixed;
        height: 100dvh !important;
        background: #000000f5;
        transform: translateX(100%);
        transition: all .4s;
        top: 0;
        right: 0;
        margin-top: 0;
        border-left: 5px solid #c89c65;
    }
    .main-menu {
        align-items: start;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;
    }
    #menu .main-menu ul li {
        width: 100%;
        border-bottom: 1px solid #ffffffba;
    }

    #menu .main-menu ul li:hover {
        background: #363636
    }

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }
    #menu .main-menu ul li a{
        width: 100%;
        border-bottom: 0;
        color: #000;
    }
    #menu .main-menu ul ul li a{
        color: #000;
    }
    #menu .main-menu ul ul li{
        background: unset;
    }
    #menu>.main-menu>ul>li {
        float: none
    }
    #menu ul ul li a {
        padding-left: 25px
    }

    #menu ul ul li:hover {
        background: #45D8A3;
    }

    #menu ul ul ul li a {
        padding-left: 35px
    }

    #menu ul ul li a {
        color: #ddd;
        background: none
    }

    #menu ul ul li:hover>a,
    #menu ul ul li.active>a {
        color: #000;
    }

    #menu .main-menu ul ul {
        box-shadow: none;
        background: #dddddd1a;
    }

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 0;
        width: 100%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }
    #menu .main-menu ul{
        border-radius: 15px;
        margin-top: 100px;
        background: transparent;
        border: 0;
    }

    #menu .main-menu ul ul.open {
        transform: unset;
    }

    #menu>ul>li.has-sub>a:after,
    #menu>ul>li.has-sub>a:before,
    #menu ul ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a:before {
        display: none
    }

    #menu #head-mobile {
        display: block;
        padding: 23px;
        color: #ddd;
        font-size: 12px;
        font-weight: 700
    }

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 12399994;
        display: block;
        background: #FFF;
    }
    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #182841;
        border-bottom: 2px solid #182841;
        content: '';
    }


    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 12px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #182841;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 23px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #182841;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 23px;
        background: #182841;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 20px;
        top: 0;
        display: block;
        border-left: 0;
        height: 43px;
        width: 60px;
        cursor: pointer;
        background: #dddddd1a;
        border-radius: 6px;
    }

    .flex-box{
        width: 100%;
        justify-content: center;
    }
    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

    #menu ul ul .submenu-button {
        height: 34px;
        width: 40px
    }

    #menu .submenu-button:after {
        position: absolute;
        top: 14px;
        right: 24px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }
    #menu>.main-menu>ul>li.has-sub>a::before{
            display: none;
        }

    #menu ul ul .submenu-button:after {
        top: 11px;
        right: 19px;
    }

    #menu ul ul .submenu-button.submenu-opened:after {
        top: 16px;
    }

    #menu .submenu-button.submenu-opened:after {
        transform: rotate(-135deg);
        top: 20px;
    }


    #menu ul ul .submenu-button:before {
        top: 12px;
        right: 16px
    }

    #menu .submenu-button.submenu-opened:before {
        display: none
    }

    #menu ul ul ul li.active a {
        border-left: none
    }

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #FFF;
        scale: unset;
        background: #c89c65;
    }
}

.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}


.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li:hover>a,
.menu-white #menu .main-menu ul li.current-menu-item a {
    color: #95C12B;
}

.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}

.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #95C12B;
    border-left-color: #95C12B;
}
.menu-white .serch-box input {
    border: 1px solid #D6D6D6;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7.5px);
}
.fixed-btn {
    position: fixed;
    top: 40%;
    right: 50px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
    &:hover{
        transform: translateX(-10px);
    }
}
.fixed-contact{
    position: fixed;
    right: 25px;
    bottom: 20%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fixed-call-btn{
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C89C65;
    border-radius: 50%;
    img{
        animation: ring 1s infinite ease-in-out;
    }
    &:hover{
        transform: translateX(-5px);
    }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
.wp{
    width: 61px;
    height: 61px;
    &:hover{
        transform: translateX(-5px);
    }
}
.enq-btn {
    color: #FFF;
    font-family: 'Helvetica Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    background: #50AEB5;
    padding: 25px 12px;
    transform-origin: right center;
    transition: 0.8s;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border: 1px solid #FFF;
}
/******************************
            Banner  
*******************************/
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -8px;
}
.banner {
    position: relative;
    .primary-btn{
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #182841;
            img{
                filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(2379%) hue-rotate(177deg) brightness(96%) contrast(92%);
            }
        }
    }
}
.banner-slider{
    position: relative;
    overflow: clip;
    z-index: 1;
    .slick-dots{
        bottom: 50px;
        text-align: center;
        padding-left: 255px;
    }
    .slick-dots{
        .slick-active{
            outline: 1px solid #FFF;
            background: transparent;
            width: 9px;
            height: 9px;
        }
        li{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d9d9d992;
            transition: 0.5s;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-active{
        .section-sub-title{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        h1{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 1.0s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .primary-btn{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 1.2s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner-item{
    position: relative;
    z-index: 1;
    &::before{
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.91;
        background: linear-gradient(188deg, rgba(0, 0, 0, 0.73) 7.95%, rgba(102, 102, 102, 0.00) 34.4%);
        z-index: 0;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.75;
        background: linear-gradient(90deg, #000 36.8%, rgba(102, 102, 102, 0.00) 58.19%);
        filter: blur(150px);
        z-index: 0;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}
.banner-content{
    width: 65%;
    padding-top: 90px;
    .section-sub-title{
        color: #FFF;
        margin-bottom: 18px;
        span{
            background: #FFF;
        }
    }
    h1{
        color: #FFF;
        font-family: 'PlayfairDisplay Regular';
        font-size: 136px;
        font-style: normal;
        font-weight: normal;
        line-height: 85.294%;
        text-transform: uppercase;
        margin-bottom: 30px;
    }
    p{
        width: 80%;
        font-size: 24px;
        color: #FFF;
        line-height: 154.167%;
    }
}
/* ── Slider Controls ── */
.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    max-width: 710px;
    margin-left: auto;
    padding: 34px 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #FFF;
}

/* Arrow buttons */
.arrow-group {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #00000054;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.4s;
    color: #fff;
}
.arrow-btn:hover {
    border-color: #000;
}
.arrow-btn svg {
    width: 25px;
    height: 25px;
    stroke: #000;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Progress bar */
.progress-bar-wrap {
    flex: 1;
    position: relative;
    height: 7px;
    display: flex;
    align-items: center;
}
/* thin gray track */
.progress-bar-wrap::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    background: #000;
}

/* thick gold fill */
.progress-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 7px;
    background: #C89C65;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}
/**********************
    About
**********************/
.about{
    position: relative;
}
.about-img{
    position: absolute;
    left: 0;
    top: 0;
}
.about-content{
    padding-left: 50px;
    margin-bottom: 140px;
}
.line-vector{
    position: absolute;
    left: 0;
    top: 80px;
    z-index: -1;
}
/* *************************************************
    What We Offer
************************************************ */
.what-we-offer{
    position: relative;
    padding-bottom: 225px;
}
.what-we-offer-house{
    position: absolute;
    right: 0;
    top: -150px;
    z-index: -1;
    mix-blend-mode: multiply;
}
.what-we-offer-card{
    position: relative;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: 0.5s;
    p{
        line-height: 155.556%;
    }
    &::after{
        content: '';
        position: absolute;
        border-radius: 20px;
        inset: 0;
        background: linear-gradient(0deg, #EDEDED -3.07%, #FFF0DC 108.19%);
        transition: 0.5s;
        z-index: -1;
    }
    &:hover{
        background: #182841;
        &::after{
            opacity: 0;
        }
        .what-we-offer-card-head{
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
            }
        }
        p, .card-title{
            color: #FFF;
        }
    }

}
.what-we-offer-card-head{
    display: flex;
    align-items: center;
    gap: 25px;
    padding-block: 30px;
    border-bottom: 1px solid #B7B0B0;
}
.what-we-offer-card-img{
    border-radius: 20px;
}
.bliss-text{
    display: block;
    color: #cdcaca6b;
    font-family: 'Anton';
    font-size: 389px;
    font-style: normal;
    font-weight: 400;
    line-height: 102.828%;
    text-transform: uppercase;
    text-align: center;
}
.blissvilla-house{
    position: absolute;
    bottom: 0;
    right: 150px;
}
/* *************************************************
            Video
************************************************ */
.video-box{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    .video-box-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -7px;
    }
    .play-btn{
        width: 127px;
        height: 127px;
        background: #B4B1B1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        transition: 0.5s;
        z-index: 1;
        img{
            margin-left: 10px;
        }
    }
    &::after{
        content: '';
        position: absolute;
        opacity: 0.91;
        background: linear-gradient(90deg, #000 11.35%, rgba(102, 102, 102, 0.00) 65.94%);
        filter: blur(150px);
        inset: 0;
    }
    &:hover{
        .play-btn{
            background: #C89C65;
        }
    }
}
.video-box-content{
    width: 40%;
    position: absolute;
    left: 0;
    bottom: 190px;
    z-index: 1;
    .section-title, p{
        color: #fff;
    }
}
.l-vdo{
    .container{
        position: relative;
    }
}
/******************************
    partnership-process
*******************************/
.partnership-process{
    .section-sub-title{
        justify-content: center;
    }
    .row{
        position: relative;
        &::after{
            content: '';
            position: absolute;
            background: #8A8A8A;
            width: 100%;
            height: 1px;
            top: 50px;
            left: 0;
            z-index: -1;
        }
        .col:nth-child(2n){
            .pp-vline {
                height: 136px;
            }
        }
    }
}
.pp-step {
    position: relative;
    text-align: center;
    p{
        line-height: 155.556%;
    }
    &:hover{
        .pp-badge{
            border-color: #8A8A8A;
            background: #C89C65;
        }
        .pp-circle{
            scale: 1.05;
            img{
                transform: rotate(-20deg);
                filter: brightness(0) saturate(100%) invert(11%) sepia(37%) saturate(1445%) hue-rotate(184deg) brightness(89%) contrast(90%);
            }
        }
    }
}
.pp-badge {
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 112% ;
    border-radius: 60px;
    border: 1px solid #8A8A8A;
    background: #FFF;
    display: inline-flex;
    justify-content: center;
    padding: 12px 45px;
    transition: 0.5s;
}
.pp-vline {
    width: 1px;
    height: 86px;
    background: #8A8A8A;
    margin-inline: auto;
    margin-bottom: -2px;
}
.pp-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    margin-inline: auto;
    margin-bottom: 18px;
}
.pp-circle {
    width: 148px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #182841;
    border-radius: 50%;
    margin-inline: auto;
    transition: 0.4s;
}
.pp-name {
    color: #000;
    text-align: center;
    font-family: 'Gabarito Regular';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: 95.238%;
    text-transform: capitalize;
}
/******************************
    Our Projects
*******************************/
.our-projects{
    position: relative;
    background: #182841;
    border-radius: 60px;
    .sec-head{
        .section-title, .section-sub-title, p{
            color: #FFF;
            span{
                background: #FFF;
            }
        }
    }
    .line-vector{
        top: 370px;
        z-index: 0;
    }
    .primary-btn{
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #182841;
            img{
                filter: brightness(0) saturate(100%) invert(12%) sepia(15%) saturate(2379%) hue-rotate(177deg) brightness(96%) contrast(92%);
            }
        }
    }
}
.ongoing{
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 90.909%;
    padding: 19px 39px;
    background: #C89C65;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.our-projects-card{
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    &::after{
        content: '';
        position: absolute;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(58, 57, 57, 0.00) 45.69%, #000 100%);
        inset: 0;
    }
    &:hover{
        .img-cover{
            scale: 1.1;
        }
        .op-arrow-btn{
            img{
                transform: rotate(45deg);
            }
        }
    }
}
.our-projects-card-content{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 50px;
    z-index: 1;
    h3{
        color: #FFF;
        font-family: 'Gabarito Regular';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    p{
        display: flex;
        align-items: center;
        gap: 12px;
        color: #FFF;
        font-size: 20px;
        line-height: 150%;
        span{
            display: inline-block;
            background: #ffffff00;
        }
    }
}
.op-arrow-btn{
    position: absolute;
    right: 50px;
    bottom: 35px;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #C89C65;
    z-index: 1;
}
/******************************
    Team
*******************************/
.team{
    .bliss-text{
        font-size: 355px;
        margin-bottom: -160px;
    }
}
.team-img{
    border-radius: 20px;
    overflow: hidden;
    &:hover{
        .img-cover{
            scale: 1.1;
        }
    }
}
.team-member{
    border-radius: 20px;
}
.team-card{
    h3{
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 145.455%;
        text-transform: capitalize;
        margin-bottom: 5px;
    }
    p{
        font-size: 16px;
    }
}
.slick-slide{
    margin: 0 10px;
}
.slick-list{
    margin: 0 -10px;
}
.slick-arrow{
    width: 78px;
    height: 78px;
    top: 40%;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #000;
    z-index: 2;
    transition: 0.5s;
    &::before{
        position: absolute;
        content: '';
        width: 55%;
        height: 55%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/our-team-slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: #C89C65;
        border-color: #C89C65;
        &::before{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
        }
    }
}
.slick-prev{
    left: -120px;
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
.slick-next{
    right: -120px;
}
/******************************
        Partner
*******************************/
.partner{
    position: relative;
    background: url(../img/partner-bg.webp) no-repeat;
    background-size: cover;
    border-radius: 60px;
    z-index: 1;
    .img-cover{
        border-radius: 60px;
    }
    .container{
        display: flex;
        align-items: center;
    }
    .section-sub-title, .section-title, p{
        color: #FFF;
    }
}
.partner-card{
    border-radius: 20px;
    background: #FFF;
    padding: 25px;
    height: 100%;
    transition: 0.5s;
    p{
        color: #3A3939;
        font-size: 17px;
        line-height: 164.706%;
        transition: 0.5s;
    }
    &:hover{
        background: #C89C65;
        .partner-card-head{
            border-color: #FFF;
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(109deg) brightness(111%) contrast(101%);
                transform: rotate(-15deg) scale(1.1);
            }
            .card-title{
                color: #FFF;
            }
        }
        p{
            color: #FFF;
        }
    }
}
.partner-card-head{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #B7B0B0;
    transition: 0.5s;
    .card-title{
        font-size: 20px;
        transition: 0.5s;
    }
}
.partner-content{
    .row{
        .col:nth-child(1),
        .col:nth-child(3){
            transform: translateY(-25px);
        }
        .col:nth-child(2),
        .col:nth-child(4){
            transform: translateY(25px);
        }
    }
}
/******************************
        Certificate
*******************************/
.certificate{
    position: relative;
    background: #182841;
    margin-top: -60px;
    padding-top: 170px;
    padding-bottom: 170px;
    .section-sub-title, .section-title, p{
        color: #FFF;
        span{
            background: #FFF;
        }
    }
    .container-fluid{
        padding-right: 0;
    }
    .line-vector{
        top: 370px;
        z-index: 0;
    }
}
.certifate-card{
    border-radius: 20px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    img{
        border-radius: 20px;
        height: 537px;
    }
}
.certificate-slider{
    .slick-arrow {
        width: 68px;
        height: 35px;
        top: 113%;
        background: transparent;
        border-radius: 0;
        border: none;
        z-index: 2;
        transition: 0.5s;
        left: unset;
        right: 15%;
        &::before{
            width: 100%;
            height: 100%;
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(244deg) brightness(104%) contrast(101%);
        }
    }
    .slick-prev{
        right: 20%;
    }
}
/******************************
        Testimonials
*******************************/
.testi-text{
    padding-bottom: 35px;
    border-bottom: 1px solid #C7C7C7;
}
.rating{
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
    i{
        width: 39px;
        height: 39px;
        background: url(../img/star.webp) no-repeat;
        background-size: contain;
    }
}
.testi-name{
    color: #000;
    font-family: 'PlayfairDisplay Regular';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 106.667%;
    margin-bottom: 6px;
}
.testi-slider{
    .slick-arrow {
        top: 10%;
    }
    .slick-prev {
        left: 30px;
    }
    .slick-next {
        right: 30px;
    }
}
.testimonials{
    position: relative;
    padding-bottom: 190px;
    .testi-vector{
        position: absolute;
        left: 0;
        bottom: -140px;
        z-index: -1;
    }
    .testi-vector2{
        position: absolute;
        right: 0;
        bottom: -140px;
        z-index: -1;
    }
}
/******************************
        Gallery
*******************************/
.gallery{
    border-radius: 60px 60px 0 0;
    background: #182841;
    .section-title{
        color: #FFF;
    }
}
.gallery-box{
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    span{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 16px;
        scale: 0 0;
        opacity: 0;
        transition: 0.5s;
    }
    &:hover{
        span{
            scale: 1 1;
            opacity: 1;
        }
    }
}
/******************************
        Location
*******************************/
.location{
    iframe{
        border: 0;
        width: 100%;
        height: 599px;
        border-radius: 20px;
    }
}
.location-card{
    border-radius: 20px;
    background: #FFF;
    padding: 30px 40px;
    position: relative;
    transition: 0.5s;
    img{
        position: absolute;
        right: 40px;
        top: 30px;
    }
    h3{
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 35px;
        font-style: normal;
        font-weight: normal;
        line-height: 174.286%;
        margin-bottom: 6px;
    }
    p{
        width: 80%;
    }
    p, p a{
        font-size: 24px;
        color: #000;
        line-height: 125%;
        a{
            &:hover{
                color: #182841;
            }
        }
    }
}
/******************************
      Video Testimonial
*******************************/
.vid-testi{
    background: url(../img/vid-testi-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .section-title, .section-sub-title{
        color: #FFF;
        span{
            background: #FFF;
        }
    }
}
.vid-testi-item-box{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    height: 598px;
    .img-cover{
        object-position: center;
    }
    &:hover{
        .play-btn{
            scale: 1.1;
            box-shadow: 0 0 10px 15px rgba(0, 0, 0, 0.103);
        }
    }
}
.vid-testi-item-content{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 20px;
    border-radius: 20px;
    background: rgba(93, 89, 89, 0.26);
    backdrop-filter: blur(25px);
    padding: 25px 30px;
    opacity: 0;
    transition: 0.5s;
    h3{
        color: #FFF;
        font-family: 'Gabarito Medium';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        font-size: 20px;
        color: #FFF;
    }
    .play-btn{
        position: absolute;
        top: -40px;
        right: 40px;
        width: 88px;
        height: 88px;
        background: #C89C65;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        transition: 0.4s;
        img{
            margin-left: 10px;
        }
    }
}
.vid-testi-slider {
    position: relative;
    z-index: 200;
    width: 100%;
    .slick-slide:after {
        content:'';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.5);
    }
    .slick-center:after {
        opacity: 0;
    }
    .slick-arrow{
        border: none;
        top: 46%;
        &::before{
            background: url(../img/vid-testi-arrow.webp) no-repeat;
            background-size: contain;
        }
        &:hover,
        &:focus{
            background: transparent;
        }
    }
}
.vid-testi-item.slick-slide {
  transition: transform .4s;
  position: relative; 
}
.vid-testi-item.slick-slide {
  transform: scale(0.6) translate(1025px, 70px);
}
.vid-testi-item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-350px, 30px);
  z-index: 10;
}
.vid-testi-item.slick-slide.slick-center + .slick-slide + .vid-testi-item.slick-slide {
  transform: scale(0.6) translate(-1025px, 70px);
  z-index: 5;
}
.vid-testi-item.slick-slide.slick-active {
  transform: scale(0.8) translate(350px, 30px);
}
.vid-testi-item.slick-slide.slick-center {
  transform: scale(1);
  z-index: 30;
  .vid-testi-item-box{
        z-index: 2;
    }
  .vid-testi-item-content{
    opacity: 1;
  }
}
.vid-testi-item {
  will-change: transform;
}
.vid-testi-item.slick-slide {
  transition: transform 0.6s ease, opacity 0.6s ease;
}
/******************************
        get in Touch
*******************************/
.get-in{
    padding-inline: 70px;
    .container-fluid{
        background: url(../img/contact-us-bg.webp) no-repeat;
        background-size: cover;
        border-radius: 60px;
    }
    .section-title, .section-sub-title, p{
        color: #FFF;
        span{
            background: #FFF;
        }
    }
}
.get-in-touch-form{
    border-radius: 30px;
    background: #FFF;
    padding: 30px;
    .title{
        color: #000;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    p{
        color: #000;
        line-height: 155%;
    }
}
/******************************
    Faq
*******************************/
.faq{
    position: relative;
    .bliss-text{
        text-align: right;
        font-size: 355px;
        color: #cdcaca57;
    }
}
.faq-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.accordion__item {
  transition: .5s;
  border-radius: 20px;
    background: #FFF;
    margin-bottom: 30px;
}
.accordion__item:hover {
  transform: translateY(-5px)
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 30px 60px 30px 38px;
    transition: 0.5s;
    cursor: pointer;
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 131.579%;
}
.accordion__title::after {
  content: '+';
  position: absolute;
  width: 35px;
  height:35px;
  right: 20px;
  top: 24px;
  font-size: 40px;
  color: #000;
  border-radius: 50%;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
}
.accordion__item.accordion-active .accordion__title::after{
  transform: rotate(180deg);
  content: '-';
  top: 26px;
}
.accordion__item.accordion-active {
  .accordion__title{
    padding-bottom: 20px;
  }
}
.accordion__item .accordion__content {
  display: none;
  padding: 0 50px 20px 38px;
  p{
    line-height: 147.059%;
  }
}
/******************************
        Footer
*******************************/
footer{
    background: url(../img/footer-bg.webp) no-repeat;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 100px;
}
footer p, 
footer ul li a,
footer p a{
    color: #FFF;
    font-family: 'Gabarito Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 155.556%;
}
footer ul li a{
    line-height: 200%;
    display: block;
    &:hover{
        color: #C89C65;
        transform: translateY(-5px);
    }
}
footer p a{
    &:hover{
        color: #C89C65;
    }
}
.footer-title{
    color: #FFF;
    font-family: 'PlayfairDisplay Regular';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: 167.647%;
    margin-bottom: 22px;
}
.footer-sub-titile{
    color: #FFFBFB;
    font-family: 'PlayfairDisplay Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 254.167%;
    text-transform: capitalize;
}
.social-links{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    a{
        width: 59px;
        height: 59px;
        border-radius: 50%;
        border: 1px solid #EFEDED;
        display: flex;
        align-items: center;
        justify-content: center;
        &:hover{
            background: #C89C65;
            border-color: #C89C65;
            transform: translateY(-5px);
        }
    }
}
.copyright{
    margin-top: 60px;

}
.mobile-btn{
    display: none;
}
/******************************************
           Inner Pages 
********************************************/
/*********** Blog Page **************/
.inner-banner{
    overflow: hidden;
    .banner-content {
        h1 {
            font-size: 94px;
            line-height: 123.404%;
        }
    }
}
.blog-item{
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    transition: all .5s;
    .blog-img{
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 10px;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    &:hover{
        transform: translateY(-5px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        .blog-title{
            color: #C89C65;
        }
        .blog-img{
            img{
                transform: scale(1.1);
            }
        }
    }
}
.blog-meta {
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 4px;
    display: flex;
    gap: 18px;
}
.blog-title {
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    text-transform: capitalize;
    margin-bottom: 20px;
    display: inline-block;
}
.link-btn {
    color: #C89C65;
    font-family: 'Gabarito Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: inline-block;
    &:hover{
        color: #000;
        letter-spacing: 1px;
    }
}
.right-arrow::after {
    content: "\2192";
}
/* Contact PAge */
.contact-get-in{
    background: url(../img/contact-get-in-bg.webp) no-repeat;
    background-size: cover;
}
.map{
    iframe{
        width: 100%;
        border: 0;
        height: 635px;
        border-radius: 30px;
    }
}
/* Gallery Images */
.gallery-images{
    border-radius: 0;
    .primary-btn{
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #182841;
            img{
                filter: brightness(0) saturate(100%) invert(11%) sepia(19%) saturate(3454%) hue-rotate(187deg) brightness(88%) contrast(88%);
            }
        }
    }
}
.gallery-video-box{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    &:hover{
        .play-btn{
            background: #182841;
            scale: 1.1;
        }
    }
}
.bottom-bar{
    padding: 24px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    span{
        display: block;
        width: 80%;
        height: 1px;
        background: #FFF;
    }
    .play-btn{
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #C89C65;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        img{
            margin-left: 5px;
        }
    }
}
.gallery-video-slider{
    .slick-arrow{
        top: 50%;
    }
}
/* Blog Details Page */
.white-header{
    background: #182841;
}
.blog-details{
    padding-top: 160px;
    h1{
        color: #000;
        font-family: 'PlayfairDisplay Regular';
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 126%;
    }
    h2, h3, h4{
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        line-height: 140%;
        text-transform: capitalize;
    }
    h3{
        font-size: 30px;
    }
    h4{
        font-size: 26px;
    }
    ol, ul{
        padding-left: 25px;
        li{
            color: #000;
            font-family: 'Gabarito Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 161.111%;
            span{
                font-size: 23px;
                line-height: 182.609%;
                text-transform: capitalize;
            }
        }
    }
    ol{
        list-style-type: decimal;
        li{
            &::marker{
                font-size: 20px;
                color: #182841;
            }
        }
    }
    ul{
        list-style-type: disc;
        li{
            &::marker{
                color: #C89C65;
                font-size: 30px;
            }
        }
    }
}
.date{
    color: #000;
    font-family: 'Gabarito Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 181.25%;
    display: flex;
    align-items: center;
    gap: 15px;
    span{
        display: flex;
        align-items: center;
        gap: 6px;
    }
}
.pegination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    a{
        padding: 10px;
        width: 344px;
        display: flex;
        align-items: center;
        gap: 15px;
        background: #FFF;
        border-radius: 70px;
        img{
            width: 94px;
            height: 94px;
            object-fit: cover;
            border-radius: 50%;
        }
        h5{
            color: #000;
            font-family: 'Gabarito Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 166.667%;
            text-transform: capitalize;
            margin-bottom: 10px;
        }
        p{
            display: inline-block;
            padding: 4px 19px;
            border-radius: 20px;
            background: #D9D9D9;
            margin-bottom: 0;
        }
        &:hover{
            background: #182841;
            h5{
                color: #FFF;
            }
        }
    }
}
.blog-details-img{
    overflow: hidden;
    border-radius: 20px;
}
.b-box{
    h2{
        color: #000;
        font-family: 'PlayfairDisplay Regular';
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 114%;
        text-transform: capitalize;
    }
    ul{
        list-style-type: none;
        padding-left: 0;
        li{
            a{
                color: #000;
                padding: 20px 30px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                border-radius: 60px;
                background: #FFF;
                margin-bottom: 18px;
                font-family: 'Gabarito Regular';
                font-size: 24px;
                font-style: normal;
                font-weight: normal;
                line-height: 120.833%;
                transition: 0.4s;
                &:hover{
                    background: #c89c65;
                    color: #FFF;
                }
            }
        }
    }
}
.rec-post{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: #FFF;
    padding: 20px;
    transition: 0.4s;
    h4{
        color: #000;
         font-family: 'Gabarito Regular';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 120.833%;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    .date{
        img{
            filter: brightness(0) saturate(100%) invert(66%) sepia(28%) saturate(610%) hue-rotate(353deg) brightness(94%) contrast(85%);
        }
    }
    &:hover{
        background: #182841;
        h4, p{
            color: #FFF;
        }
    }
}
.rec-post-img{
    width: 170px;
    height: 137px;
    object-fit: cover;
    border-radius: 20px;
}
/* Partnership Opportunities Page */
.benefits{
    background: #182841;
    border-radius: 0 0 60px 0;
    .section-title, p{
        color: #FFF;
    }
    .partner-card{
        img{
            margin-bottom: 5px;
        }
        .card-title{
            font-size: 20px;
            margin-bottom: 5px;
        }
        p{
            color: #3A3939;
            line-height: 150.778%;
            margin-bottom: 0;
        }
        &:hover{
            img{
                filter: invert(1);
            }
            .card-title, p{
                color: #FFF;
            }
        }
    }
}
.benefits-img{
    overflow: hidden;
    border-radius: 30px;
}
.cleaner-shape{
    counter-reset: section;
}
.cleaner-shape-card{
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}
.cleaner-shape-card-in{
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: #00000087;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
    &::before{
        counter-increment: section;
        content: "0" counter(section);
        position: absolute;
        color: #FFF;
        font-family: 'PlayfairDisplay Regular';
        font-size: 330px;
        font-style: normal;
        font-weight: normal;
        line-height: 60.606%;
        left: 20px;
        bottom: 40px;
        opacity: 0.4;
    }
}
.cleaner-shape-card-content{
    padding: 20px;
    width: 50%;
    float: right;
    top: 50px;
    h3{
        color: #FFF;
        font-family: 'Gabarito Regular';
        font-size: 32px;
        font-style: normal;
        font-weight: normal;
        line-height: 115.789%;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
        line-height: 150.778%;
    }
}
/* =============== Project Tabs =============== */
.project-tabs{
   /* ── TAB NAV ──────────────────────────────── */
    .tab-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 24px 60px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        border-radius: 50px;
        background: #FFF;
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        text-transform: capitalize;
    }

    .tab-btn:hover {
      color: #C89C65;
    }

    .tab-btn.active {
      background: #C89C65;
      color: rgb(0, 0, 0);
      box-shadow: 0 4px 20px rgba(184, 151, 90, 0.35);
    }

    /* ── TAB CONTENT ──────────────────────────── */
    .tab-pane { display: none; }
    .tab-pane.active { display: block; animation: fadeIn 0.4s ease; }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── PROPERTY CARD ────────────────────────── */
    .property-card {
     overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
        position: relative;
        border-radius: 20px;
        background: #FFF;
        padding: 44px 40px 36px;
        gap: 29px;
    }

    /* Left: content */
    .card-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .card-title {
        color: #000;
        font-family: 'PlayfairDisplay Regular';
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 57px;
        margin-bottom: 15px;
    }

    .card-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #686464;
        font-family: 'Gabarito Regular';
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
    }

    .card-meta .sep { opacity: 0.4; }

    .card-meta svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }

    .card-meta span { display: flex; align-items: center; gap: 5px; }


    /* BHK rows */
    .bhk-list {
      display: flex;
      flex-direction: column;
    }

    .bhk-row {
      display: flex;
        align-items: center;
        justify-content: space-between;
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        text-transform: capitalize;
        border-block: 1px solid #B5B2B2;
        padding-block: 25px;
    }

    .bhk-label {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bhk-label svg {
      width: 20px; height: 20px;
      stroke: var(--gold); fill: none; stroke-width: 1.5;
    }


    /* Price + CTA */
    .card-footer {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 20px;
    }

    .price-block .price-label {
      color: #C89C65;
        font-family: 'Gabarito Regular';
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
        text-transform: capitalize;
        margin-bottom: 10px;
    }

    .price-block .price-value {
      color: #000;
        font-family: 'Gabarito Regular';
        font-size: 47px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .price-block .price-unit {
      color: #000;
        font-family: 'Gabarito Regular';
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        text-transform: capitalize;
        margin-left: 10px;
        display: inline-block;
    }

    .book-btn {
      background: var(--gold);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 12px 26px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
      letter-spacing: 0.02em;
    }

    .book-btn:hover {
      background: #a0813c;
      box-shadow: 0 6px 24px rgba(184,151,90,0.4);
      transform: translateY(-1px);
    }

    .book-btn svg { width: 15px; height: 15px; stroke: white; fill: none; }

    /* Right: image slider */
    .card-slider-wrap {
      position: relative;
      overflow: hidden;
    }

    .card-slider-wrap .slick-slider,
    .card-slider-wrap .slick-list,
    .card-slider-wrap .slick-track { height: 100%; }

    .card-slider-wrap .slick-slide > div { height: 100%; }

    .slide-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block !important;
      border-radius: 20px;
    }

    /* Status badge */
    .status-badge {
      position: absolute;
      top: 18px; left: 18px;
      background: white;
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      border: 1px solid var(--gold);
      z-index: 5;
    }

    /* ── MULTIPLE CARDS in a tab ──────────────── */
    .cards-stack { display: flex; flex-direction: column; gap: 28px; margin-bottom: 30px;}
}
.property-slider{
    .slick-arrow{
        top: 50%;
        width: 58px;
        height: 58px;
        border: none;
        background: #FFF;
        box-shadow: 0 4px 4px 2px rgb(0 0 0 / 47%);
        z-index: 2;
        &::before{
            background: url(../img/banner-slider-arrow.webp) no-repeat;
            background-size: contain;
            width: 20%;
            height: 35%;
            left: 54%;
            filter: brightness(0) saturate(100%) invert(0%) sepia(95%) saturate(7489%) hue-rotate(38deg) brightness(100%) contrast(101%);
            transition: 0.5S;
        }
        &:hover{
            background: #c89c65;
            &::before{
                filter: invert(1);
            }
        }
    }
    .slick-prev{
        left: 5px;
        &::before{
            transform: translate(-80%, -50%) rotateY(180deg);
        }
    }
    .slick-next{
        right: 5px;
    }
}

/************ Video testimonials  **************/
.video-testimonial{
    background: #182841;
    .section-title{
        color: #fff;
    }
    .primary-btn{
        &::after{
            background: #FFF;
        }
        &:hover{
            color: #182841;
            img{
                filter: brightness(0) saturate(100%) invert(8%) sepia(46%) saturate(2619%) hue-rotate(201deg) brightness(86%) contrast(85%);
            }
        }
    }
}
.video-testimonial-card{
    border-radius: 20px;
    background: #FFF;
    padding: 30px;
    transition: 0.5s;
    h3{
        color: #000;
        font-family: 'Gabarito Medium';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    p{
        color: #000;
        margin-bottom: 0;
    }
    &:hover{
        transform: translateY(-10px);
        scale: 1.03;
        .play-btn{
            background: #182841;
        }
    }
}
.video-testi-img{
    width: 100%;
    border-radius: 20px;
}
.client-say-card{
    border-radius: 30px;
    background: #FFF;
    padding: 40px;
    transition: 0.5s;
    height: 100%;
    &:hover{
        transform: translateY(-5px);
        scale: 1.03;
        background: #182841;
        p, h3{
            color: #FFF;
        }
    }
}
.video-testimonial-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    .play-btn{
        width: 76px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #c89c65;
        padding: 28px;
        transition: 0.5s;
        img{
            margin-left: 7px;
        }
    }
}
.coma{
    width: 86px;
    height: 86px;
    background: #C89C65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-say-card-admin{
    display: flex;
    align-items: center;
    justify-content: space-between;
    .rating{
        justify-content: start;
    }
}
.company-overview-img{
    position: relative;
    padding-right: 70px;
    padding-bottom: 90px;
}
.company-overview-small{
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 20px;
    background: #FFF;
    img{
        border-radius: 20px;
        width: 305px;
    }
}
.dec{
    color: #000;
    font-family: 'Gabarito SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 120.833%;
}
.values{
    border-radius: 60px 60px 0 0;
    background: #182841;
    .section-title, p{
        color: #fff;
    }
}
.value-img{
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.value-content{
    height: 100%;
}
.value-card{
    border-radius: 30px;
    background: #C89C65;
    padding: 40px;
    transition: 0.5s;
    h3{
        color: #000;
        font-family: 'Gabarito Regular';
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        line-height: 75%;
        text-transform: capitalize;
    }
    p{
        color: #000;
        line-height: 150.778%;
    }
    &:hover{
        scale: 1.05;
    }
}
.value-card-head{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 15px;
}
.vision-card{
    background: #FFF0DC;
}
.global-exe-card{
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    &:hover{
        .global-exe-card-content{
            background: #182841;
            .card-title, p{
                color: #fff;
            }
        }
    }
}
.global-exe-card-content{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 15px;
    border-radius: 14px;
    background: #FFF;
    padding: 20px;
    transition: 0.5s;
    .card-title{
        font-size: 22px;
        margin-bottom: 5px;
        transition: 0.5s;
    }
    p{
        margin-bottom: 0;
        transition: 0.5s;
    }
}
.philosophy{
    .container{
        border-radius: 30px;
        background: #FFF;
        padding: 40px;
    }
}
.philosophy-contant{
    padding-right: 40px;
    p{
        color: #000;
    }
}
.philosophy-img{
    overflow: hidden;
    border-radius: 30px;
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px){
    .modal {
        max-width: 35%;
    }
    #menu {
        padding-inline: 40px;
		.primary-btn{
			font-size: 16px;
		}
    }
    .banner-content {
        h1 {
            font-size: 116px;
        }
    }
    .main-menu {
        gap: 20px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
    }
    #menu>.main-menu>ul>li {
        margin-inline: 8px;
    }
    .call-btn, .call-btn a {
		font-size: 16px;
        img {
            margin-right: 2px;
        }
    }
    .logo{
        width: 127px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 14px;
        right: -11px;
        width: 7px;
        height: 7px;
    }
    #menu ul ul li a {
        font-size: 16px;
    }
    #menu li:hover>ul>li {
        height: 36px;
    }
    .about{
        .img-cover{
            width: 714px;
        }
    }
    .about-content {
        margin-bottom: 20px;
    }
    .what-we-offer-house{
        width: 845px;
    }
    .container-fluid {
        padding: 0 35px;
    }
    .card-title {
        font-size: 20px;
    }
    .bliss-text{
        font-size: 318px;
    }
    .blissvilla-house {
        width: 600px;
    }
    .certifate-card {
        img {
            height: 437px;
        }
    }
    .vid-testi-item-box {
        height: 548px;
    }
    .vid-testi-slider {
        .slick-prev {
            left: -15px;
        }
        .slick-next {
            right: -15px;
        }
    }
    .get-in {
        padding-inline: 30px;
    }
    .get-in {
        .container-fluid {
            padding: 60px 35px;
        }
    }
    .faq-vector{
        width: 845px;
    }
    .faq {
        .bliss-text {
            font-size: 318px;
        }
    }
    .inner-banner {
        & .banner-content {
            h1 {
                font-size: 74px;
            }
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px){
    header.sticky {
        padding-block: 3px;
    }
    .popup-title {
        font-size: 20px;
    }
    .modal-head{
        img{
            width: 107px;
        }
    }
    p {
        font-size: 16px;
    }
    .primary-btn{
        font-size: 14px;
        padding: 14px 24px;
    }
    .menu-btn{
        font-size: 13px;
        padding: 12px 18px;
    }
    #menu {
        padding-inline: 20px;
    }
    .main-menu {
        & .flex-box {
            .primary-btn {
                padding: 12px 20px;
            }
        }
    }
    #menu>.main-menu>ul>li>a{
        font-size: 15px;
        padding: 6px 0;
    }
    .call-btn, .call-btn a {
        font-size: 16px;
        img {
            width: 14px;
        }
    }
    .logo {
        width: 100px;
    }
    .flex-box {
        gap: 10px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 8px;
        right: -10px;
        width: 6px;
        height: 6px;
    }
    #menu ul ul li a {
        font-size: 14px;
    }
    #menu li:hover>ul>li {
        height: 34px;
    }
    .section-sub-title{
        font-size: 17px;
        & span {
            width: 108px;
        }
    }
    .banner-content {
        h1 {
            font-size: 86px;
            margin-bottom: 20px;
        }
        p {
            font-size: 20px;
        }
    }
    .arrow-btn {
        width: 36px;
        height: 36px;
    }
    .arrow-btn svg {
        width: 15px;
        height: 15px;
    }
    .slider-controls {
        max-width: 510px;
        padding: 24px 30px;

    }
    .section-title {
        font-size: 40px;
    }
    .banner-item{
        height: 100dvh;
    }
    .about {
        .img-cover {
            width: 614px;
        }
    }
    .what-we-offer-card {
        padding: 15px;
        p {
            line-height: 144.446%;
        }
    }
    .what-we-offer-card-head {
        gap: 15px;
        padding-block: 20px;
        img{
            width: 45px;
        }
    }
    .card-title {
        font-size: 20px;
    }
    .bliss-text {
        font-size: 290px;
    }
    .blissvilla-house {
        width: 390px;
    }
    .video-box {
        .play-btn {
            width: 100px;
            height: 100px;
            img {
                width: 24px;
            }
        }
    }
    .pp-badge {
        font-size: 21px;
        padding: 8px 35px;
    }
    .pp-vline {
        height: 76px;
    }
    .partnership-process {
        .row {
            .col:nth-child(2n) {
                .pp-vline {
                    height: 126px;
                }
            }
        }
    }
    .pp-circle {
        width: 128px;
        height: 128px;
        padding: 26px;
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    .sec-gap {
        padding: 60px 0;
    }
    p{
        font-size: 16px;
    }
    .what-we-offer-house {
        width: 710px;
        top: -90px;
    }
    .partnership-process {
        .row {
            &::after {
                top: 45px;
            }
        }
    }
    .pp-dot {
        width: 14px;
        height: 14px;
    }
    .our-projects-card-content {
        h3 {
            font-size: 24px;
        }
        p {
            font-size: 18px;
            img{
                width: 12px;
            }
        }
    }
    .op-arrow-btn {
        width: 52px;
        height: 52px;
    }
    .ongoing {
        font-size: 18px;
        padding: 14px 29px;
    }
    .team {
        .bliss-text {
            font-size: 300px;
            margin-bottom: -130px;
        }
    }
    .team-card {
        h3 {
            font-size: 18px;
        }
    }
    .slick-arrow {
        width: 68px;
        height: 68px;
    }
    .slick-prev {
        left: -95px;
    }
    .slick-next {
        right: -95px;
    }
    .partner-card-head{
        padding-bottom: 10px;
        img{
            width: 48px;
        }
    }
    .partner-card {
        padding: 18px;
    }
    .certificate{
        margin-top: -50px;
        padding-top: 140px;
        padding-bottom: 150px;
    }
    .certifate-card {
        img {
            width: 100%;
            height: 345px;
        }
    }
    .certificate-slider {
        .slick-arrow {
            right: 10%;
        }
        .slick-prev {
            right: 17%;
        }
    }
    .rating {
        i {
            width: 29px;
            height: 29px;
        }
    }
    .testi-name {
        font-size: 26px;
    }
    .testi-text {
        padding-bottom: 25px;
    }
    .gallery-box {
        span {
            img{
                width: 64px;
            }
        }
    }
    .location-card {
        padding: 20px 25px;
        h3 {
            font-size: 28px;
            margin-bottom: 5px;
        }
        img {
            right: 30px;
            width: 54px;
        }
        p, p a {
            font-size: 20px;
        }
    }
    .mb-30{
        margin-bottom: 20px;
    }
    .location {
        iframe {
            height: 499px;
        }
    }
    .vid-testi-item-content {
        padding: 20px 25px;
        h3 {
            font-size: 26px;
        }
        p {
            font-size: 18px;
        }
    }
    .vid-testi-item-content {
        .play-btn {
            width: 80px;
            height: 80px;
            padding: 28px;
            img {
                margin-left: 8px;
            }
        }
    }
    .slick-arrow {
        width: 58px;
        height: 58px;
    }
    .vid-testi-slider {
        .slick-prev {
            left: 55px;
        }
        .slick-next {
            right: 55px;
        }
    }
    .vid-testi-item-box {
        height: 478px;
    }
    .get-in {
        padding-inline: 20px;
    }
    .title {
        font-size: 28px;
    }
    .form-control{
        font-size: 16px;
        padding: 10px 16px;
    }
    .get-in-touch-form{
        padding: 23px;
    }
    input.primary-btn {
        padding: 13px 40px;
    }
    .accordion__item .accordion__title {
        font-size: 18px;
        padding: 20px 50px 20px 28px;
    }
    .accordion__item .accordion__content {
        padding: 0 40px 10px 28px;
    }
    .accordion__item {
        margin-bottom: 20px;
    }
    .accordion__title::after{
        width: 30px;
        height: 30px;
        right: 10px;
        top: 17px;
        font-size: 30px;
    }
    .accordion__item.accordion-active {
        .accordion__title {
            padding-bottom: 10px;
        }
    }
    .faq-vector {
        width: 610px;
    }
    .faq {
        .bliss-text {
            font-size: 240px;
        }
    }
    footer p, footer ul li a, footer p a {
        font-size: 16px;
    }
    .footer-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .social-links {
        a {
            width: 49px;
            height: 49px;
            padding: 12px;
        }
    }
    .footer-sub-titile {
        font-size: 20px;
    }
    .fixed-contact {
        right: 16px;
        bottom: 16%;
    }
    .fixed-call-btn {
        width: 51px;
        height: 51px;
    }
    .wp {
        width: 51px;
        height: 51px;
    }
    footer {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .inner-banner{
        .banner-item{
            height: auto;
        }
    }
    .blog-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .link-btn {
        font-size: 16px;
    }
    .blog-item {
        padding: 24px;
    }
    .inner-banner {
        & .banner-content {
            h1 {
                font-size: 54px;
            }
        }
    }
    .map {
        iframe {
            height: 535px;
        }
    }
    .bottom-bar {
        .play-btn {
            width: 55px;
            height: 55px;
            padding: 20px;
        }
    }
    .blog-details{
        padding-top: 110px;
        h1 {
            font-size: 40px;
        }
        h2{
            font-size: 32px;
        }
        h3{
            font-size: 26px;
        }
        h4{
            font-size: 20px;
        }
        ol, & ul {
            li {
                font-size: 16px;
                span{
                    font-size: 19px;
                }
                &::marker {
                    font-size: 18px;
                    color: #182841;
                }
            }
        }
    }
    .date {
        font-size: 14px;
    }
    .pegination {
        & a {
            width: 294px;
            img {
                width: 84px;
                height: 84px;
            }
            h5{
                font-size: 16px;
            }
        }
    }
    .b-box {
        & h2 {
            font-size: 40px;
        }
        ul {
            li {
                & a {
                    padding: 15px 25px;
                    font-size: 20px;
                }
            }
        }
    }
    .rec-post-img {
        width: 140px;
        height: 117px;
    }
    .rec-post {
        h4 {
            color: #000;
            font-family: 'Gabarito Regular';
            font-size: 20px;
        }
    }
    .benefits {
        & .partner-card {
            img {
                margin-bottom: 0px;
            }
            .card-title {
                font-size: 17px;
            }
            p{
                font-size: 15px;
            }
        }
    }
    .cleaner-shape-card-content {
        width: 55%;
        & h3 {
            font-size: 24px;
        }
    }
    .cleaner-shape-card-in {
        &::before {
            left: 10px;
            font-size: 240px;
        }
    }
    .company-overview-small {
        padding: 17px;
        img {
            width: 280px;
        }
    }
    .dec {
        font-size: 20px;
    }
    .value-card {
        padding: 25px;
        h3 {
            font-size: 30px;
        }
    }
    .value-card.mb-20{
        margin-bottom: 20px;
    }
    .value-card-head{
        img{
            width: 74px;
        }
    }
    .global-exe-card-content {
        padding: 14px;
        .card-title {
            font-size: 17px;
        }
    }
    .project-tabs {
        .tab-btn {
            padding: 17px 50px; 
            font-size: 20px;
        }
        .card-title {
            font-size: 38px;
            margin-bottom: 10px;
        }
        .card-meta {
            font-size: 18px;
        }
        .bhk-row {
            font-size: 20px;
            padding-block: 20px;
        }
        .price-block .price-value {
            font-size: 37px;
        }
        .price-block .price-unit {
            font-size: 20px;
        }
        .property-card {
            padding: 33px 30px 26px;
        }
    }
    .bhk-label{
        img{
            width: 43px;
        }
    }
    .property-slider {
        .slick-arrow {
            width: 48px;
            height: 48px;
        }
    }
    .bhk-label {
        img {
            width: 38px;
        }
    }
    .video-testimonial-card {
        padding: 20px;
        h3 {
            font-size: 24px;
        }
        .play-btn {
            width: 66px;
            height: 66px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #c89c65;
            padding: 24px;
            transition: 0.5s;
        }
    }
    .video-testimonial-content {
        .play-btn {
            width: 66px;
            height: 66px;
            padding: 24px;
        }
    }
    .coma{
        width: 76px;
        height: 76px;
    }
}
@media (max-width: 1024px){

}
@media (max-width: 992px){
    .modal {
        max-width: 80%;
    }
    .modal-head {
        img {
            width: 87px;
        }
    }
    header.sticky {
        padding-block: 5px;
    }
    .logo {
        width: 150px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
        padding: 15px 10px;
        color: #FFF;
        border-radius: 0;
    }
    #menu > .main-menu > ul > li > a {
        &::after {
            display: none;
        }
    }
    #menu .main-menu ul ul {
        border-radius: 0;
    }
    #menu .main-menu ul ul li a {
        font-size: 16px;
        color: #FFF;
    }
    .flex-box {
        justify-content: end;
        margin-right: 70px;
    }
    .banner-item {
        height: 720px;
    }
    .banner-content {
        width: 100%;
        padding-top: 30px;
        h1 {
            font-size: 76px;
            margin-bottom: 20px;
        }
        p{
            width: 80%;
        }
    }
    .about-img {
        position: relative;
        text-align: center;
        .img-cover{
            width: 100%;
        }
    }
    .about-content {
        padding-left: 0;
    }
    .what-we-offer-house {
        width: 410px;
        top: -130px;
    }
    .mb-80 {
        margin-bottom: 40px;
    }
    .bliss-text {
        font-size: 180px;
    }
    .blissvilla-house {
        width: 260px;
        right: 70px;
    }
    .container-fluid {
        padding: 0 15px;
    }
    .video-box {
        .play-btn {
            width: 80px;
            height: 80px;
            top: 30%;
            img {
                width: 18px;
                margin-left: 7px;
            }
        }
    }
    .video-box {
        height: 420px;
        &::after {
            opacity: 1;
            background: #000000ab;
            filter: unset;
        }
    }
    .video-box-content {
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 50px;
        text-align: center;
    }
    .partnership-process {
        & .row {
            &::after {
                top: 38px;
            }
        }
    }
    .pp-vline {
        height: 46px;
    }
    .partnership-process {
        & .row {
            & .col:nth-child(2n) {
                .pp-vline {
                    height: 46px;
                }
            }
        }
    }
    .our-projects{
        border-radius: 30px;
    }
    .mb-60 {
        margin-bottom: 20px;
    }
    .our-projects-card-content {
        padding: 30px;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .team {
        .bliss-text {
            font-size: 160px;
            margin-bottom: -70px;
        }
    }
    .team-card {
        h3 {
            font-size: 20px;
        }
    }
    .team-slider{
        padding-inline: 50px;
    }
    .slick-arrow {
        width: 48px;
        height: 48px;
    }
    .slick-prev {
        left: -18px;
    }
    .slick-next {
        right: -18px;
    }
    .partner {
        border-radius: 30px;
    }
    .partner-content {
        & .row {
            .col:nth-child(1), .col:nth-child(3) {
                transform: translateY(0);
            }
            .col:nth-child(2), .col:nth-child(4) {
                transform: translateY(0);
            }
        }
    }
    .certifate-card {
        img {
            width: 100%;
            height: 315px;
        }
    }
    .certificate {
        margin-top: -30px;
        padding-top: 90px;
        padding-bottom: 100px;
    }
    .certificate-slider {
        .slick-arrow {
            width: 48px;
            height: 30px;
            right: 5%;
        }
        .slick-prev {
            right: 14%;
            top: 112.9%;
        }
    }
    .testi-slider {
        .slick-arrow {
            top: 50%;
        }
        .slick-prev {
            left: 10px;
        }
        .slick-next {
            right: 10px;
        }
    }
    .testi-text {
        padding-bottom: 10px;
    }
    .rating {
        i {
            width: 24px;
            height: 24px;
        }
    }
    .gallery-box {
        & span {
            img {
                width: 50px;
            }
        }
    }
    .gallery {
        border-radius: 30px 30px 0 0;
    }
    .location {
        iframe {
            height: 399px;
        }
    }
    .location-card {
        padding: 15px 20px;
        img {
            right: 20px;
            width: 50px;
        }
    }
    .vid-testi{
        .mb-60{
            margin-bottom: 40px;
        }
    }
    .vid-testi-item.slick-slide {
        transform: scale(0.6) translate(70px);
    }
    .vid-testi-item.slick-slide.slick-center + .slick-slide + .vid-testi-item.slick-slide {
        transform: scale(0.6) translate(70px);
    }
    .vid-testi-slider {
        border-radius: 15px;
        .slick-arrow {
            top: 35%;
        }
        .slick-prev{
            left: -40px;
        }
        .slick-next {
            right: -40px;
        }
        .slick-slide:after {
            border-radius: 20px;
        }
    }
    .vid-testi-item-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 10px;
        padding: 15px 20px;
    }
    .get-in {
        padding-inline: 10px;
        .container-fluid {
            border-radius: 30px;
            padding: 40px 25px;
        }
    }
    .accordion__item {
        border-radius: 10px;
        margin-bottom: 15px;
    }
    .faq {
        .bliss-text {
            font-size: 200px;
            color: #cdcaca78;
        }
    }
    .faq-vector {
        width: 510px;
    }
    footer{
        padding-top: 30px;
        padding-bottom: 30px;
        background-position: center;
        .col-12{
            text-align: center;
        }
    }
    .social-links {
        justify-content: center;
    }
    .copyright {
        text-align: center;
        margin-top: 30px;
    }
    .fixed-contact {
        right: 10px;
        bottom: 5%;
    }
    .inner-banner{
        .banner-item {
            .container {
                align-items: end;
                padding-bottom: 20px;
            }
        }
        .banner-content {
            h1 {
                font-size: 44px;
            }
        }
    }
    .map {
        iframe {
            height: 435px;
        }
    }
    .gallery-video-slider{
        padding-inline: 40px;
    }
    .gallery-images{
        border-radius: 0;
    }
    .blog-details {
        padding-top: 110px;
    }
    .mb-50 {
        margin-bottom: 30px;
    }
    .b-box {
        & ul {
            & li {
                a {
                    width: 70%;
                    margin-bottom: 10px;
                }
            }
        }
    }
    .rec-post {
        display: inline-flex;
        gap: 20px;
    }
    .inner-banner {
        .banner-content {
            width: 60%;
        }
    }
    .philosophy{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        .container {
            padding: 30px;
        }
    }
    .philosophy-contant {
        padding-right: 0;
    }
    .project-tabs {
        .property-card {
            grid-template-columns: 1fr;
        }
        .card-slider-wrap{
            order: -1;
        }
    }
    .mb-70 {
        margin-bottom: 40px;
    }
    .client-say-card {
        padding: 25px;
    }
}
@media (max-width: 575px){
    .overlay{
        padding: 0;
    }
    .modal {
        max-width: 95%;
        border-radius: 10px;
    }
    .modal-head {
        padding: 10px 15px 15px;
    }
    .modal-head {
        img {
            width: 67px;
        }
    }
    .popup-title {
        font-size: 15px;
    }
    .modal-body {
        padding: 10px 15px;
    }
    p{
        font-size: 14px;
        line-height: 144.778%;
    }
    #menu {
        padding-inline: 10px;
    }
    .call-btn a {
       display: block;
    }
    .banner-item {
        height: 420px;
    }
    .section-sub-title {
        font-size: 14px;
        letter-spacing: 4.13px;
        gap: 10px;
        span{
            width: 66px;
        }
    }
    .banner-content {
        padding-top: 20px;
        h1 {
            font-size: 46px;
            margin-bottom: 10px;
        }
        p {
            width: 100%;
            font-size: 16px;
            line-height: 115.167%;
        }
    }
    .primary-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    .arrow-btn {
        width: 26px;
        height: 26px;
    }
    .arrow-btn svg {
        width: 12px;
        height: 12px;
    }
    .slider-controls {
        max-width: 330px;
        padding: 12px 20px;
    }
    .progress-bar-wrap::before {
        height: 1.2px;
    }
    .progress-fill {
        height: 5px;
    }
    .section-title {
        font-size: 24px;
    }
    .what-we-offer-house {
        width: 230px;
        top: -85px;
    }
    .mb-80 {
        margin-bottom: 20px;
    }
    .what-we-offer-card-head {
        img {
            width: 35px;
        }
    }
    .card-title {
        font-size: 16px;
    }
    .what-we-offer-card {
        border-radius: 10px;
    }
    .what-we-offer-card-head {
        padding-block: 10px;
    }
    .what-we-offer-card-img {
        border-radius: 10px;
    }
    .get-in {
        padding-inline: 10px;
    }
    .bliss-text {
        font-size: 90px;
    }
    .blissvilla-house {
        width: 165px;
        right: 40px;
    }
    .video-box {
        border-radius: 10px;
        height: 270px;
        .play-btn {
            width: 60px;
            height: 60px;
            top: 20%;
        }
    }
    .video-box-content {
        width: 90%;
        bottom: 10px;
    }
    .pp-badge {
        font-size: 15px;
        padding: 6px 30px;
    }
    .pp-circle {
        width: 100px;
        height: 100px;
        padding: 20px;
        border-width: 5px;
    }
    .pp-name {
        font-size: 17px;
    }
    .pp-dot {
        width: 12px;
        height: 12px;
        margin-bottom: 10px;
    }
    .our-projects {
        border-radius: 10px;
    }
    .our-projects-card-content {
        padding: 10px;
        h3 {
            font-size: 18px;
        }
        p {
            font-size: 14px;
            gap: 8px;
            img {
                width: 10px;
            }
        }
    }
    .op-arrow-btn {
        width: 36px;
        height: 36px;
        padding: 12px;
        right: 10px;
        bottom: 30px;
    }
    .ongoing {
        font-size: 15px;
        padding: 9px 18px;
    }
    .our-projects-card {
        border-radius: 10px;
        &::after {
            border-radius: 10px;
        }
    }
    .team {
        .bliss-text {
            font-size: 78px;
            margin-bottom: -45px;
        }
    }
    .sec-gap {
        padding: 25px 0;
    }
    .team-img {
        border-radius: 10px;
    }
    .team-card {
        h3 {
            font-size: 16px;
        }
    }
    .slick-arrow {
        width: 38px;
        height: 38px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
    }
    .team-slider {
        padding-inline: 30px;
    }
    .team-member {
        border-radius: 10px;
    }
    .partner {
        border-radius: 10px;
        .container{
            padding-inline: 15px;
        }
    }
    .partner-card-head {
        img {
            width: 38px;
        }
        .card-title {
            font-size: 16px;
        }
    }
    .partner-card {
        border-radius: 10px;
    }
    .certificate {
        margin-top: -10px;
        padding-top: 40px;
        padding-bottom: 70px;
    }
    .certifate-card {
        border-radius: 10px;
        padding: 10px;
        img{
            height: 275px;
        }
    }
    .certificate-slider {
        .slick-arrow {
            width: 38px;
            height: 20px;
            right: 5%;
            top: 110%;
        }
        .slick-prev {
            right: 20%;
        }
    }
    .testi-name {
        font-size: 20px;
    }
    .rating {
        margin-bottom: 10px;
        i {
            width: 18px;
            height: 18px;
        }
    }
    .testimonials {
        .testi-vector, .testi-vector2 {
            width: 170px;
            bottom: -30px;
        }
    }
    .gallery {
        border-radius: 15px 15px 0 0;
    }
    .gallery-box {
        & span {
            img {
                width: 40px;
            }
        }
    }
    .location {
        iframe {
            height: 299px;
            border-radius: 10px;
        }
    }
    .location-card{
        border-radius: 10px;
        padding: 10px 10px;
        h3 {
            font-size: 18px;
            margin-bottom: 0px;
        }
        img {
            right: 10px;
            width: 35px;
        }
        p, p a {
            font-size: 15px;
        }
    }
    .mb-30 {
        margin-bottom: 10px;
    }
    .vid-testi-slider {
        padding-inline: 20px;
        .slick-slide {
            margin: 0 0;
        }
        .slick-list {
            margin: 0 0;
        }
        .slick-prev{
            left: -26px;
        }
        .slick-next {
            right: -26px;
        }
    }
    .vid-testi-item-box {
        height: 355px;
        border-radius: 10px;
    }
    .vid-testi-item-content {
        left: 5px;
        right: 5px;
        bottom: 10px;
        border-radius: 10px;
        padding: 15px 20px;
        h3 {
            font-size: 20px;
        }
        p {
            font-size: 15px;
        }
        .play-btn {
            width: 60px;
            height: 60px;
            padding: 22px;
        }
    }
    .get-in {
        .container-fluid {
            border-radius: 15px;
            padding: 25px 0;
        }
    }
    .get-in-touch-form {
        border-radius: 10px;
        padding: 14px;
    }
    
    .get-in-touch-form {
        .title {
            font-size: 22px;
            margin-bottom: 0;
        }
    }
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
    input.primary-btn {
        padding: 10px 30px;
    }
    .mb-50 {
        margin-bottom: 20px;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        padding: 15px 40px 15px 15px;
    }
    .accordion__item .accordion__content {
        padding: 0 30px 15px 15px;
    }
    .accordion__title::after {
        width: 18px;
        height: 18px;
        right: 5px;
        top: 15px;
        font-size: 24px;
    }
    .accordion__item.accordion-active .accordion__title::after {
        top: 18px;
    }
    .accordion__item {
        margin-bottom: 10px;
    }
    .faq {
        .bliss-text {
            font-size: 85px;
        }
    }
    .faq-vector {
        width: 310px;
    }
    .footer-logo{
        width: 100px;
        margin-inline: auto;
        margin-bottom: -10px;
    }
    footer{
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    footer p, footer ul li a, footer p a {
        font-size: 14px;
    }
    .social-links {
        margin-top: 10px;
        a {
            width: 39px;
            height: 39px;
            padding: 9px;
        }
    }
    .footer-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .footer-sub-titile {
        font-size: 14px;
    }
    .fixed-call-btn {
        width: 41px;
        height: 41px;
    }
    .wp {
        width: 41px;
        height: 41px;
    }
    .fixed-contact {
        right: 0px;
        bottom: 3%;
    }
    .desktop-btn {
        display: none;
    }
    .mobile-btn {
        display: block;
        margin-inline: auto;
    }
    #menu .main-menu {
        width: 80%;
        border-left: 3px solid #c89c65;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 12px 10px;
    }
    #menu .submenu-button {
        height: 36px;
        width: 50px;
    }
    #menu .submenu-button:after {
        top: 12px;
        right: 20px;
        width: 8px;
        height: 8px;
    }
    #menu .submenu-button.submenu-opened:after {
        top: 15px;
    }
    .call-btn{
        span{
            display: none !important;
        }
    }
    .call-btn, .call-btn a {
        font-size: 0;
        img {
            width: 40px;
            height: 40px;
            padding: 10px;
            background: #c89c65;
            border-radius: 50%;
        }
    }
    .hamburger {
        right: 10px;
        top: 48%;
    }
    header.sticky {
        padding-block: 0;
    }
    .banner-item {
        &::after {
            opacity: 1;
            background: linear-gradient(271deg, #000 100%, rgb(102 102 102) 100%);
        }
    }
    .partnership-process {
        & .row {
            &::after {
                display: none;
            }
        }
    }
    .inner-banner {
        .banner-item {
            height: 150px;
            &::after{
                background: linear-gradient(45deg, #000, rgb(102 102 102 / 0));
                filter: blur(0);
            }
        }
        .banner-content{
            h1 {
                margin-bottom: 0;
            }
        }
    }
    .blog-item {
        padding: 14px;
        border-radius: 10px;
        .blog-img {
            border-radius: 10px;
        }
    }
    .blog-title {
        font-size: 18px;
        margin-bottom: 0px;
        line-height: 20px;
    }
    .blog-meta {
        font-size: 13px;
        line-height: 19px;
        margin-bottom: 4px;
    }
    .link-btn {
        font-size: 15px;
    }
    .inner-banner {
        & .banner-content {
            h1 {
                font-size: 30px;
            }
        }
    }
    .map {
        iframe {
            height: 335px;
            border-radius: 10px;
        }
    }
    .gallery-video-box {
        border-radius: 15px;
    }
    .bottom-bar {
        padding: 15px;
        .play-btn {
            width: 45px;
            height: 45px;
            padding: 17px;
        }
    }
    .gallery-video-slider{
        .slick-prev {
            left: -6px;
        }
        .slick-next {
            right: -6px;
        }
    }
    .gallery-images{
        border-radius: 0;
    }
    .bottom-bar {
        .play-btn {
            img {
                margin-left: 3px;
            }
        }
    }
    .blog-details {
        padding-top: 90px;
        h1 {
            font-size: 28px;
        }
        h2, h3, h4{
            line-height: 110%;
        }
        h2 {
            font-size: 26px;
        }
        h3 {
            font-size: 22px;
        }
        h4{
            font-size: 18px;
        }
        ol, & ul {
            li {
                font-size: 14px;
                margin-bottom: 10px;
                span {
                    font-size: 17px;
                    line-height: 120.609%;
                }
            }
        }
        ol{
            li{
                &::marker {
                    font-size: 15px;
                }
            }
        }
    }
    .date {
        font-size: 13px;
        gap: 5px;
        span{
            gap: 4px;
            img{
                width: 15px;
            }
        }
    }
    .blog-details-img {
        border-radius: 10px;
    }
    .pegination {
        display: block;
        a{
            margin-bottom: 15px;
            img {
                width: 64px;
                height: 64px;
            }
            h5 {
                font-size: 14px;
                margin-bottom: 5px;
            }
            p {
                padding: 3px 14px;
            }
        }
        .next{
            float: right;
        }
    }
    .b-box {
        & ul {
            & li {
                a {
                    width: 100%;
                    margin-bottom: 10px;
                    font-size: 16px;
                    padding: 12px 16px;
                }
            }
        }
    }
    .rec-post {
        padding: 12px;
        h4{
            font-size: 18px;
        }
    }
    .rec-post-img {
        width: 120px;
        height: 97px;
        border-radius: 10px;
    }
    .partnership-banner{
        .banner-item{
            height: 180px;
        }
        .banner-content{
            width: 100%;
        }
    }
    .benefits-img {
        border-radius: 10px;
    }
    .benefits {
        border-radius: 0 0 30px 0;
        & .partner-card {
            padding: 12px;
            img {
                width: 35px;
            }
        }
    }
    .cleaner-shape-card {
        border-radius: 10px;
        height: 230px;
    }
    .cleaner-shape-card-in {
        border-radius: 10px;
        padding-right: 0;
        background: #000000a6;
        align-items: start;
        &::before {
            bottom: 20px;
            font-size: 140px;
        }
    }
    .cleaner-shape-card-content {
        width: 100%;
        & h3 {
            font-size: 20px;
        }
    }
    .company-overview-img {
        padding-right: 20px;
        padding-bottom: 30px;
    }
    .company-overview-small {
        padding: 10px;
        border-radius: 10px;
        img {
            width: 140px;
            border-radius: 10px;
        }
    }
    .dec {
        font-size: 15px;
    }
    .values {
        border-radius: 15px 15px 0 0;
    }
    .value-img {
        border-radius: 10px;
    }
    .value-card {
        border-radius: 10px;
        padding: 15px;
        h3 {
            font-size: 22px;
        }
        p {
            line-height: 140%;
        }
    }
    .value-card.mb-20 {
        margin-bottom: 10px;
    }
    .value-card-head {
        img {
            width: 50px;
        }
    }
    .global-exe-card {
        border-radius: 10px;
    }
    .global-exe-card-content {
        left: 10px;
        right: 10px;
        bottom: 15px;
        border-radius: 10px;
        padding: 10px;
    }
    .philosophy {
        .container {
            border-radius: 15px;
            padding: 15px;
        }
    }
    .philosophy-img {
        border-radius: 15px;
    }
    .project-tabs {
        .tab-nav{
            gap: 8px;
            margin-bottom: 16px;
        }
        .tab-btn {
            padding: 7px 18px;
            font-size: 15px;
        }
        .property-card {
            padding: 11px 10px 16px;
            border-radius: 10px;
            gap: 14px;
        }
        .slide-img {
            border-radius: 10px;
        }
        .status-badge {
            line-height: 150.778%;
        }
        .card-title {
            font-size: 24px;
            line-height: 27px;
        }
        .card-meta {
            font-size: 15px;
            img{
                width: 13px;
            }
        }
        .card-content {
            gap: 6px;
        }
        .bhk-row {
            font-size: 15px;
            padding-block: 10px;
        }
        .bhk-label {
            img {
                width: 30px;
            }
        }
        .price-block .price-label {
            font-size: 14px;
            line-height: 13px;
            margin-bottom: 1px;
        }
        .price-block .price-value {
            font-size: 28px;
        }
        .price-block .price-unit {
            font-size: 16px;
        }
    }
    .property-slider {
        .slick-arrow {
            width: 28px;
            height: 28px;
        }
    }
    .mb-40 {
        margin-bottom: 10px;
    }
    .mb-70 {
        margin-bottom: 20px;
    }
    .video-testimonial-card {
        padding: 10px;
        border-radius: 10px;
        h3 {
            font-size: 18px;
        }
    }
    .video-testimonial-content {
        .play-btn {
            width: 45px;
            height: 45px;
            padding: 17px;
            img {
                margin-left: 5px;
            }
        }
    }
    .video-testi-img {
        border-radius: 10px;
    }
    .client-say-card{
        padding: 15px;
        border-radius: 10px;
    }
    .coma {
        width: 56px;
        height: 56px;
        padding: 17px;
    }
    .project-tabs {
        .cards-stack {
            margin-bottom: 15px;
        }
    }
}
.wpcf7-response-output {
    display: none !important;
}
.wpcf7 form {
    border: none;
}

.wpcf7 fieldset,
.wpcf7-response-output {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}