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

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

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #1f93d13b;
}

html::-webkit-scrollbar-thumb {
    background-color: #1f92d1;
    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: #404040;
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
}

a,
a:hover,
a:focus {
    color: #5E923F;
    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: 'Purista';
    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: #5E923F;
    transition: all .5s;
    z-index: 9;
}

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

.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(180deg, #FFF 0%, rgba(31, 146, 209, 0.00) 100%), url(../img/product1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: start;
    justify-content: center;
    padding-top: 20px;
}

.right {
    padding: 30px;
    text-align: left;
    background: #1f92d1;
}
.fixed-contact{
    position: fixed;
    right: 5px;
    bottom: 30%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    a{
        &:hover{
            scale: 1.1;
        }
    }
}
.call{
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #78AF58;
    border-radius: 50%;
}
.wp{
    width: 52px;
    height: 52px;
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
p {
    color: #404040;
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 166.667%;
}
.title {
    color: #FFF;
    font-family: 'Purista';
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title {
    color: #141414;
    font-family: 'Purista';
    font-size: 52px;
    font-style: normal;
    font-weight: normal;
    line-height: 107.692%;
    text-transform: uppercase;
}
.section-sub-title{
    color: #5E923F;
    font-family: 'Purista';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 127.778%;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
}
.btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
}
.primary-btn {
    border-radius: 60px;
    background: #1F92D1;
    color: #FFF;
    font-family: 'Purista';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 23px;
    text-transform: uppercase;
    padding: 18px 40px;
    padding-left: 70px;
    border: 1px solid #1F92D1;
    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 img {
    position: absolute;
    right: 75%;
    top: 50%;
    transform: translateY(-50%);
    transition: right 1s ease;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    inset: 0;
    scale: 1 0;
    background: #5E923F;
    z-index: -1;
    transition: all .35s;
}
.primary-btn:before {
    opacity: .5;
}
.primary-btn:after {
    transition-delay: .2s;
}
.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}
.primary-btn:hover {
    color: #ffffff;
    border-color: #5E923F;
    padding-right: 70px;
    padding-left: 40px;
    img {
        right: 2%;
        transform: rotateY(180deg) translateY(-50%);
    }
}
.secondary-btn{
    background: #5E923F;
    border-color: #5E923F;
}
.secondary-btn:hover{
    border-color: #ed7422;
}
.primary-btn:focus {
    color: #ffffff;
}
.secondary-btn:before,
.secondary-btn:after {
    background: #ed7422;
}
.form-control {
    font-family: 'Manrope Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 17px 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    outline: none;
}

.form-control:focus {
    border-color: #5E923F;
}

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

form .primary-btn {
    background: url(../img/btn-img.webp);
    background-position: 2%;
    background-repeat: no-repeat;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    background-color: #5E923F;
    padding: 16px 52px;
    padding-left: 70px;
    border-color: #5E923F;
}

form .primary-btn:hover {
    background-position: 95%;
    background-color: #ed7422;
    padding-right: 81px;
    border-color: #ed7422;
}

.form-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    .form-icon{
        position: absolute;
        right: 10px;
    }
}

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

.form-control::placeholder {
    color: #767676;
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%;
}

.italic {
    font-style: italic;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@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;
}

/* 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;
    .primary-btn{
        background: transparent;
        color: #5E923F;
        padding: 13px 30px;
        border-width: 2px;
        border-color: #5E923F;
        &:hover{
            color: #FFF;
        }
    }
}

header.sticky {
    background: #FFF;
    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: 13px;
}

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

    to {
        transform: translateY(0);
    }
}

.serch-box {
    position: relative;
    margin-left: 40px;
}

.serch-box span {
    position: absolute;
    left: 0;
    top: 0;
    height: 62px;
    width: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serch-box input {
    width: 287px;
    height: 62px;
    padding: 14px;
    border-radius: 60px;
    border: 1px solid #393939;
    background: rgba(217, 217, 217, 0.10);
    backdrop-filter: blur(20px);
    color: #A8A8A8;
    font-family: 'Work Sans';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 52px;
}

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

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

header {
    position: relative;
    transition: ease-in-out .4s;
    z-index: 999;
    padding-block: 10px;
}
nav {
    position: relative;
    margin: 0 auto
}
.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: 50px;
}

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

#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 2px;
    display: inline-block;
    color: #272727;
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 76.471%;
}
#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::after {
    content: '';
    transition: 0.5s;
    width: 0;
}

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

#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;
    &::after{
        content: '';
        position: absolute;
        bottom: 0px;
        left: 20px;
        width: 28px;
        height: 1px;
        background: #5E923F;
    }
}


#menu>.main-menu>ul>li.has-sub>a::before {
    top: 12px;
    right: -10px;
    transition: all .4s;
    content: "";
    position: absolute;
    z-index: 11;
    display: 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::before,
#menu>.main-menu>ul>li.has-sub.current-menu-item>a::before {
    border-top-color: #5E923F;
    border-left-color: #5E923F;
}

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

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

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

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


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

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

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

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

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

@media screen and (max-width:992px) {
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100% !important;
        background-color: #5E923F;
        transform: translateX(-100%);
        transition: all .4s;
        top: 72px;
        left: 0;
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;

    }
    #menu .main-menu ul li {
        width: 100%;
        border-top: 1px solid #4444442e;
    }
    #menu .main-menu ul ul li:hover a,
    #menu .main-menu ul ul li:hover {
        color: #fff;
        background-color: #ed7422;
    }
    #menu .main-menu ul li:hover {
        background: transparent;
    }

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

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

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

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

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

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

    #menu .main-menu ul ul,
    #menu .main-menu ul ul ul {
        position: relative;
        left: 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: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: 10px;
        top: 0;
        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 #060761;
        border-bottom: 2px solid #060761;
        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: #060761;
        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: #060761;
        -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: #060761;
        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: #ffffff2f;

    }

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

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

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

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

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


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

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

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

    #menu>ul>li.has-sub>ul>li.active>a,
    #menu>ul ul>li.has-sub>ul>li.active>a {
        border-top: none
    }
    header.sticky {
        padding-block: 3px;
    }
    #menu>.main-menu>ul>li:hover>a, #menu .main-menu ul li.current-menu-item a {
        color: #ed7422;
        scale: unset;
    }
    header.sticky{
        #menu .main-menu{
            top: 67px;
        }
    }
}
.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);
}
.fixed-btn {
    position: fixed;
    top: 35%;
    right: 0;
    z-index: 8;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.enquiry-btn {
    color: #FFF;
    font-family: 'Purista';
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 143.75%;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0px 20px 20px 0px;
    background: #1B5574;
    padding: 20px 10px;
    transform-origin: right center;
    transition: 0.8s;
    &:hover{
        color: #5E923F;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        background: #FFF;
    }

}
/******************************
            Banner  
*******************************/
.banner{
    position: relative;
}
.banner-item{
    position: relative;
    height: 800px;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}
