* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #707070;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #639b42;
    background-image: -webkit-linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.4) 50%,
            transparent,
            transparent)
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}


/* font family */

@font-face {
    font-family: DoHyeon-Regular;
    src: url(../fonts/do-hy/DoHyeon-Regular.ttf);
}

@font-face {
    font-family: Roboto-Bold;
    src: url(../fonts/roboto/Roboto-Bold.ttf)
}

@font-face {
    font-family: Roboto-Light;
    src: url(../fonts/roboto/Roboto-Light.ttf)
}

@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: Inter-SemiBold;
    src: url(../fonts/inter/Inter-SemiBold.ttf);
}

/* animations */

.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: Inter-Regular;
}

p {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 23px;
    font-weight: 100;
    margin-bottom: 0rem !important;
}


h4,
h5,
h6 {
    font-family: Inter-Regular;
}

h1 {
    font-family: DoHyeon-Regular;

}


h3 {
    font-family: Inter-SemiBold;
    margin-bottom: 0 !important;
}

h2 {
    font-family: Roboto-Bold;
    font-size: 38px ! important;
    font-weight: 100;
    line-height: 40px;
}

h2 span {
    color: #669c43;
    font-family: Roboto-Light;
}

/* header */


.fr-und-ln.active {
    color: #652368 !important;
    font-family: inter-medium;
    position: relative;
}

.fr-und-ln.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    right: 0;
    left: 0;
    border-radius: 10px;
    bottom: -3px;
    margin: 0 auto;
    position: absolute;
    background: #652368;
}


.fl {
    height: 100%;
    width: 100%;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none !important;
}

.fl ul li {
    list-style: none ! important;
    margin: 40px 0;
}

.fl span {
    display: inline-block;
}

.mb-menu a {
    text-decoration: none !important;
    color: #fff;
    transition: all .3s;
}

.mb-menu li a {
    font-size: 20px;
    /* font-weight: bold; */
    /* padding: 10px 0; */
}

.nv-container,
.nv-menu-wrapper {
    height: 100%;
}

.hamburger-init {
    /* width: 35px; */
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    display: none;
}

.bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    transition: all .3s;
}



.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: fit-content;
}

.hamburger .line {
    fill: none;
    stroke: #000000;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr-pln .hamburger .line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}


.hamburger .line1 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger .line2 {
    stroke-dasharray: 55 60;
    stroke-width: 4;
}

.hamburger .line3 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger.open .line1 {
    stroke-dasharray: 60 160;
    stroke-dashoffset: -140;
    stroke-width: 4;
    stroke: #ffffff;
}

.hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 4;
}

.hamburger.open .line3 {
    stroke-dasharray: 60 207;
    stroke-dashoffset: -142;
    stroke-width: 4;
    stroke: #ffffff;
}


