/**************************************
                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: #149739;
}

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

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

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

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

}

body {
    color: #272727;
    font-family: 'Maison Neue Light';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 145%;
    counter-reset: section;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Maison Neue Bold';
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

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

main {
    overflow: clip;
}

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

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

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

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

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


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

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

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

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

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

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

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

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

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

.left {
    background: linear-gradient(314deg, rgb(5 27 12 / 0%) 0%, #003710b5 77.94%), url(../img/optimize.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: start;
    justify-content: start;
    padding: 20px;
}

.right {
    padding: 20px;
    text-align: left;
    background: #FFF;
}
.fixed-contact{
    position: fixed;
    right: 30px;
    bottom: 15%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    a{
        &:hover{
            scale: 1.1;
        }
    }
}
.call{
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #5FB242 0%, #AEDE9D 100%);
    border-radius: 50%;
}
.wp{
    width: 58px;
    height: 58px;
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-60 {
    margin-bottom: 60px;
}
p {
    color: #373737;
    font-family: 'Maison Neue Light';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 145%;
}
.dec{
    color: #171717;
    font-family: 'Maison Neue Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
.section-title {
    color: #111;
    font-family: 'Maison Neue Bold';
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 10px;
}
.form-title{
    color: #149739;
    font-family: 'Maison Neue Bold';
    font-size: 34px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 10px;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    border: none;
    color: #FFF;
    font-family: 'Maison Neue Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    padding: 17px 29px;
    border-radius: 6px;
    background: #149739;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    span{
        position: absolute;
        width: 9px;
        height: 9px;
        border-radius: 5.12px 5px 5px 0;
        background: #FFF;
        top: 6px;
        right: 5px;
        display: block;
        transition: 0.5s;
    }
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: linear-gradient(-90deg, #149739 0%, #063112 100%);   
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}
.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

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

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

.primary-btn:hover {
    color: #ffffff;
    span{
        background: #FFF;
    }
}

.primary-btn:focus {
    color: #fff;
}
.secondary-btn{
    background: transparent;
    border: 1px solid #FFF;
    &::before, &::after{
        background: #FFF;
    }
    &:hover{
        color: #149739;
        span{
            background: #149739;
        }
    }
}
.call-btn{
    border: none;
    gap: 10px;
    font-family: 'Maison Neue Bold';
    font-size: 23px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    color: #FFF;
    display: flex;
    align-items: center;
    small{
        font-size: 16px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
    }
    &:hover{
        color: #62f58c;
    }
}
.call-icon{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #149739;
    border-radius: 50%;
    outline: 3px solid #14973938;
}
label{
    color: #000;
    font-family: 'Maison Neue Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 7px;
}
.form-control {
    font-family: 'Maison Neue Light';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 12px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    width: 100%;
    outline: none;
    border-radius: 4px;
    border: 1px solid #C4C4C4;
    background: #FFF;
}

.form-control:focus {
    border-color: #149739;
}
form .primary-btn {
    border: 0;
    cursor: pointer;
    padding: 16px 35px;
    &:hover{
        background: #0d5a23;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
.form-control::placeholder {
    color: #707070;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

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

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

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

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Pulse animation */
.pulse-border{
    animation-name: pulse-border;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

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

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

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

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

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
@media (prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}
::view-transition-group(*) {
    animation-duration: 2s;
}
/*******************************
	Menu
*******************************/
.call-email{
    display: flex;
    align-items: center;
    gap: 20px;
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 35px;
}

header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding-block: 15px;
    background: #003710a6;
    backdrop-filter: blur(20px);
}

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

    to {
        transform: translateY(0);
    }
}


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

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

header {
    position: fixed;
    width: 100%;
    transition: ease-in-out .4s;
    z-index: 999;
    padding-block: 30px;
}
nav {
    position: relative;
    margin: 0 auto
}
.header-btn{
    background: #FFF;
    padding: 13px 21px;
    color: #149739;
    span{
        background: #149739;
    }
}
.logo{
    width: 160px;
}
#menu,
#menu .main-menu ul,
#menu .main-menu ul li,
#menu .main-menu ul li a,
#menu #head-mobile {
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
#menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 46px;
}

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

#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: #FFF;
    font-family: 'Maison Neue Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.471%;
    border-radius: 4px;
}
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 80%;
}
.hamburger{
    display: none;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #23AC49;
}
#menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
}
#menu>.main-menu>ul>li:hover,
#menu .main-menu ul li.current-menu-item:hover,
#menu .main-menu ul li.current-menu-item,
#menu .main-menu ul li.has-sub.current-menu-item:hover {
   
    -webkit-transition: background .3s ease;
    -ms-transition: background .3s ease;
    transition: background .3s ease;
}


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

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

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

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


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

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

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

#menu ul ul li a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.15);
    padding: 10px 20px;
    width: auto;
    font-size: 20px;
    line-height: 19px;
    text-decoration: none;
    font-family: 'Maison Neue Bold';
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

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

#menu .main-menu ul ul li:hover a,
#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #23AC49;
}

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


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

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

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

