header{
    width: 100%;
    height: 96px;
    background-color: #1A191D;
    position: sticky;
    top: 0;
    padding: 16px 0;
    z-index: 999;
}
header .container {
    width: 90%;
    max-width: 1664px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    width: 203px;
    height: 64px;
}
header .menu-icon {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
header .menu-icon .line {
    background-color: #fff;
    width: 100%;
    height: 2px;
    border-radius: 1px;
}
header .menu-icon .line-top, header .line-bottom {
    position: absolute;
    transform: translateY(-50%);
    transition: 0.2s linear;
}
header .menu-icon .line-top {
    top: 1px;
}
header .menu-icon .line-bottom {
    top: 29px;
}
header .menu-icon:hover .line-top, header .menu-icon:hover .line-bottom {
    top: 50%;
}
header .for-client {
    width: 185px;
    height: 52px;
    text-align: center;
    border: 1px solid #FFFFFF;
    border-radius: 1000px;
    color: #fff;
    background-color: #1A191D;
    transition: all 0.5s ease;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    padding: 12px 16px;
    text-decoration: none;
    animation: glow-auto 3s infinite ease-in-out;
}
header .for-client:hover {
    color: #1A191D;
    background-color: #fff;
}
header .for-client:active {
    color: #1A191D;
    background-color: #fff;
    opacity: 0.5;
}
@keyframes glow-auto {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255,255,255,0.1), inset 0 0 2px rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255,255,255,0.5), inset 0 0 10px rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,1);
    }
}

@media (max-width: 1280px) {
    header {
        height: 64px;
        padding: 12px 0;
    }
    header .container {
        width: 90%;
        max-width: 888px;
        height: 40px;
    }
    header .logo {
        width: 128px;
        height: 40px;
    }
    header .logo img{
        height: 100%;
    }
    header .for-client {
        width: 125px;
        height: 35px;
        font-weight: 500;
        font-size: 11px;
        line-height: 24px;
        padding: 5px 6px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 0;
        height: 72px;
    }
    header .container {
        width: 90%;
        max-width: 311px;
        height: 32px;
    }
    header .logo, header .burger-container {
        height: 32px;
    }
    header .for-client {
        display: none;
    }
}
