* {
    -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: #01b101;
    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: CabinCondensed-Regular;
    src: url(../assets/fonts/cabin/CabinCondensed-Regular.ttf);
}

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

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

@font-face {
    font-family: Gabarito-Regular;
    src: url(../assets/fonts/gab/Gabarito-Regular.ttf);
}

@font-face {
    font-family: Gabarito-SemiBold;
    src: url(../assets/fonts/gab/Gabarito-SemiBold.ttf);
}

@font-face {
    font-family: Koulen-Regular;
    src: url(../assets/fonts/koulen/Koulen-Regular.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;
}

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

h1 {
    font-family: Koulen-Regular;
    font-size: 55px;
    font-weight: 100;
    line-height: 55px;

}


h2 {
    font-family: Koulen-Regular;
    font-size: 48px;
    font-weight: 100;
    line-height: 48px;
}

h2 span {
    color: #85C64C;
}

/* 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%;
}

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

.fl span {
    display: inline-block;
}

.mb-menu a {
    text-decoration: none;
    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;
}

.ct-brs {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    z-index: 4;
}

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

.pages {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pages a p {
    color: #000000;
}

.ct-brs p {
    padding: 7px 30px;
    background: linear-gradient(to bottom, #942368, #611C65);
    border-radius: 5px;
    color: #fff;
}

.hdr-btm {
    margin-top: 24px;
}



/* 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);
    }
}

.header {
    padding: 15px 0 10px 0;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 4;
}

.header.hdr2 {
    padding: 45px 0 18px 0;
    position: absolute;
    background-color: #fff;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 4;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.137);
}

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

.header-conts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-logos img {
    height: 60px;
    object-fit: contain;
}

.pages {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pages a p {
    color: #ffffff;
}

.hdr2 .pages a p {
    color: #000000;
}

.ind-cnct-btn p {
    padding: 8px 40px;
    /* background-color: #01A64E; */
    border-radius: 5px;
    border: 1px solid #ffffff;
    color: #ffffff;
    width: fit-content;
}

.hdr2 .ind-cnct-btn p {
    padding: 8px 40px;
    /* background-color: #01A64E; */
    border-radius: 5px;
    border: 1px solid #000000;
    color: #000000;
    width: fit-content;
}

.pg-cnt-btn {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* header close */

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

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}
.mbr-hdng{
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
}

/* index */

.ind1 {
    height: 100vh;
    width: 100%;
    background-image: url(../assets/imgs/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* display: flex;
    align-items: end;
    justify-content: center; */
}

.ind1::after {
    content: "";
    position: absolute;
    height: 80%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, #000000ad, #00000000);
}

.mn-cont {
    width:100%;
    margin-bottom: 250px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mn-cont h1 {
    color: #ffffff;
    margin: 0 auto;
    max-width: 850px;
    text-align: center;
}

.mn-cont p {
    font-size: 18px;
    color: #fff;
    line-height: 25px;
    text-align: center;
    max-width: 800px;
    margin: 10px auto;

}

.mn-cont .p {
    font-size: 15px !important;
    padding: 8px 30px;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    width: fit-content;
    margin: 20px auto 0 auto !important;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}
.ind2-inr-rgt .p {
    font-size: 15px !important;
    padding: 8px 30px;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    width: fit-content;
    margin-left: auto !important;
    margin-top: 30px;
    border-radius: 4px;
    color: #fff;
}

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

.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;
    background-color: #ffffff;
    margin-top: 50px;
    width: 100%;
    padding: 9px 35px;
    justify-content: center;
    z-index: 2;
    position: relative;
    border-radius: 7px;
    border: 1px solid #fff;
    margin-bottom: 50px;
    margin-top: 20px;
    /* box-shadow: 0 2px 7px #0000002a; */
}

.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: #38a99a;
    font-family: Koulen-Regular;
}

.wth-pls span p {
    font-size: 37px !important;
    font-weight: 600;
    color: #38a99a;
    font-family: Inter-Regular;
}



