
#gallery-block {
  margin-top: 50px;
  margin-bottom: 30px;
}
#gallery-block .image {
  cursor: pointer;
  position: relative;
  padding-top: 93%;
}
#gallery-block .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallery-block .nav__prev, #gallery-block .nav__next {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #B9A25C;
  border: 1px solid white;
  background-color: white;
  transition: all 0.3s ease-in;
}
#gallery-block .nav__prev:hover, #gallery-block .nav__next:hover {
  color: white;
  border-color: #3C3C3B;
  background-color: #3C3C3B;
}
#gallery-block .nav__prev.swiper-button-disabled, #gallery-block .nav__next.swiper-button-disabled {
  cursor: auto;
  opacity: 0.6;
}
#gallery-block .nav__prev.swiper-button-disabled:hover, #gallery-block .nav__next.swiper-button-disabled:hover {
  color: #3C3C3B;
  border: 1px solid white;
  background-color: white;
}
#gallery-block .nav__prev {
  left: 6%;
}
#gallery-block .nav__next {
  right: 6%;
}

@media (max-width: 1500px) and (max-width: 1500px) {
  #gallery-block .nav__prev {
    left: 4%;
  }
  #gallery-block .nav__next {
    right: 4%;
  }
}
@media (max-width: 1500px) and (max-width: 1000px) {
  #gallery-block .nav__prev, #gallery-block .nav__next {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1500px) and (max-width: 640px) {
  #gallery-block {
    margin-top: 30px;
  }
  #gallery-block .nav__prev, #gallery-block .nav__next {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=block.css.map */