.navbar {
    padding: 0.5rem 1rem !important;
}
.menu-container {
    height: 100vh;
    width: 100%;
    background: rgba(60, 61, 65, 0.95);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu-content {
    position: relative;
    top: 15%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.menu-content a {
    padding: 16px 0px;
    text-decoration: none;
    font-size: 20px;
    display: block;
    color: #FFCD34;
}

.menu-content .row {
    padding: 5px 0px;
}

/* Hamburger Icon */
.nav-icon-custom {
    width: 20px;
    height: 15px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.nav-icon-custom span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-icon-custom span:nth-child(1) {
    top: 0px;
}

.nav-icon-custom span:nth-child(2),
.nav-icon-custom span:nth-child(3) {
    top: 7px;
}

.nav-icon-custom span:nth-child(4) {
    top: 14px;
}

.nav-icon-custom.open span:nth-child(1) {
    top: 7px;
    width: 0%;
    left: 50%;
}

.nav-icon-custom.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon-custom.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon-custom.open span:nth-child(4) {
    top: 7px;
    width: 0%;
    left: 50%;
}

#navlogo {
    display: none;
}

#navlinks {
    height: 35px;
}

@media (max-width: 991px) {
    #navlogo {
        display: block;
    }
}

@media (max-width: 767px) {
    .navbar-container{
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 575px) {
    .menu-content {
        position: relative;
        top: 5%;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .menu-content a {
        padding: 5px 0px;
        text-decoration: none;
        font-size: 18px;
        display: block;
        color: #FFCD34;
    }
}
