.z-index-up {
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.bg--blue {
  background-color: #405D93;
}

.bg--gradient {
  background-color: linear-gradient(135deg, #405D93 0%, #3A80C2 100%);
}

.bg--gray {
  background-color: #A1A3A9;
}

.bg--white {
  background-color: #FFFFFF;
}

.block--gallery-preview {
  padding-bottom: 110px;
  background-color: #F5F8FA;
}
@media only screen and (min-width: 768px) {
  .block--gallery-preview {
    padding-bottom: 110px;
  }
}
.block--gallery-preview .gallery {
  margin: 0 -12px;
}
.block--gallery-preview .gallery-item {
  padding: 0 12px;
  position: relative;
}
.block--gallery-preview .gallery-item a {
  display: block;
  width: 100%;
  aspect-ratio: 1.3;
  position: relative;
}
.block--gallery-preview .gallery-item:after {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url(../../../assets/images/svg/icon-zoom.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  right: 12px;
}
.block--gallery-preview .gallery-item img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.block--gallery-preview .slick-dots {
  bottom: -70px;
  z-index: 1;
}
.block--gallery-preview .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
}
.block--gallery-preview .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
}
.block--gallery-preview .slick-dots li button .slick-dot-icon:before {
  display: none;
}
.block--gallery-preview .slick-dots li button {
  background-color: #272727;
}
.block--gallery-preview .slick-dots li.slick-active button {
  background-color: #57A8D7;
}
.block--gallery-preview .slick-arrow {
  opacity: 1;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: auto;
  bottom: -80px;
  z-index: 2;
  right: auto;
  left: 50%;
  border: 1px solid #272727;
}
.block--gallery-preview .slick-arrow span:before {
  display: none;
}
.block--gallery-preview .slick-arrow.slick-prev {
  margin-left: -82px;
  background: url(../../../assets/images/svg/arrow-left.svg) no-repeat center;
  background-size: 14px;
}
@media only screen and (max-width: 767px) {
  .block--gallery-preview .slick-arrow.slick-prev {
    left: 12px;
    margin-left: 0;
  }
}
.block--gallery-preview .slick-arrow.slick-next {
  margin-left: 60px;
  background: url(../../../assets/images/svg/arrow-right.svg) no-repeat center;
  background-size: 14px;
}
@media only screen and (max-width: 767px) {
  .block--gallery-preview .slick-arrow.slick-next {
    right: 12px;
    margin-left: 0;
    left: auto;
  }
}
