#gallery-block {
  padding: 80px 0;
  background-color: rgba(245, 157, 22, 0.03);
  background-image: url(images/shape.png);
  background-repeat: no-repeat;
  background-position: top left;
}
#gallery-block .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#gallery-block .row .block-title {
  margin: 0;
  margin-bottom: 20px;
  margin-right: 10px;
}
#gallery-block .row .btn {
  margin-bottom: 20px;
}
#gallery-block .gallery .item__img {
  position: relative;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in;
}
#gallery-block .gallery .item__img::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(245, 157, 22, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
#gallery-block .gallery .item__img::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3);
  background-image: url(images/lupa.svg);
  background-size: contain;
  transition: all 0.3s ease-in;
}
#gallery-block .gallery .item__img:hover::before {
  opacity: 1;
}
#gallery-block .gallery .item__img:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
#gallery-block .gallery .item__img img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#gallery-block .gallery .item__img-hover {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 18px 12px;
  box-sizing: border-box;
  width: max-content;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F59D16;
  border-radius: 5px;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}
#gallery-block .gallery .item__img-hover svg {
  display: block;
  margin-right: 5px;
}
#gallery-block .gallery .item:hover {
  cursor: pointer;
}
#gallery-block .gallery .item__title {
  margin-top: 15px;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: #333333;
}
#gallery-block .gallery .item__desc {
  margin-top: 10px;
}
#gallery-block .gallery .nav {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
#gallery-block .gallery .nav .swiper-pagination {
  position: static;
  width: max-content;
}
#gallery-block .gallery .nav .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #F59D16;
  opacity: 1;
  transition: background 0.3s ease-in;
}
#gallery-block .gallery .nav .swiper-pagination-bullet-active {
  background-color: #F59D16;
}
#gallery-block .gallery .nav__prev, #gallery-block .gallery .nav__next {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #376AC5;
  transition: border 0.3s ease-in;
  overflow: hidden;
}
#gallery-block .gallery .nav__prev::before, #gallery-block .gallery .nav__next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(222.22% 337.76% at 41.04% -37.04%, #F59D16 0%, #D96C19 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
#gallery-block .gallery .nav__prev svg, #gallery-block .gallery .nav__next svg {
  position: relative;
}
#gallery-block .gallery .nav__prev svg path, #gallery-block .gallery .nav__next svg path {
  transition: fill 0.3s ease-in;
}
#gallery-block .gallery .nav__prev:hover, #gallery-block .gallery .nav__next:hover {
  border-color: #F59D16;
}
#gallery-block .gallery .nav__prev:hover::before, #gallery-block .gallery .nav__next:hover::before {
  opacity: 1;
}
#gallery-block .gallery .nav__prev:hover path, #gallery-block .gallery .nav__next:hover path {
  fill: white;
}
#gallery-block .gallery .nav__prev {
  margin-left: auto;
  margin-right: 20px;
}/*# sourceMappingURL=block.css.map */