.gradient {
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.popUp {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-color: rgb(0, 0, 0, 0.5);
}

.cover {
  opacity: 0;
  animation-name: out;
  animation-duration: 0.5s;
}
.cover:hover {
  opacity: 0.5;
  animation-name: in;
  animation-duration: 0.5s;
}

@keyframes in {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@keyframes out {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 0;
  }
}

/* Swiper  */
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
