.home-swiper-container {
    height: 100vh;
}

.home-swiper {
    height: 100% !important;
    width: 100%;
    position: relative;
}

.home-swiper .swiper-slide .slide-content {
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.home-swiper .swiper-slide .slide-content .slide-inner-content {
    text-align: center;
    color: #fff !important;
}

.slide-inner-content h1,
.slide-inner-content h2,
.slide-inner-content p {
    color: #fff !important;
}

.swiper-slide img.slide-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0 !important;
    opacity: 1;
    transform: scale(1.2);
    animation: fadeOut 2s linear infinite;
}

.swiper-slide-active img.slide-background-img {
    animation: grow 12s linear infinite;
    z-index: 1 !important;
}

.home-swiper .slide-content {
    z-index: 2 !important;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1 !important;
}

.slide-description {
    margin-bottom: 50px;
}

.slide-button {
    padding: 20px 40px;
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #fff;
}

.slide-button:hover {
    opacity: 1;
}

@keyframes grow {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    25% {
        transform: scale(1.05);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    75% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes fadeOut {
    0% {
        transform: scale(1.2);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.225);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* 
<div class="swiper-pagination swiper-pagination-clickable swiper-pagination-bullets swiper-pagination-horizontal">
    <span class="swiper-pagination-bullet swiper-pagination-bullet-active" tabindex="0" aria-current="true">
    </span>
    <span class="swiper-pagination-bullet" tabindex="0">
    </span>
</div>
*/

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: all 0.6s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 15px;
    height: 15px;
    transition: all 0.6s ease;
}