header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

header .container {
    padding: 30px 30px 0 30px;
    display: flex;
    justify-content: space-between;
}

header .header-logo .mobile-show {
    display: none;
}

header .header-links {
    display: flex;
}

header .header-links div:first-child {
    margin-right: 36px;
}

header .header-links a {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
}

header .container img {
    width: 157px;
    height: 98px;
}

header .header-links a {
    position: relative;
}

header .header-links a:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -4px;
    background: #B2B2B2;
    transition: 0.5s;
}

header .header-links a.active {
    color: #B2B2B2;
}

header .header-links a.active:after {
    width: 100%;
}

@media screen and (max-width: 576px) {
    header {
        background: #282828;
    }

    header .container {
        padding: 12px 20px;
    }

    header .header-logo .pc-show {
        display: none;
    }

    header .header-logo .mobile-show {
        display: flex;
    }

    header .header-logo .mobile-show img {
        width: 32px;
        height: 40px;
    }

    header .header-links a {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-height: 600px) and (min-width: 350px) and (max-width: 992px) {
    header .container {
        padding: 15px 15px 0 15px;
    }

    header .container img {
        height: 68px;
        width: auto;
    }

    header .header-links a {
        font-size: 14px;
        line-height: 18px;
    }
}