/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

main {
  position: relative;
}

body {
  overflow-x: hidden;
}
body.popup-open {
  overflow: hidden;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

.gallery-block {
  padding: 10px 0 20px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .gallery-block {
    max-width: calc(100% - 40px);
    width: 1340px;
  }
}
.gallery-block__container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-block__gallery-wrapper {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.gallery-block__gallery-wrapper .gallery-grid {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .gallery-block__gallery-wrapper .gallery-grid {
    display: grid;
    height: 560px;
    grid-template-rows: 1fr 1fr;
    gap: 15px 15px;
    grid-template-areas: "item-1 item-2" "item-1 item-3";
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .gallery-block__gallery-wrapper .gallery-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}
@media (min-width: 1200px) {
  .gallery-block__gallery-wrapper .gallery-grid {
    grid-template-columns: 1.4fr 0.6fr;
    height: 560px;
  }
}
@media (min-width: 1366px) {
  .gallery-block__gallery-wrapper .gallery-grid {
    grid-template-columns: 1.5fr 0.5fr;
    height: 600px;
  }
}
@media (min-width: 1440px) {
  .gallery-block__gallery-wrapper .gallery-grid {
    grid-template-columns: 1.6fr 0.4fr;
  }
}
.gallery-block__gallery-wrapper .gallery-grid .image-item {
  height: 270px;
  width: 100%;
  background-position: center;
  background-size: cover;
  margin-bottom: 15px;
}
.gallery-block__gallery-wrapper .gallery-grid .image-item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 550px) {
  .gallery-block__gallery-wrapper .gallery-grid .image-item {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .gallery-block__gallery-wrapper .gallery-grid .image-item {
    margin-bottom: 0;
    height: 100%;
    width: 100%;
  }
}
.gallery-block__gallery-wrapper .gallery-grid .item-1 {
  grid-area: item-1;
}
.gallery-block__gallery-wrapper .gallery-grid .item-2 {
  grid-area: item-2;
}
.gallery-block__gallery-wrapper .gallery-grid .item-3 {
  grid-area: item-3;
}
.gallery-block__gallery-wrapper .full-width-img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
