.ContactBanner {
  width: 100%;
  min-height: 265px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/images/nutricos_banner/banner_03.png") center center / cover
      no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ContactBanner .overlay {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ContactBanner .heading {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}

.ContactBanner .button {
  width: 357px;
  min-height: 74px;
  padding: 20px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffd522;
  color: #000000;
  border-radius: 6px;

  font-size: 17px;
  font-weight: 400;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.ContactBanner .button:hover {
  background-color: #f4c500;
  transform: translateY(-2px);
}

/* Tablet */
@media (min-width: 0px) and (max-width: 991.98px) {
  .ContactBanner {
    min-height: 240px;
  }

  .ContactBanner .heading {
    font-size: 32px;
  }

  .ContactBanner .button {
    width: 320px;
  }
}

/* Mobile */
@media (min-width: 576px) and (max-width: 767.98px) {
  .ContactBanner {
    min-height: 280px;
    padding: 40px 20px;
  }

  .ContactBanner .heading {
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 25px;
  }

  .ContactBanner .heading br {
    display: none;
  }

  .ContactBanner .button {
    width: 100%;
    max-width: 320px;
    min-height: 64px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (min-width: 0px) and (max-width: 575.98px) {
  .ContactBanner .heading {
    font-size: 24px;
  }

  .ContactBanner .button {
    max-width: 280px;
  }
}
