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

html::-webkit-scrollbar-thumb {
    background-color: #F12B0D;
    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: #272727;
    font-family: 'Maison Neue Light';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 145%;
    counter-reset: section;
}

a,
a:hover,
a:focus {
    color: #23AC49;
    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: 'Maison Neue Bold';
    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 */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}

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

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

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

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

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

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

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

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

.left {
    background: linear-gradient(to top, #000, transparent), url(../img/destination-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.right {
    padding: 20px;
    text-align: left;
    background: #FFF;
}
.fixed-contact{
    position: fixed;
    right: 30px;
    bottom: 10%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    a{
        &:hover{
            scale: 1.1;
        }
    }
}
.call{
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #5FB242 0%, #AEDE9D 100%);
    border-radius: 50%;
}
.wp{
    width: 58px;
    height: 58px;
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-60 {
    margin-bottom: 60px;
}
p {
   color: #FFF;
    font-family: 'Roboto Regular';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: 161.905%;
}
.dec{
    color: #FFF;
    font-family: 'Roboto Regular';
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 154.839%;
    text-transform: capitalize;
}
.section-sub{
    color: #FDAD20;
    font-family: 'Roboto Bold';
    font-size: 46px;
    font-style: normal;
    font-weight: normal;
    line-height: 123.913%;
    text-transform: capitalize;
    margin-bottom: 30px;
}
.section-title {
    color: #1B1B1B;
    font-family: 'Roboto Serif Bold';
    font-size: 54px;
    font-style: normal;
    font-weight: normal;
    line-height: 118.333%;
    text-transform: capitalize;
}
.form-title{
    color: #F12B0D;
    font-family: 'Roboto Serif Bold';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 15px;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    border: none;
    color: #FFF;
    font-family: 'Roboto Serif SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 25px 40px;
    border-radius: 12px;
    background: #F12B0D;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    span{
        position: absolute;
        width: 9px;
        height: 9px;
        border-radius: 5.12px 5px 5px 0;
        background: #FFF;
        top: 6px;
        right: 5px;
        display: block;
        transition: 0.5s;
    }
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: #FDAD20;   
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}
.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

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

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #070707;
}

.primary-btn:focus {
    color: #fff;
}
.secondary-btn{
    background: transparent;
    border: 1px solid #FFF;
    &::before, &::after{
        background: #FFF;
    }
    &:hover{
        color: #149739;
        span{
            background: #149739;
        }
    }
}
label{
    color: #000;
    font-family: 'Maison Neue Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 7px;
}
.form-control {
    font-family: 'Roboto Serif Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 16px 16px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 100%;
    outline: none;
    border-radius: 4px;
    border: 1px solid #888;
    background: #FFF;
}

.form-control:focus {
    border-color: #F12B0D;
}
form .primary-btn {
    border: 0;
    cursor: pointer;
    padding: 16px 35px;
    background: #FFC107;
    color: #000;
    &:hover{
        background: #F12B0D;
        color: #FFF;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control::placeholder {
    color: #707070;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@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;
}
/* Pulse animation */
.pulse-border{
    animation-name: pulse-border;
}
/* 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
*******************************/
.header-call{
    color: #000;
    font-family: 'Roboto Slab Bold';
    font-size: 35px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.5s;
    &:hover{
        color: #FDAD20;
    }
}
.header-call-icon{
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FDAD20;
}
.header-wp{
    color: #FFF;
    font-family: 'Roboto Slab Bold';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #F12B0D;
    padding: 10px 23px;
    transition: 0.5s;
    &:hover{
        color: #FFF;
        background: #c4240b;
    }
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 30px;
}
.fixed-call{
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E9270A;
}
.fixed-wp{
    width: 77px;
    height: 77px;
}

header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

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

    to {
        transform: translateY(0);
    }
}


.top-bar{
    width: 100%;
    height: 6px;
    background: #5E923F;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 70px;
}

header {
    position: relative;
    width: 100%;
    transition: ease-in-out .4s;
    z-index: 999;
    padding-block: 14px;
    background: #FFF;
}
nav {
    position: relative;
    margin: 0 auto
}
.header-btn{
    background: #FFF;
    padding: 13px 21px;
    color: #149739;
    span{
        background: #149739;
    }
}
#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: 160px;
}

#menu>.main-menu>ul>li {
    float: left;
    padding-inline: 10px;
}

#menu>.main-menu>ul>li>a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    padding: 10px 5px;
    display: inline-block;
    color: #000;
    font-family: 'Roboto Serif Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.471%;
    border-radius: 4px;
}
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}
.hamburger{
    display: none;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #F12B0D;
}
#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}
#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 {
   
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


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

#menu>.main-menu>ul>li.has-sub:hover>a::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #23AC49;
    border-left-color: #23AC49;
}

#menu .main-menu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0px 12px 10px 0px #0000004f;
    width: auto;
    background: #5E923F;
}

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: #FFF;
    transition: all .25s ease
}


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

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

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

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    line-height: 19px;
    text-decoration: none;
    font-family: 'Maison Neue Bold';
    color: #000000;
    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 {
    color: #fff;
    background-color: #23AC49;
}

