.changes-block {
  padding: 60px 0;
}
.changes-block .block-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.changes-block .side {
  width: 48%;
  flex-grow: 1;
}
.changes-block .overflow {
  position: relative;
}
.changes-block .gallery {
  overflow: hidden;
}
.changes-block .image-holder {
  box-sizing: border-box;
  display: flex;
  border-radius: 15px;
}
.changes-block .image-holder img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 56 / 43;
}
.changes-block h2.block-title {
  margin-bottom: 20px;
}
.changes-block .count-informer {
  border-radius: 10px;
  background: var(--orange);
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 20px;
  width: fit-content;
}
.changes-block .count-informer__title {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 6px;
  width: 100%;
}
.changes-block .count-informer__desc {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 36px */
  border-top: 1px solid #fff;
  width: 100%;
}
.changes-block .changes-slider-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background-color .3s ease-in;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.1));
}
.changes-block .changes-slider-button-prev {
  left: -25px;
}
.changes-block .changes-slider-button-next {
  right: -25px;
}
.changes-block .changes-slider-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.changes-block .changes-slider-button svg path {
  transition: stroke .3s ease-in;
}
.changes-block .changes-slider-button:hover {
  background-color: var(--blue);
}
.changes-block .changes-slider-button:hover svg path {
  stroke: #fff;
}

@media (max-width: 769px) {
  .changes-block .block-holder {
    flex-direction: column;
  }
  .changes-block .block-holder .side {
    width: 100%;
  }
  .changes-block .changes-slider-button-prev {
    left: -10px;
  }
  .changes-block .changes-slider-button-next {
    right: -10px;
  }
}

/*# sourceMappingURL=block.css.map */
