/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.lightbox-gallery__thumbnails-wrapper {
  margin-bottom: -2rem;
}
@media (max-width: 61.98rem) {
  .lightbox-gallery__thumbnails-wrapper {
    margin-bottom: -1.25rem;
  }
}
@media (max-width: 35.98rem) {
  .lightbox-gallery__thumbnails-wrapper {
    margin-bottom: -0.9375rem;
  }
}
.lightbox-gallery__gallery-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  padding-top: 5rem;
  background-color: #0d0d0d;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.lightbox-gallery__gallery-wrapper:not(.active) {
  visibility: hidden;
  opacity: 0;
}
.lightbox-gallery__close {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: #fcfcfc;
  font-size: 2.5rem;
  border: none;
  border-radius: 50%;
  background: none;
  background-color: #6f7086;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.lightbox-gallery__close:hover, .lightbox-gallery__close:focus {
  background-color: #6f7086;
}
.lightbox-gallery__close > [class^=icon] {
  display: block;
  line-height: 0;
}
.lightbox-gallery__close > [class^=icon]::before {
  line-height: 0;
}
.lightbox-gallery__single-col {
  margin-bottom: 2rem;
}
@media (max-width: 61.98rem) {
  .lightbox-gallery__single-col {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 35.98rem) {
  .lightbox-gallery__single-col {
    margin-bottom: 0.9375rem;
  }
}
.lightbox-gallery__single-image-wrapper {
  display: block;
  overflow: hidden;
}
.lightbox-gallery__single-image-wrapper:hover img, .lightbox-gallery__single-image-wrapper:focus img {
  transform: scale(1.03);
}
.lightbox-gallery .gallery-slider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 7.5rem);
  transform: translate(0, -50%);
}
.lightbox-gallery .gallery-slider__caption {
  color: #0d0d0d;
}
.lightbox-gallery .gallery-slider__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 7.5rem);
}
.lightbox-gallery .gallery-slider__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto !important;
  padding: 0 !important;
}
.lightbox-gallery .gallery-slider__image-container img {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  max-height: calc(100vh - 7.5rem) !important;
  transform: none !important;
}
.lightbox-gallery .slick-prev {
  right: 14rem;
}
.lightbox-gallery .slick-next {
  right: 10rem;
}
.lightbox-gallery .slick-dots {
  right: 7.5rem;
}

.lightbox-gallery .slick-arrow,
.gallery-slider .slick-arrow {
  top: auto;
  left: auto;
  bottom: clamp(0.75rem, -0.5357142857rem + 2.6785714286vw, 1.875rem);
  width: clamp(2.5rem, 1.9285714286rem + 1.1904761905vw, 3rem);
  height: clamp(2.5rem, 1.9285714286rem + 1.1904761905vw, 3rem);
  transform: none;
}
.lightbox-gallery .slick-dots,
.gallery-slider .slick-dots {
  position: absolute;
  bottom: clamp(0.5rem, -1.0714285714rem + 3.2738095238vw, 1.875rem);
  z-index: 2;
  padding-left: 0;
}
.lightbox-gallery .slick-dots .slick-dot--page-count,
.gallery-slider .slick-dots .slick-dot--page-count {
  color: #fcfcfc;
}

.gallery-slider__slider {
  padding: 0;
}
.gallery-slider__caption {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}
.gallery-slider .slick-prev {
  right: clamp(5.25rem, 0.6785714286rem + 9.5238095238vw, 9.25rem);
}
.gallery-slider .slick-next {
  right: clamp(2.25rem, -1.1785714286rem + 7.1428571429vw, 5.25rem);
}
.gallery-slider .slick-dots {
  right: clamp(0.5rem, -2.3571428571rem + 5.9523809524vw, 3rem);
}

.gallery-slider--fluid .gallery-slider__single-slide {
  padding: 0 0.3125rem;
}

.gallery-slider--has-captions .slick-arrow {
  margin-top: -1rem;
}

.block-slider-gallery--hard .gallery-slider__image-container {
  position: relative;
  height: 0;
  min-width: clamp(11.75rem, -27.6785714286rem + 82.1428571429vw, 46.25rem);
  max-width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.block-slider-gallery--hard .gallery-slider__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}