.banner-content{
    width: 53%;
    padding-bottom: 80px;
    h5{
        color: #5E923F;
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 126.923%;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    h1{
        color: #04457E;
        font-size: 56px;
        font-style: normal;
        font-weight: 600;
        line-height: 59px; /* 105.357% */
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    p{
        color: #404140;
        font-size: 19px;
        line-height: 142.105%;
    }
}
.banner-item::before,
.banner-item::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(90deg, #EEF6FF 0%, rgba(200, 223, 245, 0.00) 50%) ;
}
.banner-item::after{
    background: linear-gradient(90deg, #D1E3F6 0%, rgba(200, 223, 245, 0.00) 50%);
}
.banner-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-shape{
    position: relative;
    width: 100%;
    z-index: 2;
    margin-top: -250px;
    display: none;
}
.banner-slider{
    .slick-dots{
        bottom: 150px;
        text-align: left;
        padding-left: 300px;
    }
    .slick-dots{
        .slick-active{
            background: #1F92D1;
        }
        li{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-inline: 10px;
            outline: 1px solid #1F92D1;
            background: transparent;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-active{
        h5{
            animation-name: slideInDown;
            animation-duration: 0.6s;
            animation-delay: .4s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        h1{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.6s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        p{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 0.9s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        .primary-btn{
            animation-name: slideInUp;
            animation-duration: 0.9s;
            animation-delay: 1.2s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
    }
}
.ocean {
  height: 130px; /* change the height of the waves here */
  width: 100%;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  overflow-x: hidden;
  z-index: 1;
}
.wave {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%2399DBFF'/%3E%3C/svg%3E");
  position: absolute;
  width: 300%;
  height: 100%;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.wave:nth-of-type(2) {
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23F2F9EE'/%3E%3C/svg%3E");
  animation: wave 18s -3s linear infinite;
  opacity: 1;
}
.wave:nth-of-type(3) {
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23FFF'/%3E%3C/svg%3E");
  animation: wave 20s -1s linear infinite;
  opacity: 1;
}
@keyframes wave {
    0% {transform: translateX(0);}
    50% {transform: translateX(-25%);}
    100% {transform: translateX(-50%);}
}
/******************************
            Who We Are
*******************************/
.who-we-are{
    position: relative;
    .section-sub-title{
        flex-direction: row;
    }
}
.who-we-are-content{
    p{
        a{
            color: #04457E;
            text-decoration: underline;
            &:hover{
                color: #5E923F;
            }
        }
    }
}
.counter{
    position: absolute;
    top: 0;
    right: 0;
    width: 670px;
    height: 710px;
    padding: 70px 50px 70px 120px;
    border-radius: 64px;
    background: #F2F9EE;
}
.counter-item{
    border-bottom: 1px dashed #000;
    padding-block: 30px;
    .number,
    span{
        color: #04457E;
        font-size: 52px;
        line-height: 107.692%;
    }
    p{
        color: #000;
        font-size: 24px;
        line-height: 133.333%;
    }
}
.counter-item:nth-child(4){
    border-bottom: none;
}
.who-we-are-img{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
        transition: 0.5s;
    }
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.img-under-text{
    width: 164px;
    position: absolute;
    right: 15px;
    bottom: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2.5px);
    padding: 15px;
    .section-title{
        color: #FFF;
        display: flex;
        gap: 10px;
        img{
            width: 42.583px;
            height: 42px;
            aspect-ratio: 42.58/42.00;
        }
        span{
            display: inline-block;
            font-weight: 900;
            margin-left: -6px;
        }
    }
    p{
        color: #FFF;
        font-size: 22px;
        line-height: 127.273%;
        text-transform: uppercase;
        margin-bottom: 0;
    }
}
/******************************
        Partner
*******************************/
.partner-content{
    width: 1505px;
    border-radius: 36px;
    background: #F3FBFF;
    padding: 30px 50px;
    .section-title{
        font-size: 32px;
        margin-bottom: 20px;
    }
}
.partner-item{
    border-radius: 10px;
    border: 1px solid #DDD;
    background: #FFF;
    height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    margin-block: 30px;
    &:hover{
        scale: 1.1;
        border-radius: 10px;
        box-shadow: 0px 9px 24px 0px rgba(0, 0, 0, 0.23);
    }
}
.partner-slider{
    .slick-dots{
        .slick-active{
            background: #1F92D1;
        }
        li{
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-inline: 10px;
            outline: 1px solid #1F92D1;
            background: transparent;
        }
        li button {
            opacity: 0;
            width: 100%;
        }
        &::before{
            width: 100%;
        }
    }
    .slick-list{
        padding-inline: 1px;
    }
}
/******************************
        Our Product
*******************************/
.product{
    .section-title{
        margin-bottom: 30px;
    }
}
.product-card{
    border-radius: 40px;
    border: 1px solid #DEDEDE;
    padding: 10px;
    transition: all 0.5s;
    &:hover{
        scale: 1.05;
        box-shadow: 0px 9px 24px 0px rgba(0, 0, 0, 0.23);
        .product-card-img{
            img{
                scale: 1.1;
            }
        }
    }
}
.product-card-img{
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 40px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 40px;
        transition: 0.5s;
    }
}
.product-card-text{
    text-align: center;
    .btn-group{
        justify-content: center;
        margin-bottom: -40px;
    }
    h4{
        color: #005583;
        font-size: 28px;
        line-height: 121.429%;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
}
/******************************
        Management Solution
*******************************/
.management-solution{
    position: relative;
    background: #E8F7FF;
    background-image: url(assets/img/management-solution.webp);
    margin-block: 100px;
    /* padding-inline: 70px; */
    .section-title{
        margin-bottom: 30px;
    }
    .ocean {
        top: -80px;
        z-index: -1;
    }
    .b-side{
        bottom: -100px;
        transform: rotateX(180deg);
        top: unset;
    }
    .wave:nth-of-type(2) {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23F2F9EE'/%3E%3C/svg%3E");
        animation: wave 18s -3s linear infinite;
    }
    .wave:nth-of-type(3) {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23E8F7FF'/%3E%3C/svg%3E");
        animation: wave 20s -1s linear infinite;
    }
}
.b-side{
    bottom: -100px;
    transform: rotateX(180deg);
    top: unset;
}
.management-solution-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.management-card{
   width: 370px;
    height: 90px;
    border-radius: 10px;
    background: #FFF;
    border-radius: 10px;
    position: relative;
    margin-block: 30px;
    transform: translateX(125px);
    transition: 0.5s;
    .management-card-layer{
        position: absolute;
        width: 370px;
        height: 70px;
        left: -10px;
        bottom: 10px;
        border-radius: 10px;
        background: linear-gradient(180deg, #1F92D1 0%, #005583 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    p{
        color: #FFF;
        font-family: 'Roboto Medium';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        margin: 0;
        text-align: right;
    }
    .circle{
        position: absolute;
        width: 71px;
        height: 71px;
        border-radius: 50%;
        background: #FFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        right: -45px;
        top: 50%;
        transform: translateY(-50%) ;
    }
    .circle-number{
        position: absolute;
        width: 60px;
        height: 61px;
        border-radius: 50%;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: #FFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        p{
            color: #005583;
            font-family: 'Roboto Medium';
            font-size: 32px;
            transition: 0.5s;
        }
    }
    &:hover{
        scale: 1.05;
    }
}
.management-solution .row .col-lg-3:nth-child(1){
    .col-lg-12:nth-child(2),
    .col-lg-12:nth-child(3),
    .col-lg-12:nth-child(4){
        .management-card{
            transform: translatex(60px);
        }
    }
}
.management-solution .row .col-lg-3:nth-child(3){
    .management-card{
        transform: translateX(-50px);
        .management-card-layer{
            left: unset;
            right: -10px;
        }
        .circle{
            right: unset;
            left: -45px;
        }
    }
    .col-lg-12:nth-child(2),
    .col-lg-12:nth-child(3),
    .col-lg-12:nth-child(4){
        .management-card{
            transform: translatex(16px);
        }
    }
}
/* *************************************************
        Why Choose Us
************************************************ */
.why-choose{
    background: url(../img/why-choose-us-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    padding-bottom: 190px;
        .btn-group{
            justify-content: center;
            margin-top: 30px;
        }
}
.why-choose-content{
    background: url(https://dppreview4client.com/wordpress/plizma/wp-content/uploads/2025/09/why-choose-us-middle-upd-logo.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    margin-top: 20px;
}
.why-choose-card{
    position: relative;
    text-align: right;
    margin-block: 50px;
    padding-right: 88px;
    .why-choose-icon{
        position: absolute;
        width: 107px;
        height: 107px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1F92D1;
        border-radius: 50%;
        right: -40px;
        top: 50%;
        transform: translateY(-50%);
        outline: 1px dashed #1F92D1;
        outline-offset: 6px;
    }
    h5{
        color: #005583;
        font-size: 24px;
        line-height: 141.667%;
        text-transform: uppercase;
    }
    p{
        color: #404040;
        font-size: 18px;
        line-height: 150%;
        margin: 0;
    }
    &:hover{
        .why-choose-icon{
            background: #5E923F;
            outline-color: #5E923F;
            img{
                transform: rotateY(180deg);
            }
        }
        h5{
            color: #5E923F;
        }
    }
}
.why-choose-content .row .col-lg-4:nth-child(1){
    .col-lg-12:nth-child(1),
    .col-lg-12:nth-child(3){
        .why-choose-card{
            transform: translatex(90px);
        }
    }
}
.why-choose-content .row .col-lg-4:nth-child(3){
    .why-choose-icon{
        right: unset;
        left: -40px;
    }
    .why-choose-card{
        padding-right: unset;
        padding-left: 88px;
        text-align: left;
    }
        .col-lg-12:nth-child(1),
    .col-lg-12:nth-child(3){
        .why-choose-card{
            transform: translatex(-90px);
        }
    }
}
/************************************
Services
************************************/
.Market-seg{
    position: relative;
    padding-block: 100px;
}
.market-seg-grid {
  margin-top: 50px;
  .market-seg-card:nth-child(2){
    top: 180px;
  }
  .market-seg-card:nth-child(3){
    top: 200px;
  }
}
.market-seg-card{
    position: sticky;
    top: 160px;
    margin-bottom: 30px;
}
.market-seg-content {
    border-radius: 59px;
    overflow: hidden;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .market-seg-text-left{
        width: 70%;
    }
    .market-seg-text{
        padding: 70px 30px;
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        .market-seg-icon{
            width: 104px;
            height: 104px;
            background: #FFF;
            border-radius: 50%;
            padding: 20px;
            outline: 7px solid #ffffff4d;
            margin-bottom: 25px;
        }
        h4{
            color: #FFF;
            font-family: 'Purista Light';
            font-size: 56px;
            font-style: normal;
            font-weight: normal;
            line-height: 105.357%;
            text-transform: uppercase;
            margin-bottom: 7px;
        }
        p{
            color: #FFF;
        }
    }
    &::before{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        inset: 0;
        border-radius: 59px;
        background: linear-gradient(0deg, #005583 0%, rgba(102, 102, 102, 0.00) 100%);
    }
    .primary-btn{
        img{
            width: auto;
            height: auto;
        }
    }
}
/******************************
        Testimonial
*******************************/
.testimonial{
    position: relative;
    background: #F5FBFE;
    margin-block: 180px;
    .ocean {
        z-index: -1;
        top: -100px;
        .wave:nth-of-type(2) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23F5FBFE'/%3E%3C/svg%3E");
        }
        .wave:nth-of-type(1) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%237EBCDE'/%3E%3C/svg%3E");
        }
    }
    .b-side{
        bottom: -100px;
        transform: rotateX(180deg);
        top: unset;
    }
    .container{
        position: relative;
        .gmb-review{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
/******************************
        Featured Blogs
*******************************/
.featured-blogs{
    background: url(../img/water-refining-vector.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding-bottom: 260px;
    margin-bottom: -2px;
    .section-title{
        margin-bottom: 30px;
    }
    hr{
        background: #99C5DE;
    }
    .btn-group{
        justify-content: flex-end;
    }
    .blog-btn{
        background: transparent;
        color: #5E923F;
        font-family: 'Purista';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 183.333%;
        text-transform: uppercase;
        transition: 0.5s;
        margin-top: 13px;
        span{
            display: inline-block;
            margin-left: 10px;
        }
        &:hover{
            scale: 1.1;
        }
    }
}
.featured-blog-img{
    overflow: hidden;
    border-radius: 23px;
    margin-bottom: 20px;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
        margin-bottom: -10px;
        aspect-ratio: 1 / 0.55;
    }
}
.featured-blog-content{
    height: 100%;
    &:hover{
        .featured-blog-text{
            h5{
                color: #5E923F;
            }
        }
        .featured-blog-img{
            img{
                scale: 1.1;
            }
        }
    }
}
.featured-blog-text{
    span{
        display: inline-block;
        color: #5E923F;
        font-family: 'Roboto Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        margin-bottom: 12px;
    }
    h5{
        color: #005583;
        font-family: 'Roboto Medium';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height: 121.429%;
        margin-bottom: 13px;
    }
    p{
        color: #404040;
        line-height: 150%;
    }
}
.side-blog-content{
    display: flex;
    gap: 25px;
    margin-bottom: 32px;
    a{
        display: inline-block;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
            border-radius: 23px;
        }
    }
    .featured-blog-text{
        width: 50%;
        h5{
            font-size: 24px;
            &:hover{
                color: #5E923F;
            }
        }
    }
    .date{
        color: #C4C4C4;
        font-size: 18px;
    }
}
/******************************
        Water Treatment
*******************************/
.water-treatment{
    background: url("../img/water-treatment-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    &::before{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        inset: 0;
        background: linear-gradient(180deg, rgba(40, 53, 32, 0.51) 0%, rgba(0, 0, 0, 0.76) 100%);
        z-index: -1;
    }
    .section-title{
        font-size: 54px;
        color: #FFF;
        margin-bottom: 20px;
    }
    p{
        color: #FFF;
        font-size: 19px;
        line-height: 142.105%;
    }
    .btn-group{
        justify-content: flex-end;
    }
}
/******************************
        world-map
*******************************/
.contact-us{
    .section-title{
        margin-bottom: 40px;
    }
    .contact-form{
        padding: 30px;
        border-radius: 18px 42px 42px 48px;
        background: #F5F8F6;
        height: 100%;
        .btn-group{
            justify-content: start;
        }
        .title{
            color: #141414;
        }
    }
}
.contact-info{
    border-radius: 42px 0 0 42px;
    background: #E8EFEB;
    padding: 40px;
    box-shadow: 144px 0 0 0px #E8EFEB;
    height: 100%;
    p,a{
        color: #404040;
    }
    a:hover{
        color: #5E923F;
    }
}
.contact-list{
    margin-bottom: 20px;
}
.contact-title{
    color: #000;
    font-family: 'Roboto Medium';
    font-size: 18px;
    font-weight: normal;
}
/******************************
        Footer
*******************************/
footer{
    background: #0F2633;
    padding-block: 60px;
    padding-bottom: 30px;
    margin-top: 150px;
    position: relative;
    .ocean{
        top: -120px;
        z-index: -1;
    }
    .wave{
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%235E923F'/%3E%3C/svg%3E");
    }
    .wave:nth-of-type(2) {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%230F2633'/%3E%3C/svg%3E");
    }
    p,a{
        color: #DFDFDF;
    }
    .social-links{
        display: flex;
        align-items: center;
        gap: 10px;
        a{
            display: inline-block;
            width: 45px;
            height: 45px;
            background: #ffffff1c;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            &:hover{
                background: #5E923F;
            }
        }
    }
    .footer-title{
        color: #FFF;
        font-family: 'Roboto Medium';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        margin-bottom: 20px;
    }
    ul li{
        margin-block: 15px;
    }
    .copyright{
        border-top: 1px solid rgba(255, 255, 255, 0.20);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 30px;
        p{
            margin: 0;
        }
        a{
            color: #F28624;
            &:hover{
                color: #5E923F;
            }
        }
    }
}
.certificate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    img{
        width: 40%;
    }
}
.iso-text {
    font-weight: bold;
    margin-top: 14px;
}
/******************************************
        Inner Pages
********************************************/
/* Blogs Page */
.inner-banner{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        z-index: 1;
    }
}
.inner-banner::before,
.inner-banner::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(90deg, #EEF6FF 0%, rgba(200, 223, 245, 0.00) 50%) ;
}
.inner-banner::after{
    background: linear-gradient(90deg, #D1E3F6 0%, rgb(200 223 245 / 44%) 50%);
}
.featured-blog-text{
    p{
        margin-bottom: 10px;
    }
    .blog-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        color: #5E923F;
        font-family: 'Roboto Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 38.889%;
        &:hover{
            scale: 1.1;
            transform: translateX(10px);
        }
    }
}
.blog-date{
    color: #727070;
    font-family: 'Roboto Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 38.889%;
    margin-bottom: 0;
}
.features{
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    border-radius: 8px 0 0 8px;
    color: #5E923F;
    font-family: 'Roboto Regular';
    font-size: 22px;
    font-style: normal;
    font-weight: normal;
    line-height: 90.909%;
    text-transform: uppercase;
    padding: 12px 10px;
    background: #ffffffcf;
}
.blog-details{
    .features{
        position: relative;
        background: transparent;
        padding: 0;
        margin-bottom: 40px;
    }
    h1{
        color: #005583;
        font-size: 56px;
        font-style: normal;
        font-weight: normal;
        line-height: 105.357%;
        margin-bottom: 20px;
    }
    .blog-date{
        margin-bottom: 30px;
    }
    h2{
        color: #141414;
        font-family: 'Roboto Medium';
        font-size: 38px;
        font-style: normal;
        font-weight: normal;
        line-height: 120%;
        margin-bottom: 10px;
    }
}
.blog-details-img{
    width: 1296px;
    height: 456px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.side-blog{
    margin-top: 50px;
    border-radius: 20px;
    border: 1px solid #DDE2E4;
    background: #FFF;
    padding: 30px 10px;
    h3{
        color: #141414;
        font-family: 'Roboto SemiBlod';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 7px; /* 38.889% */
        margin-bottom: 25px;
    }
    hr{
        background: #DDE2E4;
        margin-bottom: 20px;
    }
    ul{
        li{
            margin-block: 30px;
            a{
                display: flex;
                align-items: center;
                justify-content: space-between;
                color: #141414;
                font-family: 'Roboto Regular';
                font-size: 18px;
                font-style: normal;
                font-weight: normal;
                line-height: 38.889%;
                &:hover{
                    color: #5E923F;
                }
            }
        }
    }
}
.side-blog-card{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    img{
        display: inline-block;
        border-radius: 8px;
        width: 92px;
        height: 86px;
        object-fit: cover;
    }
    h5{
        color: #141414;
        font-family: 'Roboto Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 116.667%;
        margin-bottom: 20px;
    }
    .blog-date{
        margin-bottom: 0;
        color: #5E923F;
    }
    &:hover{
        h5{
            color: #5E923F;
        }
    }
}
.related{
    h3{
        color: #141414;
        font-family: 'Purista';
        font-size: 32px;
        font-style: normal;
        font-weight: normal;
        line-height: 187.5%;
        text-transform: uppercase;
    }
    h5{
        color: #141414;
        font-family: 'Roboto Medium';
        font-size: 28px;
        font-style: normal;
        font-weight: normal;
        line-height:  121.429%;
    }
    .blog-date{
        color: #5E923F;
        margin-bottom: 0;
    }
}
/* Contact Page */
.con-form{
    .btn-group{
        justify-content: start;
    }
    .title{
        color: #141414;
    }
    .contact-info{
        border-radius: 20px;
        background: #F2F9EE;
        box-shadow: none;
        padding: 30px;
        h3{
            color: #04457E;
            font-family: 'Roboto SemiBlod';
            font-size: 30px;
            font-style: normal;
            font-weight: normal;
            line-height: 66.667%;
            margin-bottom: 20px;
        }
        h5{
            color: #000;
            font-family: 'Roboto Medium';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 100%;
            margin-bottom: 10px;
        }
        .logo{
            width: 150px;
            margin-bottom: 15px;
        }
    }
}
.map{
    .section-title{
        font-size: 32px;
        margin-bottom: 20px;
    }
    iframe{
        height: 517px;
        border-radius: 10px;
    }
}
/* Gallery page */
.gallery-img{
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    .gal-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    span{
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background: rgba(0, 0, 0, 0.22);
        scale: 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        transition: 0.5s;
    }
    &:hover{
        span{
            scale: 1 1;
        }
    }
}
/* About Page */
.who-we-are-img{
    .blur-tag{
        display: inline-block;
        padding: 10px 15px;
        position: absolute;
        color: #FFF;
        font-family: 'Roboto Regular';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 31px; /* 140.909% */
        text-transform: uppercase;
        top: 30px;
        right: 0;
        width: 562px;
        border-radius: 15px 0 0 15px;
        background: rgba(22, 22, 22, 0.18);
        backdrop-filter: blur(4px);
    }
}
.about-counter{
    background: #F2F9EE;
    .counter-item{
        border-bottom: none;
        padding-block: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        height: 100%;
        transition: 0.5s;
        h4{
            font-size: 48px;
        }
        p{
            font-size: 22px;
        }
        .counter-icon{
            width: 85px;
            height: 85px;
        }
        &:hover{
            scale: 1.05;
            .counter-icon{
                img{
                    transform: rotateY(180deg);
                }
            }
        }
    }
    .counter{
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        padding-block: 30px;
        .col-lg-3{
            border-right: 1px solid #5E923F;
        }
        .col-lg-3:nth-child(4){
            border: none;
        }
    }
}
.miss-viss-box{
    height: 100%;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.10);
    padding: 50px;
    transition: 0.5s;
    img{
        margin-bottom: 15px;
    }
    h3{
        color: #04457E;
        font-family: 'Purista';
        font-size: 32px;
        font-style: normal;
        font-weight:normal;
        line-height: 20px; /* 62.5% */
        text-transform: uppercase;
        margin-bottom: 15px;
        transition: 0.5s;
    }
    &:hover{
        background: #F2F9EE;
        img{
            filter: brightness(0) saturate(100%) invert(18%) sepia(58%) saturate(2329%) hue-rotate(191deg) brightness(95%) contrast(97%);
            transform: rotateY(180deg);
        }
        h3{
            color: #78AF58;
        }
    }
}
.certificate{
    background: #F3FBFF;
    .section-title{
        margin-bottom: 20px;
    }
}
.certificate-box{
    border: 1px solid #C4C6C8;
    box-shadow: 0 4px 35px 0 rgba(0, 0, 0, 0.25);
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.about-partner{
    .partner-content{
        width: 100%;
        background: transparent;
        padding: 0;
    }
}
/* Product & Solution Page */
.world-class{
    .container{
        background: #04457E;
        padding: 50px;
        border-radius: 21px;
    }
}
.world-class-img{
    border-radius: 19px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        transition: 0.5s;
    }
    &:hover{
        img{
            scale: 1.07;
        }
    }
}
.world-class-text{
    .section-title{
        color: #FFF;
    }
    p{
        color: #FFFFFF;
    }
    span, a{
        color: #F2920D;
    }
    a{
        text-decoration: underline;
        &:hover{
            color: #5E923F;
        }
    }
}
.plant-work{
    background: #EEF2E4;
    position: relative;
    margin-block: 180px;
    .ocean {
        z-index: -1;
        top: -100px;
        .wave:nth-of-type(2) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23EEF2E4'/%3E%3C/svg%3E");
        }
        .wave:nth-of-type(1) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%235E923F'/%3E%3C/svg%3E");
        }
    }
    .b-side{
        bottom: -100px;
        transform: rotateX(180deg);
        top: unset;
    }
}
.plant-work-card{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px;
    border-radius: 12px;
    background: #FFF;
    margin-bottom: 20px;
    transition: 0.6s;
    &:hover{
        background: #5E923F;
        h4,p{
            color: #FFF;
        }
        .plant-work-icon{
            background: #FFF;
            outline-color: #ffffff2d;
            img{
                filter: brightness(0) saturate(100%) invert(51%) sepia(16%) saturate(1355%) hue-rotate(54deg) brightness(96%) contrast(89%);
            }
        }
    }
}
.plant-work-icon{
    width: 85px;
    height: 85px;
    background: #04457E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 6px solid #04457e28;
    transition: 0.5s;
    img{
        transition: 0.5s;
    }
}
.plant-work-text{
    width: 80%;
    h4{
        color: #005583;
        font-family: 'Purista';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 141.667%;
        text-transform: uppercase;
        transition: 0.5s;
    }
    p{
        transition: 0.5s;
    }
}
.application-item{
    padding: 40px;
    border-radius: 32px;
    background: #F2F9FD;
}
.application-img{
    border-radius: 20px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
}
.application-slider{
    .slick-slide{
        margin: 0 20px;
    }
    .slick-list{
        margin: 0 -40px;
    }
    .fst-cl{
        background: #F2F9FD;
    }
    .mid-cl{
        background: #EFF6EB;
    }
    .last-cl{
        background: #F8F2E9;
    }
}
.application-text{
    h3{
        color: #000;
        font-family: 'Roboto Blod';
        font-size: 42px;
        font-style: normal;
        font-weight: normal;
        line-height: 128.571%;
    }
}
.unique-selling{
    margin-inline: 90px;
    border-radius: 40px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 50px;
    .section-title{
        margin-bottom: 10px;
    }
}
.unique-selling-img{
    position: relative;
}
.unique-selling-boy{
    position: absolute;
    left: 35px;
    bottom: 45px;
    border-radius: 50%;
    width: 579.753px;
    height: 579.753px;
}
.unique-selling-bg{
    animation: spin 6s 0.4s infinite linear;
}
.unique-selling-text{
    ul{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        li{
            width: 49%;
            color: #252525;
            font-family: 'Roboto SemiBlod';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 122.778%;
            position: relative;
            padding-block: 5px;
            padding-left: 40px;
            transition: 0.5s;
            &::before{
                position: absolute;
                content: '';
                width: 26px;
                height: 26px;
                background: url(../img/tick.webp);
                background-repeat: no-repeat;
                background-position: center;
                background-size: 100%;
                left: 0;
                top: 10%;
            }
            &:hover{
                color: #5E923F;
                transform: translateY(-5px);
                scale: 1.03;
            }
        }
    }
}
.key-market-content{
    display: flex;
    flex-wrap: wrap;
}
.key-market-card{
    width: 12.5%;
    height: 172px;
    border: 1px solid #DADADA;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    .key-market-icon{
        width: 65px;
        height: 65px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    p{
        color: #000;
        text-align: center;
        font-family: 'Roboto SemiBlod';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.111%;
        margin-bottom: 0;
    }
    &:hover{
        background: #f0f0f0;
        scale: 1.1;
        z-index: 2;
        .key-market-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.plant-form{
    position: relative;
    margin-block: 130px;
    background: #F6F3EF;
    .ocean {
        z-index: -1;
        top: -100px;
    }
    .b-side {
        bottom: -100px;
        transform: rotateX(180deg);
        top: unset;
    }
    .wave{
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%231F92D1'/%3E%3C/svg%3E");
    }
    .wave:nth-of-type(2) {
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23F6F3EF'/%3E%3C/svg%3E");
    }
}
.plant-form-feature{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    &:nth-child(2){
        margin-bottom: 0;
    }
}
.plant-form-card{
    width: 178.253px;
    height: 178.253px;
    border-radius: 50%;
    padding: 15px;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: 10px solid #ffffff75;
    transition: 0.5s;
    p{
        color: #000;
        font-family: 'Roboto SemiBlod';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 127.778%;
        margin-bottom: 0;
    }
    &:hover{
        scale: 1.1;
        transform: translateY(-10px);
        box-shadow: 0px 1px 25px 0px #1F92D1;
        img{
            transform: rotateY(180deg);
        }
    }
}
.plant-form-icon{
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    img{
        transition: 0.5s;
    }
}
.solution-needed-card{
    overflow: hidden;
    border-radius: 27px;
    position: relative;
    transition: 0.5s;
    height: 426px;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        inset: 0;
        border-radius: 27px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.63) 0%, rgba(102, 102, 102, 0.00) 100%);
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.solution-needed-slider{
    .slick-slide{
        margin: 0 10px;
    }
    .slick-list{
        margin: 0 -10px;
        border-radius: 25px;
    }
    .slick-arrow {
        width: 49px;
        height: 49px;
        z-index: 1;
        background: #8DA7B5;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        border-radius: 50%;
    }
    .slick-arrow::before {
        content: '';
        width: 10px;
        height: 10px;
        border-top: 1px solid;
        border-left: 1px solid;
        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;
        color: #fff;
    }
    .slick-arrow.slick-prev::before {
        transform: rotate(316deg);
        margin-left: 8px;
    }
    .slick-arrow:hover,
    .slick-arrow:focus {
        background-color: #1F92D1;
    }
}
.hov-text{
    position: absolute;
    width: 100%;
    height: 85%;
    background: transparent;
    left: 0;
    bottom: -80%;
    text-align: center;
    padding: 15px;
    z-index: 2;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    h3{
        color: #FFF;
        font-family: 'Roboto SemiBlod';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 125%;
        text-transform: uppercase;
        margin-bottom: 30px;
        transition: 0.5s;
    }
    p{
        color: #FFF;
        margin-bottom: 0;
    }
}
.solution-needed-card{
    &:hover{
        .hov-text{
            bottom: 0;
            background: #5e923fc4;
            h3{
                margin-bottom: 10px;
            }
        }
    }
}
.approach{
    position: relative;
    margin-block: 60px;
    border-radius: 15px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px
    }
    &::before{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        inset: 0;
        background: linear-gradient(180deg, rgba(40, 53, 32, 0.51) 0%, rgba(0, 0, 0, 0.76) 100%);
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: end;
    }
}
.approach-content{
    padding-block: 50px;
    .section-title,p{
        color: #FFF;
    }
}
.faq{
    background: #F3F3F3;
    .dec{
        color: #2C2C2C;
        margin-bottom: 40px;
    }
}
.accordion__item {
    position: relative;
    transition: 0.5s;
    border-radius: 10px;
    border: 1px solid #C0BBBB;
    background: #F2F2F2;
    margin-bottom: 18px;
}
.accordion__item:hover {
    transform: translateY(-5px)
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 18px 26px 18px 26px;
    color: #000;
    font-size: 22px;
    text-decoration: none;
    font-family: 'Roboto Medium';
    border-radius: 3px;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    font-weight: normal;
    background: #ebebeb;
    border: 1px solid #C0BBBB;
    border-radius: 10px;
}
.accordion__title::after {
    content: ' ';
    background-repeat: no-repeat;
    position: absolute;
    width: 10px;
    height: 10px;
    font-size: 30px;
    font-weight: normal;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    rotate: 44deg;
    right: 15px;
    top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after {
    transform: rotate(180deg);
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}
.accordion__item .accordion-active {
    color: #FFF;
    background: #0A487E;
}
.accordion__title.accordion-active{
    border-radius: 10px 10px 0 0;
}
.accordion__item .accordion__title .accordion__arrow {
    position: absolute;
    top: 13px;
    right: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
    background-color: #c9c9c9;
    border-radius: 50%;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out
}
.accordion__item .accordion__content {
    padding: 0 12px;
    padding-left: 0;
    margin-bottom: 0;
    display: none;
    color: #E6E6E6;
    font-family: 'Roboto Regular';
    padding-bottom: 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 177.778%;
    padding: 18px 26px 18px 26px;
    border: 1px solid #666;
    border-radius: 0 0 10px 10px;
}
.product-water-treatment{
    padding-bottom: 160px;
}
.product-footer{
    z-index: 1;
    margin-top: 30px;
}
/* Industries Page */
.we-serve-card{
    h4{
        color: #04457E;
        font-family: 'Purista';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 118.182%;
        text-transform: uppercase;
    }
    &:hover{
        h4{
            color: #78AF58;
        }
        .we-serve-img{
            img{
                scale: 1.05;
            }
        }
    }
}
.we-serve-img{
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        transition: 0.5s;
    }
}
/* Automotive Industries */
.demo{
    h3{
        color: #005583;
        font-family: 'Roboto SemiBlod';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 130%;
        text-transform: uppercase;
        margin-bottom: 5px;
    }
    ul{
        margin-bottom: 10px;
        li{
            font-size: 18px;
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
            &::before{
                position: absolute;
                content: '';
                left: 0;
                top: 12px;
                width: 6px;
                height: 6px;
                background: #005583;
                border-radius: 50%;
                outline: 2px solid #00558393;
            }
        }
    }
    hr{
        background: #D9D9D9;
        margin-bottom: 10px;
    }
}
.demo-img{
    border-radius: 30px;
    position: relative;
    .demo-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        border-radius: 30px;
    }
}
.demo-shape{
    position: absolute;
    width: 187px;
    height: 187px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    bottom: -50px;
    right: -28px;
    background: #FFF;
    z-index: 2;
    img{
        border-radius: 50%;
        outline: 4px dashed #1F92D1;
        outline-offset: 6px;
    }
}
.automotive-product{
    background: #F0FAFF;
    .section-title{
        margin-bottom: 5px;
    }
    .product-card{
        border: 1px solid #DEDEDE;
        background: #F8FFF4;
        &:hover{
            background: #1F92D1;
            .card-title{
                color: #FFF;
            }
        }
    }
}
.catered{
    ul{
        li{
            position: relative;
            color: #005583;
            font-size: 20px;
            font-family: 'Roboto Medium';
            font-weight: normal;
            font-style: normal;
            line-height: 130%;
            margin-bottom: 25px;
            padding-left: 40px;
            transition: 0.5s;
            &::before{
                position: absolute;
                content: '';
                width: 26px;
                height: 26px;
                background: url(../img/blue-tick.webp);
                background-position: center;
                background-repeat: no-repeat;
                background-size: 100%;
                left: 0;
                top: 0;
            }
            &:hover{
                transform: translateX(10px);    
            }
        }
    }
}
.catered-img{
    border-radius: 20px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        transition: 0.5s;
    }
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.free-consultation{
    .container{
        position: relative;
        background: url(../img/free-consultancy.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 60px;
        border-radius: 40px;
        z-index: 1;
        overflow: hidden;
        border: none;
        &::after{
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            inset: 0;
            background: linear-gradient(270deg, rgba(241, 245, 248, 0.00) 0%, rgba(239, 249, 255, 0.99) 63.18%);
            z-index: -1;
            border-radius: 40px;
            border: none;
        }
    }
}
.free-consultaion-content{
   .section-title{
        font-size: 34px;
        color: #04457E;
        margin-bottom: 20px;
   }
   h4{
        color: #141414;
        font-family: 'Roboto Medium';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 111.111%;
        margin-bottom: 5px;
   }
   hr{
        background: #0484CA;
        margin-bottom: 10px;
   }
   p{
        a{
            color: #141414;
            &:hover{
                color: #5E923F;
            }
    }
   }
}
/* Carrer page */
.core-values{
    position: relative;
    background: #F5FBFE;
    margin-block: 180px;
    .ocean {
        z-index: -1;
        top: -100px;
        .wave:nth-of-type(2) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23F5FBFE'/%3E%3C/svg%3E");
        }
        .wave:nth-of-type(1) {
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 88.7'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%237EBCDE'/%3E%3C/svg%3E");
        }
    }
    .b-side{
        bottom: -100px;
        transform: rotateX(180deg);
        top: unset;
    }
    .col-lg-3:nth-child(4){
        .cre-value-card{
            border-right: none;
        }
    }
}
.core-value-icon{
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1F92D1;
    border-radius: 50%;
    outline: 1px dashed #1F92D1;
    outline-offset: 5px;
    margin-bottom: 20px;
}
.core-value-text{
    h4{
        color: #005583;
        font-family: 'Purista';
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 141.667%;  
        text-transform: uppercase;
        margin-bottom: 10px;
    }
}
.cre-value-card{
    height: 100%;
    border-right: 1px solid #D9D9D9;
    transition: 0.5s;
    &:hover{
        transform: translateY(-10px);
        .core-value-icon{
            img{
                transform: rotateY(180deg);
            }
        }
    }
}
.apply-now{
    .section-title{
        font-size: 40px;
    }
    .container{
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        position: relative;
    }
    .apply-now-img{
        position: absolute;
        width: 655px;
        height: auto;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 20px;
        overflow: hidden;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin-bottom: -10px;
            transition: 0.5s;
        }
        &:hover{
            img{
                scale: 1.1;
            }
        }
    }
    .col-lg-7{
        border-radius: 20px;
        background: #FFF;
        box-shadow: 0 14px 39px 0 rgba(0, 0, 0, 0.11);
        padding: 40px 30px 30px 150px;
    }
    .title{
        color: #1F92D1;
        font-family: 'Roboto SemiBlod';
        font-size: 22px;
        font-style: normal;
        font-weight: normal;
        line-height: 154.545%;
        text-transform: uppercase;
    }
    .form-group{
        margin-bottom: 30px;
        flex-direction: column;
        align-items: start;
    }
    .form-control{
        padding: 16px;
        color: #797575;
        font-family: 'Roboto Regular';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 166.667%;
    }
    form{
        label{
            color: #404040;
            font-family: 'Roboto Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 38.889%;
            text-transform: uppercase;
        }
        .btn-group{
            justify-content: start;
        }
        .upload-group{
            display: flex;
            align-items: center;
            border-radius: 6px;
            border: 1px dashed #B7B7B7;
            background: linear-gradient(180deg, #E8E8E8 0%, #D7D7D7 100%);
            padding: 15px 10px;
            cursor: pointer;
            margin-bottom: 20px;
            justify-content: center;
            &:hover{
                background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
            }
        }
        .upload-icon {
            width: 36px;
            height: 36px;
            margin-right: 10px;
        }
        .upload-text {
            color: #515151;
            font-family: 'Roboto Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 120.889%;
            text-transform: uppercase;
        }
        input[type="file"] {
            display: none;
        }
    }
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .banner-slider {
        .slick-dots {
            padding-left: 160px;
        }
    }
    .counter {
        width: 470px;
        padding: 70px 50px 70px 90px;
    }
    .counter-item {
        .number, span {
            font-size: 48px;
        }
    }
    .management-card {
        width: 340px;
        p{
            font-size: 19px;
        }
        .management-card-layer{
            width: 340px;
        }
    }
    .management-solution .row .col-lg-3:nth-child(1) {
    & .col-lg-12:nth-child(2), & .col-lg-12:nth-child(3), & .col-lg-12:nth-child(4) {
        .management-card {
            transform: translatex(33px);
        }
    }
}
 .unique-selling-boy {
        left: 32px;
        bottom: 43px;
        width: 470.753px;
        height: 470.753px;
    }
}
@media (max-width: 1440px),
(max-width: 1366px){
    .fixed-btn {
        top: 35%;
    }
    .fixed-contact{
        bottom: 5%;
    }
    .primary-btn{
        font-size: 13px;
        padding: 10px 20px;
        padding-left: 50px;
        img{
            width: 24%;
            height: auto;
            right: 74%;
        }
        &:hover{
            padding-left: 20px;
            padding-right: 50px;
        }
    }
    p{
        font-size: 16px;
    }
    .section-title{
        font-size: 40px;
    }
    .section-sub-title{
        font-size: 15px;
        img{
            width: 5%;
            height: auto;
        }
    }
    form .primary-btn{
        padding: 8px 40px 8px 50px;
        background-size: 26%;
        background-position: 3%;
        &:hover{
            padding: 8px 50px 8px 40px;
            background-position: 97%;
        }
    }
    .title{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .form-control{
        padding: 12px 10px;
        &::placeholder{
            font-size: 13px;
        }
    }
    .logo {
        width: 120px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 16px;
        padding: 8px 2px;
    }
    .main-menu{
        gap: 20px;
    }
    #menu>.main-menu>ul>li{
        padding-inline: 10px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 9px;
    }
    #menu ul ul li a {
        font-size: 16px;
    }
    #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 {
        &::after {
            left: 15px;
        }
    }
    header {
        padding-block: 5px;
    }
    header.sticky{
        padding-block: 7px;
    }
    .flex-box{
        .primary-btn{
            padding: 7px 25px;
        }
    }
    .banner-content{
        margin-bottom: 100px;
        width: 50%;
        h1{
            font-size: 46px;
        }
        h5{
            font-size: 23px;
        }
        p{
            font-size: 17px;
        }
    }
    .banner-slider{
        .slick-dots{
            bottom: 250px;
            padding-left: 140px;
        }
    }
    .counter{
        height: 610px;
        width: 420px;
    }
    .counter-item {
        padding-block: 20px;
        .number, span {
            font-size: 38px;
        }
        p{
            font-size: 20px;
        }
    }
    .img-under-text {
        p {
            font-size: 20px;
        }
    }
    .partner-content {
        width: 1330px;
        padding: 20px 40px;
        .section-title {
            font-size: 28px;
            margin-bottom: 15px;
        }
    }
    .partner-item{
        height: 150px;
        margin-block: 20px;
        img{
            width: 40%;
        }
    }
    .product-card-text {
        h4 {
            font-size: 22px;
            margin-bottom: 8px;
        }
    }
    .management-solution-img{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
        img{
            width: 90%;
            height: auto;
        }
    }
    .management-card{
        width: 300px;
        height: 80px;
        p{
            font-size: 17px;
        }
        .management-card-layer{
            width: 300px;
            height: 60px;
        }
        .circle {
            position: absolute;
            width: 66px;
            height: 66px;
            .circle-number{
                width: 53px;
                height: 52px;
                right: 6px;
            }
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        & .col-lg-12:nth-child(2), & .col-lg-12:nth-child(3), & .col-lg-12:nth-child(4) {
            .management-card {
                transform: translatex(-5px);
            }
        }
    }
    .why-choose-card {
        h5 {
            font-size: 19px;
        }
        p{
            font-size: 15px
        }
        .why-choose-icon{
            width: 93px;
            height: 93px;
        }
    }
    .market-seg-content {
        .primary-btn {
            img {
                width: 24%;
                height: auto;
            }
        }
        .market-seg-text {
            padding: 50px 30px;
            .market-seg-icon {
                width: 96px;
                height: 96px;
                padding: 22px;
            }
            h4 {
                font-size: 50px;
            }
        }
    }
    .featured-blog-text {
        span{
            font-size: 15px;
            margin-bottom: 0;
        }
        h5 {
            font-size: 22px;
            margin-bottom: 7px;
        }
    }
    .side-blog-content {
        
        margin-bottom: 20px;
        .featured-blog-text {
            h5 {
                font-size: 20px;
            }
        }
        .side-blog-img{
            width: 44%;
            height: auto;
        }
    }
    .water-treatment {
        .section-title {
            font-size: 46px;
            margin-bottom: 15px;
        }
        p{
            font-size: 17px;
        }
    }
    .market-seg-card {
        top: 90px;
    }
    .market-seg-grid {
        .market-seg-card:nth-child(2) {
            top: 110px;
        }
        .market-seg-card:nth-child(3) {
            top: 130px;
        }
    }
    .contact-us {
        .section-title {
            margin-bottom: 30px;
        }
        .contact-form{
            .form-control{
                padding: 16px 10px;
            }
        }
    }
    .contact-list {
        margin-bottom: 10px;
        p{
            margin: 0;
        }
    }
    footer{
        .footer-title{
            font-size: 20px;
            margin-bottom: 10px;
        }
        ul li {
            margin-block: 10px;
        }
    }
    .inner-banner{
        .banner-content{
            margin-bottom: 0;
        }
    }
    .blog-date {
        font-size: 16px;
    }
    .featured-blog-text{
        .blog-btn{
            font-size: 16px;
            img{
                height: 25px;
                width: auto;
            }
        }
    }
    .features{
        font-size: 16px;
    }
    .blog-details {
        h1 {
            font-size: 46px;
            margin-bottom: 10px;
        }
        .features {
            margin-bottom: 30px;
        }
        .blog-date {
            margin-bottom: 20px;
        }
        h2{
            font-size: 32px;
        }
    }
    .side-blog-card {
        img {
            width: 75px;
            height: 70px;
        }
    }
    .side-blog {
        h3 {
            font-size: 16px;
        }
        ul{
            li{
                margin-block: 25px;
                a{
                    font-size: 16px;
                }
            }
        }
    }
    .side-blog-card-text{
        width: 90%;
        h5{
            margin-bottom: 10px;
            font-size: 15px;
        }
        .blog-date{
            font-size: 15px;
            margin-bottom: 0;
        }
    }
    .related {
        h3 {
            font-size: 26px;
        }
    }
    .con-form {
        .contact-info {
            .logo {
                width: 120px;
                margin-bottom: 5px;
            }
        }
        .contact-info {
            padding: 25px;
            h3{
                font-size: 25px;
            }
            h5 {
                font-size: 18px;
                margin-bottom: 7px;
            }
        }
    }
    .map {
        .section-title {
            font-size: 24px;
            margin-bottom: 15px;
        }
        iframe {
            height: 417px;
        }
    }
    .who-we-are-img {
        .blur-tag {
            font-size: 19px;
            width: 490px;
        }
    }
    .about-counter {
        .counter-item {
            .number, span{
                font-size: 32px;
            }
            p {
                font-size: 18px;
            }
        }
    }
    .miss-viss-box {
        h3 {
            font-size: 26px;
        }
    }
    .about-partner{
        .partner-item {
            img {
                width: 40%;
            }
        }
    }
    .who-we-are-img {
        .blur-tag {
            font-size: 17px;
            width: 440px;
        }
    }
    .about-counter {
        .counter {
            top: unset;
            background: transparent;
            .counter-item{
                justify-content: start;
                .number, span {
                    font-size: 28px;
                }
                p{
                    font-size: 18px;
                }
                .counter-icon {
                    width: 65px;
                    height: 65px;
                }
            }
        }
    }
    .miss-viss-box {
        padding: 25px;
        h3 {
            font-size: 22px;
        }
        img {
            margin-bottom: 15px;
            width: 23%;
        }
    }
    .we-serve-card {
        h4 {
            font-size: 18px;
        }
    }
    .demo {
        h3 {
            font-size: 18px;
        }
        & ul {
            li {
                font-size: 16px;
                line-height: 25px;
                padding-left: 15px;
            }
        }
    }
    .demo-shape{
        width: 150px;
        height: 150px;
        padding: 35px;
    }
    .catered {
        ul {
            li {
                font-size: 18px;
                margin-bottom: 20px;
                padding-left: 30px;
                &::before {
                    width: 18px;
                    height: 18px;
                    top: 3px;
                }

            }
        }
    }
    .free-consultation {
        .container {
            padding: 50px;
        }
    }
    .free-consultaion-content {
        .section-title {
            font-size: 28px;
            margin-bottom: 15px;
        }
        h4{
            font-size: 16px;
        }
    }
    .core-values {
        margin-block: 110px;
    }
    .cre-value-card{
        padding-right: 7px;
    }
    .core-value-text {
        h4 {
            font-size: 20px;
            margin-bottom: 5px;
        }
    }
    .core-value-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 15px;
    }
    .apply-now {
        .section-title {
            font-size: 30px;
        }
        .title {
            font-size: 18px;
        }
        .form-group{
            margin-bottom: 20px;
        }
        form {
            label {
                font-size: 15px;
            }
            .form-control{
                padding: 10px;
                font-size: 16px;
            }
            .upload-text {
                font-size: 14px;
            }
            .upload-group{
                padding: 14px;
                margin-bottom: 15px;
            }
            .upload-icon {
                width: 24px;
                height: 24px;
                margin-right: 8px;
            }
        }
        .apply-now-img {
            width: 580px;
        }
    }
    .solution-needed-card{
        height: 350px;
    }
    .unique-selling-boy {
        left: 26px;
        bottom: 37px;
        width: 370.753px;
        height: 370.753px;
    }
    .unique-selling-text {
        & ul {
            gap: 7px;
            li {
                font-size: 15px;
                padding-block: 5px;
                padding-left: 30px;
                &::before {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
    .key-market-card {
        height: 135px;
        .key-market-icon{
            width: 55px;
            height: 55px;
        }
        & p {
            font-size: 15px;
        }
    }
    .plant-form-icon {
        width: 60px;
        height: 50px;
    }
    .plant-form-card {
        width: 158.253px;
        height: 158.253px;
        p {
            font-size: 15px;
        }
    }
    .plant-work-text {
        h4 {
            font-size: 18px;
        }
    }
    .plant-work-icon {
        width: 75px;
        height: 75px;
    }
    .hov-text{
        bottom: -77%;
        h3{
            font-size: 17px;
        }
        p{
            font-size: 15px;
        }
    }
    .accordion__item{
        margin-bottom: 10px;
    }
    .accordion__item .accordion__title {
        font-size: 18px;
        padding: 12px 16px 12px 20px;
    }
    .accordion__item .accordion__content {
        font-size: 16px;
        padding: 12px 16px 12px 20px;
    }
    .accordion__title::after {
        top: 18px;
    }
    .world-class {
        .container {
            padding: 40px;
        }
    }
    .application-text {
        h3 {
            font-size: 28px;
        }
    }
    .blog-details-img {
        width: 1115px;
        height: 378px;
    }
}
@media (max-width: 1440px){
    .counter{
        height: 650px;
    }
}
@media (max-width: 1366px) {
    .counter{
        height: 600px;
    }
}
@media (max-width: 992px){
    #menu .main-menu ul ul li a{
        color: #000;
    }
    .fixed-btn{
        right: -5px;
    }
    .sec-gap{
        padding: 30px 0;
    }
    .section-sub-title {
        font-size: 14px;
        img{
            width: 4%;
        }
    }
    .section-title{
        font-size: 30px;
    }
    #menu>.main-menu>ul>li>a {
        padding: 20px 30px;
    }
    #menu>.main-menu>ul>li {
        padding-inline: 0;
    }
    .flex-box {
        .primary-btn {
            color: #FFF;
            border-color: #FFF;
            &:hover{
                color: #ed7422;
                border-color: #ed7422;

            }
        }
    }
    .banner-item{
        height: 700px;
    }
    .banner-item::after {
        background: linear-gradient(90deg, #D1E3F6 0%, rgba(200, 223, 245, 0.00) 100%);
    }
    .banner-item::before{
        background: linear-gradient(90deg, #EEF6FF 0%, rgba(200, 223, 245, 0.00) 100%);
    }
    .banner-content{
        width: 85%;
        h5{
            font-size: 20px;
            margin-bottom: 5px;
        }
        h1{
            font-size: 38px;
            line-height: 44px;
            margin-bottom: 5px;
        }
        p{
            font-size: 15px;
        }
    }
    .banner-slider {
        .slick-dots {
            padding-left: 65px;
        }
    }
    .who-we-are{
        .row{
            .col-lg-5:nth-child(2){
                order: -1;
            }
        }
    }
    .counter {
        top: 15px;
        height: 503px;
        padding: 40px 40px 40px 110px;
        border-radius: 36px;
        .counter-item {
            padding-block: 20px;
            .number, span {
                font-size: 34px;
            }
            p{
                font-size: 19px;
            }
        }
    }
    .img-under-text {
        p{
            font-size: 15px
        }
        .section-title {
            img {
                width: 31.583px;
                height: 31px;
                aspect-ratio: 31.58 / 31;
            }
        }
    }
    .partner-content {
        width: 97%;
        padding: 20px 30px;
        border-radius: 26px;
        .section-title{
            font-size: 24px;
        }
    }
    .partner-slider {
        .slick-list {
            padding-inline: 0px;
        }
    }
    .product{
        .row{
            .col-lg-4:nth-child(3){
                .product-card{
                    margin-top: 10px;
                }
            }
        }
    }
    .product-card {
        border-radius: 25px;
    }
    .product-card-img {
        margin-bottom: 10px;
        border-radius: 25px;
        img{
            border-radius: 20px;
        }
    }
    .product-card-text {
        h4 {
            font-size: 24px;
            margin-bottom: 8px;
        }
        p{
            line-height: 146.667%;
        }
        .btn-group{
            margin-bottom: -30px;
        }
    }
    .management-solution{
        .section-title{
            margin-bottom: 10px;
        }
    }
    .management-solution .row .col-lg-6:nth-child(2){
        display: none;
    }
    .management-card{
        transform: translateX(25px);
        margin-block: 20px;
    }
    .management-solution .row .col-lg-3:nth-child(1) {
        & .col-lg-12:nth-child(2), & .col-lg-12:nth-child(3), & .col-lg-12:nth-child(4) {
            .management-card {
                transform: translatex(25px);
            }
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        .management-card {
            transform: translateX(50px);
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        & .col-lg-12:nth-child(2), & .col-lg-12:nth-child(3), & .col-lg-12:nth-child(4) {
            .management-card {
                transform: translatex(50px);
            }
        }
    }
    .why-choose{
        padding-bottom: 110px;
    }
    .why-choose-content {
        background: transparent;
    }
    .why-choose-card {
        position: relative;
        text-align: center;
        margin-block: 20px;
        padding-right: 0px;
        padding-top: 110px;
        .why-choose-icon{
            width: 84px;
            height: 84px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .why-choose-content .row .col-lg-4:nth-child(1) {
        & .col-lg-12:nth-child(1), & .col-lg-12:nth-child(3) {
            .why-choose-card {
                transform: unset;
            }
        }
    }
    .why-choose-content .row .col-lg-4:nth-child(3) {
       .why-choose-card {
            transform: unset;
            text-align: center;
            padding-left: 0;
        }
        .col-lg-12:nth-child(1), & .col-lg-12:nth-child(3) {
            .why-choose-card {
                transform: unset;
            }
        }
    }
    .why-choose-content .row .col-lg-4:nth-child(3) {
        .why-choose-icon {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }
    }
    .market-seg-content {
        height: 450px;
        .market-seg-text {
            h4 {
                font-size: 42px;
            }
            .market-seg-icon {
                width: 86px;
                height: 86px;
            }
        }
    }
    .testimonial {
        margin-block: 120px;
    }
    .featured-blogs{
        padding-bottom: 110px;
        .blog-btn{
            font-size: 16px;
        }
    }
    .water-treatment{
        text-align: center;
        .btn-group{
            justify-content: center;
        }
        .water-treatment-img{
            width: 20%;
        }
        .section-title{
            font-size: 41px;
        }
    }
    .contact-info{
        box-shadow: 0px 60px 0 0px #E8EFEB;
        border-radius: 42px 42px 0 0;
        padding: 30px;
    }
    .form-control {
        padding: 14px 10px;
    }
    footer{
        padding-block: 30px;
        .row{
            .col-md-10{
                text-align: center;
                margin: auto;
                .logo{
                    margin: auto;
                }
                .social-links{
                    justify-content: center;
                }
            }
        }
        .copyright{
            flex-direction: column;
            justify-content: center;
        }
    }
    .inner-banner::after {
                background: linear-gradient(90deg, #D1E3F6 0%, rgb(200 223 245 / 43%) 50%);
    }
    .inner-banner{
        .banner-content {
            width: 60%;
        }
    }
    .blog-date {
        font-size: 15px;
    }
    .features {
        font-size: 15px;
    }
    .blog-details {
        h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        h2 {
            font-size: 28px;
        }
    }
    .side-blog{
        margin-top: 0;
    }
    .side-blog-card-text {
        h5 {
            font-size: 17px;
        }
    }
    .featured-blog-img {
        margin-bottom: 10px;
    }
    .con-form {
        & .contact-info {
            padding: 20px;
            h3 {
                font-size: 22px;
            }
            h5 {
                font-size: 17px;
            }
        }
    }
    .map {
        .section-title {
            font-size: 22px;
            margin-bottom: 10px;
        }
        iframe {
            height: 317px;
        }
    }
    .we-serve-img {
        margin-bottom: 10px;
    }
    .demo {
        h3 {
            font-size: 17px;
        }
    }
    .demo-shape {
        bottom: -22px;
        width: 120px;
        height: 120px;
    }
    .catered {
        & ul {
            li {
                font-size: 17px;
            }
        }
    }
    .free-consultation {
        .container {
            padding: 30px;
        }
        .section-title {
            font-size: 24px;
            margin-bottom: 10px;
        }
    }
    .core-values {
        & .col-lg-3:nth-child(2) {
            .cre-value-card {
                border-right: none;
            }
        }
    }
    .core-value-text {
        h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
    }
    .core-value-icon {
        width: 54px;
        height: 54px;
        padding: 10px;
    }
    .apply-now {
        .apply-now-img {
            position: relative;
            width: 100%;
            margin-bottom: -315px;
            margin-top: 280px;
        }
        .col-lg-7 {
            padding: 40px 30px 30px 30px;
        }
        form {
            .upload-group {
                margin-bottom: 15px;
            }
        }
    }
    .blog-details-img {
        width: 694px;
        height: 240px;
    }
    .world-class {
        .container {
            padding: 30px;
        }
    }
    .plant-work-card{
        margin-bottom: 13px;
    }
    .application-slider{
        .application-item{
            padding: 30px;
            .row{
                .col-lg-5{
                    order: -1;
                }
            }
        }
    }
    .unique-selling {
        margin-inline: 30px;
        .unique-selling-text{
            padding-inline: 20px;
            & ul {
                gap: 5px;
            }
        }
        .unique-selling-img{
            display: flex;
            justify-content: center;
            .unique-selling-bg{
                width: 70%;
                height: auto;
            }
        }
    }
    .unique-selling-boy {
        left: 50%;
        transform: translateX(-50%);
        width: 410.753px;
        height: 410.753px;
    }
    .key-market-content{
        justify-content: center;
    }
    .key-market-card{
        width: 16.6%;
    }
    .plant-form-icon{
        width: 41px;
        height: 30px;
        margin-bottom: 15px;
    }
    .plant-form-card {
        width: 140.253px;
        height: 140.253px;
    }
    .hov-text {
        bottom: -82%;
        h3 {
            font-size: 15px;
        }
        p{
            line-height: 125.667%;
        }
    }
    .approach{
        margin-block: 0;
    }
    .approach-content {
        padding-block: 0;
    }
    .accordion__item {
        margin-bottom: 8px;
    }
    .accordion__item .accordion__title {
        font-size: 16px;
        padding: 10px 12px 10px 10px;
    }
    .accordion__item .accordion__content {
        font-size: 15px;
        padding: 10px 16px 10px 12px;
    }
    .product-water-treatment{
        padding-bottom: 160px;
    }
    .solution-needed-card {
        height: 300px;
    }
}
@media (max-width: 575px){
    .call{
        width: 40px;
        height: 40px;
        padding: 11px;
    }
    .wp {
        width: 45px;
        height: 45px;
    }
    .fixed-contact{
        right: 0;
    }
    .enquiry-btn{
        font-size: 14px;
    }
    .fixed-btn{
        right: -8px;
    }
    .sec-gap{
        padding: 20px 0;
    }
    p{
        font-size: 14px;
    }
    .section-title {
        font-size: 25px;
        margin-bottom: 5px;
    }
    .section-sub-title {
        img {
            width: 6%;
        }
    }
    .primary-btn {
        font-size: 12px;
        padding: 6px 10px;
        padding-left: 40px;
        &:hover{
            padding: 6px 40px 6px 10px;
        }
    }
    .popup .popup__content{
        width: 90%;
    }
    .right{
        padding: 20px;
    }
    #menu{
        padding-inline: 10px;
    }
    #menu .main-menu {
        top: 60px;
    }
    #menu>.main-menu>ul>li>a {
        padding: 15px;
        font-size: 15px;
    }
    #menu .submenu-button {
        height: 40px;
        width: 50px;
        right: 0;
    }
    #menu .submenu-button:after {
        top: 13px;
        right: 17px;
    }
    .flex-box {
        margin-right: 0;
    }
    .hamburger{
        right: 5px;
    }
    .logo{
        width: 100px;
    }
    header.sticky {
        #menu .main-menu {
            top: 60px;
        }
    }
    .banner-item {
        height: 500px;
    }
    .banner-content{
        width: 100%;
        margin-bottom: 0;
        h5 {
            font-size: 15px;
        }
        h1{
            font-size: 28px;
            line-height: 30px;
        }
        p{
            font-size: 14px;
            line-height: 138.105%;
        }
    }
    .banner-slider {
        .slick-dots {
            padding-left: 20px;
            bottom: 125px;
        }
    }
    .ocean{
        bottom: -55px;
        .wave{
            width: 200%;
            background-repeat: no-repeat;
        }
    }
    .counter{
        top: -41px;
        width: 100%;
        padding: 5px 30px;
        height: 270px;
        border-radius: 16px;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        .counter-item{
            width: 45%;
            margin-block: 10px;
            padding-block: 10px;
            .number, span {
                font-size: 26px;
            }
            p{
                font-size: 16px;
                margin-bottom: 0;
            }
        }
    }
    .who-we-are{
        .container{
            margin-top: -65px;
        }
        .who-we-are-img{
            border-radius: 20px;
            img{
                border-radius: 20px;
            }
        }
    }
    .img-under-text{
        width: 120px;
        .section-title{
            img{
                width: 26.583px;
                height: 26px;
            }
        }
    }
    .partner-content{
        border-radius: 10px;
        padding: 10px;
        .section-title{
            font-size: 20px;
        }
    }
    .partner-item{
        height: 120px;
        margin-block: 10px;
        img{
            width: 50%;
        }
    }
    .product {
        .section-title {
            margin-bottom: 10px;
        }
    }
    .product-card{
        border-radius: 12px;
    }
    .product-card-img{
        border-radius: 10px;
        img{
            border-radius: 10px;
        }
    }
    .product-card-text {
        h4{
            font-size: 20px;
        }
        .btn-group {
            margin-bottom: -27px;
        }
    }
    .product {
        & .row {
            & .col-lg-4:nth-child(3) {
                .product-card {
                    margin-top: 0;
                }
            }
        }
    }
    .management-card {
        width: 85%;
        height: 100px;
        margin-bottom: 60px;
        p {
            font-size: 15px;
            text-align: center;
        }
        .management-card-layer {
            width: 100%;
            height: 100%;
            padding: 5px;
        }
        .circle{
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 55px;
            height: 55px;
            .circle-number{
                width: 41px;
                height: 42px;
                right: 7px;
                p{
                    font-size: 24px;
                }
            }
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        .management-card {
            transform: unset;
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        & .col-lg-12:nth-child(2), & .col-lg-12:nth-child(3), & .col-lg-12:nth-child(4) {
            .management-card {
                transform: unset;
            }
        }
    }
    .management-solution .row .col-lg-3:nth-child(3) {
        & .management-card {
            .circle {
                right: unset;
                left: 50%;
                top: -50px;
                transform: translateX(-50%);
            }
        }
    }
    .management-solution .row .col-lg-3:nth-child(1),
    .management-solution .row .col-lg-3:nth-child(3){
        .col-lg-12:nth-child(5){
            .management-card{
                margin-bottom: 0;
            }
        }
    }
    .management-solution {
        margin-block: 80px;
        .ocean {
            height: 60px;
            top: -60px;
        }
        .b-side{
            bottom: -50px;
            top: unset;
        }
        .section-title{
            margin-bottom: 50px;
        }
    }
    .why-choose-card {
        padding-top: 87px;
        margin-block: 10px;
        .why-choose-icon {
            width: 64px;
            height: 64px;
            top: 10px;
        }
        h5{
            font-size: 17px;
        }
        p{
            font-size: 14px
        }
    }
        .why-choose {
        padding-bottom: 65px;
    }
    .market-seg-card{
        top: 90px;
    }
    .market-seg-content {
        border-radius: 20px;
        .market-seg-text {
            padding: 30px;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            h4{
                font-size: 36px;
            }
            .market-seg-icon {
                width: 66px;
                height: 66px;
                padding: 12px;
            }
        }
        &::before{
                border-radius: 20px;
            }
    }
    .market-seg-grid {
        .market-seg-card:nth-child(2) {
            top: 110px;
        }
        .market-seg-card:nth-child(3) {
            top: 130px;
        }
    }
    .market-seg-content {
        .market-seg-text-left {
            width: 100%;
        }
    }
    .testimonial{
        margin-block: 40px;
        .ocean{
            height: 50px;
            top: -45px;
            .wave{
                background-repeat: no-repeat;
            }
        }
        .b-side {
            bottom: -45px;
            top: unset;
        }
    }
    .featured-blogs {
        padding-bottom: 60px;
        .blog-btn {
            font-size: 14px;
            margin-top: 5px;
        }
    }
    .featured-blog-text {
        h5 {
            font-size: 20px;
        }
    }
    .side-blog-content {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 5px;
        .side-blog-img{
            width: 100%;
        }
        .featured-blog-text {
            width: 100%;
            h5{
                font-size: 19px;
            }
        }
        .date{
            font-size: 15px;
        }
    }
    .featured-blog-img{
        border-radius: 10px;
    }
    .water-treatment {
        .section-title {
            font-size: 28px;
            margin-bottom: 5px;
        }
        p{
            font-size: 15px;
        }
    }
    .title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .form-control{
        padding: 12px 8px;
        &::placeholder{
            font-size: 14px;
        }
    }
    .contact-us {
        .section-title {
            margin-bottom: 10px;
        }
        .contact-form {
            padding: 20px;
            border-radius: 20px;
            .form-control {
                padding: 12px 10px;
            }
        }
    }
    .contact-info{
        padding: 20px;
        border-radius: 20px;
    }
    footer{
        text-align: center;
        margin-top: 40px;
        padding-block: 20px;
        .ocean{
            height: 30px;
            top: -28px;
        }
        p, a {
            font-size: 15px;
        }
        .footer-title {
            font-size: 17px;
            margin-bottom: 6px;
        }
        ul li{
            margin-block: 0px;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            .copyright-content {
                padding-inline: 8px;
            }
        }
    }
    .certificate {
        justify-content: center;
    }
    .inner-banner {
        height: 250px;
    }
    .inner-banner {
        .banner-content {
            width: 80%;
        }
    }
    .inner-banner::after {
        background: linear-gradient(90deg, #D1E3F6 0%, rgb(200 223 245 / 72%) 50%);
    }
    .blog-date {
        font-size: 14px;
    }
    .features {
        font-size: 13px;
        line-height: 46.909%;
        border-radius: 5px 0 0 5px;
    }
    .featured-blog-text {
        .blog-btn {
            font-size: 15px;
            img{
                height: 20px;
            }
        }
    }
    .blog-details {
        padding-top: 0;
        h1 {
            font-size: 20px;
        }
        .blog-date {
            margin-bottom: 15px;
        }
        h2 {
            font-size: 18px;
        }
    }
    .side-blog {
        padding: 20px 10px;
        & ul {
            & li {
                a {
                    font-size: 15px;
                }
            }
        }
    }
    .side-blog-card {
        h5 {
            font-size: 16px;
        }
    }
    .side-blog-card-text {
        .blog-date {
            font-size: 13px;
        }
    }
    .related {
        h3 {
            font-size: 22px;
        }
    }
    .con-form {
        & .contact-info {
            padding: 15px;
            h3 {
                font-size: 20px;
            }
            h5 {
                font-size: 15px;
            }
        }
    }
    .map {
        .section-title {
            font-size: 20px;
        }
        iframe {
            height: 217px;
        }
    }
    .about-who-we-are{
        .container{
            margin-top: 0;
        }
    }
    .who-we-are-img {
        .blur-tag {
            font-size: 15px;
            width: 304px;
            line-height: 17px;
        }
    }
    .about-counter {
        & .counter {
            .counter-item {
                width: 100%;
                justify-content: center;
                flex-direction: column;
                text-align: center;
                gap: 5px;
                .number, span{
                    font-size: 20px;
                }
                .counter-icon {
                    width: 55px;
                    height: 55px;
                }
                p{
                    font-size: 15px;
                }
            }
        }
    }
    .miss-viss-box {
        padding: 15px;
        img {
            margin-bottom: 5px;
            width: 16%;
        }
        h3 {
            font-size: 19px;
            margin-bottom: 5px;
        }
    }
    .we-serve-card {
        h4 {
            font-size: 16px;
        }
        p{
            margin-bottom: 8px;
        }
    }
    .demo-img {
        .demo-bg{
            border-radius: 15px;
        }
    }
    .demo {
        h3 {
            font-size: 16px;
        }
        ul {
            li {
                font-size: 14px;
                line-height: 20px;
                &::before {
                    top: 8px;
                }
            }
        }
    }
    .demo-shape {
        bottom: -15px;
        width: 90px;
        height: 90px;
        padding: 28px;
        right: -13px;
        img{
            outline-width: 3px;
        }
    }
    .catered {
        & ul {
            li {
                font-size: 15px;
                padding-left: 25px;
                margin-bottom: 15px;
                &::before {
                    width: 14px;
                    height: 14px;
                    top: 2px;
                }
            }
        }
    }
    .free-consultation {
        .container {
            padding: 20px;
            background-position: 73%;
            border-radius: 20px;
            &::after{
                border-radius: 20px;
            }
        }
        .section-title {
            font-size: 20px;
        }
        h4, p {
            font-size: 14px;
        }
        p{
            margin-bottom: 8px;
        }
    }
    .core-values{
        margin-block: 60px;
        .ocean {
            height: 50px;
            top: -45px;
        }
        .b-side{
            top: unset;
            bottom: -48px;
        }
    }
    .cre-value-card {
        text-align: center;
        background: #1f92d12e;
        padding: 15px;
        border-radius: 10px;
    }
    .core-value-icon{
        margin-inline: auto;
    }
    .core-value-text {
        h4 {
            font-size: 16px;
        }
        p{
            margin-bottom: 0;
        }
    }
    .apply-now {
        .section-title {
            font-size: 24px;
        }
        .title {
            font-size: 16px;
        }
        .apply-now-img {
            margin-top: 140px;
            margin-bottom: -140px;
        }
        .col-lg-7 {
            padding: 15px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        form {
            label {
                font-size: 13px;
            }
            .form-control {
                padding: 9px;
                font-size: 14px;
            }
        }
    }
    .world-class {
        .container {
            padding: 15px;
            border-radius: 10px;
        }
    }
    .plant-work{
        margin-block: 70px;
        .ocean {
            height: 50px;
            top: -45px;
        }
        .b-side {
            top: unset;
            bottom: -48px;
        }
    }
    .plant-work-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
        outline-width: 5px;
    }
    .plant-work-text {
        h4 {
            font-size: 16px;
        }
    }
    .plant-work-card {
        margin-bottom: 10px;
        padding: 10px;
    }
    .application{
        padding-inline: 20px;
    }
    .application-slider {
        .application-item {
            padding: 15px;
        }
    }
    .application-text{
        h3{
            font-size: 22px;
        }
    }
    .unique-selling {
        margin-inline: 5px;
        border-radius: 20px;
    }
    .unique-selling-boy {
        width: 220.753px;
        height: 220.753px;
        bottom: 10px;
    }
    .unique-selling-text {
        & ul {
            & li {
                width: 100%;
                font-size: 14px;
                padding-left: 25px;
                &::before {
                    width: 15px;
                    height: 15px;
                    top: 22%;
                }
            }
        }
    }
    .key-market-card {
        width: 49.6%;
        & p {
            font-size: 14px;
        }
        .key-market-icon{
            width: 50px;
            height: 50px;
        }
    }
    .plant-form{
        margin-block: 90px;
        .ocean {
            height: 50px;
            top: -45px;
        }
        .b-side {
            top: unset;
            bottom: -48px;
        }
    }
    .plant-form-card {
        outline-width: 7px;
        p {
            font-size: 14px;
        }
    }
    .plant-form-feature{
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px
    }
        .solution-needed-slider{
        .slick-list{
            border-radius: 10px;
        }
        .slick-arrow {
            width: 35px;
            height: 35px;
        }
        .slick-next {
            right: -10px;
        }
        .slick-prev {
            left: -10px;
        }
    }
    .solution-needed-card {
        height: 400px;
        border-radius: 10px;
        &::after{
            border-radius: 10px;
        }
    }
    .hov-text{
        padding: 30px;
    }
    .approach {
        margin-block: 0;
        height: 420px;
    }
    .approach-content{
        text-align: center;
        p{
            line-height: 147.667%;
        }
    }
    .faq {
        .dec {
            margin-bottom: 15px;
        }
    }
    .accordion__item .accordion__title {
        font-size: 15px;
        padding: 10px 30px 10px 10px;
        line-height: 150%;
    }
    .accordion__title::after{
        top: 13px;
    }
    .accordion__title.accordion-active::after{
        top: 19px;
    }
    .product-water-treatment{
        padding-bottom: 70px;
    }
    .product-footer {
        z-index: 1;
        margin-top: -15px;
    }
    .apply-now {
        & form {
            .upload-group {
                padding: 12px;
            }
        }
    }
    .blog-details-img {
        width: 351px;
        height: 140px;
    }
    .hov-text{
        p{
            line-height: 150.667%;
        }
    }
}