@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    /* font-weight: normal;
    font-style: normal; */
}

body {
    /* background-color: #EEEEEE !important; */
    background-color: #EEEEEE !important;
    font-family: 'poppins', sans-serif !important;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: underline !important;
}

.link-btn {
    text-decoration: underline !important;
    color: #333;
}

.color-primary {
    color: #00b899 !important;
}

/* Fonts */
.font-small {
    font-weight: 500;
    font-size: 1.55vw !important;
    color: #333;
}

.font-small-special {
    font-weight: 500;
    font-size: 1.25vw !important;
    color: #727272;
}

.font-super-small {
    font-weight: 500 !important;
    font-size: 1vw !important;
    color: #333 !important;
}

.font-large {
    font-weight: 500;
    font-size: 2.5vw !important;
    color: #333;
}


/* Fonts Mobile */
@media screen and (max-width:576px) {
    .font-large {
        font-size: 7vw !important;
    }

    .font-small {
        font-size: 4.5vw !important;
    }

    .font-small-special {
        font-size: 4vw !important;
    }

    .font-super-small {
        font-size: 3vw !important;
    }
}

/* NabBar */

.navbar {
    background-color: #F3F8FF !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

nav div .font-small-special {
    color: #333 !important;
}

.nav-item:hover {
    background-color: #00b899 !important;
}

.nav-link {
    color: #333 !important;
}

.nav-link:hover {
    color: #333 !important;
}

/* NavBar-Mobile */
@media screen and (max-width:576px) {

    .nav-item {
        margin: 1.5vh 0vh;
    }

    .navbar-toggler {
        border: none !important;
    }

    .active {
        border-bottom: unset;
    }
}

/* Breadcrumb */
.bcb-sec {
    margin: 5% 5% 0% 5%;
}

.bcb-sec a {
    color: #333 !important;
    text-decoration: underline !important;
}

/* Breadcrumb Mobile */
@media screen and (max-width:576px) {

    .bcb-sec {
        margin: 15% 5% 0% 5%;
    }
}


/* Footer */
footer {
    background-color: #f3f8ff;
    padding: 2% 0;
}

.footer-div {
    margin: 5% 1%;
    display: flex;
    justify-content: space-evenly;

}

footer div .font-small-special {
    color: #333 !important;
}

.footer-contact-div a {
    margin: auto 5%;
    text-decoration: none;
}

.footer-contact-div i {
    color: #333;
}

.footer-icon-div {
    width: 25%;
    margin: auto 0;
    text-align: center;
}

.footer-img-div {
    width: 25%;
}

.footer-icon {
    background-color: #333;
    padding: 1% 3.5%;
    border-radius: 10%;
    font-size: 2vw;
    margin: auto 5%;
    color: #F3F8FF;

}

.footer-link-div {
    width: 50%;
    text-align: center;
}

.footer-link-div a {
    text-decoration: none;
    margin: auto 5%;
    color: #333;
}

/* Footer Mobile */
@media screen and (max-width:576px) {
    .footer-div {
        margin: 5% 1%;
        display: flex;
        flex-direction: column-reverse;

    }

    .footer-contact-div a {
        margin: 2.5% 5%;
        text-decoration: none;
        display: block;
        text-align: left !important;
    }

    .footer-icon-div {
        width: 100%;
        margin: 5% 0;
        text-align: center;
    }

    .footer-icon {
        padding: 2% 3%;
        border-radius: 10%;
        font-size: 6vw;
        margin: auto 2.5%;

    }

    .footer-link-div {
        width: 100%;
        margin: 5% 0;
        text-align: center;
    }

    .footer-img-div {
        width: 100%;
        margin: 5% auto;
        text-align: center;
    }

}