.banner {
    position: relative;
    background-color: #ff8731;
    overflow: hidden;
    z-index: 2;
}

.banner__image {
    display: block;
    opacity: 0;
    transform: scale(1.05);
    animation: fadeInImage 1s ease forwards;
    width: 100%;
    object-fit: cover;
    height: 100vh;
}

.banner__container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__content {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    gap: 1.25rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInText 1s ease forwards;
    animation-delay: 0.5s;
}

.banner__title {
    font-family: "Unbounded", sans-serif;
    font-size: 4.063rem;
    font-weight: 900;
    text-transform: uppercase;
}

.banner__title br {
    display: none;
}

.banner__description {
    font-size: 2.063rem;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .banner__content {
        gap: 0.947rem;
    }

    .banner__title {
        font-size: 3.099rem;
    }

    .banner__description {
        font-size: 1.607rem;
    }
}

@media (max-width: 768px) {
    .banner__title {
        font-size: 3.857rem;
    }

    .banner__title br {
        display: inline;
    }

    .banner__description {
        font-size: 2.089rem;
    }

    .banner__description br {
        display: none;
    }
}