.swiper-button-next, .swiper-button-prev{
    color: #fff !important;
}

.swiper-slide {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.swiper-slide p {
    position: absolute;
    top: 70%;
    left: 10%;
    font-size: 2rem;
    color: #fff;
animation: slideInRight 0.3s ease-in-out;
text-shadow: 2px 2px 15px #000;
}

.swiper-slide span {
    position: absolute;
    top: 77%;
    left: 10%;
    font-size: 1rem;
    color: #fff;
animation: slideInRight 0.3s ease-in-out;
text-shadow: 2px 2px 10px #000;
}

.swiper-pagination-bullet-active  {
    background: #fff !important;
}

@media screen and (max-width: 768px) {
    .swiper-slide p {
        font-size: 1.5rem;
        bottom: 1rem;
        left: 2rem;
    }

    .swiper-slide span {
        font-size: 0.8rem;
    }
}

.swiper-slide-active p {
    animation: fadeInRight 1s ease-in-out both;
}

.swiper-slide-active span {
    animation: fadeInRight 1s ease-in-out 0.5s both;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
