header.main{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 1000;
    background-color: #701414;
    padding: 36px 0px;
    border-bottom: 20px solid $secondary-color;
    box-shadow: 18px 4px 8.4px 1px rgba(0, 0, 0, 0.11);
    transition: all .3s;
    .close-menu{
        display: none;
    }
    &.scrolled{
        background-color: #701414ec;
        @media screen and (max-width: 1200px) {
            background-color: #701414;
        }
    }
    @media screen and (max-width: 1200px) {
        width: 400px;
        height: 100%;
        max-width: 100%;
        left: auto;
        right: -400px;
        top: 0px;
        padding-top: 50px;
        .al-container{
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
            gap: 22px;
            >*{
                margin: 0px!important;
            }
        }
        .close-menu{
            display: block;
            width: 30px;
            aspect-ratio: 1;
            position: absolute;
            left: 20px;
            top: 20px;
            svg, svg *{
                fill: $secondary-color;
            }
        }
        &.active{
            right: 0px;
        }
    }
    .al-container{
        width: 1219px;
        position: relative;
        color: #FFF;
        font-family: 'Inter';
        a{
            color: #FFF;
            font-family: 'Inter';
            font-size: 20px;
            font-weight: 400;
            transition: all .3s; 
            position: relative;
            &:not(.no-after){
                &::after{
                    content: "";
                    position: absolute;
                    top: auto;
                    bottom: -2px;
                    left: 0px;
                    width: 0px;
                    height: 2px;
                    background-color: $secondary-color;
                    transition: all .3s;
                    z-index: 99;
                }
                &:hover{
                    color: $secondary-color;
                    &::after{
                        width: 100%;
                    }
                }
            }
        }
        span, span *{
            font-size: 20px;
            font-weight: 600;
        }
        .wellcome{
            margin-left: 3.5%;
            @media screen and (max-width: 1200px) {
                order: 3;
                text-align: center;
            }
        }
        .last-orders{
            margin-left: auto;
            gap: 7px;
            @media screen and (max-width: 1200px) {
                order: 3;
            }
        }
        .user{
            margin-left: 2.3%;
            gap: 7px;
            span{
                font-size: 20px;
                font-weight: 400;
            }
            @media screen and (max-width: 1200px) {
                order: 3;
            }
        }
        .cart-numeric{
            margin-left: 4.1%;
            @media screen and (max-width: 1200px) {
                order: 2;
            }
        }
    }
}
#wrapper{
    padding-top: 178px;
    @media screen and (max-width: 1200px) {
        padding-top: 30px;
    }
}
header.mobile-hamburger{
    display: none;
    @media screen and (max-width: 1200px) {
        display: flex;
    }
    box-shadow: 18px 4px 8.4px 1px rgba(0, 0, 0, 0.11);
    justify-content: center;
    align-items: center;
    padding: 5px;
    aspect-ratio: 1;
    background-color: $primary-color;
    position: fixed;
    top: 20px;
    left: auto;
    right: 20px;
    z-index: 999;
}