.banner {
  position: relative;
  margin-top: 100px;
}

.banner__container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 70px 20px;

}

.banner__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.banner__card {
  max-width: 750px;
  width: 60%;
  padding: 32px 48px;
  border-radius: 16px;
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: -3px;
  background: radial-gradient(
    67.36% 67.36% at 50% 32.64%,
    rgba(255, 255, 255, 0.3) 40.38%,
    rgba(255, 255, 255, 0.05) 100%
  );
  text-align: left;
  color: #fff;
}

.banner__title {
  font-family: "Poppins Bold";
  font-weight: 700;
  font-size: 35px;
  line-height: 137.14%;
  margin-bottom: 16px;
}

.banner__text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 16px;
      margin-left: auto;
    margin-right: auto;
/*     max-width: 420px; */
}

.banner__list {
  margin-bottom: 16px;
}

.banner__item {
    font-family: "Poppins Regular";
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  position: relative;
  width: fit-content;
    padding-left: 13px;

}

.banner__item::before {
  content: ".";
    font-size: 24px;
  position: absolute;
  left: 0;
  top: -7px;
  font-weight: 500;
}

.banner__cta {
  width: 100%;
  letter-spacing: 1.25px;
}

.banner__image {
  position: absolute;
  left: 20px;
  bottom: 0;
  pointer-events: none;
  height: 100%;
}

.banner__image img {
  height: 100%;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 103.9% 70.28% at 50% 50%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .banner {
  }
  
.banner__container {
      padding: 60px 20px;
  }
  
  .banner__content {
    justify-content: center;
  }

  .banner__card {
    width: min(520px, 92%);
    padding: 24px;
  }

  .banner__image {
    position: absolute;
    transform: none;
    max-width: 50%;
    top: 30%;
    z-index: -1;

    display: none;
  }
  
  .banner {

  margin-top: 0;
}
  
  .banner__text,
  .banner__item {
  font-size: 18px;
}
