.cmp-banner-info {
  display: flex;
}
@media (min-width: 768px) {
  .cmp-banner-info {
    min-height: 28.6875rem;
  }
}
.cmp-banner-info__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cmp-banner-info__content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.cmp-banner-info__content-image {
  position: relative;
}
@media (min-width: 768px) {
  .cmp-banner-info__content-image {
    margin-left: 5%;
  }
}
.cmp-banner-info__content-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}
@media (min-width: 768px) {
  .cmp-banner-info__content-image img {
    height: 17rem;
    width: 17rem;
  }
}
.cmp-banner-info__content-image::after {
  content: '';
  display: block;
  width: 100%;
  height: 13rem;
  background-color: var(--primary-50);
  position: absolute;
  top: 0px;
  rotate: 356deg;
}
@media (min-width: 768px) {
  .cmp-banner-info__content-image::after {
    width: 20rem;
    height: 20rem;
    top: -26px;
    right: 18px;
    rotate: 352deg;
  }
}
.cmp-banner-info__content-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cmp-banner-info__content-text ul {
  list-style: initial;
  padding-inline-start: 2.5rem;
}