.count2 p {
    margin-top: 20px !important;
    max-width: 166px;
    font-size: 16px !important;
    line-height: 18px;
    font-weight: 600;
    color: #000000;
    font-family: Inter-Regular;
    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;
}

.ind2 {
    padding: 50px 0 0 0;
    position: relative;
}

.ind2-ln {
    height: 1px;
    width: 65%;
    background-color: #b2b2b2;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

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

.ind2-inr-lft {
    width: 40%;
}

.ind2-inr-rgt {
    width: 60%;
}

.ind2-inr-lft h2 {
    font-size: 120px;
    line-height: 80px;
}

.ind2-inr-lft h2 span {
    font-size: 48px;
    color: #85C64C;
}

.ind2-inr-rgt p {
    text-align: end;
}

.ind3 {
    padding: 50px 0;
    position: relative;
}

.brdr-tcxt {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 120px;
    -webkit-text-stroke: 1px #f1f1f1;
    color: transparent;
    z-index: -1;
}

.brdr-tcxt {
    position: absolute;
    top: 70px;
    left: 10%;
    font-size: 150px !important;
    -webkit-text-stroke: 1px #38a99a1a;
    color: transparent;
    z-index: -1;
}

.brdr-tcxt.in-tp {
    position: absolute;
    top: 140px;
    left: 40%;
    font-size: 150px;
        left: 50%;
    transform: translateX(-50%);
    -webkit-text-stroke: .3px #e0e0e0;
    color: transparent;
    z-index: 1;
}

.ind4-cont-img {
    width: 100%;
    height: 550px;
}

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

.ind4-cont {
    max-width: 1100px;
    margin: 0 auto;

}

.ind4 {
    padding: 50px 0;
}

.ind4-cont p {
    max-width: 500px;
    text-align: end;
    margin-left: auto;
    margin-top: 30px;
    /* font-weight: 600; */
    font-size: 16px;
}

.ind5 {
    position: relative;
    padding: 100px 0;
}

.ind5-mn {
    width: 440px;
    height: 440px;
    margin: 0 auto;
    border-radius: 100%;
}

.ind5-mn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.ind5-rgt {
    position: relative;
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
}

.ind5 p {
    margin-top: 20px;
}
.ind5-pnt-flx{
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 10px;
}
.ind5-pnt{
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 100%;
    margin-top: 7px;
        flex-shrink: 0;
}
.ind5-pnt-flx p{
    margin-top: 0 !important;
    font-weight: 600;
}

.grad1 {
    width: 233px;
    object-fit: contain;
    position: absolute;
    top: -60px;
    left: -23px;
    z-index: -1;
}
.ind5-flx-fl{
    display: flex;
    gap: 50px;
}
.grad2 {
    width: 233px;
    object-fit: contain;
    position: absolute;
    bottom: -60px;
    right: -23px;
    z-index: -1;
}

.trngl1 {
    width: 150px;
    object-fit: contain;
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: -1;
}

.trngl2 {
    width: 150px;
    object-fit: contain;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: -1;
}

.ind5-left .p {
    padding: 8px 30px;
    border: 1px solid #000000;
    border-radius: 5px;
    width: fit-content;
    color: #000000;
    font-size: 15px;
    margin-top: 40px;
}

.ind6 {
    padding: 160px 0;
    height: 100%;
    width: 100%;
    background-color: #f6fbff;
    margin-top: 50px;
    position: relative;
}

.ind6-tp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
}

.ind6-btm {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    object-fit: contain;
}

