/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: unset;
}

html::-webkit-scrollbar {
    width: 5px;
    background-color: #00A6512f;
}

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

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

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

body {
    font-size: 16px;
    font-family: 'Oakes Grotesk Regular';
    font-weight: 400;
    color: #000;
    scroll-padding-top: 160px;
}

a,
a:hover,
a:focus {
    color: #00A651;
    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 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
h1,h2{
    font-family: 'Nexa Book';
}
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;
}

/* 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: #8BC34A;
    transition: ease-in-out .5s;
    z-index: 9;
}

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

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

.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #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: url(../img/crafted-bg.webp);
    border: 0px solid #8BC34A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0 0 10px;
}

.right {
    padding: 30px;
    text-align: left;
    background: #062b18;
    .title,label{
        color: #fff;
    }
    label{
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 4px;
    }
    .form-control{
        padding: 13px 15px;
    }
   .primary-btn{
    border: 0;
    &:hover{
        background-color: #fff;
        color: #8BC34A;
    }
   }
}

/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 50px 0;
}

.pb-50 {
    padding-bottom: 50px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
@media(prefers-reduced-motion: no-preference){
    @view-transition{
        navigation: auto;
    }
}
::view-transition-group(*){
    animation-duration: 2s;
}
p {
    color: #424242;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%;
}
.sub-title{
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 34px;
letter-spacing: 2.4px;
text-transform: uppercase;
background-image: url('../img/mask-img.webp');
background-size: cover;
background-position: center;
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
margin-bottom: 4px;
}
.title {
color: #151515;
font-family: 'Oakes Grotesk Medium';
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: 150%;
}

.section-title {
color: #202020;
font-size: 40px;
font-style: normal;
font-weight: 400;
line-height: 108.333%;
margin-bottom: 12px;
position: relative;
    span{
        color: #00A651;
    }
    
}
.title-leaf{
    position: relative;
    padding-left: 38px;
    img{
        position: absolute;
        left: 0;
        bottom: 0;
    }
}
.card-title{
color: #FFF;
font-family: 'Oakes Grotesk Medium';
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 162.5%;
}
.small-line {
    width: 38px;
    height: 2px;
    background: #00A651;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: 10px;
}
.bg-light-green{
    background: #F0FAF5;
}

.primary-btn {
    color: #FFF;
    font-family: 'Oakes Grotesk SemiBold';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 60px;
    background: #00A651;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: #ffffff;
    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: #00A651;
}

.primary-btn:focus {
    color: #fff;
}


.secondary-btn {
    background: #ffffff;
    color: #00A651;
    padding: 18px 71px;
}

.secondary-btn:hover {
color: #fff;
    &::after,
    &::before {
        background-color: #00A651;
    }
}


.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 13px 28px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: #00A651;
}

form .btn-group {
    justify-content: center;
}

form .primary-btn {
    padding: 16px 50px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

form .primary-btn:hover {
    background: #192B53;
    color: #ffffff;
}

.form-group {
    margin-bottom: 4px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
    
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}
.mobile{
    display: none;
}
.container{
    max-width: 1530px;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0); /* Optional: Background behind the video */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#preloader-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire container */
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

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

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

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

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

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

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

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

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

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}

/*******************************
	Menu
*******************************/
header {
    background-image: url(../img/menu-bg.webp);
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    padding-inline: 40px;
    nav{
        position: relative;
        z-index: 1;
    }
    &:after{
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(8, 52, 30, 0.904);
    }
}


header.sticky {
    box-shadow: 0px 10px 26px 0px rgba(0, 0, 0, 0.07);
    animation: slideDown 0.35s ease-out;
}

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

    to {
        transform: translateY(0);
    }
}
.mouse {
    width: 28px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 14px;
    margin: auto;
    position: absolute;
    bottom: 34px;
    transform: translate(-50%, 0%);
    left: 50%;
    z-index: 9;

    &:hover {
        background-color: #00A651;
    }
}

.mouse span {
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    position: relative;
    left: 10px;
    -webkit-animation: scrolls 1.3s ease-out infinite;
    display: block;
}

@-webkit-keyframes scrolls {
    0% {
        top: 8px;
        opacity: 0;
        -webkit-transform: scaleY(1) scaleX(1);
    }

    5% {
        top: 8px;
        opacity: 0.8;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    10% {
        top: 8px;
        opacity: 1;
        -webkit-transform: scaleY(1.6) scaleX(1.6);
    }

    15% {
        top: 8px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    20% {
        top: 8px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    30% {
        top: 15px;
        opacity: 1;
        -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    100% {
        top: 30px;
        opacity: 0;
        -webkit-transform: scaleY(1.2) scaleX(0.8);
    }
}

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

.logo {
   
}

.main-menu {
    margin-left: auto;
}
.top-social {
    margin-left: 50px;
    a{
        padding-inline: 11px;
        display: inline-block;
        &:hover{
            transform: scale(1.1);
            img{
                filter: brightness(0) saturate(100%) invert(36%) sepia(99%) saturate(810%) hue-rotate(114deg) brightness(99%) contrast(102%);
            }
        }
    }
}
nav {
    position: relative;
    margin: 0 auto
}

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

#menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

#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: 26px 6px;
display: inline-block;
color: #FFF;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: 2.6px;
text-transform: uppercase;
}

#menu>.main-menu>ul>li>:hover a::before,
#menu .main-menu ul li.current-menu-item a::before {
    width: 80%;
}

#menu .main-menu ul li.current-menu-item a::before {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 7px;
    height: 1px;
    background: #00A651;
}

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a{
    color: #00A651;
}

#menu>.main-menu>ul>li.has-sub>a::before {}

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

#menu>.main-menu>ul>li.has-sub>a {}

#menu>.main-menu>ul>li.has-sub>a::after {
    top: -2px;
    right: 0px;
    margin-left: 6px;
    margin-right: 2px;
    transition: all .4s;
    content: "";
    position: relative;
    z-index: 11;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000000;
    border-left: 1px solid #000000;
    transform: rotate(225deg);
}

#menu>.main-menu>ul>li.has-sub:hover>a::after,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::after {
    border-top-color: #00A651;
    border-left-color: #00A651;
}

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

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgb(255, 255, 255);
    transition: all .25s ease
}
#menu .main-menu ul ul li a{
    display: block;
}
#menu ul ul li:hover {}

#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: 19px;
    line-height: 19px;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    white-space: nowrap;
}

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

