.hero__bg {
    background-image: url(/img/hero-bg-2.webp);
    background-size: cover;
    background-position: center center;
    height: 680px;
}

.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 6rem;
}

.hero__subtitle {
    color: var(--clr-light);
    font-size: var(--size-4xl);
    line-height: 0.9;
}

.hero__title {
    color: var(--clr-light);
    text-transform: uppercase;
    font-size: var(--size-8xl);
    letter-spacing: -0.05;
    line-height: 0.9;
}

.hero__description {
    max-width: 60ch;
    font-size: var(--size-xl);
    color: var(--clr-light);
}

.hero__btn__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.hero__btn {
    text-transform: capitalize;
    font-size: var(--size-xl);
}

/* 2xl */
/* @media (max-width: 1536px) {} */

/* xl */
@media (max-width: 1280px) {
    .hero {
        gap: 1.5rem;
        padding-top: 10rem;
    }

    .hero__subtitle {
        font-size: var(--size-2xl);
    }

    .hero__title {
        font-size: var(--size-7xl);
    }

    .hero__description {
        font-size: var(--size-lg);
    }

    .hero__btn {
        text-transform: capitalize;
        font-size: var(--size-lg);
    }
}

/* lg */
@media (max-width: 1024px) {
    .hero__bg {
        height: 620px;
    }

    .hero {
        gap: 1.5rem;
        padding-top: 10rem;
    }

    .hero__subtitle {
        font-size: var(--size-lg);
    }

    .hero__title {
        font-size: var(--size-5xl);
    }

    .hero__description {
        font-size: var(--size-base);
    }

    .hero__btn {
        text-transform: capitalize;
        font-size: var(--size-base);
    }
}

/* md */
/* @media (max-width: 768px) {} */

/* sm */
@media (max-width: 640px) {
    .hero__bg {
        height: 500px;
    }

    .hero {
        gap: 1.5rem;
        padding-top: 7rem;
    }

    .hero {
        gap: 1rem;
    }

    .hero__subtitle {
        font-size: var(--size-base);
    }

    .hero__title {
        font-size: var(--size-3xl);
    }

    .hero__description {
        font-size: var(--size-sm);
    }

    .hero__btn {
        text-transform: capitalize;
        font-size: var(--size-sm);
    }
}

/* xs */
/* @media (max-width: 475px) {} */
