section.contacts h1 {
  font-size: var(--text-4xl);
}
section.contacts .contacts__content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;

  margin-top: 3rem;
}

section.contacts .contacts__content .info {
  display: flex;
  flex-direction: column;
  gap: 2rem;

  background-color: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  height: fit-content;
  width: 100%;

  color: var(--color-black);
}

section.contacts .contacts__content .info h3 {
  font-weight: 800;
  font-size: var(--text-xl);
}
section.contacts .contacts__content .info p {
  margin-top: 10px;
  font-weight: 600;
  font-size: var(--text-lg);
}
section.contacts .contacts__content .info > div h3 {
  margin-bottom: 10px;
}
section.contacts .contacts__content .info > div .phone {
  font-size: var(--text-lg);
  color: var(--color-black);
}
section.contacts .contacts__content .info > div .phone:first-of-type {
  margin-bottom: 5px;
}

@media screen and (max-width: 640px) {
  section.contacts .contacts__content {
    flex-direction: column;    
  }
  section.contacts .contacts__content .info {
    margin-top: 20px;
    gap: 1rem;
    flex-direction: row;
  }
}

@media screen and (max-width: 500px) {
  section.contacts .contacts__content .info {
    flex-wrap: wrap;
  }
}