#menu .main-menu ul ul li:hover {
    color: #fff;
    background-color: #00A651;
    a{
        color: #fff;
    }
}

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


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

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

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

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

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
.logo {
    padding-block: 5px;
}
@media screen and (max-width:992px) {
    header {
        width: 100%;
        height: auto;
    }


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

    nav {
        width: 100%
    }

    #menu {
        width: 100%
    }

    #menu ul {
        width: 100%;
        display: none;
    }

    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: rgb(1, 57, 102);
        transform: translateX(-100%);
        transition: all .4s;
        top: 90px;
        left: 0;
    }

    #menu .main-menu.open {
        transform: translateX(0%);
        display: block !important;

    }
    #menu .main-menu ul li a.current-menu-item::before {
        bottom: 15px;
    }
    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }

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

    #menu .main-menu ul ul li,
    #menu li:hover>ul>li {
        height: auto
    }

    #menu .main-menu ul li a,
    #menu .main-menu ul ul li a {
        width: 100%;
        border-bottom: 0;
        color: #ffffff;
    }

    #menu>.main-menu>ul>li {
        float: none
    }

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

    #menu ul ul li {
        background: #1b268600 !important
    }

    #menu ul ul li:hover {
        background: #00A651 !important
    }

    #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;
    }

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

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

    #menu>ul>li.has-sub>a::after,
    #menu>ul>li.has-sub>a:after,
    #menu ul ul>li.has-sub>a::after,
    #menu ul ul>li.has-sub>a:after,
    #menu>.main-menu>ul>li.has-sub>a::after {
        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: 0;
        top: 12px;
        cursor: pointer;
        z-index: 12399994;
    }

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

    /* #menu .submenu-button.submenu-opened {
      background:#1b268600;
  } */

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

    #menu .submenu-button:after {
        position: absolute;
        top: 9px;
        right: 22px;
        width: 10px;
        height: 10px;
        display: block;
        content: '';
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        transition: all .4s;
    }

    #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: 15px;
    }


    #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
    }
}

/************************************* Home Page **************************************/

.banner {
    position: relative;
    z-index: 1;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 1;
        padding-top: 100px;
    }
    &::after{
        content: '';
        position: absolute;
        background:linear-gradient(to top, #000000bf, transparent);
        z-index: 0;
        inset: 0;
    }

    h1 {
        color: #FFF;
font-size: 80px;
font-style: normal;
font-weight: 400;
line-height: 90px;
margin-bottom: 60px;
    }

 .btn-group{
    justify-content: center;
 }
  
}

.slick-dots{
    li{
        width: 9px;
        height: 9px;
        background-color: #f3672100;
        outline: 1px solid #fff;
        outline-offset: 4px;
        border-radius: 50%;
        margin: 0 10px;
        transition: all .5s;
        button{
            opacity: 0;
        }
    }
    li.slick-active,li:hover{
        background-color: #00A651;
    }
}

.btn-group {
    display: flex;
    gap: 10px;
}




/* **** About *** */
.about-us {
    position: relative;
    padding-top: 134px;
    padding-bottom: 170px;
    .primary-btn{
        &::after,
        &::before{
            background-color: #000;
        }
        &:hover{
            color: #fff;
        }
    }
}
.about-content{
    position: relative;
    &::before{
        content: '';
        /* background-image: url(../img/leaf-heading.webp); */
        background-repeat: no-repeat;
        width: 122px;
        height: 186px;
        display: block;
        position: absolute;
        left: -90px;
        top: -106px;
    }
}
.about-img{
    position: relative;
    text-align: left;
    z-index: 1;
    &:after{
        content: '';
        width: 588px;
height: 588px;
border-radius: 588px;
border: 1px solid rgba(0, 166, 80, 0.507);
        z-index: -1;
        outline: 1px solid #00A651;
        outline-offset: 47px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    &::before{
        content: '';
        background-image: url(../img/about-leaf.webp);
        background-repeat: no-repeat;
        width: 626px;
        height: 1015px;
        display: block;
        position: absolute;
        z-index: -1;
        left: -204px;
        bottom: -330px;
    }
    img{
        border-radius: 29px;
    }
    .about-small {
        position: absolute;
        right: 0;
        bottom: -116px;
    }
    
}
.exp {
    width: 211.455px;
    height: 211.455px;
    filter: drop-shadow(0px 34px 54px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 0 12px rgb(237 237 237);
    position: absolute;
    top: 80px;
    right: 60px;
    text-align: center;
    h3{
        font-family: 'Oakes Grotesk Bold';
        font-size: 85px;
        font-style: normal;
        font-weight: 700;
        line-height: 85px; /* 80% */
        background: url(../img/mask-img.webp) lightgray -31.403px -38.032px / 140.476% 231.373% no-repeat;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: -10px;
    }
    h4{
        font-family: 'Oakes Grotesk Bold';
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        background: url(../img/mask-img.webp) lightgray -31.403px -38.032px / 140.476% 231.373% no-repeat;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; 
    }
}
/* **** Why Choose *** */
.why-choose{
    .section-title{
        margin-bottom: 12px;
    }
    .row{
        position: relative;
        z-index: 1;
    }
}

  .center-lefe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: -1;
    padding: 35%;
    padding-top: 32%;
    .choose-lefe{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

  }

  
  @keyframes rotateme {
    from {
        transform: rotate(0deg);
    }
    to { 
        transform: rotate(360deg);
    }
  }
  @-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }
    to { 
        -webkit-transform: rotate(360deg);
    }
  }
  @-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }
    to { 
        -moz-transform: rotate(360deg);
    }
  }
  @-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }
    to { 
        -o-transform: rotate(360deg);
    }
  }
  .list-item{
    position: relative;
    padding-left: 120px;
    margin-bottom: 99px;
    height: 123px;
    border: 1px solid transparent;
    &:hover{
        span{
            img{
                transform: rotateY(180deg);
            }
        }
        .title{
            color: #00A651;
        }
    }
  }
  .list-item span{
    border-radius: 50%;
    background-color: #fff;
    width: 92px;
    height: 92px;
    border: 1px solid #00A651;
    outline: 5px solid #fff;
    filter: drop-shadow(0px 4px 24px rgba(0, 0, 0, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: -10px;
    /* &:after{
        content: '';
        width: 15px;
        height: 15px;
        background-color: #00A651;
        border-radius: 50%;
        position: absolute;
        right: -39px;
    } */
  }

  .left-item .list-item{
    padding-left: 0;
    padding-right: 120px;
    text-align: right;
  }
  .left-item .list-item span{
    right: 0;
    left: auto;
  }
  .left-item .list-item:nth-child(1),
  .left-item .list-item:nth-child(3){
    margin-right: 7px;
  }
  .left-item .list-item:nth-child(2){
    margin-right: 20%;
  }
  .left-item .list-item:nth-child(3),
  .right-item .list-item:nth-child(3){
    margin-bottom: 0;
  }
  .right-item .list-item:nth-child(1),
  .right-item .list-item:nth-child(3){
    margin-left: 7px;
  }
  .right-item .list-item:nth-child(2){
    margin-left: 20%;
  }
 .mb-45{
    margin-bottom: 45px;
 }
 .left-item .list-item:nth-child(1){
    span{
        &::after{
            bottom: -10px;
            right: -5px;
        }
    }
 }
 .left-item .list-item:nth-child(3){
    span{
        &::after{
            top: -10px;
            right: -25px;
        }
    }
 }
 .right-item .list-item:nth-child(1){
    span{
        &::after{
            bottom: -4px;
            left: -12px;
        }
    }
 }
 .right-item .list-item:nth-child(2){
    span{
        &::after{
            bottom: unset;
            left: -39px;
        }
    }
 }
 .right-item .list-item:nth-child(3){
    span{
        &::after{
            top: 16px;
            left: -24px;
        }
    }
 }

 /* ***** Contact Us ***** */
 .crafted{
    background-image: url(../img/crafted-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 120px;
    .sub-title,.section-title,p,.card-title{
        color: #fff;
    }
    .sub-title{
        -webkit-text-fill-color: #ffffff;
    }
    .card-title {
        margin-bottom: 9px;
    }
    .fab{
        filter: brightness(0) saturate(100%) invert(95%) sepia(68%) saturate(7221%) hue-rotate(181deg) brightness(121%) contrast(94%);
    }
    .primary-btn{
        border-radius: 60px;
        border: 1px solid #00A651;
        color: #FFF;
        padding: 18px 30px;
        background-color: transparent;
        &:hover{
            color: #00A651;
        }
    }
    .crafted-item {
        border-bottom: 1px solid #516F60;
        padding-bottom: 23px;
        height: 100%;
        img{
            height: 99px;
            width: auto;
        }
        &:hover{
            img{
                transform: rotateY(180deg);
            }
        }
    }
 }
/********* Services ************/
.services{
    position: relative;
    .product-item{
        padding: 0;
        overflow: hidden;
        height: auto;
        border-radius: 10px 20px 10px 10px;
        position: relative;
        text-align: center;
        &:hover{
            .overlay-content{
                opacity: 1;
                transform: scale(1);
                transition: all 0.5s;
            }
            .service-name{
                opacity: 0;
                transition: all .5s;
            }
        }
        &:after{
            content: '';
            background: linear-gradient(0deg, rgba(14, 14, 14, 0.71) 0%, rgba(0, 0, 0, 0.00) 100%);
            position: absolute;
            inset: 0;
        }
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
        }
        .service-name {
            clip-path: unset;
            background-color: transparent;
            height: auto;
            text-align: left;
            display: block;
            left: 5px;
            right: 5px;
            bottom: 5px;
            position: absolute;
            padding-top: 30px;
            transition: all .5s;
            padding-inline: 0;
            padding: 10px 14px;
            z-index: 1;
        }
        .title{
            color: #fff;
            margin-bottom: 10px;
        }
        .overlay-content {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: linear-gradient(0deg, rgba(14, 14, 14, 0.96) 0%, rgba(14, 115, 63, 0.73) 100%);
            z-index: 1;
            padding: 36px 21px;
            transition: all .5s;
            opacity: 0;
            transform: scale(1.3);
        }
        p{
            color: #fff;
        }
        img{
            transition: all 2s;
        }
        &:hover{
            img{
                transform: scale(1.3);
            }
            .icon-box{
                img{
                    transform: scale(1);
                }
            }
        }
        .primary-btn{
            width: 80%;
            margin-bottom: 15px;
            padding: 18px 36px;
        }
        .small-line{
            background-color: #fff;
        }
    }
    .sub-title{
        img{
            margin-right: -9px;
            margin-bottom: -22px;
            margin-left: -24px;
        }
        .small-line{
            background: #00A651;
            width: 63px;
            height: 1px;
            margin-left: 20px;
        }
    }
}
.service-slider {
    margin-top: 30px;
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
    .slick-arrow{
        top: -110px;
        right: 0%;
    }
    .slick-arrow.slick-prev{
        left: auto;
        right: 6%;
    }
  }
  .slick-arrow{
    width: 69px;
    height: 69px;
    background-color: #F1F1F1;
    border: 1px solid #989898;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius:  50%;
    -webkit-border-radius:  50%;
    -moz-border-radius:  50%;
    -ms-border-radius:  50%;
    -o-border-radius:  50%;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.slick-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 1px solid #171717;
    border-left: 1px solid #171717;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background-color: #ffffff;
    border-color: #00A651;
}

/* .slick-arrow:hover::before,
.slick-arrow:focus::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
} */
/********** Key USPS ********/
.personalized-designs{
    position: relative;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.75) 100%);
    }
    .col-lg-7{
        background: linear-gradient(270deg, rgba(81, 111, 96, 0.67) 0%, rgba(8, 52, 30, 0.00) 136.2%);
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding-right: 10%;
        padding-left: 4%;
    }
    .section-title{
        margin-bottom: 20px;
    }
    .section-title,p{
        color: #fff;
    }
}


