html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
.btn:focus{
    box-shadow: none;
}

/*Header Section*/
.header {
    background: #112F2D;
    z-index: 9;
    width: 100%;
    position: sticky;
    top: 0px;
    left: 0px;
    transition: all 0.3s ease-in-out;
    padding: 24px 70px;
}
.sticky-bar{
    background-color: #112F2D;
}
.collapse.navbar-collapse{
    margin-left: 60px;
}
.navbar{
    padding: 0px;
}
.navbar-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    transition: all 0.3s ease-in-out;  
}
.nav-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    padding: 0px !important;
}
.logo{
    width: 100%;
}
.nav-item .nav-link:hover, .nav-item .nav-link:focus, .nav-item .nav-link.active{
    color: #69E698;
}
.btn-theme{
    color: #112F2D;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.84px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #69E698;
    padding: 9px 17px;
    background-color: #69E698;
    border-radius: 50px;
}
.btn.btn-theme:hover{
    border-color: #69E698;
    background-color: transparent;
    color: #69E698;
}
.btn.btn-theme:active:hover {
    border-color: #69E698;
    background-color: #69E698;
    color: #112F2D;
}
.btn.btn-theme:active {
    border-color: #69E698;
    background-color: #69E698;
    color: #112F2D;
}
.btn-close {
    --bs-btn-close-bg: none;
    opacity: 1;
    position: absolute;
    top: 13px;
    right: 17px;
    width: auto;
}
.btn-close:focus {
    box-shadow: none;
    opacity: 1;
}
.btn-close:hover {
    opacity: 0.7;
}
.navbar-toggler{
    padding: 0px;
    box-shadow: none;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.menu-icon{
    cursor: pointer;
    position: relative;
}
.offcanvas.offcanvas-end {
    transition: transform 0.4s ease-in-out;
    border-left: 0px;
}
.offcanvas-body{
    padding: 35px 30px 50px;
    background-color: #112F2D;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.offcanvas-body ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}
.offcanvas-body .dropdown-menu-custom ul li{
    margin-bottom: 0px !important;
}
.offcanvas-body ul li{
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.offcanvas-body ul li:last-child{
    margin-bottom: 20px;
}
.offcanvas-body ul li .nav-link:hover{
    color: #69E698;
}

@media all and (min-width: 992px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: none; 
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: fit-content;
    padding: 14px;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0px;
    border-radius: 5px;
    background: rgb(17 47 45);
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 15px 20px;
    clear: both;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.84px;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 5px;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: #69E698;
    background-color: transparent;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 992px) {
.navbar .dropdown-menu-end{ right:0; left: auto;}
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0;}
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%;}
.navbar .dropdown-menu.fade-up{ top:180%; left: -20px;}
.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg);}
.nav-item:hover > .nav-link.dropdown-toggle {
    color: #69E698;
  }
}

/*Hero Sec*/
.hero{
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: calc(100vh - 87px);
}
.hero-sec{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: calc(100vh - 87px);
}
.hero-title{
    color: #FFF;
    font-size: 55px;
    font-weight: 800;
    line-height: 63px;
    margin-bottom: 50px;
}
.hero-text{
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 40px;
}

/*What We Offer*/
.we-offer-text{
    font-size: 20px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 0px;
}
.cust-gap{
    --bs-gutter-x: 90px;
}

.shape01{
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    right: 0px;
}

/*How It Works*/
.how-work{
    background-color: #F2FDF6;
}
@media (min-width: 992px) {
.container.left-touched{
    max-width: 100% !important;
}
}
@media (min-width: 992px) {
.left-touched-pad{
            padding-right: calc(((100% - 720px) / 2) + -6.25rem);
}
}

@media (min-width: 1200px) {
.left-touched-pad{
    padding-right: calc(((100% - 1140px) / 2) + .75rem);
}
}

@media (min-width: 1400px) {
.left-touched-pad{
    padding-right: calc(((100% - 1320px) / 2) + .75rem);
}
}

