.banner-wrapper {
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  min-height: 322px;
  margin-bottom: 42px;
}
@media screen and (max-width: 700px) {
  .banner-wrapper {
    flex-direction: column;
    min-height: 0;
  }
}
.banner-wrapper-image {
  position: relative;
  align-self: stretch;
  flex-shrink: 0;
  flex-grow: 1;
}
@media screen and (max-width: 700px) {
  .banner-wrapper-image {
    width: 100%;
    height: 45vw;
  }
}
.banner-wrapper-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}
.banner-wrapper-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90.72deg,rgba(98,114,255,0.3) 0.74%,rgba(254,197,255,0.3) 99.56%);
}
.banner-wrapper-content {
  width: 50%;
  padding: 20px 65px;
}
@media screen and (max-width: 991px) {
  .banner-wrapper-content {
    padding: 20px;
  }
}
@media screen and (max-width: 700px) {
  .banner-wrapper-content {
    width: 100%;
    padding: 25px 20px 30px;
  }
}
