/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero-with-image {
  background-color: #183334;
  color: #fff;
  border-radius: 0 0 20rem 20rem;
  padding: 14rem 0 15.5rem;
}
.hero-with-image .container {
  grid-column: breakout;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
}
.hero-with-image .container.wide {
  grid-template-columns: 3fr 1fr;
  gap: 13.6rem;
}
.hero-with-image .container.wide .text {
  max-width: 100%;
}
.hero-with-image .heading {
  margin: 0 0 3rem;
}
.hero-with-image .heading span {
  color: #EAF46E;
}
.hero-with-image .text {
  font-size: 1.8rem;
  max-width: 64.5rem;
}
.hero-with-image .usps {
  margin: 3.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-with-image .usp {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.hero-with-image .usp p {
  font-size: 1.8rem;
}
.hero-with-image .usp p span {
  font-weight: 700;
}
.hero-with-image .hero-image img {
  border-radius: 1rem;
  width: 100%;
}

@media (max-width: 1400px) {
  .hero-with-image .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1200px) {
  .hero-with-image {
    padding: 6rem 0;
    border-radius: 0 0 5rem 5rem;
  }
  .hero-with-image .container {
    grid-template-columns: 1fr;
  }
  .hero-with-image .container.wide {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .hero-with-image .hero-image {
    order: 1;
  }
  .hero-with-image .hero-image img {
    max-width: 40rem;
  }
  .hero-with-image .hero-content {
    order: 2;
  }
}
@media (max-width: 768px) {
  .hero-with-image {
    padding: 1.6rem 1rem 6rem;
  }
  .hero-with-image .container {
    gap: 1.4rem;
  }
  .hero-with-image .container.wide {
    gap: 1.4rem;
  }
  .hero-with-image .heading {
    margin: 0 0 1.5rem;
  }
  .hero-with-image .text {
    font-size: 1.3rem;
  }
  .hero-with-image .usps {
    margin: 1.5rem 0 0;
    gap: 0.5rem;
  }
  .hero-with-image .hero-image {
    display: flex;
    justify-content: center;
  }
  .hero-with-image .usp {
    gap: 1.1rem;
  }
  .hero-with-image .usp p {
    font-size: 1.3rem;
  }
  .hero-with-image .usp svg, .hero-with-image .usp img {
    width: 2.1rem;
    height: 2.1rem;
  }
}