.ind6-cont-hdng {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.ind6-cont-tms-tp {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.ind6-cont-tms-btm {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 100px;
    flex-wrap: wrap;
}

.ind6-cont-tms-tp-bx {
    width: 250px;
    /* width: 200px; */
    height: 100%;
}

.ind6-cont-tms-btm-bx {
    width: 150px;
    height: 100%;
        text-align: center;
}

.ind6-cont-tms-tp-bx img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-tms-btm-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind6-cont-tms-tp-bx {
    text-align: center;
}
.mmbr-btn{
    padding: 3px 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    width: fit-content;
    color: #000000;
    font-size: 13px;
    margin: 5px auto 0 auto;
    cursor: pointer;
}

.ind6-cont-tms-tp-bx h3 {
    margin-top: 10px;
    font-size: 18px;
}

.ind6-cont-tms-btm-bx h3 {
    margin-top: 10px;
    font-size: 15px;
}

.ind7 {
    height: 100%;
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.ind7 h2 {
    font-size: 90px;
    line-height: 70px;
    margin-bottom: 10px;
}

.ind7 h2 span {
    font-size: 48px;
}

.ind7 .brdr-tcxt {
    position: absolute;
    top: 20px;
    left: 18%;
    font-size: 150px !important;
    -webkit-text-stroke: 1px #f6f6f6;
    color: transparent;
    z-index: -1;
}

.ind7-rgt-flx {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 15px;
}

.ind7-rgt-flx-bx {
    height: 100%;
    width: 50%;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 20px;

}
.ind7-rgt-flx-bx h3{
    color: #ffffff;
}
.ind7-rgt-flx-bx p{
    color: #ffffff;
}

.ind7-rgt-flx-bx h3 {
    margin-bottom: 7px;
}

.ind7 .p {
    padding: 8px 30px;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    width: fit-content;
    margin-top: 40px;
    border-radius: 4px;
    color: #fff;
}

.ind8 {
    padding: 80px 0;
}

.ind8-hdng {
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;

}

.ind8-hdng p {
    max-width: 850px;
    margin: 10px auto;
}

.ind-cont-bx {
    height: 100%;
    width: 100%;
    margin-top: 30px;
}
.ind8-vie-btn{
    padding: 8px 30px;
    background-color: #79C143;
    width: fit-content;
    margin:40px auto 0 auto;
    border-radius: 4px;
    color: #fff;
}

.ind-cont-bx img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    /* border-radius: 10px; */
    margin-bottom: 3px;
}

.ind-cont-bx h3 {
    padding: 12px 10px;
    font-size: 17px;
    width: 100%;
    background-color: #EEEEEE;
    text-align: center;
}

.ind9-hdng h2 {
    text-align: center;

}

.ind9 {
    padding: 40px 0 80px 0;
}

.testi-bx {
    width: 100%;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
}

.testimoni {
    margin-top: 50px;
    max-width: 1100px;
    margin: 40px auto 0 auto;

}

.testimoni .item {
    padding: 0 10px;
}

.prof-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.prof-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e9e9e9;
}

.test-ic {
    width: 50px;
    object-fit: contain;
    position: absolute;
    top: 20px;
    right: 20px;
}

.spnsr-flx {
    gap: 15px;
}
.members-fl{
    margin-top: 50px;
}
.undr-ln{
    width: 90%;
    height: 1px ;
    background-color: #cacaca;
    margin: 70px auto;
}
.mbr-btn{
    padding: 8px 30px;
    background-color: #79C143;
    width: fit-content;
    margin: 50px auto 0 auto;
    border-radius: 4px;
    color: #fff;
}
.bcm-mbr{
    padding: 0  0 30px 0;
}
.bcm-mbr-lft h2{
    font-size: 35px;
}
.bcm-mbr-rgt{
    width: 100%;
    position: relative;
    bottom: -30px;
    height: 100%;
    display: flex;
    align-items: end;
}
.mmbr-flx-fl{
    margin-top: 50px;
}
.bcm-mbr-rgt img{
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}
.doc-pnts{
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 10px;
}
.dc-pnt{
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 100%;
    margin-top: 7px;
    flex-shrink: 0;
}
.mmbr-flx-fl{
    display: flex;
    align-items: start;
    gap: 30px;
    height: 100%;
}
.mbr-btm-bx{
    height: 100px;
    width: 100%;
    background-color: #f1f1f1;
}
.doc-ln{
    height: 100%;
    width: 1px;
    background-color: #d3d3d3;
}
.fr-ln{
    border-right: 1px solid #d3d3d3;
    padding-right: 50px;
}
/* index  close */

/* about  */
.pg-top {
    height: 290px;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: end;
    position: relative;
    margin-bottom: 80px;
}
.hlts{
    font-size: 16px;
    margin: 15px 0;
    color: #38a99a;
}
.abt-flx h3{
    font-size: 16px;
}
.abt-flx p{
    margin-top: 0px !important;
}
.abt-flx-fl p{
    margin-top: 10px;
}
.abt-flx-fl{
    margin: 20px 0;
}
.pg-top-cont {
    margin-bottom: 25px;
}

.pg-brdcrmp {
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    margin: 10px auto;
}

.pg-brdcrmp p {
    color: #000000;
    font-weight: 600;
}

.pg-to-ln {
    position: absolute;
    height: 1px;
    width: 50%;
    background-color: #d6d6d6;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.abt1{
    max-width: 1200px;
    margin: 0 auto;
}

.abt1-cont {
    max-width: 1200px;
    height: 530px;
    margin: 0 auto;
    margin-bottom: 80px;
}

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

.abt2 {
    padding: 80px 0;
    position: relative;
}
.abt-flx{
    display: flex;
    align-items: center;
    gap: 10px;
}

.abt2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background-color: #e0e0e0;
    z-index: -1;
}
.abt2-rgt ul li{
    list-style: circle;
    max-width: 700px;
    margin: 10px 0;
}
.abt2-rgt ul{
    margin-left: 17px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.abt2-rgt {
    margin-top: 30px;
}

.abt2-rgt h2 {
    margin: 10px 0;
}

.abt2-rgt-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 10px;
}

