* {
    -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: #039623;
    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: CabinCondensed-Regular;

}


h2 {
    font-family: Gabarito-Regular;
    font-size: 35px;
    font-weight: 100;
    line-height: 37px;
}

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


.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 0.9s 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: 15px 0 10px 0;
    position: relative;
top: 0 ;
    z-index: 4;
}

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

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

.hdr-logos img {
    width: 160px;
    object-fit: contain;
}

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

.pages a p {
    color: #ffffff;
}

.ind-cnct-btn p {
    padding: 8px 40px;
    background-color: #01A64E;
    border-radius: 5px;
    color: #fff;
    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%;
    /* height: 100%; */
    overflow: hidden;
    visibility: hidden;
}


/* index */

.ind1 {
    height: 95vh;
    position: relative;
    margin: 25px;
    border-radius: 20px;
    overflow: hidden;
}

.ind1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: linear-gradient(to bottom, #000000, #00000000);
    opacity: 0.5;
    z-index: 1
}

.ind1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, #000000, #00000000);
    z-index: 1
}

.mn-img-cntnr {
    width: 100%;

}

.mn-content h1 {
    color: #ffffff;
    font-weight: 100;
    font-size: 50px;
    max-width: 600px;
    line-height: 50px;
    margin-bottom: 15px;
}

.mn-content h3 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
}

.mn-content h3 span {
    font-size: 22px;
}

.dt-bx {
    height: 70px;
    width: 70px;
    border-radius: 8px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.dt-bx-btm-bx {
    height: 25px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, #699D1D, #25370A);
    border-radius: 0 0 7px 7px;
}

.dt-bx-btm-bx {
    display: flex;
    align-items: center;
    justify-content: center;

}

.dt-bx-btm-bx p {
    font-size: 13px;
    color: #ffffff;
}

.mn-img-cntnr img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.mn-content {
    height: 95vh;
    position: relative;
    display: flex;
    align-items: end;

}

.dt-bx h3 {
    color: #000000;
    font-size: 25px;
}

.dt-bx-flx h2 {
    font-size: 25px;
    color: #ffffff;
    margin-left: 10px;
}

.mn-cont-fl {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.dt-bx-flx {
    display: flex;
    gap: 10px;
    align-items: end;
}

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

.mn-btns .p1 {
    padding: 8px 30px;
    background-color: #79C143;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.mn-btns .p2 {
    padding: 8px 30px;
    background-color: #01A64E;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.ind2 {
    padding: 50px 0;
}

.h3 {
    position: relative;
    width: fit-content;
    margin-left: 73px;
    margin-bottom: 10px;
    color: #79C143;
}

.h3::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: #79C143;
    left: -85%;
    bottom: 6px;
}
.ind4-tp .h3::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: #79C143;
    left: -39%;
    bottom: 6px;
}

.ind2-inr-lft {
    width: 380px;
    height: 480px;
    flex-shrink: 0;
}

.ind2-content h2 {
    max-width: 650px;
}

.ind2-inr-flx {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

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

.ind2-inr-flx-rgt p {
    margin-bottom: 15px;
}

.ind2-inr-flx-rgt .p {
    font-size: 16px;
    padding: 8px 15px;
    background-color: #79C143;
    width: fit-content;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    align-items: start;
    gap: 10px;
    color: #fff;

}

.ind2-inr-rgt {
    width: 100%;
    /* height: 100%; */
    position: relative;
}

.ind2-inr-rgt-tp {
    display: flex;
    justify-content: end;
}

.ind2-inr-rgt-tp img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.ind2-inr-rgt-btm {
    width: 90%;
    margin-left: auto;
    margin-top: 50px;
    position: relative;
}
.ind2-inr-rgt-btm::after {
    position: absolute;
    content: "";
    width: 95%;
    height: 90%;
    border: 6px solid #426410;
    top: -18px;
    left: -18px;
    z-index: -1;
}
.ind2-inr-rgt-btm::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 183px;
    background-color: #426410;
    top: 50px;
    right: -21px;
    z-index: -1;
}

