.home-banner{
    height: calc(100vh - var(--nav-height));
}
.home-banner-bg{
    position: absolute;
    inset: 0;
    filter: brightness(0.6);
}
.home-banner-bg__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-banner-content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.home-banner-content__container{
    width: 100%;
}

.home-banner-content__title,
.home-banner-content__content{
    width: 75%;
    max-width: 480px;
	white-space: pre-line;
}

.home-banner-content__title{
    margin-bottom: 24px;
    color: white;
}
.home-banner-content__content{
    white-space: pre-line;
    color: white;
}
.home-banner-swiper-pagination{
    position: absolute;
    z-index: 1;
    top: 0 !important;
    bottom: 0 !important;
    right: 91px;
    left: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    transform: none;
}
.home-banner-swiper-pagination__bullet{
    width: 4px;
    height: 28px;
    border-radius: 999px;
    background-color: var(--color-gray-4);
    transition: background-color 1s, height 1s;
}
.home-banner-swiper-pagination__bullet--active{
    background-color: var(--color-primary-1);
    height: 52px;
}
@media screen and (width < 1248px) {
    .home-banner-content__title,
    .home-banner-content__content{
        max-width: none;
    }
}


@media screen and (width < 768px) {
    .home-banner-swiper-pagination{
        right: 24px;
    }
}
@media screen and (width < 576px) {
    .home-banner-content{
        align-items: end;
    }
    .home-banner-content__container{
        padding-bottom: 60px;
    }
    .home-banner-content__title,
    .home-banner-content__content{
        width: 90%;
    }
    .home-banner-swiper-pagination{
        justify-content: end;
        padding-bottom: 60px;
    }
}