.banner-list {
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.banner-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(105.92deg, #A04BFF 0%, #22C7BB 100%);
  border-radius: 20px;
  padding: 56px;
  color: #fff;
}

.banner-list__item-header {
  font-size: 32px;
  font-weight: 400;
}

.banner-list__item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 18px;
}

.banner-list__item-image {
  position: absolute;
  bottom: 0;
  right: 56px;
}

.banner-list__item-button {
  font-weight: bold !important;
  width: 271px;
}

@media screen and (max-width: 767px) {
  .banner-list__item {
    margin: 0 -20px;
    padding: 44px 24px;
  }
  .banner-list__item-header {
    font-size: 21px;
  }
  .banner-list__item-content {
    font-size: 14px;
  }
  .banner-list__item-image {
    position: static;
    margin-bottom: -44px;
  }
  .banner-list__item-button {
    width: 100%;
  }
}