.accordion{
    margin-bottom: 90px;
}
.cust-img{
/*    height: 100%;*/
height: auto;
}
.cust-img .step-img {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: none;
    border-radius: 0px 13px 13px 0px;
}
.cust-img .step-img.active {
    display: block;
    opacity: 1;
/*    height: 100%;*/
}
.how-work-sec{
    padding: 150px 136px 170px;
}
.lh-32{
    line-height: 32px;
}
.accordion-item {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    padding-left: 43px;
    margin-bottom: 40px;
    overflow: visible;
    border: 0px;
}
.accordion .accordion-item:last-child{
    margin-bottom: 0px;
}
.accordion-button:not(.collapsed)::after {
    content: "";
    position: absolute;
    top: 12px;
    transform: translateY(-50%);
    left: -42px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #92ECB4;
    background-color: #92ECB4;
    background-image: none;
    transition: all 0.3s ease-in-out;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button.collapsed::after {
    content: "";
    position: absolute;
    top: 12px;
    transform: translateY(-50%);
    left: -42px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #92ECB4;
    background-color: transparent;
    background-image: none;
    transition: all 0.3s ease-in-out;
}
.accordion-item{
    position: relative;
}
.accordion-item::before{
    content: '';
    position: absolute;
    top: 25px;
    left: 5px;
    width: 1px;
    height: 100%;
    background-color: #DEF9E9;
    transition: all 0.3s ease-in-out;
}
/*.accordion-button:not(.collapsed)::before {
    content: '';
    position: absolute;
    top: 26px;
    left: -38px;
    width: 1px;
    height: 95px;
    background-color: #DEF9E9;
    transition: all 0.3s ease-in-out;
}*/
.accordion-body {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 0px 0px;
}
.accordion-button h5 {
    margin-bottom: 0px;
    color: #999;
    font-size: 20px;
    font-weight: 800;
    line-height: 23px;
    transition: all 0.3s ease-in-out;
}
.accordion-button:not(.collapsed) h5, .accordion-button:hover h5{
    color: #000;
}
.accordion-button:hover::after {
    background-color: #92ECB4;
}
.accordion-button:not(.collapsed) {
    border: 0px;
    background: transparent;
    box-shadow: none;
}
.accordion-button {
    background: transparent;
    padding: 0px;
    transition: all 0.3s ease-in-out;
}
.how-work-sec .btn-sec{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.btn-line{
    font-size: 20px;
    font-weight: 700;
    border-bottom: 4px solid #69E698;
    position: relative;
    width: fit-content;
}
.btn-arrow {
    position: absolute;
    bottom: -14px;
    right: 0;
    opacity: 0;
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}

.btn-line:hover .btn-arrow {
    opacity: 1;
    transform: translateX(36px);
}
.mobi-btn-arrow{
    display: none;
}

/*Testimonial Sec*/
.sec-pad{
    padding: 124px 0px;
}
.title{
    font-size: 55px;
    font-weight: 800;
    line-height: 82px;
    margin-bottom: 10px !important;
}
.review-sec{
    padding: 58px 0px;
    overflow: hidden;
}
.slider {
  height: 100%;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: visible;
}
.slider.slider2{
    margin-top: 66px;
}
.slide-track2 {
    display: flex;
    gap: 70px;
    animation: scroll2 100s linear infinite;
}
@keyframes scroll2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-800px * 9 - 70px * 8));
    }
}
.slider.slider2 .slide-track2 {
    animation: scroll 100s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(calc(-800px * 9 - 70px * 8));
    }
    100% {
        transform: translateX(0px);
    }
}
.slide {
    width: 800px;
    flex: 0 0 auto;
    display: flex;
}
.review-box {
    width: 100%;
    padding: 45px 63px 48px 77px;
    border-radius: 7px;
    border: 1px solid #EEE;
    background: #FFF;
    box-shadow: 0px 7px 37.8px 0px #D9D9D9;
}
.review-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
}
.review-title{
    color: #000;
    font-size: 24px;
    font-weight: 800;
    line-height: 34px;
}
.review-star{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
}
.review-text{
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 12px;
}
.customer-name{
    color: #888;
    margin-bottom: 0px;
}

