/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.banner .content {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-radius: 2.1rem;
  overflow: hidden;
  background-image: url("../../../assets/icons/stats-counter-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner .heading-container {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem 7.6rem 4.5rem;
  position: relative;
}
.banner .heading-container .heading,
.banner .heading-container span {
  color: #fff;
}
.banner .heading-container .heading {
  font-size: 8rem;
  line-height: 10.2rem;
}
.banner .heading-container .text {
  font-size: 2.2rem;
  line-height: 2.6rem;
}
.banner .heading-container .button-container {
  margin: 2.2rem 0 0;
}
.banner .image-container {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.banner .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .banner .heading-container {
    padding: 4.7rem 4.8rem 6.5rem 4.1rem;
  }
  .banner .heading-container .heading {
    font-size: 6.5rem;
    line-height: 5.7rem;
    margin: 0 0 1.6rem;
  }
  .banner .heading-container .text {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .banner .heading-container .button-container {
    margin: 2.6rem 0 0;
  }
}
@media (max-width: 768px) {
  .banner .content {
    grid-template-columns: 1fr 1fr;
  }
  .banner .heading-container {
    padding: 3.5rem 2.8rem 3.1rem 2.5rem;
  }
  .banner .heading-container .heading {
    margin: 0 0 0.8rem;
  }
  .banner .heading-container .button-container {
    margin: 2.1rem 0 0;
  }
  .banner .image-container {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  }
}
@media (max-width: 575px) {
  .banner {
    grid-column: full-width !important;
  }
  .banner .content {
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .banner .image-container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  }
  .banner .heading-container {
    padding-left: calc(2.5rem + 27px);
    padding-right: calc(2.5rem + 27px);
  }
}
@media (max-width: 450px) {
  .banner .heading-container {
    padding-top: 2.3rem;
    padding-bottom: 11.4rem;
  }
  .banner .heading-container .heading {
    font-size: 4.5rem;
    line-height: 3.7rem;
    margin: 0 0 1.2rem;
  }
  .banner .heading-container .text {
    font-size: 1.9rem;
    line-height: 2.2rem;
  }
  .banner .heading-container .button-container {
    margin: 2.3rem 0 0;
  }
}