header {
    width: 100vw;
    height: 11.4vw;
    background-color: #F4F4F4;
    padding-right: calc(26.05vw / 2);
    padding-left: calc(26.05vw / 2);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-logo {
    width: 73.95vw;
    height: auto;
    padding-top: 1.66vw;
    display: flex;
    justify-content: center;
}

.header-logo img{
    width: 12.34vw;
    height: auto;
}

.btn-mobile-menu {
    position: fixed;
    top: 5.71vw;
    left: 5.19vw;
    z-index: 9999;
    display: none;
}

.btn-mobile-menu img {
    width: 21px;
    height: auto;
}

.backdrop-mobile-menu {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 9997;
}

.backdrop-mobile-menu.active {
    left: 0;
}

.mobile-menu {
    width: 55.06vw;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: -55.06vw;
    z-index: 9998;
    transition: all .25s;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    margin-top: 16.62vw;
    padding-left: 5.19vw;
    border-top: 1px solid #3c3838;
}

.mobile-menu ul li {
    margin-top: 6.23vw;
    height: 4.41vw;
    list-style-type: none;
}

.mobile-menu li a {
    font-size: 14px;
    line-height: 17px;
    color: #2E2828;
    text-transform: uppercase;
}

@media only screen and (max-width: 565px) {
    header {
        height: 25.7vw;
        padding-right: 5.19vw;
        padding-left: 5.19vw;
    }

    .header-logo {
        width: calc(100% - 10.38vw);
        padding-top: 5.71vw;
    }

    .header-logo img {
        width: 35.84vw;
        height: auto;
    }

    .btn-mobile-menu {
        display: block;
    }
}

@media only screen and (min-width: 566px) and (max-width: 767px) {
    .btn-mobile-menu {
        display: block;
    }

    .btn-mobile-menu {
        top: 3.53vw;
        left: 2.46vw;
    }

    .mobile-menu {
        width: 26.1vw;
    }

    .mobile-menu ul {
        margin-top: 7.88vw;
        padding-left: 2.46vw;
    }

    .mobile-menu ul li {
        margin-top: 3.01vw;
        height: 2.09vw;
        list-style-type: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .btn-mobile-menu {
        display: block;
    }

    .btn-mobile-menu {
        top: 3.53vw;
        left: 2.46vw;
    }

    .mobile-menu {
        width: 26.1vw;
    }

    .mobile-menu ul {
        margin-top: 7.88vw;
        padding-left: 2.46vw;
    }

    .mobile-menu ul li {
        margin-top: 3.01vw;
        height: 2.09vw;
        list-style-type: none;
    }
}