.offer__box {
  display: grid;
  gap: 3rem;
}
@media (min-width: 992px) {
  .offer__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem 8rem;
  }
}
@media (min-width: 1600px) {
  .offer__box {
    gap: 5rem 10rem;
  }
}
.bg--gray .offer__box {
  gap: 1.5rem;
}
.offer__item {
  background-color: #f7f7f7;
  padding: 2rem;
}
@media (min-width: 992px) {
  .offer__item {
    padding: 3rem;
  }
}
@media (min-width: 1600px) {
  .offer__item {
    padding: 4rem;
  }
}
.offer__item__logos {
  align-items: center;
}
.offer__item__logos__item {
  max-width: 33%;
}
@media (max-width: 991px) {
  .offer__item__logos__item {
    max-width: 45%;
  }
}
.offer__item__logos__item img,
.offer__item__logos__item svg {
  max-height: 65px;
  width: auto;
  max-width: 100%;
}
.bg--gray .offer__item {
  background-color: #ffffff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}
.bg--gray .offer__item.offer__item--first {
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bg--gray .offer__item.offer__item--first h2 {
  font-size: 5rem;
  color: #005285;
  line-height: 1.1;
  font-family: futura-pt, sans-serif;
}
@media (max-width: 1199px) {
  .bg--gray .offer__item.offer__item--first h2 {
    font-size: 2.4rem;
  }
}
.bg--gray .offer__item.offer__item--first h2 strong {
  color: #23ce6b;
}
.bg--gray .offer__item.offer__item--first p {
  font-size: 2.4rem;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .bg--gray .offer__item.offer__item--first p {
    font-size: 1.8rem;
  }
}
.offer__item__splide {
  margin-top: 30px;
  border-top: 1px solid #23ce6b;
  padding: 10px 30px 0px;
}
@media (max-width: 767px) {
  .offer__item__splide {
    width: calc(100vw - 60px);
  }
}
.offer__item__splide .splide__arrow {
  background: none;
  margin-top: 5px;
}
.offer__item__splide .splide__arrow--prev {
  left: 0px;
}
.offer__item__splide .splide__arrow--next {
  right: 0px;
}
.offer__title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .offer__title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .offer__title {
    font-size: 2.4rem;
  }
}
.offer__text {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .offer__text {
    margin-bottom: 3rem;
  }
}