.hero-info-card {
  position: relative;
  min-height: 21rem;
  border-radius: 0.5rem;
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  color: var(--white);
  padding: 1rem;
  gap: 40px;
}
.hero-info-text {
  width: 18.93rem;
  margin-bottom: auto;
  line-height: 1;

  h1 {
    width: 100%;
    font-weight: 300;
    font-size: 1.75rem;
  }

  span {
    font-weight: 600;
  }
}
.hero-info-list {
  list-style: none;
  font-size: 1rem;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  li {
    border-radius: 100px;
    padding: 6px 12px;
    border-radius: 6.25rem;
    background-color: #ffffff0d;
    background-blend-mode: lighten;
    text-align: left;
    width: 11.68rem;
  }
}
.hero-info-footer {
  display: flex;
  flex-direction: row;
  width: 16.61rem;
  height: 1.245rem;
  column-gap: 1.25rem;
}
.footer-img {
  width: 72.54px;
  height: 19.92px;
}
.footer-icon {
  width: 15.18px;
  height: 13.95px;
}
.hero-info-footer-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
  padding-left: 1rem;
  border-left: 1px solid var(--white);
  p {
    font-size: 14px;
    margin: 0;
  }
  span {
    font-weight: 800;
  }
}
/* Responsive */
@media (min-width: 600px) {
  .hero-info-card {
    width: 100%;
    max-width: 44rem;
    min-height: 21rem;
    max-height: 47.625rem;
    box-sizing: border-box;
    flex-shrink: 1;
    flex-grow: 1;
    padding: 0 3rem 3rem 3rem;
  }

  .hero-info-text {
    width: 37rem;
    margin: auto 0;

    h1 {
      line-height: 1;
      margin: 0;
      font-size: 3rem;
      font-weight: 300;
      span {
        font-weight: 600;
      }
    }
  }
  .hero-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: fit-content;

    li {
      border-radius: 6.25rem;
      padding: 0.75rem 0.375rem;
      background-color: #ffffff0d;
      background-blend-mode: lighten;
      text-align: center;
    }

    .hero-info-footer {
      margin-top: auto;
      width: 16.61rem;
      height: 1.245rem;
      column-gap: 1.25rem;
    }
    .footer-img {
      width: 4.5rem;
      height: 1.24rem;
    }
    .footer-icon {
      width: 1.224rem;
      height: 1.125rem;
    }
    .hero-info-footer-text {
      display: flex;
      flex-direction: row;
      align-items: center;
      column-gap: 8px;
      padding-left: 1rem;
      border-left: 1px solid var(--white);

      p {
        font-size: 1.125rem;
        font-weight: 700;
        margin: 0;
      }
      span {
        font-weight: 800;
      }
    }
  }
}
@media (min-width: 1024px) {
  .hero-info-footer {
    width: fit-content;
  }
   .footer-img {
      width: 4.53rem;
      height: 1.24rem;
    }
  .hero-info-footer-text {
    display: flex;
    flex-direction: row;

    p {
      font-weight: 700;
      font-size: 1.125rem;
    }
    span {
      font-weight: 800;
    }
  }
}
