

.swiper-container {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 980px) {
  .swiper-container {
    min-height: 320px;
  }
}
.swiper-container-wrapper {
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 980px) {
  .swiper-container-wrapper {
    flex-flow: row nowrap;
  }
}

.swiper-button-next, .swiper-button-prev {
  color: #fff; transform: scale(0.5);
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}

@media (min-width: 980px) {
	.swiper-button-next, .swiper-button-prev {
  color: #fff; transform: scale(1);}
	.swiper-button-next {
  right: 10px;
}
.swiper-button-prev {
  left: 10px;
}
}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}
.swiper-slide img { object-fit:revert; }
@media (min-width: 980px) {
	.swiper-slide img { object-fit: cover; width: 100%; height: 100%;}
}
.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

.gallery-top {
  position: relative;
  width: 100%;
  height: auto; 
}
@media (min-width: 980px) {
  .gallery-top {
    width: 80%;
    height: 100vh;
    margin-left: 10px; order:2;
  }
}

.gallery-thumbs {
  width: 100%;
  /*height: 25vh;*/
  padding-top: 10px;
}
@media (min-width: 980px) {
  .gallery-thumbs {
    width: 20%;
    height: 100vh;
    padding: 0; order: 1;
  }
}
.gallery-thumbs .swiper-wrapper {
  flex-direction: row;
}
@media (min-width: 980px) {
  .gallery-thumbs .swiper-wrapper {
    flex-direction: column;
  }
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: fit-content;
  opacity: 0.6;
  cursor: pointer;
}
@media (min-width: 980px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
  }
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}