/*Map Sec*/
.map-sec{
    padding: 168px 0px 186px;
}
.map{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
.map-pad{
    padding: 169px 0px 263px;
    position: relative;
}
.map-title{
    color: #112F2D;
    text-align: center;
    font-size: 64px;
    font-weight: 800;
    line-height: 83px;
    margin-bottom: 34px;
}
.area-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    gap: 33px;
    justify-content: center;
    flex-direction: column;
}
.area-ul li{
    color: #112F2D;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 42px;
}

/*Our Process Page*/
.inner-hero{
    padding: 227px 0px;
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow: hidden;
}
.inner-hero .hero-title{
    margin-bottom: 0px;
    line-height: 52px;
}
.inner-hero .hero-text{
    margin-bottom: 0px;
    font-weight: 500;
}

/*Structured & Personalized*/
.structured-personalized{
    padding: 200px 0px 242px;
    background-color: #112F2D; 
}

/*Work Process*/
.work-process{
    padding: 1px 135px 0px;
    background-color: #F2FDF6;
}
.white-box{
    border-radius: 75px;
    background: #FFF;
    box-shadow: 3px 3px 129px 10px rgba(17, 47, 45, 0.25);
    padding: 144px 118px;
    margin-top: -85px;
}
.white-box .accordion-button h5{
    color: #888;
    font-size: 24px;
    line-height: 28px;
}
.white-box .accordion-button:hover h5{
    color: #112F2D;
}
.white-box .accordion-button:not(.collapsed) h5{
    color: #112F2D;
    font-size: 36px;
    line-height: 42px;
}
.white-box .accordion-button.collapsed::before {
    height: 44px;
}
.white-box .accordion-button:not(.collapsed)::before {
    top: 35px;
    height: 160px;
}
.white-box .accordion-button.dot:not(.collapsed)::before {
    height: 203px;
}
.white-box .accordion-button.dot:not(.collapsed)::after {
    top: 15px;
}
.white-box .accordion-button.collapsed::after {
    top: 15px;
}
.white-box .step-img p{
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 0px;
}
.white-box .step-img img{
    border-radius: 13px;
    margin-bottom: 40px;
}
.accordion-collapse .step-img{
    display: none;
}
.sub-title{
    font-size: 40px;
    font-weight: 800;
    line-height: 52px;
}
.inner-btn-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

