/* Navbar */
.navbar {
    position: absolute !important;
    width: 100%;
    z-index: 3;
}

.logo {
    width: 150px;
}

.navbar .nav-item {
    font-size: 1.25rem;
    margin-left: 30px;
}

.navbar.scrolling-navbar.top-nav-collapse {
    background: #ff0000;
  }

/*  X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {
    .logo {
        width: 150px;
    }
}

/*  Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .logo {
        width: 140px;
    }
}

/*  Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .logo {
        width: 125px;
    }
}

/*  Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .logo {
        width: 100px;
    }
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .logo {
        width: 75px;
    }
}

/* XX-Small devices (portrait phones, less than 440px) */
@media (max-width: 440px) {
    .logo {
        width: 50px;
    }
}