.abt2-rgt-flx p {
    font-weight: 600;
}

.abt2-rgt-pnt {
    width: 10px;
    height: 10px;
    background-color: #000000;
    border-radius: 50%;
    margin-top: 8px;
}

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

.abt-cnt-btn {
    padding: 7px 30px;
    border-radius: 5px;
    border: 1px solid #000000;
    margin-top: 40px;
    color: #000000;
    width: fit-content;
}

.abt2-lft-mn-img {
    width: 80%;
    height: 500px;
    position: relative;
}

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

.abt2-lft-sub-img {
    width: 240px;
    height: 283px;
    position: absolute;
    bottom: 120px;
    right: 20px;
}

.abt2-lft-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 8px solid #ffffff;
    /* border-radius: 10px; */
}

.abt2-lft {
    position: relative;
}

.abt2-lft-mn-img::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -25px;
    width: 90%;
    height: 95%;
    border: 5px solid #b3b3b3;
    border-radius: 10px 0 0 0;
    z-index: -1;
}

.abt3 {
    padding: 80px 0 40px 0;
}

.abt3-flx {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 30px;
    max-width: 1100px;
    margin:0 auto  70px auto;
}

.abt3-img {
    width: 530px;
    height: 300px;
    flex-shrink: 0;
}

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

.abt3-txt {
    margin-top: 30px;
}

.abt3-txt h2 {
    font-size: 30px;
    color: #38a99a;
}

/* about close */

/* events  */

