@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Schoolbell&display=swap");
/* ===========================
   BANNER CONTAINER
=========================== */
.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .banner {
    flex-direction: row;
    padding: 0 0 0 2.28rem;
    height: 13.77rem;
    margin-top: -3rem;
    overflow: hidden;
    z-index: 0;
  }
}

/* ===========================
   LEFT SIDE
=========================== */
.banner__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 20rem;
  flex-shrink: 0;
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .banner__left {
    align-items: flex-start;
    padding-top: 3.5rem;
    height: 100%;
  }
}

.banner__left-h1 {
  font-size: 1.45rem;
  font-weight: 500;
  color: black;
  line-height: 1;
  letter-spacing: -1%;
}

@media screen and (min-width: 768px) {
  .banner__left-h1 {
    font-size: 1rem;
    line-height: 1.1;
  }
}

.banner__left-h1 span {
  color: #d280a0;
  font-weight: 800;
}

.banner__left-p {
  font-size: 0.727rem;
  width: 15rem;
  color: #5c575e;
  font-weight: 400;
  text-align: left;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .banner__left-p {
    text-align: left;
    font-size: 0.45rem;
    margin-top: 0.2rem;
    width: 11.11rem;
    line-height: 1.2;
    letter-spacing: -2%;
  }
}

.banner__left-button {
  background-color: var(--brandColor);
  color: white;
  border-radius: 2.18rem;
  font-size: 0.727rem;
  width: 9.54rem;
  height: 2.18rem;
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .banner__left-button {
    height: 1.32rem;
    width: 7.16rem;
    font-size: 0.451rem;
    line-height: 1;
    margin-top: 1rem;
    font-weight: 600;
  }
}

/* ===========================
   RIGHT SIDE
=========================== */
.banner__right {
  height: 15.8rem;
  background:var(--dark-violet);
  align-self: stretch;
  position: relative;
}

@media screen and (min-width: 768px) {
  .banner__right {
    width: 12.98rem;
    background-color: #4d2a53;
  }
}

/* ===========================
   RIGHT SIDE IMAGES
=========================== */
.banner__right-patient-img-sm {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  top: -2.9rem;
  /* border: 2px solid red; */
}

.banner__right-patient-img-lg {
  display: none;
}

@media screen and (min-width: 768px) {
  .banner__right-patient-img-sm {
    display: none;
  }

  .banner__right-patient-img-lg {
    display: block;
    height: 16rem;
    width: auto;
    position: absolute;
    bottom: 1rem;
    right: 3rem;
  }
}

/* ===========================
   STATS SECTION
=========================== */
.stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  color: #5b1a8d;
  font-family: "Poppins", sans-serif;
}

@media screen and (min-width: 768px) {
  .stats {
    flex-direction: row;
    justify-content: space-around;
  }
}

.stats__item {
  padding-bottom: 0.2rem;
}

.stats__item:nth-child(even) {
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  .stats__item:nth-child(even) {
    align-self: flex-start;
  }
}

.stats__number {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
}

.stats__line {
  border-bottom: 1px solid #62186f;
}

@media screen and (min-width: 768px) {
  .stats__number {
    font-size: 1.3rem;
    border: 0;
    line-height: 1;
  }
}

.stats__label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.4rem;
}

@media screen and (min-width: 768px) {
  .stats__label {
    font-size: 0.366rem;
    margin-top: 0;
    line-height: 1;
  }
}

/* Animation-specific additions */
.stats__number,
.stats__label {
  opacity: 0;
  position: relative;
}

.stats__number {
  transform: translateY(40px); /* comes from below */
}

.stats__label {
  transform: translateY(-40px); /* comes from above */
}

.stats__line {
  display: block;
  width: 0%;
  border-bottom: 0.015rem solid #62186f;
  transform-origin: left center;
  margin: 0.3rem 0;
}

.banner-title__unique-text {
  color: black !important;
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
}
