.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 7rem;
  margin-bottom: 2rem;
  width: 100%;
  height: 20rem;
}
.banner-img {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: contrast(70%) brightness(70%);
  z-index: -1;
  display: block;
}
.banner .title {
  color: var(--text-light);
  font-family: var(--title-font);
  font-size: 3.7rem;
  text-align: center;
  position: absolute;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}
.text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.direct-contact-wrapper {
  width: 90%;
  margin-bottom: 3rem;
}
.direct-contact-option {
  display: flex;
  align-items: center;
}
.direct-contact-option a {
  font-size: 1.4rem;
  color: var(--secondary-color);
}
.svg-icon {
  width: 3rem;
  fill: var(--primary-color);
  margin: 1rem;
}



/* MIN OF 600PX */
@media only screen and (min-width: 600px) {
  .direct-contact-wrapper {
    padding: 2rem;
  }
}