#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 {
    color: #000;
} */

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
@media screen and (max-width:992px) {
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100dvh !important;
        background: #7A1606;
        transform: translateX(-100%);
        transition: all .4s;
        top: 80px;
        left: 0;
        z-index: 2;
        ul{
            margin-top: 90px;
        }
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;

    }
    #menu .main-menu ul li {
        width: 100%;
        border-block: 1px solid #ffffff49;
    }
    #menu .main-menu ul ul li:hover a,
    #menu .main-menu ul ul li:hover {
        color: #fff;
        background-color: #003710a1;
        border-bottom: 1px solid #ffffff3d;
    }
    #menu .main-menu ul li:hover {
        background: transparent;
    }

    #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: #ffffff;
    }
    #menu .main-menu ul ul li a{
        color: #FFF;
        font-size: 15px;
    }
    #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: #fff;
    }

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

    #menu .main-menu ul ul, #menu .main-menu ul ul ul {
        position: relative;
        left: 27px;
        width: 90%;
        margin: 0;
        text-align: left;
        top: 0;
        transform: unset;
        height: auto;
    }

    #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: 12px;
        top: 9px;
        cursor: pointer;
        z-index: 12399994;
        display: block;
    }

    .hamburger:after {
        position: absolute;
        top: 24px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #F12B0D;
        border-bottom: 2px solid #F12B0D;
        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: #F12B0D;
        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: #F12B0D;
        -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: #F12B0D;
        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: 50px;
        width: 60px;
        cursor: pointer;
        background: #ffffff2e;

    }

    .flex-box{
        margin-right: 65px;
    }
    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

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

    #menu .submenu-button:after {
        position: absolute;
        top: 17px;
        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>.main-menu>ul>li {
        padding-inline: 0px;
    }
    #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;
    }
}
.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);
}
.enquiry-btn {
    color: #FFF;
    font-family: 'Purista';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 143.75%;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 20px 20px 0px;
    background: #1B5574;
    padding: 20px 10px;
    transform-origin: right center;
    transition: 0.8s;
    &:hover{
        color: #5E923F;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        background: #FFF;
    }

}
/******************************
            Banner  
*******************************/
.banner{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
    &::before{
        position: absolute;
        content: '';
        inset: 0;
        background: linear-gradient(91deg, rgba(0, 0, 0, 0.68) 26.87%, rgba(102, 102, 102, 0.00) 60.14%);
    }
    .banner-bg{
        margin-bottom: -10px;
    }
}
.banner-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.banner-content{
    width: 70%;
    h1{
        color: #FFF;
        font-family: 'Roboto Serif Bold';
        font-size: 110px;
        font-style: normal;
        font-weight: 700;
        line-height: 65.323%;
        text-transform: capitalize;
        margin-bottom: 19px;
    }
    h5{
        color: #FFC107;
        font-family: 'Roboto SemiBold';
        font-size: 53px;
        font-style: normal;
        font-weight: normal;
        line-height: 144.643%;
        text-transform: capitalize;
        margin-bottom: 19px;
    }
    .dec{
        margin-bottom: 30px;
        width: 70%;
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -6px;
}
.banner-vector2{
    display: none;
}
/******************************
        About
*******************************/
.about{
    position: relative;
    background: url(../img/about-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 100px;
    .section-title{
        color: #FFF;
    }
}
.about-sibnath{
    position: absolute;
    right: 0;
    height: 100%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}
.about-sibnath-img{
    position: relative;
    z-index: 1;
    width: 770px;
}
.about-vector{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}
.about-content{
    padding-right: 50px;
    padding-block: 60px;
    background: #2a2828c2;
    box-shadow: -340px 0px 0px #2a2828c2;
}
/******************************
    Find Us
*******************************/
.find-us{
    background: #FDAD20;
}
.find-us-box{
    border-radius: 12px;
    background: #FFF;
    height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 0px #e9280a00;
    transition: 0.3s;
    &:hover{
        box-shadow: 0px 0px 20px 0px #e9270a;
        scale: 1.01;
    }
}
/* *************************************************
        Service
************************************************ */
.service{
    background: #7A1606;
    .section-title{
        color: #FFF;
    }
}
.service-img{
    width: 100%;
    height: 334px;
}
.service-content{
    padding: 15px;
    padding-bottom: 20px;
    text-align: center;
    background: #FFF;
    h4{
        color: #201E1E;
        font-family: 'Roboto Serif Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 163.333%;
    }
    p{
        color: #000;
        font-family: 'Roboto Medium';
        line-height: 133.333%;
    }
    .primary-btn{
        padding: 18px 24px;
        font-size: 22px;
        background: #B91E05;
        margin-right: 15px;
    }
    .btn-group{
        gap: 15px;
        justify-content: center;
    }
}
.secvice-call{
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FDAD20;
    &:hover{
        scale: 1.05;
    }
}
.secvice-wp:hover{
    scale: 1.05;
}
.service-img{
    margin-bottom: -8px;
}
.service-box{
    height: 100%;
    transition: 0.3s;
    background: #FFF;
    &:hover{
        scale: 1.01;
    }
}
/************************************
    Renowned
************************************/
.renowned{
    .renowned-content{
        background: url(../img/renowned-bg.webp) no-repeat;
        background-size: cover;
        padding-block: 90px;
    }
    .section-title{
        color: #FFF;
        margin-bottom: 30px;
    }
    h5{
        color: #000;
        font-family: 'Roboto Serif Bold';
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        line-height: 175%;
        text-transform: capitalize;
        background: #FDAD20;
        padding: 18px 50px;
    }
    .btn-group{
        gap: 30px;
    }
}
.call-btn{
    border: none;
    gap: 15px;
    color: #FFF;
    font-family: 'Roboto Slab Bold';
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    font-style: normal;
    display: flex;
    align-items: flex-end;
    small{
        font-family: 'Roboto Serif Medium';
        font-size: 24px;
    }
    &:hover{
        color: #FDAD20;
    }
    &:focus{
        color: #FFFF;
    }
}
.call-icon{
    width: 79px;
    height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDAD20;
    border-radius: 50%;
}
.renowned-img{
    width: 100%;
    margin-bottom: -8px
}
/******************************
       Counter
*******************************/
.counter{
    background: #FDAD20;
    .col{
        position: relative;
        &::after{
            position: absolute;
            content: '';
            width: 1px;
            height: 80%;
            background: #000;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
        }
    }
    .row{
        .col:last-child{
            &::after{
                display: none;
            }
        }
    }
}
.counter-item{
    position: relative;
    padding-left: 100px;
    h3{
        color: #000;
        font-family: 'Roboto Serif Bold';
        font-size: 77px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.5s;
    }
    p{
        color: #000;
        font-family: 'Roboto Serif Medium';
        font-size: 20px;
        margin-bottom: 0;
        line-height: 125%;
        transition: 0.5s;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
    }
}
.counter-icon{
    position: absolute;
    top: 0;
    left: 0;
    width: 81px;
    height: auto;
}
/******************************
        Astrology
*******************************/
.astrology{
    .dec{
        color: #000;
    }
}
.astrology-content{
    background: #D9250A;
    h4, p{
        color: #FFF;
    }
    .primary-btn{
        background: #000;
    }
}
/******************************************
    Love Problem
********************************************/
.love-problem{
    margin-bottom: 130px;
    .container{
        position: relative;
    }
}
.love-content{
    position: absolute;
    inset: 0;
    padding: 30px;
    .section-title{
        color: #FFF;
        margin-bottom: 30px;
    }
    h5{
        color: #000;
        font-family: 'Roboto Serif Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 196.667%;
        text-transform: capitalize;
        margin-bottom: 16px;
        background: #FDAD20;
        clip-path: polygon( 0% 0%,91.144% 0%,100% 100%,0% 100%,0% 0% );
        padding-inline: 25px;
        transform: translateX(25px);
    }
    .header-wp{
        color: #FFF;
        font-family: 'Roboto Bold';
        font-size: 40px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        padding: 9px 16px;
    }
    .btn-group{
        justify-content: center;
        margin-bottom: 20px;
    }
    p{
        font-family: 'Roboto Medium';
    }
}
.love-logo{
    margin-bottom: 16px;
    display: block;
}
.love-wp-icon{
    width: 65px;
    height: 65px;
    background: #29A71A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/******************************************
        Prominent
********************************************/
.prominent{
    background: #FFEFB1;
    .service-content{
        padding: 30px;
        h4{
            font-size: 34px;
            line-height: 131%;
            margin-bottom: 10px;
        }
    }
    .primary-btn{
        padding: 18px 46px;
        margin-right: 0
    }
    .secvice-wp{
        width: 60px;
        height: 60px;
        background: #29A71A;
        border-radius: 10px;
    }
    .service-box{
        background: #D9250A;
    }
    .service-img{
        height: 392px;
    }
}
/******************************************
        Why Choose
********************************************/
.why-choose{
    position: relative;
    img{
        position: absolute;
        right: 0;
        height: 100%;
        top: 0;
        object-fit: cover;
        width: 50%;
    }
}
.why-choose-content{
    background: #872010;
    box-shadow: -330px 0 0 0 #872010;
    padding: 105px 40px 105px 0;
    .section-title{
        color: #FFF;
        margin-bottom: 30px;
    }
    .primary-btn{
        background: #FFC107;
        color: #000;
    }
    .primary-btn:before, .primary-btn:after {
        background: #000;
    }
    .primary-btn:hover{
        color: #FFF;
    }
    .btn-group{
        margin-top: 40px;
    }
}
/******************************
        Testimonial
*******************************/
.testimonial{
    background: url(../img/testimonial-bg.webp) no-repeat;
    background-size: cover;
    .item{
        text-align: center;
    }
    .section-title{
        color: #FFF;
    }
}
.testi-box{
    filter: drop-shadow(0 4px 60px rgba(0, 0, 0, 0.14));
    clip-path: polygon(0% 0%, 100% 0%, 100% 81.06%, 50.0% 100%, 0% 81.56%, 0% 0%);
    padding: 70px 30px 120px 30px;
        background: linear-gradient(180deg, #FFF 50.71%, #781405 120.24%);
    z-index: -1;
    position: relative;
    h4{
        color: #000;
        font-family: 'Roboto Serif Bold';
        font-size: 27px;
        font-style: normal;
        font-weight: normal;
        line-height: 137.037%;
        margin-bottom: 10px;
    }
}
.testi-vector{
    position: absolute;
    left: 15px;
    bottom: 29px;
    width: 100%;
}
.coma{
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #781405;
    margin-inline: auto;
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
}
.rating{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    i{
        background: url(../img/star.webp) no-repeat;
        width: 20px;
        height: 20px;
        display: block;
    }
}
.testi-box-text{
    font-size: 18px;
    color: #000;
    font-style: italic;
    line-height: 150%;
}
.slick-slide{
    margin: 0 20px;
}
.slick-list{
    margin: 0 -20px;
}
.slick-arrow{
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #FFF;
    z-index: 2;
    &::before{
        position: absolute;
        content: '';
        width: 25%;
        height: 25%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        &::before{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
        }
    }
}
.slick-prev{
    left: -90px;
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}
.slick-next{
    right: -90px;
}
/******************************
        Gallery
*******************************/
.gallery{
    background: url(../img/gallery-bg.webp) no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}
.gallery-img{
    display: block;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #000;
        opacity: 0.7;
        z-index: 1;
        transition: 0.6s;
    }
}
.gallery-slider{
    /* .item.slick-slide {
        transform: scale(0.7)  translate(640px);
    }

    .item.slick-slide.slick-center + .slick-slide {
        transform: scale(0.8) translate(-250px);
        z-index: 10;
        position: relative;
    }

    .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
        transform: scale(0.7)  translate(-640px);
        z-index: 5;
        position: relative;
    }

    .item.slick-slide.slick-active {
        transform: scale(0.8) translate(250px);
    }

    .item.slick-slide.slick-center {
        transform: scale(1);
        z-index: 30;
        position: relative;
    } */
    
    .slick-slide {
        transform: scale(1.5);
        margin: 0 10px;
        transition: transform 0.8s ease, opacity 0.8s ease;
    }
    .slick-list{
        margin: 0 0;
        padding: 160px 0 !important;
    }
    .gallery-item.slick-slide.slick-center + .slick-slide {
        z-index: 7;
        position: relative;
    }
    .gallery-item.slick-slide.slick-center + .slick-slide + .gallery-item.slick-slide{
        z-index: 5;
        position: relative;
    }
    .slick-center {
        transform: scale(2);
        position: relative;
        z-index: 9;
    }
    .gallery-item.slick-center{
        .gallery-img::after{
            opacity: 0;
        }
    }
    .slick-arrow{
        width: 74px;
        height: 74px;
        border-radius: 0;
        &::before{
            width: 20%;
            height: 40%;
            background: url(../img/slider-arrow2.webp) no-repeat;
            background-size: contain;
        }
        &:hover,
        &:focus{
            &::before{
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(102%) contrast(102%);
            }
        }
    }
    .slick-next{
        right: -130px;
    }
    .slick-prev{
        left: -130px;
    }
}
/******************************
        Destination
*******************************/
.destination{
    margin-bottom: 90px;
    .destination-box{
        background: url(../img/destination-bg.webp) no-repeat;
        background-size: cover;
        padding: 40px;
    }
    h5 {
        color: #FFF;
        font-family: 'Roboto Serif Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 196.667%;
        text-transform: capitalize;
        background: #D9250A;
        clip-path: polygon(0% 0%, 91.144% 0%, 100% 100%, 0% 100%, 0% 0%);
        padding-inline: 25px;
        width: 70%;
        margin-bottom: 25px;
    }
    .section-title{
        color: #FFF;
        margin-bottom: 25px;
    }
    .primary-btn{
        background: #FFC107;
        color: #000;
    }
    .primary-btn:before,
    .primary-btn:after{
        background: #D9250A;
    }
    .primary-btn:hover{
        color: #FFF;
    }
}
.destination-img{
    border-radius: 50%;
    overflow: hidden;
    border: 14px solid #FFC107;
}
.destination-content{
    padding: 10px;
}
/******************************
        Latest
*******************************/
.latest{
    background: url(../img/latest-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
}
.latest-box{
    background: #D9250A;
}
.latest-content{
    padding: 25px;
}
.latest-date{
    color: #FFF;
    font-family: 'Roboto Serif Regular';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 194.737%;
    margin-bottom: 10px;
}
.latest-title{
    color: #FFF;
    font-family: 'Roboto Serif Bold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 120%;
    margin-bottom: 30px;
    &:hover{
        color: #FFCC00;
    }
}
.read-more{
    color: #FFF;
    font-family: 'Roboto Serif SemiBold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    &:hover{
        color: #FFCC00;
        img{
            filter: brightness(0) saturate(100%) invert(70%) sepia(36%) saturate(1212%) hue-rotate(2deg) brightness(108%) contrast(104%);
        }
    }
}
/******************************
        CTA-banner
*******************************/
.cta-banner{
    margin-block: 80px;
    .section-title{
        font-size: 46px;
        color: #FFF;
    }
}
.cta-banner-box{
    position: relative;
    background: url(../img/cta-bg.webp) no-repeat;
    background-size: cover;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    .call-btn{
        border-radius: 8px;
        background: #D8250A;
        padding-top: 12px;
        padding-bottom: 15px;
        padding-inline: 25px;
        display: inline-flex;
        justify-content: center;
        span{
            line-height: 85%;
        }
    }
    .call-icon {
        background: #FFCC00;
        border-radius: 10px;
    }
}
.cta-vector{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}
.cta-banner-content{
    p{
        margin-bottom: 0;
    }
}
/******************************
        Footer
*******************************/
footer{
    background: #541006;
    padding-top: 75px;
    position: relative;
    z-index: 1;
    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 54%;
        height: 100%;
        background: url(../img/footer-bg.webp) no-repeat;
        background-size: cover;
        z-index: -1;
    }
    .logo{
        margin-bottom:25px;
    }
    p{
        color: #FFF;
        font-family: 'Roboto Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 160%;
    }
    ul li a,
    p a{
        color: #FFF;
        font-family: 'Roboto Bold';
        font-size: 21px;
        font-style: normal;
        font-weight: normal;
        line-height: 190.476%;
        &:hover{
            color: #FFCC00;
        }
    }
    .footer-title{
        color: #FFF;
        font-family: 'Roboto Serif Bold';
        font-size: 33px;
        font-style: normal;
        font-weight: normal;
        line-height: 112.121%;
        margin-bottom: 30px;
    }
    ul li{
        transition: 0.4s;
        &:hover{
            transform: translateX(5px);
        }
    }

}
.footer-contact p{
    position: relative;
    padding-left: 65px;
}
.footer-contact p span {
    border-width: 1px;
    border-radius: 50%;
    background-color: #FFF7DF;
    position: absolute;
    left: 0px;
    top: 8px;
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-40px);
}
.footer-contact h5{
    color: #FFF;
    font-family: 'Roboto Regular';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 200%;
    margin-bottom: 1px;
    margin-left: 65px;
}
.social-links{
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
    a{
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #000;
        border: 1px solid #FFF;
        transition: 0.4s;
        &:hover{
            background: #541006;
            border-color: #541006;
            transform: translateY(-3px);
        }
    }
}
.copyright{
    padding-block: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    p{
        color: #FFF;
        font-family: 'Roboto Serif Bold';
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: 147.368%;
        margin-bottom: 0
    }
    a{
        &:hover{
            color: #FFCC00;
        }
    }
}
/* .location-container{
    border-radius: 12px;
    background: #FD7;
    padding-block: 14px;
    overflow: hidden;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: #000;
        font-family: 'Roboto Medium';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        &:hover{
            color: #000;
        }
    }
} */
.marquee-container {
    background: #Fd7;
    border-radius: 12px;
    padding: 12px;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: scroll 8s linear infinite;
    white-space: nowrap;
}

.marquee:hover {
    animation-play-state: paused;
}

.location-name {
    display: inline-flex;
    justify-content: center;
    margin-right: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 8px;
    align-items: center;
    gap: 4px;
    color: #000;
    font-family: 'Roboto Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
    img{
        width: 17px;
    }
}

.location-name:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #541006;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate content for seamless loop */
.marquee-content {
    display: flex;
}
/******************************************
        Inner Pages
********************************************/
/* Location Details Page */
.inner-banner{
    .banner-content{
        width: 50%;
    }
    h1{
        font-size: 60px;
        line-height: 135%;
        margin-bottom: 0;
    }
}
.here{
    background: url(../img/here-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        margin-bottom: 30px;
        font-size: 46px;
    }
    p{
        color: #000;
        margin-bottom: 30px;
    }
    h5{
        color: #060303;
        font-family: 'Roboto Serif SemiBold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.077%;
        text-transform: capitalize;
        margin-bottom: 30px;
    }
}
.here-content{
    .primary-btn{
        background: #000000;
    }
    .primary-btn:before,
    .primary-btn:after{
        background: #F12B0D;
    }
    .primary-btn:hover{
        color: #FFF;
    }
    .secvice-call{
        background: #B91E05;
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(107%) contrast(111%);
        }
    }
}
.genuine{
    background: url(../img/genuine-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
    .service-box {
        background: #6A1A0F;
        .service-img {
            height: 367px;
        }
    }
    .service-content{
        background: #6A1A0F;
        padding-top: 25px;
        padding-bottom: 25px;
        h4{
            color: #FFFBFB;
            line-height: 120.69%;
            margin-bottom: 18px;
        }
        p{
            color: #FFF;
        }
    }
}
.genuine-slider{
    .slick-arrow{
        width: 48px;
        height: 48px;
        &::before {
            width: 30%;
            height: 30%;
        }
    }
}
.rid{
    position: relative;
    padding-block: 115px;
    p{
        color: #000;
    }
    &::before{
        position: absolute;
        content: '';
        width: 25%;
        height: 45%;
        background: #FDAD20;
        clip-path: polygon( -0.632% 78.676%,-0.632% 0%,100% 100%,64.026% 100%,-0.632% 100%,-0.632% 78.676% );
        z-index: -1;
        left: 0;
        bottom: 0;
    }
    .section-title{
        margin-bottom: 15px;
    }
    p{
        margin-bottom: 25px;
    }
}
.rid-vector{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.location-why-choose{
    position: relative;
    z-index: 1;
}
.location-why-choose-vector{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.location-why-choose{
    background: #541106;
    .section-title{
        margin-bottom: 50px;
        color: #FFF;
    }
}
.location-why-choose-card{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: 0.4s;
    h4{
        color: #FFF;
        font-family: 'Roboto Serif Bold';
        font-size: 33px;
        font-style: normal;
        font-weight: normal;
        line-height: 112.121%;
        margin-bottom: 10px;
    }
    p{
        margin-bottom: 0;
    }
    &:hover{
        transform: translateY(-5px);
        .location-why-choose-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.location-why-choose-icon{
    width: 94px;
    height: 94px;
    background: #FDAD20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.location-why-choose{
    padding-right: 20%;
}
.location-why-choose-text{
    width: 84%;
    p{
        font-size: 18px;
        line-height: 138.889%;
        font-family: 'Roboto Medium';
    }
}
/******* Faq ******/
.faq{
  position: relative;
  z-index: 1;
  .section-title{
    margin-bottom: 10px;
  }
  .dec{
    font-size: 21px;
    font-family: 'Roboto Medium';
    line-height: 147.619%;
    color: #000;
    margin-bottom: 25px;
  }
}
.faq-vector{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}
.accordion__item {
  margin: 15px auto;
  transition: .5s;
  border-radius: 12px;
  background: #F3EEEE;
}
.accordion__item:hover {
  transform: translateY(-5px)
}
.accordion__item .accordion__title {
  position: relative;
  display: block;
  padding: 14px 90px 14px 30px;
  margin-bottom: 0;
  font-family: 'Roboto Serif SemiBold';
  font-size: 20px;
  text-decoration: none;
  line-height: 170%;
  color: #000;
  border-radius: 3px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  cursor: pointer;
  font-weight: normal;
}

/* .accordion__title::after {
    content: '';
    background-image: url(../img/faq-arrow.webp);
    background-repeat: no-repeat;
    position: absolute;
    width: 29px;
    height: 15px;
    right: 6px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
} */
.accordion__title.accordion-active::after{
  content: '-';
  transform: rotate(180deg);
}

.accordion__title::after {
  content: '+';
  position: absolute;
  width: 38px;
  height: 38px;
  right: 12px;
  top: 15px;
  font-size: 22px;
  background: #D72308;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s;
}

.accordion__item .accordion__content {
  display: none;
  padding: 0 80px 20px 30px;
  p{
    color: #000;
    font-size: 18px;
  }
}
.faq-img{
    padding-left: 60px;
}
.related-service{
    background: url(../img/related-service-bg.webp) no-repeat;
    background-size: cover;
    .service-box{
        background: #460F07;
    }
    .service-content{
        padding: 30px;
        background: #460F07;
        h4{
            color: #FFF;
            line-height: 120.69%;
        }
    }
}
.related-slider{
    .slick-arrow{
        width: 64px;
        height: 64px;
        background: #000;
        border: none;
        top: -75px;
        left: unset;
        right: 0;
        &::before{
            width: 40%;
            height: 40%;
            background-image: url(../img/slider-arrow3.webp);
        }
    }
    .slick-prev{
        right: 75px;
    }
}
.serve{
    background: #460F07;
    .section-title{
        color: #FFF;
    }
    .primary-btn{
        background: #000;
        font-size: 23px;
        padding: 18px 36px;
    }
    .primary-btn:before,
    .primary-btn:after{
        background: #F12B0D;
    }
    .primary-btn:hover{
        color: #FFF;
    }
}
#search {
    width: 100%;
    max-width: 580px;
    padding: 20px 26px;
    font-family: 'Roboto Medium';
    font-size: 28px;
    border-radius: 12px;
    border: 1px solid #FFF;
    background: #FFF;
    margin-bottom: 60px;
    outline: none;
    color: #000;
}
#search::placeholder{
    color: #524747;
}
.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
    justify-content: center;
}
.location-item.show {
    display: block;
}
.location-item {
    display: none;
}
.location-item a {
    display: inline-block;
    position: relative;
    width: 100%;
    color: #FFF;
    font-family: 'Roboto Medium';
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 80%;
    text-decoration: none;
    transition: 0.2s ease;
    padding: 30px 30px;
    border-radius: 12px;
    border: 1px solid #968888;
    background: linear-gradient(90deg, #661A0F 0%, #190502 100%);
    padding-left: 60px;
    &:hover{
        transform: translateY(-5px);
    }
}
.location-item a::before {
    content: " ";
    width: 27px;
    height: 36px;
    background-image: url(../img/serve-location-icon.webp);
    background-repeat: no-repeat;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.adipiscing{
    .section-title{
        font-size: 40px;
        margin-bottom: 20px;
    }
    p{
        color: #000;
    }
}
.location-details-banner{
    margin-block: 60px;
    margin-top: 0;
}
/******************************************
        Blog Page
********************************************/
.blog-listing{
    .latest-box{
        background: #A2200C;
        height: 100%;
    }
    .latest-title {
        font-size: 22px;
    }
}
.blog-img{
    aspect-ratio: 1 / 0.75;
}
/******************************************
        Blog Details Page
********************************************/
.blog-details-header{
    box-shadow: 0 4px 37px 0 rgba(0, 0, 0, 0.15);
}
.blog-details{
    h1, h2, h3, h4{
        color: #060303;
        font-family: 'Roboto Serif Bold';
        font-size: 54px;
        font-style: normal;
        font-weight: normal;
        line-height: 108.333%;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    h2{
        font-size: 30px;
        line-height: 143.333%;
    }
    h3{
        font-size: 26px;
    }
    h4{
        font-size: 22px;
    }
    p{
        color: #000;
        line-height: 152.381%;
    }
    .latest-date{
        color: #000;
        margin-bottom: 25px;
    }
    ul, ol{
        margin-bottom: 40px;
        list-style: square;
        padding-left: 20px;
        li{
            color: #000;
            font-family: 'Roboto SemiBold';
            font-size: 21px;
            font-style: normal;
            font-weight: normal;
            line-height: 138.095%;
            position: relative;
            margin-bottom: 20px;
            &::marker{
                color: #D9250A;
            }
        }
    }
    ol{
        list-style: none;
        padding-left: 0;
        li{
            padding-left: 50px;
            &::before{
                position: absolute;
                border-radius: 50%;
                width: 36px;
                height: 36px;
                counter-increment: section;
                content: counter(section);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #FFF;
                font-family: 'Maison Neue Light';
                font-size: 18px;
                font-style: normal;
                top: 0;
                left: 0;
                background: #D9250A;
            }
        }
    }
}
.blog-details-img{
    aspect-ratio: 1 / 0.51;
    margin-bottom: 40px;
    img{
        width: 100%;
        height: 100%;
    }
}
.side-bar-content{
    background: #FFF7DF;
    padding: 20px 30px;
    margin-bottom: 80px;
    h3{
        color: #060303;
        font-family: 'Roboto Serif Bold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        text-transform: capitalize;
        margin-bottom: 10px;
    }
    ul{
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        li{
            width: auto;
            margin-bottom: 2px;
            a{
                color: #000;
                font-family: 'Roboto Medium';
                font-size: 19px;
                font-style: normal;
                font-weight: normal;
                line-height: 278.947%;
                transition: 0.4s;
                border-bottom: 1px solid #B6ADAD;
                display: inline-block;
                padding-inline: 5px;
            }
            &::before{
                display: none;
            }
            &:hover{
                a{
                    color: #FFF;
                    background: #A2200C;
                }
            }
        }
    }
}
.recent-post{
    background: transparent;
    padding: 0;
}
.recent-blog-card{
    display: flex;
    align-items: center;
    margin-bottom: 17px;
    background: #F3F3F3;
    padding: 15px;
    gap: 15px;
    h4{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #000;
        font-family: 'Roboto Serif Bold';
        font-size: 14px;
        font-style: normal;
        font-weight: normal;
        line-height: 150%;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: 0.5s;
    }
    &:hover{
        h4{
            color: #A2200C;
        }
    }
}
.recent-blog-img{
    width: 114px;
    height: 83px;
}
.recent-date{
    color: #000;
    font-family: 'Roboto Serif Regular';
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 142.857%;
}
.event-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    .event-arrow {
        width: 285px;
        height: 88px;
        border-radius: 0;
        background: #FFF7DF;
        display: flex;
        align-items: center;
        gap: 15px;
        text-transform: uppercase;
        color: #000;
        font-family: 'Roboto Bold';
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 269.231%;
        .arrow{
            display: block;
            font-size: 20px;
        }
        &:hover{
            background: #A2200C;
            color: #FFF;
            .arrow{
                img{
                    transform: rotate(35deg);
                }
            }
        }
    }
}
.event-arrow.next{
    justify-content: flex-end;
}
.img {
    width: 107px;
    height: 60px;
    overflow: hidden;
    display: inline-block;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.secvice-wp {
    display: flex;
    align-items: center;
    justify-content: center;
}
/******************************************
        Contact Details
********************************************/

/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    #menu {
        padding-inline: 70px;
    }
    .banner-content {
        h1 {
            font-size: 105px;
        }
        h5 {
            font-size: 46px;
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 18px;
    }
    .logo{
        width: 270px;
    }
    .header-call-icon {
        width: 53px;
        height: 53px;
    }
    .header-call {
        font-size: 30px;
        gap: 10px;
    }
    .header-wp{
        font-size: 19px;
        img{
            width: 45px;
        }
    }
    .primary-btn{
        font-size: 22px;
    }
    .section-sub {
        font-size: 44px;
    }
    .about-sibnath-img {
        width: 680px;
    }
    .about {
        padding-block: 70px;
    }
    .about-content {
        padding-right: 40px;
        padding-block: 50px;
    }
    .renowned {
        .renowned-content {
            padding-block: 60px;
        }
    }
    .gallery-slider {
        .slick-prev {
            left: -95px;
        }
        .slick-next {
            right: -95px;
        }
    }
    .inner-banner{
        h1{
            font-size: 60px;
            line-height: 135%;
            margin-bottom: 0;
        }
    }
    .genuine {
        & .service-content {
            h4 {
                margin-bottom: 5px;
            }
        }
        .service-box {
            .service-img {
                height: 343px;
            }
        }
    }
    .rid {
        padding-block: 60px;
        &::before {
            width: 15%;
            height: 25%;
        }
    }
    .rid-vector {
        width: 660px;
    }
    .location-why-choose {
        padding-right: 16%;
    }
    .location-why-choose-vector {
        width: 450px;
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    .form-title {
        font-size: 28px;
    }
    .form-control{
        font-size: 14px;
        padding: 12px;
    }
    .popup .popup__content {
        width: 55%;
    }
    p{
        font-size: 16px;
    }
    .logo {
        width: 230px;
    }
    #menu{
        padding-inline: 30px;
    }
    #menu>.main-menu>ul>li>a{
        font-size: 16px;
    }
    .header-call-icon{
        width: 48px;
        height: 48px;
    }
    .header-call {
        font-size: 28px;
        gap: 10px;
    }
    .header-wp {
        font-size: 17px;
        padding: 8px 16px;
        img {
            width: 36px;
        }
    }
    .fixed-call {
        width: 60px;
        height: 60px;
        padding: 16px;
    }
    .fixed-wp {
        width: 57px;
        height: 57px;
    }
    .banner-content {
        h1 {
            font-size: 87px;
            margin-bottom: 10px;
        }
        h5 {
            font-size: 38px;
            margin-bottom: 7px;
        }
        .dec {
            margin-bottom: 20px;
        }
    }
    .dec {
        font-size: 24px;
    }
    .primary-btn {
        font-size: 20px;
        padding: 20px 30px;
    }
    .fixed-contact {
        right: 20px;
    }
    .section-title {
        font-size: 44px;
    }
    .section-sub {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .about-content {
        padding-right: 30px;
        padding-block: 40px;
    }
    .about {
        padding-block: 50px;
    }
    .about-sibnath-img {
        width: 520px;
    }
    .find-us-box {
        height: 142px;
        padding: 20px;
    }
    .mb-40{
        margin-bottom: 30px;
    }
    .service-content {
        h4 {
            font-size: 22px;
        }
        .primary-btn{
            padding: 18px 24px;
            font-size: 17px;
            margin-right: 10px;
        }
    }
    .secvice-call{
        width: 55px;
        height: 55px;
        padding: 15px;
    }
    .secvice-wp{
        width: 54px;
    }
    .service-img {
        height: 286px;
    }
    .renowned {
        .section-title {
            margin-bottom: 10px;
        }
        h5 {
            font-size: 26px;
            padding: 10px 50px;
        }
    }
    .mb-60 {
        margin-bottom: 30px;
    }
    .call-icon{
        width: 69px;
        height: 69px;
    }
    .call-btn {
        font-size: 34px;
        small {
            font-size: 20px;
        }
    }
    .counter-item {
        padding-left: 88px;
        h3 {
            font-size: 62px;
        }
        p{
            font-size: 16px;
        }
    }
    .counter-icon {
        width: 71px;
    }
    .love-logo {
        width: 240px;
        margin-inline: auto;
    }
    .love-content {
        h5 {
            font-size: 18px;
        }
        .header-wp {
            font-size: 30px;
        }
    }
    .love-wp-icon{
        width: 58px;
        height: 58px;
    }
    .prominent {
        & .service-content {
            h4 {
                font-size: 28px;
            }
        }
        .primary-btn {
            padding: 18px 36px;
            margin-right: 0;
        }
        .secvice-wp{
            width: 54px;
            height: 54px;
        }
        .service-img {
            height: 376px;
        }
    }
    .why-choose-content {
        padding: 60px 30px 60px 0;
        .section-title {
            margin-bottom: 10px;
        }
        .btn-group {
            margin-top: 25px;
        }
    }
    .coma {
        width: 66px;
        height: 67px;
        padding: 18px;
        margin-bottom: -42px;
    }
    .testi-box {
        padding: 50px 20px 90px 20px;
    }
    .testi-box-text {
        font-size: 16px;
    }
    .slick-arrow{
        width: 50px;
        height: 50px;
    }
    .slick-prev{
        left: -75px;
    }
    .slick-next{
        right: -75px;
    }
    .gallery-slider {
        .slick-list {
            padding: 120px 0 !important;
        }
        .slick-slide {
            transform: scale(1.4);
        }
        & .slick-center {
            transform: scale(1.9);
        }
        .slick-arrow {
            width: 64px;
            height: 64px;
        }
    }
    .destination {
        .section-title{
            margin-bottom: 18px;
        }
        h5 {
            font-size: 20px;
            width: 75%;
            margin-bottom: 20px;
        }
    }
    .latest-content {
        padding: 15px;
    }
    .latest-date {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .latest-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .read-more {
        font-size: 18px;
    }
    .cta-banner {
        margin-block: 50px;
        & .section-title {
            font-size: 37px;
        }
    }
    .cta-banner-box{
        padding: 35px 30px;
    }
    .location-container {
        a {
            font-size: 16px;
            img{
                width: 15px;
            }
        }
    }
    footer{
        padding-top: 45px;
        .logo{
            width: 324px;
        }
        p {
            font-size: 16px;
        }
        .footer-title {
            font-size: 23px;
            margin-bottom: 20px;
        }
        ul li a, p a {
            font-size: 16px;
        }
    }
    .footer-contact p {
        padding-left: 55px;
    }
    .footer-contact p span {
        width: 41px;
        height: 41px;
        padding: 12px;
        transform: translateY(-32px);
    }
    .footer-contact h5{
        font-size: 17px;
        margin-left: 55px;
    }
    .social-links {
        a {
            width: 54px;
            height: 54px;
            padding: 14px;
        }
    }
    .location-container{
        padding-block: 10px;
    }
    .copyright {
        padding-block: 30px;
        p {
            font-size: 15px;
        }
    }
    .love-problem {
        margin-bottom: 80px;
    }
    .gallery{
        margin-bottom: 60px;
    }
    .destination {
        margin-bottom: 70px;
    }
    .inner-banner {
        h1 {
            font-size: 50px;
            line-height: 115%;
            margin-bottom: 0;
        }
    }
    .here {
        .section-title {
            margin-bottom: 15px;
            font-size: 36px;
        }
        h5 {
            font-size: 22px;
            margin-bottom: 20px;
        }
    }
    .genuine {
        & .service-box {
            .service-img {
                height: 286px;
            }
        }
    }
    .rid-vector {
        width: 550px;
    }
    .rid {
        &::before {
            width: 20%;
            height: 30%;
        }
    }
    .location-why-choose-icon {
        width: 84px;
        height: 84px;
        padding: 18px;
    }
    .location-why-choose{
        padding-right: 13%;
        .section-title {
            margin-bottom: 20px;
        }
    }
    .location-why-choose-card {
        gap: 15px;
        margin-bottom: 20px;
        h4 {
            font-size: 26px;
            margin-bottom: 6px;
        }
    }
    .location-why-choose-text {
        p {
            font-size: 14px;
        }
    }
    .location-why-choose-vector{
        width: 390px;
    }
    .faq {
        .dec {
            font-size: 17px;
            margin-bottom: 15px;
        }
    }
    .accordion__item .accordion__title {
        font-size: 18px;
        line-height: 140%;
        padding: 10px 80px 10px 20px;
    }
    .accordion__item .accordion__content {
        padding: 0 60px 10px 20px;
        p {
            font-size: 14px;
        }
    }
    .accordion__title::after {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 6px;
        right: 8px;
    }
    .location-item a {
        font-size: 20px;
        padding: 25px 25px;
        padding-left: 50px;
    }
    .location-item a::before {
        width: 20px;
        height: 29px;
        background-size: contain;
    }
    .locations {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    #search {
        max-width: 480px;
        padding: 16px 20px;
        font-size: 22px;
        margin-bottom: 40px;
    }
    .serve {
        .primary-btn {
            font-size: 19px;
            padding: 15px 34px;
        }
    }
    .adipiscing {
        .section-title {
            font-size: 30px;
            margin-bottom: 10px;
        }
    }
    .location-details-banner{
        margin-block: 60px;
        margin-top: 0;
    }
    .blog-listing {
        .latest-title {
            font-size: 18px;
            margin-bottom: 20px;
        }
    }
    .blog-details {
        h1{
            font-size: 44px;
        }
        h2 {
            font-size: 28px;
        }
        h3 {
            font-size: 24px;
        }
        h4 {
            font-size: 20px;
        }
        ul, & ol {
            li {
                font-size: 16px;
                margin-bottom: 20px;
            }
        }
        ol{
            li{
                line-height: 172.095%;
                margin-bottom: 10px;
                &::before {
                    width: 28px;
                    height: 28px;
                    font-size: 14px;
                }
            }
        }
    }
    .side-bar-content {
        h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        ul {
            & li {
                margin-bottom: 4px;
                a {
                    font-size: 15px;
                    line-height: 240.947%;
                }
            }
        }
    }
    .recent-blog-img {
        width: 100px;
        height: 69px;
    }
    .recent-blog-card {
        h4 {
            font-size: 14px;
            margin-bottom: 3px;
        }
        .recent-date {
            font-size: 13px;
            margin-bottom: 0;
        }
    }
    .location-name {
        font-size: 16px;
        img {
            width: 13px;
        }
    }
    .marquee-container {
        padding: 5px;
    }
    .cta-vector {
        width: 260px;
    }
}
@media (max-width: 1024px) {}
@media (max-width: 992px) {
    .left {
        display: none;
    }
    .popup .popup__content {
        width: 70%;
    }
    header {
        padding-block: 8px;
    }
    #menu {
        padding-inline: 10px;
    }
    #menu .main-menu ul li.current-menu-item ul li a {
        color: #FFF;
    }
    #menu>.main-menu>ul>li>a{
        padding: 22px 25px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .banner-content {
        h1 {
            font-size: 57px;
            margin-bottom: 5px;
        }
        h5 {
            font-size: 28px;
            margin-bottom: 2px;
        }
    }
    .dec {
        font-size: 20px;
    }
    .header-call{
        .header-call-text{
            display: none;
        }
    }
    .header-wp{
        gap: 6px;
        border-radius: 8px;
    }
    .primary-btn {
        font-size: 16px;
        padding: 17px 20px;
    }
    .flex-box {
        gap: 10px;
    }
    .about-sibnath {
        position: relative;
    }
    .about {
        padding-top: 0;
    }
    .about-vector{
        width: 70%;
    }
    .about-sibnath {
        justify-content: flex-end;
        padding-top: 40px;
        padding-right: 50px;
    }
    .about-sibnath-img{
        width: 460px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-sub {
        font-size: 24px;
        margin-bottom: 5px;
    }
    .about-content {
        padding-block: 25px;
        padding-right: 20px;
        background: #2a2828eb;
        box-shadow: -340px 0px 0px #2a2828eb;
    }
    .find-us-box {
        height: 110px;
        padding: 12px;
    }
    .service-content {
        .primary-btn {
            font-size: 16px;
        }
        h4{
            line-height: 110.333%;
        }
    }
    .renowned {
        .renowned-content {
            padding-block: 30px;
        }
        h5 {
            font-size: 22px;
            padding: 8px 50px;
        }
    }
    .call-icon {
        width: 59px;
        height: 59px;
        padding: 16px;
    }
    .call-btn {
        font-size: 28px;
        small {
            font-size: 16px;
        }
    }
    .counter {
        & .row {
            .col:nth-child(2) {
                &::after {
                    display: none;
                }
            }
        }
    }
    .love-problem {
        margin-bottom: 40px;
        .container {
            height: 480px;
        }
    }
    .service-img {
        height: 273px;
    }
    .prominent {
        .service-content {
            padding: 15px;
            h4 {
                font-size: 24px;
                margin-bottom: 2px;
            }
        }
        .service-img {
            height: 205px;
        }
    }
    .why-choose {
        background: #872010;
        img {
            position: relative;
            width: 100%;
            margin-bottom: -10px;
        }
    }
    .why-choose-content {
        padding: 30px 0 30px 0;
    }
    .slick-slide {
        margin: 0 10px;
    }
    .slick-list {
        margin: 0 -10px;
    }
    .testi-box {
        h4 {
            font-size: 24px;
        }
    }
    .testi-slider{
        padding-inline: 40px;
    }
    .slick-prev {
        left: -25px;
    }
    .slick-next {
        right: -25px;
    }
    .gallery{
        margin-bottom: 30px;
        padding-bottom: 90px;
    }
    .gallery-slider{
        margin-top: -35px;
        .slick-list {
            padding: 85px 0 !important;
        }
        .slick-arrow{
            width: 54px;
            height: 54px;
            top: unset;
            bottom: -30%;
            left: 42%;
        }
        .slick-next{
            left: 52%;
        }
    }
    .destination{
        text-align: center;
        margin-bottom: 30px;
        .row{
            .col-lg-5{
                order: -1;
            }
        }
        h5{
            margin-inline: auto;
        }
        .btn-group{
            justify-content: center;
        }
        .destination-box{
            background-position: center;
        }
    }
    .destination-img {
        border-width: 8px;
        width: 300px;
        margin-inline: auto;
    }
    .cta-banner-box {
        padding: 20px;
        .call-icon {
            width: 49px;
            height: 49px;
            padding: 12px;
        }
        .call-btn{
            padding-top: 5px;
            padding-bottom: 10px;
            padding-inline: 10px;
        }
    }
    footer{
        .col-lg-5{
            text-align: center;
        }
        .logo {
            width: 270px;
            margin-inline: auto;
            margin-bottom: 5px;
        }
        &::before{
            width: 70%;
            background-position: right;
        }
    }
    .social-links {
        justify-content: center;
        a {
            width: 46px;
            height: 46px;
            padding: 12px;
        }
    }
    .copyright{
        flex-direction: column;
        text-align: center;
        p{
            line-height: 50%;
        }
    }
    .fixed-contact {
        right: 5px;
    }
    .inner-banner {
        height: 300px;
        .banner-content {
            width: 60%;
        }
        h1 {
            font-size: 40px;
            line-height: 115%;
            margin-bottom: 0;
        }
    }
    .here{
        .row{
            .col-lg-5{
                order: -1;
            }
        }
        .section-title {
            margin-bottom: 10px;
            font-size: 32px;
        }
        p {
            margin-bottom: 20px;
        }
        h5 {
            font-size: 19px;
            margin-bottom: 10px;
        }
    }
    .rid{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        &::before {
            width: 20%;
            height: 10%;
        }
    }
    .rid-vector {
        width: 475px;
    }
    .location-why-choose{
        padding-inline: 30px;
    }
    .location-why-choose-vector {
        width: 320px;
    }
    .faq{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .faq-img {
        padding-left: 0;
    }
    .faq-vector {
        height: auto;
        width: 700px;
    }
    .related-slider {
        .slick-arrow {
            width: 54px;
            height: 54px;
            top: -50px;
        }
    }
    .related-service {
        .service-content {
            padding: 20px;
        }
    }
    .location-item a::before {
        width: 17px;
        height: 22px;
    }
    .location-item a {
        padding: 22px 22px;
        padding-left: 45px;
    }
    #search {
        max-width: 400px;
        padding: 12px 20px;
        font-size: 18px;
        margin-bottom: 30px;
        border-radius: 9px;
    }
    .adipiscing {
        .section-title {
            font-size: 24px;
        }
    }
    .location-details-banner {
        margin-block: 40px;
        margin-top: 0;
    }
    
    .blog-details {
        & h1 {
            font-size: 36px;
        }
        .latest-date {
            margin-bottom: 15px;
        }
    }
    .blog-details-img {
        margin-bottom: 20px;
    }
    .side-bar-content{
        margin-bottom: 20px;
        padding: 15px 20px;
        ul{
            li{
                display: inline-block;
                margin-right: 10px;
            }
        }
    }
    .recent-post {
        padding: 0;
    }
    .marquee-container {
        border-radius: 8px;
    }
}
@media (max-width: 575px) {
    .form-title {
        font-size: 20px;
    }
    .popup .popup__content {
        width: 90%;
    }
    form .primary-btn {
        padding: 12px 28px;
    }
    .popup .popup__content .close {
        position: absolute;
        width: 30px;
        height: 30px;
    }
    .popup .popup__content .close span{
        width: 15px;
    }
    .sec-gap {
        padding: 21px 0;
    }
    p{
        font-size: 14px;
    }
    .header-wp{
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        background: transparent;
        img {
            width: 38px;
        }
        span{
            display: none;
        }
    }
    .logo{
        width: 150px;
    }
    .header-call-icon {
        width: 40px;
        height: 40px;
        padding: 11px;
    }
    .hamburger {
        top: -2px;
        right: 2px;
    }
    .flex-box{
        margin-right: 50px;
    }
    #menu .main-menu{
        top: 58px;
        ul {
            margin-top: 30px;
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 18px 20px;
    }
    .banner{
        height: 340px;
    }
    .banner-content{
        width: 100%;
        padding-top: 95px;
        h1{
            font-size: 37px;
        }
        h5 {
            font-size: 19px;
        }
        .dec{
            margin-bottom: 6px;
        }
    }
    .banner-vector {
       display: none;
    }
    .banner-vector2{
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        top: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
    }
    .dec {
        font-size: 15px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 8px;
    }
    .about-vector {
        width: 100%;
    }
    .about-sibnath {
        padding-top: 40px;
        padding-right: 0;
    }
    .about-sibnath-img {
        width: 270px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-sub {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .about-content {
        box-shadow: none;
        text-align: center;
        padding: 15px;
        padding-block: 20px;
        .btn-group{
            justify-content: center;
        }
    }
    .about {
        padding-bottom: 20px;
    }
    .find-us-box{
        border-radius: 7px;
        height: 85px;
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .service-content {
        h4 {
            font-size: 18px;
        }
        .primary-btn{
            font-size: 14px;
            padding: 12px 16px;
        }
    }
    .secvice-call {
        width: 42px;
        height: 42px;
        padding: 12px;
    }
    .secvice-wp{
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .service-img {
        height: 270px;
    }
    .renowned {
        h5 {
            font-size: 16px;
            padding: 8px 50px;
            line-height: 130%;
            padding: 6px 10px;
        }
        .btn-group {
            flex-direction: column;
            gap: 15px;
            margin-top: -30px;
        }
        .renowned-content {
            background-position: center;
        }
    }
    .mb-60 {
        margin-bottom: 20px;
    }
    .call-icon {
        width: 49px;
        height: 49px;
        padding: 14px;
    }
    .call-btn {
        font-size: 22px;
        gap: 10px;
        small {
            font-size: 12px;
        }
    }
    .renowned-img {
        height: 200px;
    }
    .counter-icon{
        width: 45px;
        left: 20px;
    }
    .counter-item {
        padding-left: 80px;
        h3 {
            font-size: 42px;
        }
        p {
            font-size: 14px;
        }
    }
    .counter {
        & .col {
            &::after {
                display: none;
            }
        }
    }
    .love-logo {
        width: 180px;
    }
    .love-problem {
        .container {
            height: 360px;
        }
    }
    .love-content {

        h5 {
            font-size: 15px;
            transform: translateX(0);
        }
        .header-wp {
            font-size: 20px;
            width: auto;
            height: auto;
            background: #F12B0D;
            padding: 5px 10px;
            .love-wp-icon{
                display: flex;
                width: 38px;
                height: 38px;
                padding: 7px;
                border-radius: 8px;
            }
            span{
                display: block;
            }
        }
    }
    .prominent {
        .secvice-wp {
            width: 42px;
            height: 42px;
            border-radius: 7px;
        }
        .service-content {
            h4 {
                font-size: 18px;
            }
        }
    }
    .coma {
        width: 55px;
        height: 57px;
        padding: 15px;
        margin-bottom: -35px;
    }
    .testi-box {
        h4 {
            font-size: 20px;
            margin-bottom: 0;
        }
    }
    .rating {
        i {
            width: 15px;
            height: 15px;
            background-size: contain;
        }
    }
    .testi-box-text {
        font-size: 14px;
    }
    .slick-arrow {
        width: 40px;
        height: 40px;
    }
    .slick-prev{
        left: -8px;
    }
    .slick-next{
        right: -8px;
    }
    .gallery {
        padding-bottom: 20px;
    }
    .gallery-slider {
        .slick-list {
            padding: 30px 0 !important;
        }
        .slick-slide {
            transform: scale(0.9);
        }
        .slick-center {
            transform: scale(1);
        }
        .slick-arrow {
            width: 34px;
            height: 34px;
            bottom: -16%;
            left: 36%;
            border-width: 1px;
        }
        .slick-next{
            left: 56%;
        }
    }
    .gallery{
        padding-bottom: 50px;
    }
    .destination {
        .destination-box {
            padding: 15px;
        }
        h5{
            width: 100%;
                        font-size: 14px;
        }
    }
    .latest-date {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .latest-title {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .latest-content{
        padding-top: 5px;
    }
    .read-more {
        font-size: 14px;
        gap: 4px;
        img{
            width: 20px;
        }
    }
    .cta-banner {
        margin-block: 10px;
        .section-title {
            font-size: 26px;
        }
    }
    .cta-vector {
        display: none;
    }
    .location-container {
        border-radius: 6px;
        a {
            img {
                width: 13px;
            }
        }
    }
    footer{
        .logo{
            width: 200px;
        }
        p {
            font-size: 14px;
        }
        .footer-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        ul li a, p a {
            font-size: 14px;
        }
        .col-md-5{
            text-align: center;
        }
        &::before {
            width: 117%;
        }
    }
    .footer-contact h5{
        font-size: 15px;
        margin-left: 50px;
    }
    .footer-contact p {
        padding-left: 50px;
    }
    .copyright {
        p {
            font-size: 13px;
            line-height: 120%;
        }
    }
    .fixed-call {
        width: 40px;
        height: 40px;
        padding: 12px;
    }
    .fixed-wp {
        width: 39px;
        height: 39px;
    }
    .inner-banner {
        height: 270px;
        h1 {
            font-size: 28px;
        }
        .banner-content {
            width: 90%;
            padding-top: 65px;
        }
    }
    .here {
        .section-title {
            margin-bottom: 5px;
            font-size: 22px;
        }
        p {
            margin-bottom: 10px;
        }
        h5 {
            font-size: 15px;
            margin-bottom: 10px;
        }
    }
    .btn-group {
        gap: 10px;
    }
    .genuine {
        & .service-box {
            .service-img {
                height: 284px;
            }
        }
    }
    .genuine-slider {
        .slick-arrow {
            width: 38px;
            height: 38px;
        }
    }
    .rid-vector {
        width: 250px;
    }
    .rid {
        padding-block: 30px;
        .section-title {
            margin-bottom: 5px;
        }
        p {
            margin-bottom: 5px;
        }
    }
    .location-why-choose {
        padding-inline: 10px;
    }
    .location-why-choose-icon {
        width: 54px;
        height: 54px;
        padding: 10px;
    }
    .location-why-choose-card {
        gap: 8px;
        h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .location-why-choose-text{
        width: 77%;
        p{
            line-height: 115.889%;
        }
    }
    .location-why-choose-vector {
        width: 160px;
    }
    .faq-vector {
        width: 340px;
    }
    .faq {
        .dec {
            font-size: 15px;
            margin-bottom: 10px;
        }
    }
    .accordion__item {
        margin: 10px auto;
        border-radius: 6px;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        line-height: 125%;
        padding: 10px 50px 10px 10px;
    }
    .accordion__item .accordion__content{
        padding: 0 20px 10px 10px;
    }
    .accordion__title::after {
        width: 28px;
        height: 28px;
        font-size: 16px;
        top: 14px;
        right: 5px;
    }
    .related-slider {
        .slick-arrow {
            width: 34px;
            height: 34px;
            top: -36px;
        }
        .slick-prev{
            right: 45px;
        }
    }
    #search {
        max-width: 300px;
        padding: 12px 12px;
        font-size: 14px;
        margin-bottom: 20px;
        border-radius: 5px;
    }
    .locations {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 8px;
    }
    .location-item a{
        font-size: 14px;
        padding: 13px 10px;
        padding-left: 25px;
    }
    .location-item a::before {
        width: 10px;
        height: 13px;
        left: 10px;
    }
    .serve {
        .primary-btn {
            font-size: 14px;
            padding: 10px 24px;
        }
    }
    .adipiscing {
        .section-title {
            font-size: 19px;
            margin-bottom: 5px;
        }
    }
    .location-details-banner{
        margin-block: 10px;
        margin-top: 0;
    }
    .blog-banner {
        height: 190px;
    }
    .blog-listing {
        .latest-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
    }
    .blog-details-img {
        margin-bottom: 10px;
    }
    .blog-details {
        & h1 {
            font-size: 26px;
                    margin-bottom: 5px;
        }
        .latest-date {
            margin-bottom: 10px;
        }
        h2 {
            font-size: 22px;
                    margin-bottom: 5px;
        }
        h3 {
            font-size: 18px;
                    margin-bottom: 5px;
        }
        h4{
            font-size: 15px;
        }
        ul, & ol{
            margin-bottom: 10px;
            li{
                font-size: 14px;
                line-height: 130.095%;
            }
        }
        ul{
            li{
                margin-bottom: 5px;
            }
        }
        ol{
            li{
                padding-left: 25px;
                &::before {
                    width: 18px;
                    height: 18px;
                    font-size: 10px;
                    top: 2px;
                }
            }
        }
    }
    .event-pagination {
        display: block;
        margin-top: 15px;
        .event-arrow {
            margin-bottom: 10px;
            width: 170px;
            height: 64px;
            gap: 5px;
            font-size: 12px;
            .arrow {
                font-size: 14px;
            }
        }
    }
    .event-arrow.next{
        margin-left: auto;
    }
    .img {
        width: 85px;
        height: 45px;
    }
    .side-bar-content {
        padding: 10px 15px;
        & ul {
            & li {
                margin-right: 5px;
                a {
                    font-size: 14px;
                    line-height: 210.947%;
                }
            }
        }
    }
    .recent-post {
        padding: 0;
    }
    .recent-blog-card {
        padding: 10px;
        gap: 10px;
        margin-bottom: 7px;
        h4{
            font-size: 14px;
            line-height: 120%;
        }
    }
    .location-name {
        font-size: 15px;
        padding: 7px 12px;
        img {
            width: 10px;
        }
    }
    .marquee-container {
        border-radius: 6px;
    }
}
.form-group p{
	margin-bottom: 2px;
}
#pagination {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

#pagination li {
    display: inline
}

#pagination li a,
#pagination li span {
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: #9C9C9C;
    font-size: 20px;
    font-family: 'Work Sans Medium';
    font-weight: 500;
}

#pagination li a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

#pagination li.active a {
    color: #95C12B;
}

#pagination li:hover:not(.active) a {
    background-color: #ddd;
}