/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #3A7BBD;
}
html::-webkit-scrollbar-thumb {
    background-color: #72CA40;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-size: 20px;
    font-family: "Manrope Regular";
    font-weight: 400;
    color: #171717;
}
a,
a:hover,
a:focus {
    color: #ffffff;
    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 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: -10px;
    top: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
}
.call {
    width: 55px;
    height: 55px;
    background-color: #FFD900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(211deg) brightness(115%) contrast(115%);
    }
}
.enq-btn {
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    font-family: 'Manrope Bold';
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #177EE5 0%, #1B548E 100%);
    width: 59px;
    height: 157px;
    z-index: 1;
    &:after{
    inset: 0;
    background: linear-gradient(90deg, #379729 0%, #249E11 100%);
    content: "";
    z-index: -1;
    position: absolute;
    scale: 0 1;
    transition: all .5s;
    transform-origin: right;
    }
    &:hover:after{
        scale: 1 1;
    }
}
.call-wp {
    position: fixed;
    bottom: 5%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
.call:hover,
.fw:hover {
    transform: scale(1.1);
}
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-style: normal;
    font-style: normal;
}
/* 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: #000;
    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: #FFD900;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #ffffff;
}
.popup .popup__content .close:hover span {
    background-color: #15222B;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #000;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
    background: url(../img/banner.webp);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
        background-position: 65%;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: #00000073;

    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: #379729;
    .primary-btn{
        border: 0;
        cursor: pointer;
        &:hover {
            background: #FFF;
            color: #000;
        }
    }
    label,.title{
        color: #fff;
    }
    .form-control{
        background: #FFF;
    }
    .form-control:focus {
        border-color: #FFD900;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
    color: #202020;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.dec{
    color: #212121;
font-family: "Manrope Medium";
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 170%;
}
.title {
    color: #FFF;
    font-family: "Manrope Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
}
.section-title {
    color: #131713;
    font-family: "Manrope Bold";
    font-size: 52px;
    font-style: normal;
    font-weight: normal;
    line-height: 115.385%;
}
.card-title{
    color: #000;
font-family: "Manrope Bold";
font-size: 24px;
font-style: normal;
font-weight: normal;
line-height: 108.333%;
text-transform: capitalize;
}
.small-line {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 24px;
    background: #379729;
    width: 26px;
    height: 1px;
}
.primary-btn {
border-radius: 60px;
background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
padding: 16px 24px;
display: inline-block;
color: #FFF;
font-family: "Manrope Bold";
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 14px; /* 77.778% */
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
overflow: hidden;
letter-spacing: 0.5px;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background: linear-gradient(90deg, #379729 0%, #249E11 100%);
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #fff;
}
.secondary-btn {
    background: linear-gradient(90deg, #379729 0%, #249E11 100%);
    &:after{
        background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
    }
}
.call-btn{
    box-shadow: none;
    background: transparent;
    border: none;
    color: #379729;
    gap: 8px;
    padding-block: 0;
    font-family: "Manrope ExtraBold";
    font-size: 25px;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
    img{
            filter: brightness(0) saturate(100%) invert(43%) sepia(67%) saturate(569%) hue-rotate(66deg) brightness(98%) contrast(85%);
        }
    small{
        font-family: "Manrope Medium";
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: 14px;
    }
    &:hover{
        color: #177EE5;
        img{
            filter: brightness(0) saturate(100%) invert(38%) sepia(53%) saturate(1890%) hue-rotate(186deg) brightness(98%) contrast(88%);
        }
        &::after, &::before{
            display: none;
        }
    }
    img{
        margin-top: 9px;
    }
}
.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}
.form-control:focus {
    border-color: #039021;
}
form .btn-group {
    justify-content: center;
}
.form-group {
    margin-bottom: 10px;
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}
.form-group {
    position: relative;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

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

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

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

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

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

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

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

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
header {
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    background: #00000000;
    padding-block: 40px;
    transition: all .5s;
    .menu-btn{
        background: linear-gradient(90deg, #379729 0%, #249E11 100%);
        &::after{
            background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
            box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.15);
        }
    }
}

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

.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background: linear-gradient(1deg, #000 0%, #167ac6 100%);
    padding-block: 10px;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social a{
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    stroke-width: 1px;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.social a:hover{
    transform: scale(1.2);
    border-color: #FFD900;
    img{
        filter: brightness(0) saturate(100%) invert(70%) sepia(92%) saturate(530%) hue-rotate(0deg) brightness(104%) contrast(104%);
    }
}
.mobile-menu{
    display: none;
}
/************************************* Home Page **************************************/
.banner {
    overflow: hidden;
    position: relative;
    height: 93dvh;
    .banner-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
    .banner-content{
        position: relative;
        width: 50%;
        z-index: 1;
        h5{
            color: #177EE5;
            font-family: "Manrope Medium";
            font-size: 27px;
            font-style: italic;
            font-weight: 500;
            line-height: 34px;
        }
        h1{
            color: #008A27;
            font-family: "Manrope Light";
            font-size: 52px;
            font-style: normal;
            font-weight: 300;
            line-height: 115.385%;
            span{
                font-family: "Manrope ExtraBold";
            }
        }
        p{
            color: #000;
            font-family: "Manrope Medium";
            font-size: 22px;
            font-style: normal;
            font-weight: 500;
            line-height: 154.545%;
        }
    }
    
}
.mobile-banner-img{
    display: none;
}
.btn-group {
    display: flex;
    gap: 25px;
}
.cta-bar{
    margin-top: -53px;
    .flex-box{
        position: relative;
        border-radius: 0px 441.5px 441.5px 0px;
        background: linear-gradient(180deg, #72CA40 0%, #008A27 100%);
        justify-content: space-between;
        padding-block: 15px;
        padding-right: 60px;
        width: 90%;
        clip-path: inset(0vmax -60vmax);
        &::after{
            content: "";
            position: absolute;
            inset: 0vmax 0vmax 0vmax -18vmax;
            background: linear-gradient(174deg, #72CA40 0%, #008A27 100%);
            z-index: -1;
            border-radius: 0px 441.5px 441.5px 0px;
        }
        .content {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 50%;
}
        p{
            color: #FFF;
            font-family: "Manrope Bold";
            font-size: 36px;
            font-style: normal;
            font-weight: normal;
            line-height: 108.333%;
            margin: 0;
        }
        .number{
            color: #FFF;
            font-family: "Manrope ExtraBold";
            font-size: 55px;
            font-style: normal;
            font-weight: 800;
            line-height: 36.364% ;
            a{
                display: flex;
                align-items: center;
                gap: 14px;
            }
        }
    }
}
.service-item{
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 21px;
    z-index: 1;
    .service-img{
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin-bottom: -4px;
    }
    &:after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.48) 100%);
        z-index: 1;
    }
    .title{
        position: absolute;
        bottom: 50px;
        left: 0;
        right: 0;
        text-align: center;
        z-index: 2;
        transition-delay: .5s;
    }
    .overlay-content {
    position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.5s ease;
  z-index: 2;
  border-radius: 45px 45px 21px 21px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  padding: 25px;
  opacity: 0;
    img{
        margin-bottom: 10px;
    }
    .title{
        position: relative;
        bottom: unset;
        margin-bottom: 18px;
    }
    p{
        color: #fff;
    }
    .primary-btn{
        gap: 6px;
        padding-inline: 54px;
        padding-block: 18px;
        img{
            margin-bottom: 0;
        }
    }
    }
    &:hover{
        .title{
            opacity: 0;
            transition-delay: .5s;
        }
        .overlay-content{
            transition: 0.5s ease;
            opacity: 1;
            .title{
                opacity: 1;
            }
        }
    }

}
.why-choose-us{
    background: #F1F4F0;
    padding-top: 60px;
    .features-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: end;
      padding-inline: 90px;
    }

    .features-left,
    .features-right {
      width: 32%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding-bottom: 48px;
    }
    .feature-box{
        position: relative;
        margin-bottom: 20px;
        .icon-box{
            width: 86px;
            height: 86px;
            background: #FFF;
            position: relative;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            &:after{
                content: '';
                position: absolute;
                border-radius: 50%;
                width: 97px;
                height: 97px;
                background: #FFF;
                border: 1px solid #64E01D;
                opacity: 0.44;
                filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.25));
            }
        }
        &:hover{
            .icon-box{
                img{
                    transform: rotateY(180deg);
                    filter: brightness(0) saturate(100%) invert(45%) sepia(74%) saturate(501%) hue-rotate(65deg) brightness(92%) contrast(86%);
                }
            }
            .card-title{
                color: #379729;
            }
        }
    }
    .features-left{
        text-align: right;
        .feature-box{
            padding-right: 107px;
            &:first-child, &:last-child{
                transform: translateX(40px);
            }
        }
        .icon-box{
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
        }
    }
    .features-right{
        text-align: left;
        .feature-box{
            padding-left: 107px;
            &:first-child, &:last-child{
                transform: translateX(-40px);
            }
        }
        .icon-box{
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
    }
    .center-image {
      width: auto;
      display: flex;
      justify-content: center;
    width: 36%;
    }

}
.before-after-box{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    img{
        width: 100%;
    }
    .flex {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
}
    .tag{
        width: 123px;
        height: 49px;
        flex-shrink: 0;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.89); 
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        font-family: "Manrope SemiBold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 26px;
    }
}
.before-after-slider{
    .item.slick-slide {
  transform: scale(0.9) ;
  transition: all .5s;
}
.item.slick-slide.slick-center {
  transform: scale(1);
}
.slick-dots li button {
    width: 78px;
    height: 3px;
    padding: 0;
    border-radius: 0;
    background: #dbdbdb00;
    &::before{
        display: none;
    }
}
.slick-dots li {
    width: 10px;
    height: 0px;
    transform: translateY(5px);
}
.slick-dots li.slick-active button {
    background: #379729;
}
.slick-dots {
    bottom: -50px;
    border-bottom: 1px solid #D9D9D9;
    width: 66%;
    left: 50%;
    transform: translateX(-50%);
}
}
.cta{
    background-image: url(../img/amazing-cta-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
}
.cta-content {
    border-radius: 441.5px 0px 0px 441.5px;
    background: linear-gradient(180deg, #72CA40 0%, #008A27 100%);
    width: 56%;
    margin-left: auto;
    padding-block: 60px;
    padding-left: 120px;
    padding-right: 16%;
    h2{
        color: #FFF;
        font-family: "Manrope Bold";
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 113.433%;
    }
    p{
        color: #FFF;
        font-family: "Manrope Medium";
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 141.667%;
    }
    .primary-btn{
        background: #000000;
        &::after{
            background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
        }
    }
}
.locations{
    border-radius: 31px;
border: 1px solid #EDEDED;
background: #FFF;
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
padding: 30px;
padding-right: 12%;
width: 60%;
    ul{
        display: flex;
        flex-wrap: wrap;
        li{
            color: #000000;
            font-family: "Manrope Medium";
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: 265%;
            position: relative;
            padding-left: 30px;
            width: 50%;
            &::before{
                content: '';
            position: absolute;
            background-image: url(../img/map-marker.webp);
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            background-repeat: no-repeat;
            }
        }

    }
}
.map{
    iframe{
        width: 594px;
        height: 765px;
        border-radius: 26px;
        border: 0;
        transform: translate(-102px, 20px);
    }
}
.areas-map{
    display: flex;
    align-items: flex-start;
}
.testimonials {
    background: #F1F4F0;
}
/*******************************
Faq 
*******************************/
.faq{
    .section-title{
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-bottom: 1px solid #CDCDCD;
    background: #FFF;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #000000;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-family: "Manrope Bold";
    line-height: 125%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title::after {
    content: ' ';
    position: absolute;
    background: url(../img/faq-arrow.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    right: 16px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    p{
        color: #202020;
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 166.667%;
    }
}
.your-office-shine{
    .container{
        position: relative;
        border-radius: 35px;
        overflow: hidden;
        padding: 0;
        .cta-banner{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .content-box {
            position: absolute;
            z-index: 1;
            left: 40px;
            top: 50%;
            transform: translateY(-50%);
            width: 39%;
            h2{
                color: #008a27;
                font-family: "Manrope Bold";
                font-size: 35px;
                font-style: normal;
                font-weight: normal;
                line-height: 149.429%;
                margin-bottom: 8px;
            }
            p{
                color: #000;
            }
        }
    }
}

/****************************
        Footer
******************************/
footer {
    width: 100%;
    padding-top: 45px;
    background: #1B1B1B;
    .logo{
        margin-bottom: 30px;

    }
}

.footer-title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    font-family: "Manrope Bold";
    line-height: 60%;
    margin-bottom: 0;
}
.contact-info p{
    position: relative;
    padding-left: 30px;
    img{
        position: absolute;
        left: 0;
        top: 5px;
    }
}
footer p,
footer p a {
   color: #E4E4E4;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px;
}
footer p a:hover {
    color: #177EE5;
}
.contact-info{
    padding-right: 14%;
}
.copyright {
    border-top: 1px solid #323232;
    padding-block: 17px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 29px;
    p{
        margin: 0;
    }
}
.copyright a {
    color: #F67809;
    text-decoration: underline;
}

textarea{
    font-family: "Manrope Regular";
}
.fadeInUp{
    animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1600px),
(max-width: 1536px) {
    
}
@media (max-width: 1440px),
(max-width: 1366px) {
header{
    .logo {
        width: 290px;
    }
    .call-btn{
        font-size: 25px;
        padding-block: 0;
    }
}
.sec-gap {
    padding: 40px 0;
}
.primary-btn {
    padding: 15px 22px;
    font-size: 16px;
}   

.logo{
    img{
        width: 50%;
    }
}
.banner {
    height: 90dvh;
    & .banner-content {
        h5 {
            font-size: 24px;
        }
        h1 {
            font-size: 45px;  
        }
        p{
            font-size: 18px;
        }
    }
   
}
.cta-bar {
    & .flex-box {
        p {
            font-size: 30px;
        }
        .number {
            font-size: 44px;
        }
    }
}
.title {
    font-size: 25px;
    line-height: 32px;
}
.why-choose-us {
    .features-container {
        padding-inline: 50px;
    }
}
.why-choose-us {
    .feature-box {
        margin-bottom: 24px;
        .icon-box {
            width: 76px;
            height: 76px;
            &:after {
                width: 87px;
                height: 87px;
            }
        }
    }
    & .features-left {
        .feature-box {
            padding-right: 94px;
        }
    }
    & .features-right {
        .feature-box {
            padding-left: 94px;
        }
    }
    .card-title {
    font-size: 17px;
}
    p {
        font-size: 13.9px;
        margin: 0;
    }
    .features-left, .features-right {
        padding-bottom: 25px;
    }
    .center-image {
        img{
            width: 88%;
        }
    }
}
.cta-content {
    padding-right: 9%;
    h2 {
        font-size: 40px;
        margin-bottom: 8px;
    }
    p {
        font-size: 22px;
    }
}
.locations {
    padding: 25px;
    padding-right: 7%;
    width: 60%;
    & ul {
        li {
        font-size: 18px;
        }
    }

}
.map {
    iframe {
        transform: translate(-80px, 20px);
        height: 690px;
    }
}
.before-after-box {
    .tag {
        height: 45px;
        font-size: 18px;
    }
}
.enq-btn {
    span {
        width: 50px;
    }
}

.section-title {
    font-size: 38px;
}
.dec {
    font-size: 14px;
    line-height: 24px;
}

.faq {
    & .section-title {
        & span {
            &::after {
                bottom: -37px;
            }
        }
    }
}

p {
    font-size: 16px;
}
.mb-60 {
    margin-bottom: 40px;
}

.accordion__item .accordion__title{
    font-size: 18px;
}
.accordion__item .accordion__content p{
    font-size: 16px;
}
.popup .popup__content {
    width: 70%;
}
footer{
    .footer-title{
        font-size: 20px;
        margin-bottom: 22px;
    }
    p{
        font-size: 16px;
    }
}
.your-office-shine {
    & .container {
        & .content-box {
            h2 {
                font-size: 30px;
            }
        }
    }
}
}
@media (max-width:1199.99px){
        .banner {
            height: auto;
        & .banner-content {
            h1 {
                font-size: 38px;
            }
            p {
                font-size: 15px;
            }
        }
    }
    .service-item {
    .overlay-content {
        padding: 15px;
        .title{
            margin-bottom: 10px;
        }
    }
}
.title {
    font-size: 20px;
    line-height: normal;
}
.why-choose-us {
    .features-container {
        padding-inline: 20px;
    }
    .card-title {
            font-size: 14px;
    }
    & .feature-box {
            .icon-box {
                width: 66px;
                height: 66px;
                &:after {
                    width: 77px;
                    height: 77px;
                }
            }
        }
                & .features-left {
            .feature-box {
                padding-right: 80px;
            }
        }
                & .features-right {
            .feature-box {
                padding-left: 80px;
            }
        }
                p {
            font-size: 12.9px;
            margin: 0;
        }
                .feature-box {
            margin-bottom: 8px;
        }
                .features-left, .features-right {
            padding-bottom: 10px;
        }
}
    .cta-bar {
        & .flex-box {
            p {
                font-size: 24px;
            }
            .number {
                font-size: 34px;
            }
        }
    }
    .cta-content {
        padding-right: 5%;
        h2 {
            font-size: 30px;
        }
        p {
            font-size: 16px;
        }
    }
    .locations {
        padding: 25px;
        padding-right: 7%;
        width: 56%;
    }
    .map {
        iframe {
            transform: translate(-70px, 20px);
            height: 644px;
            width: 408px;
        }
    }
        .your-office-shine {
        & .container {
            & .content-box {
                h2 {
                    font-size: 26px;
                }
            }
        }
    }
}

@media (max-width: 991.99px) {
.banner {
.banner-content {
    width: 55%;
    h5 {
        font-size: 16px;
        line-height: normal;
    }
    h1 {
        font-size: 30px;
    }
    p {
        font-size: 16px;
        line-height: 120%;
    }
}
.btn-group {
    gap: 16px;
}
.primary-btn {
        font-size: 13px;
        padding: 11px 14px;
    }
}
    .call {
        width: 48px;
        height: 48px;
    }
    .sec-gap{
        padding: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .dec{
        font-size: 16px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 15px 18px;
    }
    header{
        .logo {
            width: 220px;
        }
    }
    footer{
        .logo {
            width: 320px;
        }
    }
    header {
        padding-block: 10px;
        .call-btn{
            padding: 10px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(90deg, #177EE5 0%, #3A7BBD 100%);
            width: 45px;
            height: 45px;
            span{
                display: none;
            }
            img{
               margin: 0;
               filter: none !important;
            }
        }
    }
    .cta-bar {
    & .flex-box {
            padding-block: 5px;
        .content {
            width: 54%;
        }
        p {
                font-size: 17px;
        }
        .number {
            font-size: 26px;
            img{
                width: 40px;
            }
        }
    }
}
.service-item {
    .title {
        bottom: 20px;
    }
    .overlay-content {
        padding: 6px;
        opacity: 1;
        border-radius: 25px 25px 21px 21px;
        .title{
            margin-bottom: 5px;
        }
        p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    img {
            margin-bottom: 2px;
            width: 45px;
        }
    .primary-btn {
        padding-inline: 30px;
        padding-block: 13px;
        img{
            margin: 0;
            width: auto;
        }
    }
    }
}
    .why-choose-us {
        .features-container {
            padding-inline: 20px;
            align-items: center;
        }
    }
        .cta-content {
        padding-right: 8%;
            width: 61%;
    margin-left: auto;
    padding-block: 60px;
    padding-left: 80px;

            h2 {
            font-size: 25px;
        }
                p {
            font-size: 14px;
        }
    }
.title {
    font-size: 17px;
    line-height: normal;
}
.areas-map {
    flex-wrap: wrap;
}
    .locations {
        padding: 25px;
        padding-right: 7%;
        width: 100%;
    }
    .map {
        width: 100%;
            & iframe {
            transform: translate(0px, 0px);
            height: 440px;
            width: 100%;
            margin-top: 20px;
        }
    }
   
    .faq {
        & .section-title {
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
        .accordion__item .accordion__content p {
            font-size: 17px;
        }
    }
    
    .popup .popup__content {
        width: 70%;
    }
    .left {
        background: #101010;
    }
    footer{
        text-align: center;
        .justify-content-between {
    justify-content: center !important;
}
        .logo {
            width: 360px;
            margin-inline: auto;
        }
        .footer-title {
            font-size: 20px;
            margin-bottom: 0;
        }
    }
    .copyright {
    p {
        margin: 0;
        display: block;
        width: 100%;
    }
}
.popup{
        .title {
        font-size: 28px;
        line-height: normal;
        text-align: center;

}
.left .logo {
    padding-block: 10px;
}
}
.enq-btn {
    font-size: 16px;
    border-radius: 10px;
    width: 50px;
    height: 157px;
}
    .your-office-shine {
        & .container {
            & .content-box {
                h2 {
                    font-size: 20px;
                    margin-bottom: 0;
                }
            }
        }
    }
}
@media (max-width: 575.98px) {
.popup .popup__content {
    width: 90%;
}
.left .logo {
    width: 60%;
}
.right {
    padding: 14px;
    .primary-btn {
        padding: 10px 20px;
    }
}
.title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 6px;
}
label {
    font-size: 14px;
    margin-bottom: 2px;
}
.form-control {
    font-size: 14px;
    padding: 7px 8px;
}
.form-group {
    margin-bottom: 6px;
}

header {
    .logo {
        width: 180px;   
    }
    .call-btn{
        padding: 10px;
    }
}
footer{
    .footer-box{
        .logo {
            width: 200px;   
            margin-bottom: 10px;
        }
    }
}
.primary-btn {
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.section-title {
    font-size: 22px;
    margin-bottom: 8px;
}
.service-item {
    .overlay-content {
        padding: 20px;
                    .title {
                margin-bottom: 10px;
            }
            p {
                font-size: 14px;
                margin-bottom: 10px;
            }

    }
}
.dec {
    font-size: 15px;
line-height: 21px;
}
.sec-gap {
    padding: 10px 0;
}

.btn-group {
    gap: 8px;
}
.accordion__item .accordion__title {
    font-size: 15px;
    line-height: 17px;
}
.accordion__item {
    margin: 6px auto;
}
footer p {
    font-size: 14px;
    line-height: 20px;
}
footer ul li a, footer p a {
    font-size: 14px;
    line-height: 20px;
}
.footer-title {
    font-size: 16px;
}
.copyright {
    justify-content: center;
}
.fixed-btn{
    right: -6px;
    top: 50%;
}
.call-wp{
    width: 40px;
    right: 4px;
    gap: 4px;
}
.call {
    width: 36px;
    height: 36px;
    padding: 9px;
}
.enq-btn {
        font-size: 16px;
        border-radius: 15px;
        width: 35px;
        height: 120px;
    }
.enq-btn {
    span {
        width: 38px;
    }
}
.vertical {
    font-size: 12px;
}

.faq {
    & .section-title {
        margin-bottom: 0;
        & span {
            &::after {
                bottom: -22px;
            }
        }
    }
    .accordion__item .accordion__content p {
        font-size: 14px;
    }
    .accordion__title::after{
        width: 18px;
        height: 18px;
    }
}

.social a{
    width: 28px;
    height: 28px;
    padding: 6px;
}

    .banner {
        position: relative;
        height: 100dvh;
        .container{
            align-items: flex-start;
            padding-top: 80px;
        }
        .banner-img {
            display: none;
        }
        .btn-group {
            gap: 10px;
        }
        .primary-btn {
            font-size: 12px;
            padding: 9px 12px;
        }
        .banner-content {
            width: 100%;
            text-align: center;
            h1 {
                font-size: 28px;
            }
            p {
                font-size: 14px;
                line-height: 120%;
            }
            .btn-group{
                flex-direction: column;
                padding-inline: 40px;
            }
            .primary-btn{
                height: 40px;
            }
        }
    }
        .cta-bar {
        & .flex-box {
            justify-content: center;
            width: 85%;
            gap: 0;
            padding-block: 5px;
            flex-wrap: wrap;
            padding-right: 40px;
            padding-bottom: 15px;
            p{
                font-size: 16px;
            }
            .content {
                gap: 10px;
                width: 100%;
                img{
                    width: 24px;
                }
            }
                        & .number {
                            font-size: 20px;
                img {
                    width: 20px;
                }
            }
        }
    }
    .mobile-banner-img{
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .why-choose-us {
    .features-left, .features-right {
        width: 100%;
        gap: 10px;
        padding-bottom: 0;
    }
            & .feature-box {
                text-align: center;
            .icon-box {
                width: 66px;
                height: 66px;
                position: relative;
                margin-inline: auto;
                top: unset;
                transform: unset;
                margin-bottom: 15px;
            }
        }
        & .features-left {
            margin-bottom: 10px;
        & .feature-box {
            padding: 20px;
            background: #fff;
            border-radius: 15px;
            padding-top: 28px;
            &:first-child, &:last-child {
                transform: unset;
            }
        }
    }
    & .features-right {
        & .feature-box {
          padding: 20px;
            background: #fff;
            border-radius: 15px;
            padding-top: 28px;
            &:first-child, &:last-child {
                transform: unset;
            }
        }
    }
    .center-image {
            display: none;
    }
}
.why-choose-us {
    padding-top: 34px;
    padding-bottom: 30px;
}
.before-after-box {
    width: 95%;
    margin-inline: auto;
    .flex {
        top: 12px;
        left: 12px;
        right: 12px;
    }
    .tag {
    height: 30px;
    font-size: 14px;
    width: 80px;
}
}
.before-after-slider {
    .slick-dots {
        bottom: -22px;
        width: 90%;
    }
}
.cta-content {
    padding-right: 8%;
    width: 95%;
    margin-left: auto;
    padding-block: 30px;
    padding-left: 60px;
    h2 {
        font-size: 20px;
    }
}
header {
    .menu-btn {
        font-size: 12px;
    }
    .flex-box {
    gap: 8px;
}
.call-btn {
    width: 38px;
    height: 38px;
}
.logo {
    img {
        width: 80%;
    }
}
}
    .locations {
        padding: 15px;
        padding-right: 4%;
        width: 100%;
        border-radius: 15px;
        & ul {
            li {
                font-size: 15px;
                padding-left: 24px;
            &::before {
                height: 18px;
                background-size: 18px;
            }
            }
        }
    }
        p {
        font-size: 15px;
    }
    .map {
        & iframe {
            height: 310px;
            border-radius: 15px;
        }
    }
        .faq {
        .accordion__item .accordion__content p {
            line-height: normal;
        }
    }
        .your-office-shine {
            padding-inline: 10px;
        & .container {
            height: 224px;
            border-radius: 20px;
            position: relative;
            
            .content-box {
                left: 17px;
                width: 70%;
                background: linear-gradient(45deg, #ffffff, #ffffff9c);
                padding: 10px;
                border-radius: 10px;
            h2 {
                    font-size: 16px;
                    line-height: normal;
                }
                    p {
        font-size: 13px;
    }
        }
            .cta-banner{
                border-radius: 20px;
            }
        }
    }
        .popup {
        .title {
            font-size: 22px;
            line-height: normal;
            text-align: center;
        }
    }
        .header-call{
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        span{
            display: none;
        }
    }
}   
.testimonial-video-slider .video-card{
    display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}
.yt-img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-video-slider .video-ratio{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.testimonial-video-slider .video-ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* spacing between slick slides */
.testimonial-video-slider .slick-slide{
  padding: 0 12px;
}
.testimonial-video-slider .slick-list{
  margin: 0 -12px;
}