/* Slider */
.main-slider-container, .testimonials-slider-container {
    width: 100%;
}

.main-slider-container {
    height: 60vh;
}

.testimonials-slider-container {
    height: 50vh;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
}

.testimonials-slider-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/galaxy.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(1.2) contrast(0.8) opacity(0.3);
    z-index: 0;
}

.testimonials-slider-container > * {
    position: relative;
    z-index: 1;
}

.wrapper, .slide {
    width: 100%;
    height: 100%;
}

.slide {
    overflow: hidden;
}

.slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 10;
}

.main-slide::before {
    background-color: rgba(0,0,0,0.2);
}

.slide, .slider-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider-img {
    width: 100%;
    display: block;
    animation: zoomEffect 3s ease-in-out forwards;
  }
  
  @keyframes zoomEffect {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }
  

.slide .image-data {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
}

.slider-title {
    margin: 30px;
    font-family: "Merriweather", serif;
}

.image-data span.slider-text {
    font-size: 34px;
    font-weight: 800;
    font-family: "Dancing Script", cursive;
}

.main-slider-title {
    font-size: 30px;
    font-weight: 600;
}

.main-slider-title, .main-slider-text {
    color: #fff;
}

.testimonial-name, .testimonial-text {
    color: black;
}

.testimonial-text {
    font-size: 18px;
}

.testimonial-name {
    text-align: end;
}

a.slide-button {
    display:inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    background: #fff;
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.swiper-button-next {
    margin-right: 10px;
}

.swiper-button-prev {
    margin-left: 10px;
}

.nav-btn::before, .nav-btn::after {
    font-size: 25px;
    color: #fff;
}

.swiper-pagination-bullet {
    opacity: 1;
    height: 15px !important;
    width: 15px !important;
    background-color: #fff !important;
}

.swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #fff !important;
}

/* Responsive */
@media screen and (min-width: 768px) {
    .main-slider-title {
        font-size: 40px;
    }

    .testimonial-text {
        font-size: 24px;
    }

    .swiper-button-next {
        margin-right: 50px;
    }
    
    .swiper-button-prev {
        margin-left: 50px;
    }

    .testimonials-slider-container {
        height: 45vh;
    }
}