@font-face {
  font-family: "Canopee";
  src: url(/assets/Fonts/Canopee/Canopee.otf) format('otf'),
       url(/assets/Fonts/Canopee/Canopee.woff) format('woff');
}

.contact {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10em;
}

/* header */

.contact .contact-header {
  flex: 1;
}

.contact .contact-copy {
  flex: 1;
}

.contact .contact-header h2 {
  font-size: 10vw;
  letter-spacing: -0.02em;
  line-height: 0.8;
}

.contact .contact-header h2 span {
  line-height: 0.8;
  font-weight: 500;
  text-transform: uppercase;
}

.contact .contact-header h2 span#italic {
  font-style: italic;
}

.contact .contact-header h5 {
  font-size: 3vw;
  font-weight: 500;
  width: 100%;
  text-align: right;
  margin: 0.4em 0;
}

/* content  */

.contact-copy .contact-copy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.contact-copy .contact-copy-wrapper .mail a {
  position: relative;
  color: var(--project-primary) !important;
  font-size: 3vw;
  width: max-content;
  color: var(--project-primary);
  opacity: 1;
}

.contact-copy .contact-copy-wrapper .mail a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--project-primary);
}

.contact-copy .contact-copy-wrapper .socials {
  display: flex;
  gap: 2em;
  margin-bottom: 4em;
}

.contact-copy .contact-copy-wrapper .socials .social {
  margin: 1em 0;
  display: flex;
  gap: .5em;
}

.contact-copy .contact-copy-wrapper .socials .social a {
  position: relative;
  margin: 0 0.5em;
  font-weight: 400;
  text-decoration: none;
  color: var(--text-color);
}

.contact-copy .contact-copy-wrapper .socials .social ion-icon {
  position: relative;
  top: 2px;
  font-size: 1.5vw;
}

.footer-contact {
  display: none;
}

@media (max-width: 900px) {
  .contact {
    margin-top: 20vh;
    flex-direction: column-reverse;
    height: max-content;
  }

  .contact .contact-header h2 {
    font-size: 20vw;
  }

  .contact .contact-header h5 {
    font-size: 7vw;
  }

  .contact-copy .contact-copy-wrapper {
    margin-bottom: 15em;
  }

  .contact-copy .contact-copy-wrapper .mail a {
    font-size: 10vw;
  }

  .contact-copy .contact-copy-wrapper .socials .social a {
    font-size: 4vw;
  }

  .contact-copy .contact-copy-wrapper .socials .social ion-icon {
    font-size: 4vw;
  }

  .contact-copy .contact-copy-wrapper .input input {
    font-size: 4vw;
  }

  .footer-contact {
    display: block;
  }
}
