.banner {
  display: flex;
  align-items: center;
  justify-content: flex-end !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 25rem;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.6) 25%,
      rgba(0, 0, 0, 0.7) 65%,
      rgba(0, 0, 0, 0.75) 85%,
      rgba(0, 0, 0, 0.8) 100%
    );
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: right !important;
  max-width: auto;
  padding: 2rem;
  padding-left: 30rem;
}

.banner-text p {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile + Tablet */
@media (max-width: 1199px) {
  .icmc {
    height: auto;
    padding: 1.5rem 1.5rem;
  }

  .banner-text {
    max-width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .banner-text p {
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
    font-weight: 450;
  }
}