.evnt1{
    padding-bottom: 80px;
}
.evnt1 .col-md-6{
    padding-bottom: 40px;
}
.evnt1-cont-img{
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
}
.evnt1-cont-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evnt1-cont-txt h3{
    margin: 10px 0;
}
.evnt1-cont-txt .p{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 30px;
    background-color: #e9e9e9;
    color: #000000;
    width: fit-content;
    margin-top: 20px;
}
.evnt-view1{
    padding-bottom: 80px;
}
.events-view-img{
    height: 500px;
    width: 1000px;

}
.events-view-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evnt-view1-txt h3{
    margin: 20px 0 10px 0;
    font-size: 25px;
}
.evnt-view1-txt h4{
    color: #686868;
}
.evnt-view1-txt p{
    margin: 20px 0;
    max-width: 1000px;
}
.evnt-hlts{
    margin-top: 50px;
}
.evnt-hlts h2{
    font-size: 28px;
    text-decoration: underline;
}
.evnt-slider{
    margin-top: 30px;
}
.evnt-slider .item{
    width: 100%;
    height: 300px;
    padding: 0 10px;
}
.evnt-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evnt1-cont-fl{
    max-width: 1100px;
}
.evnt-view-cont-img{
    max-width: 1000px;
    height: 500px;
    margin-bottom: 20px;
}
.evnt-view-cont-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evnt-view-cont-txt h3{
    margin: 10px 0;
    font-size: 25px;
}
.date{
    width: fit-content;
    margin: 10px 0;
}
.evnt-view-cont-txt p{
    margin: 10px 0;
}
.evnt-hlts{
    margin-top: 50px;
    margin-bottom: 30px;
}
/* .evnt-hlts h2{
    font-size: 28px;
    width: fit-content;
    position: relative;
        line-height: 28px;
} */
/* .evnt-hlts h2::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 110%;
    height: 2px;
    background-color: #000000;
} */
.hlt-img{
    width: 100%;
    height: 300px;
}
.hlt-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hlt-imgs{
    margin-top: 30px;
}
.hlt-img{
    margin-bottom: 30px;
}
.evnt-view1-cont .row{
    justify-content: start;
}
/* events close*/

/* blog  */

.blg1{
    padding-bottom: 80px;
}
.blg1 .col-md-3{
    padding-bottom: 40px;
}
.blg1-cont-img{
    height: 250px;
    width: 100%;
}
.blg1-cont-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blg1-cont-txt h3{
    margin: 10px 0;
    font-size: 18px;
}
.blg1-cont-txt .p{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 7px 30px;
    background-color: #e9e9e9;
    color: #000000;
    width: fit-content;
    margin-top: 20px;
}
.blg1-cont .col-md-4{
    padding-bottom: 40px;
}
.blog-view1{
    padding-bottom: 80px;
}
.blog-view-img{
    width: 900px;
    height: 500px;
}
.blog-view-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-view1-txt h3{
    margin: 20px 0 10px 0;
    font-size: 25px;
}
.blog-view1-txt p{
    max-width: 1000px;
}
.blog-view1-txt h4{
    font-size: 17px;
    margin: 20px 0 10px 0 ;
}
/* blog close */



/* contact  */

