.contacts {
  margin-bottom: 160rem;
}
.contacts__wrapper {
  display: flex;
  gap: 24rem;
  justify-content: space-between;
  align-items: center;
}
.contacts__map {
  width: 100%;
}
.contacts__map iframe {
  border: 2rem solid rgba(0, 0, 0, 0.2);
  border-radius: 8rem;
}
.contacts__info {
  max-width: 706rem;
  width: 100%;
}
.contacts__phone, .contacts__email {
  display: flex;
  gap: 4rem;
  font-family: "Inter";
  font-weight: 500;
  font-size: 20rem;
  line-height: 24rem;
  margin-bottom: 32rem;
}
.contacts__phone > a, .contacts__email > a {
  color: inherit;
}
.contacts__email {
  font-weight: 400;
}
.contacts__subtitle {
  font-family: "Inter";
  font-weight: 500;
  font-size: 22rem;
  line-height: 27rem;
  margin-bottom: 16rem;
}
.contacts__text {
  text-wrap: balance;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20rem;
  line-height: 24rem;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .contacts {
    margin-bottom: 50rem;
  }
  .contacts__wrapper {
    flex-wrap: wrap;
  }
  .contacts__text {
    font-size: 14rem;
    line-height: 1.6;
  }
  .contacts__subtitle {
    padding-top: 10rem;
    font-size: 16rem;
    line-height: 1.2;
  }
  .contacts__phone, .contacts__email {
    font-size: 14rem;
    margin-bottom: 10rem;
    line-height: 1.2;
  }
}