.contact-info__header {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info__headline {
  margin: 0;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  text-align: center;
}

.contact-info__item {
  flex: 1;
}

.contact-info__icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon img,
.contact-info__icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.contact-info__text {
  font-size: 24px;
  line-height: 1.4;
  color: #000;
}

.contact-info__text p {
  margin: 0 0 .5rem;
}

.contact-info__text p:last-child {
  margin-bottom: 0;
}

.contact-info__text strong,
.contact-info__text b,
.contact-info__text a {
  font-weight: 700;
}

.contact-info__text a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    gap: 2.5rem;
  }

  .contact-info__icon {
    margin-bottom: 1.25rem;
  }
}