.contact .row {
  align-items: center;
}
.contact .contactInfo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5vw;
}
.contact .contactInfo h1 {
  font-size: calc(1.5vw + 2.5em);
  font-family: light;
  text-transform: uppercase;
}
.contact .contactInfo h1 span {
  font-family: bold;
}
.contact .contactInfo p {
  margin: 10px 0;
  font-family: regular;
  font-size: 20px;
  color: #000;
}
@media (max-width: 767px) {
  .contact .contactInfo p {
    font-size: 16px;
  }
}
.contact .contactInfo a {
  display: block;
  font-size: 20px;
  font-family: light;
  color: #000;
  letter-spacing: 1px;
  padding: 5px 0;
}
@media (max-width: 767px) {
  .contact .contactInfo a {
    font-size: 16px;
  }
}
.contact .contactInfo a i {
  margin-right: 5px;
  min-width: 30px;
  text-align: center;
}
.contact .map {
  position: relative;
  padding-top: 100%;
}
.contact .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}