/* Google font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Animate.css librery */
@import 'animate.css/animate.min.css';

*{
    font-family: 'inter' , sans-serif;
    margin: 0;
    padding: 0;
}

:root{
    --theme-color-blue: #0E4F98;
    --theme-color-red: #BF0005;
    --std-padding: 50px;
    --header-height: 60px;
}

.theme-color-blue{
    color: var(--theme-color-blue);
}
.theme-color-red{
    color: var(--theme-color-red);
}

html, body { 
    height: 100%;
}
body { 
    padding-top: var(--header-height);
    margin: 0;   
    background-image: url(../images/bg-circle.webp);
    background-size: 50px auto;
}

/* .header-height{
    height:var(--header-height);
} */

.padding-x{
    padding-left: var(--std-padding) !important;
    padding-right:var(--std-padding) !important;
}

.padding-e{
    padding-right: var(--std-padding);
}
.padding-s{
    padding-left: var(--std-padding);
}

.center-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-center-cover{
    background-size: cover;
    background-position: center;
}

.filled-blue-btn{
    background-color: var(--theme-color-blue);
    border: 2px solid var(--theme-color-blue);
    color: white;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    border-radius: 16px 16px 16px 0px;
}

.filled-blue-btn-md{
    background-color: var(--theme-color-blue);
    border: 2px solid var(--theme-color-blue);
    color: white;
    padding: 7px 10px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    border-radius: 16px 16px 16px 0px;
}

.filled-blue-btn-sm{
    background-color: var(--theme-color-blue);
    border: 2px solid var(--theme-color-blue);
    color: white;
    padding: 4px 8px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    border-radius: 16px 16px 16px 0px;
}

.text-justify{
    text-align: justify;
}

.unfilled-btn{
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    border-radius: 16px 16px 16px 0px;
}

.rounded-pill-left{
    border-radius: 0 50em 50em 0;
}

.rounded-pill-right{
    border-radius: 50em 0 0 50em;
}

.curved-img-bg-right{
    position: absolute;
    bottom: 0;
    left: 60%;
    z-index: 2;
    height: 110%;
}

.curved-img-bg-left{
    position: absolute;
    bottom: 0;
    right: 50%;
    z-index: 2;
    height: 110%;
}

.bg-theme-color-blue{
    background-color: var(--theme-color-blue);
}

.main-title{
    color: var(--theme-color-blue);
    font-weight: 700 !important;
    font-size: 2rem !important;
}
.main-title-md{
    color: var(--theme-color-blue);
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
}

.main-title-light{
    color: #fff;
    /* font-weight: 700 !important;
    font-size: 2rem !important; */
    font: 600 2rem/2.2rem 'inter' , sans-serif !important;
}

.title-underline{
    margin-left: 10px;
    width: 100px;
    height: 1px;
    background-color: var(--theme-color-blue);
}

.title-underline-light{
    margin-left: 10px;
    width: 100px;
    height: 1px;
    background-color: #fff;
}

.clickable-text{
    color: #3a92f7;
    cursor: pointer;
}

.w-lg-0{
    width: 0% !important;
}

.w-lg-25{
    width: 25% !important;
}

.w-lg-50{
    width: 50% !important;
}

.w-lg-75{
    width: 75% !important;
}

.w-lg-100{
    width: 100% !important;
}

/* Header styless */
.navbar{
    height: 60px;
    padding: 5px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #FEFEFE;
}
.nav-item{
    margin: 0 10px;
    font-weight: 500;
}
.nav-link{
    color:black;
}

.nav-link.nav-active{
    color: var(--theme-color-blue);
}

/* Footer Styles */
.page-footer{
    position: relative;
    /* display: grid;
    grid-template-columns: 60% auto; */
    background-image: url(../images/footer-bg.webp);
}

.page-footer::before{
    content: '';
    background-color:rgb(69, 68, 68);
    mix-blend-mode: hard-light;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* clip-path: polygon(0 0, 85% 0, 46% 99%, 0% 100%); */
}

.page-footer *{
    position: relative;
    z-index: 3;
}

.page-footer .container-bg-blue{
    width: 40%;
    background-color: #fff;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    padding-left: 5%;

}

@media screen and (max-width:500px) {
    .page-footer{
        grid-template-columns: 100%;
    }

    .navbar{
        height: auto;
    }
    .navbar-brand .header-logo{
        height: 50px !important;
    }
}

@media screen and (max-width:900px) {
    
}

@media screen and (max-width:500px) {
    :root{
        --std-padding: 20px;
    }
    .w-sm-0{
        width: 0% !important;
    }
    
    .w-sm-25{
        width: 25% !important;
    }
    
    .w-sm-50{
        width: 50% !important;
    }
    
    .w-sm-75{
        width: 75% !important;
    }
    
    .w-sm-100{
        width: 100% !important;
    }

    .pd-md-3{
        padding: 1rem !important;
    }

    .vh-sm-25{
        height: 25vh !important;
    }

    .filled-blue-btn{
        background-color: var(--theme-color-blue);
        border: 2px solid var(--theme-color-blue);
        color: white;
        padding: 7px 8px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 15px;
        border-radius: 16px 16px 16px 0px;
    }

    .unfilled-btn{
        background-color: transparent;
        border: 2px solid white;
        color: white;
        padding: 7px 8px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 15px;
        border-radius: 16px 16px 16px 0px;
    }

    .main-title {
        color: var(--theme-color-blue);
        font-weight: 700 !important;
        font-size: 1.8rem !important;
    }

    .padding-x{
        padding-left: var(--std-padding) !important;
        padding-right: var(--std-padding) !important;
    }
    
    .page-footer .container-bg-blue{
        width: 100%;
        clip-path: none;
    }

    .di-sm-none{
        display: none !important;
    }
    
}