.ind2-inr-rgt-btm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exp-bx {
    height: 90px;
    width: fit-content;
    padding: 10px 20px 10px 10px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    border-radius: 5px;
    position: absolute;
    bottom: -30px;
    left: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.exp-bx img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.exp-bx h3 {
    font-size: 27px;
}

.ind3 {
    width: 100%;
    padding: 40px 0;
    background-color: #F3F8ED;
    margin-top: 50px;
}

.ind3-inr-lft {
    width: 100%;

}

.ind3-inr-lft-inr1 {
    width: 75%;
    height: 550px;
    position: relative;
}
.ind3-inr-lft-inr1::after{
    position: absolute;
    content: "";
    width: 95%;
    height: 85%;
    border: 8px solid #426410;
    bottom: -25px;
    right: -25px;
    z-index: -1;
}
.ind3-inr-lft-inr1::before{
    position: absolute;
    content: "";
    width: 8px;
    height: 300px;
    background-color: #426410;
    top: 80px;
    left: -30px;
    z-index: -1;
}
.ind3-inr-lft-inr1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.ind3-inr-lft-inr2 {
    width: 250px;
    height: 300px;
    position: relative;
    position: absolute;
    bottom: -80px;
    right: 0;
}

.ind3-inr-lft-inr2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.ind3-inr-lft {
    position: relative;
}

.ind4 {
    padding: 80px 0 140px 0;
}

.ind4 h2 {
    margin-bottom: 20px;
}

.chart-box {
    width: 170px;
    height: 140px;
}
.chart {
    width: 100%;
    height: 100%;
}

.vstr-prfl {
    padding: 40px 0 80px 0;

}

.vstr-prfl-hdng {
    width: fit-content;
    margin-bottom: 40px;
}

.progress {
    background-color: #eee;
    height: 8px;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 10px;
}

.progress-bar {
    background-color: #D49600;
    height: 100%;
    width: 0;
    /* start at 0 so animation works */
    transition: width 1s ease;
    border-radius: 20px;
}

.wch-nm {
    max-width: 80%;
}


#timeControl li {
    display: inline-block;
    font-size: 15px;
    font-family: Inter-Regular;
    list-style-type: none;
    padding: 12px 15px;
    margin: 0 10px;
    color: #699D1D;
}

#timeControl li span {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 5px;
}

.count-bx {
    /* padding: 10px; */
    min-height: 72px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    border-radius: 5px;
    width: 100%;
    width: fit-content;
    margin-top: 25px;
}

.ind2-cnt {
    padding: 8px 30px;
    border: 1px solid #5c5c5c;
    border-radius: 5px;
    color: #000000;
    width: fit-content;
    cursor: pointer;
    margin-top: 30px;
}

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

.spnsrs {
    width: 100%;
    padding: 30px 0;
    /* background-color: #d4e7f7; */
    margin-top: 50px;
    /* box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2); */
    /* border: 1px solid #ffffff; */
    display: flex;
    align-items: start;
    gap: 20px;
}

.spnsr-bx {
    height: 60px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px;
    /* box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.2); */
    /* border: 1px solid #ffffff; */
}

.spnsr-bx h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

.spnsr-bx img {
    height: 100%;
    object-fit: contain;
}

.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;
    min-width: 490px;
    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;
}

.abt1-cont .goto {
    margin-left: 0 !important;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    box-shadow: 0 2px 7px #ffffff63;
    padding: 9px 0px;
    margin-bottom: 10px;

}

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

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

.goto .count {
    font-size: 37px !important;
    font-weight: 100;
    color: #9C9C9C;
    font-family: Koulen-Regular;
}

.count2 p {
    margin-bottom: 0 !important;
}

.wth-pls span p {
    font-size: 20px !important;
    font-weight: 600;
    color: #9C9C9C;
    font-family: Inter-Regular;
}



.count2 p {
    margin-top: 8px !important;
    max-width: 166px;
    font-size: 13px !important;
    line-height: 18px;
    color: #9C9C9C;
    font-family: Inter-Regular;

}

.abt1-cont .count2 p {
    color: #000000;
    margin-top: 22px !important;
}

.count2 {
    margin: 5px 0;
}

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

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

.points-flx {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
        max-width: 500px;
}

