/**************************************
                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: #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: 18px;
    font-family: "Rubik Regular";
    font-weight: normal;
    color: #454545;
}
a,
a:hover,
a:focus {
    color: #68C43D;
    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;
}
.ms-auto{
    margin-left: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.call {
    width: 52px;
    height: 52px;
    background-color: #07A734;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.call-wp {
    position: fixed;
    bottom: 14%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.fw{
    width: 52px;
    height: 52px;
}
.call:hover,
.fw:hover {
    transform: scale(1.1);
}

/* Ultra Modern View Transitions Collection 2025 */
/* Choose any one animation set by uncommenting it */

/* Enable view transitions for navigation */
@media(prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

/* Basic settings for all animations */
::view-transition-group(*) {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}
/* ========================
   3. PARALLAX DEPTH TRANSITION (Uncomment to use)
   ======================== */

::view-transition-old(root) {
    animation: parallaxDepthOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::view-transition-new(root) {
    animation: parallaxDepthIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes parallaxDepthOut {
    0% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    50% {
        transform: perspective(1000px) translateZ(-300px) rotateX(-15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(0.7);
    }
    100% { 
        transform: perspective(1000px) translateZ(-600px) rotateX(-30deg);
        opacity: 0;
        filter: blur(15px) brightness(0.3);
    }
}

@keyframes parallaxDepthIn {
    0% { 
        transform: perspective(1000px) translateZ(600px) rotateX(30deg);
        opacity: 0;
        filter: blur(15px) brightness(1.5);
    }
    50% {
        transform: perspective(1000px) translateZ(300px) rotateX(15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(1.2);
    }
    100% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}
/* 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: #1874D7;
    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: #FFF;
}
.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/gallery5.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: linear-gradient(180deg, #00A62F 0%, #0F5723 100%);
    .form-control:focus {
        border-color: #157CDF;
    }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
    color: #454545;
    font-family: "Rubik Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 183.333%;
}
.dec{
    color: #2D2D2D;
    font-family: "Rubik Medium";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 137.5%;
    margin-bottom: 30px;
}
.title {
    color: #FFF;
    text-align: center;
    font-family: "Gilroy SemiBold";
    font-size: 38px;
    font-style: normal;
    font-weight: normal;
    line-height: 109.524%;
    text-transform: uppercase;
}
.section-title {
    color: #171717;
    font-family: "Rubik Bold";
    font-size: 58px;
    font-style: normal;
    font-weight: normal;
    line-height: 106.897%;
    text-transform: uppercase;
    margin-bottom: 13px;
    span{
        color: #008A27;
    }
}
.small-line {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 24px;
    background: #379729;
    width: 26px;
    height: 1px;
}
.primary-btn {
    border-radius: 17px;
    background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
    padding: 22px 25px;
    display: inline-block;
    color: #FFF;
    font-family: "Rubik Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 94.444%;
    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: 6px;
    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%;
background: linear-gradient(0deg, #1874D7 0%, #0863BA 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(180deg, #1874D7 0%, #0863BA 100%);
    &:after{
        border-radius: 17px;
        background: linear-gradient(180deg, #10972E 0%, #68C43D 100%);
    }
}
.call-btn{
    box-shadow: none;
    background: transparent;
    border: none;
    color: #FFF;
    gap: 8px;
    padding-block: 0;
    font-family: "Rubik SemiBold";
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    color: #008A27;
    display: flex;
    align-items: center;
    img{
        display: inline-block;
        margin-top: 10px;
    }
    small{
        font-family: "Rubik Medium";
        font-size: 19px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        color: #000;
    }
    &:hover{
        color: #177EE5;
        img{
            filter: brightness(0) saturate(100%) invert(38%) sepia(53%) saturate(1890%) hue-rotate(186deg) brightness(98%) contrast(88%);
        }
    }
}
.form-control {
    font-family: "Gilroy medium";
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 61.111%;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 12px;
    border-radius: 9px;
    -webkit-border-radius: 9px !important;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    border: 1px solid #90AA98;
    background: #F8F8F8;
    width: 100%;
    outline: none;
}


form .btn-group {
    justify-content: center;
    margin-top: 10px;
}
form .primary-btn{
    background: #1874D7;
    border: none;
    cursor: pointer;
        &:hover {
        background: #FFF;
        color: #1874D7;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-family: "Gilroy SemiBold";
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
.form-control::placeholder {
    color: #818181;
    font-family: "Gilroy medium";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 61.111%;
}
.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;
    transition: all .5s;
}
.topbar{
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0 0 20px 20px;
        background: #074887;
        padding: 11px 22px;
        p{
            font-family: "Inclusive Sans Regular";
            font-size: 19px;
            margin-bottom: 0;
            color: #FFF;
            display: flex;
            align-items: center;
            gap: 5px;
            a{
                color: #FFF;
                transition: 0.5s;
                &:hover{
                    color: #68C43D;
                }
            }
        }
    }
}
.main-menu {
    display: flex;
    align-items: center;
    gap: 70px;
}
.flex-box {
    display: flex;
}
.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: #FFF;
}
@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;
}
#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-block: 15px;
    padding-inline: 0;
}

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

#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: 'Rubik Regular';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
#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 a::after {
    content: '';
    transition: 0.5s;
    width: 0;
    position: absolute;
    bottom: 0px;
    left: 5px;
    height: 2px;
    background: #1ADB3A;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    &::after{
        width: 28px;
    }
}

#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{
    margin-right: 10px;
}
#menu>.main-menu>ul>li.has-sub>a::before {
    top: 15px;
    right: -10px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    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: #000;
    border-left-color: #000;
}

#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: 35px;
    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: 7px 20px;
    width: auto;
    font-size: 19px;
    line-height: 19px;
    text-decoration: none;
    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: #008A27;
}

#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: 100% !important;
        background: linear-gradient(180deg, #00A62F 0%, #0F5723 100%);
        transform: translateX(-100%);
        transition: all .4s;
        top: 0;
        left: 0;
        padding: 50px;
        padding-top: 100px;
        align-items: flex-start;
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
    }
    #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: #008A27;
        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: #000;
        border-bottom: 1px solid #aede9d;
        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: #FFF;
    }

    #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: 16px;
        top: 4px;
        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 #008A27;
        border-bottom: 2px solid #008A27;
        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: #008A27;
        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: #FFF;
        -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: #FFF;
        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: #ffffff73;
    }

    .flex-box{
        margin-right: 70px;
    }
    /* #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;
}
.has-sub.current-menu-item> ul li{
    a::after{
        display: none;
    }
}
/************************************* Home Page **************************************/
.banner-item{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
}
.banner-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 70px;
}
.banner-content{
    position: relative;
    width: 50%;
    z-index: 1;
    h1{
        color: #008A27;
        font-family: "Rubik ExtraBold Black";
        font-size: 88px;
        font-style: normal;
        font-weight: normal;
        line-height: 135%;
        text-transform: uppercase;
        span{
            display: inline-block;
            color: #000;
            font-family: "Rubik Regular";
            font-size: 78px;
            line-height: 102.7%;
            text-transform: none;
        }
    }
}
.ban-dec{
    color: #2C2C2C;
    font-family: "Rubik Medium";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 138.462%;
}
.btn-group {
    display: flex;
    gap: 10px;
}
.slick-dots{
    text-align: left;
    padding-left: 17%;
    bottom: 50px;
    .slick-active{
        background: #157CDF;
    }
    li{
        width: 11px;
        height: 11px;
        background: #5959594a;
        border-radius: 50%;
        margin-inline: 6px;
    }
    li button {
        opacity: 0;
        width: 100%;
    }
    &::before{
        width: 100%;
    }
}
.banner-slider{
    .slick-active{
        h1{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.7s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .primary-btn{
            animation-name: slideInRight;
            animation-duration: 0.9s;
            animation-delay: 0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .secondary-btn{
            animation-name: slideInLeft;
        }
    }
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
/***********************************
            Feature  
*************************************/
.feature-card{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: #0358A9;
    padding: 25px 10px 25px 20px;
    height: 100%;
    p{
        color: #FFF;
        font-family: "Rubik Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 0;
        width: 67%;
    }
    &:hover{
        .fea-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.deep-blue{
    background: #074887;
}
.fea-icon{
    width: 73px;
    height: 73px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff14;
    outline: 1px solid #FFF;
    outline-offset: 7px;
}
/***********************************
        About
*************************************/
.section-img{
    overflow: hidden;
    border-radius: 24px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -6px;
    }
}
.section-content{
    h5{
        color: #1874D7;
        font-family: "Rubik SemiBold";
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 116%;
        margin-bottom: 13px;
    }
}
.padd-right{
    img{
        margin-left: 30px;
    }
}
/***********************************
       Services
*************************************/
.services{
    padding-inline: 50px;
    background: #F5F5F5;
}
.service-item{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border-bottom-right-radius: 0;
    z-index: 1;
    transition: 0.5s;
    .service-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -5px;
    }
    &:after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.00) 35%);
        z-index: 1;
        transition: 0.5s;
    }
    &:hover{
        border-bottom-right-radius: 30px;
        &::after{
            opacity: 0;
        }
        .overlay-content{
            transition: 0.5s ease;
            opacity: 1;
        }
        .box-title{
            opacity: 0;
        }
    }
}
.overlay-content {
    position: absolute;
    width: 90%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    transition: 0.9s;
    z-index: 2;
    border-radius: 37px 36px 18px 18px;
    background: #0b519cd8;
    padding: 25px;
    padding-bottom: 35px;
    opacity: 0;
    .card-title{
        margin-bottom: 10px;
    }
    p{
        color: #fff;
        margin-bottom: 30px;
    }
    .btn-group{
        gap: 15px;
    }
    .primary-btn:after{
        background: #FFF;
    }
    .primary-btn:hover{
        color: #1874D7;
        border: 0;
        img{
            filter: brightness(0) saturate(100%) invert(31%) sepia(43%) saturate(4763%) hue-rotate(200deg) brightness(95%) contrast(81%);
        }
    }
    .secondary-btn{
        background: #FFF;
        color: #1874D7;
        img{
            filter: brightness(0) saturate(100%) invert(31%) sepia(43%) saturate(4763%) hue-rotate(200deg) brightness(95%) contrast(81%);
        }
    }
    .secondary-btn:after{
        background: linear-gradient(180deg, #10972E 0%, #68C43D 100%);
    }
    .secondary-btn:hover{
        color: #FFF;
        img{
            filter: unset;
        }
    }
}
.card-title{
    color: #FFF;
    font-family: "Rubik Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: uppercase;
}
.box-title{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    padding-left: 30px;
    transition: 0.4s;
    span{
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1874D7;
        padding: 15px 25px;
        color: #FFF;
        font-size: 23px;
    }
}
/***********************************
       Why Choose Us
*************************************/
.why-choose-us{
    position: relative;
    margin-bottom: 260px;
    .col-lg-9{
        margin-left: auto;
    }
}
.why-lady{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    &::after{
        content: "";
        position: absolute;
        width: 600.837px;
        height: 234.654px;
        transform: rotate(25.078deg);
        left: -140px;
        top: 30%;
        background: #008A27;
        z-index: -1;
    }
}
.why-icon{
    margin-bottom: 10px;
}
.why-card{
    border-radius: 27px;
    background: #F0F0F0;
    padding: 25px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    .card-title{
        color: #121212;
        font-size: 22px;
        margin-bottom: 5px;
        font-family: "Rubik SemiBold";
        text-transform: none;
    }
    p{
        margin-bottom: 0;
    }
    &:hover{
        box-shadow: 0px 0px 15px 10px rgb(0 0 0 / 10%);
        img{
            transform: rotateY(180deg);
        }
    }
}
/***********************************
       Why Choose Us
*************************************/
.cta{
    .container{
        padding: 0;
        border-radius: 89px 0 105.5px 0;
        background: #1874D7;
    }
}
.cta-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 60px;
    padding-block: 40px;
}
.cta-left{
    display: flex;
    align-items: center;
    gap: 30px;
    width: 70%;
    h2{
        width: 80%;
        color: #FFF;
        font-family: "Gilroy Bold";
        font-size: 48px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
}
.cta-logo{
    width: 132px;
    height: 132px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 7px solid #ffffff38;
}
.cta-call{
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Gilroy SemiBold";
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    gap: 5px;
}
.cta-right{
    p{
        color: #FFF;
          font-family: "Gilroy SemiBold";
        font-size: 21px;
        font-style: normal;
        font-weight: normal;
    }
}
.quote-btn{
    color: #FFF;
    font-family: "Gilroy SemiBold";
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 50%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.cta-call:hover,
.quote-btn:hover{
    color: #68c43d;
    img{
        filter: brightness(0) saturate(100%) invert(66%) sepia(43%) saturate(695%) hue-rotate(57deg) brightness(95%) contrast(82%);
    }
}
.quote-btn:hover{
    text-decoration-line: underline;
}
/***********************************
       Video
*************************************/
.video-box{
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    display: block;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &::before{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(41, 41, 41, 0.00) 100%);
        z-index: 1;
    }
    &:hover{
        img{
            scale: 1.1;
        }
        .video-btn{
            scale: 1.2;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
    }
}
.video-btn{
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #008A27;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    z-index: 2;
    img{
        margin-top: -5px;
        margin-right: -10px;
    }
}
.video-btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background: #008a27bb;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}
@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;
  }
}
/***********************************
       Today Service
*************************************/
.today-service{
    padding-inline: 174px;
}
.today-content{
    border-radius: 51px;
    background: #F5F5F5;
    padding-block: 70px;
}
.today-img{
    height: 100%;
    display: flex;
    align-items: start;
    gap: 20px;
    transition: 5s;
    img{
        border-radius: 24px;
        transition: 0.5s;
    }
    img:nth-child(2){
        margin-top: auto;
    }
    &:hover{
        /* img:first-child{
            transform: translateY(21%);
        }
        img:last-child{
            transform: translateY(-61%);
        } */
    }
}
/***********************************
       gallery
*************************************/
.gallery-img{
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -5px;
    }
    span{
        border-radius: 25px;
        position: absolute;
        inset: 0;
        background: #008a27;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(.9);
        font-size: 100px;
        color: #FFF;
        opacity: 0;
        transition: all .5s;
        z-index: 1;
        img{
            width: 44px;
            height: 44px;
            z-index: 1;
        }
    }
    &:hover{
        span{
            transform: scale(1);
            opacity: 0.6;
        }
    }
}
/***********************************
        Home Cleaning
*************************************/
.white-line{
    width: 98px;
    height: 3px;
    background: #FFF;
    display: inline-block;
}
.home-cleaning{
    position: relative;
    margin-bottom: 140px;
    &::before{
        content: '';
        position: absolute;
        width: 73%;
        height: 100%;
        background: #1874D7;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .section-title,p{
        color: #FFF;
    }
}
.bus{
    position: absolute;
    left: 0;
    top: 45%;
}
.book-form{
    border-radius: 26px;
    background: linear-gradient(180deg, #00A62F 0%, #0F5723 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 25px 15px;
}
/***********************************
        Testimonial
*************************************/
.testimonials{
    .container{
        img{
            width: 100%;
        }
    }
}
/*******************************
our-clients-card
*******************************/
.our-clients-card{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.06);
    height: 110px;
}
.our-clients-slider{
    .slick-slide{
        margin: 20px 30px;
    }
    .slick-list{
        margin: 0 -30px;
    }
    .slick-arrow{
        width: 26px;
        height: 26px;
        border-radius: 50%;
        z-index: 5;
        &::before {
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            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;
        }
    }
    .slick-prev {
        &::before {
            transform: translate(-50%, -50%) rotateY(180deg);
        }
    }
}
/*******************************
Faq 
*******************************/
.faq{
    background: #F8F6EE;
}
.accordion__item {
    margin: 20px auto;
    transition: .5s;
    border-bottom: 1px solid #B9B9B9;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-left: 0;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #121212;
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    font-family: "Rubik SemiBold";
    line-height: normal;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__item .accordion__content {
    display: none;
    p{
        line-height: 130.333%;
    }
}
.accordion__item.accordion-active{
    border-bottom: 2px solid #008A27;
}
/***********************************
       Featured Blogs
*************************************/
.featured-blogs{
    background: url(../img/blog-bg.webp) no-repeat center center / cover;
    .section-title{
        color: #FFF;
    }
    .btn-group{
        margin-top: 40px;
        justify-content: center;
    }
    .primary-btn::after{
        background: #FFF;
    }
    .primary-btn:hover{
        color: #0358A9;
        img{
            filter: brightness(0) saturate(100%) invert(20%) sepia(57%) saturate(3398%) hue-rotate(194deg) brightness(96%) contrast(103%);
        }
    }
}
.blog-card{
    overflow: hidden;
    border-radius: 37px;
    display: block;
    position: relative;
    height: 100%;
    transition: background 0.5s;
    &:hover{
        .blog-bg{
            scale: 1.1;
        }
        .blog-title{
            color: #68C43D;
        }
        .blog-txt{
            background: linear-gradient(0deg, rgb(0 0 0 / 88%) 20%, rgb(0 0 0 / 0%) 100%);
            box-shadow: unset;
        }
    }
}
.blog-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}
.blog-txt{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0 0 37px 37px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgb(0 0 0 / 20%) 100%);
    padding: 30px;
    box-shadow: -1px -20px 1px 300px #00000036;
    transition: 0.4s;
    .small-line{
        width: 51px;
        background: #FFF;
        display: inline-block;
        margin: 0;
    }
}
.feature{
    color: #FFF;
    font-family: "Rubik Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    border-radius: 60px;
    background: #008A27;
    padding: 10px 22px;
    display: inline-block;
    margin-bottom: 20px;
}
.blog-title{
    color: #FFF;
    font-family: "Rubik SemiBold";
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 14px;
    transition: 0.5s;
}
.date{
    color: #FFF;
    margin-bottom: 0;
}
.side-blog{
    height: 100%;
    .blog-card{
        display: flex;
        border-radius: 24px 0 24px 24px;
        gap: 30px;
        margin-bottom: 20px;
        height: auto;
        transition: 0.9s;
        img{
            width: 300px;
            height: 271px;
            border-radius: 24px;
            object-fit: cover;
            margin-bottom: -5px;
            transition: 0.5s;
        }
        &:hover{
            background: linear-gradient(0deg, rgb(0 0 0 / 88%) 20%, rgb(0 0 0 / 0%) 100%);
            .blog-txt{
                background: transparent;
            }
            img{
                border-radius: 24px 0 0 24px;
            }
        }
    }
    .blog-txt{
        position: relative;
        background: transparent;
        box-shadow: unset;
        border-radius: 0 0 20px 20px;
        padding: 0;
        .blog-title{
            font-size: 23px;
        }
    }
    .blog-card:last-child{
        margin-bottom: 0;
    }
}
/****************************
        Areas
******************************/
.locations-name{
    ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 35px;
        flex-wrap: wrap;
        li{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 10px 15px;
            border-radius: 60px;
            background: #F3F3F3;
            transition: 0.5s;
            &:hover{
                background: #68C43D;
                color: #FFF;
            }
        }
    }
}
/****************************
        Map
******************************/
.map{
    padding-bottom: 0;
    iframe{
        width: 100%;
        height: 543px;
        margin-bottom: 0;
    }
}
/****************************
        Footer
******************************/
footer {
    width: 100%;
    padding-top: 60px;
    background: #242424;
    .logo{
        margin-bottom: 20px;
    }
    .primary-btn{
        margin-bottom: 20px;
        justify-content: flex-start;
    }
}
.footer-btn{
    background: transparent;
    border: 2px solid #FFF;
    img{
        margin-left: 109px;
    }
    &:hover{
        border-color: #0E6AC5;
    }
}
.social-links{
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 50%;
        transition: 0.5s;
        &:hover{
            scale: 1.1;
            transform: translateY(-5px);
            background: #00A62F;
        }
    }
}
.footer-title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    font-family: "Rubik Regular";
    line-height: 60%;
    margin-bottom: 15px;
}
footer p,
footer p a,
footer a {
    color: #E0E0E0;
    font-family: "Rubik Regular";
    font-size: 17px;
    font-style: normal;
    font-weight: normal;
    line-height: 218.75%;
    margin-bottom: 0;
}
footer p{
    line-height: 176.471%;
}
footer p a{
    text-decoration: underline;
}
footer p a:hover {
    color: #68C43D;
}
.padd-left{
    padding-left: 20px;
}
.contact-info{
    padding-right: 14%;
}
.copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    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);
    }
}
.inner-banner{
    position: relative;
    z-index: 1;
    &::after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(94deg, rgba(255, 255, 255, 0.90) 29.17%, rgba(255, 255, 255, 0.00) 54.11%);
        z-index: 0;
    }
    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 10.58%, #FFF 65.69%);
        width: 100%;
        height: 33%;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        padding-top: 155px;
    }
    h1{
        font-family: "Rubik Bold";
        color: #000;
        font-size: 68px;
        font-style: normal;
        font-weight: normal;
        line-height: 120.588%;
        text-transform: unset;
    }
}
.blog-item{
    background: rgba(165, 200, 238, 0.24);
    border-radius:0 14px 14px 0;
    overflow: hidden;
    margin-bottom: 24PX;
    .blog-thumb{
        position: relative;
        height: 100%;
        img{
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
        }
    }
}
.blog-content {
    padding: 20px;
    p {
    color: #121212;
    font-size: 16px;
    line-height: 150%;
    .primary-btn{
        padding: 19px 25px;
    }
}
}
.blog-listing{
    .blog-title{
        color: #121212;
        font-family: "Rubik SemiBold";
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        a{
            color: #121212;
        }
    }
}
.blog-date{
    .date{
        width: 89px;
        height: 71px;
        background: #1874D7;
        color: #FFF;
        font-family: "Rubik Bold";
        font-size: 38px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .month-year {
    background: rgba(0, 0, 0, 0.60);
    display: block;
    color: #FFF;
    font-family: 'Rubik Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    padding-block: 2px;
}
}
.blog-date {
    position: absolute;
    right: 12px;
    top: 0;
}
.sidebar-service{
    border-radius: 16px;
    background: #FFF;
    padding: 0 15px;
    margin-bottom: 30px;
    h3{
        color: #121212;
        font-family: "Rubik SemiBold";
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 15px;
    }
    .small-line {
    margin-top: 5px;
    margin-bottom: 7px;
    width: 26px;
    height: 1px;
}
}
.recent-post-list{
    border-bottom: 1px solid #008A27;
    padding-bottom: 8px;
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    &:hover{
        .recent-post-content{
        h4{
            color: #10972E;
        }
    }
    }
    img{
        width: 119px;
        height: 116px;
        object-fit: cover;
        border-radius: 6px;
    }
    .recent-post-content{
        p{
        color: #6C6969;
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 14px;
        img{
            width: auto;
            height: auto;
        }
        }
        h4{
           color: #000;
            font-size: 18px;
            line-height: normal;
            font-family: "Rubik SemiBold";
            margin-bottom: 12px;
        }
        .read-more{
            color: #1874D7;
            font-size: 16px;
            font-style: normal;
            font-weight: normal;
            line-height: normal;
            font-family: "Rubik SemiBold";
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0;
            img{
                width: auto;
                height: auto;
            }
            &:hover{
                color: #008A27;
                img{
                    filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1565%) hue-rotate(123deg) brightness(93%) contrast(102%);
                    transform: translateX(-5px);
                }
            }
        }
    }
}
.sidebar-form {
    border-radius: 16px;
    background: url(../img/blog-form-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px;
    h3{
        color: #ffffff;
font-size: 26px;
font-style: normal;
line-height: 65px;
text-transform: capitalize;
display: flex;
align-items: center;
gap: 10px;
text-transform: uppercase;
margin-bottom: 20px;
border-bottom: 1px solid #fff;
padding-bottom: 10px;
    }
    .form-control{
        border-radius: 10px;
border: 1px solid #E2E0E0;
font-size: 16px;
    }
    .primary-btn{
        border: 0;
        border-radius: 17px;
        background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
        padding: 13px 40px;
        margin-top: 15px;
        &:hover{
            color: #000;
        }
    }
    .form-group {
    position: relative;
    margin-bottom: 13px;
}
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 40px;
    a{
        display: flex;
        align-items: center;
        gap: 10px;
        color: #000;
        &:hover{
            color: #008A27;
            img{
                filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1565%) hue-rotate(123deg) brightness(93%) contrast(102%);
            }
        }
    }
}
.blog-details-banner {
    padding-top: 210px;
    h1{
        color: #000;
        font-family: "Gilroy Bold";
        font-size: 54px;
        font-style: normal;
        font-weight: 400;
        line-height: 125.926%;
        margin-bottom: 30px;
    }
}
.blog-details-content{
    h2{
        color: #121212;
font-family: "Rubik SemiBold";
font-size: 30px;
font-style: normal;
font-weight: normal;
line-height: normal;
margin-bottom: 10px;
    }
    h3{
        color: #121212;
font-family: "Rubik SemiBold";
font-size: 26px;
font-style: normal;
font-weight: normal;
line-height: normal;
    }
    ul{
        margin-bottom: 30px;
        li{
            color: #454545;
            font-family: "Rubik Regular";
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 183.333%;
            position: relative;
            padding-left: 38px;
            &::before {
                content: "";
                position: absolute;
                background-image: url(../img/check-mark.webp);
                width: 25px;
                height: 25px;
                background-repeat: no-repeat;
                left: 0;
            }
        }
    }
}
.blog-details-page{
    .sidebar-service{
        border-radius: 10px;
        border: 1px solid #DFDADA;
        background: #F8FAF8;
        padding: 20px;
    }
    .recent-post-list {
    border-bottom: 1px solid #121212;
    & .recent-post-content {
        p {
            color: #008A27;
            img{
                filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1565%) hue-rotate(123deg) brightness(93%) contrast(102%);
            }
        }
        .read-more{
            color: #121212;
            img{
                filter: brightness(0) saturate(100%) invert(3%) sepia(9%) saturate(31%) hue-rotate(314deg) brightness(86%) contrast(91%);
            }
            &:hover{
                color: #008A27;
                img{
                    filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(1565%) hue-rotate(123deg) brightness(93%) contrast(102%);
                    transform: translateX(-5px);
                }
            }
        }
    }
    }
}
.category{
    margin-top: 30px;
    h3{
        margin-bottom: 0;
    }
    .small-line{
        width: 104px;
        height: 1px;
        background: #008A27;
    }
    ul{
        li{
            display: inline-block;
            a{
                border-radius: 4px;
                background: #121212;
                color: #FFF;
                font-size: 16px;
                font-style: normal;
                line-height: normal;
                text-transform: capitalize;
                display: block;
                padding: 6px 14px 6px 33px;
                position: relative;
                margin-top: 10px;
                &::before{
                    content: '';
                    background-image: url(../img/btn-arrow.webp);
                    width: 18px;
                    height: 18px;
                    background-repeat: no-repeat;
                    position: absolute;
                    left: 8px;
                    top: 50%;
                    transform: translateY(-50%);
                }
                &:hover{
                    background: #008A27;
                }
            }
        }
    }
}
.tags{
    ul{
        li{
            a{
                border-radius: 6px;
                border: 1px solid #121212;
                background: transparent;
                color: #121212;
                padding: 6px 8px;
                &::before{
                    display: none;
                }
                &:hover{
                    background: #008A27;
                    color: #fff;
                    border-color: #008A27;
                }
            }
        }
    }
}
/* =============== About Page =============== */
.about-about-sec{
    position: relative;
    .section-img{
        width: 39%;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
.miss-vis{
    .section-img{
        border-radius: 0;
    }
    .row{
        background: #F8F6EE;
    }
    .container{
        .row:first-child{
            margin-bottom: 20px;
            .col:first-child{
                padding: 0;
            }
        }
        .row:last-child{
            margin-bottom: 20px;
            .col:last-child{
                padding: 0;
            }
        }
    }
    .section-content{
        padding: 15px;
    }
}
.our-story{
    position: relative;
    img{
        position: absolute;
        left: 0;
        top: 0;
        width: 48%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .container{
        background: rgba(24, 116, 215, 0.90);
        box-shadow: 310px 0px 0px 0px rgba(24, 116, 215, 0.90);
    }
    .section-content{
        padding-block: 40px;
    }
    .section-title, h5, p{
        color: #FFF;
    }
}
.easier{
    .section-content{
        border-radius: 14px;
        border: 1px solid #BDE3C7;
        background: #F9F9F9;
        padding: 30px;
    }
    .section-img{
        border-radius: 16px;
        height: 100%;
    }
}
.icon-container{
    margin-inline: auto;
    width: 95%;
    border-radius: 16px;
    border: 1px solid rgba(11, 81, 156, 0.72);
    background: rgba(11, 81, 156, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    text-align: center;
    outline: 1px solid rgba(11, 81, 156, 0.72);
    outline-offset: 10px;
}
.easier-box{
    h4{
        color: #121212;
        font-family: "Rubik Medium";
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.5s;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
        h4{
             color: #008A27;
        }
    }
}
.our-team-box{
    border-radius: 8px;
    transition: 0.5s;
    img{
        width: 100%;
        border-radius: 8px;
        aspect-ratio: 1/0.8;
    }
    &:hover{
        background: #00A62F;
        h5, p{
            color: #FFF;
        }
    }
}
.team-txt{
    padding-top: 12px;
    padding-left: 10px;
    h5{
        color: #171717;
        font-family: "Rubik SemiBold";
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: 103.571%;
        transition: 0.5s;
    }
    p{
        color: #000;
        transition: 0.5s;
    }
}
.our-team-slider{
    .slick-slide{
        margin: 0 15px;
    }
    .slick-list{
        margin: 0 -15px;
    }
    .slick-dots{
        text-align: center;
        padding-left: unset;
        bottom: -30px;
        .slick-active{
            background: #008A27;
        }
    }
}
.core-values-box{
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid #0B519C;
    padding: 15px;
    gap: 5px;
    transition: 0.5s;
    &:hover{
        border: 1px solid #1874D7;
        background: #1874D7;
        .core-icon{
            img{
                transform: rotateY(180deg);
                filter: brightness(0) saturate(100%) invert(93%) sepia(93%) saturate(0%) hue-rotate(121deg) brightness(108%) contrast(108%);
            }
        }
        .core-txt{
            h4, p{
                color: #FFF;
            }
        }
    }
}
.core-icon{
    width: 140px;
    height: 140px;
    display: flex;
    align-items: start;
    justify-content: center;
}
.core-txt{
    width: 80%;
    padding-top: 20px;
    h4{
        color: #000;
        font-family: "Gilroy Bold";
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 85.294%;
        margin-bottom: 15px;
        transition: 0.5s;
    }
}
.counter{
    background: url(../img/counter-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 60px;
}
.counter-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.counter-item h3 {
    color: #FFF;
    text-align: center;
    font-family: "Gilroy Bold";
    font-size: 50px;
    font-style: normal;
    font-weight: normal;
    line-height: 51.786%;
    margin-bottom: 15px;
    transition: 0.5s;
}
.counter-item p {
    color: #FFF;
    text-align: center;
    font-family: "Inclusive Sans Regular";
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 130.833%;
    transition: 0.5s;
    margin-bottom: 0;
}
/* =============== Service Page =============== */
.service-banner{
    &::after{
        background: linear-gradient(86deg, rgb(255 255 255 / 40%) 41.26%, rgba(255, 255, 255, 0.00) 58.62%);
    }
    &::before{
        display: none;
    }
    .container{
        z-index: 1;
        justify-content: space-between;
    }
}
.get-in-touch-form{
    padding: 15px;
    border-radius: 20px;
    border: 2px solid rgba(199, 224, 206, 0.80);
    background: rgba(255, 255, 255, 0.96);
    .title{
        color: #008A27;
        font-family: "Rubik SemiBold";
        font-size: 38px;
        font-style: normal;
        font-weight: normal;
        line-height: 155.263%;
        text-transform: uppercase;
        text-align: left;
        position: relative;
        &::before{
            position: absolute;
            content: '';
            width: 10%;
            height: 2px;
            background: #000;
            left: 5px;
            bottom: 0;
        }
    }
    .form-control{
        border-radius: 4px;
        border: 1px solid #008A27;
        padding: 11px 10px;
        color: #000;
        font-family: "Rubik Regular";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        &::placeholder{
            color: #5D5D5D;
            font-size: 18px;
        }
    }
    .btn-group{
        justify-content: flex-start;
        margin-top: 0;
        .primary-btn{
            background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
            &:hover{
                color: #FFF;
                background: linear-gradient(180deg, #1874D7 0%, #0863BA 100%);
            }
        }
    }
}
.clean-office-service{
    padding-inline: 0;
    .today-content{
        background: #FFF;
        padding-block: 0;
    }
    .today-img{
        align-items: center;
        gap: 20px;
        & img:nth-child(2) {
            margin-top: unset;
        }
        img{
            width: 48%;
        }
    }
}
.section-content{
    ul{
        li{
            color: #454545;
            font-family: "Rubik Regular";
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 183.333%;
            position: relative;
            padding-left: 20px;
            &::before{
                position: absolute;
                content: '';
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: #008A27;
                left: 0;
                top: 10px;
            }
        }
    }
}
.office-cleaning-service{
    background: rgba(0, 138, 39, 0.03);
}
.office-cleaning-service-box{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1/1.27;
        margin-bottom: -5px;
    }
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.office-cleaning-txt-box{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 59.31%, rgba(0, 0, 0, 0.89) 88.63%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 15px;
    h4{
        width: 100%;
        text-align: left;
        color: #FFF;
        font-family: "Gilroy Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: uppercase;
        position: relative;
        padding-block: 8px;
        padding-left: 26px;
        &::before,
        &::after{
            position: absolute;
            content: '';
            width: 25%;
            height: 1px;
            background: #FFF;
            left: 14px;
            top: 0;
        }
        &::after{
            left: unset;
            right: 60px;
            top: unset;
            bottom: 0;
        }
    }
}
.work{
    .section-content{
        .work-box:last-child{
            &::after{
                display: none;
            }
        }
    }
}
.work-img{
    height: 100%;
    img{
        border-radius: 24px;
    }
}
.work-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    h5{
        margin-bottom: 4px;
        transition: 0.5s;
    }
    &::after{
        position: absolute;
        content: '';
        width: 1px;
        height: 100%;
        bottom: -30%;
        left: 38px;
        z-index: -1;
        border: 1px dashed rgba(0, 0, 0, 0.20);;
    }
    &:hover{
        h5{
            color: #008a27;
        }
        .work-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.work-icon{
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
    outline: 5px solid rgba(174, 244, 193, 0.28);
    padding: 13px;
}
.work-txt{
    width: 83%;
}
.office-choose{
    padding-top: 0;
    .container{
        border-radius: 30px;
        background: #1874D7;
        padding: 0;
    }
    .section-content{
        padding-left: 20px;
        h5, p{
            color: #FFF;
        }
        ul{
            li{
                font-family: "Rubik SemiBold";
                color: #FFF;
                line-height: 183.333%;
                &::before{
                    background: #FFF;
                }
            }
        }
    }
    .section-title{
        color: #FFF;
        font-family: "Gilroy SemiBold";
    }
}
.office-choose-img{
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -5px;
    }
}
.packages-content{
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    inset: 2px;
    &:hover{
        .pack-bg{
            opacity: 1;
        }
        .packages-box{
            border-color: #FFF;
            h3, h4, p, ul li{
                color: #FFF;
                .original-price{
                    color: #FFF;
                }
            }
            ul{
                li{
                    &::before{
                        background: url(../img/tick-white.webp) no-repeat;
                        background-size: contain;
                    }
                }
            }
        }
    }
}
.pack-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    margin-bottom: -5px;
    transition: 0.5s;
}
.packages-box{
    position: absolute;
    inset: 10px;
    border-radius: 3px;
    border: 1px solid rgba(0, 138, 39, 0.21);
    padding: 30px 10px;
    z-index: 1;
    h3{
        color: #171717;
        font-family: "Gilroy Bold";
        font-size: 58px;
        font-style: normal;
        font-weight: normal;
        line-height: 106.897%;
        text-transform: uppercase;
        margin-bottom: 10px;
        transition: 0.5s;
        .original-price{
            display: inline-block;
            color: #8D8A8A;
            font-family: "Gilroy Bold";
            font-size: 30px;
            font-style: normal;
            font-weight: normal;
            line-height: 96.667%;
            margin-left: 8px;
            transition: 0.5s;
            text-decoration: line-through;
        }
    }
    h4{
        color: #000;
        font-family: "Gilroy Bold";
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height:  116%;
        margin-bottom: 15px;
        transition: 0.5s;
    }
    p{
        line-height: 138.889%;
        transition: 0.5s;
    }
    ul{
        li{
            color: #454545;
            font-family: "Rubik SemiBold";
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 215.333%;
            position: relative;
            transition: 0.5s;
            padding-left: 40px;
            &::before{
                position: absolute;
                content: '';
                width: 24px;
                height: 24px;
                background: url(../img/tick-green.webp) no-repeat;
                background-size: contain;
                left: 0;
                top: 4px;
                transition: 0.5s;
            }
        }
    }
    .btn-group{
        margin-top: 30px;
    }
}
.hygine{
    position: relative;
    .section-content{
        ul{
            margin-bottom: 20px;
        }
    }
    .today-img{
        .img-box:nth-child(2) {
            margin-top: 250px;
        }
        .img-box{
            border-radius: 6px;
            overflow: hidden;
            position: relative;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 0;
                margin-bottom: -5px;
            }
            &:hover{
                img{
                    scale: 1.1;
                }
            }
        }
    }
}
.hygine-right-box{
    position: absolute;
    border-radius: 1px;
    background: rgba(0, 138, 39, 0.07);
    width: 52%;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
    &::after{
        position: absolute;
        content: '';
        width: 124px;
        height: 80%;
        border-radius: 17px;
        background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
        right: 90px;
        top: -55px;
        rotate: 45deg;
    }
}
.img-box-txt{
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 55.61%, rgba(0, 138, 39, 0.45) 86.06%);
    padding: 20px;
    display: flex;
    align-items: flex-end;
    &::after{
        content: '';
        position: absolute;
        inset: 12px;
        border-radius: 6px;
        border: 1px solid #FFF;
    }
    p{
        width: 70%;
        color: #FFF;
        font-family: "Rubik Medium";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 0;
    }
}
.we-serve{
    position: relative;
    z-index: 1;
    &::before{
        position: absolute;
        content: '';
        width: 820px;
        height: 235px;
        transform: rotate(25.078deg);
        border-radius: 17px;
        background: linear-gradient(0deg, #10972E 0%, #68C43D 100%);
        left: -130px;
        top: 240px;
        z-index: -1;
    }
    .section-content{
        border-radius: 14px;
        background: rgba(0, 138, 39, 0.07);
        padding: 30px;
        position: relative;
        z-index: 1;
        &::after{
            position: absolute;
            content: '';
            inset: 15px;
            border-radius: 12px;
            border: 1px solid #008A27;
            z-index: -1;
        }
    }
}
.we-serve-box{
    text-align: center;
    margin-top: 40px;
    height: 100%;
    img{
        margin-bottom: 8px;
    }
    p{
        color: #000;
        font-family: "Rubik Regular";
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        margin-bottom: 0;
        transition: 0.5s;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
        p{
            color: #008A27;
        }
        .dot-bar{
            border-color: #008A27;
        }
    }
}
.dot-bar{
    display: inline-block;
    width: 90%;
    height: 1px;
    border: 1px dashed #000;
    transition: 0.5s;
}
.about-faq{
    background: #fff;
}
.case-studies{
    background: url(../img/case-studies.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
}
.case-studies-box{
    border-radius: 6px;
    background: #FFF;
    padding: 30px;
    transition: 0.4s;
    p{
        color: rgba(18, 18, 18, 0.78);
        font-size: 24px;
        line-height: 150%;
    }
    h5{
        color: #000;
        font-family: "Rubik Regular";
        font-size: 17px;
        font-style: normal;
        font-weight: normal;
        line-height: 82.353%;
        margin-bottom: 5px;
    }
}
.profile-bar{
    display: block;
    width: 180px;
    height: 7px;
    background: #68C43D;
}
.case-studies-slider{
    .slick-slide{
        margin: 0px 20px;
        margin-top: 50px;
    }
    .slick-list{
        margin: 0 -20px;
    }
    .slick-active{
        .case-studies-box{
            transform: translateY(-40px);
        }
    }
    .slick-dots{
        text-align: center;
        padding-left: 0;
        bottom: -20px;
        li {
            width: 16px;
            height: 16px;
            background: transparent;
            border-radius: 50%;
            margin-inline: 10px;
            border: 1px solid #FFF;
        }
        .slick-active{
            background: #FFF;
        }
    }

}
/*******************************
    Become A Cleaner
********************************/
.become-about{
    .section-img{
        border-radius: 10px;
    }
}
.career-opper-box{
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 138, 39, 0.46);
    background: #F8F6EE;
    p{
        color: #000;
        strong{
            color: #000;
            font-family: "Gilroy Bold";
            font-size: 25px;
        }
    }
    .career-date{
        display: inline-block;
        color: #008A27;
        font-family: "Rubik Medium";
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 138.889%;
        padding-bottom: 8px;
        border-bottom: 1.5px dashed #008A27;
    }
    .btn-group{
        margin-top: 40px;
        align-items: center;
        gap: 18px;
        p{
            margin-bottom: 0;
            a{
                color: #008A27;
            }
        }
    }
}
.become-work{
    background: rgba(0, 138, 39, 0.06);
}
.become-work-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #008A27;
        transform: translateX(-100%);
        z-index: -1;
        transition: 0.6s;
    }
    &:hover{
        &::after{
            transform: translateX(0);
        }
        .become-work-icon{
            img{
                filter: brightness(0) saturate(100%) invert(100%) sepia(91%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
                transform: rotateY(180deg);
            }
        }
        .become-work-content{
            .card-title{
                color: #FFF;
            }
            p{
                color: #d0d0d0;
            }
        }
    }
}
.become-work-icon{
    img{
        transition: 0.6s;
    }
}
.become-work-content{
    width: 83%;
    padding-top: 30px;
    .card-title{
        color: #000;
        font-size: 24px;
        margin-bottom: 12px;
    }
}
.become-cta{
    background: url(../img/become-cta-banner.webp) no-repeat;
    background-size: cover;
    padding-block: 50px;
    .section-title{
        font-family: "Gilroy Bold";
        font-size: 40px;
        color: #FFF;
    }
    p{
        color: #FFF;
    }
}
.become-client-card{
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    box-shadow: 0 4px 11px 0 rgba(0, 0, 0, 0.08);
    padding: 12px;
    position: relative;
    transition: 0.5s;
    p{
        line-height: 150%;
    }
    &::before{
        content: '';
        position: absolute;
        width: 3px;
        height: 70%;
        border-radius: 10px;
        background: #C6CCC7;
        top: 0;
        left: 0;
        transition: 0.5s;
    }
    &:hover{
        transform: translateY(-10px);
    }
}
.become-coma{
    position: absolute;
    top: 0;
    right: 10px;
    transition: 0.5s;
}
.become-profile{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    img{
        border-radius: 50%;
    }
    h5{
        color: #000;
        font-family: "Gilroy Bold";
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 116%;
        transition: 0.5s;
    }
}
.become-client-slider{
    .slick-dots{
        text-align: center;
        bottom: -40px;
        padding-left: 0;
        li{
            background: transparent;
            border: 1px solid #008A27;
        }
        .slick-active{
            background: #074887;
            border-color: #074887;
        }
    }
    .slick-center{
        .become-client-card{
            border: 1px solid rgba(0, 138, 39, 0.26);
            &::before{
                background: #008A27;
            }
        }
        .become-coma{
            filter: brightness(0) saturate(100%) invert(23%) sepia(98%) saturate(1820%) hue-rotate(127deg) brightness(100%) contrast(101%);
        }
        .become-profile{
            h5{
                color: #008A27;
            }
        }
    }
    .slick-slide{
        margin:  20px 15px;
    }
    .slick-list{
        margin:  0 -15px;
    }
}
.become-faq{
    .accordion__item{
        border-bottom:  1px dashed #008A27;
    }
    .accordion__title{
        padding: 14px 16px;
    }
    .accordion__title::after {
        content: '+';
        background-repeat: no-repeat;
        position: absolute;
        width: 39px;
        height: 39px;
        font-size: 30px;
        font-weight: 300;
        border: 1px dashed #008A27;
        color: #008A27;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
        right: 15px;
        top: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all .5s;
    }
    .accordion__title.accordion-active::after {
        transform: rotate(180deg);
        content: '-';
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.16);
    }
    .accordion__content{
        padding-right: 80px;
    }
}
/*******************************
        Contact Us Page
********************************/
.contact-help{
    position: relative;
    z-index: 1;
    &::before{
        position: absolute;
        content: '';
        background: url(../img/contact-help-you-bg.webp) no-repeat;
        background-size: cover;
        width: 100%;
        height: 60%;
        left: 0;
        bottom: 15%;
        z-index: -1;
    }
    .section-title{
        font-size: 46px;
    }
    p{
        color: #000;
    }
    .section-content{
        background: #FFF;
        box-shadow: 0 4px 36px rgba(0, 0, 0, 0.08);
        padding: 50px 30px;
    }
    ul{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 35px;
        li{
            color: #777E79;
            font-family: "Rubik Medium";
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: normal;
            text-transform: uppercase;
            border-radius: 16px;
            outline: 1px solid #777E79;
            padding: 8px 14px;
            transition: 0.5s;
            cursor: pointer;
            &::before{
                display: none;
            }
        }
    }
    ul li.active,
    ul li:hover{
        background: linear-gradient(0deg, #10972E 38.14%, #68C43D 100%);
        box-shadow: 0px 0px 0px 5px rgb(0 138 39 / 27%);
        outline: 0;
        color: #FFF;
    }
}
.green-bar{
    display: inline-block;
    height: 2px;
    width: 265px;
    border-radius: 16px;
    background: linear-gradient(0deg, #10972E 38.14%, #68C43D 100%);
    margin-bottom: 10px;
}
.contact-img{
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    img{
        transform: translateY(-30px);
        width: 380px;
    }
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 83%;
        background: linear-gradient(349deg, #10972E 33.92%, #68C43D 67%);
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: -1;
        border-radius: 16px 0 0 16px;
    }
}
.contact-address-content{
    position: relative;
    .address-girl{
        position: absolute;
        bottom: 0;
        right: -20px;
        z-index: 2;
    }
}
.contact-address-form{
    border-radius: 16px;
    background: linear-gradient(0deg, #10972E 38.14%, #68C43D 100%);
    padding: 40px 20px;
    text-align: center;
    .title{
        color: #FFF;
        font-family: "Rubik Bold";
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
        line-height: 150.333%;
    }
}
.address-box{
    margin-top: 40px;
    margin-bottom: 60px;
    ul{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px;
        li{
            display: flex;
            align-items: center;
            color: #074887;
            font-family: "Rubik SemiBold";
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 165%;
            gap: 10px;
            a{
                display: flex;
                align-items: center;
                gap: 10px;
                color: #074887;
                font-family: "Rubik SemiBold";
                font-size: 20px;
                font-style: normal;
                font-weight: normal;
                line-height: 165%;
                &:hover{
                    color: #008a27;
                }
            }
        }
    }
}
.contact-address-blue-card{
    padding: 35px 25px;
    border-radius: 17px 17px 0 0;
    background: #074887;
    padding-right: 45%;
    position: relative;
    z-index: 1;
    h3{
        color: #FFF;
        font-family: "Rubik Bold";
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 126.471%;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    p{
        color: #FFF;
    }
    &::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 12px;
        background: linear-gradient(0deg, #10972E 38.14%, #68C43D 100%);
        left: 0;
        bottom: 0;
        z-index: -1;
    }
}

.testimonials{
    padding-bottom: 0;
    .container{
        img{
            width: auto;
        }
    }
    .testi-box{
        border-radius: 33px;
        border: 1px solid #E3E3E3;
        background: #FAFAFA;
        padding: 20px;
        transition: all .5s;
        &:hover{
            transform: translateY(-10px);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
        }
        p{
            color: #000;
        }
    }
    .profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
        p {
        margin-bottom: 0;
        color: #777;
        font-size: 18px;
    }
    }
   .profile-name {
    color: #2A2A2A;
    font-family: "Rubik SemiBold";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
}
}
.mb-50{
    margin-bottom: 50px;
}
.video-testimonials{
    .slick-slide {
    margin: 0 10px;
}
.slick-dots {
    text-align: center;
    padding-left: 0;
    bottom: -30px;
}
        .testi-card {
        padding: 0;
        border-radius: 31px;
        overflow: hidden;
        position: relative;
        border: none;
        &:hover{
            .testi-bg{
                transform: scale(1.07);
            }
        }
        &::after {
            position: absolute;
            content: '';
            inset: 0;
            background: linear-gradient(0deg, rgb(0 0 0 / 67%) 20%, rgb(0 0 0 / 0%) 75.81%);
        }
    }
    .play-btn{
        position: absolute;
        left: 40px;
        bottom: 32px;
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 2;
        span{
            width: 57.025px;
            height: 57.025px;
            border-radius: 50%;
            background: #FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.105);
            transition: all .5s;
        }
        &:hover{
            span{
                background: #22a754;
                img{
                    filter: brightness(0) invert(1);
                }
            }
        }
    }
    p{
        color: #fff;
        margin: 0;
    }
    .testi-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1600px),
(max-width: 1536px) {
    .slick-dots {
        padding-left: 10%;
    }
    .fea-icon {
        width: 63px;
        height: 63px;
    }
    .feature-card {
        p {
            font-size: 19px;
        }
    }
    .overlay-content{
        .primary-btn{
            padding: 20px 14px;
        }
    }
    .why-choose-us{
        margin-bottom: 150px;
        .col-lg-9{
            width: 70%;
        }
    }
    .why-lady{
        width: 50%;
        &::after {
            height: 200.654px;
            left: -170px;
            top: 26%;
        }
    }
    .today-service {
        padding-inline: 74px;
    }
    .today-content {
        padding-block: 50px;
    }
    .today-img {
        img {
            width: 50%;
        }
    }
    .bus {
        top: 50%;
        width: 63%;
    }
    .service-banner{
        .inner-banner-img{
            height: 826px;
        }
    }
    .hygine-right-box {
        &::after {
            top: 105px;
            width: 100px;
            height: 60%;
            right: 44px;
        }
    }
    .we-serve {
        &::before {
            width: 700px;
            height: 160px;
            left: -130px;
            top: 284px;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    #menu li:hover>ul>li {
        height: 28px;
    }
    .right{
        padding: 15px;
    }
    .call {
        width: 48px;
        height: 48px;
    }
    .call-wp {
        bottom: 2%;
        right: 10px;
    }
    p{
        font-size: 16px;
    }
    .primary-btn{
        padding: 16px 20px;
        font-size: 14px;
    }
    .topbar {
        & .container {
            padding: 5px 20px;
            p {
                font-size: 16px;
            }
        }
    }
    .logo{
        width: 180px;
    }
    #menu{
        padding-block: 5px;
    }
    #menu>.main-menu>ul>li{
        padding-inline: 5px;
    }
    #menu>.main-menu>ul>li>a {
        padding: 10px 3px;
        font-size: 15px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 13px;
        right: -8px;
        width: 8px;
        height: 8px;
    }
    #menu ul ul li a {
        font-size: 15px;
        padding: 6px 20px;
    }
    /* #menu>.main-menu>ul>li>a:hover::after, #menu .main-menu ul li.current-menu-item a::after {
        width: 40%;
    } */
    .call-btn {
        font-size: 26px;
        small {
            font-size: 16px;
        }
        img {
            width: 16%;
        }
    }
    .banner-content {
        h1 {
            font-size: 66px;
            span {
                font-size: 58px;
            }
        }
    }
    .ban-dec {
        font-size: 20px;
    }
    .banner-img{
        margin-top: 50px;
    }
    .slick-dots {
        padding-left: 9%;
        bottom: 100px;
    }
    .feature-card {
        padding: 20px 10px 20px 20px;
        p {
            font-size: 15px;
        }
    }
    .fea-icon {
        width: 53px;
        height: 53px;
    }
    .section-title {
        font-size: 42px;
        margin-bottom: 10px;
    }
    .section-content {
        h5 {
            font-size: 18px;
            margin-bottom: 10px;
        }
    }
    .dec {
        font-size: 19px;
        line-height: 137.5%;
        margin-bottom: 20px;
    }
    .card-title {
        font-size: 20px;
    }
    .box-title {
        span {
            padding: 10px 20px;
            font-size: 20px;
        }
    }
    .overlay-content {
        padding: 20px;
        padding-bottom: 30px;
        .primary-btn {
            padding: 15px 10px;
            font-size: 14px;
        }
    }
    .why-card {
        padding: 15px 5px;
        .card-title {
            font-size: 17px;
        }
    }
    .why-icon{
        img{
            width: 80%;
        }
    }
    .why-lady {
        &::after {
            width: 500.837px;
            height: 154.654px;
            left: -170px;
            top: 26%;
        }
    }
    .cta-content {
        padding-inline: 60px;
        padding-block: 25px;
    }
    .cta-logo {
        width: 110px;
        height: 110px;
        padding: 20px;
    }
    .cta-left {
        width: 60%;
        h2 {
            font-size: 36px;
        }
    }
    .cta-right{
        p{
            margin-bottom: 6px;
        }
    }
    .cta-call {
        font-size: 30px;
        img{
            width: 12%;
        }
    }
    .quote-btn {
        font-size: 20px;
    }
    .title {
        font-size: 31px;
    }
    label {
        font-size: 16px;
    }
    .white-line {
        width: 78px;
        height: 3px;
    }
    .form-control {
        font-size: 16px !important;
        padding: 12px 8px !important; 
    }
    .form-control::placeholder{
        font-size: 16px;
    }
    .accordion__item .accordion__title {
        font-size: 19px;
    }
    .feature {
        font-size: 16px;
        padding: 8px 18px;
        margin-bottom: 10px;
    }
    .blog-title {
        font-size: 26px;
        margin-bottom: 8px;
    }
    .blog-txt {
        padding: 25px;
        box-shadow: -1px -20px 1px 330px rgba(0, 0, 0, 0.21);
    }
    .side-blog {
        & .blog-txt {
            .blog-title {
                font-size: 17px;
            }
        }
        .blog-card{
            img{
                width: 250px;
                height: 221px;
            }
        }
    }
    .areas{
        .areas-img{
            width: 42%;
        }
    }
    .locations-name {
        & ul {
            gap: 25px;
            li {
                padding: 8px 12px;
                font-size: 14px;
                img{
                    width: 21px;
                    height: 21px;
                }
            }
        }
    }
    .map {
        iframe {
            height: 443px;
        }
    }
    footer p, footer p a, footer a {
        font-size: 15px;
    }
    .footer-title {
        font-size: 19px;
    }
    .footer-btn {
        img {
            margin-left: 98px;
        }
    }
    .category {
        & ul {
            & li {
                a {
                    font-size: 15px;
                }
            }
        }
    }
    .easier-box {
        h4 {
            font-size: 18px;
        }
        img{
            width: 35%;
        }
    }
    .team-txt {
        h5 {
            font-size: 20px;
        }
    }
    .core-icon {
        width: 85px;
        height: 85px;
    }
    .core-txt {
        h4 {
            font-size: 26px;
            margin-bottom: 5px;
        }
    }
    .counter-item h3 {
        font-size: 38px;
        margin-bottom: 10px;
    }
    .counter-item p {
        font-size: 18px;
    }
    .icon-container{
        padding: 15px;
        gap: 10px;
    }
    .easier-box {
        img {
            width: 30%;
        }
    }
    .counter-item p {
        font-size: 16px;
    }
    .get-in-touch-form {
        .title {
            font-size: 28px;
            line-height: 141.263%;
        }
        .form-control{
            font-size: 14px;
            padding: 9px;
            &::placeholder{
                font-size: 14px;
            }
        }
    }
    .service-banner{
        .container{
            padding-top: 95px;
        }
        .inner-banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .section-content {
        & ul {
            li {
                font-size: 16px;
                &::before {
                    width: 10px;
                    height: 10px;
                    top: 11px;
                }
            }
        }
    }
    .office-cleaning-txt-box {
        h4 {
            font-size: 16px;
            padding-block: 5px;
            padding-left: 18px;
        }
    }
    .img-box-txt {
        p {
            font-size: 20px;
        }
    }
    .hygine-right-box {
        &::after {
            top: 150px;
            width: 80px;
            height: 50%;
            right: 34px;
        }
    }
    .we-serve {
        &::before {
            width: 500px;
            height: 120px;
            left: -100px;
            top: 236px;
        }
    }
    .we-serve-box {
        p {
            font-size: 18px;
        }
        img{
            width: 40%;
        }
    }
    .case-studies-box {
        p {
            font-size: 18px;
        }
        h5{
            font-size: 14px;
        }
    }
    .work-box{
        margin-bottom: 5px;
    }
    .inner-banner {
        h1 {
            font-size: 58px;
        }
    }
    .career-opper-box {
        .career-date {
            font-size: 16px;
        }
        & p {
            strong {
                font-size: 20px;
            }
        }
    }
    .become-work-content {
        width: 81%;
        .card-title {
            font-size: 19px;
            margin-bottom: 10px;
        }
    }
    .become-work-card {
        gap: 12px;
    }
    .become-profile{
        h5{
            font-size: 20px;
        }
    }
    .become-cta{
        .section-title{
            font-size: 32px;
        }
    }
    .become-faq {
        .accordion__title::after {
            width: 29px;
            height: 29px;
            font-size: 22px;
            top: 11px;
        }
    }
    .contact-img {
        img {
            width: 356px;
        }
        &::after{
            top: 52%;
        }
    }
    .green-bar{
        width: 190px;
    }
    .contact-help{
        .section-title{
            font-size: 36px;
        }
        ul{
            li{
                font-size: 15px;
            }
        }
        &::before {
            height: 55%;
            bottom: 14%;
        }
    }
    .address-box {
        & ul {
            gap: 35px;
            & li {
                font-size: 17px;
                img{
                    width: 35px;
                }
                a{
                    font-size: 17px;
                }
            }
        }
    }
    .contact-address-blue-card {
        h3 {
            font-size: 30px;
            margin-bottom: 8px;
        }
    }
    .contact-address-content {
        .address-girl {
            width: 330px;
        }
    }
    .contact-address-form {
        .title {
            font-size: 24px;
            margin-bottom: 6px;
        }
    }
    .our-clients-card {
        height: 87px;
    }
}
@media (max-width:1199.99px){
    .popup .popup__content {
        width: 70%;
    }
    .banner-content {
        h1 {
            font-size: 55px;
            span {
                font-size: 48px;
            }
        }
    }
    .slick-dots {
        padding-left: 5%;
        bottom: 40px;
    }
    .primary-btn {
        padding: 12px 10px;
        font-size: 14px;
        border-radius: 12px;
    }
    .feature-card{
        gap: 13px;
        padding: 17px 6px 16px 17px;
        p {
            font-size: 12px;
        }
    }
    .fea-icon {
        width: 43px;
        height: 43px;
        padding: 5px;
    }
    .section-title {
        font-size: 36px;
        margin-bottom: 5px;
    }
    .section-content {
        h5 {
            font-size: 16px;
            margin-bottom: 5px;
        }
    }
    .dec {
        font-size: 17px;
        margin-bottom: 15px;
    }
    .overlay-content {
        width: 95%;
        padding: 8px;
        padding-bottom: 15px;
        border-radius: 17px 16px 8px 8px;
        p{
            line-height: 150.5%;
            margin-bottom: 10px;
        }
        .card-title{
            margin-bottom: 6px;
        }
        .btn-group {
            gap: 10px;
        }
        .primary-btn {
            padding: 10px 5px;
            font-size: 13px;
            line-height: 70.444%;
        }
    }
    .card-title {
        font-size: 17px;
    }
    .padd-right {
        img {
            margin-left: 15px;
        }
    }
    .why-icon {
        img {
            width: 70%;
        }
    }
    .why-card {
        padding: 10px 8px;
        .card-title {
            font-size: 16px;
        }
        p{
            line-height: 122.333%;
        }
    }
    .sec-gap{
        padding: 40px 0;
    }
    .why-lady{
        width: 40%;
        &::after {
            width: 390.837px;
            height: 100.654px;
            top: 13%;
        }
    }
    .why-choose-us {
        margin-bottom: 0px;
    }
    .cta-left {
        width: 70%;
    }
    .today-service {
        padding-inline: 14px;
    }
    .today-img {
        img {
            width: 47%;
        }
    }
    .bus {
        top: 58%;
        width: 65%;
    }
    .home-cleaning {
        margin-bottom: 75px;
    }
    .accordion__item{
        margin: 10px auto;
    }
    .blog-title {
        font-size: 24px;
    }
    .side-blog {
        .blog-card {
            gap: 15px;
        }
    }
    .locations-name {
        & ul {
            gap: 18px;
        }
    }
    .map {
        padding-bottom: 0;
        iframe {
            height: 343px;
        }
    }
    .footer-btn {
        img {
            margin-left: 75px;
        }
    }
    .social-links{
        margin-top: 20px;
    }
    .service-banner {
        .inner-banner-img {
            height: 600px;
        }
        .container {
            padding-top: 80px;
        }
    }
    .we-serve {
        &::before {
            width: 390px;
        }
    }
    .we-serve-box {
        p {
            font-size: 14px;
        }
    }
    .inner-banner {
        h1 {
            font-size: 48px;
        }
    }
    .become-client-slider {
        .slick-dots {
            bottom: -25px;
        }
    }
    .contact-address-blue-card {
        h3 {
            font-size: 26px;
        }
    }
    .address-box {
        margin-top: 30px;
        margin-bottom: 50px;
    }
    .contact-address-content {
        .address-girl {
            width: 300px;
        }
    }
    .contact-address-form {
        padding: 30px 10px;
        .title {
            font-size: 22px;
        }
    }
    .contact-img {
        &::after {
            top: 49%;
        }
        img{
            width: 338px;
        }
    }
    .contact-help {
        & ul {
            li {
                font-size: 14px;
            }
        }
    }
}
@media (max-width: 991.99px) {
    #menu li:hover>ul>li {
        height: auto;
    }
    .left{
        background: #FFF;
        &::after{
            background: #FFF;
        }
        .logo{
            padding-block: 10px;
        }
    }
    form .primary-btn{
        font-size: 15px;
        padding: 10px 16px;
    }
    .topbar {
        & .container {
            p {
                font-size: 13px;
                img{
                    width: 15px;
                    height: 15px;
                }
            }
        }
    }
    .logo {
        width: 140px;
    }
    .call-btn {
        font-size: 20px;
        small {
            font-size: 14px;
        }
    }
    .banner-content {
        width: 60%;
        h1 {
            font-size: 44px;
                span {
                font-size: 38px;
            }
        }
    }
    .ban-dec {
        font-size: 17px;
    }
    .primary-btn {
        padding: 10px 8px;
        font-size: 12px;
        border-radius: 8px;
    }
    .slick-dots {
        padding-left: 5%;
        bottom: 20px;
    }
    .banner-img {
        margin-top: 60px;
    }
    .features{
        background: #074887;
    }
    .feature-card {
        gap: 20px;
        p {
            font-size: 13px;
        }
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 5px;
    }
    p {
        font-size: 15px;
        line-height: 167.333%;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .section-img {
        width: 60%;
        margin-inline: auto;
    }
    .section-content{
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .dec {
        font-size: 16px;
    }
    .why-icon {
        margin-bottom: 0;
        img {
            width: 60%;
        }
    }
    .why-card {
        border-radius: 10px;
        .card-title {
            font-size: 14px;
        }
        p{
            font-size: 14px;
        }
    }
    .why-choose-us {
        .col-lg-9 {
            width: 58%;
        }
    }
    .why-lady {
        width: 55%;
        top: 80px;
        &::after{
            top: 17%;
        }
    }
    .cta-content{
        padding-inline: 30px;
        padding-block: 20px;
    }
    .cta-logo{
        width: 90px;
        height: 90px;
        padding: 15px;
    }
    .cta-left{
        gap: 15px;
        h2{
            font-size: 26px;
        }
    }
    .cta-call {
        font-size: 26px;
    }
    .quote-btn {
        font-size: 15px;
    }
    .cta{
        .container{
            border-radius: 79px 0 90.5px 0;
        }
    }
    .cta-right{
        p{
            line-height: 100%;
        }
    }
    .video-box {
        border-radius: 26px;
    }
    .video-btn{
        width: 80px;
        height: 80px;
        img {
            margin-top: -8px;
            margin-right: -8px;
        }
        &::before{
            width: 80px;
            height: 80px;
        }
    }
    .today-service{
        padding-inline: 5px;
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .today-content {
        padding-block: 30px;
        border-radius: 31px;
    }
    .today-img {
        img {
            width: 49%;
        }
    }
    .home-cleaning{
        margin-bottom: 0px;
        &::before{
            width: 100%;
            height: 70%;
        }
    }
    .bus{
        display: none;
    }
    .blog-txt {
        box-shadow: 0px -20px 1px 350px rgba(0, 0, 0, 0.21);
    }
    .map{
        padding-bottom: 0;
    }
    footer{
        padding-top: 30px;
        .logo{
            margin-bottom: 0;
            margin-inline: auto;
        }
        .row{
            .col-lg-3:first-child{
                text-align: center;
            }
        }
    }
    .social-links{
        justify-content: center;
    }
    .copyright {
        align-items: center;
    }
    #menu>.main-menu>ul>li>a{
        padding: 20px 3px;
        font-size: 16px;
    }
    .services{
        padding-inline: 20px;
    }
    .overlay-content{
        padding: 15px;
    }
    .blog-details-banner {
    padding-top: 130px;
}
.blog-details-banner {
    h1 {
        font-size: 36px;
        line-height: 125.926%;
        margin-bottom: 20px;
    }
}
.blog-details-content {
    h2 {
        font-size: 26px;
    }
        h3 {
        font-size: 22px;
    }
}
    .about-about-sec {
        .section-img {
            width: 85%;
            position: relative;
            right: -37px;
            bottom: unset;
            margin-inline: unset;
            margin-left: auto;
            margin-bottom: 10px;
        }
    }
    .miss-vis {
        & .container {
            .row:first-child {
                .col:first-child {
                    padding: 20px;
                }
            }
            & .row:last-child {
                .col:last-child {
                    padding: 20px;
                    order: -1;
                }
            }
        }
        .section-img{
            width: 100%;
        }
        .section-content{
            padding-top: 0;
        }
    }
    .our-story {
        img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .container{
            box-shadow: unset;
            padding-top: 12px;
        }
        .section-content {
            padding-block: 20px;
        }
    }
    .easier{
        .row{
            .col-lg-4{
                order: -1;
            }
        }
        .section-img{
            width: 100%;
            margin-inline: unset;
        }
    }
    .core-txt {
        padding-top: 10px;
    }
    .core-values-box {
        gap: 15px;
    }
    .counter {
        padding-block: 30px;
    }
    .counter-item h3 {
        font-size: 30px;
    }
    .service-banner{
        .inner-banner-img{
            height: 750px;
        }
        .container{
            flex-direction: column;
            align-items: start;
            justify-content: center;
            padding-top: 60px;
            gap: 20px;
        }
    }
    .clean-office-service{
        .section-content{
            text-align: left;
        }
        & .row {
            .col:last-child {
                order: unset;
            }
        }
    }
    .office-cleaning-txt-box {
        h4 {
            font-size: 14px;
        }
    }
    .work{
        .section-content{
            text-align: left;
        }
    }
    .work-icon {
        width: 68px;
        height: 68px;
        padding: 10px;
    }
    .work-box {
        &::after {
            left: 32px;
        }
    }
    .office-choose-img {
        border-radius: 30px 30px 0 0;
    }
    .office-choose{
        .section-content{
            text-align: left;
            padding: 20px;
        }
    }
    .hygine{
        .section-content{
            text-align: left;
            .btn-group{
                justify-content: start;
            }
        }
    }
    .hygine-right-box {
        width: 98%;
        &::after {
            top: 224px;
            right: 0px;
        }
    }
    .we-serve-img{
        display: flex;
        justify-content: center;
    }
    .we-serve{
        &::before{
            height: 130px;
            left: -70px;
            top: 236px;
        }
    }
    .we-serve-box {
        img {
            width: 30%;
        }
        p {
            font-size: 17px;
        }
    }
    .inner-banner {
        h1 {
            font-size: 38px;
        }
    }
    .become-about{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .career-opper-box {
        padding: 30px 20px;
    }
    .become-work-card{
        flex-direction: column;
        align-items: center;
    }
    .become-work-content{
        padding: 0;
        width: 100%;
        padding-top: 0;
        text-align: center;
        .card-title{
            font-size: 18px;
        }
        p{
            margin-bottom: 0;
        }
    }
    .become-cta {
        padding-block: 30px;
        .section-title {
            font-size: 28px;
        }
    }
    .contact-img{
        img{
            transform: unset;
        }
        &::after {
            transform: unset;
            top: unset;
            bottom: 0;
            border-radius: 16px 16px 0 0;
        }
    }
    .contact-help {
        & ul {
            justify-content: center;
        }
    }
    .contact-address-form {
        padding: 30px 20px;
        .title {
            font-size: 28px;
        }
    }
    .our-clients-slider{
        .slick-slide{
            margin: 20px 20px;
        }
        .slick-list{
            margin: 0 -20px;
        }
    }
.video-testimonials {
    padding-bottom: 58px;
}
}
@media (max-width: 575.98px) {
    #menu .main-menu ul ul, #menu .main-menu ul ul ul {
        left: 17px;
    }
    #menu .main-menu ul ul li a {
        font-size: 14px;
    }
    #menu ul ul li a{
        padding: 8px 15px;
    }
    form .primary-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    .popup .popup__content {
        width: 90%;
    }
    .topbar {
        & .container {
            flex-direction: column;
            padding: 2px 20px;
            p{
                font-size: 12px;
            }
        }
    }
    .hamburger{
        right: 0px;
    }
    .logo{
        margin-left: 5px;
    }
    .call-btn{
        img{
            width: 50%;
            margin-top: 5px;
        }
        span{
            display: none;
        }
    }
    .flex-box {
        margin-right: 50px;
    }
    .banner-item{
        height: 350px;
    }
    .banner-content{
        width: 100%;
        text-align: center;
        h1{
            font-size: 33px;
            span {
                font-size: 28px;
            }
        }
        .btn-group{
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    .ban-dec {
        font-size: 15px;
    }
    .banner-img{
        object-position: left;
    }
    .primary-btn{
        text-align: left;
    }
    .slick-dots {
        bottom: 20px;
        text-align: center;
        padding: 0;
    }
    .fea-icon {
        width: 33px;
        height: 33px;
        padding: 5px;
        outline-offset: 5px;
    }
    .feature-card {
        gap: 15px;
    }
    .features{
        .row{
            .col:nth-child(3){
                .feature-card{
                    background: #0358A9;
                }
            }
            .col:nth-child(4){
                .feature-card{
                    background: #074887;
                }
            }
            /* .col:nth-child(5){
                .feature-card{
                    background: #0358A9;
                }
            } */
        }
    }
    .section-img{
        width: 80%;
        border-radius: 10px;
    }
    .section-title {
        font-size: 22px;
    }
    .section-content {
        h5 {
            font-size: 14px;
        }
    }
    .sec-gap {
        padding: 20px 0;
    }
    p {
        font-size: 14px;
        line-height: 145.333%;
    }
    .dec {
        font-size: 15px;
    }
    .services{
        padding-inline: 20px;
    }
    .service-item{
        border-radius: 10px;
        &:hover{
            border-radius: 10px;
        }
    }
    .why-lady{
        display: none;
    }
    .why-choose-us {
        .col-lg-9 {
            width: 100%;
        }
    }
    .why-card {
        .card-title {
            font-size: 13px;
        }
    }
    .cta-content {
        padding-inline: 30px;
        padding-block: 20px;
        flex-direction: column;
        gap: 10px;
    }
    .cta-left {
        gap: 10px;
        width: 100%;
        flex-direction: column;
        h2{
            width: 100%;
            text-align: center;
        }
    }
    .cta-logo {
        width: 80px;
        height: 80px;
    }
    .video-box {
        border-radius: 16px;
        height: 300px;
    }
    .video-btn {
        width: 60px;
        height: 60px;
        padding: 22px;
        &::before {
            width: 60px;
            height: 60px;
        }
        img {
            margin-top: -8px;
            margin-right: -6px;
        }
    }
    .today-img {
        gap: 10px;
        img {
            width: 48%;
            border-radius: 10px;
        }
    }
    .today-content {
        padding-block: 15px;
        border-radius: 15px;
    }
    label {
        font-size: 14px;
    }
    .form-control{
        font-size: 14px;
        padding: 14px 8px;
    }
    .form-control::placeholder{
        font-size: 14px;
    }
    .gallery-img{
        border-radius: 10px;
        span{
            font-size: 50px;
        }
    }
    .title {
        font-size: 24px;
    }
    .accordion__item .accordion__title{
        font-size: 16px;
    }
    .feature {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 5px;
    }
    .blog-txt {
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }
    .blog-title {
        font-size: 18px;
    }
    .blog-card{
        border-radius: 15px;
    }
    .side-blog{
        .blog-card{
            img {
                width: 145px;
                height: 125px;
                border-radius: 10px;
            }
        }
        .blog-txt{
            .blog-title {
                font-size: 14px;
            }
        }
    }
    .areas {
        .areas-img {
            width: 80%;
        }
    }
    .featured-blogs {
        .btn-group {
            margin-top: 20px;
        }
    }
    .locations-name {
        & ul {
            gap: 10px;
            & li {
                img {
                    width: 18px;
                    height: 18px;
                }
            }
        }
    }
    .map {
        padding-bottom: 0;
        iframe {
            height: 243px;
        }
    }
    footer{
        text-align: center;
    }
    .social-links {
        margin-top: 5px;
    }
    footer p, footer p a, footer a{
        line-height: 198.75%;
    }
    .footer-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    footer{
        .primary-btn{
            display: inline-block;
            margin-bottom: 5px;
            img{
                height: 12px;
                transform: translateY(1px);
            }
        }
    }
    .copyright{
        margin-top: 10px;
        p{
            line-height: 120%;
        }
    }
    .call {
        width: 41px;
        height: 41px;
        padding: 12px;
    }
    .fw {
        width: 42px;
        height: 42px;
    }
    .call-wp {
        bottom: 2%;
        right: 3px;
        gap: 8px;
    }
    #menu .main-menu {
        padding: 15px;
        overflow: auto;
        top: 95px;
        padding-bottom: 100px;
        padding-top: 0;
    }
    .hamburger.menu-opened:before,.hamburger.menu-opened:after {
        background: #008A27;
    }
    #menu>.main-menu>ul>li>a {
        padding: 12px 3px;
        font-size: 14px;
    }
    #menu .submenu-button {
        height: 41px;
        right: 0;
        background: #ffffff1f;
    }
    #menu .main-menu ul ul {
        box-shadow: none;
        background: #ffffff6b;
        left: 0;
        width: 100%;
        li{
            border: 0;
        }
    }
    
    #menu .submenu-button:after {
        top: 11px;
    }
    #menu .submenu-button.submenu-opened:after {
        top: 17px;
    }
    .inner-banner{
        .inner-banner-img{
            height: 190px;
            object-fit: cover;
        }
        .container {
        padding-top: 90px;
    }
    }
    .blog-item{
        .row{
            .col-md-6:last-child{
                order: -1;
            }
        }
    }
    .blog-date {
    .date {
        width: 89px;
        height: 53px;
        font-size: 30px;
    }
    .month-year {
        font-size: 14px;
    }
}
.recent-post-list {
    & .recent-post-content {
        h4 {
            font-size: 14px;
        }
        p {
            font-size: 14px;
        }
        .read-more {
            font-size: 14px;
        }
    }
}
.sidebar-form {
    h3 {
        font-size: 18px;
        img{
            width: 50px;
        }
    }
    .form-control {
        font-size: 14px;
        padding: 12px 8px;
    }
}
.inner-banner{
    .banner-content {
        text-align: left;
    }
}
.blog-details-banner {
        h1 {
            font-size: 22px;
            line-height: 113.926%;
            margin-bottom: 10px;
        }
    }
        .blog-details-content {
        h2 {
            font-size: 18px;
        }
                h3 {
            font-size: 16px;
        }
            & ul {
        & li {
            font-size: 14px;
            padding-left: 20px;
            margin-top: 10px;
            line-height: normal;
            &::before {
                background-size: 15px;
            }
        }
    }
    }
        .category {
        & ul {
            & li {
                a {
                    font-size: 12px;
                    padding: 6px 14px 6px 25px;
                }
            }
        }
    }
    .tags {
    & ul {
        & li {
            a {
                padding: 6px 8px;
            }
        }
    }
}
.sidebar-service {
    h3 {
        font-size: 20px;
    }
}
    .about-about-sec {
        .section-img {
            width: 90%;
            right: -14px;
            margin-bottom: 10px;
        }
    }
    .easier {
        .section-content {
            padding: 10px;
        }
    }
    .icon-container{
        outline-offset: 6px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 10px;
    }
    .easier-box {
        width: 100%;
        margin-bottom: 5px;
        img {
            width: 20%;
        }
        h4 {
            font-size: 16px;
        }
    }
    .our-team-slider {
        .slick-dots {
            bottom: -20px;
        }
    }
    .core-values-box {
        gap: 10px;
        flex-direction: column;
    }
    .core-txt{
        h4 {
            font-size: 22px;
            margin-bottom: 5px;
        }
    }
    .core-icon {
        width: 70px;
        height: 70px;
    }
    .core-txt{
        padding-top: 0;
        width: 100%;
        P{
            margin-bottom: 0;
        }
    }
    .counter{
        background-position: center;
    }
    .counter-item{
        align-items: flex-start;
    }
    .counter-item h3 {
        font-size: 26px;
    }
    .counter-item p {
        text-align: left;
        font-size: 15px;
        line-height: 120.833%;
    }
    .our-story {
        .section-content {
            padding-block: 10px;
        }
    }
    .get-in-touch-form {
        border-radius: 10px;
        .title {
            font-size: 22px;
            line-height: 141.263%;
        }
        .title.mb-20{
            margin-bottom: 10px;
        }
    }
    .service-banner{
        .inner-banner-img{
            height: 800px;
        }
        .container{
            padding-top: 75px;
        }
        .btn-group{
            justify-content: start;
        }
        &::after {
            background: linear-gradient(86deg, rgba(255, 255, 255, 0.95) 41.26%, rgba(255, 255, 255, 0.00) 95.62%);
        }
    }
    .section-content {
        & ul {
            li {
                font-size: 14px;
                line-height: 115.333%;
                padding-left: 15px;
                margin-bottom: 5px;
                &::before{
                    width: 8px;
                    height: 8px;
                    top: 3px;
                }
            }
        }
    }
    .office-cleaning-txt-box {
        h4 {
            font-size: 12px;
            padding-left: 7px;
            &::before, &::after {
                width: 20%;
                left: 7px;
            }
            &::after{
                left: unset;
                right: 25px;
                top: unset;
                bottom: 0;
            }
        }
    }
    .work-img{
        img {
            border-radius: 10px;
        }
    }
    .work-box {
        flex-direction: column;
        text-align: center;
        &::after{
            display: none;
        }
    }
    .work-icon {
        width: 60px;
        height: 60px;
        padding: 8px;
        margin-inline: auto;
    }
    .work-txt{
        width: 100%;
    }
    .work-box{
        gap: 10px;
        background: rgba(174, 244, 193, 0.28);
        padding: 20px;
        margin-bottom: 10px;
        p{
            margin-bottom: 0;
        }
    }
    .office-choose {
        .container {
            border-radius: 10px;
        }
        .section-content {
            padding: 12px;
            ul{
                li{
                    line-height: 110.333%;
                    margin-bottom: 10px;
                }
            }
        }
    }
    .office-choose-img {
        border-radius: 10px 10px 0 0;
    }
    .hygine{
        .row{
            .col:last-child{
                order: -1;
            }
        }
        .today-img{
            .img-box:nth-child(2){
                margin-top: 75px;
            }
        }
    }
    .img-box-txt {
        padding: 11px;
        &::after {
            inset: 6px;
        }
        p {
            font-size: 14px;
        }
    }
    .hygine-right-box {
        &::after {
            top: -55px;
            right: -35px;
        }
    }
    .we-serve {
        &::before {
            height: 100px;
            top: 155px;
            width: 220px;
        }
        .section-content {
            padding: 12px;
            border-radius: 7px;
            &::after{
                inset: 8px;
                border-radius: 7px;
            }
        }
    }
    .we-serve-box {
        p {
            font-size: 14px;
        }
    }
    .case-studies-box {
        padding: 15px;
        p {
            font-size: 15px;
        }
        img{
            width: 35%;
        }
        h5 {
            font-size: 13px;
        }
    }
    .profile-bar {
        width: 120px;
        height: 5px;
    }
    .case-studies-slider {
        padding-inline: 10px;
        .slick-dots {
            padding-left: 0;
            bottom: 0px;
            left: 0;
        }
    }
    .clean-office-service {
        .today-img {
            gap: 15px;
        }
    }
    .inner-banner {
        h1 {
            font-size: 26px;
        }
    }
    .career-opper-box {
        padding: 20px 10px;
        .career-date{
            font-size: 13px;
            padding-bottom: 2px;
        }
        p{
            strong{
                font-size: 17px;
            }
        }
        .btn-group{
            margin-top: 20px;
            flex-direction: column;
            align-items: flex-start;
        }
    }
    .become-work-card{
        padding: 10px;
        gap: 4px;
    }
    .become-work-icon{
        img{
            width: 65px;
        }
    }
    .become-work-content {
        .card-title {
            font-size: 16px;
        }
    }
    .become-client-slider {
        .slick-dots {
            bottom: -10px;
        }
    }
    .become-cta {
        .section-title {
            font-size: 20px;
        }
    }
    .become-faq {
        .accordion__item .accordion__title {
            font-size: 16px;
            padding-left: 0;
            padding-right: 22px
        }
        .accordion__content {
            padding-right: 20px;
        }
        .accordion__title::after {
            width: 20px;
            height: 20px;
            font-size: 14px;
            right: 0;
            top: 13px;
        }
    }
    .become-profile {
        h5 {
            font-size: 18px;
        }
    }
    .contact-img {
        img {
            width: 250px;
        }
    }
    .contact-help {
        .section-title {
            font-size: 26px;
        }
        .section-content {
            padding: 20px 10px;
            h5{
                margin-bottom: 10px;
            }
            ul{
                gap: 10px;
                justify-content: center;
                margin-bottom: 15px;
                li{
                    font-size: 11px;
                    padding: 5px 10px;
                }
            }
        }
    }
    .green-bar {
        width: 148px;
    }
    .contact-help {
        ul li.active, ul li:hover {
            box-shadow: 0px 0px 0px 3px rgb(0 138 39 / 27%);
        }
    }
    .address-box {
        margin-top: 10px;
        margin-bottom: 30px;
        ul {
            gap: 13px;
            & li {
                font-size: 14px;
                gap: 5px;
                img{
                    width: 25px;
                }
                a{
                    font-size: 14px;
                    gap: 5px;
                }
            }
        }
    }
    .contact-address-content {
        .address-girl {
            display: none;
        }
    }
    .contact-address-blue-card {
        padding: 15px;
        border-radius: 13px 13px 0 0;
        h3{
            font-size: 24px;
        }
    }
    .contact-address-form {
        padding: 20px 10px;
        .title {
            font-size: 22px;
        }
    }
    .side-blog {
        .blog-card {
            border-radius: 10px 0 10px 10px;
        }
    }
    .gallery.sec-gap{
        padding: 20px 7px;
    }
    .our-clients-slider{
        padding-inline: 15px;
        .slick-slide{
            margin: 10px 10px;
        }
        .slick-list{
            margin: 0 -10px;
        }
        .slick-next {
            right: -14px;
        }
        .slick-prev {
            left: -14px;
        }
    }
    .our-clients-card {
        height: 67px;
        border-radius: 10px;
        padding: 15px;
    }
    .testimonials {
    .profile-name {
        font-size: 18px;
    }
    & .profile {
        p {
            font-size: 13px;
            margin-top: 4px;
        }
    }
        & .container {
            .testi-box
        img {
            width: auto;
            width: 40px;
        }
    }
    }
        .video-testimonials {
        padding-bottom: 58px;
    }
}



.blog-details-banner .details-banner {
    width: 100%;
    height: 900px; /* adjust if needed */
    border-radius: 10px;
    margin-top: 20px;
}