.banner {
    position: relative;
    height: 0;
	background: var(--gray-color-01);
	width: 100%;
	padding-bottom: calc(100vh - 100px);
}

.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__content {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    z-index: 3;
    color: #FFF;
    transform: translateY(-50%);
}

.banner__content h1 {
    font-size: 44px;
    font-family: 'Canela', serif;
    text-transform: uppercase;
    padding-bottom: 5px;
    font-weight: 300;
}

.banner__desc {
    font-family: 'Canela', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
}

.swiper-pagination {
    margin-bottom: 30px;
}

span.swiper-pagination-bullet {
    background: #FFF;
    opacity: 0.25;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 0.9;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

@media screen and (max-width: 1024px) {
    .banner__content h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding-bottom: 56.25%;
    }

    .swiper-pagination {
        margin-bottom: 5px;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }

    span.swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }
}
