.accordion-container {
  display: flex;
  width: 100%;
  padding: 4% 2%;
  box-sizing: border-box;
  height: 60vh;
}
@media (max-width: 420px) {
  .accordion-container {
    height: 69vh;
    flex-direction: column;
  }
}
@media (max-width: 765px) {
  .accordion-container {
    height: 83vh;
    flex-direction: column;
  }
}

.box {
  flex: 1;
  overflow: hidden;
  transition: 0.5s;
  margin: 0 0.5%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
  position: relative;
  border-radius: 15px;
  cursor: pointer;
}
@media (max-width: 765px) {
  .box {
    margin: 0.7% 0;
  }
}

.box:hover span {
  text-decoration: underline;
}

.box::after {
  content: "";
  display: inline-block;
  background: linear-gradient(177deg, rgba(255, 255, 255, 0) 0%, #3b4856 100%);
  width: 100%;
  top: 0;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: 4;
}

.box > img {
  width: 200%;
  height: calc(100% - 0vh);
  object-fit: cover;
  transition: 0.5s;
}
@media (max-width: 765px) {
  .box > img {
    height: calc(100% + 20vh);
  }
}

.box > span {
  display: block;
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
  z-index: 5;
}
@media (max-width: 765px) {
  .box > span {
    bottom: 0;
    top: 37%;
  }
}

.box span:hover {
  text-decoration: underline;
}

p.big {
  font-size: 1.5rem;
  line-height: 3.8vh;
}
@media (max-width: 420px) {
  p.big {
    font-size: 1.25rem;
    line-height: 2.2vh;
  }
}
@media (max-width: 900px) {
  p.big {
    font-size: 1.25rem;
    line-height: 3.2vh;
  }
}

p.small {
  font-size: 1.25rem;
}
@media (max-width: 900px) {
  p.small {
    font-size: 1rem;
  }
}

.box:hover {
  flex: 1 1 30%;
}

.box:hover > img {
  width: 100%;
  height: 100%;
}

.big[data-zoom="200"] {
  line-height: 4.5vh;
}

.accordion-container[data-zoom="100"] {
  height: 56vh;
}

.accordion-container[data-zoom="200"] {
  height: 106vh;
}

.box[data-zoom="250"] {
  margin: 0.2% 0 !important;
  background: green;
}

.accordion-container[data-zoom="300"] {
  height: 140vh;
}

.accordion-container[data-zoom="350"] {
  height: 140vh;
}

.accordion-container[data-zoom="400"] {
  height: 140vh;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 0 !important;
  background: white !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #536475 !important;
}

.theme-slider-control {
  margin-top: 2rem;
}

/*# sourceMappingURL=Frontend.css.map */
