.about-block .swiper-slide {
  max-height: 477px;
}

.about-block__inner {
  display: flex;
  gap: 32px;
}

.about-block__info {
  display: flex;
  flex-direction: column;
  justify-content: start;
  background-color: #F4F4F4;
  padding: 32px;
  width: calc(50% - 16px);
  max-height: 477px;
}

.about-block__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  max-width: 212px;
}

.about-block__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  max-width: 420px;
}

.about-block__slider {
  position: relative;
  width: calc(50% - 16px);
}

.about-block__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-block__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 8px;
  pointer-events: none;
  z-index: 2;
}

.about-block__btn {
  border-radius: 3px;
  padding: 16px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all .3s ease;
  background-color: #F3F3F3;
}

.about-block__btn:hover {
  background: #f1f1f1;
}

@media (max-width: 992px) {
  .about-block__inner {
    flex-direction: column;
    gap: 16px;
  }

  .about-block__title {
    font-size: 24px;
  }

  .about-block__info {
    width: 100%;
    padding: 16px 24px 51px;
  }

  .about-block__slider {
    width: 100%;
    min-height: 240px;
  }

  .about-block__slide img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
  }
}
