.header {
    position: sticky;
    top: 0;
    transition: background-color 0.4s ease;
    background-color: #202938;
    z-index: 3;
}

.header__content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 11.25rem;
    height: 4.688rem;
}

.header__logo img {
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    gap: 1.25rem;
    font-size: 1.125rem;
    font-weight: bold;
}

.header__nav a {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.header__nav a:hover {
    color: #ff8731;
    transform: translateY(-2px);
    transition: 0.2s ease;
}

.header__nav a:nth-child(1) {
    animation-delay: 0.1s;
}

.header__nav a:nth-child(2) {
    animation-delay: 0.2s;
}

.header__nav a:nth-child(3) {
    animation-delay: 0.3s;
}

.header__nav a:nth-child(4) {
    animation-delay: 0.4s;
}

.header__nav a:nth-child(5) {
    animation-delay: 0.5s;
}

.header__nav a:nth-child(6) {
    animation-delay: 0.6s;
}

.header__actions {
    display: flex;
    gap: 3.125rem;
}

.header__controls {
    display: flex;
    align-items: center;
    height: 3.75rem;
    gap: 15px;
}

.header__btn-bg {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #FF6B01;
    border-radius: 100px;
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
}

.header__btn-bg svg {
    width: 70%;
    height: auto;
}

.header__btn-contact {
    background-color: #FF6B01;
    padding: 0 3.125rem;
    border-radius: 80px;
    text-transform: uppercase;
    font-size: 1.375rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.938rem;
    height: 100%;
    cursor: pointer;
}

.header__btn-contact img {
    height: 2.5rem;
    width: 2.5rem;
}

.burger-menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(32, 41, 56, 0.85);
    height: 100vh;
    width: 28.698rem;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s ease, visibility 0.4s ease;
}

.burger-menu--open {
    transform: translateX(0);
    visibility: visible;
}

.burger-menu__container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.296rem;
    padding: 3.444rem 2.296rem;
    z-index: 1;
}

.burger-menu__close {
    position: absolute;
    right: 2.296rem;
}

.burger-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.722rem;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
}

.burger-menu__socials {
    display: flex;
    gap: 1.722rem;
}

.burger-menu__social {
    width: 5.74rem;
    height: 5.74rem;
}

.burger-menu__social img {
    width: 5.74rem;
    height: 5.74rem;
}

.burger-menu__image {
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media (max-width: 1024px) {
    .header__content {
        max-width: none;
        padding-top: 0.3125rem;
        padding-bottom: 0.3125rem;
    }

    .header__nav {
        display: none;
    }

    .header__btn-bg {
        display: flex;
    }

    .header__logo {
        height: 4.9368rem;
    }

    .header__controls {
        height: 4.018rem;
    }

    .header__btn-contact {
        padding: 0 3.748rem;
        font-size: 1.378rem;
        gap: 1.138rem;
    }

    .header__btn-contact img {
        height: 2.87rem;
        width: 2.87rem;
    }

    .burger-menu__close img,
    .burger-menu__close {
        width: 2.87rem;
        height: 2.87rem;
    }
}

@media (max-width: 768px) {
    .header__logo {
        height: 4.822rem;
    }

    .header__controls {
        gap: 5px;
        height: 4.821rem;
    }

    .header__btn-contact {
        padding: 0 2.893rem;
        font-size: 1.607rem;
        gap: 1.607rem;
    }

    .header__btn-contact img {
        height: 3.535rem;
        width: 3.535rem;
    }

    .burger-menu {
        width: 100vw;
    }

    .burger-menu__container {
        gap: 4.821rem;
    }

    .burger-menu__nav {
        font-size: 2.411rem;
        gap: 3.214rem;
    }

    .burger-menu__socials {
        gap: 2.411rem;
    }

    .burger-menu__social img,
    .burger-menu__social {
        height: 8.035rem;
        width: 8.035rem;
    }

    .burger-menu__close img,
    .burger-menu__close {
        height: 4.821rem;
        width: 4.821rem;
    }
}