.pnt-rnd {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000000;
    margin-top: 8px;
    flex-shrink: 0;
}

.ind4-tp {
    margin-left: -80px;
    margin-bottom: 30px;
}

.ind5-left h2 span {
    font-size: 30px;
}

.ind5-left h2 {
    font-size: 60px;
    line-height: 61px;
    font-family: Gabarito-SemiBold;
}

.ind5 {
    padding: 100px 0;
    background-color: #FFFBF8;
}

.ind5-rnd {
    width: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.ind5-rnd img {
    width: 100%;
    object-fit: contain;
}

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

.ind6 {
    padding: 80px;
    background-image: url(../assets/imgs/5.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.ind5-left {
    position: sticky;
    top: 0;
}

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

.ind6-hdng p {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.ind6-btm {
    margin-top: 50px;
    max-width: 1000px;
    margin: 70px auto 0 auto;
}

.ind5-flx h3 {
    margin-bottom: 10px;
}

.ind6-btm .row {
    justify-content: left !important;
}

.ind6-btm .ind5-flx {
    margin-bottom: 30px;
}

.ind7 {
    padding: 80px 0;
}

.flr-map {
    width: 1100px;
    margin: 0 auto;
    margin-top: 10px;
}

.flr-map img {
    width: 100%;
    object-fit: contain;
}

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

.ind8-hdng p {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

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

.ind8-btm {
    height: 550px;
    width: 1100px;
    margin: 0 auto;
    margin-top: 50px;
    background-color: #e0e0e0;
    border-radius: 10px;

}

.ind8-slider {
    margin-top: 50px;
}

.ind8-slider .item {
    width: 100%;
    padding: 0 10px;

}

.ind8-slider .item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.ind9-hdng p {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 15px;
}

.ind9 {
    padding: 30px 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;
}
.ind9-btm-lns{
    margin-top: 50px;
}
.ind9-btm-ln{
    height: 1px;
    background-color: #BCBCBC;
    margin: 0 auto;
    margin-top: 8px;
}
.ind9-btm-ln.ln1{
    width: 60%;
}
.ind9-btm-ln.ln2{
    width: 40%;
}
.ind9-btm-ln.ln3{
    width: 20%;
}
.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: .09;
}
.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;
}
.cnt-cont-flx{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.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;
}
.mn-content .scl-flx i{
    font-size: 25px;
    color: #ffffff;
}
.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;
}
.ind8 .p{
    padding: 7px 30px;
    background-color: #01A64E;
    color: #ffffff;
    border-radius: 5px;
    margin: 40px auto 0 auto;
    cursor: pointer;
    width: fit-content;
}

.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-color: #000000;
    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: 30px;
    justify-content: space-between;
    margin: 0 auto;
}
.reg-prtnrs img{
    height: 50px;
    object-fit: contain;
    margin-top: 15px;
}
.prtnr-hdng{
    text-align: center;
    margin-bottom: 80px;
}
.prtnr-img{
    width: 200px;
    height: fit-content;
}
.prtnr-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prtnr-img-flx{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.partners-section{
    padding: 80px 0;
}




/* VISITORS REG */
.vist-input {
    position: relative;
}


.vist-input .req-star {
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    color: red;
    pointer-events: none;
    border: none;
    padding: 0;

}
.vist-input .req-star.phn{
    left: 90px;
}
.vist-input .req-star.nm{
    left: 86px;
}
.vist-input .req-star.vstr{
    left: 133px;
}
.vist-input .req-star.vstr2 {
    left: 166px;
}
.vist-input .req-star.cit{
    left:41px;
}
.vist-input .req-star.pncd{
    left:120px;
}
.vist-input .req-star.orgtn {
    left: 155px;
}
.vist-input .req-star.dsgntn {
    left: 160px;
}


.vis-pg {

    background-color: #FFFAF6;
}


.visit-reg-contain {
    padding-top: 8em;
    margin-bottom: 12px;
}

.vist-form-contain,
.visit-cont-blk {

    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.visit-cont-blk {

    height: 100%;
}

.vist-form-contain h2 {
    margin-bottom: 20px;
}

.vist-form-contain h2 span {

    font-weight: 700;
}

.vist-input span {

    display: block;
    padding: 12px 0;
    margin: 10px 0;
    padding-left: 10px;
    border: 1px solid #ffd883;
    border-radius: 4px;
    font-weight: 500;
}


.vist-input textarea {

    width: 100%;
    display: block;
    padding: 14px;
    min-height: 100px;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    resize: none;
    transition: all 0.3s;
    font-size: 15px;
    margin: 10px 0;

}


.vist-input input[type="checkbox"] {

    width: auto;
    display: inline-block;
}

.chck-lab {

    font-size: 14px;
}


.vist-input button {

        background-color: #7dc245;

    border: none;
    color: #fff;
    padding: 20px;
    border-radius: 30px;
    width: 100%;
    display: block;
    margin: 18px 0;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #243546;;
}

.vist-input button:disabled {
    background-color: #9e9e9e;
    cursor: not-allowed;
}

.vist-input button:hover:disabled {
    background-color: #9e9e9e;
    color: #fff;
}

.vist-input button:hover {
    background-color: #7dc245;
    color: #fff;
    border: 1px solid var(--secondary-color);
}

.visit-cont-blk {
    text-align: center;
}

.vist-dt-blk {

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

.vist-dt-blk .mnth {

    background-color: #243546;
    color: #fff;
    padding: 12px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.vist-dt-blk .vis-dt {

    background-color: #f3d811;
    color: #fff;
    padding: 12px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 20px;
    font-weight: 500;
}


.vist-dt-blk .vis-dt ul {

    display: flex;
    gap: 18px;
    align-items: center;
}

.vist-dt-blk {

    margin: 30px 0;
}


.vist-cont p {

    width: 500px;
    margin: auto;
    max-width: 100%;
    font-size: 15px;
    font-weight: 500;
}

.ex-reg-sec input,
.ex-reg-sec select {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.vist-input input,
.vist-input select {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #d8d8d8;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.vist-form-contain h2 {
    font-size: 27px;
}


/* .visit-cont-blk


/* BADGE */

.bdg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000041;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.bdg-overlay.show {
    opacity: 1;
    visibility: visible;
}

.bdg-modal {

    background-color: #fff;
    padding: 20px;
    width: 500px;
    max-width: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    margin: auto;
    position: fixed;
    z-index: 22;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.bdg-modal.show {

    opacity: 1;
    visibility: visible;
}

.bdg-hd .logo img {

    width: 150px;
}


.bdg-hd .logo-sub img {

    width: 100px;
}


.generate-bdg a {

    display: block;
    width: 100%;
    max-width: 100%;
    margin: auto;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 6px;
    background-color: #243546;
    padding: 14px;
    color: #fff;
    border: 1px solid #243546;
    text-align: center;
    transition: all 0.3s;
}


.generate-bdg a:hover {

    background-color: #fff;
    border: 1px solid #243546;
    color: #243546;
    cursor: pointer;
}

.bdg-hd {

    display: flex;
    align-items: center;
}

.bdg-hd .logo-sub {

    margin-left: auto;
}


.bdge-cont p {

    text-align: center;
    margin-top: 30px;
}


.bdg-contain .vist-dt-blk .mnth {

    font-size: 16px;
}

.bdg-contain .vist-dt-blk .vis-dt {

    font-size: 16px;
}


.close {

    position: absolute;
    top: -45px;
    right: 0;
    background-color: #fff;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.vist-dt-blk {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vist-dt-blk .mnth {
    background-color: #7dc245;
    color: #fff;
    padding: 12px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 500;
}
.vis-img img{
    width: 80%;
    object-fit: contain;
    margin-bottom: 30px;
}




/* footer  */

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

}
.foot-fl{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.foot-lft{
    width: 30%;
}
.foot-rgt{
    width: 50%;
}
.foot-logo img{
    width: 300px;
    object-fit: contain;
    margin-bottom: 10px;
}
.foot-logo h3{
    padding: 10px 30px;
    width: fit-content;
    background-color: #039623;
    color: #fff;
    border-radius: 4px;
    font-weight: 100;
    font-size: 15px;
    margin-top: 20px;
}

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






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

.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  */