/* #menu .main-menu ul li.current-menu-item ul li a {
    color: #000;
} */

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

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

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

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

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

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

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

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

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

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

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

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

    .hamburger {
        width: 55px;
        height: 48px;
        position: absolute;
        right: 16px;
        top: 7px;
        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 #FFF;
        border-bottom: 2px solid #FFF;
        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: #FFF;
        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: #ffffff2e;

    }

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

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

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

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

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


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

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

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

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #FFF;
        scale: unset;
    }
}
.menu-white {
    position: relative;
    background: #FFF;
    box-shadow: 0px 7px 11px 0px rgba(0, 0, 0, 0.06);
}
.menu-white #menu>.main-menu>ul>li>a {
    color: #1E1E1E;
}
.menu-white #menu>.main-menu>ul>li:hover>a,
.menu-white #menu .main-menu ul li.current-menu-item a {
    color: #95C12B;
}
.menu-white #menu>.main-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #1E1E1E;
    border-left: 1px solid #1E1E1E;
}
.menu-white #menu>.main-menu>ul>li.has-sub:hover>a::before,
.menu-white #menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #95C12B;
    border-left-color: #95C12B;
}
.menu-white .serch-box input {
    border: 1px solid #D6D6D6;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(7.5px);
}
.enquiry-btn {
    color: #FFF;
    font-family: 'Purista';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 143.75%;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 20px 20px 0px;
    background: #1B5574;
    padding: 20px 10px;
    transform-origin: right center;
    transition: 0.8s;
    &:hover{
        color: #5E923F;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        background: #FFF;
    }

}
/******************************
            Banner  
*******************************/
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.banner-item{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg, rgba(5, 27, 12, 0.00) 0%, #003710 77.94%);
    }
}
.banner-content{
    width: 60%;
    padding-top: 50px;
    h1{
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 63px;
        font-style: normal;
        font-weight: normal;
        line-height: 124.194%;
    }
    p{
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 145%;
        margin-bottom: 30px;
    }
}
.banner-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}
.banner-slider{
    .slick-dots{
        bottom: 33px;
        z-index: 1;
    }
    .slick-dots{
        .slick-active{
            background: #149739;
        }
        li{
            width: 11px;
            height: 11px;
            margin-inline: 5px;
            background: #D9D9D9;
            border-radius: 50%;
            transition: 0.5s;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
        &::after{
            position: absolute;
            content: '';
            width: 4%;
            height: 115%;
            border-radius: 6px;
            border: 1px solid #CECECE;
            background: rgba(255, 255, 255, 0.10);
            backdrop-filter: blur(6.5px);
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
    }
    .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.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .btn-group{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.8s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.img-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -6px;
}
/******************************
        About
*******************************/
.about{
    position: relative;
    z-index: 1;
    padding-bottom: 220px;
}
.ring{
    position: absolute;
    bottom: 0;
    left: 15px;
    z-index: -1;
}
.about-circle-vector{
    position: absolute;
    left: 0;
    top: -165px;
    z-index: -1;
}
.about-img{
    position: relative;
    img{
        border-radius: 46px;
    }
    .counter-item{
        position: absolute;
        width: 175px;
        right: 30px;
        bottom: -30px;
        padding: 14px;
        border-radius: 18px;
        background: linear-gradient(180deg, #149739 0%, rgba(6, 49, 18, 0.74) 100%);
        text-align: center;
        h3{
            font-size: 88px;
            color: #FFF;
        }
        p{
            font-size: 20px;
            color: #FFF;
            text-transform: uppercase;
        }
        &::after{
            display: none;
        }
    }
}
.counter{
    margin-top: 70px;
}
.counter-item{
    border-radius: 26px;
    background: #F4F4F4;
    padding: 20px 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    h3{
        color: #000;
        font-family: 'Maison Neue Bold';
        font-size: 60px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        transition: 0.5s;
    }
    p{
        color: #000;
        font-family: 'Maison Neue Bold';
        font-size: 22px;
        margin-bottom: 0;
        transition: 0.5s;
    }
    &::after{
        position: absolute;
        content: '';
        width: 40px;
        height: 40px;
        background: #149739;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        clip-path: polygon( 100% 0%,100% 100%,0% 50%,100% 0% );
        transition: 1s;
        z-index: -1;
    }
    &:hover{
        h3, p{
            color: #FFF;
        }
        &::after{
            scale: 26 26;
            transform: translateY(0);
        }
    }
}
/******************************
        About Founder
*******************************/
.about-founder{
    position: relative;
    border-radius: 19px;
    background: #F6F6F6;
    z-index: 1;
    padding-block: 100px;
    &::after{
        content: '';
        position: absolute;
        width: 45%;
        height: 100%;
        clip-path: polygon( 44.197% 1.364%,44.197% 1.364%,44.324% 1.12%,44.468% 0.896%,44.626% 0.695%,44.797% 0.517%,44.98% 0.364%,45.173% 0.236%,45.376% 0.134%,45.585% 0.06%,45.801% 0.015%,46.021% 0%,97.841% 0%,97.841% 0%,98.191% 0.038%,98.523% 0.15%,98.833% 0.327%,99.116% 0.566%,99.368% 0.859%,99.583% 1.201%,99.759% 1.585%,99.89% 2.006%,99.972% 2.458%,100% 2.934%,100% 97.066%,100% 97.066%,99.972% 97.542%,99.89% 97.994%,99.759% 98.415%,99.583% 98.799%,99.368% 99.141%,99.116% 99.434%,98.833% 99.673%,98.523% 99.85%,98.191% 99.962%,97.841% 100%,2.163% 100%,2.163% 100%,1.674% 99.927%,1.232% 99.719%,0.846% 99.397%,0.523% 98.978%,0.271% 98.481%,0.097% 97.926%,0.009% 97.331%,0.015% 96.716%,0.122% 96.098%,0.338% 95.497%,44.197% 1.364% );
        right: 0;
        top: 0;
        bottom: 0;
        background: #149739;
        z-index: -1;
    }
    p{
        font-size: 27px;
        color: #151515;
    }
}
.founder{
    position: absolute;
    right: 270px;
    bottom: 0;
}
.profile{
    margin-top: 57px;
    h5{
        color: #000;
        font-family: 'Maison Neue Bold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.333%;
    }
    p{
        color: #149739;
        font-size: 16px;
    }
}
.about-founder-content{
    padding-left: 40px;
}
/******************************
       Sipplier
*******************************/
.supplier-box{
    border-radius: 52px;
    background: #EEFFF3;
    margin-inline: 145px;
}
.supplier-content{
    padding-top: 125px;
    padding-bottom: 88px;
}
.supplier-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 29px;
}
.supplier-img-card{
    width: 305px;
    height: 144px;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
/******************************
    Our Product
*******************************/
.our-products{
    position: relative;
    clip-path: polygon( 67.7% 0.028%,0% 0.213%,0% 100%,100% 100%,100% 12.995%,78.627% 13.335%,78.627% 13.335%,77.994% 13.356%,77.31% 13.388%,76.594% 13.381%,75.864% 13.287%,75.138% 13.057%,74.435% 12.642%,73.774% 11.993%,73.174% 11.062%,72.653% 9.8%,72.229% 8.158%,72.229% 8.158%,71.803% 6.263%,71.348% 4.663%,70.873% 3.338%,70.387% 2.268%,69.897% 1.431%,69.413% 0.807%,68.943% 0.375%,68.495% 0.115%,68.078% 0.006%,67.7% 0.028% );
    background: linear-gradient(180deg, #149739 0%, #063112 91.28%);
    padding-top: 100px;
    padding-bottom: 150px;
    .section-title{
        color: #FFF;
        margin-bottom: 20px;
    }
    .dec{
        color: #FFF;
        margin-bottom: 40px;
    }
}
.product-card{
    border-radius: 30px;
    background: #FFF;
    height: 354px;
    display: flex;
    align-items: end;
    justify-content: end;
    position: relative;
    overflow: hidden;
    padding: 30px;
    h3{
        position: absolute;
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        top: 30px;
        left: 20px;
        transition: 0.5s;
    }
    &:hover{
        h3{
            opacity: 0;
        }
        .product-content{
            transform: translateY(0);
            h3{
                opacity: 1;
            }
        }
    }
}
.product-content{
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.80);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    transition: 0.5s;
    h3{
        color: #FFF;
        position: relative;
        top: unset;
        left: unset;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
    }
    .btn-group{
        justify-content: center;
        gap: 10px;
    }
    .primary-btn{
        width: 55%;
        padding: 16px 13px;
    }
    .secondary-btn{
        width: 43%;
    }
}
.product-slider{
    margin-left: 16%;
}
.slick-slide{
    margin: 0 20px;
}
.slick-list{
    margin: 0 -20px;
}
.slick-arrow{
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 1px solid #FFF;
    z-index: 2;
    top: -43%;
    left: 60%;
    transition: 0.5s;
    &::before{
        position: absolute;
        content: '';
        width: 50%;
        height: 50%;
        left: 54%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: url(../img/slider-arrow.webp) no-repeat;
        background-position: center;
        background-size: 100%;
        transition: 0.5s;
    }
    &:hover,
    &:focus{
        background: #FFF;
        &::before{
            filter: brightness(0) saturate(100%) invert(10%) sepia(47%) saturate(2865%) hue-rotate(121deg) brightness(92%) contrast(95%);
        }
    }
}
.slick-prev{
    left: 54%;
    &::before{
        transform: translate(-50%, -50%) rotateY(180deg);
        left: 50%;
    }
}
/* *************************************************
        Service
************************************************ */
.our-service{
    .container{
        padding-block: 140px;
    }
}
.our-service-card{
    border-radius: 18px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.12);
    padding: 20px;
    height: 100%;
    transition: 0.5s;
    img{
        margin-bottom: 20px;
    }
    h5{
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 120.833%;
    }
    &:hover{
        box-shadow: 0 10px 14px 0 #14973963;
        img{
            transform: rotateY(180deg)
        }
    }
}
.our-service-card-content{
    padding-left: 50px;
    .row{
        .col-lg-6:nth-child(2n){
            .our-service-card{
                transform: translateY(-50px);
            }
        }
    }
}
.services {
    position: relative;
    overflow: hidden;
    height: 85dvh;
    display: flex;
    align-items: end;
    .container-fluid{
        height: 100%;
        padding: 0;
    }
    .cards{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        height: 100%;
    }
}
.services .glry-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.services .glry-img .tab-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}
.services .glry-img .tab-img.current {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.services::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.38) 100%);
}
.services .service-card {
    text-align: center;
    position: relative; 
    display: flex;
    align-items: flex-end;
    height: 100%;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.20);
    &:last-child{
        border-inline-end: 0;
    }
    p,.btn-group{
        opacity: 0;
        margin-bottom: -50px;
        transition: ease-in-out .4s;
    }
    .service-card-content{
        img{
            opacity: 0;
            margin-bottom: -50px;
        }
    }
    .btn-group{
        justify-content: center;
    }
    &:hover{
        p,.btn-group{
            opacity: 1;
            margin-bottom: 0;
        }
        p{
            margin-bottom: 15px;
        }
        .service-card-content img{
            opacity: 1;
            margin-bottom: 16px;
        }
        .service-card-content::after{
            opacity: 0.1;
        }
    }
}
.service-card-content{
    position: relative;
    z-index: 1;
    padding: 49px 15px ;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #FFF;
        backdrop-filter: blur(55px);
        z-index: -1;
        opacity: 0;
        transition: 0.5s;
        z-index: -1;
    }
}
.service-card .service-card-content img{
    margin-bottom: 18px;
}
.services .service-card h3{
    color: #FFF;
    font-family: 'Maison Neue Bold';
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 116.667%;
    margin-bottom: 10px;
}
.services .service-card .text{
    font-size: 19px;
    color: #fff;
}
.services .container-fluid{
    position: relative;
    z-index: 5;
}
/************************************
    Reason
************************************/
.reason{
    padding-block: 135px;
    .container{
        display: flex;
        justify-content: flex-end;
        position: relative;
    }
}
.reason-img{
    position: absolute;
    width: 55%;
    height: 100%;
    left: -210px;
    top: 0;
    bottom: 0;
    object-fit: contain;
}
.reason-card{
    border-radius: 11px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    padding: 24px 15px;
    height: 100%;
    transition: 0.5s;
    img{
        margin-bottom: 15px;
    }
    h5{
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 3px;
    }
    p{
        font-size: 18px;
        color: #000;
        margin-bottom: 0;
    }
    &:hover{
        box-shadow: 0px 0px 10px 1px #1497395d;
        img{
            transform: rotateY(180deg);
        }
    }
}
/******************************
       Optimize
*******************************/
.optimize{
    background: linear-gradient(180deg, #149739 0%, #063112 92.65%);
    clip-path: polygon( 32.205% 0.028%,100% 0.216%,100% 100%,-0.14% 100%,-0.14% 13.189%,21.263% 13.535%,21.263% 13.535%,21.896% 13.556%,22.581% 13.588%,23.299% 13.582%,24.03% 13.486%,24.757% 13.252%,25.46% 12.831%,26.122% 12.173%,26.723% 11.228%,27.246% 9.947%,27.67% 8.28%,27.67% 8.28%,28.097% 6.356%,28.552% 4.733%,29.028% 3.388%,29.515% 2.302%,30.005% 1.452%,30.49% 0.819%,30.96% 0.381%,31.409% 0.117%,31.827% 0.006%,32.205% 0.028% );
    padding-block: 150px;
    .section-title, .dec{
        color: #FFF;
    }
    .header-btn{
        padding: 17px 29px;
    }
}
.optimize-img{
    border-radius: 48px;
    overflow: hidden;
}
/******************************
        Featured
*******************************/
.featured{
    position: relative;
    .ring{
        top: unset;
        bottom: 20px;
        left: unset;
        right: 0;
    }
}
.featured-img{
    border-radius: 36px;
    overflow: hidden;
    &:hover{
        img{
            scale: 1.05;
        }
    }
}
.featured-content{
    padding: 20px;
}
.f-article{
    display: block;
    color: #A9A9A9;
    font-size: 16px;
    line-height: 162.5%;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
    &::before{
        position: absolute;
        content: '';
        width: 16px;
        height: 13px;
        clip-path: polygon( 0% 0%,100% 16.253%,16.253% 100%,0% 0% );
        left: 0;
        top: 4px;
        background: #149739;
        z-index: 1;
    }
}
.featured-dec{
    color: #272727;
}
.featured-title{
    color: #111;
    font-family: 'Maison Neue Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    &:hover{
        color: #149739;
    }
}
.date{
    color: #737373;
    font-size: 18px;
    line-height: 105.444%;
    display: flex;
    align-items: center;
    gap: 4px;
}
.featured-btn{
    width: 49px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 2px solid #149739;
    transition: 0.5s;
    &:hover{
        background: #149739;
        width: 79px;
        img{
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(57deg) brightness(103%) contrast(103%);
            transform: translateX(18px);
        }
    }
}
.article-btn{
    background: transparent;
    border: 1px solid #149739;
    color: #149739;
}
.text-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    span{
        display: block;
        width: 82%;
        height: 1px;
        background: #000;
    }
}
/******************************************
        Faq
********************************************/
.faq{
    position: relative;
    background: #F3F3F3;
    clip-path: polygon(67.7% 0.028%, 0% 0.213%, 0% 100%, 100% 100%, 100% 12.995%, 78.627% 13.335%, 78.627% 13.335%, 77.994% 13.356%, 77.31% 13.388%, 76.594% 13.381%, 75.864% 13.287%, 75.138% 13.057%, 74.435% 12.642%, 73.774% 11.993%, 73.174% 11.062%, 72.653% 9.8%, 72.229% 8.158%, 72.229% 8.158%, 71.803% 6.263%, 71.348% 4.663%, 70.873% 3.338%, 70.387% 2.268%, 69.897% 1.431%, 69.413% 0.807%, 68.943% 0.375%, 68.495% 0.115%, 68.078% 0.006%, 67.7% 0.028%);
    padding-block: 140px;
}
.accordion__item {
    position: relative;
    transition: 0.5s;
    border-bottom: 1px solid #000;
    margin-bottom: 18px;
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 12px 70px 12px 0;
    color: #111;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Maison Neue Bold';
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
    transition: 0.4s;
}
.accordion__item .accordion__title:hover {
    transform: translateY(-5px)
}
.accordion__title::after{
    content: '+';
    position: absolute;
    width: 33px;
    height: 33px;
    background: #149739;
    right: 2px;
    top: 9px;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after {
    transform: rotate(180deg);
}
.accordion__item .accordion__content {
    display: none;
    color: #272727;
    font-family: 'Maison Neue Light';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 145%;
    padding: 0 56px 12px 0;
}
/******************************
        Get In Touch
*******************************/
.get-in-touch{
    background: url(../img/contact-details-bg.webp) no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 110px;
    margin-bottom: -110px;
    position: relative;
    .ring{
        left: 0;
        top: -110px;
    }
}

.get-in-touch-content{
    padding: 30px;
    h5{
        color: #222;
        font-family: 'Maison Neue Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 145%;
    }
    p, p a{
        color: #222;
    }
    p a:hover{
        color: #149739;
    }
    iframe{
        width: 100%;
        height: 330px;
        border: none;
        border-radius: 19px;
        margin-top: 20px;
    }
}
.get-form{
    border-radius: 21px;
    background: #FFF;
    box-shadow: 0 24px 54px 0 rgba(0, 0, 0, 0.12);
    padding: 22px;
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
}
.title {
    color: #FFF;
    font-family: 'Maison Neue Bold';
    font-size: 29px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    background: #149739;
    padding: 13px 15px 13px 60px;
    position: absolute;
    left: -38px;
    top: -25px;
    &::before{
        content: '';
        position: absolute;
        width: 38px;
        height: 31px;
        background: #697C6F;
        clip-path: polygon( 100% 100%,0% 0%,100% 0%,100% 100% );
        left: 0;
        bottom: -31px;
    }
}
/******************************
        Footer
*******************************/
footer{
    background: transparent;
    padding-top: 170px;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        clip-path: polygon( 32.205% 0.036%,100% 0.276%,100% 100%,-0.14% 100%,-0.14% 16.807%,21.263% 17.247%,21.263% 17.247%,21.896% 17.275%,22.581% 17.316%,23.299% 17.307%,24.03% 17.185%,24.757% 16.887%,25.46% 16.351%,26.122% 15.512%,26.723% 14.308%,27.246% 12.675%,27.67% 10.551%,27.67% 10.551%,28.097% 8.1%,28.552% 6.031%,29.028% 4.318%,29.515% 2.933%,30.005% 1.851%,30.49% 1.044%,30.96% 0.486%,31.409% 0.149%,31.827% 0.008%,32.205% 0.036% );
        background: #171A18;
        z-index: -1;
    }
    .logo{
        margin-bottom: 18px;
    }
    p{
        color: #CDCDCD;
    }
    ul li a,
    p a{
        color: #D5D5D5;
        line-height: 190%;
    }
    .social-links{
        display: flex;
        align-items: center;
        margin-top: 30px;
        gap: 10px;
        a{
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9px;
            background: transparent;
            &:hover{
                background: #149739;
                transform: translateY(-3px);
            }
        }
    }
    .footer-title{
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 20px;
    }
    ul li{
        transition: 0.4s;
        &:hover{
            transform: translateX(5px);
        }
    }
    .copyright{
        margin-top: 65px;
        border-top: 1px solid #383838;
        padding-block: 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        p{
            margin: 0;
            color: #FFF;
        }
        a{
            color: #F28624;
            &:hover{
                color: #149739;
            }
        }
    }
}
/******************************************
        Inner Pages
********************************************/
.inner-banner{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        z-index: 1;
        display: flex;
        align-items: center;
    }
    .banner-content{
        width: 100%;
        h1{
            margin-bottom: 20px;
        }
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(270deg, rgba(5, 27, 12, 0.00) 0%, #003710 77.94%);
    }
}
.banner-form{
    margin-top: 125px;
    border-radius: 23px;
    background: #FFF;
    padding: 25px;
    .form-title{
        color: #FFF;
        font-size: 30px;
        line-height: 66.667%;
        text-transform: capitalize;
        background: #149739;
        padding: 20px 60px;
        text-align: center;
        border-radius: 11px;
        margin-top: -60px;
        margin-bottom: 13px;
    }
    .form-control{
        border-radius: 7px;
        border: 1px solid rgba(0, 0, 0, 0.22);
        background: #E7FFEE;
        color: #292323;
        font-size: 18px;
    }
    form .primary-btn{
        width: 100%;
        border-radius: 11px;
    }
}
/* Provide Section */
.provide-card{
    border-radius: 40px;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.09);
    padding: 20px;
    height: 100%;
    transition: 0.5s;
    &:hover{
        transform: translateY(-8px);
        box-shadow: 0 4px 34px 0 #14973948;
        .provide-img{
            img{
                scale: 1.1;
            }
        }
        .provide-content{
            h4{
                color: #149739;
            }
        }
    }
}
.provide-img{
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 20px;
}
.provide-content{
    h4{
        color: #292323;
        font-family: 'Maison Neue Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: 0.5s;
    }
}
/* Proven Section */
.proven{
    position: relative;
    background: url(../img/proven-bg.webp) no-repeat;
    background-size: cover;
    padding-block: 160px;
    .section-title{
        color: #FFF;
        margin-bottom: 50px;
    }
    .row{
        .col{
            .proven-card:last-child{
                border-bottom: 0;
            }
        }
    }
    .ring{
        bottom: 0;
        left: 0;
    }
}
.proven-icon-step{
    display: flex;
    align-items: center;
    gap: 30px;
    color: #FFF;
    font-family: 'Maison Neue Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    margin-bottom: 20px;
}
.proven-card{
    border-bottom: 1px solid #129036;
    padding-top: 30px;
    h4{
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 13px;
    }
    p{
        color: #FFF;
        margin-bottom: 25px;
    }
}
/* Service Products */
.service-product-img{
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    margin-bottom: 20px;
    transition: 0.5s;
}
.service-product-content{
    padding: 20px;
    position: relative;
    z-index: 1;
    h4{
        color: #292323;
        font-family: 'Maison Neue Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        text-transform: capitalize;
        margin-bottom: 10px;
        transition: 0.5s;
    }
    p{
        color: #272727;
        width: 70%;
        transition: 0.5s;
    }
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        background: #F6F6F6;
        clip-path: polygon( 0% 19.481%,0% 19.481%,0.088% 16.321%,0.342% 13.323%,0.749% 10.528%,1.295% 7.976%,1.966% 5.706%,2.748% 3.759%,3.627% 2.174%,4.59% 0.993%,5.623% 0.255%,6.711% 0%,93.289% 0%,93.289% 0%,94.377% 0.255%,95.41% 0.993%,96.373% 2.174%,97.252% 3.759%,98.034% 5.706%,98.705% 7.976%,99.251% 10.528%,99.658% 13.323%,99.912% 16.321%,100% 19.481%,100% 24.933%,100% 24.933%,99.989% 26.025%,99.958% 27.111%,99.906% 28.188%,99.833% 29.252%,99.74% 30.303%,99.627% 31.337%,99.494% 32.352%,99.342% 33.345%,99.17% 34.314%,98.98% 35.257%,98.743% 36.357%,98.743% 36.357%,98.543% 37.234%,98.327% 38.075%,98.097% 38.88%,97.852% 39.647%,97.594% 40.374%,97.322% 41.06%,97.038% 41.704%,96.743% 42.303%,96.436% 42.856%,96.118% 43.361%,95.068% 44.927%,95.068% 44.927%,94.78% 45.33%,94.487% 45.693%,94.189% 46.015%,93.886% 46.295%,93.579% 46.532%,93.268% 46.728%,92.955% 46.88%,92.639% 46.99%,92.321% 47.056%,92.002% 47.078%,87.662% 47.078%,87.662% 47.078%,87.491% 47.084%,87.319% 47.103%,87.148% 47.135%,86.978% 47.179%,86.808% 47.236%,86.638% 47.306%,86.47% 47.388%,86.302% 47.482%,86.134% 47.589%,85.968% 47.709%,85.285% 48.226%,85.285% 48.226%,85.076% 48.394%,84.87% 48.582%,84.665% 48.79%,84.463% 49.016%,84.264% 49.26%,84.068% 49.524%,83.874% 49.805%,83.684% 50.105%,83.497% 50.423%,83.313% 50.758%,83.027% 51.299%,83.027% 51.299%,82.763% 51.829%,82.509% 52.397%,82.267% 53.002%,82.037% 53.643%,81.818% 54.317%,81.612% 55.024%,81.419% 55.762%,81.24% 56.53%,81.074% 57.326%,80.923% 58.148%,80.88% 58.399%,80.88% 58.399%,80.814% 58.798%,80.751% 59.201%,80.693% 59.61%,80.639% 60.023%,80.589% 60.44%,80.543% 60.861%,80.501% 61.285%,80.463% 61.713%,80.429% 62.145%,80.4% 62.579%,80.4% 62.579%,80.383% 62.855%,80.369% 63.132%,80.356% 63.41%,80.344% 63.688%,80.335% 63.967%,80.327% 64.246%,80.321% 64.525%,80.317% 64.805%,80.314% 65.085%,80.313% 65.366%,80.313% 68.182%,80.313% 75%,80.144% 79.422%,80.144% 79.422%,80.132% 79.706%,80.119% 79.989%,80.105% 80.272%,80.089% 80.553%,80.072% 80.834%,80.053% 81.115%,80.033% 81.394%,80.011% 81.673%,79.988% 81.951%,79.964% 82.228%,79.839% 83.611%,79.839% 83.611%,79.773% 84.282%,79.7% 84.945%,79.618% 85.599%,79.529% 86.245%,79.432% 86.88%,79.327% 87.505%,79.214% 88.118%,79.094% 88.72%,78.966% 89.31%,78.831% 89.887%,78.659% 90.597%,78.659% 90.597%,78.563% 90.979%,78.465% 91.354%,78.363% 91.722%,78.259% 92.083%,78.151% 92.436%,78.041% 92.781%,77.928% 93.119%,77.812% 93.449%,77.693% 93.77%,77.571% 94.084%,77.364% 94.605%,77.364% 94.605%,77.192% 95.023%,77.016% 95.424%,76.835% 95.807%,76.65% 96.172%,76.461% 96.519%,76.268% 96.848%,76.071% 97.157%,75.871% 97.448%,75.668% 97.72%,75.461% 97.971%,74.914% 98.606%,74.914% 98.606%,74.674% 98.869%,74.432% 99.105%,74.187% 99.314%,73.94% 99.495%,73.69% 99.649%,73.439% 99.775%,73.186% 99.873%,72.932% 99.943%,72.677% 99.986%,72.421% 100%,6.711% 100%,6.711% 100%,5.623% 99.745%,4.59% 99.007%,3.627% 97.826%,2.748% 96.241%,1.966% 94.294%,1.295% 92.025%,0.749% 89.472%,0.342% 86.677%,0.088% 83.679%,0% 80.519%,0% 19.481% );
        z-index: -1;
        transition: 0.5s;
    }
}
.product-btn{
    position: absolute;
    right: 7px;
    bottom: 8px;
    width: 66px;
    height: 66px;
    background: #149739;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    &:hover{
        img{
            transform: rotate(47deg);
        }
    }
}
.service-product-card{
    transition: 0.5s;
    &:hover{
        .service-product-img{
            margin-bottom: -25px;
        }
        .service-product-content{
            h4, p{
                color: #FFF;
            }
            &::after{
                background: #149739;
            }
        }
    }
}
/* Delivered */
.delivered{
    background: #E8FFEF;
    position: relative;
    padding-block: 130px;
    .section-title{
        font-size: 58px;
    }
    &::before, &::after{
        position: absolute;
        content: '';
        width: 30%;
        height: 6%;
        clip-path: polygon( 94.186% 61.538%,94.186% 38.462%,94.186% 38.462%,94.262% 32.223%,94.482% 26.305%,94.835% 20.786%,95.308% 15.747%,95.889% 11.265%,96.566% 7.421%,97.328% 4.293%,98.162% 1.961%,99.057% 0.503%,100% 0%,-31.008% 0%,-31.008% 0%,-31.951% 0.503%,-32.845% 1.961%,-33.68% 4.293%,-34.441% 7.421%,-35.119% 11.265%,-35.7% 15.747%,-36.173% 20.786%,-36.525% 26.305%,-36.746% 32.223%,-36.822% 38.462%,-36.822% 61.538%,-36.822% 61.538%,-36.746% 67.777%,-36.525% 73.695%,-36.173% 79.214%,-35.7% 84.253%,-35.119% 88.735%,-34.441% 92.579%,-33.68% 95.707%,-32.845% 98.039%,-31.951% 99.497%,-31.008% 100%,88.372% 100%,88.372% 100%,89.315% 99.497%,90.21% 98.039%,91.044% 95.707%,91.806% 92.579%,92.483% 88.735%,93.064% 84.253%,93.537% 79.214%,93.89% 73.695%,94.11% 67.777%,94.186% 61.538% );
        background: #FFF;
        left: 0;
        top: 0;
    }
    &::after{
        bottom: -2px;
        right: 0;
        top: unset;
        left: unset;
        transform: rotate(180deg);
    }
}
.delivered-card{
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        inset: 0;
        border-radius: 30px;
        background: linear-gradient(1deg, #000 0.47%, rgba(102, 102, 102, 0.00) 82.55%);
    }
    h5{
        position: absolute;
        left: 45px;
        bottom: 45px;
        width: 70%;
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 119.231%;
        text-transform: capitalize;
        z-index: 1;
    }
    &:hover{
        img{
            scale: 1.1;
        }
        h5{
            color: #149739;
        }
    }
}
/* Whole Seller */
.whole-seller{
    position: relative;
    .ring{
        top: 0;
        left: 0;
    }
}
.whole-seller-card{
    border-radius: 18px;
    border: 1px solid #E5E5E5;
    background: #FFF;
    box-shadow: 0 10px 14px 0 rgba(0, 0, 0, 0.12);
    text-align: left;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    img{
        margin-bottom: 15px;
    }
    p{
        margin-bottom: 0;
        line-height: 130%;
        transition: 0.5s;
    }
    &:hover{
        box-shadow: 0 10px 14px 0 #14973948;
        img{
            transform: rotateY(180deg);
        }
        p{
            color: #149739;
        }
    }
}
.whole-seller-content{
    .row{
        .col:nth-child(1),
        .col:nth-child(3),
        .col:nth-child(4),
        .col:nth-child(6),
        .col:nth-child(7),
        .col:nth-child(9){
            transform: translateY(100px);
        }
    }
}
/******************************************
        About Page
********************************************/
/* Expert */
.expert{
    position: relative;
    .about-img{
        img{
            border-radius: 46px 0 46px 46px;
        }
    }
    .ring{
        top: unset;
        left: 0;
        bottom: 0;
    }
}
.expert-content{
    position: relative;
    hr{
        background: #8C8A8A;
        margin-block: 25px;
    }
    ul{
        margin-bottom: 20px;
        width: 60%;
        li{
            color: #272727;
            font-family: 'Maison Neue Bold';
            font-size: 22px;
            font-style: normal;
            font-weight: normal;
            line-height: 181.818%;
            position: relative;
            padding-left: 30px;
            &::before{
                position: absolute;
                content: '';
                width: 22px;
                height: 22px;
                background: url(../img/tick.webp) no-repeat;
                background-size: contain;
                left: 0;
                top: 8px;
            }
        }
    }
    .call-btn{
        color: #000;
        font-size: 40px;
        small{
            font-size: 21px;
        }
    }
    .call-icon{
        width: 56px;
        height: 56px;
        outline: none;
    }
}
.expert-content-img{
    position: absolute;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 31px 0 rgba(0, 0, 0, 0.11);
    overflow: hidden;
    padding: 19px;
    right: 0;
    bottom: 0;
    img{
        border-radius: 20px;
    }
}
/* Commitment */
.commitement{
    background: #E8FFEF;
    position: relative;
    padding-block: 110px;
    &::before, &::after {
        position: absolute;
        content: '';
        width: 37%;
        height: 9%;
        clip-path: polygon( 95.468% 61.538%,95.468% 38.462%,95.468% 38.462%,95.528% 32.223%,95.699% 26.305%,95.974% 20.786%,96.343% 15.747%,96.796% 11.265%,97.324% 7.421%,97.917% 4.293%,98.568% 1.961%,99.265% 0.503%,100% 0%,-2.115% 0%,-2.115% 0%,-2.85% 0.503%,-3.547% 1.961%,-4.197% 4.293%,-4.791% 7.421%,-5.319% 11.265%,-5.772% 15.747%,-6.141% 20.786%,-6.415% 26.305%,-6.587% 32.223%,-6.647% 38.462%,-6.647% 61.538%,-6.647% 61.538%,-6.587% 67.777%,-6.415% 73.695%,-6.141% 79.214%,-5.772% 84.253%,-5.319% 88.735%,-4.791% 92.579%,-4.197% 95.707%,-3.547% 98.039%,-2.85% 99.497%,-2.115% 100%,90.937% 100%,90.937% 100%,91.672% 99.497%,92.369% 98.039%,93.019% 95.707%,93.613% 92.579%,94.141% 88.735%,94.594% 84.253%,94.962% 79.214%,95.237% 73.695%,95.409% 67.777%,95.468% 61.538% );
        background: #FFF;
        left: 0;
        top: 0;
    }
    &::after{
        bottom: -2px;
        right: 0;
        top: unset;
        left: unset;
        transform: rotate(180deg);
    }
    .ring{
        left: unset;
        top: unset;
        bottom: 70px;
        right: 0;
        z-index: 1;
    }
}
.commitement-card{
    border-bottom: 3px solid #95E1AA;
    img{
        margin-bottom: 8px;
        height: 80px;
    }
    h4{
        color: #292323;
        font-family: 'Maison Neue Bold';
        font-size: 30px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: 20px;
    }
}
/* About Founder */
.founder-about{
    position: relative;
    .container{
        display: flex;
        justify-content: flex-end;
    }
}
.founder-about-img{
    position: absolute;
    width: 42%;
    height: 100%;
    left: 0;
    top: 0;
    .counter-item{
        width: 525px;
        position: absolute;
        right: 20px;
        bottom: 20px;
        border-radius: 20px;
        background: rgba(150, 139, 139, 0.36);
        backdrop-filter: blur(15px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        gap: 15px;
        h3{
            color: #FFF;
            font-size: 93px;
            width: 170px;
        }
        p{
            width: 50%;
            color: #FFF;
            font-size: 26px;
            font-family: 'Maison Neue Light';
        }
        .plus{
            font-size: 30px;
            width: auto;
        }
        &::after{
            display: none;
        }
    }
}
.big-p{
    font-size: 27px;
}
.founder-about-content{
    padding-block: 100px;
    .profile{
        p{
            font-size: 20px;
        }
    }
}
/* Team */
.team{
    position: relative;
    .ring{
        left: unset;
        right: 0;
        top: -80px;
    }
}
.team-card{
    padding: 20px;
    border-radius: 40px;
    background: #FFF;
    box-shadow: 0 4px 34px 0 rgba(0, 0, 0, 0.09);
    transition: 0.5s;
    &:hover{
        transform: translateY(-10px);
        .team-img{
            img{
                scale: 1.1;
            }
        }
        .team-content{
            h4, p{
                color: #FFF;
            }
            &::after{
                opacity: 1;
            }
        }
    }
}
.team-img{
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    margin-bottom: -2px;
}
.team-content{
    text-align: center;
    background: #C8F4D4;
    border-radius: 0 0 30px 30px;
    padding: 30px;
    position: relative;
    z-index: 1;
    h4{
        color: #000;
        font-family: 'Maison Neue Bold';
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 88.235%;
        text-transform: capitalize;
        margin-bottom: 7px;
        transition: 0.5s;
    }
    p{
        margin-bottom: 0;
        color: #151515;
        transition: 0.5s;
    }
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 0 0 30px 30px;
        background: linear-gradient(180deg, #149739 0%, #063112 100%);
        z-index: -1;
        opacity: 0;
        transition: 0.5s;
    }
}
/* Advantage */
.advantage{
    position: relative;
    background: #F6F6F6;
    .advantage-img{
        position: absolute;
        bottom: 0;
        left: 139px;
    }
    &::before{
        position: absolute;
        content: '';
        width: 40%;
        height: 60%;
        bottom: 0;
        left: 0;
        background: #149739;
        clip-path: polygon( 62.877% 1.902%,62.877% 1.902%,62.723% 1.562%,62.549% 1.251%,62.356% 0.97%,62.146% 0.722%,61.922% 0.508%,61.684% 0.329%,61.435% 0.188%,61.177% 0.084%,60.91% 0.021%,60.639% 0%,-13.392% 0%,-13.392% 0%,-13.817% 0.052%,-14.221% 0.203%,-14.597% 0.444%,-14.941% 0.767%,-15.246% 1.164%,-15.509% 1.627%,-15.722% 2.148%,-15.881% 2.719%,-15.98% 3.33%,-16.015% 3.975%,-16.015% 96.025%,-16.015% 96.025%,-15.98% 96.67%,-15.881% 97.281%,-15.722% 97.852%,-15.509% 98.373%,-15.246% 98.836%,-14.941% 99.233%,-14.597% 99.556%,-14.221% 99.797%,-13.817% 99.948%,-13.392% 100%,97.762% 100%,97.762% 100%,98.351% 99.902%,98.884% 99.625%,99.35% 99.194%,99.742% 98.634%,100.05% 97.969%,100.264% 97.225%,100.375% 96.427%,100.374% 95.598%,100.252% 94.765%,100% 93.952%,62.877% 1.902% );
    }
    .ring{
        left: unset;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
}
.advantage-content{
    display: flex;
    justify-content: end;
}
.advantage-card{
    img{
        margin-bottom: 15px;
    }
    h5{
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 120.833%;
        margin-bottom: 6px;
        transition: 0.5s;
    }
    &:hover{
        h5{
            color: #149739;
        }
        img{
            transform: rotateY(180deg);
        }
    }
}
/******************************************
        Blog Page
********************************************/
.blog-list-card{
    border-radius: 30px;
    overflow: hidden;
    background: #F6F6F6;
    height: 100%;
    &:hover{
        .blog-list-img{
            img{
                scale: 1.1;
            }
        }
        .blog-title{
            color: #149739;
        }
    }
}
.blog-list-img{
    overflow: hidden;
}
.blog-list-content{
    padding: 20px;
    padding-bottom: 40px;
}
.blog-flex{
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-date{
    color: #000;
    font-family: 'Maison Neue Light';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 144.444%;
    border-radius: 70px;
    background: #BCF6CC;
    padding: 5px;
    padding-right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    span{
        width: 27px;
        height: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #149739;
        border-radius: 50%;
    }
}
.admin{
    background: #FFF;
    color: #737373;
    span{
        background: #E8F1EB;
    }
}
.blog-title{
    color: #111;
    font-family: 'Maison Neue Bold';
    font-size: 23px;
    font-style: normal;
    font-weight: normal;
    line-height: 126.087%;
    margin-bottom: 10px;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/******************************************
        Blog Details Page
********************************************/
.blog-details{
    h1, h2, h3, h4{
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 33px;
        font-style: normal;
        font-weight: normal;
        line-height: 130.303%;
        margin-bottom: 7px;
    }
    h2{
        font-size: 28px;
    }
    h3{
        font-size: 24px;
    }
    h4{
        font-size: 20px;
    }
    ul, ol{
        margin-bottom: 20px;
        li{
            color: #373737;
            font-family: 'Maison Neue Light';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 190%;
            position: relative;
            padding-left: 20px;
            &::before{
                content: '';
                position: absolute;
                width: 11px;
                height: 11px;
                background: #149739;
                border-radius: 50%;
                left: 0;
                top: 12px;
            }
        }
    }
    ol{
        li{
            padding-left: 50px;
            line-height: 155%;
            span{
                color: #111;
                font-family: "Maison Neue Bold";
            }
            &::before{
                width: 36px;
                height: 36px;
                counter-increment: section;
                content: counter(section);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #FFF;
                font-family: 'Maison Neue Light';
                font-size: 18px;
                font-style: normal;
                top: 0;
            }
        }
    }
}
.blog-details-img{
    margin-bottom: 30px;
    height: 495px;
    img{
        width: 100%;
        height: 100%;
        border-radius: 30px;
    }
}
.side-bar-content{
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.12);
    padding: 40px 17px;
    margin-bottom: 10px;
    h3{
        color: #000;
        font-family: 'Maison Neue Bold';
        font-size: 35px;
        font-style: normal;
        font-weight: normal;
        line-height: 57.143%;
        margin-bottom: 20px;
    }
    ul{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
        li{
            font-family: 'Maison Neue Light';
            font-size: 16px;
            font-style: normal;
            font-weight: normal;
            line-height: 168.75%;
            padding: 8px 20px;
            border-radius: 60px;
            border: 1px solid #DFE9E2;
            background: #FFFF;
            margin-bottom: 0;
            transition: 0.4s;
            a{
                color: #000;
            }
            &::before{
                display: none;
            }
            &:hover{
                background: #149739;
                border-color: #DFE9E2;
                a{
                    color: #FFF;
                }
            }
        }
    }
}
.recent-blog-card{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    h4{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #111;
        font-family: 'Maison Neue Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 120%;
        margin-bottom: 10px;
        transition: 0.5s;
    }
    &:hover{
        h4{
            color: #149739;
        }
    }
}
.recent-blog-img{
    border-radius: 14px;
    width: 174px;
    height: 180px;
    margin-right: -7px;
    z-index: 1;
}
.recent-blog-content{
    border-radius: 0 14px 14px 0;
    border: 1px solid rgba(20, 151, 57, 0.35);
    background: #FFF;
    padding: 20px 7px;
    padding-left: 14px;
}
.recent-date{
    color: #5E8169;
    font-family: 'Maison Neue Light';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 162.5%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    img{
        filter: brightness(0) saturate(100%) invert(38%) sepia(98%) saturate(757%) hue-rotate(97deg) brightness(91%) contrast(84%);
    }
}
.pagination{
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    a{
        display: flex;
        align-items: center;
        border-radius: 12px;
        gap: 26px;
        padding: 16px 27px;
        border: 1px solid #BAB8B8;
        background: #F6F6F6;
        position: relative;
        z-index: 1;
        span{
            overflow: hidden;
            color: #111;
            font-family: 'Maison Neue Bold';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 155%;
            transition: 0.5s;
        }
        img{
            width: 132px;
            height: 88px;
            object-fit: cover;
            border-radius: 12px;
        }
        &::after{
            content: '';
            position: absolute;
            width: 40%;
            height: 100%;
            top: 0;
            right: 0;
            background: #149739;
            border-radius: 0 12px 12px 0;
            transition: 0.5s;
            z-index: -1;
        }
    }
    .next-prev-post{
        &:hover{
            border-color: #149739;
            span{
                color: #FFF;
            }
            &::after{
                width: 100%;
                border-radius: 12px;
            }
        }
    }
    .next-post{
        text-align: right;
        justify-content: flex-end;
        &::after{
            left: 0;
            right: unset;
            border-radius: 12px 0 0 12px;
        }
    }
}
/******************************************
        Contact Details
********************************************/
.contact-details-content{
    background: linear-gradient(180deg, #149739 0%, #063112 78.11%);
    padding: 40px 18px;
    border-radius: 40px;
    .contact-card:last-child{
        border-bottom: none;
        margin-bottom: 0;
    }
}
.contact-card{
    border-bottom: 1px solid #BEE6CA;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #59E681;
}
.contact-card-content{
    width: 80%;
    h5{
        color: #FFF;
        font-family: 'Maison Neue Bold';
        font-size: 25px;
        font-style: normal;
        font-weight: normal;
        line-height: 172%;
        margin-bottom: 5px;
    }
    p, p a{
        color: #FFF;
    }
    p a:hover{
        color: #59E681;
    }
}
.contact-details-form{
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.34);
    background: #E4FFEC;
    padding: 35px 42px;
    .form-title{
        color: #111;
        font-size: 40px;
    }
    .form-control{
        border-radius: 12px;
        background: #FFF;
        color: #0B0B0B;
        font-family: 'Maison Neue Light';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 100%;
        padding: 17px 20px;
        border-color: #FFF;
    }
    .form-control:focus{
        border-color: #149739;
    }
    .form-control::placeholder{
        color: #0B0B0B;
    }
}
.contact-details{
    position: relative;
    iframe{
        width: 100%;
        height: 733px;
        border: none;
        border-radius: 20px;
    }
    .ring{
        top: unset;
        left: 0;
        bottom: 0;
    }
}
/******************************************
        Products Page
********************************************/
p{
    transition: 0.5s;
}
.products{
    position: relative;
    .ring{
        top: 55%;
        left: 0;
    }
}
.products-card{
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    background: #FFF;
    padding: 20px;
    padding-bottom: 30px;
    &:hover{
        .product-contant{
            background: #149739;
            .primary-btn{
                background: #FFF;
                color: #149739;
                span{
                    background: #149739;
                }
                &::before, &::after{
                    display: none;
                }
            }
        }
        .product-title, p{
            color: #FFF;
        }
    }
}
.product-img{
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-contant{
    border-radius: 30px;
    background: #F6F6F6;
    padding: 20px;
    transition: 0.5s;
}
.product-title{
    color: #292323;
    font-family: 'Maison Neue Bold';
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 5px;
    transition: 0.5s;
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .get-in-touch {
        .ring {
            width: 110px;
        }
    }
    .featured {
        .ring {
            width: 105px;
        }
    }
    .popup .popup__content {
        width: 60%;
    }
    .founder {
        right: 115px;
    }
    .about-founder-content {
        padding-left: 20px;
    }
    .supplier-box {
        margin-inline: 60px;
    }
    .product-slider {
        margin-left: 10%;
    }
    .slick-arrow {
        left: 60%;
    }
    .slick-prev{
        left: 53%;
    }
    .product-content {
        .primary-btn {
            font-size: 17px;
        }
    }
    .about-circle-vector {
        top: -115px;
        width: 301px;
    }
    .services .service-card h3 {
        font-size: 26px;
    }
    .reason-img {
        width: 45%;
        left: -85px;
    }
    .inner-banner {
        & .banner-content {
            h1{
                margin-bottom: 10px;
            }
        }
    }
    .banner-form {
        .form-control {
            font-size: 16px;
            padding: 10px 11px;
        }
        .form-title{
            font-size: 24px;
            padding: 18px 50px;
        }
    }
    .service-banner {
        height: 650px;
        .banner-content{
            padding-top: 70px;
            h1 {
                font-size: 58px;
            }
        }
        .banner-form{
            margin-top: 140px;
        }
    }
    .proven {
        padding-block: 90px;
        background-position: right;
        .section-title {
            margin-bottom: 40px;
        }
    }
    .whole-seller {
        .ring {
            width: 440px;
        }
    }
    .commitement {
        .ring {
            width: 90px;
        }
    }
    .founder-about-img {
        width: 41%;
    }
    .founder-about-content {
        padding-block: 40px;
    }
    .team {
        .ring {
            width: 160px;
        }
    }
    .advantage {
        .ring {
            width: 125px;
        }
    }
    .advantage {
        .advantage-img {
            left: 10px;
        }
    }
    .products {
        .ring {
            width: 100px;
        }
    }
    .contact-card-content {
        h5 {
            line-height: 127%;
        }
    }
    .contact-details{
        .ring {
            width: 100px;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
    p{
        font-size: 16px;
    }
    .logo {
        width: 100px;
    }
    #menu{
        padding-inline: 30px;
    }
    header{
        padding-block: 15px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 12px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before{
        top: 9px;
        right: -5px;
        width: 7px;
        height: 7px;
    }
    #menu ul ul li a {
        font-size: 16px;
        padding: 8px 10px;
    }
    #menu li:hover>ul>li {
        height: 32px;
    }
    .call-btn {
        font-size: 19px;
        gap: 6px;
        small{
            font-size: 13px;
        }
    }
    .call-icon{
        width: 35px;
        height: 35px;
        padding: 10px;
    }
    .primary-btn{
        font-size: 16px;
        span {
            width: 6px;
            height: 6px;
        }
    }
    .banner-content {
        width: 50%;
        h1 {
            font-size: 45px;
        }
        p{
            font-size: 16px;
            margin-bottom: 15px;
        }
    }
    .header-btn {
        padding: 12px 20px;
    }
    .banner-slider {
        & .slick-dots {
            li {
                width: 8px;
                height: 8px;
            }
            &::after {
                width: 5%;
                height: 105%;
            }
        }
    }
    .section-title {
        font-size: 50px;
        margin-bottom: 8px;
    }
    .about-img {
        & .counter-item {
            h3 {
                font-size: 77px;
            }
            p{
                font-size: 16px;
            }
        }
    }
    .counter-item {
        & h3 {
            font-size: 50px;
        }
        p{
            font-size: 18px;
        }
    }
    .about {
        padding-bottom: 170px;
    }
    .about-founder-content {
        padding-left: 0;
    }
    .about-founder {
        padding-block: 75px;
        p {
            font-size: 21px;
        }
    }
    .founder {
        right: 115px;
        width: 440px;
    }
    .profile {
        h5 {
            font-size: 24px;
        }
        p{
            font-size: 14px;
        }
    }
    .supplier-content {
        padding-top: 85px;
        padding-bottom: 77px;
    }
    .supplier-box {
        margin-inline: 45px;
    }
    .dec {
        font-size: 16px;
    }
    .supplier-img-card {
        width: 260px;
        height: 126px;
        padding: 20px;
    }
    .slick-arrow{
        width: 55px;
        height: 55px;
    }
    .product-card {
        height: 324px;
        padding: 10px;
        h3 {
            font-size: 24px;
        }
    }
    .product-content {
        .btn-group {
            gap: 6px;
        }
        .primary-btn{
            font-size: 14px;
        }
    }
    .slick-arrow {
        left: 65%;
    }
    .slick-prev{
        left: 59%;
    }
    .our-products{
        padding-top: 80px;
        padding-bottom: 100px;
        .section-title{
            margin-bottom: 10px;
        }
        .dec{
            margin-bottom: 30px;
        }
    }
    .our-service-card-content {
        padding-left: 30px;
    }
    .our-service-card {
        img{
            margin-bottom: 5px;
            width: 60px;
        }
        & h5 {
            font-size: 20px;
        }
    }
    .services .service-card h3{
        font-size: 22px;
        margin-bottom: 5px;
    }
    .services .service-card .text{
        font-size: 15px;
    }
    .service-card-content {
        padding: 29px 8px;
        img{
            width: 50px;
        }
    }
    .services .service-card {
        p, .btn-group {
            margin-bottom: -75px;
        }
    }
    .services .service-card {
        &:hover {
            & p {
                margin-bottom: 8px;
            }
        }
    }
    .reason {
        padding-block: 70px;
    }
    .reason-card{
        img{
            width: 54px;
            margin-bottom: 7px;
        }
        h5{
            font-size: 20px;
        }
        p{
            font-size: 15px;
        }
    }
    .reason-img {
        left: -70px;
    }
    .optimize {
        padding-block: 90px;
    }
    .f-article {
        font-size: 14px;
    }
    .featured-content{
        padding: 15px;
    }
    .featured-title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .date {
        font-size: 14px;
    }
    .accordion__item {
        margin-bottom: 12px;
    }
    .accordion__item .accordion__title {
        padding: 8px 60px 8px 0;
        font-size: 20px;
    }
    .accordion__item .accordion__content {
        padding: 0 50px 8px 0;
        font-size: 16px;
    }
    .accordion__title::after{
        top: 6px;
    }
    .get-in-touch{
        padding-top: 70px;
        padding-bottom: 110px;
        margin-bottom: -110px;
    }
    .get-in-touch-content {
        h5 {
            font-size: 18px;
        }
        iframe{
            height: 270px;
        }
    }
    .get-form {
        padding-top: 50px;
        padding-bottom: 30px;
    }
    label {
        font-size: 16px;
    }
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
    .title{
        font-size: 25px;
    }
    footer {
        padding-top: 110px;
        .footer-title {
            font-size: 20px;
            margin-bottom: 15px;
        }
        ul li a, p a{
            font-size: 16px;
        }
        .copyright {
            margin-top: 35px;
            padding-block: 20px;
        }
        .social-links {
            a {
                width: 40px;
                height: 40px;
                padding: 7px;
            }
        }
    }
    .fixed-contact {
        right: 10px;
    }
    .ring {
        width: 370px;
    }
    .get-in-touch {
        .ring {
            top: -80px;
        }
    }
    .service-banner {
        height: 560px;
        & .banner-content {
            h1 {
                font-size: 50px;
                margin-bottom: 5px;
            }
        }
        .banner-form {
            margin-top: 95px;
            padding: 17px;
            .form-control {
                font-size: 14px;
                padding: 10px 10px;
            }
            .form-title {
                font-size: 20px;
                padding: 16px 50px;
                margin-top: -40px;
            }
        }
    }
    .provide-card {
        padding: 17px;
    }
    .provide-content {
        h4 {
            font-size: 22px;
        }
    }
    .proven {
        .section-title {
            margin-bottom: 30px;
        }
    }
    .proven-card {
        padding-top: 15px;
        h4 {
            font-size: 24px;
            margin-bottom: 6px;
        }
        p{
            margin-bottom: 15px;
        }
    }
    .proven-icon-step{
        font-size: 18px;
        margin-bottom: 12px;
        gap: 24px;
        img{
            width: 50px;
        }
    }
    .service-product-img{
        height: 330px;
        padding: 35px;
        margin-bottom: 10px;
        img{
            height: 100%;
            object-fit: contain;
        }
    }
    .service-product-content {
        h4 {
            font-size: 22px;
            margin-bottom: 5px;
        }
        p{
            width: 80%;
        }
    }
    .product-btn {
        bottom: 5px;
        width: 55px;
        height: 55px;
    }
    .delivered {
        padding-block: 90px;
        .section-title {
            font-size: 48px;
        }
        h5{
            font-size: 20px;
            left: 35px;
            bottom: 35px;
        }
    }
    .whole-seller-card {
        padding: 15px;
        img {
            margin-bottom: 10px;
            width: 80px;
        }
    }
    .whole-seller {
        .ring {
            width: 400px;
        }
    }
    .mb-40 {
        margin-bottom: 20px;
    }
    .expert-content {
        & ul {
            li {
                font-size: 18px;
                &::before{
                    top: 5px;
                }
            }
        }
    }
    .expert-content-img{
        width: 280px;
    }
    .expert-content {
        hr{
            margin-block: 15px;
        }
        .call-icon {
            width: 50px;
            height: 50px;
        }
        .call-btn {
            font-size: 32px;
            small {
                font-size: 17px;
            }
        }
    }
    .mb-60 {
        margin-bottom: 30px;
    }
    .commitement-card {
        img {
            margin-bottom: 4px;
            height: 70px;
        }
        h4{
            font-size: 24px;
            margin-bottom: 10px;
        }
    }
    .commitement {
        .ring {
            width: 80px;
        }
    }
    .big-p {
        font-size: 21px;
    }
    .profile {
        margin-top: 47px;
        img{
            width: 203px;
        }
    }
    .founder-about-content {
        & .profile {
            p {
                font-size: 16px;
            }
        }
    }
    .founder-about-img {
        & .counter-item {
            width: 360px;
            border-radius: 15px;
            padding: 16px;
            gap: 10px;
            h3 {
                color: #FFF;
                font-size: 73px;
                width: 140px;
            }
            .plus{
                font-size: 24px;
            }
            p{
                font-size: 19px;
            }
        }
    }
    .team-content {
        padding: 20px;
        h4 {
            font-size: 26px;
            margin-bottom: 3px;
        }
    }
    .team {
        .ring {
            width: 130px;
        }
    }
    .advantage-card {
        img {
            margin-bottom: 6px;
            width: 70px;
        }
        h5{
            font-size: 22px;
        }
    }
    .advantage{
        .ring{
            width: 114px;
        }
        .advantage-img{
            width: 552px;
        }
    }
    .blog-date {
        font-size: 14px;
        span{
            width: 23px;
            height: 23px;
            padding: 6px;
        }
    }
    .blog-list-content {
        padding: 15px;
        padding-bottom: 30px;
    }
    .blog-title{
        font-size: 20px;
        margin-bottom: 6px;
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    .products{
        .ring{
            width: 80px;
        }
    }
    .product-img{
        height: 270px;
        padding: 15px;
        img {
            height: 100%;
            object-fit: contain;
        }
    }
    .product-title {
        font-size: 20px;
    }
    .products-card{
        padding: 15px;
        padding-bottom: 20px;
    }
    .contact-icon {
        width: 43px;
        height: 43px;
        padding: 12px;
    }
    .contact-card-content {
        h5 {
            font-size: 21px;
        }
    }
    .contact-details-content {
        padding: 30px 18px;
    }
    .contact-details-form {
        padding: 30px 38px;
        .form-title{
            font-size: 36px;
        }
        .form-control {
            border-radius: 10px;
            font-size: 16px;
            padding: 14px 16px;
        }
    }
    .contact-details {
        & .ring {
            width: 80px;
        }
        iframe{
            height: 566px;
        }
    }
    .blog-details-img {
        margin-bottom: 20px;
        height: 428px;
    }
    .blog-details {
        h1, h2, h3, h4{
            margin-bottom: 3px;
        }
        h1{
            font-size: 30px;
        }
        h2 {
            font-size: 25px;
        }
        h3 {
            font-size: 21px;
        }
        h4{
            font-size: 19px;
        }
        ul {
            margin-bottom: 15px;
            li {
                font-size: 16px;
                padding-left: 15px;
                &::before {
                    width: 8px;
                    height: 8px;
                    top: 11px;
                }
            }
        }
        ol {
            margin-bottom: 15px;
            li{
                font-size: 16px;
                padding-left: 42px;
                &::before {
                    width: 31px;
                    height: 31px;
                    font-size: 16px;
                }
            }
        }
    }
    .pagination {
        margin-top: 0px;
        a {
            padding: 14px 24px;
            img {
                width: 112px;
                height: 66px;
            }
            span{
                font-size: 18px;
            }
        }
    }
    .side-bar-content {
        & h3 {
            font-size: 28px;
            margin-bottom: 15px;
        }
    }
    .recent-blog-img{
        width: 154px;
        height: 160px;
    }
    .recent-blog-card {
        h4 {
            font-size: 17px;
            margin-bottom: 10px;
        }
    }
    .recent-date {
        font-size: 12px;
        gap: 6px;
        img{
            width: 11px;
        }
    }
    .side-bar-content {
        & ul {
            & li {
                font-size: 14px;
            }
        }
    }
}
@media (max-width: 1024px) {
    .popup .popup__content {
        width: 80%;
    }
    .primary-btn{
        padding: 14px 25px;
    }
    .header-btn {
        padding: 10px 16px;
    }
    #menu {
        padding-inline: 20px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
    .flex-box {
        gap: 20px;
    }
    header {
        padding-block: 8px;
    }
    header.sticky {
        padding-block: 8px;
    }
    .banner-content {
        h1 {
            font-size: 38px;
        }
    }
    .banner-slider {
        & .slick-dots {
            &::after {
                width: 6%;
                height: 100%;
            }
        }
    }
    .section-title {
        font-size: 34px;
        margin-bottom: 5px;
    }
    .about-img {
        img {
            border-radius: 26px;
        }
        .counter-item {
            h3 {
                font-size: 66px;
            }
            p {
                font-size: 14px;
            }
        }
    }
    .about-circle-vector {
        top: -70px;
        width: 211px;
    }
    .counter-item {
        padding: 15px 20px;
        border-radius: 16px;
        & h3 {
            font-size: 44px;
        }
        p {
            font-size: 16px;
        }
        &::after {
            width: 30px;
            height: 30px;
        }
    }
    .about-founder {
        padding-block: 45px;
        p{
            font-size: 19px;
        }
    }
    .founder {
        width: 341px;
    }
    .profile {
        margin-top: 27px;
        h5 {
            font-size: 20px;
        }
        p{
            font-size: 14px;
        }
    }
    .about {
        padding-bottom: 115px;
    }
    .supplier-box {
        margin-inline: 15px;
        border-radius: 32px;
    }
    .supplier-img {
        gap: 19px;
    }
    .supplier-img-card {
        width: 220px;
        height: 105px;
        padding: 20px;
        border-radius: 14px;
    }
    .supplier-content {
        padding-top: 55px;
        padding-bottom: 44px;
    }
    .product-slider {
        margin-left: 5%;
    }
    .slick-arrow{
        top: -30%;
        left: 68%;
    }
    .slick-prev{
        left: 60%;
    }
    .our-products{
        padding-bottom: 80px;
    }
    .our-service {
        .container {
            padding-block: 90px;
        }
    }
    .our-service-card-content {
        padding-left: 0;
    }
    .services {
        height: 35dvh;
    }
    .service-card-content {
        padding: 20px 8px;
    }
    .services .service-card h3 {
        font-size: 20px;
    }
    .reason {
        padding-block: 50px;
    }
    .reason-img {
        left: -12px;
        width: 41%;
    }
    .reason-card{
        padding: 20px 15px;
    }
    .optimize-img{
        border-radius: 28px;
    }
    .optimize {
        padding-block: 60px;
    }
    .featured-img {
        border-radius: 26px;
    }
    .text-right {
        span {
            width: 80%;
        }
    }
    .faq{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .get-form {
        padding: 14px;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .title{
        padding: 10px 15px 10px 25px;
    }
    .get-in-touch-content {
        iframe {
            height: 250px;
        }
    }
    .featured {
        .ring {
            display: none;
        }
    }
    .get-in-touch {
        .ring {
            width: 70px;
        }
    }
    .proven {
        background-position: 70%;
    }
    .service-product-content {
        padding: 15px;
    }
    .product-btn {
        width: 45px;
        height: 45px;
        bottom: 10px;
    }
    .service-product-img {
        height: 290px;
        padding: 25px;
    }
    .delivered {
        padding-block: 80px;
        .section-title {
            font-size: 40px;
        }
        h5{
            left: 30px;
            bottom: 30px;
            width: 75%;
        }
    }
    .whole-seller-card {
        img {
            margin-bottom: 6px;
            width: 70px;
        }
    }
    .expert-content {
        & ul {
            margin-bottom: 10px;
            & li {
                line-height: 130.818%;
                margin-bottom: 6px;
                &::before {
                    top: 0;
                }
            }
        }
    }
    .expert-content-img {
        width: 260px;
    }
    .profile {
        img {
            width: 180px;
        }
    }
    .commitement {
        .ring {
            width: 45px;
            bottom: 55px;
        }
    }
    .team-card {
        padding: 15px;
        border-radius: 30px;
    }
    .team-img {
        border-radius: 30px 30px 0 0;
    }
    .team-content {
        &::after {
            border-radius: 0 0 30px 30px;
        }
    }
    .advantage {
        .ring {
            width: 70px;
        }
        .advantage-img {
            width: 400px;
        }
        &::before{
            height: 50%;
        }
    }
    .team {
        .ring {
            width: 110px;
        }
    }
    .product-img {
        height: 220px;
    }
    .products{
        .ring{
            width: 30px;
        }
    }
    .contact-details-content {
        border-radius: 30px;
        padding: 20px 10px;
    }
    .contact-card{
        gap: 10px;
        margin-bottom: 10px;
    }
    .contact-details-form {
        padding: 20px 28px;
    }
    .blog-details-img {
        height: 360px;
    }
}
@media (max-width: 992px) {
    #menu .main-menu ul li.current-menu-item ul li a {
        color: #FFF;
    }
    .left{
        display: none;
    }
    #menu li:hover>ul>li {
        height: 35px;
    }
    #menu>.main-menu>ul>li>a{
        padding: 22px 25px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .banner-item{
        height: 500px;
        &::after {
            background: linear-gradient(270deg, rgba(5, 27, 12, 0.00) -30%, #003710 77.94%);
        }
    }
    .banner-content{
        width: 70%;
    }
    .banner-slider {
        & .slick-dots {
            &::after {
                width: 9%;
            }
        }
    }
    .counter {
        margin-top: 30px;
    }
    .counter-item {
        padding: 25px 20px;
        &:hover {
            &::after {
                scale: 35 35;
            }
        }
    }
    .founder {
        position: relative;
        right: unset;
        margin-bottom: -100px;
        z-index: -1;
    }
    .about-founder {
        text-align: center;
        z-index: 1;
        overflow: hidden;
        &::after {
            z-index: -2;
            transform: rotate(36deg) scale(2.5);
        }
    }
    .about-founder-content {
        background: #FFF;
        padding: 20px;
        border-radius: 16px;
    }
    .supplier-box {
        border-radius: 12px;
        .container{
            padding-block: 30px;
        }
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .supplier-content {
        padding-top: 20px;
        padding-bottom: 10px;
        text-align: center;
        .btn-group{
            justify-content: center;
        }
    }
    .our-products {
        padding-bottom: 120px;
    }
    .slick-arrow{
        width: 50px;
        height: 50px;
        top: 115%;
        left: 12%;
    }
    .slick-prev{
        left: 2%;
    }
    .our-service {
        .container {
            padding-block: 40px;
        }
    }
    .services {
        height: 80dvh;
        .cards {
            grid-template-columns: repeat(1, 1fr);
            height: 100%;
        }
    }
    .services .service-card {
        border-inline-end: 0;
        border-block-end: 1px solid rgba(255, 255, 255, 0.20);
        transition: 0.9s;
        align-items: center;
        justify-content: center;
    }
    .service-card-content {
        padding: 0;
        height: 100%;
        transition: 0.8s;
    }
    .services .container-fluid {
        padding: 0 10px;
    }
    .services .service-card{
        .service-card-content{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
    }
    .services .service-card {
        p, .btn-group {
            margin-bottom: -48px;
        }
    }
    .reason{
        .container{
            flex-direction: column;
        }
    }
    .reason-img {
        left: unset;
        top: unset;
        bottom: unset;
        width: 80%;
        position: relative;
        margin-inline: auto;
        margin-bottom: 20px;
    }
    .optimize{
        clip-path: unset;
        text-align: center;
        .row{
            .col-lg-6:last-child{
                order: -1;
            }
        }
        .btn-group{
            justify-content: center;
        }
    }
    .featured-img {
        border-radius: 16px;
    }
    .featured-btn {
        width: 39px;
        height: 30px;
        padding: 10px;
        &:hover {
            width: 39px;
            img{
                transform: translateX(0);
            }
        }
    }
    .text-right {
        span {
            width: 72%;
        }
    }
    .faq{
        clip-path: unset;
        padding-top: 40px;
        padding-bottom: 30px;
    }
    .get-in-touch{
        padding-top: 30px;
        padding-bottom: 50px;
        margin-bottom: 0;
        .row{
            .col-lg-5:last-child{
                padding-inline: 60px;
            }
        }
    }
    .get-in-touch-content {
        padding: 0;
    }
    footer{
        padding-top: 40px;
        &::after{
            clip-path: unset;
        }
        .row{
            .col-lg-4:first-child{
                text-align: center;
                p{
                    width: 60%;
                    margin-inline: auto;
                }
                .logo{
                    margin-inline: auto;
                }
                .social-links{
                    justify-content: center;
                }
            }
        }
        .copyright {
            margin-top: 15px;
            padding-block: 15px;
        }
    }
    .get-in-touch {
        .ring {
            display: none;
        }
    }
    .service-banner{
        height: 810px;
        .banner-form{
            margin-top: 45px;
            padding: 15px;
            border-radius: 15px;
        }
        .banner-content{
            text-align: center;
            h1{
                font-size: 40px;
            }
            .btn-group{
                justify-content: center;
            }
        }
        &::after{
            background: linear-gradient(270deg, rgb(5 27 12 / 40%) 0%, #003710 77.94%);
        }
    }
    .mb-40 {
        margin-bottom: 10px;
    }
    .provide-card{
        border-radius: 20px;
    }
    .provide-img{
        border-radius: 20px;
    }
    .provide-content{
        h4{
            margin-bottom: 5px;
            font-size: 21px;
        }
    }
    .proven{
        background-position: 0;
        padding-block: 50px;
        .section-title{
            margin-bottom: 20px;
        }
    }
    .delivered {
        padding-block: 40px;
        &::before, &::after {
            display: none;
        }
        h5 {
            left: 9px;
            bottom: 15px;
            width: 100%;
        }
    }
    .delivered-card{
        border-radius: 16px;
        &::after {
            border-radius: 16px;
        }
    }
    .whole-seller {
        .ring {
            display: none;
        }
    }
    .whole-seller-content {
        & .row {
            .col:nth-child(1), .col:nth-child(3), .col:nth-child(4), .col:nth-child(6), .col:nth-child(7), .col:nth-child(9) {
                transform: translateY(85px);
            }
        }
    }
    .whole-seller-card {
        align-items: center;
        text-align: center;
        img{
            margin-bottom: 8px;
        }
    }
    .expert {
        & .about-img {
            img {
                border-radius: 26px 26px 26px 26px;
            }
        }
        .ring{
            top: 0;
        }
    }
    .expert-content-img {
        padding: 16px;
    }
    .commitement {
        padding-block: 60px;
        &::before, &::after{
            height: 6%;
        }
    }
    .commitement-card{
        img{
            height: 55px;
        }
    }
    .founder-about{
        padding-top: 30px;
    }
    .founder-about-img {
        position: relative;
        width: 90%;
        margin-inline: auto;
    }
    .founder-about-content{
        padding-block: 20px;
    }
    .team {
        .ring {
            width: 65px;
        }
    }
    .advantage {
        text-align: center;
        z-index: 1;
        .container{
            background: #FFF;
            box-shadow: 0 0 0 27px #FFF;
            position: relative;
            z-index: 1;
        }
        .advantage-img {
            position: relative;
            left: unset;
            bottom: unset;
            width: 100%;
            margin-inline: auto;
            margin-bottom: 15px;
            
        }
        &::before {
            bottom: unset;
            top: 0;
            height: 60%;
            width: 100%;
            z-index: -1;
        }
        .ring{
            width: 50px;
        }
    }
    .blog-list-card {
        border-radius: 20px;
    }
    .product-img {
        height: 250px;
    }
    .products-card{
        border-radius: 20px;
    }
    .product-contant {
        border-radius: 20px;
        padding: 15px;
    }
    .contact-details-content {
        border-radius: 20px;
        padding: 20px;
    }
    .contact-details-form{
        border-radius: 20px;
        .form-control{
            font-size: 14px;
            padding: 14px;
        }
        .form-title{
            font-size: 32px;
        }
    }
    .contact-details {
        iframe {
            height: 466px;
            border-radius: 15px;
        }
        .ring{
            display: none;
        }
    }
    .blog-details-img{
        height: 410px;
        img{
            border-radius: 20px;
        }
    }
    .pagination{
        padding-top: 10px;
        a {
            padding: 14px 20px;
        }
    }
    .recent-blog-img {
        width: 180px;
        height: 160px;
    }
    .side-bar-content{
        border-radius: 20px;
        padding: 40px 20px;
    }
}
@media (max-width: 575px) {
    .popup .popup__content {
        width: 90%;
    }
    .form-title {
        font-size: 28px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    p{
        font-size: 14px;
    }
    .primary-btn{
        font-size: 14px;
        padding: 12px 18px;
    }
    #menu {
        padding-inline: 10px;
    }
    .hamburger {
        width: 55px;
        height: 48px;
        right: 0px;
        top: -2px;
    }
    .call-btn{
        span{
            display: none;
        }
    }
    .logo {
        width: 70px;
    }
    .flex-box {
        margin-right: 50px;
        gap: 10px;
    }
    .banner-item{
        height: 400px;
        &::after {
            background: linear-gradient(270deg, rgba(5, 27, 12, 0.00) -90%, #003710 77.94%);
        }
    }
    .banner-content{
        width: 100%;
        padding-top: 10px;
        h1{
            font-size: 28px;
        }
        p{
            font-size: 14px;
        }
    }
    .about-circle-vector {
        top: -35px;
        width: 100px;
    }
    .banner-slider {
        .slick-dots {
            bottom: 15px;
            li{
                width: 7px;
                height: 7px;
            }
            &::after{
                width: 20%;
            }
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 14px 10px;
    }
    #menu .submenu-button {
        height: 40px;
        width: 50px;
    }
    #menu .submenu-button:after {
        top: 13px;
        right: 20px;
        width: 8px;
        height: 8px;
    }
    #menu .submenu-button.submenu-opened:after {
        top: 17px;
    }
    #menu .main-menu ul ul, #menu .main-menu ul ul ul {
        left: 3px;
        width: 95%;
    }
    #menu .main-menu ul ul li a {
        font-size: 13px;
    }
    .about-img {
        img {
            border-radius: 16px;
        }
        .counter-item {
            width: 110px;
            padding: 7px;
            right: 10px;
            bottom: -15px;
            border-radius: 10px;
            h3 {
                font-size: 44px;
            }
            p {
                font-size: 12px;
            }
        }
    }
    .section-title {
        font-size: 24px;
    }
    .counter {
        margin-top: 20px;
    }
    .counter-item {
        padding: 15px 10px;
        border-radius: 7px;
        & h3 {
            font-size: 33px;
        }
        p {
            font-size: 13px;
        }
        &::after {
            width: 20px;
            height: 20px;
        }
    }
    .about-founder {
        padding-block: 15px;
        p {
            font-size: 16px;
        }
        &::after {
            transform: rotate(33deg) scale(3.5);
        }
    }
    .founder {
        width: 241px;
        margin-bottom: -70px;
    }
    .about-founder-content {
        padding: 10px;
        padding-top: 20px;
        border-radius: 10px;
    }
    .profile {
        h5 {
            font-size: 17px;
        }
        p {
            font-size: 12px;
        }
    }
    .supplier-box{
        margin-inline: 10px;
        .container{
            padding-block: 15px;
        }
    }
    .supplier-img {
        gap: 9px;
    }
    .supplier-img-card {
        width: 152px;
        height: 82px;
        padding: 15px;
        border-radius: 8px;
    }
    .dec {
        font-size: 14px;
    }
    .our-products {
        padding-top: 25px;
        padding-bottom: 80px;
        clip-path: unset;
        .section-title{
            margin-bottom: 4px;
        }
        .dec {
            margin-bottom: 10px;
        }
    }
    .slick-slide{
        margin: 0 10px;
    }
    .slick-list{
        margin: 0 -10px;
    }
    .product-card {
        border-radius: 15px;
        height: 280px;
        img{
            width: 210px;
        }
        h3 {
            font-size: 20px;
            top: 15px;
            left: 10px;
        }
        .product-content{
            h3{
                position: relative;
                left: unset;
                top: unset;
            }
        }
    }
    .product-content{
        border-radius: 15px;
        .primary-btn {
            font-size: 13px;
            padding: 12px 6px;
        }
        .secondary-btn{
            padding: 10px 6px;
        }
    }
    .product-slider {
        margin-left: 4%;
    }
    .slick-arrow {
        width: 40px;
        height: 40px;
        left: 15%;
    }
    .slick-prev{
        left: 0;
    }
    .our-service {
        .container {
            padding-block: 25px;
        }
    }
    .our-service-card {
        border-radius: 10px;
        padding: 10px;
        img {
            width: 40px;
        }
        & h5 {
            font-size: 15px;
        }
    }
    .services{
        height: 90dvh;
    }
    .services .service-card h3 {
        font-size: 16px;
    }
    .reason {
        padding-block: 25px;
    }
    .reason-card{
        padding: 10px;
        img {
            width: 44px;
            margin-bottom: 5px;
        }
        h5 {
            font-size: 15px;
        }
        p {
            font-size: 12px;
        }
    }
    .optimize-img {
        border-radius: 10px;
    }
    .optimize {
        padding-block: 20px;
        .btn-group{
            gap: 10px;
        }
        .header-btn {
            padding: 12px 18px;
        }
        .secondary-btn{
            padding: 10px 18px;
        }
    }
    .featured-img {
        border-radius: 10px;
    }
    .featured-content {
        padding: 10px;
    }
    .f-article {
        font-size: 13px;
        margin-bottom: 5px;
        padding-left: 15px;
        &::before {
            width: 13px;
            height: 10px;
        }
    }
    .featured-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .date {
        font-size: 13px;
        margin-bottom: 5px;
        img{
            height: 15px;
        }
    }
    .btn-group {
        gap: 10px;
    }
    .featured-dec{
        margin-bottom: 9px;
    }
    .text-right {
        span {
            width: 54%;
        }
    }
    .faq {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .accordion__item .accordion__title {
        padding: 5px 40px 5px 0;
        font-size: 17px;
    }
    .accordion__item .accordion__content {
        font-size: 14px;
        padding: 0 40px 5px 0;
    }
    .accordion__title::after {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .get-in-touch-content {
        h5{
            font-size: 15px;
        }
        iframe {
            height: 190px;
            border-radius: 12px;
            margin-top: 0;
        }
    }
    .title {
        font-size: 16px;
        left: -20px;
        top: -17px;
        &::before {
            width: 20px;
            height: 19px;
            bottom: -18px;
        }
    }
    .get-in-touch {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 0;
        & .row {
            .col-lg-5:last-child {
                padding-inline: 25px;
            }
        }
    }
    label {
        font-size: 14px;
    }
    .get-form {
        border-radius: 11px;
        padding: 12px;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .form-control {
        padding: 12px 10px;
    }
    form .primary-btn {
        padding: 14px 15px;
    }
    .fixed-contact {
        right: 0px;
    }
    .wp {
        width: 48px;
        height: 48px;
    }
    footer {
        padding-top: 20px;
        text-align: center;
        .logo {
            margin-bottom: 0px;
        }
        .row {
            & .col-lg-4:first-child {
                p {
                    width: 90%;
                }
            }
        }
        .social-links {
            margin-top: 10px;
            gap: 5px;
        }
        .footer-title {
            font-size: 16px;
            margin-bottom: 8px;
        }
        ul li a, p a {
            font-size: 14px;
        }
        .copyright {
            margin-top: 0px;
            padding-block: 10px;
            flex-direction: column;
            align-items: center;
        }
    }
    .services .service-card {
        p, .btn-group {
            margin-bottom: -58px;
        }
    }
    .service-banner {
        & .banner-content {
            padding-top: 50px;
            h1 {
                font-size: 30px;
            }
        }
        .banner-form{
            .form-control{
                font-size: 13px;
                padding: 11px 10px;
            }
            .form-title {
                font-size: 16px;
                padding: 15px 50px;
                margin-top: -35px;
                margin-bottom: 10px;
            }
        }
    }
    .provide-card {
        padding: 12px;
        border-radius: 10px;

    }
    .provide-img{
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .provide-content{
        h4{
            font-size: 18px;
            margin-bottom: 2px;
        }
    }
    .proven {
        padding-block: 20px;
        .section-title{
            margin-bottom: 10px;
        }
    }
    .proven-icon-step {
        font-size: 14px;
        gap: 18px;
        img {
            width: 40px;
        }
    }
    .proven-card{
        h4 {
            font-size: 18px;
            margin-bottom: 4px;
        }
    }
    .service-product-img {
        height: 290px;
        padding: 25px;
        border-radius: 15px;
    }
    .service-product-content{
        h4{
            font-size: 19px;
        }
    }
    .product-btn {
        padding: 16px;
        bottom: 5px;
    }
    .delivered{
        padding-block: 20px;
        .section-title{
            font-size: 28px;
            margin-bottom: 1px;
        }
        h5{
            font-size: 15px;
            width: 95%;
        }
    }
    .delivered-card{
        border-radius: 10px;
    }
    .md-40{
        margin-bottom: 0;
    }
    .whole-seller-content {
        & .row {
            .col:nth-child(1), .col:nth-child(3), .col:nth-child(4), .col:nth-child(6), .col:nth-child(7), .col:nth-child(9) {
                transform: translateY(0);
            }
        }
    }
    .whole-seller-card{
        border-radius: 12px;
        img{
            width: 60px;
        }
    }
    .inner-banner{
        height: 230px;
        .banner-content{
            padding-top: 50px;
            h1{
                margin-bottom: 3px;
            }
        }
        &::after{
            background: linear-gradient(270deg, rgb(5 27 12 / 50%) 0%, #003710 77.94%);
        }
    }
    .service-banner{
        height: 760px;
    }
    .expert {
        & .about-img {
            img {
                border-radius: 16px 16px 16px 16px;
            }
        }
        .ring{
            display: none;
        }
    }
    .expert-content {
        & ul {
            width: 100%;
            li {
                font-size: 15px;
                padding-left: 25px;
                margin-bottom: 8px;
                &::before{
                    width: 18px;
                    height: 18px;
                }
            }
        }
        .call-icon {
            width: 40px;
            height: 40px;
        }
        .call-btn{
            font-size: 24px;
            span {
                display: block;
            }
            small {
                font-size: 14px;
            }
        }
    }
    .expert-content-img {
        display: none;
    }
    .mb-60{
        margin-bottom: 10px;
    }
    .commitement-card {
        img{
            height: 44px;
            margin-bottom: 0;
        }
        h4 {
            font-size: 20px;
            margin-bottom: 3px;
        }
    }
    .commitement {
        padding-block: 20px;
        .ring{
            display: none;
        }
        &::before, &::after {
            display: none;
        }
    }
    .founder-about-img {
        width: 94%;
        & .counter-item {
            border-radius: 10px;
            padding: 12px;
            flex-direction: column;
            width: 150px;
            text-align: center;
            gap: 0px;
            justify-content: center;
            right: 10px;
            bottom: 10px;
            h3 {
                font-size: 43px;
                width: 140px;
                margin-bottom: -10px;
            }
            .plus{
                font-size: 18px;
                margin-bottom: -7px;
            }
            p {
                width: 100%;
                font-size: 14px;
            }
        }
    }
    .big-p {
        font-size: 17px;
    }
    .profile {
        margin-top: 17px;
        img {
            width: 150px;
        }
        p{
            font-size: 13px;
        }
    }
    .founder-about-content {
        padding-bottom: 0;
    }
    .team {
        .ring {
            width: 45px;
        }
    }
    .team-card{
        border-radius: 15px;
        padding: 10px;
    }
    .team-img {
        border-radius: 10px 10px 0 0;
    }
    .team-content{
        border-radius: 0 0 10px 10px;
        h4 {
            font-size: 20px;
            margin-bottom: 2px;
        }
    }
    .team-card {
        border-radius: 10px;
    }
    .advantage {
        .container{
            box-shadow: 0 0 0 24px #FFF;
        }
        &::before {
            width: 120%;
        }
        .ring{
            display: none;
        }
    }
    .advantage-card {
        img{
            width: 60px;
        }
        h5 {
            font-size: 18px;
        }
    }
    .blog-list-card {
        border-radius: 10px;
    }
    .blog-date {
        font-size: 12px;
    }
    .blog-list-content {
        padding: 10px;
        padding-bottom: 20px;
    }
    .blog-title {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .products-card {
        border-radius: 10px;
        padding: 10px;
    }
    .product-contant {
        border-radius: 10px;
        padding: 12px;
    }
    .product-title {
        font-size: 18px;
    }
    .contact-details-content {
        border-radius: 10px;
        padding: 15px;
    }
    .contact-card-content {
        h5 {
            font-size: 18px;
            line-height: 110%;
        }
    }
    .contact-icon{
        width: 40px;
        height: 40px;
    }
    .contact-details-form{
        border-radius: 10px;
        padding: 18px;
        .form-title {
            font-size: 26px;
            margin-bottom: 4px;
        }
        .form-control{
            font-size: 13px;
            padding: 12px;
            border-radius: 5px;
        }
    }
    .contact-details {
        iframe {
            height: 366px;
            border-radius: 10px;
        }
    }
    .blog-details-img {
        height: 200px;
        img{
            border-radius: 10px;
        }
    }
    .blog-details{
        h1{
            font-size: 24px;
        }
        h2{
            font-size: 22px;
        }
        h3{
            font-size: 20px;
        }
        h3{
            font-size: 18px;
        }
        ul {
            li {
                font-size: 14px;
                line-height: 120%;
                margin-bottom: 7px;
                &::before{
                    top: 4px;

                }
            }
        }
        ol {
            li {
                font-size: 14px;
                padding-left: 32px;
                line-height: 120%;
                margin-bottom: 10px;
                &::before {
                    width: 26px;
                    height: 26px;
                    font-size: 13px;
                }
            }
        }
    }
    .pagination {
        a {
            flex-direction: column;
            gap: 5px;
            width: 45%;
            border-radius: 7px;
            span {
                font-size: 15px;
            }
            &::after{
                border-radius: 0 0 7px 7px;
                width: 100%;
                height: 40%;
                top: unset;
                bottom: 0;
            }
            img{
                border-radius: 7px;
            }
        }
        .next-post{
            &::after{
                border-radius: 7px 7px 0 0;
                top: 0;
            }
        }
    }
    .recent-blog-img {
        width: 140px;
        height: 130px;
        border-radius: 9px;
    }
    .recent-blog-card {
        margin-bottom: 15px;
        h4 {
            font-size: 15px;
            margin-bottom: 5px;
        }
    }
    .recent-blog-content {
        border-radius: 0 10px 10px 0;
        padding: 16px 7px;
        padding-left: 14px;
    }
    .side-bar-content {
        border-radius: 10px;
        padding: 20px 10px;
    }
    .side-bar-content {
        & ul {
            margin-bottom: 0;
            & li {
                font-size: 13px;
                margin-bottom: 0;
                padding: 6px 14px;
            }
        }
    }
}
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  font-family: Arial, sans-serif;

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.popup-box {
  position: relative;
  max-width: 420px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  top: 50%;
  transform: translateY(-50%);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.popup-box h3 {
  margin-bottom: 5px;
  font-size: 22px;
  color: #111;
}

.popup-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.popup-box input,
.popup-box select,
.popup-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-box textarea {
  resize: none;
  height: 80px;
}

.popup-box .button {
  width: 100%;
  padding: 12px;
  background: #c9a24d;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box .button:hover {
  background: #b28d3f;
}
}