/*Our Team Page*/
.our-team{
    padding: 0px 130px;
}
.team-box{
    width: 100%;
    height: 100%;
    padding: 0px 52px;
    border-right: 1px solid #69E698;
}
.profile{
    position: relative;
}
.member-profile{
    transition: all 0.3s ease-in-out;
}
.hover-logo {
    /*position: absolute;
    right: 33px;
    top: 29px;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;*/

  position: absolute;
  right: 33px;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.member-profile:hover .hover-logo {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    bottom: 90%;
}
.br-13{
    border-radius: 13px;
}
.profile-name{
    color: #112F2D;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 35px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid transparent;
    width: fit-content;
    padding-bottom: 3px;
}
.member-profile:hover .profile-name{
    border-bottom: 2px solid #69E698;
}
.team-position{
    color: #112F2D;
    font-size: 20px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 8px;
}
.team-license{
    color: #112F2D;
    font-size: 20px;
    line-height: 26px;
}

/*Modal*/
@media (min-width: 576px) {
    .modal-xl {
        --bs-modal-width: 600px;
    }
}
@media (min-width: 768px) {
    .modal-xl {
        --bs-modal-width: 750px;
    }
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        --bs-modal-width: 900px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .modal-xl {
        --bs-modal-width: 1382px;
    }
}
.modal-backdrop.show {
    backdrop-filter: blur(10.5px);
}
.modal-dialog-scrollable .modal-body {
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.modal-body{
    padding: 0px;
}
.modal-content{
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border: 1px solid #69E698;
    border-radius: 75px;
}
.contact-detail {
    font-size: 18px;
}
.modal-content .btn-close{
    position: absolute;
    top: 70px;
    right: 70px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.modal-body .top{
    padding: 100px;
}
.modal-body .profile-name{
    margin-bottom: 15px !important;
}
.modal-body .team-position{
    margin-bottom: 0px;
}
.content p{
    line-height: 32px;
}
.mobi-contact-sec{
    display: none;
}
.member-contact{
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 20px;
}
.member-contact-sec .member-contact:last-child, .mobi-contact-sec .member-contact:last-child{
    margin-bottom: 0px;
}
.contact-detail{
    color: #000;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
a.contact-detail:hover{
    color: #69E698;
}
.bottom{
    padding: 0px 0px 69px 69px;
}
.bottom h2{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 45px;
    margin-left: 31px;
}
.testimonial-box{
    border-radius: 13px;
    border: 1px solid #EEE;
    background: #FFF;
    padding: 50px 47px 35px;
}
.testimonial-box p{
    line-height: 32px;
    min-height: 191px;
}
.text-grey{
    color: #737373;
}
.owl-nav{
    position: absolute;
    top: -88px;
    right: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: transparent;
    text-decoration: none;
}
.owl-stage{
    padding-left: 0px !important;
}
.shape02{
    position: absolute;
    top: 46px;
    left: 0px;
}

/*Contact Page*/
.contact{
    background-color: #112F2D;
    position: relative;
}
.contact .hero-sec{
        padding: 20px 0px;
}
.shape03{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}
.header.bottom-br{
    border-bottom: 3px solid #1F4C3E;
}
form .cust-gap{
    --bs-gutter-x: 100px;
    --bs-gutter-y: 40px;
} 
.form-control{
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #69E698;
    border-radius: 0px;
    color: #FFF !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 16px !important;
}
.form-control:focus{
    background-color: transparent;
    box-shadow: none;
    border-color: #69E698;
}
.form-floating>label {
    padding-left: 0px;
    color: #FFF !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    top: 15px;
}
.form-floating>.form-control:focus~label{
    transform: scale(.85) translateY(-30px) translateX(0);
    border: 0px;
    color: #DCDCDC;
    font-weight: 500;
}
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control:focus ~ label::after {
  background-color: transparent; /* Optional if background causing flick */
  color: #fff;
}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    opacity: 1;
    transform: scale(.85) translateY(-30px) translateX(0);
}

.form-floating>.form-control:focus~label::after{
    display: none;
}
textarea{
    resize: none;
}
.custom-textarea {
  position: relative;
  display: block;
}
.custom-textarea textarea {
  resize: vertical !important;        /* Enable resize */
  overflow: auto;
}

/* Hide default resize handle (optional if needed) */
.custom-textarea textarea::-webkit-resizer {
  display: none;
}
.custom-textarea textarea::-moz-resizer {
  display: none;
}

/* Add solid triangle as a visual indicator */
.custom-textarea::after {
      content: "";
    position: absolute;
    bottom: 6px;
    right: 3px;
    width: 0;
    height: 0;
    border-left: 7px solid #69E698;
    border-top: 7px solid #69e69800;
    pointer-events: none;
    transform: rotate(-90deg);
    border-radius: 0.5px;
}
.option-sec{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}
.option{
    display: flex;
    align-items: center;
    gap: 35px;
}
.form-check-label{
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
}
.form-check-input[type=radio] {
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #FFF;
    cursor: pointer;
}
.form-check-input[type=radio]:focus{
    box-shadow: none;
}
.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: none;
    position: relative;
}
.form-check-input:checked[type=radio]::after{
    content: '';
    width: 10px;
    height: 10px;
    background-color: #69E698;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*Prduct & Program Page*/
.nav-tab{
    padding: 63px 0px 210px;
}
.nav.nav-pills{
    border-radius: 33px;
    border: 3px solid #DCDCDC;
    overflow: hidden;
}
.nav.nav-pills .nav-item .nav-link{
    display: flex;
    align-items: center;
    gap: 15px;
    color: #656565;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 40px 0px 12px 37px !important;
    border: 0px;
/*    border-bottom: 4px solid transparent;*/
    width: fit-content;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.nav.nav-pills .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: #69E698;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.nav.nav-pills .nav-item .nav-link.active::after, .nav.nav-pills .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}
.nav.nav-pills .nav-item .nav-link:hover, .nav.nav-pills .nav-item .nav-link.active{
/*    border-color: #69E698;*/
    background-color: transparent;
    border-radius: 0px;
    color: #112F2D;
}
.nav.nav-pills .nav-item .nav-link svg path, .nav-tab .accordion-button h5 svg path{
    transition: all 0.3s ease-in-out;
}
.nav.nav-pills .nav-item:last-child .nav-link{
    margin-bottom: 28px;
}
.tab-content{
    padding-top: 20px;
}
.nav-tab .tab-title{
    color: #112F2D;
    font-size: 36px;
    font-weight: 800;
    line-height: 54px;
    margin-bottom: 20px;
}
.nav-tab p, .nav-tab ul li{
    line-height: 32px;
}
.nav-tab p, .nav-tab ul{
    margin-bottom: 40px;
}
.nav-tab ul li{
    margin-bottom: 10px;
}
.nav-tab p:last-child, .nav-tab ul:last-child, .nav-tab ul li:last-child{
    margin-bottom: 0px;
}
.nav-tab h3{
    color: #112F2D;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 12px;
}
.nav-tab .accordion-item{
    padding-left: 0px;
}
.nav-tab .accordion-button::before, .nav-tab .accordion-button::after{
    display: none;
}
.nav-tab .accordion-button h5{
    color: #656565;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease-in-out;
}
.nav-tab .accordion-button:not(.collapsed) h5, .nav-tab .accordion-button:hover h5 {
    color: #112F2D;
    border-color: #69E698;
    padding-bottom: 4px;
}
.nav.nav-pills .nav-item .nav-link:hover svg path, 
.nav.nav-pills .nav-item .nav-link.active svg path, 
.nav-tab .accordion-button:not(.collapsed) h5 svg path, 
.nav-tab .accordion-button:hover h5 svg path{
    stroke: #112F2D;
}





/*Footer*/
.footer{
    background-color: #112F2D;
}
.p-footer{
    padding: 115px 0px 185px;
    border-bottom: 1px solid #69E698;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.footer-link{
    display: flex;
    align-items: flex-start;
    gap: 95px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.f-ul{
    list-style: none;
    padding: 12px 9px 0px 6px;
    margin-bottom: 0px;
    border-top: 1px solid #69E698;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.f-ul li{
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 21px; /* 21px */
}
.s-footer{
    padding: 11px 10px 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.f-link{
    transition: all 0.3s ease-in-out;
}
.f-link:hover{
    color: #69E698;
}
.policy{
    display: flex;
    align-items: center;
    gap: 65px;
}
.built{
    display: flex;
    align-items: center;
    gap: 20px;
}
.policy a, .built a{
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.36px;
    transition: all 0.3s ease-in-out;
}
.policy a:hover, .built a:hover{
    color: #69E698;
}
.mar-mimus-2 img{
    margin-top: -2px;
}
.social svg path{
    transition: all 0.3s ease-in-out;
}
.social:hover svg path{
    fill: #69E698;
}
.contact .form-control{
    padding-left: 0px;
}
.op-max-width{
    max-width: 833px;
}
:focus-visible {
outline-width: 0px;
outline: 0;
}

.z-1{
    position: relative;
    z-index: 1 !important;
}

.privacy-content .title{
    line-height: 60px;
}
.privacy-content p{
    margin-bottom: 24px;
}
.privacy-content p:last-child{
    margin-bottom: 0px;
}
.privacy-content .link{
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}
.privacy-content .link:hover{
    color: #69e698;
}
.privacy-content .sub-title{
    font-size: 20px;
    font-weight: 800;
    line-height: 100%;
    margin-bottom: 16px;
    padding-top: 10px;
}
.hero-mobi-text, .mobi-btn{
    display: none;
}
.dask-text{
    display: block;
}
.mobi-text{
    display: none;
}
.dask-text-flex{
    display: flex;
}
.mobi-text-flex{
    display: none;
}



.mb-30{
    margin-bottom: 30px;
}
.mb-50{
    margin-bottom: 50px;
}
.mb-100{
    margin-bottom: 100px;
}

.text-theme{
    color: #112F2D;
}

.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}