.home-banner>.swiper {
    aspect-ratio: 2 / 1;
    min-height: 720px;
    width: 100%;
}

.home-banner-bg {
    position: absolute;
    inset: 0;
    height: 100%;

    >img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    >div {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 80%, rgba(0, 0, 0, 0.20) 100%);
    }
}

.home-banner-content {
    position: absolute;
    inset: 50% 0 auto;
    transform: translateY(-50%);

    h1 {
        margin-bottom: 24px;
    }

    h4 {
        white-space: pre-line;
        color: var(--color-gray-3);
    }
}

.home-banner-swiper-change-page {
    position: absolute;
    inset: auto 0 120px;
    z-index: 1;

    .container {
        display: flex;
        align-items: center;
        gap: 12px;
    }


}

.home-banner-swiper-prev,
.home-banner-swiper-next {
    display: flex;
    align-items: center;
    gap: 4px;

    >p {
        font-family: "Calypso", sans-serif;
        color: white;
    }

    >svg {
        flex-shrink: 0;
        transition: transform 0.3s;
    }
}

.home-banner-swiper-prev:hover>svg {
    transform: translateX(-10px);
}

.home-banner-swiper-next:hover>svg {
    transform: translateX(10px);
}

.home-banner-swiper-pagination {
    display: flex;
    gap: 12px;
    width: fit-content !important;

    >.bullet {
        >svg> :nth-child(1) {
            opacity: 0;
            transition: opacity 1s;
        }

        &.active>svg> :nth-child(1) {
            opacity: 1;
        }
    }
}

@media screen and (width < 768px) {
    .home-banner>.swiper {
        aspect-ratio: auto;
        min-height: auto;
        height: 470px;
    }
}
@media screen and (width < 576px) {
    .home-banner-content {
        transform: none;
        inset: auto 0 100px;
        h1 {
            margin-bottom: 12px;
        }
    }
    .home-banner-swiper-change-page {
        inset: auto 0 24px;
        .container {
            justify-content: center;
        }
    }
}