.contact {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 80px 0 0;
}
.contact .form {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.contact .form .form-content {
  width: 35%;
  height: auto;
  padding: 5%;
}
.contact .form .form-content .form-fields {
  margin: 56px 0;
}
.contact h1 {
  font-size: 40px;
  line-height: 40px;
  color: var(--color-blue-light);
}
.contact .form .form-image {
  width: 65%;
  height: auto;
}

.contact-sectors {
  width: 100%;
  background-color: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px;
  gap: 24px;
}
.contact-sectors .sector {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-sectors .sector h5 {
  color: var(--color-white);
  margin: 0 0 4px;
}
.contact-sectors .sector a,
.contact-sectors .sector a:link,
.contact-sectors .sector a:visited,
.contact-sectors .sector a:hover,
.contact-sectors .sector a:active {
  color: var(--color-white);
  text-decoration: none;
}

.contact-map {
  background: url('../img/contact/finger-map.jpg') center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-map .content-map {
  width: fit-content;
  color: var(--color-white);
  padding: 0;
  text-align: center;
}
.contact-map .content-map .cta {
  margin: 24px auto 0;
}

@media (max-width: 900px) {
  .contact {
    padding: 0;
  }
  .contact-sectors {
    padding: 40px;
    gap: 32px;
  }
  .contact-sectors .sector {
    width: 100%;
  }
  .contact .form .form-content {
    padding: 40px;
  }
  .contact .form .form-content,
  .contact .form .form-image {
    width: 100%;
  }
  .contact-map {
    height: auto;
    padding: 40px;
  }
  .contact-map .content-map {
    padding: 0;
  }
}