.section--contact {
  display: flex;
  gap: var(--margin);
}
.section--contact > *:first-child {
  flex: 1;
}
.section--contact > *:nth-child(2) {
  flex: 2;
}
.section--contact .contact {
  display: flex;
  gap: var(--margin);
  border-bottom: 1px solid white;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.section--contact .contact > * {
  flex: 1;
}
.section--contact p {
  margin: 0;
}
.section--contact button, .section--contact a {
  display: block;
  font-size: 15px;
  line-height: 120%; /* 100% */
  letter-spacing: -0.2px;
}
.section--contact button {
  width: 100%;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.section--contact button svg {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
.section--contact button svg path {
  fill: white;
}
.section--contact button:hover svg {
  display: block;
}
@media screen and (max-width: 1350px) {
  .section--contact {
    flex-direction: column;
  }
}
@media screen and (max-width: 980px) {
  .section--contact {
    flex-direction: row;
  }
  .section--contact > *, .section--contact > *:nth-child(2) {
    flex: 1;
  }
  .section--contact .contact {
    flex-direction: column;
    gap: 5px;
  }
}
@media screen and (max-width: 780px) {
  .section--contact {
    flex-direction: column;
  }
}

/*# sourceMappingURL=contact.css.map */