.hero {
  padding: 32px 0;
  background-color: var(--gray);
}

.hero__container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.hero__banner {
  width: 72%;
  padding: 40px;
  background-color: var(--white);
  border-radius: 6px;
  background-image: url(../../images/cognitive/hero-img.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 455px 360px;
}

.hero__title {
  font-size: 40px;
  max-width: 70%;
  line-height: 49px;
  margin-bottom: 16px;
  font-weight: bold;
}

.hero__text {
  max-width: 50%;
}

.hero__offers {
  width: 25%;
  padding: 24px;
  background-color: var(--white);
  border-radius: 6px;
}

.hero__offers .title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}

.hero__descr {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #95a6b3;
  margin-bottom: 12px;
}

.hero__offer-text {
  font-size: 14px;
  line-height: 19px;
}

.hero__item:not(:nth-last-of-type(1)) {
  height: 100px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero .swiper {
  width: 100%;
  padding-top: 56px;
}

.slide-custom {
  padding: 32px;
  background-color: #fff7f4;
  border-radius: 6px;
}

.swiper__title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 16px;
}
.slide-custom ul,
.swiper__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.swiper__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.swiper__text:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

.swiper .swiper-pagination {
  top: 26px;
  right: 40px;
}
.swiper .swiper-button-prev {
  left: -50px;
}

.swiper .swiper-button-next {
  right: -40px;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.swiper .swiper-button-next:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url(../../icons/cognitive/swiper-chevron.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: center;
}

.swiper .swiper-button-prev:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url(../../icons/cognitive/swiper-chevron.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: center;
  transform: rotate(180deg);
}
