@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --mb-white: #FFFFFF;
    --mb-black: #000000;
    --mb-light-gray: #F2F5FB;
    --mb-blue: #0F4B7F;
    --mb-light-blue: #104B7F;
    --dark-blue: #003355;
    --mb-gray01: #D0DAE3;
    --mb-gray02: #EAFAF1;
    --mb-green: #00973D;
    --mb-blue01: #001033;
    --mb-blue02: #0f4b7f;
    --mb-font: "Inter", serif;
    --mb-gray03: #575C60;
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    font-family: var(--mb-font);
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (min-resolution: 1.25dppx) and (max-resolution: 1.75dppx) {
    html{
        font-size: 14px;
    }
    
    @media (min-width: 1200px) {
        .container,.container-lg,.container-md,.container-sm,.container-xl {
            max-width:1000px
        }
    }
    
    @media (min-width: 1400px) {
        .container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl {
            max-width:1060px
        }
    }
}
@media (min-zoom: 125%) and (max-zoom: 175%) {
   
    html{
        font-size: 14px;
    }
}
@media only screen and (min-width:1200px) and (max-width: 1370px) {
    html{
        font-size: 16px;
    }
}
@media (min-resolution: 1.25dppx) {
    html{
        font-size: 14px;
        line-height: 1.5;
    }
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
    border-radius: 5px;
}

::-webkit-scrollbar{
    width: 5px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb{
    background-color: #828080;
    border: 2px solid #828080;
    border-radius: 5px;
}
body {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--mb-black);
    background-color: var(--mb-white);
    font-family: var(--mb-font);
    font-weight: 400;
}
a {
    color: var(--mb-blue);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--mb-blue01);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--mb-black);
}
p {
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--mb-font);
    margin-bottom: 15px;
    color: var(--mb-black);
    font-weight: 400;
}
ul {
    list-style-type: disc;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--mb-font);
    margin-bottom: 15px;
    color: var(--mb-black);
}