/* ***** Gallery ***** */
.gallery-item{
    border-radius: 29px;
    overflow: hidden;
    position: relative;
    height: 327px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    span{
        background: linear-gradient(0deg, rgba(14, 14, 14, 0.96) 0%, rgba(14, 115, 63, 0.73) 100%);
        opacity: 0;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 50px;
        font-weight: 100;
        transition: all .5s;
    }
    p{
        color: #fff;
        position: absolute;
        bottom: 0;
        padding: 10px;
        margin: 0;
        background: linear-gradient(0deg, rgb(14 14 14 / 69%) 0%, rgb(14 115 63 / 39%) 100%);
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 15px;
        text-align: center;
    }
    &:hover{
        span{
            opacity: 1;
        }
    }
}

/* ***** Testimonial ***** */
.testimonials{
    background-image: url(../img/testi-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    .section-title{
        margin-bottom: 40px;
    }
    .sub-title{
        margin-bottom: 14px;
        img {
            margin-right: -9px;
            margin-bottom: -22px;
            margin-left: -24px;
        }
    }
    .testimonial-item{
        .qut{
            width: 30px;
            height: 30px;
        }
        h3{
            color: #151515;
            font-family: 'Oakes Grotesk Medium';
            font-size: 26px;
            font-style: italic;
            font-weight: 500;
            line-height: 39px;
        }
        p{
            color: #413F3F;
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            line-height: 38px;
        }
        .flex-box {
            display: flex;
            align-items: center;
            gap: 17px;
            h4{
                color: #151515;
                font-family: 'Oakes Grotesk Medium';
                font-size: 26px;
                font-style: normal;
                font-weight: 500;
                line-height: 39px;
            }
            img{
                width: 79px;
                height: 79px;
                border-radius: 50%;
            }
			.first-letter{
				width: 79px;
                height: 79px;
                border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				background: #00a651;
				color: #fff;
			}
        }

    }
    .testi-img {
        .span{
            border-radius: 38px;
        position: relative;
        overflow: hidden;
        width: 90%;
        margin-left: auto;
        }
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        span.img-qut {
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 11px;
            background: #F0FAF5;
            width: 144px;
            height: 116px;
            display: flex;
            align-items: center;
            justify-content: center;
            img{
                width: auto;
                height: auto;
            }
        }
    }
    .slick-dots{
        bottom: -90px;
        text-align: left;
        li{
            background-color: #00A651;
            outline: 2px solid #00A651;
            outline-offset: 0;
            width: 16px;
            height: 16px;
            button{
                opacity: 0;
            }
        }
        li.slick-active,li:hover{
            background-color: #11527800;
        }
    }
}

.testi-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 15px;
    }
}
.feed-box {
    border-radius: 8px;
    background: #FFF;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    p{
        color: #151515;
        -webkit-text-fill-color: #151515;
        font-family: 'Oakes Grotesk Medium';
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    }
    h4 {
        font-family: 'Oakes Grotesk Medium';
        font-size: 18px;
        margin-bottom: 10px;
        display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    }
    .head,.bottom {
        padding: 9px;
    }
}
.insta-feed{
    background-image: url(../img/feed-bg.webp);
}
.form-section{
    .sub-title{
        margin-bottom: 0px;
        img {
            margin-right: -9px;
            margin-bottom: -22px;
            margin-left: -24px;
        }
    }
    .form-control{
        border-radius: 60px;
        border: 1px solid #CCC;
        padding: 17px 18px;
        color: #000;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        text-transform: uppercase;
        height: 60px;
        text-transform: unset;
    }
    textarea.form-control{
        height: auto;
        border-radius: 22px;
    }
    .primary-btn{
        padding: 18px 78px;
        text-transform: uppercase;
        border: 0;
        &:hover{
            background: #005228;
        }
    }
    iframe{
        border-radius: 35px;
        border: 0;
        height: 678px;
        width: 100%;
    }
}
.get-in-touch{
    position: relative;
    background: unset;
    margin-bottom: -6px;
    padding: 0;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        padding-top: 60px;
    }
    .fab {
        filter: unset;
    }
    .sub-title, .section-title, p {
        color: #fff;
    }
    .sub-title {
        -webkit-text-fill-color: #ffffff;
    }
    .btn-group {
        justify-content: center;
    }
}
/******************************/
footer {
    background-image: url(../img/footer-bg.webp);
    width: 100%;
    padding-top: 50px;
}

