.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.container--gray {
  background: var(--secondary-color);
}

.btn {
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  border-radius: 8px;
  border: 0;
  text-decoration: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-black {
  background: var(--dark-color);
  color: var(--light-color);
}

.btn-black:active {
  background: rgba(53, 53, 53, 1);
}

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
}

.btn-primary:active {
  background: rgba(224, 36, 36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .btn-black:hover {
    background: rgba(53, 53, 53, 1);
  }

  .btn-primary:hover {
    background: rgba(224, 36, 36, 1);
  }
}

.btn-secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background: rgba(200, 32, 32, 0.1);
}

.link-anchor {
  color: inherit;
  text-decoration: none;
}

.title__section {
  font-size: 26px;
  line-height: 31px;
  letter-spacing: 0;
  font-weight: 600;
}

.title__section span {
  color: var(--additional-color-60);
}

.title__section br {
  display: none;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-container-arrow {
  width: 76px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  background: var(--swiper-arrow-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  inset: 0;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background: rgba(241, 241, 241, 1);
  opacity: 1;
  pointer-events: auto;
}

.swiper-button-next.swiper-button-disabled img,
.swiper-button-prev.swiper-button-disabled img {
  opacity: 0.4;
}

.swiper-button-prev img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.title__hr {
  width: 64px;
  border: 1px solid var(--dark-color);
  margin-bottom: 10px;
  border-radius: 1px;
}

@media (min-width: 481px) {
  .container {
    padding: 0 20px;
  }

  .btn {
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
  }

  .title__section {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.2px;
  }
}

@media (min-width: 769px) {
  .container {
    padding: 0 2.6vw;
  }
}

@media (min-width: 1025px) {
  .container {
    padding: unset;
    max-width: 74.85vw;
  }

  .title__hr {
    width: 3.33vw;
    margin-bottom: 0.52vw;
  }

  .btn {
    border-radius: 0.62vw;
    font-size: clamp(11px, 0.72vw, 0.72vw);
    line-height: 1.25vw;
  }

  .swiper-container-arrow {
    display: flex;
  }

  .title__section {
    font-size: 2.08vw;
    font-weight: 600;
    line-height: 2.48vw;
    letter-spacing: 0.01vw;
  }
}

@media (min-width: 1280px) {
  .btn {
    border-radius: 0.62vw;
    font-size: clamp(13px, 0.72vw, 0.72vw);
    line-height: 1.25vw;
  }
}