ol {
    list-style-type: decimal;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--mb-font);
    margin-bottom: 15px;
    color: var(--mb-black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* style for button start */
.btn-primary{
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--mb-font);
    padding: 8px 15px;
    color: var(--mb-white);
    border-radius: 10px;
    border: 0px;
    background:  var(--mb-green);
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    min-width: 150px;
    text-align: center;
}
.btn-white{
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--mb-font);
    padding: 8px 15px;
    color: var(--mb-black);
    border-radius: 100px;
    border: 0px;
    background: var(--mb-white);
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    min-width: 150px;
    text-align: center;
    border-radius: 10px;
}
.btn-primary:hover{
   background-color: var(--mb-blue01);
}
.btn-white:hover{
    background: var(--mb-green);
    color: var(--mb-white);
}
.btn-primary:focus{
    outline: none;
}
.bold-600{
    font-weight: 600;
}
.page-start-top-space{
    margin-top: 69px;
}
.light-gray-card{
    background: var(--mb-light-gray);
    padding: 30px;
    border-radius: 11px;
    position: relative;
    height: 100%;
}
/* style for button end */
.mb-header .brand-logo img{
   height: 45px;
}
.mb-header .navbar-collapse {
    justify-content: flex-end!important;
}
.mb-header .nav-item {
    margin-right: 25px;
}
.mb-header .nav-item .nav-link{
    font-size: 1.1rem;
    padding: 7px 24px;
    transition: all 0.3s ease;
    color: var(--mb-black); 
}
.mb-header .nav-item .nav-link.active{
    background-color: var(--mb-gray02);
    border-radius: 8px;
    padding: 7px 24px;
    color: var(--mb-green);
    font-weight: 600;
}
.mb-header .nav-item .nav-link:hover {
    background-color: var(--mb-gray02);
    border-radius: 8px;
    padding: 7px 24px;
    color: var(--mb-green);
    font-weight: normal;
}
.mb-header.sticky-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1020;
    background: var(--mb-white);
    -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25), 0 0 1px 0 rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25), 0 0 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25), 0 0 1px 0 rgba(0, 0, 0, 0.3);
}
.title{
    font-size: 2rem;
    font-family: var(--mb-font);
    font-weight: 700;
    color: var(--mb-black);
    margin-bottom: 20px;
}
.white-text{
    color: var(--mb-white);
}
.sec-space{
    margin: 70px 0px;
}
.sub-title{
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--mb-black);
    font-weight: 700;
    margin-bottom: 15px;
}
.submedium-title {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--mb-black);
    font-weight: 700;
    margin-bottom: 15px;
}
.sec-headline{
    color: var(--mb-black);
    font-size: 2rem;
    font-weight: 700;
}
.color-white{ color: var(--mb-white); }
.color-blue2{ color: var(--mb-blue02); }
.blue-text{
    color: var(--mb-blue);
}
.gray-text{
    color: var(--mb-gray03);
}
.gray-bg{
    background: var(--mb-light-gray);
}   
/*footer*/
.footer-area{
    background-color: var(--dark-blue);
    padding: 50px 0px 50px 0px;
    position: relative;
}
.footer-area .footer-col{
    margin-top: 30px;
    z-index: 2;
}
.footer-area .social-icon{
    margin-top: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.footer-area .social-icon .logo{
    width: 40px;
    height: 40px;
    border-radius: 25px;
    background: var(--mb-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.footer-area .social-icon .logo:hover{
    background: var(--mb-green);
}
.footer-area .social-icon .logo img{
    width: 20px;
    max-width: 20px;
}
.footer-area .social-icon .logo.fb img{
    width: 10px;
    max-width: 10px;
}
.footer-area .footer-qlinks h4, 
.footer-area .footer-contact h4,
.footer-area .footer-address h4
{
    font-size: 1.1rem;
    color: var(--mb-white);
    z-index: 2;
    position: relative;
}
.footer-area .footer-qlinks .qlinks, .footer-contact .contact-info .info-text{
    position: relative;
    font-size: 1rem;
    color: var(--mb-white);
    margin-top: 15px;
    font-weight: 300;
    z-index: 2;
}
.footer-area .footer-qlinks .qlinks.active{
    color: var(--mb-green);
    font-weight: 600;
}
.footer-area .footer-qlinks .qlinks:hover, .footer-area .info-text a:hover{
    color: var(--mb-green);
}
.footer-contact .contact-info, .footer-address .contact-info{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}
.footer-contact .contact-info .icon, .footer-address .contact-info .icon{
    width: 20px;
}
.footer-address .contact-info .icon{
    margin-top: -20px;
}
.footer-copyright h6{
    font-size: 1rem;
    font-weight: 300;
    color: var(--mb-white);
}
.footer-copyright-content{
    position: relative;
    z-index: 2;
}
.footer-copyright-content a{
    color: var(--mb-white);
    float: right;
}
.footer-copyright-content a:hover{
    color: var(--mb-green);
}
.footer-hr hr{
    border-color: var(--mb-white);
    margin: 60px 0px 20px 0px;
}
.footer-area .left-elements{
    max-width: 475px;
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 1;
}
.footer-area .right-elements{
    max-width: 700px;
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: 1;
}
.footer-area .width-fit-content{
    width: fit-content;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
    .mb-top-20{
        margin-top: 20px!important;
    }
    .mb-top-30{
        margin-top: 30px!important;
    }
    .container{
        padding: 0px 15px;
    }
    .title {
        font-size: 1.8rem;
    }
    .sub-title {
        font-size: 1.4rem;
    }
    .light-gray-card{
        padding: 30px 20px;
    }
    .footer-area {
        padding: 25px 0px 25px 0px;
    }
    .footer-area .footer-col{
        margin-top: 25px;
    }
    .footer-copyright-content a{
        margin-top: 5px;
        float: unset;
        text-align: center;
        width: 100%;
        display: block;
    }
   .footer-area .left-elements, .footer-area .right-elements{
        max-width: 300px;
    }
    .footer-area .social-icon {
        margin-top: 20px;
        justify-content: center;
        margin-bottom: 15px;
    }
    .footer-contact .contact-info, .footer-address .contact-info {
        justify-content: center;
        margin-top: 10px;
        padding-right: 25px;
    }
    .footer-col-logo{
        width: 100%;
    }
    .footer-col-logo .footer-logo img{
        margin: 0 auto;
    }
    .footer-area .width-fit-content{
        width: unset;
    }
    .sm-center{
        text-align: center;
    }
    .sm-mx-auto{
        margin: 0 auto;
    }
}
/*footer*/
.sec-space-inside{
    padding: 70px 0px;
}
.div-line{
    margin: 30px 0px;
    height: 1px;
    background: var(--mb-gray01);
    width: 100%;
}
.div-line-footer{
    margin: 35px 0px;
    height: 1px;
    background: var(--mb-gray01);
    width: 100%;
    opacity: 0.5;
}
.privacy-content .privacy-listing li{
    margin-bottom: 10px;
}
.banner-overlay{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.hover-gray:hover{
    background: var(--mb-gray02)!important;
    transition: 1s all;
    cursor: pointer;
}
.hover-gray:hover .sub-title, .hover-gray:hover .white-card-title  {
    color: var(--mb-green);
}