.banner__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.4rem;
}

.banner__column {
  width: calc((100% - 2.4rem) / 2);
}

.banner__column:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

.banner__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2.4rem;
  border-radius: 1.6rem;
  background-color: #c13ce3;
  background-size: 88rem 88rem;
  background-position: -9.8rem -15.8rem;
  background-repeat: no-repeat;
  overflow: hidden;
}

.banner-hint {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin-bottom: 9.74rem;
}

.banner-hint__desc {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0;
}

.banner-hint__desc > span {
  font-weight: 700;
  color: #ffffff;
}

.banner-hint__icon {
  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;
  padding: 0.3rem 0.7rem;
  border: 0.1rem solid #ffffff;
  border-radius: 2.5rem;
  margin: 0;
}

.banner-hint__icon > img {
  width: 0.8rem;
}

.banner__title {
  position: relative;
  color: #ffffff;
  margin-bottom: 8.26rem;
  z-index: 1;
}

.banner__title > span {
  position: absolute;
  left: 0;
  top: calc(100% - 1.2rem);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem;
  background: #000000;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.096rem;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.banner__desc {
  position: relative;
  color: #ffffff;
  z-index: 1;
}

.banner-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
}

.banner-swiper__item {
  position: relative;
  height: 100%;
  width: 100%;
}
.banner-swiper__item picture,
.banner-swiper__item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}


.banner-swiper__link {
  display: block;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner-swiper__button {
  position: absolute !important;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 2;
}

.banner-swiper__button.btn {
  margin: 0;
  color: #000;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: -.02rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 3.2rem;
  border-radius: 8rem;
  border: none;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
  text-decoration: none;
}

.banner-swiper__button.btn--white {
  background: #fff;
  color: #000;
}

.banner-swiper__button.btn:hover {
  background: #00cd7a;
  color: #000;
}

.banner-swiper__button .btn__icon {
  flex-shrink: 0;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background: #000;
  -webkit-mask-image: url(../img/svg/arrow-right-line-1.svg);
  mask-image: url(../img/svg/arrow-right-line-1.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background 0.3s;
}

@media screen and (max-width: 568px) {
  .banner-swiper__button {
    bottom: 1.6rem;
    right: 1.6rem;
  }
  .banner-swiper__button.btn {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 1.4rem 2.4rem;
  }
  .banner-swiper__button .btn__icon {
    width: 2rem;
    height: 2rem;
  }
}


@media screen and (max-width: 568px) {
  .banner__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.6rem;
  }

  .banner__column {
    width: 100%;
  }

  .banner__wrapper {
    background-size: 44rem 44rem;
    background-position: -4.95rem -5.6rem;
  }

  .banner-hint {
    margin-bottom: 6.626rem;
  }

  .banner-hint__desc {
    font-size: 1.1rem;
    letter-spacing: 0.11rem;
  }

  .banner-hint__icon {
    padding: 0.1rem 0.7rem;
  }

  .banner__title {
    line-height: 3.2rem;
    margin-bottom: 6.974rem;
  }

  .banner__title > span {
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: -0.072rem;
  }

  .banner-swiper__item {
    height: 34.2rem;
  }
}