/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #08b7ce;
}

.operacion {
background-color: #05cdff;
}

.novedades {
background-color: #2ec5f7;
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 35px 0;
  overflow: hidden;
}
.testimonial h3 {
  text-align: center;
  color: #01212b;
  padding-bottom: 7px;
  font-size: 20px;
  text-transform: uppercase;

}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.slide p {
  text-align: center;
  padding: 0 8%;
  font-size: 14px;
  font-weight: 400;
  color: #b8ecf6;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .title {
  font-size: 18px;
  font-weight: 600;
  color: #FcFcfc;
  text-shadow: 1px 1px 2px #055972;
  padding: 0 15px;
  text-align: center;
}
.details .date {
  font-size: 12px;
  font-weight: 400;
  color: #d3f2f9;
}
/* swiper button css */
.nav-btn {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-btn::after,
.nav-btn::before {
  font-size: 10px;
  color: #fff;
}
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.swiper-pagination-bullet-active {
  background-color: #b8ecf6;
}


@media screen and (max-width: 350px) {
  .slide p {
    padding: 0 20px;
  }
  .slide .details .title {
    padding: 0 20px;
  }
  
  .nav-btn {
    display: none;
  }
}