.footer-box {
    padding-right: 4%;
}

.footer-logo {
    margin-bottom: 25px;
}

footer p {
    color: #D4D4D4;
    font-family: 'Oakes Grotesk Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
}

.footer-title {
    font-size: 20px;
    line-height: 53px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-family: 'Oakes Grotesk SemiBold';
    position: relative;
    margin-bottom: 18px;
}

  
.footer-title:after {
    content: '';
    width: 40px;
    height: 2px;
    background: #00A651;
    display: inherit;
    margin-top: -8px;
}
footer ul li a,
footer p a {
    color: #D4D4D4;
    font-family: 'Oakes Grotesk Regular';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 212.5% */
}
/* footer ul li a::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 11px;
} */
footer ul li a{
    display: block;
}
footer ul li a:hover{
    color: #00A651;
    transform: translateX(5px);
    &::before{
        border-top: 1px solid #00A651;
        border-left: 1px solid #00A651;
    }
}
.copyright{
    border-top: 1px solid #43554C;
    text-align: center;
}
.footer-social a:hover {
    background-color: #00A651;
    border-color: #00A651;
    transform: scale(1.1);
}
.copyright-section{
    background: #313E59;
}
.copyright {
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 16px;
    margin-top: 40px;
}

.copyright a {
    color: #FF8A36;
    text-decoration: underline;
}
.copyright p{
    margin: 0;
}
.footer-contact p{
    position: relative;
    padding-left: 40px;
}
.footer-contact p span{
    position: absolute;
    left: 0px;
    top: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
.footer-social{
    display: flex;
    gap: 10px;
	margin-top: 20px;
    a{
        width: 58.931px;
        height: 58.931px;
        border-radius: 50%;
        border: 1px solid #AAA;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
}
}
/*************************************
    Inner Page
*************************************/
/* About */
.inner-gap{
    padding-top: 124px;
}
.img-box{
    border-radius: 29px;
    overflow: hidden;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.about-about{
    & .sub-title {
        img {
            margin-right: -9px;
            margin-bottom: -22px;
            margin-left: -24px;
        }
    }
    .small-line{
        width: 64px;
        height: 2px;
        background: #809D8E;
        margin-bottom: 20px;
        margin-top: -7px;
    }
    h3{
        color: #000;
        font-family: 'Oakes Grotesk SemiBold';
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 140% */

a{
    color: #000;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 6.5%; /* 1.3px */
    text-underline-offset: 20%; /* 4px */
    text-underline-position: from-font;
    &:hover{
        color: #00A651;
    }
}
    }
    .exp{
        border-radius: 0px 10px 0px 0px;
        background: #FFF;
        width: 254px;
        left: 0px;
        bottom: 0;
        top: unset;
        right: unset;
        box-shadow: none;
        text-align: left;
        padding: 17px;
        height: auto;
        h3{
            font-size: 55px;
            line-height: 55px;
            margin-bottom: 0px;
        }
        h4{
            font-family: 'Oakes Grotesk Bold';
            font-size: 28px;
            font-style: normal;
            font-weight: 700;
            line-height: 28px;
        }
        img{
            width: auto;
            height: auto;
            object-fit: none;
            position: absolute;
            right: 13px;
            top: 17px;
        }
    }
}
.mission-vission{
    background: #EFF9F4;
    img{
        margin-bottom: 10px;
    }
    .text-center{
        padding-inline:12% ;
        border-right: 1px solid #B7B7B7;
    }
    .row .col-lg-6:last-child{
        .text-center{
            border-right: none;
        }
    }
}
.team-benber{
    background-image: url(../img/team-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    .section-title,h4,p{
        color: #fff;
    }
    h4{
        font-family: 'Oakes Grotesk Medium';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 26px;
margin-bottom: 4px;
    }
    p{
        color: #D1D1D1;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 175% */
    }
    .tema-img {
        border-radius: 32px;
        margin-bottom: 8px;
        overflow: hidden;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
.box{
    border-radius: 39px;
    background: #FFF;
    box-shadow: 0px 14px 44px 0px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    .col-lg-7{
        padding-inline: 5%;
    }
    .primary-btn{
        padding-inline: 71px;
        &::after,&::before{
            background-color: #0d6437;
        }
        &:hover{
            color: #fff;
        }
    }
    .box-img{
        height: 360px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
}
/* Service  */
.service-box{
    border-radius: 18px;
background: #FFF;
box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.10);
overflow: hidden;
transition: all .5s;
.service-content {
    margin-top: -45px;
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 15px;
}
.small-line{
    width: 27px;
    height: 1px;
    background: #00A651;
    margin-bottom: 9px;
    display: block;
    margin-top: 1px;
}
.primary-btn{
    padding-inline: 71px;
    &::after,&::before{
        background-color: #0d6437;
    }
    &:hover{
        color: #fff;
    }
}
&:hover{
    box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    .service-icon{
        background-color: #0d6437;
        img{
            transform: rotate(360deg);
        }
    }
}
}
.service-icon {
    background: #00A651;
    width: 79.221px;
    height: 79.221px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 4.73px rgb(0 166 81 / 20%);
    margin-left: 5px;
    margin-bottom: 15px;
    margin-top: -64px;
    transition: all .5s;
}
.blogs{
    /* .section-title{
        color: #00A651;
    } */
    .img-box{
        border-radius: 29px;
        position: relative;
    }
    .blog-big{
        margin-bottom: 50px;
        .img-box{
            height: 465px;
            &:after{
                content: '';
                position: absolute;
                inset: 0;
                opacity: 0.32;
                background: #000;
            } 
        }  
    }
    .blog-big-content{
        border-radius: 18px;
background: rgba(255, 255, 255, 0.10);
backdrop-filter: blur(4px);
padding: 25px;
padding-right: 80px;
width: 531px;
position: absolute;
left: 26px;
bottom: 22px;
z-index: 1;
transition: all .5s;
.title,p{
    color: #fff;
}
&:hover{
    background: #0000004d;
    .title{
        color: #00A651;
    }
}
    }
    .title{
        font-family: 'Oakes Grotesk Medium';
font-size: 26px;
font-style: normal;
font-weight: 500;
line-height: 115.385%;
margin-bottom: 6px;
    }
}
.blog-date{
    color: #E1ECE6;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 20px;
margin-bottom: 9px;
}
.blog-tags{
    border-radius: 14px;
    background: #00A651;
    padding: 11px 22px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    left: 26px;
    top: 26px;
    z-index: 1;
    display: inline-block;
    width: fit-content;
}
.blog-item{
    border-radius: 29px;
    border: 1px solid #516F60;
    position: relative;
    background-color: #fff;
    .blog-img{
        border-radius: 29px;
        overflow: hidden;
		aspect-ratio: 1 / 0.6;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
        }
    }
    .blog-tags{
        right: 15px;
        top: 16px;
        left: auto;
    }
    .blog-content {
        padding: 14px 16px;
    }
    .blog-date{
        color: #576960;
        margin-bottom: 4px;
    }
    .card-title{
        color: #00A651;
        line-height: 123.5%;
        margin-bottom: 3px;
    }
    p{
        color: #4D5C55;
        margin-bottom: 4px;
    }
    &:hover{
        .blog-img{
            img{
                transform: scale(1.2);
            }
        }
        .card-title{
            color: #0d6437;
        }
        .arrow-circle{
                background: #00A651;
                color: #fff;
                transform: translate(0px, 0px);
          }
    }
}
.arrow-top-right {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    transform: scale(var(--ggs, 1));
    border-right: 2px solid;
  }
  .arrow-top-right::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg);
    top: 3px;
    right: -3px;
  }
 
  .arrow-circle{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all .5s;
    color: #1E1E1E;
    transform: translate(-8px, 0px);
    &:hover{
        background: #00A651;
        color: #fff;
        transform: translate(0px, 0px) scale(1.1);
    }
  }
  .right-arrow,
.left-arrow,
.left-arrow::after,
.right-arrow::after {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 9px;
    height: 24px;
}

.right-arrow::after {
    content: "";
    position: absolute;
    height: 9px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg) scaleY(1);
    left: -4px;
    top: 6px;
}

.left-arrow::after {
    content: "";
    position: absolute;
    height: 9px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(45deg) scaleY(1);
    left: -4px;
    top: 6px;
}

.right-arrow::after {
    transform: rotate(-45deg) scaleX(-1);
    left: 4px;
}

.wp-pagenavi {
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 50px;
}

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

.wp-pagenavi a {
    border-radius: 5px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s
}

.wp-pagenavi a.active {
    color: #95C12B;
}

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

.wp-pagenavi span.current {
    border-color: #8BC34A;
    background: #8BC34A;
    color: #fff;
}
.wp-pagenavi a:hover{
	border-color: #BFBFBF;
    background: #8BC34A;
    color: #000;
}

.blog-details{
    .container{
        border-bottom: 1px solid #D3D3D3;
        padding-bottom: 30px;
    }
    .blog-date{
        color: #00A651;
        font-family: 'Oakes Grotesk Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
    .section-title{
        color: #000000;
        font-family: 'Oakes Grotesk SemiBold';
        font-size: 52px;
        font-style: normal;
        font-weight: 600;
        line-height: 65px;
    }
	p{
		color: #424242;
	}
    .small-line{
        background: #809D8E;
        width: 64px;
        height: 3px;
    }
    .blog-big{
        margin-top: 10px;
        margin-bottom: 30px;
        .img-box {
            height: 465px;
        }
        .blog-tags{
            right: 16px;
            top: 16px;
            left: auto;
        }
    }
    ul{
        padding-left: 20px;
        list-style: disc;
		margin-bottom: 20px;
		margin-top: 15px;
        li{
            margin-bottom: 10px;
            color: #424242;
            font-size: 18px;
			line-height: 155.556%;
        }
		::marker{
				color: #00a651;
			}
		
    }
    h2{
        color: #323433;
        font-family: 'Oakes Grotesk Medium';
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 12px;
    }
}
.contact-list{
    border-radius: 22px;
border: 1px solid #E6F2EC;
background: #F2F9F5;
padding: 30px;
padding-left: 55px;
position: relative;
margin-bottom: 20px;
transition: all .5s;
img{
    position: absolute;
    left: 15px;
    top: 30px;
    filter: brightness(0) saturate(100%)
}
p{
    margin: 0;
    transition: all .5s;
}
h3{
    transition: all .5s;
}
&:hover{
    background: #00A651;
    h3,p{
        color: #fff;
    }
    img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(217deg) brightness(103%) contrast(106%);
    }
}
}
.form-control:focus{
    border-color: #00A651;
}
.map{
    padding-top: 30px;
    iframe{
        height: 504.781px;
        border-radius: 35px;
        border: 0;
        width: 100%;
    }
}
.gallery-page{
    .gallery-item{
        border-radius: 10px;
        height: 263.577px;
        span{
        background: rgba(203, 239, 221, 0.507);
        }
    }
    .col-lg-5{
        .gallery-item{
            height: 548.96px;
        }
    }
}
.showcase{
    border-radius: 46px;
background: #EDF5F1;
padding: 50px 24px;
}
.list-style{
    li{
        position: relative;
        padding-left: 35px;
        color: #323433;
        font-family: 'Oakes Grotesk Medium';
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 30px;
margin-bottom: 20px;
        &::before{
            content: '';
            position: absolute;
            background-image: url(../img/check-icon.webp);
            width: 25px;
            height: 25px;
            left: 0;
        }
    }
}
.related-service{
    padding-top: 0;
    margin-top: 80px;
    .container{
        border-top: 1px solid #D3D3D3;
        padding-top: 36px;
    }
    .service-box:hover{
        h4{
            color: #00A651;
        }
    }
}
.lightbox {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.service-details{
		.section-title{
			img {
    margin-bottom: -13px;
    width: 40px;
}
		}
	}
 .pd-bg {
		filter: brightness(50%);
}
/*******************************
  Responsive
********************************/

@media (max-width: 1920px) {}

@media (max-width: 1600px),
(max-width: 1536px) {
    .container {
        max-width: 80%;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 6px;
    }
    #menu {
        gap: 30px;
    }
    .banner {
        .slick-dots {
            padding-left: 8%;
            bottom: 110px;
            text-align: left;
        }
    }
    .section-title {
        font-size: 42px;
    }
    .about-img {
        &:after {
            content: '';
            width: 512px;
            height: 512px;
        }
    }
    p {
        font-size: 16px;
    }
    .title {
        font-size: 22px;
        line-height: 130%;
    }
    .services {
        & .product-item {
            .primary-btn {
                width: 80%;
                margin-bottom: 15px;
                padding: 18px 25px;
            }
        }
    }
    .testimonials{
        .testimonial-item{
            p{
                font-size: 17px;
                line-height: 30px;
            }
            h3 {
                font-size: 20px;
                line-height: 34px;
            }
        }
    }
    .gallery-page {
        .gallery-item {
            height: 208.577px;
        }
        & .col-lg-5 {
            .gallery-item {
                height: 440.96px;
            }
        }
    }
    .list-style {
        li {
            font-size: 18px;
        }
    }
    .left-item .list-item:nth-child(2) {
        margin-right: 25%;
    }
    .right-item .list-item:nth-child(2) {
        margin-left: 25%;
    }
    .list-item {
        margin-bottom: 90px;
    }
    .center-lefe {
        padding: 35%;
        padding-top: 31%;
    }
}

@media (max-width: 1536px) {}

@media (max-width: 1440px) {}

@media (max-width: 1440px),
(max-width: 1366px) {
    .container {
        max-width: 1200px;
    }
	.blog-details {
    & ul {
        li {
            font-size: 16px;
        }
    }
}
    .top-social {
        margin-left: 10px;
    }
    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }
    .banner-content {
        width: 90%;
    }
    .banner {
        h1 {
            font-size: 70px;
            line-height: 75px;
            margin-bottom: 40px;
        }
    }
    .popup .popup__content {
        width: 70%;
    }
    
    .testimonials {
        .slick-dots {
            bottom: -45px;
        }
    }
    p {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 30px;
    }
   
    
    .card-title {
        font-size: 20px;
        line-height: 30px;
    }
    .about-img {
        &:after {
            width: 520px;
            height: 520px;
            outline-offset: 34px;
        }
        .about-big {
            width: 76%;
        }
        .about-small {
            bottom: -61px;
            width: 41%;
        }
        .exp {
            width: 190.455px;
            height: 190.455px;
            top: 89px;
            right: 18px;
            h3 {
                font-size: 75px;
                line-height: 75px;
            }
            h4 {
                font-size: 24px;
            }
        }
    }
    .title {
        font-size: 24px;
    }
    .why-choose{
        .list-item{
            p {
                font-size: 14px;
                margin-bottom: 10px;
            }
        }
    }
    .center-logo {
        width: 260px;
        height: 260px;
        margin-top: -6px;
    }
    .right-item .list-item:nth-child(3) {
        & span {
            &::after {
                top: 0px;
                left: -24px;
            }
        }
    }
    .right-item .list-item:nth-child(1) {
        & span {
            &::after {
                bottom: -17px;
                left: -12px;
            }
        }
    }
    .crafted {
        p{
            font-size: 14px;
        }
        .primary-btn {
            padding: 14px 30px;
            font-size: 14px;
        }
    }
    .services {
        & .product-item {
            .title {
                font-size: 20px;
            }
            p{
                font-size: 14px;
            }
            .primary-btn {
                margin-bottom: 10px;
                padding: 18px 32px;
                font-size: 14px;
                line-height: inherit;
            }
        }
    }
    .gallery-item {
        height: 240px;
    }
    .testimonials {
        .section-title {
            margin-bottom: 20px;
        }
        & .testimonial-item {
            p {
                font-size: 18px;
                line-height: 30px;
            }
        }
    }
    .service-box{
        .title {
            font-size: 19px;
        }
    }
    .blog-tags {
        border-radius: 10px;
        padding: 8px 22px;
        font-size: 15px;
    }
    .blogs {
        .mb-30 {
            margin-bottom: 10px;
        }
        .blog-big {
            margin-bottom: 30px;
            .img-box {
                height: 360px;
            }
        }
    }
    .blog-details {
        .section-title {
            font-size: 42px;
            line-height: 52px;
        }
        h2 {
            font-size: 22px;
            line-height: 24px;
            margin-bottom: 12px;
        }
    }
    .blog-details {
        & .blog-big {
            .img-box {
                height: 365px;
            }
        }
    }
    .gallery-page {
        .gallery-item {
            height: 195.577px;
        }
        & .col-lg-5 {
            .gallery-item {
                height: 416.96px;
            }
        }
    }
    .list-style {
        li {
            font-size: 16px;
        }
    }
    .showcase{
        .section-title {
            font-size: 40px;
        }
    }
    .slick-arrow {
        width: 60px;
        height: 60px;
    }
    .logo {
        width: 190px;
        padding-block: 5px;
    }
    .inner-gap {
        padding-top: 99px;
    }
    .about-us {
        position: relative;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .list-item {
        margin-bottom: 60px;
    }
	.service-details{
		.section-title{
			img {
    margin-bottom: -13px;
    width: 40px;
}
		}
	}
}

@media (max-width: 1366px) {}

@media (max-width: 1199.98px) {

    #menu>.main-menu>ul>li {
        padding-inline: 2px;
    }
    header {
        padding-inline: 20px;
    }
    .logo {
        width: 200px;
    }
    #menu {
        gap: 6px;
    }
    #menu>.main-menu>ul>li>a, #menu ul ul li a {
        font-size: 14px;
    }
    .top-social {
        a {
            padding-inline: 6px;
            display: inline-block;
        }
    }
    #preloader{
        video{
            object-fit: contain;
        }
    }
    .banner {
        h1 {
            font-size: 68px;
        }
        .banner-img {
            height: 50vh;
            object-fit: cover;
            width: 100%;
        }
    }
    .about-img {
        &:after {
            width: 440px;
            height: 440px;
            outline-offset: 34px;
        }
    }
    .sub-title {
        font-size: 20px;
        line-height: 25px;
    }
    .section-title {
        font-size: 37px;
    }
    p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .center-logo {
        width: 230px;
        height: 230px;
        margin-top: -12px;
    }
    .slick-arrow {
        width: 50px;
        height: 50px;
    }
    .services {
        & .product-item {
            .overlay-content{
                padding: 26px 14px;
            }
            .title {
                font-size: 18px;
                margin-bottom: 0;
            }
            p {
                font-size: 12px;
            }
            .primary-btn {
                margin-bottom: 6px;
                padding: 15px 30px;
                font-size: 13px;
                width: 98%;
            }
        }
    }
    .personalized-designs {
        .col-lg-7 {
            padding-right: 2%;
            padding-left: 2%;
        }
    }
    .gallery-item {
        height: 220px;
        border-radius: 19px;
    }
    .get-in-touch {
        .container {
            padding-top: 15px;
        }
        .primary-btn {
            font-size: 12px;
            padding: 17px 24px;
        }
    }
    footer p {
        font-size: 14px;
        line-height: 21px;
    }
    .inner-gap {
        padding-top: 80px;
    }
}

