.contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
}
.contacts__container {
  background: #151515;
  border-radius: 40px;
  width: 100%;
  max-width: 1180px;
  height: 100%;
  max-height: 462px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contacts__container h3 {
  color: #FFF;
  text-align: center;
  /* 64px/bold */
  font-family: Inter Tight;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
}
.contacts__info {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
.contacts__info-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts__info-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacts__info-right a {
  color: #FFF;
  /* 16px/medium */
  font-family: Inter Tight;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.contacts__info-right p {
  color: #FFF;
  /* 16px/medium */
  font-family: Inter Tight;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}
.contacts__button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D73636;
  border-radius: 8px;
  width: 182px;
  height: 49px;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 700px) {
  .contacts__container {
    height: 380px;
  }
  .contacts__container h3 {
    font-size: 32px;
  }
  .contacts__info {
    margin-top: 30px;
    flex-direction: column;
  }
  .contacts__info-right p {
    font-size: 14px;
  }
  .contacts__info-right a {
    font-size: 14px;
  }
  .contacts__button {
    margin-top: 30px;
  }
}

/*# sourceMappingURL=contacts.css.map */
