@import url('https://fonts.googleapis.com/css2?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&display=swap');

*{
    font-family: 'poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
}

/* -------------------- Navbar start -------------------- */
.navbar {
    box-shadow: 0px 2px 8px rgba(0,0,0,0.08);
    background-color: white !important;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand{
    width: 120px;
}

.nav-item{
    font-weight: 500;
    margin: 0 5px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.nav-link{
    color: black;
    transition: 0.1s;
}

.nav-active{
    background-color: #0039cb;
}

.nav-active .nav-link{
    color: white;
}

.nav-item:hover{
    background-color: #0039cb;
}

.nav-item:hover .nav-link{
    color: white;
}

.nav-item:hover {
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    background-color: #0039cb;
}

.dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
    padding: 8px 0;
}

.dropdown-item{
    padding-right: 50px;
}

.dropdown-item:hover{
    color: #0039cb;
}

.dropdown-item:focus{
    background-color: white;
}

.dropdown-toggle::after {
    display: none !important;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .nav-container{
        width: 75%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .nav-container{
        width: 85%;
    }
}

@media (max-width: 992px) {
    .nav-item{
        margin-bottom: 10px;
    }
}
/* -------------------- Navbar end -------------------- */

footer{
    box-shadow: 0px -2px 8px rgba(0,0,0,0.08);
}

footer a:hover{
    color: #0039cb !important;
}

@media (max-width: 992px) {
    footer{
        img{
            max-width: 150px;
        }
    }
}