.gallery-section {
  margin-bottom: 40px;
}
.gallery-section .gallery-section__title {
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 21px;
  line-height: 30px;
  font-weight: bolder;
  color: #4D4D4D;
}
@media (min-width: 991px) {
  .gallery-section .gallery-section__title {
    padding: 0 40px;
    font-size: 25px;
  }
}
.gallery-section .gallery-section__subheading {
  max-width: 760px;
  margin: -8px 0 20px;
  padding: 0 20px;
  font-size: 17px;
  line-height: 26px;
  color: #4D4D4D;
}
@media (min-width: 991px) {
  .gallery-section .gallery-section__subheading {
    padding: 0 40px;
    font-size: 19px;
    line-height: 30px;
  }
}

.gallery {
  --gallery--accent: #C8901F;
  --gallery--overlay: rgba(0, 0, 0, 0.55);
  --gallery--thumb-border: #E2E0DC;
  position: relative;
}
.gallery__stage {
  position: relative;
}
.gallery__viewport {
  position: relative;
  overflow: hidden;
}
.gallery__slide .media,
.gallery__slide .field, .gallery__thumb-button .media,
.gallery__thumb-button .field, .gallery--single .gallery__stage .media,
.gallery--single .gallery__stage .field {
  display: block;
  width: 100%;
}
.gallery__slide img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.gallery__nav {
  display: none;
}
@media (min-width: 768px) {
  .gallery__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--gallery--overlay);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .gallery__nav:hover {
    background-color: rgba(0, 0, 0, 0.75);
  }
  .gallery__nav::before {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
  }
  .gallery__nav--prev {
    left: 24px;
  }
  .gallery__nav--prev::before {
    transform: rotate(-135deg);
    margin-left: 5px;
  }
  .gallery__nav--next {
    right: 24px;
  }
  .gallery__nav--next::before {
    transform: rotate(45deg);
    margin-right: 5px;
  }
  .gallery__nav.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }
}
.gallery .gallery__counter {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  padding: 4px 14px;
  border-radius: 14px;
  background-color: var(--gallery--overlay);
  font-size: 15px;
  line-height: 22px;
  color: #FFFFFF;
}
.gallery__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}
@media (min-width: 768px) {
  .gallery__pagination {
    display: none;
  }
}
.gallery__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--gallery--thumb-border);
  opacity: 1;
  transition: width 0.2s ease, background-color 0.2s ease;
}
.gallery__pagination .swiper-pagination-bullet-active {
  width: 20px;
  background-color: var(--gallery--accent);
}
.gallery .gallery__thumbs {
  display: none;
}
@media (min-width: 768px) {
  .gallery .gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
  }
}
.gallery .gallery__thumb {
  margin: 0;
  padding: 0;
  position: static;
  list-style: none;
}
.gallery .gallery__thumb::before {
  content: none;
  display: none;
}
.gallery .gallery__thumb--folded {
  display: none;
}
.gallery__thumb-button {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 0;
  border: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.gallery__thumb-button img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery__thumb-button:hover {
  opacity: 0.85;
}
.gallery__thumb-button.is-active {
  border-color: var(--gallery--accent);
}
.gallery__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 0;
  border: 1px solid var(--gallery--thumb-border);
  background-color: #FAFAF9;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.gallery__more:hover {
  background-color: #F1EFEC;
}
.gallery__more-count {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  color: var(--gallery--accent);
}
.gallery__more-label {
  font-size: 15px;
  line-height: 22px;
  color: #4D4D4D;
}
.gallery .gallery__less {
  display: none;
}
@media (min-width: 768px) {
  .gallery .gallery__less.is-visible {
    display: block;
    margin-top: 16px;
    cursor: pointer;
  }
}
.gallery--single img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.conference-extended .gallery {
  --gallery--accent: var(--conference-extended--color-b);
}
.conference-extended .gallery-section {
  margin-bottom: 0;
}
.conference-extended .gallery-section__title {
  color: var(--conference-extended--color-e);
  text-align: center;
}
.conference-extended .gallery-section__subheading {
  max-width: none;
  margin: -15px 0 35px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--conference-extended--color-text);
  text-align: center;
}
@media (min-width: 991px) {
  .conference-extended .gallery-section__subheading {
    font-size: 22px;
    padding: 0;
  }
}

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