@import "font-style.css";
body {
  --page-color: #00000080;
}
body.light-box-zoomed .mbLB-zoom,
body.light-box-zoomed .mbLB-close {
  color: var(--page-color);
}
body.light-box-active {
  overflow: hidden;
}
body figCaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 5px;
  background: rgba(0, 0, 0, 0.5);
  max-width: 100%;
  margin: auto;
}
body .mblightbox-image {
  cursor: pointer;
}
body .masonry-container figure.columns {
  width: calc((100% / var(--columns)) - 10px);
  margin: 5px;
}
body .sliding-gallery {
  position: relative;
}
body .sliding-gallery .sliding-gallery-container {
  position: relative;
  width: 100%;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
}
body .sliding-gallery .sliding-gallery-container figure {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  max-height: 450px;
  width: calc(100% / var(--columns));
  vertical-align: top;
  margin: 0 10px 0 0;
  cursor: pointer;
  top: 0;
  z-index: 0;
  aspect-ratio: 1 / 1;
}
body .sliding-gallery .sliding-gallery-container figure.spacer {
  width: 100vw !important;
  background-color: var(--page-color);
  background-blend-mode: screen;
  mix-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
}
body .sliding-gallery .sliding-gallery-container figure img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: filter 0.3s, transform 0.3s;
}
body .sliding-gallery .sliding-gallery-container figure:not(.spacer):hover img {
  filter: grayscale(100%) contrast(200%);
}
body .sliding-gallery .navigation-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  gap: 10px;
}
body .sliding-gallery .navigation-container div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
  background-color: transparent;
  background-size: 40px;
  background-position: top center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  transition: background-color 0.3s, filter 0.3s;
  text-align: center;
}
body .sliding-gallery .navigation-container div:after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  z-index: 1000;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
body .sliding-gallery .navigation-container div:hover {
  background-color: #000;
  color: white;
}
body .sliding-gallery .navigation-container div:hover:after {
  filter: invert(1);
}
body .sliding-gallery .navigation-container div.right-arrow:after {
  background-repeat: no-repeat;
}
body .sliding-gallery .navigation-container div.left-arrow:after {
  transform: rotate(180deg);
  background-repeat: no-repeat;
}
body .sliding-gallery .navigation-container .disabled {
  opacity: 0.2;
  pointer-events: none;
}
body .sliding-gallery .navigation-container .slide-block {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.18);
}
body .sliding-gallery .navigation-container .slide-block.active {
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
body .sliding-gallery .show-next-prev-button {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -80px;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: transform 0.3s;
}
body .sliding-gallery .show-next-prev-button:hover {
  transform: scale(1.4);
}
body .sliding-gallery .show-next-prev-button.disabled {
  opacity: 0.5;
}
body .sliding-gallery .show-next-prev-button.left-arrow {
  left: 0;
}
body .sliding-gallery .show-next-prev-button.left-arrow:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-image: url('fonts/svg/prev.svg');
  background-repeat: no-repeat;
  filter: invert(1);
}
body .sliding-gallery .show-next-prev-button.right-arrow {
  right: 0;
}
body .sliding-gallery .show-next-prev-button.right-arrow:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  background-image: url('fonts/svg/next.svg');
  background-repeat: no-repeat;
  filter: invert(1);
}
body .no-masonry {
  display: block;
}
body .no-masonry .gallery-item {
  width: calc((100% / var(--columns)) - 20px);
  margin: 10px;
  aspect-ratio: 1 / 1;
}
body .no-masonry .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body .is-cropped .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
body .gallery-item {
  overflow: hidden;
}
body .gallery-item .mblightbox-image {
  transition: transform 0.3s ease;
}
body .gallery-item .mblightbox-image:hover {
  transform: scale(1.1);
}
body .mbLB-close {
  cursor: pointer;
}
body .mbLB-img-wrapper,
body .mbLB-overlay,
body .mbLB-placeHolder,
body .mbLB-placeHolder div {
  -webkit-backface-visibility: hidden;
}
body .mbLB-container * {
  box-sizing: border-box;
}
body .mbLB-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  margin: 20px auto;
  overflow: hidden;
  min-height: 150px;
}
body .mbLB-icon {
  font-family: "mbLightbox";
  font-style: normal !important;
}
body .mbLB-overlay {
  position: fixed;
  transition: All 2s ease;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(14, 14, 14, 0.9) 100%);
  z-index: 10000000;
}
body .mbLB-close,
body .mbLB-next {
  position: absolute;
  transition: all 0.4s;
  text-align: right;
}
body .mbLB-placeHolder .mbLB-img-wrapper {
  overflow: auto;
  overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  /* allow gestures */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .mbLB-placeHolder .mbLB-img-wrapper .mbLB-img-container {
  transform: scale(1);
  transform-origin: 0 0;
  transition: width 0.3s, height 0.3s;
}
body .mbLB-placeHolder .mbLB-img-wrapper .mbLB-img-container .zoomed {
  overflow: scroll;
  /* Enable scrolling on zoom */
}
body .mbLB-close {
  transition: all 0.4s;
  top: 10px;
  right: 10px;
  cursor: pointer;
  padding: 0;
  font-size: 180%;
  color: #ffffff;
  width: 45px;
  height: 45px;
}
body .mbLB-zoom {
  position: absolute;
  transition: all 0.4s;
  background-color: transparent;
  top: 15px;
  right: 70px;
  cursor: pointer;
  padding: 0;
  font-size: 160%;
  color: #ffffff;
  width: 45px;
  height: 45px;
}
body .mbLB-next,
body .mbLB-prev {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 50px;
  height: 50px;
  background-color: var(--page-color);
  color: #ffffff;
  cursor: pointer;
  padding: 0 10px;
  transition: all 0.4s;
  font-size: 150%;
}
body .mbLB-next.disabled,
body .mbLB-prev.disabled {
  opacity: 0.4 !important;
  pointer-events: none;
}
body .mbLB-next {
  right: 10px;
}
body .mbLB-prev {
  position: absolute;
  left: 10px;
  text-align: left;
}
body .mbLB-img-wrapper,
body .mbLB-spinner {
  top: 0;
  height: 100%;
  margin-left: 0;
  position: absolute;
  width: 100%;
}
body .mbLB-next:hover,
body .mbLB-prev:hover {
  mix-blend-mode: screen;
  background-color: #ffffff;
  color: #000000;
}
body .mbLB-spinner {
  right: 0;
  margin-top: 0;
  background: 0 0;
}
body .mbLB-img-wrapper {
  left: 0;
  overflow: hidden;
  max-width: 100%;
}
body .mbLB-img-wrapper label {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 10px;
}
body .mbLB-img-wrapper label .ss-img-index {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 10px 5px 0;
  font-weight: 300;
}
body .mbLB-img-caption {
  color: #fff;
}
body .mbLB-captionBox {
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-height: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  text-align: left;
  background: rgba(0, 0, 0, 0.5);
  max-width: 50%;
  margin: auto;
  padding: 10px;
  line-height: 1.2;
}
body [data-lightbox='true'] img {
  cursor: pointer;
}
@media (max-width: 1240px) {
  body .masonry-container figure.columns {
    width: calc((100% / (var(--columns) - 1)) - 10px);
    margin: 5px;
  }
}
@media (max-width: 1024px) {
  body .masonry-container figure.columns {
    width: calc(50% - 10px);
    margin: 5px;
  }
  body .mbLB-container {
    width: 100%;
  }
  body .mbLB-next,
  body .mbLB-next:hover,
  body .mbLB-prev,
  body .mbLB-prev:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
  }
}
@media (max-width: 680px) {
  body .masonry-container figure.columns {
    width: 100%;
    margin: 5px;
  }
  body .thumb-grid .mbLB-next,
  body .thumb-grid .mbLB-prev {
    visibility: hidden;
  }
}
/*# sourceMappingURL=style.css.map */