.hero-container {
    padding-top: 235px;
}

#menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#menu-header li {
    margin: 0 10px;
    text-transform: uppercase;
}

#menu-header li a:hover {
    color: var(--accent-color);
}

#menu-header li:last-child a {
    font-family: var(--accent-font);
    padding: 20px 32px;
    background-color: var(--accent-color);
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: white;
    margin: 0 auto;
    cursor: pointer;
    transition: all ease 500ms;
    z-index: 10;
}

#menu-header li:last-child a:hover {
    background-color: #BFAA8E;
}


#alc-logo {
    width: 192px;
    height: auto;
    transition: width 1s ease;
}

#navbar_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    transition: all ease 5s;
}

.sticky #navbar_top {
    align-items: flex-end;
    transition: all ease 500ms;
}

#navbar-inside {
    transition: top 1s ease;
}

.el__nav-bar {
    position: relative;
    top: 0;
}

#top-header {
    background-color: var(--basic-color);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
}

.burger-mobile {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
    transition: all ease 500ms;
}


/* MENU mobile burger */

@media (max-width: 1256px) and (min-width: 992px) {
    a.nav-link {
        font-size: 16px;
    }

    #alc-logo {
        width: 100px;
    }

    #menu-header li:last-child a {
        font-size: 16px;
        padding: 10px 18px;
    }

    #navbar_top {
        padding: 25px 10px;
    }
}

@media (max-width: 992px) {

    .hero-container {
        padding-top: 135px;
    }

    .burger-mobile {
        display: block;
        position: absolute;
        right: 20px;
    }

    #top-header {
        position: relative;
        width: 100%;
    }

    .el__nav-bar {
        position: initial;
    }

    #alc-logo {
        width: 120px !important;
    }
    
    #navbar_top {
        padding: 10px 40px !important;
    }
    
    #navbar-inside {
       top: 0 !important;
    }

    #menu-header {
        height: 90vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        padding-left: 0;
    }

    #menu-header li a:hover, #menu-header li a {
        color: var(--basic-color);
    }

    #menu-header li {
        margin: 15px 0;
    }

    #menu-header li:last-child a {
       color: var(--accent-color);
       background: var(--basic-color);
    }

    #menu-header li:last-child {
       margin-top: 50px;
    }

    .burger-mobile div {
        z-index: 10;
        position: relative;
        top: 3px;
        height: 2px;
        width: 28px;
        background-color: var(--accent-color);
        margin-bottom: 5px;
        transition: 0.3s ease transform, 0.3s ease top, 0.3s ease width, 0.3s ease right;
        border-radius: 2px;
    }
    
    .burger-mobile.open div:first-child {
        transform: rotate(45deg);
        top: 7px;
        width: 32px;
    }
    
    .burger-mobile.open div:nth-child(2) {
        width: 0;
        transform: rotate(45deg);
    }
    
    .burger-mobile.open div:last-child {
        transform: rotate(-45deg);
        top: -7px;
        width: 32px;
    }
    
    .collapse.navbar-collapse {
        display: none !important;
    }
    
    
    .collapse.navbar-collapse.show {
        display: block !important;
        position: absolute;
        top: 100%;
        padding-top: 20px;
        display: flex;
        right: 0;
        background-color: var(--accent-color);
        flex-direction: column;
        margin-left: 0;
        width: 100%;
    }
}


@media (max-width: 375px) {

    #menu-header {
        padding-left: 0;
    }

}