@media (max-width: 991.98px) {
    .top-social {
        display: none;
    }
    #menu {
        justify-content: start;
    }
    header {
        height: auto;
        padding-inline: 15px;
    }
    
 
    .hamburger {
        background: #ffffff00;
        border-radius: 4px;
        top: 15px;
        right: 0;
    }
    .hamburger:before,.hamburger.menu-opened:before{
        background: #00A651;
    }
    .hamburger:after {
        border-top: 2px solid #00A651;
        border-bottom: 2px solid #00A651;
    }
    .hamburger.menu-opened:after{
        background: #00A651;
    }

    #menu .main-menu {
        background-color: rgb(19 19 19);
        top: 60px;
        flex-direction: column;
        padding-right: 0;
    }

    #menu .main-menu {
        top: 80px;
        background: url(../img/footer-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
    }

    #menu>.main-menu>ul>li {
        border-bottom: 1px solid #dddddd3d;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
        padding: 20px 6px;
    }

    header .flex-box {
        margin-top: 0px;
        position: absolute;
        right: 290px;
    }

    #menu>.main-menu>ul>li:hover, #menu .main-menu ul li.current-menu-item:hover, #menu .main-menu ul li.current-menu-item, #menu .main-menu ul li.has-sub.current-menu-item:hover {
        background: #ffffff00 !important;
    }
    #menu .main-menu ul li.current-menu-item a::after {
        bottom: 16px;
    }
    
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
   
    .section-title {
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 36px;
    }
   
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
   
    .footer-social {
        a {
            width: 48.931px;
            height: 48.931px;
            padding: 13px;
        }
    }
    .banner {
        h1 {
            font-size: 50px;
        }
        .primary-btn {
            font-size: 13px;
            padding: 16px 22px;
        }
        .banner-img {
            height: 64vh;
        }
    }
    .about-us {
        position: relative;
        padding-top: 50px;
    }
    .about-img {
        width: 80%;
        margin-inline: auto;
        margin-bottom: 80px;
        &::before {
            width: 626px;
            height: 700px;
            z-index: -1;
            left: -166px;
            bottom: -81px;
            background-size: 552px;
        }
        &:after {
            width: 515px;
            height: 515px;
            outline-offset: 34px;
        }
    }
    .about-content {
        position: relative;
        padding-inline: 20px;
        &::before {
            width: 60px;
            height: 96px;
            left: -23px;
            top: -50px;
            background-size: 60px;
        }
    }
    .center-logo {
        display: none;
    }
    .left-item .list-item {
        padding-left: 0;
        padding-right: 0;
        text-align: right;
        margin: 0;
        text-align: center;
    }
    .left-item .list-item:nth-child(1), .left-item .list-item:nth-child(3) {
        margin-right: 0px;
    }
    .right-item .list-item:nth-child(1), .right-item .list-item:nth-child(3) {
        margin-left: 0;
    }
    .why-choose{
        .row{
            .col-lg-4:nth-child(2){
                display: none;
            }
        }
    }
    .list-item {
        position: relative;
        padding-left: 0;
        margin-bottom: 0;
        text-align: center;
        height: auto;
    }
    .list-item span {
        position: relative;
        margin-inline: auto;
        margin-block: 25px;
        top: 0;
        &:after{
            display: none;
        }
    }
    .service-slider {
        .slick-arrow {
            top: 50%;
            right: -1%;
        }
        .slick-arrow.slick-prev {
            left: -1%;
            right: auto;
        }
    }
    .services {
        & .product-item {
            .overlay-content {
                padding: 26px 36px;
            }
        }
    }
    .pd-bg {
        height: 450px;
        object-fit: cover;
        width: 100%;
		filter: brightness(50%);
    }
    .get-in-touch{
        .get-bg{
            height: 300px;
            width: 100%;
            object-fit: cover;
        }
    }
    .mission-vission {
        .text-center {
            padding-inline: 12%;
            border: 0;
            border-bottom: 1px solid #B7B7B7;
            padding-bottom: 20px;
        }
        .row .col-lg-6:last-child{
            .text-center{
                border: 0;
                padding-bottom: 0;
            }
        }
    }
    .box {
        .col-lg-7 {
            padding-inline: 5%;
            padding-block: 5%;
        }
    }
}