.nv-menu-wrapper {
    background: rgb(0, 0, 0);
    transition: all .3s;
    transform: scale(0);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nv-menu-wrapper.visible {
    transform: scale(1);
    border-radius: 0;
}

.mb-menu {
    position: absolute;
    max-width: 400px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-menu-wrapper li {
    opacity: 0;
    cursor: pointer;
    transition: all .3s;
}

.mb-menu.menu-active li:nth-child(1) {
    animation: moveItems 0.5s linear 0s forwards;
}

.mb-menu.menu-active li:nth-child(2) {
    animation: moveItems 0.5s linear 0.2s forwards;
}

.mb-menu.menu-active li:nth-child(3) {
    animation: moveItems 0.5s linear 0.5s forwards;
}

.mb-menu.menu-active li:nth-child(4) {
    animation: moveItems 0.5s linear 0.8s forwards;
}

.mb-menu.menu-active li:nth-child(5) {
    animation: moveItems 0.5s linear 1s forwards;
}

.mb-menu.menu-active li:nth-child(6) {
    animation: moveItems 0.5s linear 1.4s forwards;
}

.mb-menu.menu-active li:nth-child(7) {
    animation: moveItems 0.5s linear 1.7s forwards;
}

.menu-item-has-children {
    position: relative;
}


/* Animations */

@keyframes rotateHamburger {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes moveItems {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    30% {
        transform: translateY(-15px);
        opacity: .2;
    }

    50% {
        transform: translateY(-10px);
        opacity: .3;
    }

    80% {
        transform: translateY(-5px);
        opacity: .4;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes showClickGuide {
    0% {
        opacity: 0;
        transform: scale(.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fr-up {
    overflow: hidden;
    padding-left: 50px;
    margin-left: -50px;
}

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}

.hdr-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hdr-tp-lft {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-rgt {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-lft-inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-tp-lft-inr-flx p {
    color: #000;
}

.hdr-tp-lft-inr-flx i {
    color: #000;
}

.hdr-tp-rgt-inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-tp-rgt-inr-flx i {
    font-size: 22px;
    color: #000;
}

.hdr-logo img {
    height: 70px;
    object-fit: contain;
}

.hdr-logo {
    position: relative;
    top: -25px;
}

.hdr-btm {
    padding: 5px 0;
    position: relative;

}

.hdr-btm::after {
    height: 7px;
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background-color: #243818;
}

.hdr-fl-flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-btm-flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pages {
    position: absolute;
    right: 0;
    padding: 20px 80px 20px 120px;
    overflow: visible;
    margin-top: 4px;
}

.pages::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, #223517, #639B42);
    clip-path: polygon(7% 0%, 100% 2%, 100% 100%, 0% 100%);
    z-index: -1;
}

.pages a p {
    color: #fff !important;
}


/* ---------------------------------- */

.pages>ul {
    display: flex;
    gap: 45px;
    align-items: center;
    margin-bottom: 0 !important;
    list-style: none;
    padding: 0;
}

/* dropdown */
.dropdown {
    position: relative;
}

/* submenu */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none !important;
    min-width: 250px;
    z-index: 999;
    padding-left: 0 !important;

}

.submenu-cont {
    background: #ffffff;
    flex-direction: column !important;
    padding: 15px 0;
    list-style: none;
    border-radius: 0 0 5px 5px;
    margin-top: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    position: relative;
}

.submenu-cont::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: #639B42;
}

/* show */
.dropdown.active .submenu,
.dropdown:hover .submenu {
    display: block !important;
}

.submenu li {
    width: 100%;
    /* border-bottom: 1px solid #e4e4e4; */
    border-top: 1px solid #e9e9e9;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
    line-height: 19px;
}

.submenu li a:hover {
    background: #639B42;
    color: #fff !important;
}



/* ------------------------ */


.container2 {
    padding: 0 80px;
}

.hdr-btm-rgt {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hdr-tp {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-left: auto;
    padding-top: 15px;
}

.hdr-tp-flx {
    display: flex;
    align-items: start;
    gap: 10px;
}

.hdr-tp-rgt-flx {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-flx i {
    margin-top: 3px;
}

.hdr-tp-rgt-flx i {
    font-size: 20px;
}

.hdr-scl {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lng {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #639B42;
}

.lng p {
    font-size: 14px;
}

.lng i {
    font-size: 14px;
}

.header {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #fff;
}




/* Menu Button */
.menu-btn2 {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.menu-btn2 span {
    display: block;
    height: 3px;
    background: #000000;
    margin: 6px 0;
    transition: 0.3s;
}

/* Overlay */
.menu-overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1000;
}

.sldr-scl h3 {
    font-size: 18px ! important;
}

.sldr-scl ul {
    margin-top: 20px ! important;
}

.sldr-scl li {
    margin: 10px 0 ! important;
}

.sldr-scl a {
    font-size: 15px ! important;
}

/* Menu */
.mobile-menu2 {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1002;
    padding: 30px;
    overflow-y: scroll;
}

/* Active State */
.mobile-menu2.active {
    transform: translateX(0);
}

.menu-overlay2.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Content */
.mobile-menu2 ul {
    list-style: none;
    padding: 0;
}

.mobile-menu2 li {
    margin: 20px 0;
}

.mobile-menu2 a {
    text-decoration: none;
    font-size: 15px;
    color: #000;
}

.mobile-menu2 ul li p {
    font-size: 16px;
}


/* Close Button */

.close-btn2 {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}
.cls-btn-prnt{
    width: 100%;
    display: flex;
    justify-content: end;
    position: sticky;
    top: 0px;
}

.mb-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mb-nav-list li {
    border-bottom: 1px solid #ddd;
}

.mb-nav-list a,
.mb-nav-drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.mb-nav-list p {
    margin: 0;
}

.mb-nav-sub-list {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-left: 15px;
    background: #f5f5f5;
    transition: all 0.4s ease;
}

.mb-nav-sub-list.active {
    max-height: 340px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mb-nav-sub-list li a {
    padding: 3px 14px;
    display: block;
}
.mb-nav-drop-btn span {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.mb-nav-drop-btn.active span {
    transform: rotate(45deg);
}
.mb-nav-sub-list li {
    margin: 10px 0;
}


/* ----------------header close -------------- */


/*------------------ index ------------------ */


.ind1 {
    height: 78vh;
    width: 100%;
    background-image: url(..//imgs/mn-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 15px;
    display: flex;
    align-items: end;
}

.ind1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    clip-path: polygon(0 0, 58% 0, 100% 58%, 80% 100%, 0 100%);
    background-color: #2351157c;
}

.ind1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    clip-path: polygon(0 0, 68% 0, 100% 70%, 73% 100%, 0 100%);
    background-color: #447a0965;
}

.ind1-trngl1 {
    width: 300px;
    height: 300px;
    background-color: #29610767;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    clip-path: polygon(0% 100%, 100% 0, 100% 100%);
}

.ind1-trngl2 {
    width: 350px;
    height: 300px;
    background-color: #29610775;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    clip-path: polygon(0% 100%, 100% 0, 100% 100%);
}

.ind1-cont {
    margin-bottom: 130px;
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.ind1-cont h1 {
    font-size: 60px ! important;
    line-height: 56px ! important;
    margin-bottom: 20px ! important;
}

.ind1-cont h3 {
    font-size: 16px ! important;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #ffffff34;
    width: fit-content;
    margin-bottom: 15px ! important;
    border: 1px solid #588D39;
}

.ind1-cont p {
    font-size: 16px ! important;
}

.mn-btn1 p {
    padding: 10px 30px;
    background-image: linear-gradient(to right, #639B42, #25292C);
    border-radius: 7px;
    color: #fff;
    font-size: 15px ! important;
    width: fit-content;
    border: 1px solid #D5D5D5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.mn-btn2 p {
    padding: 10px 30px;
    background-color: #00000036;
    border-radius: 7px;
    color: #fff;
    font-size: 15px ! important;
    width: fit-content;
    border: 1px solid #D5D5D5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.mn-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;

}

.ind2 {
    padding: 100px 0 80px 0;
}

.ind2-lft {
    position: relative;
}

.ind2-lft-flx {
    display: flex;
    gap: 20px;
}

.ind2-lft-flx-img {
    width: 49%;
    height: 220px;
}

.ind2-lft-flx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.fr-mr-tp {
    margin-top: 20px;
}

.fr-mr-lft {
    margin-left: 20px;
}

.fr-mr-rt {
    margin-right: 20px;
}

.ind2-lft-rnd {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-image: linear-gradient(#639B42, #223517);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ind2-lft-rnd h2 {
    font-size: 42px ! important;
    color: #fff;
    margin-bottom: 0 ! important;

}

.ind2-lft-rnd p {
    font-size: 16px ! important;
    color: #fff;
    text-align: center;
    line-height: 20px;
}

.sec-tab {
    padding: 4px 20px 4px 6px;
    border: 1px solid #669c43;
    border-radius: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.sec-tab-rnd-brdr {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #669c43;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-tab-rnd {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #669c43;
}

.ind2-rgt {
    padding-top: 20px;
    padding-left: 2px;
}

.ind2-pnt-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 15px 0;
}

.ind2-pnt {
    height: 13px;
    width: 8px;
    background-color: #639B42;
    border-radius: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.ind2-pnts {
    margin-top: 20px;
}

.ind2-pnt-flx p {
    font-weight: 600;
    font-size: 16px;
}

.ind2-rgt-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.ind2-rgt-btn1 p {
    padding: 10px 30px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    color: #fff;
    font-size: 15px ! important;
    width: fit-content;
    border: 1px solid #D5D5D5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
    cursor: pointer;
}

.ind2-rgt-btn2 p {
    padding: 10px 30px;
    border-radius: 7px;
    color: #000000;
    font-size: 15px ! important;
    width: fit-content;
    border: 1px solid #000000;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.13);
    cursor: pointer;
}


/* ----------------goto------------------------- */

.goto-flx {
    display: flex;
    gap: 20px;
    position: relative;
}

.goto::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -10px;
    height: 2px;
    background-color: #eae8e8;
    left: 0;
}

.goto-inr-flx {
    display: flex;
    gap: 70px;
    align-items: center;
}

.gap-ln {
    width: 2px;
    height: 100%;
    background-color: #eae8e8;
}

.wth-pls {
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 5px;

}

.count2 span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.goto {
    display: flex;
    gap: 20px;
    width: fit-content;
    margin-top: 50px;
    width: 100%;
    padding: 40px 35px;
    justify-content: center;
    z-index: 2;
    position: relative;
    border-radius: 7px;
    border: 1px solid #fff;
    margin-top: 20px;
}

.wth-pls span .sqm {
    font-size: 16px !important;
}

.wth-pls .sqm-flx {
    display: flex;
    gap: 5px;
}

.goto .count {
    font-size: 65px !important;
    font-weight: 100;
    color: #464646;
    font-family: DoHyeon-Regular;

}

.goto .count-txt {
    font-size: 57px !important;
    font-weight: 100;
    color: #B39D91;
}

.wth-pls span p {
    font-size: 37px !important;
    font-weight: 600;
    color: #353535;
}



.count2 p {
    margin-top: 20px !important;
    max-width: 225px;
    font-size: 14px !important;
    line-height: 18px;
    font-weight: 600;
    color: #588D39;
    margin-bottom: 0 !important;

}

.count2 {
    margin: 5px 0;
    min-width: 150px;
}

.count2 h2 {
    font-size: 45px;
}

.wth-pls span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------------------------------------- */

.ind4 {
    padding: 80px 0;
}

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

.ind4-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.ind4-hdng h2 {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.ind4-hdng p {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}

.ind4-cont {
    margin-top: 50px;
}

.ind4-row-bx {
    width: 100%;
    height: 100%;
    border: 1px solid #d3d3d3;
    padding: 50px 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ind4-row-bx:hover {
    color: #ffffff;
}

.ind4-row-bx::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(#639B42, #223517);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.ind4-row-bx:hover::before {
    opacity: 1;
}

.ind4-row-bx:hover h3 {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx:hover h2 {
    -webkit-text-stroke: 1px #a5a5a5;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx:hover .dtl-btn p {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx:hover .dtl-btn i {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx h3 {
    font-size: 25px;
    margin-bottom: 15px ! important;
    color: #585858;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx h2 {
    font-size: 100px !important;
    color: transparent;
    -webkit-text-stroke: 1px #E8E8E8;
    position: absolute;
    top: 0px;
    left: 10px;
    transition: all 0.3s ease-in-out;
}

.ind4-row-bx-cont {
    position: relative;
    z-index: 1;
}

.dtl-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.dtl-btn p {
    color: #588D39;
    font-size: 16px ! important;
    transition: all 0.3s ease-in-out;
}

.dtl-btn i {
    color: #588D39;
    transition: all 0.3s ease-in-out;
}

.ind4-cont .col-md-4 {
    margin-bottom: 20px;
}

.ind4-btn p {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 30px;
    margin-top: 30px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    color: #fff;
}

.ind5 {
    padding-bottom: 50px;
}

.ind5-hdng {
    text-align: center;
    margin-bottom: 50px;
}

.ind5-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.logo-slider .item {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.171);
    border-radius: 10px;
    margin: 10px;
}

.ind6 {
    height: 100%;
    width: 100%;
    padding: 80px 0;
    background-image: url(../imgs/5.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.ind6-lft {
    height: 100%;
    display: flex;
    align-items: center;
}

.ind6-lft h2 {
    color: #ffffff;
}

.ind6-lft h3 {
    color: #ffffff;
    font-size: 20px ! important;
    margin: 10px 0 !important;
}

.ind6-lft p {
    color: #ffffff;
}

.ind6-lft h2 span {
    color: #69C532;
}

.ind6-lft .sec-tab {
    border: 1px solid #ffffff;
}

.ind6-lft .sec-tab-rnd-brdr {
    border: 2px solid #ffffff;
}

.ind6-lft .sec-tab-rnd {
    background-color: #ffffff;
}

.ind6-rgt-flx {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ind6-rgt-cont-bx {
    height: 200px;
    border: 1px solid #ffffff;
    background-color: #ffffff21;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    margin: 20px 10px;
}

.ind6-rgt {
    padding-left: 50px;
}

.ind6-rgt-cont-bx h3 {
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    margin: 10px 0 !important;
}

.ind6-rgt-cont-bx h4 {
    font-size: 18px;
    color: #ffff;
    text-align: center;
    color: #dfdfdf;
}

.ind6-bx-sd {
    width: 50%;
}

.mr-tp {
    position: relative;
    top: 40px;
}

.ind7 {
    padding: 80px 0;
}

.frm-hdng {
    text-align: center;
    margin-bottom: 50px;
}

.frm-hdng p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.frm-hdng h2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.ind7-form {
    max-width: 900px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.171);
    border-radius: 10px;
    margin: 0 auto;
    padding: 50px 30px;
}

.inp-flx1 {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.inp-flx2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.inp-flx1 .inp-div {
    width: 50%;
    margin: 10px 0;
}

.inp-flx2 .inp-div {
    width: 33.33%;
    margin: 10px 0;
}

.inp-div input {
    width: 100%;
    height: 40px;
    padding: 0px 5px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.inp-div select {
    width: 100%;
    height: 40px;
    padding: 0px 5px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.inp-div textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 150px;
    padding: 0px 5px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
}

.inp-div label {
    font-size: 14px;
    color: #747474;
    margin-bottom: 5px;
}

.ind-frm-btn button {
    width: 100%;
    padding: 10px 30px;
    margin-top: 10px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    color: #fff;
    text-align: center;
    border: none;
}



/* ---------------index close----------------  */

/* -----------------about start------------------ */

.page-header {
    height: 320px;
    width: 100%;
    background-image: url(../imgs/6.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
}

.page-header-cont {
    margin-bottom: 80px;
}

.brd-crmb {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    width: fit-content;
}

.brd-crmb p {
    color: #ffffff;
    font-size: 18px;
}

.page-header-cont h2 {
    color: #ffffff;
    font-size: 45px !important;
}

.abt1 {
    padding: 100px 0;
}

.abt1-rgt-cont p {
    margin: 10px 0;
}

.abt1-lft {
    padding-right: 30px;
    position: relative;
}

.abt1-lft-mn-img {
    width: 75%;
    height: 520px;
    margin-left: auto;
}

.abt1-lft-mn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.abt1-lft-sub-img {
    width: 240px;
    height: 300px;
    position: absolute;
    bottom: 70px;
    left: 0;
}

.abt1-lft-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.dot-img {
    width: 270px;
    object-fit: contain;
    position: absolute;
    top: -20px;
    left: 40px;
    z-index: -1;
}

.btm-rnd-img {
    width: 150px;
    object-fit: contain;
    position: absolute;
    bottom: -65px;
    left: 77px;
    z-index: -1;
}

.abt1-lft .ind2-lft-rnd {
    top: 37%;
    left: 22%;
}

.abt2 {
    padding: 80px 0;
    background-image: linear-gradient(45deg, #FBFBFB, #ECF8E6);
    margin-bottom: 50px;

}

.abt2-hdng {
    text-align: center;
    margin-bottom: 80px;
}

.abt2-hdng h2 {
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.abt2-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.abt2-lft-img {
    width: 90%;
    height: 442px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.abt2-lft-img:after {
    content: "";
    position: absolute;
    top: -35px;
    left: -20px;
    width: 72%;
    height: 90%;
    border-radius: 20px;
    background: #879480;
    z-index: -1;
}

.abt2-lft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.abt2-lft-btm-cont {
    width: 90%;
    height: 100%;
    margin-left: auto;
    padding: 20px 25px;
    margin-top: 10px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 20px;
}

.abt2-lft-btm-cont p {
    color: #ffffff;
}

.abt2-rgt {
    padding-left: 20px;
}

.abt2-rgt-tp-lft h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.abt2-rgt-tp-lft p {
    margin: 10px 0 !important;
}

.abt2-rgt-tp-rgt-btn p {
    padding: 10px 30px;
    margin-top: 30px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    font-size: 14px ! important;
    color: #fff;
    text-align: center;
    border: none;
    width: fit-content;

}

.abt2-rgt-lft-img {
    width: 72%;
    margin-top: 50px;
}

.abt2-rgt-lft-img img {
    width: 100%;
    object-fit: contain;
}

.abt3-hdng {
    text-align: center;
    margin-bottom: 80px;
}

.abt3-hdng p {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.abt3-cont {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.abt3-cont-flx {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    margin-top: 19px;
}

.abt3-cont-flx.flx2 {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    position: relative;
}

.abt3-cont-flx img {
    width: 180px;
    object-fit: contain;
}

.abt3-cont-flx h3 {
    font-size: 22px;
    margin-bottom: 10px ! important;
}

.abt3-cont-flx p {
    max-width: 500px;
}

.abt3-cont-flx-img {
    position: relative;
}

.abt3-cont-flx-img-numbr {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 35px ! important;
    color: #ffffff;
}

.abt3-cont-flx-img-numbr h2 {
    font-size: 35px ! important;
}

.abt3-cont-flx-img.hlf1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50%;
    background: #999999;
    z-index: -1;
}

.abt3-cont-flx-img.hlf2::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50%;
    background: #999999;
    z-index: -1;
}

.abt3-cont-flx-img.ful::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 114%;
    background: #999999;
    z-index: -1;
}

.abt3-cont-flx.undr-ln::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 83.8%;
    height: 2px;
    background: #999999;
    z-index: -1;
}

.abt3-cont-flx.flx2 .abt3-cont-flx-cont {
    text-align: right;
}

.abt4 {
    padding: 80px 0;
}

.abt4-hdng {
    text-align: center;
    margin-bottom: 80px;
}

.abt4-hdng p {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.team-slder .item {
    width: 100%;
    padding: 0 10px;
}

.team-img {
    width: 100%;
    height: 230px;
    border-radius: 0 100px 0 100px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cnsl1-cont h2 {
    font-size: 30px ! important;
    margin-bottom: 10px ! important;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-dtl {
    padding: 10px;
    border: 1px solid #639B42;
    border-radius: 10px;
    text-align: center;
}

.team-dtl h3 {
    font-size: 17px ! important;
    margin-bottom: 5px ! important;
}

.team-dtl p {
    font-size: 14px ! important;

}

.abt4-cont-btn p {
    padding: 10px 30px;
    margin-top: 30px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    font-size: 14px ! important;
    color: #fff;
    text-align: center;
    border: none;
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;
    cursor: pointer
}

/* -----------------about close------------------ */

/* --------------strategy-council---------------- */

.cnsl1 {
    padding: 80px 0;
}

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

.cnsl1-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.cnsl1-hdng h2 {
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.cnsl1-hdng p {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.cnsl1-cont {
    margin-top: 50px;
}

.cnsl1-cont p {
    max-width: 1100px;
}

.cnsl1-cont-mbr-sec {
    margin-top: 50px;
}

.cnsl1-cont-mbr-sec .item {
    margin-bottom: 20px;
}

.cnsl1-cont-mbr-sec .row {
    justify-content: start;
}

.cnsl1-cont-mbr-sec .col-md-2 {
    margin-bottom: 25px;
}

.pln-ln {
    width: 100%;
    height: 1px;
    background-color: #c0c0c0;
    margin-top: 40px;
}

/* -----------strategy-council close------------- */

/* ---------------Sustainability----------------- */

.sust1 {
    padding: 80px 0 0 0;
}

.sust-img {
    width: 400px;
    height: 500px;
    flex-shrink: 0;
}

.sust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sust1-hdng {
    text-align: center;
    margin-bottom: 80px;
}

.sust1-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.sust1-hdng h2 {
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.sust1-hdng p {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.sust1-cont h2 {
    font-size: 35px ! important;
}

.sust1-cont-flx1 {
    display: flex;
    align-items: start;
    gap: 30px;
}

.sust1-cont-flx1-rgt {
    max-width: 550px;
    padding-top: 30px;
}

.sust1-cont-flx1 .sust1-cont-flx1-rgt {
    padding-bottom: 100px;
}

.sust1-cont-flx1-rgt p {
    margin-bottom: 15px !important;
}

.sust1-cont-flx2 {
    display: flex;
    align-items: start;
    gap: 30px;
    justify-content: end;
    position: relative;
    padding: 60px 0;
    margin-top: -50px;
}

.sust1-cont-flx2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 85%;
    background-color: #F8F8F8;
    top: 0;
    left: -25%;
    z-index: -1;
}

.sust1-cont-flx2-rgt {
    max-width: 550px;
    padding-top: 30px;
}

.sust1-cont-flx2-rgt p {
    margin-bottom: 15px !important;
}

.sust1-cont-flx2 .sust-img {
    position: relative;
    top: -90px;
}


/* -----------Sustainability close--------------- */


/* -----------Work With Us--------------- */

.wrks1 {
    padding: 80px 0;
}

.wrks1-hdng {
    max-width: 550px;
}

.wrks1-img {
    width: 100%;
    height: 400px;
}

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

.wrks1-cont {
    margin-top: 50px;
}

.wrks1-img-cont {
    margin-top: 20px;
}

.wrks1-img-cont h3 {
    font-size: 23px;
    margin-bottom: 5px ! important;
}

.wrks1-cont-bx {
    margin: 20px 0;
}

.wrks1-img-cont-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.wrks1-img-cont-btn p {
    color: #639B42;
    margin-bottom: 0 ! important;
}

.news-dtl-cont .wrks1-img-cont-btn p {
    color: #639B42;
    margin-bottom: 0 ! important;
}

.wrks1-img-cont-btn i {
    color: #639B42;
}

/* -----------Work With Us close--------------- */

/*---------------- job posting -------------------*/

.jb-pst1 {
    padding: 80px 0;
}

.jb-pst1-cont {
    margin-top: 20px;
}

.jb-pst1-bx {
    margin: 15px 0;
    padding: 40px 30px;
    background-color: #ffffff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.158);
    border-radius: 15px;
}

.jb-pst1-bx h3 {
    font-size: 21px ! important;
    margin-bottom: 10px ! important;
}

.jb-pst1-bx h4 {
    font-size: 17px ! important;
    margin-bottom: 10px ! important;
    font-weight: 600;
}

.jb-pst1-contpnt-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 10px 0;
}

.jb-pst1-contpnt-flx h4 {
    font-size: 16px ! important;
    font-weight: 600;
}

.jb-pst1-flx-cont {
    margin-top: 30px;
}

.jb-pst1-flx-cont h3 {
    font-size: 22px;
    margin-bottom: 20px ! important;
}

.jb-pst1-flx-cont p {
    margin: 10px 0 ! important;
}

.jb-pst1-flx-cont-img {
    width: 100%;
    height: 250px;
}

.jb-pst1-flx-cont-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.jb-pst1-flx-cont-btm {
    margin-top: 30px;
}

.jb-pst1-flx-cont-btm .pnt-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 10px 0;
}

.jb-pst1-flx-cont-btm .pnt-flx .pnt {
    height: 15px;
    width: 8px;
    border-radius: 10px;
    background-color: #639B42;
    margin-top: 3px;
    flex-shrink: 0;
}

.jb-pst1-flx-cont-btm .pnt-flx p {
    margin: 0px ! important;
    max-width: 900px;
}

.jb-pst2 {
    padding-bottom: 80px;
}

.inp-div.fr-file input {
    padding: 5px 5px;
    border: none;
    background-color: #F8F8F8;
    border-radius: 7px;
}

/*------------ job posting close -----------------*/

/* -------------------news----------------------- */

.news1 {
    padding: 80px 0;
}

.news-img {
    width: 100%;
    height: 260px;
}

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

.news-cont {
    margin-top: 20px;
}

.news-dtl-cont h3 {
    font-size: 22px ! important;
    margin-bottom: 10px ! important;
}

.news-dtl-cont {
    margin-top: 15px;
}

.news-bx {
    margin-bottom: 30px;
}

.news-cont {
    margin-top: 50px;
}


/* ----------------news close-------------------- */

/* ----------------news dtls--------------------- */

.news-dtl1-hdng {
    max-width: 550px;
}

.news-dtl {
    padding: 80px 0;
}

.news-dtl-cont {
    margin-top: 20px;
}

.news-dtl-cont h3 {
    font-size: 20px ! important;
    margin-bottom: 10px;
    max-width: 700px;
}

.news-dtl-cont p {
    margin-bottom: 10px ! important;
}

/* -------------news dtls close------------------ */

/* -----------------blog -------------------------*/

.blg-img {
    width: 150px;
    height: 150px;
}

.blg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog-cont {
    margin-top: 40px;
}

.blgr-nm h3 {
    font-size: 18px;
}

.blgr-nm h4 {
    font-size: 16px;
}

.blog-cont-flx {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-cont-dtls h3 {
    font-size: 21px;
    margin-bottom: 10px ! important;
    max-width: 700px;
}

.blog-cont-dtls p {
    margin-bottom: 10px ! important;
}

.blog-cont-dtls {
    margin-top: 30px;
}

.chng-mkr-row-cont {
    margin-bottom: 130px;
}

.chng-mkr-row-cont-lft {
    width: 100%;
    padding: 50px 30px;
    height: 100%;
    display: flex;
    align-items: center;

}

.chng-mkr-row-cont-lft h3 {
    font-size: 22px ! important;
    margin-bottom: 10px ! important;
}

.chng-mkr-row-cont-lft.lft1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 125%;
    height: 100%;
    background-color: #F4F4F4;
    z-index: -1;
    border-radius: 15px;
}

.chng-mkr-row-cont-lft.lft2:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 125%;
    height: 100%;
    background-color: #F4F4F4;
    z-index: -1;
    border-radius: 15px;
}

.chng-mkr-row-cont-lft-img {
    width: 100%;
    height: 400px;
    position: relative;
    top: -50px;
}

.chng-mkr-row-cont-lft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.chng-mkr-row-cont-fl {
    margin-top: 80px;
}


/* ---------------blog close ---------------------*/

/*----------==--- why-choose-us ------------------*/

.why1 {
    padding: 80px 0;
}

.why1-cont {
    margin-top: 50px;
}

.why1-cont-bx {
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    width: 100%;
    text-align: center;
}

.why1-cont-bx.fr-clr {
    background-color: #639B42;
    color: #ffffff;
}

.why1-cont-bx h3 {
    font-size: 22px;
    margin-bottom: 10px ! important;
}

.bnfts-cont-bx p {
    transition: all 0.3s ease-in-out;
}

.bnfts-cont-bx h3 {
    transition: all 0.3s ease-in-out;
}

.bnfts-cont-bx {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* base layer */
.bnfts-cont-bx::before,
.bnfts-cont-bx::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(0% 100%, 0% 0%, 85% 0%, 100% 15%, 100% 100%);
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

/* default color */
.bnfts-cont-bx::before {
    background: linear-gradient(#f7f7f7, #f7f7f7);
    opacity: 1;
}

.bnfts-cont-bx.fr-bg-clr::before {
    background: linear-gradient(#639B42, #21400F);
    opacity: 1;
}

/* hover color */
.bnfts-cont-bx::after {
    background: linear-gradient(#639B42, #21400F);
    opacity: 0;
}

.bnfts-cont-bx:hover::after {
    opacity: 1;
}

.bnfts-cont-bx-rnd {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

/* green layer */
.bnfts-cont-bx-rnd::before,
.bnfts-cont-bx-rnd::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease-in-out;
}

/* default */
.bnfts-cont-bx-rnd::before {
    background: linear-gradient(#639B42, #1B350B);
    opacity: 1;
}

.bnfts-cont-bx.fr-bg-clr .bnfts-cont-bx-rnd::before {
    background: linear-gradient(#ffffff, #ffffff);
}

/* hover */
.bnfts-cont-bx-rnd::after {
    background: #ffffff;
    opacity: 0;
}

.bnfts-cont-bx:hover .bnfts-cont-bx-rnd::after {
    opacity: 1;
}

.bnfts-cont-bx:hover .bnfts-cont-bx-rnd::before {
    opacity: 0;
}

.bnfts-cont {
    padding-top: 50px;
    text-align: center;
}

.bnfts-cont h2 {
    font-size: 32px ! important;
    text-align: start;
}

.bnfts-cont .row {
    margin-top: 70px;
}

.bnfts-cont-bx h3 {
    font-size: 20px ! important;
    margin-bottom: 10px ! important;
}

.bnfts-cont-bx:hover h3 {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.bnfts-cont-bx:hover p {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.bnfts-cont-bx.fr-bg-clr h3 {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.bnfts-cont-bx.fr-bg-clr p {
    color: #ffffff;
}

/*----------==--- why-choose-us  close------------------*/

/*-------------------- contact---------------------- */

.cnt1 {
    padding: 80px 0;
}

.cnt1-cont {
    position: relative;
}

.cnt-abslt {
    font-size: 100px ! important;
    color: #c1c1c1;
    font-family: Inter-SemiBold;
    margin-bottom: 80px;
}

.cnt1-lft h3 {
    font-size: 22px ! important;
    margin-bottom: 10px ! important;
}

.cnt1-lft-flx-fl {
    margin-top: 30px;
}

.cnt1-lft-flx {
    display: flex;
    align-items: start;
    gap: 15px;
    margin: 20px 0 ! important;
}

.cnt1-lft-flx p {
    max-width: 300px;
    margin: 5px 0 ! important;
}

.cnt1-lft-flx p span {
    font-weight: 600;
    color: #757575;
}

.rnd {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    flex-shrink: 0;
}

.rnd i {
    font-size: 22px;
}

.cnt1-cont .row {
    margin-top: 50px;
}

.cnt1-cont {
    margin-top: 30px;
}

.cnct-scl {
    margin-top: 50px;
}

.cnct-scl-flx {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cnct-scl-bx {
    width: 50px;
    height: 50px;
    border: 1px solid #a7a7a7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    border-radius: 5px;

}

.cnct-scl-bx i {
    font-size: 25px;
}

.cnt-inp-div input {
    padding: 0 10px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    margin-bottom: 15px;
    height: 45px;
}

.cnt-inp-div textarea {
    padding: 10px;
    border: 1px solid #c5c5c5;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    margin-bottom: 15px;
}

.cnt-inp-div button {
    width: 100%;
    padding: 10px 30px;
    margin-top: 5px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    color: #fff;
    text-align: center;
    border: none;
}

.cnt1-rgt h3 {
    font-size: 25px ! important;
    margin-bottom: 30px ! important;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.cnt1-rgt {
    padding: 50px 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    margin: 0 50px ! important;
}

.cnt-inp-div label {
    font-size: 14px;
    color: #929292;
    margin-bottom: 5px;
}

/*---------------- contact close-------------------- */

/* -------------brand implementation---------------- */

.brnd1 {
    padding: 80px 0;
}

.brnd1-tp-rgt p {
    max-width: 400px;
    text-align: end;
    margin-left: auto;
    margin-top: 50px;
}

.brnd2-lft {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.brnd2-lft-flx-img {
    width: 49%;
    clip-path: polygon(0% 100%, 0% 0%, 85% 0%, 100% 15%, 100% 100%);
    overflow: hidden;
}

.brnd2-img1 {
    height: 400px;
    object-fit: cover;
    position: relative;
    top: 50px;

}

.brnd2-img2 {
    height: 400px;
    object-fit: cover;
    position: relative;
    top: -50px;

}

.brnd2-rgt {
    padding-left: 30px;
}

.brnd2-rgt-btn p {
    padding: 10px 30px;
    width: fit-content;
    margin-top: 30px;
    background-image: linear-gradient(#639B42, #243818);
    border-radius: 7px;
    color: #fff;
    text-align: center;
    border: none;
    font-size: 14px ! important;
}

.brnd2-lft-cont-bx {
    position: absolute;
    bottom: -90px;
    right: -30px;
    max-width: 380px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
}

.brnd2-lft-cont-bx h3 {
    font-size: 20px;
    margin-bottom: 10px ! important;
}

.brnd2 {
    padding-top: 60px;
    padding-bottom: 160px;
}

.brnd2-lft .abslt-bx {
    width: 94%;
    height: 200px;
    position: absolute;
    top: -80px;
    left: 22px;
    background-color: #eeeeee;
}

.brnd3 {
    padding: 0 0 80px 0;
}

.brnd3-bx {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#639B42, #243818);
    padding: 15px 30px 30px;
    text-align: center;
}

.brnd3 .col-md-4 {
    margin-bottom: 20px;
}

.log-rnd {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
}

.log-rnd img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.brnd3-bx h3 {
    font-size: 22px;
    margin-bottom: 10px ! important;
    color: #fff;
}

.brnd3-bx p {
    color: #fff;
    margin-bottom: 10px ! important;
}



/* ----------brand implementation close---------------- */

/* -----------------capabilities--------------------- */

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

.cap1-hdng .sec-tab {
    margin: 0 auto;
    margin-bottom: 10px;
}

.cap1 {
    padding: 80px 0 30px 0;
}

.cap-img {
    width: 90%;
    height: 250px;
    margin: 0 auto;
    margin-bottom: 20px;
    clip-path: polygon(0% 100%, 0% 0%, 85% 0%, 100% 15%, 100% 100%);

}

.cap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cap--txt-cont {
    width: 100%;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding: 0 30px 30px;
    margin-bottom: 50px;
}

.cap--txt-cont::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180%;
    background-image: linear-gradient(150deg, #639B42, #243818);
    z-index: -1;
}

.cap--txt-cont h3 {
    font-size: 20px;
    margin-bottom: 10px ! important;
}

.cap1-cont {
    margin-top: 50px;
}

.cap2-hdng {
    text-align: center;
    margin-bottom: 30px;
}

.cap2-flx-flx {
    display: flex;
    gap: 40px;
    align-items: start;
    margin: 50px 0;
}

.cap2-rgt-flx {
    display: flex;
    align-items: start;
}

.cap2-flx-flx-dt {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #639B42;
    flex-shrink: 0;
}

.cap2-flx-cont {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.cap2-flx-cont::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 7px;
    width: 2px;
    height: 100%;
    background-color: #639B42;
}

.cap2-flx-cntr {
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    gap: 20px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    background-image: linear-gradient(to right, #EDFFE3, #68994A);
    flex-shrink: 0;
    position: relative;
    width: 300px;
}

.cap2-flx-cntr-rnd {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cap2-flx-cntr h3 {
    font-size: 16px;
    font-weight: 100;
}

.cap2-lst-bx {
    padding: 20px 30px 20px 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    /* max-width: 800px; */
    margin-left: -20px;
}

.cap1-hdng {
    margin-bottom: 30px;
}

/* --------------capabilities close-------------------- */


/* -------------------webinar------------------------- */

.web1 {
    padding: 80px 0;
}

.web1-bx {
    width: 100%;
    border: 1px solid #639B42;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    padding: 40px 30px;
    margin-bottom: 30px;
}

.web1-bx-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 15px 0;
}

.web1-bx h3 {
    font-size: 20px;
    margin-bottom: 10px ! important;
}

.web1-bx-flx-dt {
    width: 10px;
    height: 10px;
    background-color: #000;
    flex-shrink: 0;
    border-radius: 50%;
    margin-top: 5px;
}


/* ----------------webinar close---------------------- */


/* ----------------our clients------------------------ */

.clnt1 {
    padding: 80px 0;
}

.clnt1-box-img {
    width: 100%;
    height: 300px;
}

.clnt1-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.clnt1-box-cont h3 {
    font-size: 21px;
    margin-bottom: 5px ! important;
}

.clnt1-box-cont {
    margin-top: 15px;
    margin-bottom: 30px;
}


/* --------------our clients close-------------------- */


/*---------------- poduct ------------------ */

.prdct-bx {
    margin-bottom: 20px;
}

.prdct-bx-img {
    width: 100%;
    height: 250px;
}

.prdct-bx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.prdct-bx-cont h3 {
    font-size: 20px;
    color: #000;
}

.prdct-bx-cont {
    margin-top: 10px;
}

/*---------------- poduct close ------------------ */



/*---------------- poduct details ------------------ */

.prd-dtl1 {
    padding: 80px 0;
}

.prd-dtl-cont p {
    margin: 10px 0 ! important;
}

.prdct-dtl-slder {
    margin-top: 50px;
}

.prdct-dtl-slder .item {
    padding: 0 10px;
}

.prdct-dtl-slder .item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.prdct-dtl-slder .slick-arrow {
    padding: 10px 18px;
    border-radius: 50%;
    background-color: #639B42;
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.prdct-dtl-slder .prev_button {
    left: -22px;
}

.prdct-dtl-slder .next_button {
    right: -22px;
}

/*------------- poduct details close ------------------ */


/* -----------------who we serve----------------------- */
.we-srv-lft {
    padding-right: 30px;
}

.we-srv-lft h2 {
    max-width: 550px;
}

.we-srv1 {
    padding: 80px 0;
}

.we-srv-rgt {
    width: 100%;
    height: 300px;
}

.we-srv-rgt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.we-srv1-cont {
    margin-top: 50px;
}

.we-srv1-cont-btm {
    margin-top: 50px;
}

.we-srv1-cont-btm h3 {
    font-size: 22px;
    margin-bottom: 10px ! important;
}

/* -------------who we serve close----------------- */

/* ------------- product category------------------ */
.prd-cat1 {
    padding: 80px 0;
}

.prd-cat1-hdng {
    margin-bottom: 50px;
}

/* ------------- product category close--------------- */

/*------------------ projects------------------- */

.proj1 {
    padding: 80px 0;
}

.proj-img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.proj1-cont {
    margin-top: 50px;
}

/*--------------- projects close ---------------- */

/* footer  */

footer {
    padding: 80px 0 40px 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(#d5f0c4, #d5f0c4);
}

.ftr-logo img {
    width: 100%;
    object-fit: contain;
}

.ftr-logo {
    width: 250px;
    margin-bottom: 15px;
}

.ftr-hdr p {
    text-align: center;
}

.ftr-conts {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.ftr-conts-lft {
    width: 42%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.ftr-conts-rgt {
    width: 45%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

/* .ftr-conts{
    margin-top: 50px;
} */
.ftr-conts h3 {
    font-size: 17px;
    margin-bottom: 15px !important;
}

.ftr-conts ul {
    padding-left: 0px;
}

.ftr-conts ul li {
    margin: 20px 0;
}

.ftr-conts ul li a {
    color: #000;
    display: flex;
    align-items: start;
    gap: 10px;
}

.ftr-conts p {
    max-width: 320px;
}

.ftr-conts ul li a i {
    margin-top: 3px;
    font-size: 20px;
}

.copy-rt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}

.copy-rt img {
    height: 16px;
    object-fit: contain;
    position: relative;
}

.copy-rt p {
    font-size: 13px;
    text-align: center;
}

.bk-tp-btn {
    position: fixed;
    right: 60px;
    bottom: 8%;
    z-index: 3;

}

.wtsapp {
    width: 50px;
    object-fit: contain;
    position: fixed;
    right: 30px;
    bottom: 170px;
    z-index: 3;
}

.bk-tp-btn button {
    background-image: linear-gradient(#639b42, #426b2a);
    padding: 5px 10px;
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;

}

.srv-img-an2 {
    transform: translatey(0px);
    -webkit-animation: float2 3s ease-in-out infinite;
    animation: float2 3s ease-in-out infinite;
}

@keyframes float2 {
    0% {

        transform: translatey(0px);
    }

    50% {

        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* footer close  */
