@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oooh+Baby&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Pinyon+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anek+Malayalam:wght@700&display=swap');

html{
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;

}
body{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #e8f0db;
}
a:hover{
    text-decoration: none;
}
/* Custom Scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 3px;  /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
    background: #f1f1f1;  /* Background of the scrollbar track */
}
::-webkit-scrollbar-thumb {
    background: #888;  /* Color of the scrollbar thumb */
}
::-webkit-scrollbar-thumb:hover {
    background: #555;  /* Color when hovered */
}
.cust-container{
    margin: 0 5%;
}
ul {
    padding-left: 20px !important;
}
.loader-body{
    height: 50vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
img{
    -webkit-user-drag: none;
    user-select: none;
}

.base-navbar{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
}
.nav-toggler{
    color: #ffffff;
}
.base-navbar .nav-text{
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 16px;
    font-family: "Inria Sans", sans-serif;
}
.base-navbar .nav-text-active{
    color: #03c988;

}
.base-navbar-transparent{
    background-color: transparent;
}

.base-navbar-white{
    background: #e8f0db;
    /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
    backdrop-filter: blur( 14px );
    -webkit-backdrop-filter: blur( 14px );
}
.base-navbar-white .nav-toggler{
    color: #000000;
}
.base-navbar-white .nav-text{
    color: black;
}
.base-navbar-white .nav-text-active{
    color: #03c988;
}

.navbar-logo {
    height: 50px;
    aspect-ratio: 1;
}
.dropdown-menu{
    background-color: #053333;

}
.nav-dropdown{
   padding: 10px 15px;
   color: #ffffff;
}

/* bg-colors */
.bg-dark-green{
    background-color: #053333;
}
.bg-lighter{
    background-color: #e8f0db;
}
.bg-light-green{
    background-color: #3e855d;
}
.page-content{
    padding: 40px 0px;
}

.green-underline{
    margin: 6px 0 10px;
    background-color: #3e855d;
    border-radius: 20px;
    width: 20%;
    height: 3px;
}


/* footer  */
#footer{
    margin-top: 50px;
    border-top: #053333 1px solid;
    /* background-color:  #f0f0f0; */
    background-color:  #053333;
}
.footer-contact-row{
    padding: 25px;

}
.footer-top-body{
    padding: 50px 0;
}
.footer-head{
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-text{
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
}
.footer-text a{
    color: #ffffff !important;
   text-decoration: none;
}


.footer-copyright {
    background-color: #031d1d;
    color: #ffffff;
}



.footer-bottom-text{
    color: #ffffff !important;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0px;
    padding: 10px 0;
    text-align: center;
}
.footer-bottom-text a{
    color: #ffffff;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 576px) {

    .nav-text{
        font-size: 14px;
    }
    .footer-text{
        font-size: 12px;
    }
    .footer-bottom-text{
        font-size: 12px;
    }
    .footer-head{
        font-size: 14px;
    }
}