header {
    padding: 10px 0;
    background-color: #FFF;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.header-inner .logo img {
    width: 100%;
    max-width: 160px;
}

.nav-cta {
    background: #EE0033;
    color: #FFF !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
    border-radius: 35px;
}

.nav-cta:hover {
    background: #C20028;
}

.header.affix {
    width: 100%;
    top: 0;
    box-shadow: 1px 2px 7px rgba(0, 0, 0, 0.15);
    animation: slide-down .5s linear forwards;
    z-index: 101;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .header-inner .logo img {
        max-width: 130px;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 12px;
    }
}