.sights {
  padding: 80px 0;
  overflow: hidden;
}
.sights .container {
  position: relative;
}
.sights__title {
  margin-bottom: 40px;
}
.sights .slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.sights .slide__link {
  display: flex;
  width: 100%;
}
.sights .slide__img {
  width: 100%;
  object-fit: contain;
}
.sights .slide__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 15px;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
.sights .slide__title h3 {
  color: var(--primary, #524489);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 32px */
}
.sights .slide__title h5 {
  color: var(--main-text, #4B4B4B);
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 18px */
}
.sights .slide p {
  color: var(--main-text, #4B4B4B);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.sights .sights-button-prev,
.sights .sights-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #ECECEC;
  transition: background-color 0.3s ease-in;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  outline: none;
  border: none;
}
.sights .sights-button-prev.swiper-button-disabled,
.sights .sights-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.sights .sights-button-prev svg path,
.sights .sights-button-next svg path {
  transition: stroke 0.3s ease-in;
}
.sights .sights-button-prev:hover,
.sights .sights-button-next:hover {
  background-color: #524489;
}
.sights .sights-button-prev:hover svg path,
.sights .sights-button-next:hover svg path {
  stroke: #fff;
}
.sights .sights-button-prev {
  left: -50px;
}
.sights .sights-button-next {
  right: -50px;
}

@media (max-width: 1400px) {
  .sights .sights-button-prev {
    left: 0;
  }
  .sights .sights-button-next {
    right: 0;
  }
}
@media (max-width: 769px) {
  .sights {
    padding: 60px 0;
  }
  .sights .nav-holder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    margin: 30px auto 0;
    width: fit-content;
  }
  .sights .sights-button-prev,
  .sights .sights-button-next {
    position: initial;
    transform: unset;
  }
}
@media (max-width: 498px) {
  .sights {
    padding: 40px 0;
  }
  .sights .slide__title h3 {
    font-size: 25px;
  }
}

/*# sourceMappingURL=block.css.map */