.ind10{
    padding: 80px 0;
    background-color: #FAFAFA;
    height: 100%;
    width: 100%;
    position: relative;

}
.ind10-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    height: 90%;
    object-fit: contain;
    opacity: .02;
}
.ind10-hdng h2{
    text-align: center;
}
.ind10-cont{
    margin-top: 50px;
}
.ind10-cont h2{
    font-size: 35px;
    max-width: 500px;
    margin-bottom: 10px;
}
.cnt-cont{
    margin-top: 50px;
}
.jn-mstrs{
    padding: 8px 30px;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    color: #ffffff;
    border-radius: 5px;
    width: fit-content;
    margin-top: 30px;
    cursor: pointer;
}
.cnt-cont-flx{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}
.cnt-rnd-bx{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #CDCDCD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cnt-rnd-bx i{
    font-size: 20px;
}
.cnt-cont-flx p{
    max-width: 400px;
    color: #000000;
}
.fr-fd{
    color: #969696 !important;
    font-weight: 600;
    margin-bottom: 7px;
}
.scl-flx{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}
.scl-flx i{
    font-size: 25px;
    color: #000000;
}
.cnt-frm-bx{
    width: 75%;
    /* height: 100%; */
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.103);
    padding: 30px;
    margin: 0 auto;
    border-radius: 10px;
}
.inpts{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.inpts input{
    width: 100%;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 10px;

}
.inpts label{
        font-family: Inter-Regular;
        font-size: 14px;
        color: #919191;
}
.inpts textarea{
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 0 10px;
    font-family: Inter-Regular;
    font-size: 14px;
    color: #919191;
}
.cnt-frm-bx button{
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ffffff;
    padding: 10px;
    width: 100%;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    border: none;
    border-radius: 5px;
}
.map{
    width: 100%;
    height: 400px;
}
.ind11{
    padding: 80px 0;
}

.crcle-cont {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.crcl-wth-txt{
    display: flex;
    align-items: center;
    gap: 20px;
}
.crcle-cont-crcl1 {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #cacaca;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.crcle-cont-crcl2 img {
    width: 136px;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.crcle-cont-crcl2 h2 {
    font-size: 30px;
}

.crcle-cont h3 {
    margin-top: 10px;
    margin-left: 10px;
}
.tle-spnsr img{
    height: 80px;
    object-fit: contain;
    margin-top: 15px;
}
.mn-spnsr img{
    height: 70px;
    object-fit: contain;
    margin-top: 15px;
}
.spnsr-flx{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.ind3-flx{
    display: flex;
    align-items: start;
    gap: 100px;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}
.join-btn{
    padding: 10px 30px;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    width: fit-content;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 30px;
    font-weight: 100;
    font-size: 17px;
    cursor: pointer;
}

/* contact close */

html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100% !important;
}

/* Overlay */
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 99999;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.form-modal {
    background: #fff;
    width: 100%;
    max-width: 400px;

    max-height: 80vh;        /* 🔑 LIMIT HEIGHT */
    overflow-y: auto;       /* 🔑 SCROLL HERE */

    padding: 20px;
    border-radius: 8px;
}




















.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9999;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: #fff;
    padding: 25px 25px 10px 25px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

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

.popup-box input,
.popup-box button {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
}
.mmbr-img{
    height: 150px;
    width: 170px;
}
.mmbr-flx .ttl{
    width: 95px;
}
.mmbr-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.nm h3{
    font-size: 16px;
    margin: 10px 0 5px 0 ;
}
.mmbr-flx{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}
.mmbr-wtsap{
    width: fit-content;
}
.mmbr-wtsap img{
    width: 33px;
    object-fit: contain;
}














/* Slide effect */
.form-overlay.active .form-modal {
    transform: translateY(0);
}

.form-modal h3{
    margin-bottom: 20px;
}
/* Close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Form inputs */
.form-modal input,
.form-modal button {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 40px;
    padding: 10px;
}
.form-modal textarea{
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    max-height: 120px;
    margin-top: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 40px;
    padding: 10px;
     font-family: Inter-Regular;
}






















/* footer  */

footer {
    background-image: url(../assets/icons/8.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 40px 0;
    height: 100%;
    width: 100%;

}

.foot-fl {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.foot-lft {
    width: 40%;
}

.foot-rgt {
    width: 44%;
}

.foot-logo img {
    width: 300px;
    object-fit: contain;
    margin-bottom: 10px;
}

.foot-logo p {
    max-width: 300px;
}

.foot-lft {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.foot-rgt {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.foot-fl h3 {
    margin-bottom: 10px;
}

.foot-fl p {
    margin-top: 10px;
}

.foot-lst ul li {
    margin-top: 15px;
}

.foot-lst ul li p {
    color: #000000;
}

.foot-lst p {
    max-width: 250px;
}

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

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

.cnt-cont-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.foot-logo h3 {
    width: fit-content;
    background-image: linear-gradient(to right, #79C143, #38a99a);
    color: rgb(255, 255, 255);
    font-weight: 100;
    font-size: 15px;
    margin-top: 20px;
    padding: 10px 30px;

    border-radius: 4px;
}

.cnt-rnd-bx {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #CDCDCD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fr-fd {
    color: #969696 !important;
    font-weight: 600;
    margin-bottom: 7px;
}

.cnt-rnd-bx i {
    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;
    margin-top: 2px;
    position: relative;
    top: 3px;
}

.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(#79C143, #497805);
    padding: 8px 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  */
