.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 48px;
}

.swiper-slide {
  position: relative;
  border-radius: 16px;
  background: #08273c;
}

.swiper-slide:nth-child(3n + 1) .slide-stick {
  background: linear-gradient(190deg, #8272d5 1.06%, #aa9fe3 98.95%);
}
.swiper-slide:nth-child(3n + 2) .slide-stick {
  background: linear-gradient(90deg, #236a64 0%, #14c7b7 100%);
}

.swiper-slide:nth-child(3n + 3) .slide-stick {
  background: linear-gradient(90deg, #ff6bdc 0%, #ff8e53 100%);
}

.slide-stick {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px;
  border-radius: 0 16px 0 12px;
}

.slide-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;

  padding: 64px 48px;
}

.slide-content {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 16px;
}

.slide-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
  background-image: linear-gradient(
    57deg,
    var(--primary) 14%,
    var(--primary-light) 85%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
}

.slide-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: "SF Pro Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.slide-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
}

.slide-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 8px;
  align-items: center;
}

.slide-list li span {
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 14px;
  font-style: italic;
  font-weight: 1.4;
  text-transform: capitalize;
}

.slide-button {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 8px;
  border-radius: 32px;
  border: 1px solid #1d4cb3;
  background: linear-gradient(57deg, #1d4cb3 14.34%, #33b9de 85.66%);
  box-shadow: 0 0 16px 0 rgba(51, 185, 222, 0.24);
  margin: 24px auto 0 0;
  text-decoration: none;
  padding: 16px 32px;
}

.slide-button span {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.slide-button svg {
}

.slide-img {
  max-width: 510px;
  width: 100%;
}

.slide-img img {
  display: block;
  width: 100%;
}

.slide-navigation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.slide-control {
  position: relative;
  display: flex;
  flex-direction: row;
  column-gap: 32px;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    position: relative;
    top: unset!important;
    bottom: unset!important;
    left: unset!important;
    right: unset!important;
    transform: unset!important;
    margin: 0!important;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-bullet {
    background-color: #fff;
}
.swiper-pagination-bullet-active {
    background-color: #21d1ff;
}

.swiper-button-prev,
.swiper-button-next {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #21d1ff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
  font-weight: bolder;
  color: #000;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background-color: #fff;
}

@media screen and (max-width: 991px) {
  .slide-item {
    padding: 48px 32px;
  }
  .slide-stick {
    font-size: 12px;
    padding: 8px 10px;
  }
  .slide-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 600px) {
  .slide-item {
    flex-direction: column-reverse;
    row-gap: 0px;
  }

  .slide-img {
    max-width: 350px;
  }
  .slide-content {
    align-items: center;
  }
  .slide-button {
    margin: 16px auto 0 auto;
  }
}
