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

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

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

html::-webkit-scrollbar-thumb {
    background-color: #1062D2;
    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: #3F3F3F;
    font-family: 'Robert Trial Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}

a,
a:hover,
a:focus {
    color: #40C351;
    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: 'ABC Diatype';
    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: #1062D2;
    transition: all .5s;
    z-index: 9;
    cursor: pointer;
}

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

.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(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../img/product1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    padding: 30px;
    text-align: left;
    background: linear-gradient(180deg, #F1FDEB 56.06%, #F6FDF4 100%);
}
.fixed-contact{
    position: fixed;
    right: 30px;
    bottom: 15%;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    a{
        &:hover{
            scale: 1.1;
        }
    }
}
.call{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #40C351;
    border-radius: 50%;
}
.wp{
    width: 58px;
    height: 58px;
}
.video-testimonials{
	.testi-bg {
    position: relative;
}
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
p {
    color: #3F3F3F;
    font-family: "Robert Trial Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
}
.title {
    color: #1062D2;
    font-family: 'ABC Diatype';
    font-size: 38px;
    font-style: normal;
    font-weight: normal;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title {
    color: #272727;
    font-family: "ABC Diatype";
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    line-height:  110%;
    margin-bottom: 15px;
}
.section-sub-title{
    color: #22A754;
    font-family: "Robert Trial Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 116.667%;
    margin-bottom: 10px;
}
.dec{
    color: #3F3F3F;
    font-family: "Robert Trial Regular";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 112.5%;
}
.btn-group{
    display: flex;
    align-items: center;
	column-gap: 10px;
}
.primary-btn {
    color: #FFF;
    font-family: 'Robert Trial Medium';
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 78.947%;
    white-space: nowrap;
    padding: 25px 21px;
    border-radius: 16px;
    background: linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    background: linear-gradient(270deg, #22A754 73.59%, #1062D2 106.28%);
    z-index: -1;
    transition: all .35s;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 53%;
    scale: 0 1;
    transform-origin: left;
}
.primary-btn:before {
    bottom: 0;
    top: auto;
    scale: 0 1;
    transform-origin: right;
}

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

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

.primary-btn:hover {
    color: #ffffff;
    img{
        transform: rotate(45deg)
    }
}

.primary-btn:focus {
    color: #fff;
}
.secondary-btn{
    background: transparent;
    border: 1px solid #22A754;
    color: #262626;
    img{
        filter: brightness(0) saturate(100%) invert(11%) sepia(0%) saturate(273%) hue-rotate(143deg) brightness(92%) contrast(89%);
        transition: 0.5s;
    }
    &:hover{
        img{
            filter: unset;
        }
    }
}
.form-control {
    font-family: 'Robert Trial Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: normal;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 13px 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    width: 100%;
    outline: none;
    border-radius: 10px;
    border: 1px solid #A2A2A2;
    background: rgba(187, 187, 187, 0.10);
}
.form-control::placeholder{
    font-family: 'Robert Trial Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
}
form label{
    color: #343434;
    font-family: 'Robert Trial Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 140%;
}
.form-control:focus {
    border-color: #1062D2;
}
form .primary-btn {
    border: 0;
    background: url(../img/btn-arrow.webp), linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%);
    background-position: 88%;
    background-repeat: no-repeat;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding-right: 80px;
    &:hover{
        background: url(../img/btn-arrow.webp), linear-gradient(270deg, #22A754 73.59%, #1062D2 106.28%);
         background-repeat: no-repeat;
         background-position: 88%;
    }
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
.italic {
    font-style: italic;
}

/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes moveUpDown {
  0%, 100% {
      transform: translateY(0); /* Start and end at the original position */
  }
  50% {
      transform: translateY(-10px); /* Move up by 20px */
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}
@keyframes spin {
    0%{
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

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

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

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

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

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

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

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

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

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

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

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

header.sticky {
    background: #5FB242;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(50.5px);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    .main-menu{
        box-shadow: 20px 20px 60px #00000036, -20px -20px 60px #00000036;
    }
}

@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;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(3.5px);
}

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

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

.has-sub{
    margin-right: 13px;
}
#menu .main-menu ul{
    padding-inline: 18px;
}
#menu .main-menu .has-sub ul{
    padding-inline: 0;
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(50.5px);
}

#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: 20px 5px;
    display: inline-block;
    color: #FFF;
    font-family: "Robert TRIAL Medium";
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 184.211%;
}
#menu>.main-menu>ul>li>a:hover::after,
#menu .main-menu ul li.current-menu-item a::after {
    width: 100%;
}
.hamburger{
    display: none;
}
/* #menu .main-menu ul li a::after {
    content: '';
    transition: 0.5s;
    width: 0;
    position: absolute;
    bottom: 0px;
    left: 5px;
    height: 2px;
    background: #22A754;
    bottom: 15px;
} */

#menu>.main-menu>ul>li:hover>a,
#menu .main-menu ul li.current-menu-item a {
    color: #40C351;
    &::after{
        width: 75%;
    }
}

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


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

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

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

#menu .main-menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    -ms-transition: all .25s ease;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(3.5px);
    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: #FFF;
    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: #40C351;
}

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


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

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

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

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

#menu .main-menu ul li.current-menu-item ul li a:hover {
    color: #ffffff;
}
@media screen and (max-width:992px) {
    nav {
        width: 100%
    }
    #menu {
        width: 100%
    }
    #menu ul {
        width: 100%;
        display: none;
    }
    #menu .main-menu {
        width: 100%;
        position: fixed;
        height: 100dvh !important;
        background: linear-gradient(180deg, #22a755 73.59%, #1061d2 106.28%);
        transform: translateX(-100%);
        transition: all .4s;
        top: 95px;
        left: 0;
        border-radius: 0;
    }
    .main-menu {
        align-items: center;
    }
    #menu .main-menu.open {
        transform: translateX(0%);
        flex-direction: column;

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

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

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

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

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

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

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

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

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

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

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

    .hamburger {
        width: 55px;
        height: 44px;
        position: absolute;
        right: 16px;
        top: 20px;
        cursor: pointer;
        z-index: 12399994;
        display: block;
        border-radius: 8px;
        background: rgb(255 255 255 / 0%);
        backdrop-filter: blur(3.5px);
    }

    .hamburger:after {
        position: absolute;
        top: 21px;
        right: 10px;
        display: block;
        height: 14px;
        width: 35px;
        border-top: 2px solid #22A754;
        border-bottom: 2px solid #FFF;
        content: '';
    }

    .hamburger:before {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        position: absolute;
        top: 9px;
        right: 10px;
        display: block;
        height: 2px;
        width: 35px;
        background: #FFF;
        content: '';
    }

    .hamburger.menu-opened:after {
        -webkit-transition: all .3s ease;
        -ms-transition: all .3s ease;
        transition: all .3s ease;
        top: 20px;
        border: 0;
        height: 2px;
        width: 35px;
        background: #FFF;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .hamburger.menu-opened:before {
        top: 20px;
        background: #FFF;
        width: 35px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    #menu .submenu-button {
        position: absolute;
        z-index: 99;
        right: 20px;
        top: 0;
        display: block;
        border-left: 0;
        height: 50px;
        width: 60px;
        cursor: pointer;
        background: #ffffff36;

    }

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

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

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

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

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


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

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

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

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

}
/******************************
            Banner  
*******************************/
.banner{
    position: relative;
    &::before{
        position: absolute;
        content: '';
        inset: 0;
        border-radius: 0 0 70px 0;
        background: linear-gradient(90deg, rgba(1, 5, 11, 0.87) 0%, rgba(23, 74, 144, 0.00) 100%);
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
}
.banner-png{
    position: absolute;
    right: 0;
    bottom: 0;
}
.banner-content{
    position: relative;
    width: 60%;
    z-index: 1;
    h1{
        color: #FFF;
        font-family: "ABC Diatype";
        font-size: 88px;
        font-style: normal;
        font-weight: normal;
        line-height: 102.273%;
        text-transform: uppercase;
        margin-bottom: 13px;
        span{
            color: #28C262;
        }
    }
    p{
        color: #FFF;
        font-family: "Robert Trial Bold";
        font-size: 34px;
        font-style: normal;
        font-weight: normal;
        line-height: 115.941%;
        margin-bottom: 37px;
    }
    &::before{
        position: absolute;
        content: '';
        left: -20px;
        top: 16px;
        height: 228px;
        width: 7px;
        background: linear-gradient(180deg, #22A754 73.59%, #1062D2 106.28%);
    }
	.primary-btn{
		width:220px;
		justify-content: center;
	}
}
.banner-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -5px;
}
/******************************
        Counter
*******************************/
.counter{
    padding-bottom: 0;
}
.counter-item {
    position: relative;
    padding-left: 80px;
}
.counter-item .counter-icon {
    width: 77px;
    height: 84px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.counter-item h3 {
    color: #222;
    font-family: 'Robert Trial Bold';
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    margin-bottom: 20px;
    .plus{
        color: #BBB;
    }
}
.counter-item p {
    color: #000;
    font-family: "Robert Trial Medium";
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height:  138.889%;
}
.counter-item:hover .counter-icon img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
/******************************
        We Are
*******************************/
.we-are{
    padding-left: 16%;
    position: relative;
}
.section-img{
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    .sec-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        transition: 0.5s;
    }
    &:hover{
        img{
            scale: 1.03;
        }
    }
}
.dot{
    position: absolute;
    right: 0;
    top: 3%;
    width: 47%;

}
/******************************
        Mission Vision
*******************************/
.mission-vision {
  position: relative;
  .row{
    .col-lg-6:last-child{
        transform: translateY(-110px);
    }
  }
}
.mission-vision .item {
  width: 725px;
  height: 725px;
  border-radius: 50%; /* simpler and cleaner */
  position: relative;
  padding: 16%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%) border-box;
  border: 2px solid transparent; /* controls thickness */
  h4{
    color: #262626;
   font-family: 'Robert Trial SemiBold';
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 110.217%;
    margin-bottom: 10px;
    transition: 0.1s;
  }
}
.mission-vision .item .mv-icon {
  transition: 0.8s;
}
/* Hover effect */
.mission-vision .item:hover {
  background: linear-gradient(#22A754, #22A754) padding-box, linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%) border-box;
}
.mission-vision .item:hover .mv-icon {
  filter: brightness(0) saturate(100%) invert(95%) sepia(78%) saturate(4%) hue-rotate(239deg) brightness(116%) contrast(100%);
  transform: rotateY(360deg);
}
.mission-vision .item:hover .section-title,
.mission-vision .item:hover h4,
.mission-vision .item:hover p,
.mission-vision .item:hover .learn-more {
  color: #fff;
}
.mission-vision .item:hover .learn-more img {
  filter: unset;
}
.mission-vision .btn-group {
  justify-content: center;
}
.learn-more{
    color: #262626;
    font-family: "Robert Trial Medium";
    font-size: 23px;
    font-style: normal;
    font-weight: normal;
    line-height: 65.217%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: flex;
    align-items: center;
    gap: 13px;
    img{
        filter: brightness(0) saturate(100%) invert(11%) sepia(13%) saturate(0%) hue-rotate(262deg) brightness(114%) contrast(94%);
        transition: 0.5s

    }
    &:hover{
        text-decoration-line: underline;
        img{
            transform: rotate(43deg);
        }
    }
}
.blue-green-png{
    position: absolute;
    top: 0;
    left: 0;
    animation: moveUpDown 3s ease-in-out infinite;
}
/******************************
    Products
*******************************/
.products{
    padding-inline: 40px;
}
.product-card{
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    .product-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &:hover{
        .product-bg{
            scale: 1.08;
        }
    }
}
.products-content{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px;
    border-radius: 30px;
    background: linear-gradient(0deg, #000 0%, #0000008e 100%);
    .section-title, p{
        color: #FFF;
    }
    p{
        width: 45%;
    }
    ul{
        width: 36%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
        li{
            width: 48%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            color: #FFF;
            font-family: 'Robert Trial Medium';
            font-size: 22px;
            font-style: normal;
            font-weight: normal;
            line-height: 68.182%;
            border-radius: 60px;
            border: 1px solid #FFF;
            padding: 15px;
            transition: 0.5s;
            &:hover{
               background: #1062D2;
               border-color: #1062D2;
            }
        }
    }
}
.g-s{
    gap: 90px;
}
.f-s{
    p{
        width: 100%;
    }
    ul{
        width: 100%;
        li{
            width: auto;
        }
    }
}
/******************************
        Why Choose
*******************************/
.why-choose{
    .row{
        .col-lg-4:first-child{
            padding-right: 10px;
        }
    }
}
.card-title{
    color: #000;
    text-align: center;
    font-family: 'ABC Diatype';
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 111.538%;
}
.why-card{
    text-align: center;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.4s;
    p{
        margin-bottom: 0;
    }
}
.b-s{
    background: #E3EBF0;
}
.gr-s{
    background: #E7F0EA;
}
.why-logo{
    width: auto;
    
}
.b-s:hover,
.gr-s:hover{
   box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
   img{
    transform: rotateY(180deg);
   }
}
/******************************
    Capacity
*******************************/
.Capacity{
    position: relative;
    .container{
        position: absolute;
        inset: 0;
        padding-top: 50px;
    }
    .section-title, p{
        color: #FFF;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/* *************************************************
        Business
************************************************ */
.business{
    padding-inline: 40px;
}
.business-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 16px;
    border: 1px solid #22A754;
    padding-block: 90px;
    transition: 0.5s;
    height: 466px;
    &:hover{
        box-shadow: 0 1px 20px 5px rgb(0 0 0 / 26%);
    }
}
.slick-dots{
    .slick-active{
        background: #1062D2;
        outline-color: #1062D2
    }
    li{
        width: 10px;
        height: 10px;
        margin-inline: 8px;
        outline: 2px solid #A3A3A3;
        border-radius: 50%;
        outline-offset: 3px;
    }
    li button {
        opacity: 0;
        width: 100%;
    }
    &::before{
        width: 100%;
    }
}
.slick-dotted.slick-slider {
    margin-bottom: 70px;
}
.slick-slide{
    margin: 0 10px;
}
.slick-list{
    margin: 0 -10px;
}
.slick-track{
    padding-block: 20px;
}
.video-box{
    overflow: hidden;
    border-radius: 45px;
    display: block;
    position: relative;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    span{
        width: 150px;
        position: absolute;
        display: inline-block;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: 0.5s;
        text-align: center;
        color: #FFF;
        font-family: 'Robert Trial Medium';
        font-size: 23px;
        font-style: normal;
        font-weight: normal;
        line-height: 108.696%;
		img{
			width:100px;
			height:auto;
		}
    }
    &:hover{
        span{
            scale: 1.1;
            transform: translate(-50%, -50%);
        }
    }
}
/************************************
    Certificate
************************************/
.certificate-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cer-card{
    width: 20%;
    border-radius: 15px;
    border: 1px solid #E1E1E1;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 10px;
    transition: 0.4s;
    img{
        filter: grayscale(1);
    }
    &:hover{
        img{
            filter: unset;
        }
        background: #FFF;
        box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.15);
    }
}
/******************************
        Awards
*******************************/
.sustain-item {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.sustain-item-img {
  aspect-ratio: 534 / 557;
  position: relative;
  z-index: 2;
  border-radius: 45px;
  overflow: hidden;
}
.sustain-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.sustain-item-img span {
border-radius: 45px;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #22a75595 0%, #1061d293 100%);
  content: "";
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 80px;
  font-weight: 400;
  color: #FFF;
  transition: 0.4s;
}
.sustainability-sec {
  overflow: hidden;
  padding-right: 0;
  padding-left: 0;
}
.sustainability-sec .container {
  padding-right: 12px;
  padding-left: 12px;
}
.sustainability-sec .slick-list {
  padding: 3vw 0vw;
}
.slick-center + .item .sustain-item,
.item:has(+ .item + .slick-center) .sustain-item {
  transform: perspective(47vw) rotatey(-20deg);
}
.slick-center + .item + .item .sustain-item,
.item:has(+ .slick-center) .sustain-item {
  transform: perspective(47vw) rotatey(20deg);
}
.sustainability-sec .slick-center .sustain-item {
  transform: scale(0.91);
}

.sustainability-sec .slick-center + .item,
.sustainability-sec .item:has(+ .item + .slick-center) {
  transform: translateX(-3.75vw);
}
.sustainability-sec .slick-center + .item + .item,
.sustainability-sec .item:has(+ .slick-center) {
  transform: translateX(3.75vw);
}

.sustainability-sec .item {
  transition: 0.3s;
}
.sustainability-sec .sustain-item {
  transition: 0.3s;
}

.sustainability-sec .cmn-hd {
  margin-bottom: 0;
}
.sustainability-sec .slick-dots {
  margin-top: -20px;
}

.slick-center .sustain-item-img::after {
  opacity: 1;
}
.sustain-item:hover{
  .sustain-item-img span{
    opacity: 1;
  }
}
.slick-center .sustain-item-text {
  opacity: 1;
}
/******************************
        Testimonial
*******************************/
.employee-testi{
    padding-top: 0;
}
.testi-card{
    position: relative;
    border-radius: 33px;
    border: 1px solid #E3E3E3;
    background: #FAFAFA;
    padding: 15px;
}
.testi-left{
    padding-block: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.testi-right{
    overflow: hidden;
    img{
		border-radius: 14px;
		margin-left: auto;
    }
}
.coma{
    position: absolute;
    top: -38px;
    left: 30px;
}
.profile{
    p{
        margin-bottom: 0;
        color: #777;
        font-size: 18px;
    }
}
.line-bar{
    display: inline-block;
    width: 43px;
    height: 1px;
    background: #5FB242;
}
.profile-name{
    color: #2A2A2A;
    font-family: "ABC Diatype";
    font-size: 26px;
    font-style: normal;
    font-weight: normal;
    line-height: 100%;
}
.employee-testi-slider{
    .slick-track{
        padding-block: 50px;
    }
}
/******************************
        Initiatives
*******************************/
.initiatives{
    .container{
        border-radius: 30px;
        background: #22A754;
        padding: 15px;
    }
    .section-title, ul li{
        color: #FFF;
    }
    ul{
        li{
            font-family: 'Robert Trial Regular';
            font-size: 24px;
            font-style: normal;
            font-weight: normal;
            line-height: 110.167%;
            margin-bottom: 25px;
            position: relative;
            padding-left: 15px;
            &::before{
                content: '';
                position: absolute;
                width: 7px;
                height: 7px;
                background: #FFF;
                border-radius: 50%;
                outline: 2px solid #ffffff2c;
                left: 0;
                top: 10px;
            }
        }
    }
}
.ini-img{
    border-radius: 30px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
}
.white-btn{
    background: #FFF;
    border: 1px solid #FFF;
    &::before,
    &::after{
        background: #1062D2;
    }
    &:hover{
        border-color: #1062D2;
    }
}
/******************************************
        Customer Testimonials
********************************************/
.customer-testi{
    position: relative;
    padding-bottom: 0;
    .testi-card{
        padding: 0;
        border-radius: 31px;
        overflow: hidden;
        position: relative;
        border: none;
/*         &::after{
            position: absolute;
            content: '';
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.83) 55%, rgba(0, 0, 0, 0.00) 71.81%);
        } */
    }
    .coma{
        position: relative;
        top: 0;
        left: 0;
        filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(2%) hue-rotate(351deg) brightness(105%) contrast(101%);
    }
    .testi-left{
        width: 55%;
        position: relative;
/*         left: 0;
        top: 50%;
        transform: translateY(-50%); */
        padding: 25px;
        z-index: 1;
        display: block;
		background: linear-gradient(to right, #000000e6, #000000, transparent);
    }
    p, .profile-name{
        color: #FFF;
    }
    p{
        font-style: italic;
    }
    .profile{
        .desig{
            font-style: normal;
            color: #CDCDCD;
        }
    }
    .line-bar{
        background: #FFF;
    }
}
.testi-bg{
	position:absolute;
	inset:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/******************************************
        Faq
********************************************/
.faq{
    position: relative;
    .blue-green-png{
        bottom: 0;
        top: unset;
        left: 15px;
    }
}
.accordion__item {
    position: relative;
    transition: 0.5s;
    margin-bottom: 18px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%) border-box;
    border: 2px solid transparent;
    border-radius: 16px;
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 25px 60px 25px 20px;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    color: #272727;
    font-family: "ABC Diatype";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 66.667%;
    transition: 0.4s;
}
.accordion__title.accordion-active{
    padding-bottom: 0px;
}
.accordion__item .accordion__title:hover {
    transform: translateY(-5px)
}
.accordion__title::after {
    content: '+';
    background-repeat: no-repeat;
    position: absolute;
    width: 46px;
    height: 42px;
    font-size: 36px;
    color: #FFF;
    font-weight: normal;
    top: 11px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: linear-gradient(180deg, #1062D2 0%, #22A754 100%);
    transition: all .5s;
}
.accordion__title.accordion-active::after {
    transform: rotate(180deg);
    content: '-';
}
.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: #5FB242;
    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;
    padding-bottom: 20px;
    padding: 12px 60px 12px 12px;
    font-size: 20px;
}
/******************************
        Get In Touch
*******************************/
.get-in-touch{
    padding-right: 17%;
    position: relative;
    .blue-green-png{
        bottom: 30px;
        left: unset;
        right: 30px;
        top: unset;
    }
    .dot{
        width: auto;
    }
}
.get-left{
    overflow: hidden;
    border-radius: 0 39px 39px 0;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
        object-position: right;
    }
}
/******************************
        MAP
*******************************/
.map{
    iframe{
        width: 100%;
        height: 600px;
        margin-bottom: 0;
    }
}
/******************************
        Footer
*******************************/
footer{
    background: #292929;
    padding-block: 60px;
    position: relative;
    border-top: 6px solid #22A754;
    p{
        color: #E2E2E2;
        font-size: 16px;
    }
    a{
        color: #E0E0E0;
        font-size: 16px;
        color: #E0E0E0;
        font-family: "Robert Trial Regular";
    }
    .social-links{
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        a{
            width: 36px;
            height: 33px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: #d9d9d934;
            &:hover{
                background: #22A754;
                transform: translateY(-3px);
            }
        }
    }
    .footer-title, h6{
        color: #FFF;
        font-family: 'ABC Diatype';
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        margin-bottom: -15px;
    }
    h6{
        margin-bottom: 5px;
    }
    .line-bar{
        background: #22A754;
    }
    ul li{
        margin-block: 4px;
        transition: 0.4s;
        &:hover{
            transform: translateX(5px);
        }
    }
    .copyright{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 70px;
        p{
            margin: 0;
        }
        a{
            color: #F28624;
            &:hover{
                color: #22A754;
            }
        }
    }
}
/* ******************************************
            Blog Page
********************************************/
.inner-banner{
    .banner-content{
        width: 40%;
        margin-top: 10%;
        &::before {
            display: none;
        }
        h1{
            font-size: 68px;
        }
    }
}
.blog-box{
    border-radius: 41px;
    background: #F5F5F5;
    padding: 18px 24px;
    transition: 0.5s;
    &:hover{
        transform: translateY(-10px);
        .blog-title{
            color: #22A754;
        }
        .blog-img{
            img{
                scale: 1.1;
            }
        }
    }
}
.blog-img{
    border-radius: 41px;
    overflow: hidden;
    height: 440px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -9px;
    }
}
.news{
    color: #22A754;
    font-family: 'Robert Trial Medium';
    font-size: 15px;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    border-radius: 70px;
    border: 1px solid #A1D5B5;
    background: #E8F3EC;
    display: inline-block;
    padding: 14px 20px;
    margin-bottom: 12px;
}
.blog-title{
    color: #161616;
    font-family: 'ABC Diatype';
    font-size: 40px;
    font-style: normal;
    font-weight: normal;
    line-height: 122.5%;
    margin-bottom: 5px;
    transition: 0.5s;
}
.date{
    color: #737373;
    font-size: 18px;
}
.blog-des{
    color: #3D3D3D;
}
.blog-listing{
    .col-lg-4{
        .blog-box{
            padding: 14px;
        }
        .blog-img{
            height: 226px;
        }
        .blog-content{
            padding: 15px;
            .blog-title{
                font-size: 24px;
                margin-bottom: 15px;
            }
            .date{
                margin-bottom: 0;
            }
        }
    }
}
/* ******************************************
            Blog Details Page
********************************************/
.blog-details-header{
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(50.5px);
}
.blog-details-banner {
    padding-top: 190px;
}
.featured{
    color: #FFF;
    font-family: 'Robert Trial Medium';
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 72.222%;
    display: inline-block;
    padding: 15px 20px;
    border-radius: 30px;
    background: #1062D2;
}
.blog-details-banner {
    h1 {
        color: #262626;
        text-align: center;
        font-family: "ABC Diatype";
        font-size: 50px;
        font-style: normal;
        font-weight: normal;
        line-height: 114%;
        margin-bottom: 10px;
    }
}
.details-banner{
    border-radius: 40px;
}
.blog-details-content{
    h2, h3, h4{
        color: #262626;
        font-family: "ABC Diatype";
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 123.846%;
        margin-bottom: 6px;
    }
    h3{
        font-size: 24px;
    }
    ul, ol{
        margin-bottom: 10px;
        li{
            color: #424242;
            font-family: 'Robert Trial Regular';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 28px;
            position: relative;
            padding-left: 20px;
            &::before{
                position: absolute;
                content: '';
                width: 9px;
                height: 9px;
                border-radius: 50%;
                background: #54BCCA;
                left: 0;
                top: 10px;
                outline: 3px solid #54bcca44;
            }
        }
    }
    ol{
        padding-left: 20px;
        li{
            list-style-type: decimal;
            padding-left: 0; 
            &::before{
                display: none;
            }
        }
    }
}
.pagination{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid #B5B5B5;
    a{
        border-bottom: 1px solid #B5B5B5;
        padding-block: 25px;
    }
    a:nth-child(2){
        .pagi-top{
            justify-content: flex-end;
        }
        .pagi-bottom{
            p{
                text-align: right;
            }
        }
    }
    a:hover{
        .pagi-top{
            color: #22A754;
            img{
                filter: brightness(0) saturate(100%) invert(76%) sepia(65%) saturate(7452%) hue-rotate(115deg) brightness(97%) contrast(73%);
            }
        }
        .pagi-bottom{
            p{
                color: #22A754;
            }
        }
    }
}
.pagi-top{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #262626;
    font-family: "ABC Diatype";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 112.5%;
    margin-bottom: 10px;
    transition: 0.5s;
}
.pagi-bottom{
    display: flex;
    align-items: center;
    gap: 15px;
    img{
        border-radius: 7px;
        width: 107px;
        height: 64px;
    }
    p{
        margin-bottom: 0;
        transition: 0.5s;
    }
}
.heading-tag{
    color: #000;
    font-family: "ABC Diatype";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 125%;
    position: relative;
    margin-bottom: 5px;
    &::before{
        position: absolute;
        content: '';
        width: 28px;
        height: 1px;
        background: #000;
        left: 0;
        bottom: -4px;
    }
}
.sidebar-service{
    border-radius: 17px;
    border: 1px solid #EFEFEF;
    background: #FAFAFA;
    padding: 16px;
    margin-bottom: 22px;
    ul{
        li{
            
            font-family: 'Robert Trial Medium';
            font-size: 18px;
            font-style: normal;
            font-weight: normal;
            line-height: 250%;
            position: relative;
            padding-left: 20px;
            transition: 0.5s;
            a{
                color: #161616;
                transition: 0.5s;
            }
            &::before{
                position: absolute;
                content: '';
                width: 18px;
                height: 18px;
                background: url(../img/arrow2.webp) no-repeat;
                background-size: contain;
                left: 0;
                top: 14px;
                transition: 0.5s;
            }
            &:hover{
                transform: translateX(10px);
                a{
                    color: #22A754;
                }
                &::before{
                    filter: brightness(0) saturate(100%) invert(76%) sepia(65%) saturate(7452%) hue-rotate(115deg) brightness(97%) contrast(73%);
                }
            }
        }
    }
}
.recent-post-list{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-block: 20px;
    border-bottom: 1px solid #DDD;
    p{
        margin-bottom: 0;
    }
    h4{
        color: #262626;
         font-family: 'Robert Trial SemiBold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 127.778%;
        transition: 0.5s;
    }
    img{
        border-radius: 7px;
        width: 107px;
        height: 64px;
    }
    &:hover{
        h4{
            color: #22A754;
        }
    }
}
.sidebar-form{
    border-radius: 17px;
    background: url(../img/form-bg.webp) no-repeat;
    background-size: cover;
    padding: 28px 16px;
    .title{
        color: #FFF;
        font-family: "ABC Diatype";
        font-size: 38px;
        font-style: normal;
        font-weight: normal;
        line-height: 102.632%;
        margin-bottom: 10px;
    }
    p{
        color: #FFF;
    }
    label{
        color: #FFF;
        font-family: 'Robert Trial SemiBold';
        font-size: 18px;
        font-style: normal;
        font-weight: normal;
        line-height: 155.556%;
    }
    .form-control{
        border-radius: 8px;
        border: 1px solid #FFF;
        background: #FFF;
    }
}
#menu>.white-menu>ul>li>a{
    color: #000;
}
#menu>.white-menu>ul>li.has-sub>a::before {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}
header.sticky{
    #menu>.white-menu>ul>li>a{
        color: #FFF;
        &:hover{
            color: #40C351;
        }
    }
    #menu>.white-menu>ul>li.has-sub>a::before {
        border-top: 1px solid #FFF;
        border-left: 1px solid #FFF;
    }
}
.gallery{
    ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-bottom: 40px;
        li{
            color: #9E9E9E;
            font-family: 'Robert Trial Medium';
            font-size: 22px;
            font-style: normal;
            font-weight: normal;
            line-height: 136.364%;
            padding: 10px 30px;
            border-radius: 60px;
            border: 1px solid #EBEBEB;
            position: relative;
            cursor: pointer;
            transition: 0.4s;
            z-index: 1;
            &::after{
                position: absolute;
                content: '';
                inset: 0;
                border-radius: 60px;
                background: linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%);
                opacity: 0;
                transition: 0.5s;
                z-index: -1;
            }
        }
    }
}
.gallery ul li.active,
.gallery ul li:hover {
    color: #FFF;
    &::after{
        opacity: 1;
    }
}
.gallery-box{
    height: 450px;
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    span{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 42px;
        background: rgba(0, 0, 0, 0.30);
        opacity: 0;
        scale: 0 0;
        transition: 0.4s;
        img{
            width: 30px;
            height: 30px;
        }
    }
    &:hover{
        span{
            opacity: 1;
            scale: 1 1;
        }
    }
}
/******************************************
            Contact Page
********************************************/
.contact-dtls-icon{
    width: 42px;
    height: 42px;
    background: #1471B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 5px solid #1470b725;
}
.contact-box{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 48%;
}
.contact-dtls-content{
    width: 81%;
    h4{
        color: #000;
        font-family: 'Robert Trial SemiBold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 126.923%;
    }
    p, a{
        color: #424242;
        margin-bottom: 0;
    }
    a:hover{
        color: #40C351;
    }
}
.contact-details-address{
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
    padding-block: 28px;
    &::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, rgba(20, 113, 183, 0.00) 0%, #1471B7 49.88%, rgba(20, 113, 183, 0.00) 100%);
        left: 0;
        bottom: 0;
    }
}
.location-box{
    width: auto;
}
/******************************************
            Product Page
********************************************/
.product-banner{
    .banner-item{
        position: relative;
        .container{
            position: absolute;
            inset: 0;
        }
    }
    .banner-content{
        width: 50%;
        h1{
            font-size: 80px;
            margin-bottom: 7px;
        }
        h4{
            color: #212121;
            font-family: 'Robert Trial Bold';
            font-size: 40px;
            font-style: normal;
            font-weight: normal;
            line-height: 130%;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        &::before{
            display: none;
        }
    }
    &::before {
        display: none;
    }
}
.product-banner-left-img{
    position: absolute;
    left: 0;
    bottom: -120px;
    z-index: 5;
    animation: moveUpDown 3s ease-in-out infinite;
}
.banner-slider{
    .slick-track{
        padding-block: 0;
    }
    .slick-dots{
        bottom: 30px;
        li{
            transition: 1s;
        }
        .slick-active {
            background: #22A754;
            outline-color: #22A754;
        }
    }
}
.banner-slider.slick-dotted.slick-slider{
        margin-bottom: 0;
    }
.yarn-dtls{
    background: #F9F6F1;
    padding-block: 50px;
}
.yarn-dtls-card{
    text-align: center;
    height: 100%;
    .card-title{
        font-size: 23px;
    }
    img{
        height: 80px;
    }
    &:hover{
        img{
            transform: rotateY(180deg);
        }
    }
}
.yarn-catalog-tabs{
    margin-bottom: 50px;
    ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 23px;
        li{
            color: #000;
            text-align: center;
            font-family: 'ABC Diatype';
            font-size: 20px;
            font-style: normal;
            font-weight: normal;
            line-height: 145%;
            border-radius: 60px;
            border: 1px solid #A2A2A2;
            padding: 15px 32px;
            cursor: pointer;
        }
    }
}
.yarn-catalog-card{
    border-radius: 24px;
    border: 1px solid #E0E0E0;
    padding: 50px 20px;
    text-align: center;
    transition: 0.5s;
    .card-title{
        font-size: 20px;
    }
    &:hover{
        background: #d9d9d94c;
        .card-title{
            color: #22A754;
        }
    }
}
.yarn-img{
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    outline: 7px solid #d9d9d94c;
    margin-inline: auto;
    margin-bottom: 15px;
    background: #FFF;
}
.yarn-catalog-content {
  display: none;
}
.yarn-catalog-content.active {
  display: block;
}
.yarn-catalog-slider{
    .slick-slide{
        margin: 0 15px;
    }
    .slick-list{
        margin: 0 -15px;
    }
}
.yarn-catalog-tabs ul li.active,
.yarn-catalog-tabs ul li:hover {
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #22A754 73.59%, #1062D2 106.28%) border-box;
    border: 1px solid transparent;
}
.conventional-yarns{
    .container{
        border-radius: 33px;
        background: #E7F2FA;
        padding: 0;
    }
    .section-title{
        font-size: 48px;
    }
}
.conventional-yarns-img{
    border-radius: 33px;
    overflow: hidden;
    padding: 15px;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 33px;
    }
}
.conventional-yarns-content{
    padding: 50px 25px 25px 25px;
    p{
        color: #222;
    }
    ul{
        padding-left: 30px;
        margin-bottom: 15px;
        border-top: 1px solid #7FB9E4;
        li{
            list-style: disc;
            color: #000;
            font-family: 'Robert Trial Medium';
            font-size: 19px;
            font-style: normal;
            font-weight: normal;
            line-height: 186.263%;
            &::marker{
                font-size: 30px;
            }
        }
    }
    .btn-group{
        gap: 20px;
    }
}
.product-certificate{
    background: url(../img/global-certification-bg.webp) no-repeat;
    background-size: cover;
    .section-title{
        color: #FFF;
    }
}
.product-counter{
    .counter-item{
        padding-left: 0;
        text-align: center;
        h3{
            font-family: 'Robert Trial SemiBold';
        }
    }
}
.product-counter.sec-gap{
    padding: 60px 0;
}
.product-get-in-touch{
    padding-right: 0;
    .get-left{
        border-radius: 39px;
        z-index: 1;
        position: relative;
    }
    .get-form{
        height: 100%;
        background: #F5FBFF;
        box-shadow: -80px 0 0 0 #F5FBFF;
        z-index: -1;
        padding: 20px 30px;
        border-radius: 0 39px 39px 0;
    }
}
.product-faq{
    .section-title{
        font-size: 48px;
    }
    .accordion__content{
        color: #3F3F3F;
        padding: 0 60px 20px 0;
    }
    .accordion__title {
        border-radius: 0;
        padding: 25px 0;
    }
    .accordion__item {
        background: #FFF;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #CFCFCF;
    }
    .accordion__title::after {
        color: #151515;
        font-weight: 100;
        background: transparent;
    }
}
.sustainability-img{
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -10px;
    }
    &:hover{
        img{
            scale: 1.1;
        }
    }
}
.sustainability-content{
    border-radius: 30px;
    background: #F9F6F1;
    padding: 30px;
    height: 100%;
    ul{
        display:block;
        align-items: center;
        gap: 5px 26px;
        flex-wrap: wrap;
        width: 80%;
        li{
            color: #000;
            font-family: 'Robert Trial Medium';
            font-size: 19px;
            font-style: normal;
            font-weight:normal;
            line-height: 205.263%;
            position: relative;
            padding-left: 37px;
            transition: 0.5s;
            &::before{
                position: absolute;
                content: '';
                width: 33px;
                height: 33px;
                background: url(../img/product-tick.webp) no-repeat;
                background-size: contain;
                left: 0;
                top: 5px;
            }
            &:hover{
                color: #2480A4;
            }
        }
    }
    .section-title{
        font-size: 42px;
    }
}
.quality-assurance{
    .container{
        border-radius: 83px;
        overflow: hidden;
        padding: 0;
        position: relative;
    }
}
/* .plus-pin{
    position: absolute;
    width: 56px;
    height: 56px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor: pointer;
    p{
        color: #FFF;
        position: absolute;
        width: 300px;
        text-align: center;
        top: -400%;
        opacity: 0;
        transition: 0.8s;
        &::after{
            content: '';
            position: absolute;
            width: 1px;
            height: 140%;
            background: #FFF;
            left: 50%;
            bottom: -152%;
        }
    }
    &:hover{
        p{
            opacity: 1;
        }
    }
}
.plus-pin-1{
    top: 33%;
    left: 13%;
}
.plus-pin-2{
    top: 46%;
    left: 28%;
}
.plus-pin-3{
    top: 51%;
    left: 42%;
    p{
        top: -650%;
        &::after{
            height: 290%;
            bottom: -308%;
        }
    }
}
.plus-pin-4{
    top: 28%;
    right: 31%;
    p{
        top: -360%;
    }
} */
.quality-assurance-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: -10px;
}
.plus-pin{
    position: absolute;
    text-align: center;
    top: 272px;
    left: 160px;
    display: flex;
    justify-content: center;
    p{
        color: #FFF;
        position: absolute;
        top: -190px;
        background: #ffffff0e;
        backdrop-filter: blur(40px);
        width: 303px;
        padding: 10px;
        border-radius: 10px;
        opacity: 0;
        transition: 0.5s;
        transition-delay: 0.2s;
        scale: 0.8;
        z-index: 3;
    }
    &:hover{
        span{
            &::after{
                opacity: 1;
                scale: 1 1;
            }
        }
        p{
            opacity: 1;
            scale: 1;
        }
    }
}
.plus-pin span{
    width: 56px;
    height: 56px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-inline: auto;
    cursor: pointer;
    z-index: 1;
    &::after{
        content: '';
        position: absolute;
        width: 1px;
        height: 110px;
        background: #FFF;
        left: 50%;
        bottom: 11px;
        opacity: 0;
        transition: 0.4s;
        scale: 1 0;
        z-index: -1;
    }
}
.plus-pin-2{
    top: 370px;
    left: 370px;
}
.plus-pin-3{
    top: 410px;
    left: 550px
}
.plus-pin-4{
    top: 220px;
    left: unset;
    right: 415px;
}
.plus-pin-5{
    top: unset;
    left: unset;
    bottom: 130px;
    right: 325px;
}
.testimonials{
    padding-bottom: 0;
    .testi-box{
        border-radius: 33px;
        border: 1px solid #E3E3E3;
        background: #FAFAFA;
        padding: 20px;
        transition: all .5s;
        &:hover{
            transform: translateY(-10px);
            box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
        }
    }
    .profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .testi-user-ig {
    width: 105px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
}
.mb-50{
    margin-bottom: 50px;
}
.video-testimonials{
    .play-btn{
        position: absolute;
        left: 40px;
        bottom: 32px;
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 2;
        span{
            width: 57.025px;
            height: 57.025px;
            border-radius: 50%;
            background: #FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 0px 0px 7px rgba(255, 255, 255, 0.105);
            transition: all .5s;
        }
        &:hover{
            span{
                background: #22a754;
                img{
                    filter: brightness(0) invert(1);
                }
            }
        }
    }
    p{
        color: #fff;
        margin: 0;
    }
}
.about-banner{
    .banner-content {
        width: 55%;
        margin-top: 10%;
    }
    p{
font-family: 'Robert Trial Medium';
font-style: normal;
font-weight: normal;
line-height: 117.647%;
    }
}
.brand{
    padding-top: 40px;
    padding-bottom: 20px;
    h2{
        margin-bottom: 15px;
    }
}
.about-about{
    background: #F0F7FF;
    padding-top: 112px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    .about-dottet{
        position: absolute;
        right: 3%;
        width: 50%;
        z-index: -1;
        top: 0;
        height: 70%;
    }
    .counter {
    padding-bottom: 0;
    margin-top: 100px;
}
.counter-item {
    position: relative;
    padding-left: 96px;
}
.counter-item h3 {
    .plus {
        color: #000000;
    }
}
}
.about-about-img {
    position: relative;
    .about-img{
        border-radius: 30px;
    }
    
}
.our-vision{
    position: relative;
    .our-vision-img{
        position: absolute;
        width: 50%;
        right: 0;
        top: 0;
        height: 100%;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}
.our-vision-content{
    text-align: center;
    padding: 100px 30px;
    h5{
        color: #1062D2;
        font-family: 'Robert Trial Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: normal;
        line-height: 126.923%;
        margin-bottom: 8px;
    }
}
.purpose{
    .col-lg-6{
        margin-left: auto;
    }
    .our-vision-img{
        right: unset;
        top: 0;
        left: 0;
    }
}
.mb-30{
    margin-bottom: 30px;
}
.bag{
    .date{
        display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
    }
}
.core-value {
    background-image: url(../img/core-value-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.core-value-card{
    border-radius: 24px;
    background: #FFF;
    padding: 77px 16px 30px 16px;
    text-align: center;
    height: 100%;
    transition: all .5s;
    &:hover{
        transform: translateY(-10px);
        box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    }
}
.culture-card{
    img{
        border-radius: 26px;
    }
}
.message-from-md{
    background: #427AC5;
    .section-title,p,h3{
        color: #fff;
		text-align: justify;
    }
}
.message-from-md-card {
    img{
        border-radius: 39px;
    }
    h3 {
    font-size: 40px;
    font-family: 'Robert Trial Bold';
    font-weight: normal;
}
}
.sustainability-initiatives{
    background-image: url(../img/sustainability-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    .col-lg-8{
        background-color: #fff;
        padding-inline: 20px;
    }
}
.ms-auto{
    margin-left: auto;
}
.practising-item {
    position: relative;
    border-radius: 23px;
    overflow: hidden;
    height: 498px;
    transition: all .5s;
    &:after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.00) 60%);
        z-index: 1;
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-bottom: -6px;
    }
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.practising-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    h4,p{
        color: #fff;
    }
    img{
        width: auto;
        height: auto;
        margin-bottom: 10px;
    }
    .item-title {
    font-size: 28px;
    font-family: 'Robert Trial Bold';
    margin-bottom: 5px;
    font-weight: normal;
}
}

.team-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
    .row .col-lg-3:nth-child(2n){
        transform: translateY(40px);
        .team-card{
            background:#F0F9FF;
        }
    }
}

.team-card {
    background: #FAF2E9;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.team-card h3 {
    font-size: 24px;
    line-height: 26px;
    margin-top: 12px;
    font-weight: normal;
    font-family: 'Robert Trial Bold';
    margin-bottom: 6px;
}

.team-card p {
    font-size: 18px;
    color: #22A754;
}

/* Hover */
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
/* Business Verticals Page */
.business-banner{
    .banner-content{
        width: 60%;
        p{
            font-family: 'Robert Trial Regular';
        }
    }
}
.business-about{
    background: #FFF;
    padding-block: 60px;
    .dec{
        font-family: 'ABC Diatype';
        color: #272727;
        line-height: 129.167%;
    }
}
.business-verticals{
    background: url(../img/business-verticals-bg.webp) no-repeat;
    background-size: cover;
    .col{
        padding-top: 120px;
    }
}
.business-verticals-card{
    border-radius: 16px;
    border: 1px solid #22A754;
    background: #FFF;
    box-shadow: 0 14px 54px 0 rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 60px 50px;
    padding-top: 140px;
    position: relative;
    height: 100%;
    transition: 0.5s;
    &:hover{
        background: #22A754;
        border-color: #1062D2;
        .card-title{
            color: #FFF;
        }
        .business-verticals-icon{
            border-color: #1061d26b;
            scale: 1.03;
            top: -120px;
        }
    }
}
.business-verticals-icon{
    width: 216px;
    height: 216px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 11px solid #F4F7F5;
    border-radius: 50%;
    box-shadow: 0 14px 54px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -110px;
    transition: 0.5s;
}
.business-faq{
    .blue-green-png{
        top: 40px;
        left: 150px;
    }
    .blue-green-png2{
        top: unset;
        left: unset;
        bottom: 50px;
        right: 100px;
    }
}
/******************************************
             Responsive 
********************************************/
@media (max-width: 1600px),
(max-width: 1560px) {
    .banner-png {
        width: 30%;
    }
    header{
        padding-block: 10px;
    }
    p{
        font-size: 18px;
    }
   .logo{
    width: 100px;
   }
   .primary-btn{
    font-size: 18px;
        padding: 20px 17px;
        img{
            width: 12px;
            height: 12px;
        }
    }
    #menu>.main-menu>ul>li>a {
        font-size: 17px;
        padding: 14px 5px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 23px;
        width: 8px;
        height: 8px;
        right: -8px;
    }
    #menu ul ul li a{
        font-size: 17px;
    }
    #menu .main-menu ul {
        padding-inline: 13px;
    }
    .banner-content {
        h1 {
            font-size: 82px;
        }
        p{
            font-size: 28px;
        }
    }
    .products-content {
        ul {
            width: 35%;
            li{
                font-size: 19px;
            }
        }
    }
    .f-s {
        ul {
            width: 100%;
        }
    }
    .we-are {
        padding-left: 10%;
    }
    .get-in-touch {
        padding-right: 10%;
    }
    .blog-details-banner{
        padding-top: 150px;
    }
    .product-banner {
        & .banner-content {
            width: 40%;
            h1 {
                font-size: 65px;
            }
            h4{
                font-size: 30px;
            }
        }
    }
    .product-banner-left-img{
        width: 10%;
        bottom: -85px;
    }
    .yarn-catalog-card {
        padding: 40px 10px;
        .card-title {
            font-size: 18px;
        }
    }
    .business-faq {
        .blue-green-png {
            left: 20px;
        }
        .blue-green-png2 {
            left: unset;
            right: 20px;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px){
    .form-control::placeholder{
        font-size: 15px;
    }
    .right{
        padding: 15px;
    }
    .title {
        font-size: 32px;
    }
    header {
        padding-block: 5px;
    }
    p{
        font-size: 16px;
    }
    .dec {
        font-size: 19px;
    }
    .section-title {
        font-size: 50px;
        margin-bottom: 10px;
    }
    .section-sub-title {
        font-size: 23px;
    }
    .logo {
        width: 90px;
    }
    .primary-btn {
        font-size: 16px;
        padding: 17px 12px;
        border-radius: 11px;
    }
    .g-s {
        gap: 50px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 15px;
    }
    #menu ul ul li a {
        font-size: 15px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 22px;
        width: 7px;
        height: 7px;
        right: -7px;
    }
    .banner-content {
        width: 50%;
        h1 {
            font-size: 62px;
        }
        p {
            font-size: 20px;
        }
        &::before {
            top: 15px;
            height: 156px;
            width: 6px;
        }
    }
    .banner-png {
        width: 24%;
    }
    .counter-item h3 {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .counter-item p {
        font-size: 15px;
        margin-bottom: 0;
    }
    .counter-item .counter-icon {
        width: 66px;
        height: 74px;
    }
    .blue-green-png {
        width: 10%;
    }
    .we-are {
        padding-left: 9%;
    }
    .mission-vision .item {
        width: 600px;
        height: 600px;
        padding: 12%;
    }
    .mission-vision .item {
        h4 {
            font-size: 18px;
            margin-bottom: 7px;
        }
    }
    .learn-more {
        font-size: 18px;
        img{
            width: 12px;
            height: 12px;
        }
    }
    .mv-icon{
        width: 25%;
    }
    .products-content {
        padding: 25px;
        p {
            width: 50%;
        }
        ul {
            margin-bottom: 20px;
            li {
                font-size: 15px;
                padding: 10px;
                width: 44%;
                img{
                    width: 22px;
                    height: 22px;
                }
            }
        }
    }
    .f-s {
        p {
            width: 100%;
        }
        ul{
            li{
                width: auto;
            }
        }
    }
    .why-card{
        gap: 10px;
        padding: 30px;
    }
    .gr-s, .b-s{
        img{
            width: 26%;
        }
    }
    .card-title {
        font-size: 21px;
    }
    .business-card{
        height: 394px;
        img{
            width: 40%;
        }
    }
    .business {
        padding-inline: 20px;
    }
    .cer-card {
        img {
            height: 70px;
        }
    }
    .sustainability-sec .slick-list{
        padding: 2vw 0vw;
    }
    .profile-name {
        font-size: 22px;
    }
    .coma {
        top: -33px;
        left: 25px;
        width: 10%;
    }
    .profile {
        p {
            font-size: 16px;
        }
    }
    .testi-left {
        padding-block: 10px;
    }
    .employee-testi-slider {
        .slick-track {
            padding-block: 30px;
        }
    }
    .initiatives {
        & ul {
            li {
                font-size: 18px;
                margin-bottom: 20px;
                &::before{
                    top: 6px;
                }
            }
        }
    }
    .accordion__item .accordion__title {
        padding: 20px 60px 20px 15px;
        font-size: 20px;
    }
    .accordion__title.accordion-active {
        padding-bottom: 0px;
    }
    .accordion__item .accordion__content {
        font-size: 16px;
        line-height: 155%;
    }
    .accordion__title::after {
        width: 40px;
        height: 34px;
        font-size: 28px;
    }
    .products {
        padding-inline: 20px;
    }
    .fixed-contact {
        right: 5px;
        bottom: 3%;
    }
    .call {
        width: 48px;
        height: 48px;
    }
    .wp {
        width: 52px;
        height: 52px;
    }
    .form-control {
        font-size: 16px;
        padding: 12px 10px;
    }
    form label {
        font-size: 17px;
    }
    .map {
        iframe {
            height: 500px;
        }
    }
    .get-in-touch{
        .dot{
            width: 12%;
        }
    }
    footer {
        padding-block: 35px;
        p {
            font-size: 14px;
        }
        .footer-title, h6 {
            font-size: 17px;
        }
        a {
            font-size: 14px;
        }
        ul li {
            margin-block: 2px;
        }
        .copyright {
            padding-top: 50px;
        }
    }
    .inner-banner {
        & .banner-content {
            h1 {
                font-size: 55px;
            }
        }
    }
    .news{
        font-size: 10px;
        padding: 8px 14px;
    }
    .blog-title{
        font-size: 32px;
    }
    .date{
        font-size: 16px;
    }
    .blog-img{
        height: 370px;
    }
    .blog-listing {
        & .col-lg-4 {
            & .blog-content {
                .blog-title {
                    font-size: 20px;
                    margin-bottom: 10px;
                }
            }
            .blog-img {
                height: 175px;
            }
        }
    }
    .featured {
        font-size: 16px;
    }
    .blog-details-banner {
        padding-top: 130px;
        h1 {
            font-size: 40px;
        }
    }
    .blog-details-content {
        h2{
            font-size: 24px;
        }
        h3{
            font-size: 22px;
        }
        h4{
            font-size: 18px;
        }
        & ul, & ol {
            li {
                font-size: 16px;
            }
        }
    }
    .pagi-top {
        font-size: 19px;
        gap: 4px;
    }
    .pagi-bottom {
        img {
            border-radius: 7px;
            width: 98px;
            height: 54px;
        }
    }
    .heading-tag {
        font-size: 18px;
    }
    .recent-post-list {
        padding-block: 12px;
        img {
            width: 98px;
            height: 54px;
        }
        h4{
            font-size: 15px;
        }
    }
    .sidebar-service{
        & ul {
            li {
                font-size: 16px;
                line-height: 220%;
                &::before {
                    width: 16px;
                    height: 16px;
                    top: 10px;
                }
            }
        }
    }
    .sidebar-form {
        .title {
            font-size: 28px;
        }
        label { 
            font-size: 16px;
        }
    }
    .gallery-box {
        height: 370px;
        & span {
            img {
                width: 24px;
                height: 24px;
            }
        }
    }
    .gallery {
        & ul {
            li {
                font-size: 16px;
                padding: 8px 26px;
            }
        }
    }
    .video-box {
        span {
            width: 120px;
            font-size: 19px;
        }
    }
    .contact-dtls-content {
        h4 {
            font-size: 21px;
        }
    }
    .product-banner {
        & .banner-content {
            h1 {
                font-size: 55px;
            }
            h4{
                font-size: 26px;
            }
        }
    }
    .yarn-dtls-card {
        img {
            height: 60px;
        }
        .card-title {
            font-size: 18px;
        }
    }
    .yarn-catalog-tabs {
        & ul {
            li {
                font-size: 17px;
                padding: 10px 26px;
            }
        }
    }
    .yarn-img{
        width: 78px;
        height: 78px;
    }
    .yarn-catalog-slider {
        .slick-slide {
            margin: 0 10px;
        }
        .slick-list {
            margin: 0 -10px;
        }
    }
    .yarn-catalog-tabs{
        margin-bottom: 30px;
    }
    .yarn-catalog-card{
        padding: 40px 10px;
        .card-title {
            font-size: 16px;
        }
    }
    .conventional-yarns {
        .section-title {
            font-size: 38px;
        }
    }
    .conventional-yarns-content {
        & ul {
            li {
                font-size: 16px;
                &::marker{
                    font-size: 20px;
                }
            }
        }
    }
    .quality-assurance {
        .container {
            border-radius: 73px;
        }
    }
    .plus-pin {
        top: 220px;
        left: 140px;
        p{
            top: -150px;
            width: 250px;
        }
    }
    .plus-pin span{
        width: 46px;
        height: 46px;
        &::after{
            height: 90px;
        }
    }
    .plus-pin-2 {
        top: 320px;
        left: 310px;
    }
    .plus-pin-3 {
        top: 350px;
        left: 470px;
    }
    .plus-pin-4 {
        top: 190px;
        left: unset;
        right: 355px;
    }
    .plus-pin-5 {
        top: unset;
        left: unset;
        bottom: 115px;
        right: 280px;
    }
    .sustainability-content {
        .section-title{
            font-size: 34px;
        }
        & ul {
            li {
                font-size: 16px;
                padding-left: 30px;
                &::before{
                    width: 27px;
                    height: 27px;
                    top: 4px;
                }
            }
        }
    }
    .product-faq{
        .section-title {
            font-size: 38px;
        }
        .accordion__item .accordion__title {
            padding: 18px 0;
        }
    }
    .product-get-in-touch {
        padding-right: 0;
    }
    .product-get-in-touch {
        .dot {
            width: 6%;
        }
    }
    .about-banner {
    .banner-content {
        width: 44%;
        margin-top: 10%;
    }
}
.our-vision-content {
    h5 {
        font-size: 22px;
    }
}
.message-from-md-card {
    h3 {
        font-size: 30px;
    }
}
.practising-content {
    .item-title {
        font-size: 24px;
    }
}
.blog-box {
    border-radius: 30px;
}
.blog-img {
    border-radius: 25px;
}
.team-card p {
    font-size: 16px;
    color: #22A754;
    margin: 0;
}
.team-card h3 {
    font-size: 20px;
}
.practising-item {
    height: 395px;
}
.business-banner {
    .banner-content {
        width: 54%;
    }
}
.business-faq {
    .blue-green-png {
        left: 40px;
    }
    .blue-green-png {
        left: unset;
        right: 20px;
    }
}
.business-verticals-icon {
    width: 186px;
    height: 186px;
    padding: 30px;
    border-width: 9px;
}
.business-verticals-card {
    padding: 50px 50px;
    padding-top: 110px;
}
}
@media (max-width: 1024px){
    .popup .popup__content {
        width: 70%;
    }
    .right {
        padding: 20px;
    }
    .logo{
        width: 75px;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 14px;
        padding: 14px 1px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 22px;
        width: 7px;
        height: 7px;
        right: -10px;
    }
    #menu ul ul li a {
        font-size: 14px;
    }
    .primary-btn {
        font-size: 15px;
    }
    header {
        padding-block: 8px;
    }
    #menu>.main-menu>ul>li.has-sub>a::before {
        top: 21px;
    }
    .banner-content {
        h1 {
            font-size: 52px;
            margin-bottom: 6px;
        }
        p {
            font-size: 17px;
            margin-bottom: 27px;
        }
        &::before {
            top: 12px;
            height: 135px;
            width: 5px;
            left: -15px;
        }
    }
    .counter-item h3 {
        font-size: 40px;
        margin-bottom: 6px;
    }
    .counter-item{
        padding-left: 70px;
    }
    .counter-item .counter-icon {
        width: 65px;
        height: 70px;
    }
    .counter-item p {
        font-size: 14px;
    }
    .sec-gap {
        padding: 40px 0;
    }
    .we-are {
        padding-left: 5%;
    }
    .section-title {
        font-size: 40px;
    }
    .section-sub-title {
        font-size: 19px;
    }
    .mission-vision .item {
        width: 490px;
        height: 490px;
        padding: 16%;
    }
    .mission-vision {
        & .row {
            & .col-lg-6:last-child {
                transform: translateY(-70px);
            }
        }
    }
    .learn-more {
        font-size: 16px;
    }
    .products.sec-gap{
        padding: 40px 10px;
    }
    .products-content {
        ul {
            width: 40%;
            gap: 10px;
            li{
                font-size: 14px;
                padding: 9px 8px;
                img {
                    width: 18px;
                    height: 18px;
                }
            }
        }
    }
    .f-s {
        ul {
            width: 100%;
        }
    }
    .card-title {
        font-size: 18px;
    }
    .gr-s, .b-s {
        img {
            width: 24%;
        }
    }
    .why-card {
        gap: 5px;
    }
    .dec {
        font-size: 18px;
    }
    .business-card{
        height: 325px;
        img {
            width: 35%;
        }
    }
    .business.sec-gap{
        padding: 40px 10px;
    }
    .video-box{
        border-radius: 22px;
    }
    .employee-testi{
        padding-top: 0;
    }
    .sustain-item-img{
        border-radius: 25px;
    }
    .customer-testi{
        .testi-card{
            height: 400px;
            p{
                font-size: 15px;
            }
            .testi-left{
                padding: 20px;
            }
        }
    }
    .faq {
        .blue-green-png {
            bottom: -20px;
            left: 10px;
        }
    }
    .coma {
        top: -28px;
        left: 25px;
        width: 8%;
    }
    .get-in-touch {
        padding-right: 6%;
        .blue-green-png {
            bottom: 10px;
            right: 10px;
        }
    }
    .map {
        iframe {
            height: 400px;
        }
    }
    .blog-listing {
        & .col-lg-4 {
            & .blog-content {
                .blog-title {
                    font-size: 18px;
                }
            }
        }
    }
    .blog-details-banner {
        h1 {
            font-size: 36px;
        }
    }
    .recent-post-list {
        gap: 6px;
    }
    .blog-details-banner {
        padding-top: 110px;
    }
    .gallery-box {
        height: 310px;
    }
    .product-banner-left-img {
        width: 8%;
    }
    .product-banner {
        & .banner-content {
            width: 30%;
            margin-top: 60px;
            h1 {
                font-size: 35px;
            }
            h4{
                font-size: 20px;
            }
        }
    }
    .conventional-yarns-content {
        padding: 20px 15px 15px 15px;
    }
    .plus-pin {
        top: 190px;
        left: 109px;
        p{
            top: -130px;
        }
    }
    .plus-pin span {
        &::after {
            height: 40px;
            bottom: 40px;
        }
    }
    .plus-pin-2 {
        top: 265px;
        left: 260px;
    }
    .plus-pin-3 {
        top: 290px;
        left: 400px;
    }
    .plus-pin-4 {
        top: 160px;
        left: unset;
        right: 300px;
    }
    .plus-pin-5 {
        top: unset;
        left: unset;
        bottom: 90px;
        right: 240px;
    }
    .quality-assurance {
        .container {
            border-radius: 63px;
        }
    }
    .yarn-dtls-card {
        img {
            height: 50px;
        }
    }
    .product-counter.sec-gap {
        padding: 40px 0;
    }
    .sustainability-content {
        ul {
            width: 90%;
        }
    }
    .product-faq {
        .section-title {
            font-size: 32px;
        }
        .accordion__item .accordion__title{
            padding: 12px 0;
            padding-right: 50px;
            line-height: 145.667%;
        }
        .accordion__item{
            margin-bottom: 10px;
        }
    }
    .product-get-in-touch {
        padding-right: 0;
    }
    .product-get-in-touch {
        .get-form {
            padding: 15px 20px;
        }
    }
    .our-vision-content {
    text-align: center;
    padding: 50px 20px;
}
.practising-item {
    height: 370px;
}
.business-faq {
    .blue-green-png2 {
        left: unset;
        right: 10px;
        bottom: 15px;
    }
}
}
@media (max-width: 992px){
    #menu .main-menu .has-sub ul {
        padding-inline: 0;
        background: #ffffff17;
    }
    #menu>.main-menu>ul>li>a {
        font-size: 15px;
        padding: 10px 2px;
    }
    .sec-gap {
        padding: 30px 0;
    }
    .banner{
        height: 500px;
        .container{
            padding-top: 50px;
        }
    }
    .banner-content {
        h1 {
            font-size: 42px;
        }
        p {
            font-size: 16px;
            margin-bottom: 18px;
        }
        &::before {
            top: 10px;
            height: 118px;
            width: 4px;
            left: -12px;
        }
    }
    .primary-btn {
        font-size: 14px;
        padding: 16px 10px;
        border-radius: 8px;
    }
    .counter-item h3 {
        font-size: 32px;
        margin-bottom: 6px;
    }
    .counter{
        padding-bottom: 0;
    }
    .we-are{
        .row{
            .col:last-child{
                order: -1;
            }
        }
    }
    .we-are.sec-gap{
        padding: 30px 15px;
    }
    .section-img {
        border-radius: 20px;
    }
    .blue-green-png {
        width: 15%;
        left: 10px;
    }
    .dot {
        right: 0;
        bottom: 50%;
        width: 60%;
        top: unset;
    }
    .section-title {
        font-size: 32px;
    }
    .section-sub-title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .mission-vision .item {
        width: 600px;
        height: 600px;
        padding: 6%;
        margin-inline: auto;
    }
    .mission-vision {
        & .row {
            & .col-lg-6:last-child {
                transform: unset;
            }
        }
    }
    .product-card{
        height: 440px;
    }
    .products.sec-gap {
        padding: 40px 20px;
    }
    .products-content{
        p{
            width: 100%;
        }
        ul {
            width: 100%;
            gap: 10px;
            li{
                width: auto;
                font-size: 15px;
                padding: 10px
            }
        }
    }
    .learn-more {
        font-size: 17px;
    }
    .d-t-s{
        display: none;
    }
    .why-choose{
        position: relative;
        /* .row{
            .col-lg-4:nth-child(2),
            .col-lg-4:nth-child(4){
                margin-top: 390px;
            }
        } */
    }
    .why-md-logo{
        /* position: absolute;
        left: 0;
        top: 100px;
        padding-inline: 170px; */
        margin: 0;
        .why-card{
            height: auto;
            padding: 0;
        }
    }
    .why-logo {
        width: 26%;
        margin-top: -256px;
        z-index: 0;
        margin-bottom: -312px;
    }
    .Capacity {
        .container {
            position: absolute;
            inset: 0;
            padding-top: 10px;
        }
    }
    .business-card {
        height: 260px;
        img {
            width: 45%;
        }
    }
    .video-box {
        span {
            width: 100px;
            font-size: 16px;
        }
    }
    .certificate-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .cer-card{
        width: 30%;
    }
    .sustainability-sec .slick-list {
        padding: 0vw 0vw;
    }
    .sustainability-sec{
        .slick-slide {
            margin: -35px 10px;
        }
    }
    .employee-testi {
        padding-top: 0;
    }
    .coma {
        top: -35px;
    }
    .l-o-g-o{
        margin: 0;
    }
    .initiatives {
        .container {
            border-radius: 10px;
        }
    }
    .ini-img {
        border-radius: 10px;
    }
    .customer-testi.sec-gap{
        padding: 30px 20px;
    }
    .customer-testi{
        .slick-dotted.slick-slider {
            margin-bottom: 0;
        }
    }
    .get-in-touch{
        padding-inline: 20px;
    }
    .get-left {
        
        border-radius: 19px;
    }
    .map {
        iframe {
            height: 350px;
        }
    }
    footer {
        padding-block: 25px;
        .row{
            .col-lg-4:first-child{
                text-align: center;
            }
        }
        .logo{
            margin-inline: auto;
        }
        .mb-20{
            margin-bottom: 6px;
        }
        .social-links{
            justify-content: center;
        }
        .copyright {
            padding-top: 30px;
            flex-direction: column;
            align-items: center;
        }
    }
    .why-choose{
        .row{
            .col-lg-4:nth-child(6),
            .col-lg-4:nth-child(8){
                z-index: -1;
            }

        }
    }
    .inner-banner{
        height: auto;
        .banner-content{
            h1{
                font-size: 40px;
            }
        }
    }
    .blog-listing{
        .col-lg-12{
            .row{
                .col:last-child{
                    order: -1;
                }
            }
        }
    }
    .blog-box, .blog-img{
        border-radius: 31px;
    }
    .blog-title {
        font-size: 28px;
    }
    .blog-listing {
        & .col-lg-4 {
            .blog-content {
                padding: 7px;
            }
        }
    }
    .white-hamburger::before{
        background: #000;
    }
    .white-hamburger::after{
        border-bottom: 2px solid #000000;
    }
    header.sticky{
        .white-hamburger::before{
            background: #FFF;
        }
        .white-hamburger::after{
            border-bottom: 2px solid #FFF;
        }
    }
    #menu>.white-menu>ul>li>a {
        color: #FFF;
    }
    .white-hamburger.menu-opened:after {
        background: #000;
    }
    .white-hamburger.menu-opened:before {
        background: #000;
    }
    .blog-details-banner {
        h1 {
            font-size: 28px;
        }
    }
    .details-banner{
        border-radius: 30px;
    }
    .recent-post-list {
        gap: 15px;
        img {
            width: 100px;
            height: 60px;
        }
        h4 {
            font-size: 18px;
        }
    }
    .pagination {
        a {
            padding-block: 16px;
        }
    }
    .gallery-box {
        height: 310px;
        border-radius: 25px;
        span {
            border-radius: 25px;
        }
    }
    .gallery {
        ul {
            gap: 8px;
            margin-bottom: 30px;
            li{
                font-size: 14px;
                padding: 6px 20px;
            }
        }
    }
    .product-banner{
        height: auto;
        .banner-item{
            height: 350px;
        }
        .banner-content{
            width: 40%;
            margin-top: 30px;
            h1{
                font-size: 34px;
                margin-bottom: 0;
            }
            h4 {
                font-size: 18px;
                margin-bottom: 10px;
            }
        }
    }
    .product-banner-left-img{
        bottom: -65px;
    }
    .yarn-dtls {
        padding-block: 20px;
    }
    .yarn-dtls-card {
        .card-title {
            font-size: 16px;
        }
        img {
            height: 45px;
        }
    }
    .yarn-catalog-tabs {
        margin-bottom: 10px;
    }
    .yarn-catalog-tabs {
        & ul {
            li {
                font-size: 16px;
                padding: 8px 20px;
            }
        }
    }
    .yarn-img {
        width: 68px;
        height: 68px;
        outline: 5px solid #d9d9d94c;
    }
    .yarn-catalog-card {
        padding: 30px 0;
    }
    .conventional-yarns{
        .section-title{
            font-size: 32px;
        }
        .row{
            .col-lg-6:last-child{
                order: -1;
            }
        }
        .container{
            border-radius: 16px;
        }
    }
    .conventional-yarns-content {
        padding: 0px 15px 15px 15px;
    }
    .conventional-yarns-img {
        img {
            border-radius: 16px;
        }
    }
    .quality-assurance {
        .container {
            border-radius: 33px;
        }
    }
    .plus-pin{
        top: 130px;
        left: 85px;
        p{
            opacity: 1;
            top: -105px;
        }
    }
    .plus-pin span{
        width: 35px;
        height: 35px;
        font-size: 25px;
        &::after{
            opacity: 1;
            scale: 1 1;
            height: 20px;
            bottom: 30px;
        }
    }
    .plus-pin-2 {
        top: 220px;
        left: 210px;
    }
    .plus-pin-3 {
        top: 155px;
        left: 420px;
    }
    .plus-pin-4 {
        top: 245px;
        left: unset;
        right: 95px;
    }
    .plus-pin-5 {
        top: unset;
        left: unset;
        bottom: 45px;
        right: 220px;
        p{
            background: #0000009e;
        }
    }
    .sustainability-content {
        border-radius: 15px;
        padding: 20px;
        .section-title {
            font-size: 26px;
        }
    }
    .sustainability-img {
        border-radius: 15px;
    }
    .product-get-in-touch {
        .get-form {
           border-radius: 0 0 19px 19px;
           box-shadow: 0 -80px 0 0 #F5FBFF;
        }
    }
    .about-about{
        .row .col-lg-6:nth-child(2){
            order: -1;
        }
    }
    .our-vision {
    .our-vision-img {
        position: relative;
        width: 100%;
    }
}
.business-about{
    .row .col-lg-6:nth-child(2) {
        order: 1;
    }
    .counter {
        padding-bottom: 0;
        margin-top: 40px;
    }
}
.business-verticals-icon {
    width: 176px;
    height: 176px;
}
.business-verticals-card {
    padding: 50px 50px;
    padding-top: 90px;
}
.business-faq {
    .blue-green-png {
        display: none;
    }
}
}
@media (max-width: 575px){
    .form-control::placeholder{
        font-size: 15px;
    }
	.testi-right {
    img {
        border-radius: 14px;
        margin-left: auto;
        margin-right: auto;
    }
}
    .call {
        width: 42px;
        height: 42px;
        padding: 13px;
    }
    .wp {
        width: 47px;
        height: 47px;
    }
    .dec {
        font-size: 15px;
    }
    .sec-gap {
        padding: 20px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .section-sub-title {
        font-size: 15px;
    }
    .primary-btn {
        font-size: 13px;
        padding: 14px 10px;
        border-radius: 7px;
        gap: 10px;
        img {
            width: 9px;
            height: 9px;
        }
    }
    .popup .popup__content {
        width: 90%;
    }
    .title {
        font-size: 22px;
    }
    p{
        font-size: 14px;
    }
    .hamburger {
        right: 9px;
        top: 12px;
    }
    .logo {
        width: 60px;
    }
    header {
        padding-block: 5px;
    }
    #menu .main-menu {
        top: 75px;
    }
    #menu>.main-menu>ul>li>a{
        font-size: 14px;
        padding: 10px 5px;
    }
    #menu .submenu-button {
        height: 42px;
    }
    #menu .submenu-button:after {
        top: 13px;
    }
    #menu .submenu-button.submenu-opened:after{
        top: 17px;
    }
    #menu .main-menu ul ul li a {
        font-size: 14px;
    }
    #menu .main-menu ul ul, #menu .main-menu ul ul ul {
        left: 8px;
    }
    .flex-box {
        margin-right: 65px;
    }
    .banner{
        height: 300px;
    }
    .banner-content {
        width: 80%;
        h1 {
            font-size: 32px;
        }
        p {
            font-size: 13px;
            margin-bottom: 10px;
        }
        &::before {
            top: 7px;
            height: 83px;
            width: 3px;
            left: -7px;
        }
    }
    .counter-item .counter-icon {
        width: 65px;
        height: 70px;
        position: relative;
        transform: unset;
        margin-bottom: 5px;
    }
    .counter-item {
        padding-left: 0;
    }
    .counter{
        padding-bottom: 0;
    }
    .we-are.sec-gap {
        padding:20px 10px;
    }
    .section-img {
        border-radius: 8px;
    }
    .mission-vision .item {
        width: auto;
        height: auto;
        border-radius: 20px;
        margin-bottom: 10px;
    }
    .mission-vision .item {
        h4 {
            font-size: 15px;
            margin-bottom: 4px;
        }
    }
    .blue-green-png {
        width: 15%;
        left: unset;
        right: 10px;
        top: -45px;
    }
    .products.sec-gap{
        padding: 20px 10px;
    }
    .product-card{
        border-radius: 10px;
    }
    .products-content {
        padding: 15px;
        border-radius: 10px;
        ul {
            margin-bottom: 10px;
            li {
                font-size: 13px;
                padding: 7px;
            }
        }
    }
    .why-md-logo {
        display: none;
    }
    .card-title {
        font-size: 16px;
    }
    .gr-s, .b-s {
        img {
            width: 22%;
        }
    }
    .l-o-g-o{
        display: none;
    }
    .Capacity{
        height: 350px;
    }
    .business.sec-gap{
        padding: 20px 0;
    }
    .business-card {
        gap: 10px;
        height: 180px;
        padding-inline: 10px;
        padding-block: 0;
        border-radius: 8px;
    }
    .business-slider{
        .slick-slide{
            margin: 0 5px;
        }
        .slick-list{
            margin: 0 -5px;
        }
    }
    .slick-dots {
        li {
            width: 7px;
            height: 7px;
            outline-offset: 2px;
        }
    }
    .slick-track {
        padding-block: 10px;
    }
    .video-box{
        margin-inline: 10px;
        border-radius: 10px;
        height: 300px;
        span{
            width: 90px;
            font-size: 14px;
        }
    }
    .cer-card {
        border-radius: 9px;
        img {
            height: 40px;
        }
    }
    .certificate-container {
        gap: 10px;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 30px;
    }
    .sustainability-sec .slick-track {
        padding-block: 30px;
    }
    .sustain-item-img {
        border-radius: 10px;
    }
    .employee-testi {
        padding-top: 0;
        .dec{
            margin-bottom: 0;
        }
        .employee-testi-slider{
            margin-bottom: 10px;
        }
        .testi-card{
            border-radius: 10px;
            padding: 10px;
            .coma{
                display: none;
            }
            .row{
                .col-md-5{
                    order: -1;
                }
            }
        }
    }
    .testi-right{
        border-radius: 10px;
    }
    .profile-name {
        font-size: 17px;
    }
    .profile {
        p {
            font-size: 13px;
        }
    }
    .employee-testi-slider {
        .slick-track {
            padding-block: 10px;
        }
    }
    .initiatives {
        ul{
            li{
                font-size: 14px;
                margin-bottom: 15px;
                &::before {
                    top: 5px;
                }
            }
        }
    }
    .customer-testi {
        .testi-card {
            border-radius: 10px;
            &::after{
                background: linear-gradient(90deg, rgba(0, 0, 0, 0.83) 100%, rgba(0, 0, 0, 0.00) 100%);
            }
            p {
                font-size: 14px;
            }
        }
        .testi-left{
            width: 100%;
			background: #00000091;
        }
    }
    .testi-bg{
        object-position: 67%;
    }
    .accordion__item{
        border-radius: 10px;
        margin-bottom: 8px;
    }
    .accordion__item .accordion__title {
        padding: 10px 60px 10px 10px;
        font-size: 16px;
        line-height: 120%;
    }
    .accordion__item  .accordion__content{
        padding: 10px 20px 10px 10px;
    }
    .accordion__title::after{
        width: 32px;
        height: 27px;
        font-size: 20px;
        top: 14px;
    }
    .accordion__title.accordion-active {
        padding-bottom: 0px;
    }
    .faq {
        .blue-green-png {
            display: none;
        }
    }
    .get-in-touch {
        padding-inline: 10px;
        padding-top: 0;
    }
    form label {
        font-size: 16px;
    }
    footer{
        text-align: center;
        padding-block: 20px;
        ul li {
            margin-block: 0px;
        }
        .copyright{
            padding-top: 20px;
        }
    }
    .form-control {
        font-size: 15px;
    }
    .map {
        iframe {
            height: 250px;
        }
    }
    .inner-banner {
        height: 200px;
        & .banner-content {
            & h1 {
                font-size: 26px;
            }
        }
    }
    .blog-box{
        padding: 10px 14px;
        border-radius: 13px;
    }
    .blog-img{
        border-radius: 13px;
        height: 220px;
    }
    .blog-title {
        font-size: 22px;
    }
    .date {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .blog-listing {
        & .col-lg-4 {
            & .blog-content {
                .blog-title {
                    font-size: 17px;
                }
            }
        }
    }
    .blog-details-banner{
        padding-top: 90px;
    }
    .featured {
        font-size: 13px;
        padding: 10px 15px;
        margin-bottom: 5px;
    }
    .blog-details-banner {
        h1 {
            font-size: 24px;
        }
    }
    .details-banner {
        border-radius: 10px;
    }
    .blog-details-content {
        h2 {
            font-size: 22px;
        }
        h3{
            font-size: 20px;
        }
        h4{
            font-size: 18px;
        }
        & ul, & ol {
            li {
                font-size: 14px;
                line-height: 20px;
                padding-left: 15px;
                &::before {
                    width: 7px;
                    height: 7px;
                    top: 6px;
                }
            }
        }
        ol{

            li{
                padding-left: 0;
            }
        }
    }
    .pagination{
        flex-direction: column;
        gap: 5px;
        a {
            padding-block: 10px;
        }
    }
    .pagi-top {
        font-size: 15px;
        gap: 3px;
    }
    .sidebar-service {
        border-radius: 7px;
        padding: 10px;
        margin-bottom: 15px;
        & ul {
            li {
                font-size: 14px;
                padding-left: 17px;
                 &::before {
                    width: 12px;
                    height: 12px;
                }
            }
        }
    }
    .recent-post-list{
        gap: 10px;
        h4 {
            font-size: 15px;
        }
    }
    .sidebar-form {
        label {
            font-size: 14px;
        }
        .btn-group{
            margin-top: 10px;
        }
        .title {
            font-size: 24px;
        }
    }
    .gallery {
        ul {
            gap: 8px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            li{
                font-size: 14px;
                padding: 6px 15px;
            }
        }
    }
    .gallery-box {
        height: 170px;
        border-radius: 12px;
        span {
            border-radius: 12px;
            img {
                width: 17px;
                height: 17px;
            }
        }
    }
    .contact-details-address{
        flex-direction: column;
        gap: 20px;
        padding-block: 15px;
    }
    .contact-box{
        width: 100%;
    }
    .contact-dtls-icon {
        width: 30px;
        height: 30px;
        padding: 8px;
        outline-width: 4px;
    }
    .contact-dtls-content {
        width: 85%;
        h4 {
            font-size: 17px;
        }
    }
    .email-box{
        position: relative;
        &::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, rgba(20, 113, 183, 0.00) 0%, #1471B7 49.88%, rgba(20, 113, 183, 0.00) 100%);
            bottom: -10px;
            left: 0;
        }
    }
    .product-banner{
        height: auto;
        .container{
            padding-top: 10px;
        }
        .banner-bg{
            object-position: left;
        }
        .banner-item{
            height: 300px;
        }
        .banner-content{
            width: 100%;
            text-align: center;
            margin-top: 24px;
            .btn-group{
                justify-content: center;
            }
            h1{
                font-size: 25px;
            }
            h4{
                font-size: 15px;
            }
        }
    }
    .banner-slider{
        .slick-dots{
            bottom: 10px;
        }
    }
    .product-banner-left-img {
        display: none;
    }
    .yarn-catalog-tabs {
        & ul {
            flex-wrap: wrap;
            gap: 10px;
            li {
                font-size: 14px;
                padding: 6px 13px;
            }
        }
    }
    .yarn-catalog-card {
        .card-title {
            font-size: 15px;
        }
    }
    .conventional-yarns {
        .section-title{
            font-size: 26px;
        }
        .container {
            border-radius: 10px;
        }
    }
    .conventional-yarns-img {
        padding: 9px;
        img{
            border-radius: 10px;
        }
    }
    .conventional-yarns-content {
        & ul {
            padding-left: 20px;
            li {
                font-size: 14px;
                &::marker {
                    font-size: 16px;
                }
            }
        }
    }
    .sustainability-img {
        border-radius: 10px;
    }
    .sustainability-content {
        border-radius: 10px;
        padding: 15px;
        .section-title{
            font-size: 22px;
        }
        ul{
            width: 100%;
            li{
                font-size: 14px;
                padding-left: 25px;
                &::before {
                    width: 23px;
                    height: 23px;
                    top: 3px;
                }
            }
        }
    }
    .product-counter.sec-gap {
        padding: 20px 0;
    }
    .product-faq {
        .section-title {
            font-size: 24px;
        }
        .accordion__item .accordion__content {
            padding: 0 20px 10px 0;
        }
    }
    .product-get-in-touch{
        padding-inline: 0;
        .get-left {
            border-radius: 12px;
        }
    }
    .quality-assurance {
        .container {
            border-radius: 13px;
            padding-inline: 5px;
            height: 450px;
        }
    }
    .plus-pin {
        &:hover {
            p {
                left: 28px;
            }
        }
    }
    .plus-pin{
        left: 20px;
        top: 50px;
        p{
            width: 85dvw;
            top: 50%;
            transform: translateY(-60%);
            left: 50px;
            text-align: left;
        }
    }

    .plus-pin-2 {
        top: 130px;
    }
    .plus-pin-3 {
        top: 210px;
        p {
            background: #0000005c;
        }
    }
    .plus-pin-4 {
        top: 290px;
        right: unset;
        p {
            background: #0000005c;
        }
    }
    .plus-pin-5 {
        top: 370px;
        bottom: unset;
        right: unset;
        p {
            background: #0000005c;
        }
    }
    .plus-pin span{
        width: 30px;
        height: 30px;
        font-size: 22px;
        &::after{
            width: 30px;
            height: 1px;
            right: -90%;
            top: 50%;
            transform: translateY(-50%);
            bottom: unset;
            left: unset;
        }
    }
    .product-get-in-touch {
        .get-form {
            padding: 10px;
        }
    }
    .testimonials {
    .testi-user-ig {
        width: 100px;
        height: 122px;
    }
    .qut-icon{
        width: 30px;
        height: auto;
    }
}
.video-testimonials{
    .testi-card {
            height: auto;
    }
    .play-btn {
        left: 20px;
        bottom: 19px;
        gap: 15px;
        z-index: 2;
        span {
            width: 40.025px;
            height: 40.025px;
            box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.105);
            padding: 13px;
        }
    }
}
    .about-banner {
        .banner-content {
            width: 76%;
            margin-top: 10%;
        }
    }
    .brand {
    padding-top: 15px;
    padding-bottom: 10px;
    h2 {
        margin-bottom: 15px;
        font-size: 16px;
        line-height: normal;
    }
}
.about-about {
    .counter {
        padding-bottom: 0;
        margin-top: 30px;
    }
        .counter-item {
        position: relative;
        text-align: center;
        background: #fff;
        padding: 15px;
    }
        .counter-item .counter-icon {
        margin-inline: auto;
    }
}
    .our-vision-content {
        text-align: center;
        padding: 20px 10px;
    }
    .our-vision-content {
        h5 {
            font-size: 16px;
        }
    }
    .core-value-card {
    padding: 40px 30px 30px 30px;
}
.culture-card {
    img {
        border-radius: 11px;
    }
}
.message-from-md-card {
    text-align: center;
    img {
        border-radius: 20px;
    }
}
    .message-from-md-card {
        text-align: center;
    }
    .business.blog-listing {
    & .col-lg-4 {
        .blog-box {
            padding: 5px;
             .blog-title {
    font-size: 16px;
    margin-bottom: 6px;
}
        }
    }
   
}
.bag {
    .date {
        line-height: normal;
    }
    
}
.container-fluid {
    padding: 0 15px;
}
.team-card {
    border-radius: 12px;
    padding: 6px;
    height: 100%;
}
.team-section {
    .row .col-lg-3:nth-child(2n) {
        transform: translateY(14px);
    }
}
    .team-card h3 {
        font-size: 18px;
        line-height: normal;
        margin-top: 0;
        margin-bottom: 4px;
    }
        .team-card p {
        font-size: 14px;
        margin: 0;
        line-height: normal;
        margin-bottom: 10px;
    }
