#gallery-block {
  overflow-x: hidden;
  margin-bottom: 80px;
}
#gallery-block .gallery {
  padding-top: 75px;
  position: relative;
  background-color: #4D3F38;
}
#gallery-block .gallery::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 14%;
  width: 100%;
  background-color: #fafafa;
}
#gallery-block .gallery__wrap {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
#gallery-block .gallery .block-title {
  color: white;
}
#gallery-block .gallery .subtitle {
  color: white;
  margin-left: 90px;
  font-weight: 400;
  font-size: 24px;
  line-height: 145%;
}
#gallery-block .gallery__swiper {
  overflow: visible;
}
#gallery-block .gallery .image {
  cursor: pointer;
  position: relative;
  padding-top: 61.405%;
  border-radius: 3px;
  overflow: hidden;
}
#gallery-block .gallery .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	object-fit: cover;
}
#gallery-block .gallery .image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in;
}
#gallery-block .gallery .swiper-slide-active .image::before, #gallery-block .gallery .swiper-slide-next .image::before {
  background: rgba(0, 0, 0, 0);
}
#gallery-block .nav {
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 195px;
}
#gallery-block .nav__pagination {
  margin: 0 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #B5B5B5;
}
#gallery-block .nav .swiper-pagination-fraction {
  width: auto;
}
#gallery-block .nav .swiper-pagination-current {
  font-weight: 900;
  color: #1E1E1E;
}

@media (max-width: 1100px) {
  #gallery-block .gallery .image::before {
    display: none;
  }
}
@media (max-width: 740px) {
  #gallery-block {
    margin-bottom: 60px;
  }
  #gallery-block .gallery {
    padding-top: 60px;
  }
  #gallery-block .gallery__wrap {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  #gallery-block .gallery .subtitle {
    margin-top: 10px;
    margin-left: 0;
  }
  #gallery-block .nav {
    margin-top: 30px;
  }
}
@media (max-width: 560px) {
  #gallery-block {
    margin-bottom: 40px;
  }
  #gallery-block .gallery {
    padding-top: 40px;
  }
  #gallery-block .gallery__wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 498px) {
  #gallery-block .gallery .subtitle {
    margin-top: 5px;
    font-size: 20px;
  }
}/*# sourceMappingURL=block.css.map */