.banner {
  position: relative;
  width: 100%;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("/assets/images/nutricos_banner/banner_03.png") center / cover no-repeat;
}

.banner .heading {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  max-width: 800px;
  line-height: 1.2;
  margin: 0 0 32px;
  letter-spacing: -0.72px;
}

.banner .button {
  background-color: #fbd02b;
  color: #111111;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  display: inline-block;
}

.banner .button:hover {
  background-color: #e5bc20;
}

/* Responsive */
@media (min-width:0px) and (max-width: 768px) {
  .banner {
    padding: 56px 16px;
  }

  .banner .heading {
    font-size: 26px;
  }

  .banner .button {
    font-size: 14px;
    padding: 12px 26px;
  }
}
