.container-flex {
  display: flex;
  gap: 12px;
  align-items: center;
}

section h2 {
  font-weight: 600;
}

.container-landing {
  max-width: 100%;
  margin: auto;
  /* padding: 0 16px; */
}

div.main {
  padding: 0 50px;
}

.main {
  display: flex;
  gap: 24px;
  padding-bottom: 20px;
}

.banner {
  max-height: 350px;
  object-fit: cover;
}

div.main h1 {
  color: #000;
  font-size: 48px;
}

.section-content {
  margin-left: 32px;
}

h2 {
  /* font-size: 32px; */
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section img {
  margin: auto;
  display: block;
}

.scroll-to {
  cursor: pointer;
}

.scroll-to:hover {
  text-decoration: underline;
}

.section-title {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.quote-intro {
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: #111;
  background: #f5f5f5;
  padding: 12px 24px;
  border-left: 3px solid #444;
  margin: 10px 0;
  letter-spacing: 0.3px;
}

.quote-green {
  line-height: 1.7;
  color: #111;
  background: #f5f5f5;
  padding: 12px 24px;
  border-left: 3px solid #ffc107;
  margin: 10px 0;
  letter-spacing: 0.3px;
}

.highlight-right {
  color: #ffbd00;
  background: -webkit-linear-gradient(top, #ffbd00, #ff9000);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin: 0;
  padding: 2rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  border-left: none;
  min-width: 350px;
  max-width: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .container-flex {
    flex-direction: column;
  }

  .container-flex.text-highlight {
    flex-direction: column-reverse;
  }

  h1 {
    font-size: 28px !important;
  }

  div.main {
    padding: 0 12px;
  }

  .main {
    display: block;
  }

  .section-content {
    margin-left: 12px;
  }

  .highlight-right {
    text-align: center;
    min-width: unset;
    max-width: unset;
    padding: 12px 0;
  }

  section img {
    width: 100%;
    height: auto;
  }
}