.contacts-section {
  padding: 0 10px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.contacts-section__header {
  margin: 0;
  color: var(--main-text-color);
  font-family: 'PHGTL', sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
}

.contacts-section__container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 34px;
}

.contacts-section__link {
  display: block;
}

.contacts-section__icon {
  height: 42px;
  width: auto;
  object-fit: contain;
}

@media screen and (min-width: 1200px) {
  .contacts-section {
    gap: 24px;
  }
  .contacts-section__header {
    font-size: 48px;
  }
  .contacts-section__container {
    gap: 46px;
  }
  .contacts-section__icon {
    height: 52px;
  }
}
