.kb-carousel {
  background: white;
}
.kb-carousel__container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.kb-carousel__body {
  position: relative;
  padding: 100px 0 138px;
}
@media screen and (max-width: 1199px) {
  .kb-carousel__body {
    padding: 39px 0 96px;
  }
}
@media screen and (max-width: 768px) {
  .kb-carousel__body {
    padding: 23px 0 90px;
  }
}
.kb-carousel__title {
  text-align: center;
  margin-bottom: 56px;
  font-family: LineaturaBold;
  font-style: normal;
  font-weight: 700;
  font-size: 52px;
  line-height: 56px;
  color: #000;
}
.kb-carousel__title > span {
  background: linear-gradient(90deg, #d53d26 0, #e99136 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .kb-carousel__title > span {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .kb-carousel__title {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .kb-carousel__title {
    font-size: 24px;
    line-height: 26px;
    text-align: left;
    padding: 0 23px;
  }
}
.kb-carousel__wrap {
  padding: 0 208px;
  position: relative;
  height: 130px;
}
@media screen and (max-width: 1199px) {
  .kb-carousel__wrap {
    padding: 0 102px;
  }
}
@media screen and (max-width: 768px) {
  .kb-carousel__wrap {
    padding: 0 32px;
    height: 84px;
  }
}
.kb-carousel__slider {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.kb-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.kb-carousel__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .kb-carousel__slide {
    max-height: 84px;
  }
}
.kb-carousel__link {
  position: relative;
}
.kb-carousel__link > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.kb-carousel__bullets {
  position: absolute;
  bottom: 42px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 12px;
  height: 10px;
}
.kb-carousel__bullets > .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
}
.kb-carousel__bullets > .swiper-pagination-bullet::before {
  display: none;
}
.kb-carousel__bullets > .swiper-pagination-bullet-active {
  width: 9px;
  height: 9px;
  background: #ff8718;
  opacity: 1;
}
.kb-carousel__next,
.kb-carousel__prev {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.kb-carousel__next::after,
.kb-carousel__next::before,
.kb-carousel__prev::after,
.kb-carousel__prev::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 15px;
  background: #a7a7a7;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 770px) {
  .kb-carousel__next,
  .kb-carousel__prev {
    display: none;
  }
}
.kb-carousel__prev {
  left: 76px;
}
@media screen and (max-width: 1199px) {
  .kb-carousel__prev {
    left: 38px;
  }
}
.kb-carousel__prev::before {
  transform: translate(-50%) rotate(-45deg);
  left: 50%;
  top: 11px;
}
.kb-carousel__prev::after {
  transform: translate(-50%) rotate(45deg);
  left: 50%;
  bottom: 11px;
}
.kb-carousel__next {
  right: 76px;
}
@media screen and (max-width: 1200px) {
  .kb-carousel__next {
    right: 38px;
  }
}
.kb-carousel__next::before {
  transform: translate(-50%) rotate(45deg);
  left: 50%;
  top: 11px;
}
.kb-carousel__next::after {
  transform: translate(-50%) rotate(-45deg);
  left: 50%;
  bottom: 11px;
}
