/** Header Section **/
.header-container {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}
.schoolone-logo {
    width: 150px;
}
.void-logo {
    width: 145px;
}

.navbar {
    /* padding: 15px; */
    position: sticky;
    background-color: var(--primary-background-color);
}
.nav-container {
    width: 100%;
    height: 44px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
}
@media (max-width: 767px) {
    .nav-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
.logo-container {
    display: flex;
}
.nav-menu {
    list-style: none;
    margin: 0 2rem 0 0;
}
/* Add gap only for desktop */
@media only screen and (min-width: 992px) {
    .nav-menu {
        gap: 2rem;
    }
    .navbar-collapse {
        justify-content: end;
    }
}
.nav-menu .nav-link {
    text-decoration: none;
    color: var(--primary-text-color);
    font-weight: 400;
}
.nav-menu .nav-link.active, .nav-menu .nav-link:hover {
  font-weight: 600;
  background-image: linear-gradient(
    270deg,
    var(--gradient-color-1) 20.33%,
    var(--gradient-color-2) 99.9%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-btn {
    height: 44px;
    width: 150px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--primary-text-color);
    background: transparent;
    border: 1px solid var(--primary-text-color);
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 991px) { 
    .schoolone-logo {
        width: 40px;
    }
    .schoolone-logo-footer {
        width: 95px;
    }
}