header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 16px 0;
    background-color: #E0E0E0;
    z-index: 999;
}

header .section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-links {
    display: flex;
    align-items: center;
}

header .header-link {
    margin-right: 20px;
}

header .header-link a {
    text-transform: uppercase;
    text-decoration: none;
}

header .header-link:last-child {
    margin-right: 0;
}

header .mobile-menu {
    display: none;
}

#mobile-menu {
    display: none;
}

@media screen and (max-width: 580px) {
    header .pc-menu {
        display: none;
    }

    header .mobile-menu {
        display: flex;
    }

    header .header-logo img {
        width: 33px;
    }

    header .mobile-menu a {
        font-family: Font_Awesome_5_Free, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
    }

    body.mobile-menu-active #mobile-menu {
        right: 0;
    }

    #mobile-menu {
        z-index: 999;
        display: flex;
        flex-direction: column;
        position: fixed;
        background-color: #F0F0F0;
        top: 0;
        right: -100%;
        width: calc(100% - 24px);
        height: 100%;
        padding: 16px 12px;
        transition: right 0.5s;
    }

    #mobile-menu .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mobile-menu .head .header-logo img {
        width: 33px;
    }

    #mobile-menu .head .close-menu a {
        font-style: normal;
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
    }

    #mobile-menu .body {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    #mobile-menu .body img {
        margin-top: 52px;
        margin-bottom: 52px;
        width: 100%;
        max-width: 300px;
    }

    #mobile-menu .body .scrolls-href {
        font-style: normal;
        font-weight: 400;
        font-size: 26px;
        line-height: 34px;
        text-transform: uppercase;
        font-feature-settings: 'liga' off;
        margin-bottom: 104px;
    }

    #mobile-menu .body .get-in-touch {
        font-style: normal;
        font-weight: 400;
        font-size: 22px;
        line-height: 22px;
        text-transform: uppercase;
        font-feature-settings: 'liga' off;
        padding: 12px 32px 8px 32px;
        margin-bottom: 12px;
    }

    #mobile-menu .body .get-in-touch:hover {
        color: #000000;
    }

    #mobile-menu .body .first-href {
        margin-bottom: 8px !important;
    }

    #mobile-menu .body .social-href-first {
        margin-top: auto;
        margin-bottom: 8px !important;
    }

    #mobile-menu .body .social-href {
        margin-bottom: 84px;
    }

    #mobile-menu .body .social-href a {
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #525252;
    }
}

@media screen and (max-width: 580px)  and (max-height: 720px) {
    #mobile-menu .body .scrolls-href {
        margin-bottom: 64px;
    }

    #mobile-menu .body .social-href {
        margin-bottom: 44px;
    }
}