@media (max-width: 575.98px) {
    
    .form-control {
        font-size: 14px;
        padding: 10px 10px;
    }
.blog-details {
    & ul {
        li {
            font-size: 14px;
			line-height: 155.556%;
        }
    }
}
    .form-group {
        margin-bottom: 1px;
    }

    .offcanvas-body .contact-form label {
        font-size: 16px;
        margin-bottom: 5px;
        display: block;
    }

    form .btn-group {
        justify-content: center;
        margin-top: 15px;
    }


    #menu {
        justify-content: start;
    }
    header .flex-box {
        display: none;
    }
    .logo {
        width: auto;
        padding-block: 0px;
        img{
            height: 48px;
            width: auto;
            margin: 0;
            margin-top: 3px;
            margin-bottom: -3px;
        }
    }
    .action-bar {
        padding-block: 2px;
        p {
            font-size: 12px;
        }
    }

    header {
        height: auto;
    }

    .hamburger {
        top: 7px;
        width: 43px;
        height: 36px;
    }

    .hamburger:after {
        top: 17px;
        right: 6px;
        height: 10px;
        width: 30px;
    }

    .hamburger:before {
        top: 8px;
        right: 6px;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:after {
        top: 18px;
        border: 0;
        height: 2px;
        width: 30px;
    }

    .hamburger.menu-opened:before {
        top: 18px;
        width: 30px;
    }

    #menu .submenu-button {
        height: 51px;
        width: 70px;
        background: rgb(255 255 255 / 3%);
    }

    .section-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
    }
   .service-details.sec-gap {
    padding-top: 0;
}
    p {
        font-size: 14px;
    }
    .sec-gap,
    .sec-pad {
        padding: 30px 0;
    }
    .mb-20 {
        margin-bottom: 10px;
    }
    footer {
        padding-top: 30px;
    }
    .copyright {
        padding: 10px 0;
        padding-bottom: 10px;
        justify-content: center;
        gap: 0px 0px;
        margin-top: 20px;
    }
   
    .copyright p {
        margin-bottom: 5px;
    }

    .flex-box {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
        background: #ffffff05;
        padding-block: 10px;
    }


    #menu .main-menu {
        top: 52px;
        flex-direction: column;
        padding-right: 0;
        z-index: 9;
        overflow: auto;
        padding-bottom: 25%;
    }
    #menu .main-menu ul li.current-menu-item a::before,
    #menu>.main-menu>ul>li.has-sub>a::before {
        display: none;
    }

    #menu>.main-menu>ul>li>a {
        padding: 16px 6px;
    }

    #menu>.main-menu>ul>li>a,
    #menu ul ul li a {
        font-size: 16px;
    }

    #menu .submenu-button:after {
        top: 22px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        transform: rotate(0deg);
        border-bottom: 0px solid #fff;
    }

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

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

    #menu .main-menu ul ul.open {
        background: #ffffff0d;
    }

    .menu-white .hamburger.menu-opened:after {
        background-color: #000;
    }

    #menu .main-menu ul li.current-menu-item a::after {
        display: none;
    }

    
    .btn-group {
        display: flex;
        gap: 10px;
    }

   
    .slick-arrow {
        width: 35px;
        height: 35px;
    }
    .slick-arrow::before {
        content: '';
        width: 9px;
        height: 9px;
    }
    .card-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 4px;
    }
    
    .mb-30 {
        margin-bottom: 10px;
    }
    
    .footer-menu {
        & li {
            a {
                font-size: 15px;
                display: block;
            }
        }
    }
   
    .copyright {
        p, a {
            font-size: 14px;
            margin: 0;
        }
    }
    .popup .popup__content {
        width: 95%;
    }
    .left{
        img{
            height: 100px;
            width: auto;
        }
    }
    
    .banner-content {
        width: 98%;
        padding-top: 8%;
        img{
            width: 70%;
        }
    }
    .banner {
        .banner-img{
            height: 490px;
            object-fit: cover;
            width: 100%;
        }
        h1 {
            font-size: 26px;
            line-height: 28px;
            margin-bottom: 25px;
        }
        .btn-group {
            flex-wrap: wrap;
        }
        .container {
            align-items: center;
            padding-top: 52px;
        }
        .primary-btn,.secondary-btn{
            width: 85%;
            font-size: 12px;
            padding: 12px 22px;
        }
    }
    .primary-btn{
        font-size: 12px;
        padding: 12px 28px;
    }
    .secondary-btn {
        padding: 16px 57px;
    }
    .about-img {
        width: 92%;
        margin-inline: auto;
        margin-bottom: 50px;
        &:after {
            width: 250px;
            height: 250px;
            outline-offset: 34px;
        }
        &::before {
            width: 210px;
            height: 265px;
            z-index: -1;
            left: -26px;
            bottom: -32px;
            background-size: 210px;
        }
        .exp {
            width: 130.455px;
            height: 130.455px;
            top: 59px;
            right: -9px;
            box-shadow: 0 0 0 9px rgb(237 237 237);
            h3 {
                font-size: 45px;
                line-height: 60px;
            }
            h4 {
                font-size: 16px;
            }
        }
        .about-small {
            bottom: -46px;
            width: 40%;
        }
    }
    .sub-title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 1.4px;
    }
    .about-content {
        &::before {
            width: 66px;
            height: 113px;
            background-size: 48px;
            left: -21px;
            top: -36px;
        }
    }
    .left-item .list-item {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin: 0;
        margin-bottom: 20px;
    }
    .left-item .list-item:nth-child(1), .left-item .list-item:nth-child(3) {
        margin-right: 0;
    }
    .list-item span {
        position: relative;
        margin: auto;
        margin-bottom: 20px;
    }
    .center-logo{
        display: none;
    }
    .list-item {
        position: relative;
        padding-left: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .right-item .list-item:nth-child(1), .right-item .list-item:nth-child(3) {
        margin-left: 0;
    }
    .list-item span {
        &:after {
            display: none;
        }
    }
    .section-title {
        font-size: 24px;
        line-height: 30px;
    }
    .crafted {
        p {
            font-size: 13px;
        }
        .primary-btn {
            padding: 12px 26px;
            font-size: 13px;
        }
    }
    .personalized-designs {
        .col-lg-7 {
            position: relative;
            padding-right: 15px;
            padding-left: 15px;
            padding-block: 40px;
        }
        .pd-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
			filter: brightness(50%);
        }
    }
    .service-slider {
        .slick-arrow {
            top: 50%;
            right: -10px;
        }
        .slick-arrow.slick-prev {
            left: -10px;
            right: auto;
        }
    }
    .gallery-item {
        height: 210px;
        border-radius: 10px;
    }
    .testimonials {
        & .testimonial-item {
            h3 {
                font-size: 16px;
                line-height: 28px;
            }
            p {
                font-size: 15px;
                line-height: 24px;
            }
            .flex-box {
                gap: 10px;
                justify-content: start;
                img {
                    width: 55px;
                    height: 55px;
                    border-radius: 50%;
                }
                h4{
                    font-size: 18px;
                }
            }
        }
    }
    .form-section {
        iframe {
            border-radius: 10px;
            border: 0;
            height: 300px;
            width: 100%;
        }
    }
    .inner-gap {
        padding-top: 52px;
        margin-bottom: 20px;
    }
    .title-leaf {
        img {
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 40px;
        }
    }
    .pt-sm-0{
        padding-top: 0;
    }
    .about-about {
        .small-line {
            margin-bottom: 12px;
            margin-top: -7px;
        }
        h3 {
            font-size: 16px;
        }
        .exp {
            width: 180px;
            padding: 7px;
            h3 {
                font-size: 38px;
                line-height: 38px;
                margin-bottom: 0px;
            }
            h4 {
                font-size: 16px;
                line-height: 17px;
            }
            img {
                object-fit: contain;
                width: 50px;
                height: 50px;
            }
        }
    }
    .title {
        font-size: 20px;
    }
    .testimonials {
        & .testi-img {
            span.img-qut {
                width: 80px;
                height: 80px;
                padding: 18px;
            }
        }
    }
    .get-in-touch {
        .btn-group {
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 15px;
        }
    }
    .get-in-touch {
        .primary-btn {
            font-size: 12px;
            padding: 12px 24px;
        }
    }
    .img-box {
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }
    .mission-vission {
        .text-center {
            padding-inline: 0%;
            border-bottom: 1px solid #B7B7B7;
            border-right: 0;
            padding-bottom: 10px;
        }
        & .row .col-lg-6:last-child {
            .text-center {
                border-right: none;
                border-bottom: 0;
                padding-bottom: 0;
            }
        }
    }
    .best-work{
        .section-title{
            margin-bottom: 10px;
        }
    }
    .team-benber {
        .tema-img {
            border-radius: 12px;
            margin-bottom: 5px;
            overflow: hidden;
        }
        h4 {
            font-size: 16px;
            line-height: 16px;
            margin-bottom: 0px;
        }
        p {
            font-size: 12px;
            line-height: 20px;
            margin: 0;
        }
    }
    .box {
        border-radius: 12px;
        .box-img {
            height: 202px;
        }
        .col-lg-7 {
            padding-inline: 2%;
            padding-block: 5%;
        }
        .primary-btn {
            padding-inline: 40px;
        }
    }
    .service-box {
        .small-line {
            margin-bottom: 9px;
            margin-top: 1px;
        }
    }
    .blogs {
        .mb-30 {
            margin-bottom: 10px;
        }
        .blog-big {
            margin-bottom: 30px;
            .img-box {
                height: 240px;
            }
        }
        .blog-big-content {
            border-radius: 18px;
            padding: 15px;
            padding-right: 10px;
            width: auto;
            left: 10px;
            bottom: 10px;
            right: 10px;
        }
        .title {
            font-size: 18px;
        }
    }
    .blog-details {
        .section-title {
            font-size: 22px;
            line-height: 28px;
        }
        .blog-date {
            font-size: 14px;
            line-height: 9px;
        }
        .blog-big {
            margin-top: 0px;
            margin-bottom: 10px;
            .img-box {
                height: 180px;
            }
        }
            h2 {
                font-size: 18px;
                line-height: 24px;
                margin-bottom: 6px;
            }
    }
    .blog-tags {
        border-radius: 6px;
        padding: 6px 14px;
        font-size: 12px;
    }
    .contact-page{
        .col-lg-6{
            .section-title {
                font-size: 24px;
                line-height: 26px;
                margin-bottom: 8px;
            }
        }
        h3 {
            font-size: 16px;
            margin-bottom: 0px;
        }
        .contact-list {
            border-radius: 12px;
            padding: 15px;
            padding-left: 55px;
            margin-bottom: 13px;
            img {
                top: 20px;
            }
        }
    }
    .form-section {
        .form-control {
            border-radius: 60px;
            padding: 12px 18px;
            font-size: 14px;
            height: 48px;
        }
    }
    .map {
        padding-top: 0px;
        iframe {
            height: 240.781px;
            border-radius: 12px;
        }
    }
    .gallery-page {
        .gallery-item {
            height: 106.577px;
        }
        & .col-lg-5 {
            .gallery-item {
                height: 307.96px;
            }
        }
    }
    #preloader-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .showcase {
        border-radius: 20px;
        padding: 26px 12px;
    }
    .showcase {
        .section-title {
            font-size: 26px;
            margin-bottom: 10px;
        }
    }
    .list-style {
        li {
            font-size: 14px;
            margin-bottom: 6px;
        }
    }
    .service-box {
        .title {
            font-size: 18px;
        }
    }
    .left-item .list-item:nth-child(2) {
        margin-right: unset;
    }
    .right-item .list-item:nth-child(2) {
        margin-left: unset;
    }
    .center-lefe {
        display: none;
    }
}