.carousel {
  --swiper-navigation-color: var(--blue-color);
}
.carousel .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.carousel .swiper {
  width: 100%;
  height: auto;
  padding: 0 2.5rem;
  position: relative;
}
.carousel .swiper-slide {
  width: auto;
}
.carousel .swiper-slide img {
  width: auto;
  max-height: 4.375rem;
}
@media (max-width: 1024px) {
  .carousel .swiper-slide img {
    max-height: 3.75rem;
  }
}
@media (max-width: 768px) {
  .carousel .swiper-slide img {
    max-height: 3.125rem;
  }
}
.carousel__title {
  width: 100%;
  max-width: 23.125rem;
  height: 4.375rem;
  border-radius: 2.1875rem;
  border: 0.1875rem solid var(--blue-color);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--blue-color);
  margin: 0 auto 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1400px) {
  .carousel__title {
    font-size: 1.5625rem;
    border-width: 0.125rem;
    height: 2.75rem;
    max-width: 18.75rem;
  }
}
@media (max-width: 1024px) {
  .carousel__title {
    font-size: 1.25rem;
    max-width: 15.625rem;
    height: 2.5rem;
    margin: 0 auto 3.125rem;
  }
}
@media (max-width: 768px) {
  .carousel__title {
    max-width: 14.375rem;
    margin: 0 auto 2.5rem;
  }
}
@media (max-width: 480px) {
  .carousel__title {
    font-size: 0.9375rem;
    max-width: 12.5rem;
    margin: 0 auto 2.5rem;
  }
}
.carousel__over {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 2.5rem;
  height: 100%;
  background-color: #fff;
}
.carousel__over.m--left {
  left: 0;
}
.carousel__over.m--right {
  right: 0;
}
.carousel__arrow {
  width: 1.25rem;
  height: 1.25rem;
  border-left: 0.1875rem solid var(--blue-color);
  border-bottom: 0.1875rem solid var(--blue-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  z-index: 50;
  cursor: pointer;
}
.carousel__arrow.m--left {
  left: 0.3125rem;
}
.carousel__arrow.m--right {
  right: 0.3125rem;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media (max-width: 640px) {
  .carousel__arrow {
    width: 1rem;
    height: 1rem;
  }
}