.team-section {
    padding: 50px 0;
}
.practising-content {
    img {
        width: auto;
        height: auto;
        margin-bottom: 0px;
    }
}
.about-business{
    .business-card {
        height: 155px;
    }
}
.business-banner {
    .banner-content {
        width: 100%;
    }
    &::before {
        border-radius: 0;
        background: linear-gradient(90deg, rgba(1, 5, 11, 0.87) 0%, rgb(23 74 144 / 50%) 100%);
    }
}
.business-verticals {
    .col {
        padding-top: 80px;
    }
}
.business-verticals-icon {
    width: 146px;
    height: 146px;
    border-width: 7px;
    padding: 25px;
    top: -75px;
}
.business-verticals-card {
    padding: 40px 50px;
    padding-top: 90px;
    border-radius: 10px;
    &:hover {
        .business-verticals-icon {
            top: -85px;
        }
    }
}
.mb-50 {
    margin-bottom: 20px;
}
}


.customer-testi-slider .slick-dots {
    position: static !important;
	margin-bottom: -30px !important;
}


/* ================================
   WP PageNavi – Minimal Style
================================ */

.wp-pagenavi {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

/* Common button style */
.wp-pagenavi a,
.wp-pagenavi span {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.wp-pagenavi a:hover {
    background: #22A754;   /* primary red */
    color: #fff;
    border-color: #22A754;
}

/* Current page */
.wp-pagenavi span.current {
    background: #22A754;
    color: #fff;
    border-color: #22A754;
    cursor: default;
}

/* Disabled prev/next */
.wp-pagenavi span.extend {
    color: #999;
    border-color: #eee;
}

/* Prev & Next buttons */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
    padding: 0 18px;
    font-weight: 600;
}

/* Remove unwanted text */
.wp-pagenavi .pages {
    display: none;
}


.testi-left p {
    margin-bottom: 0;
}

ul ul{
  padding-left:40px;
}