.contacts-departments-cards {
  margin-bottom: 80px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contacts-departments-cards {
    margin-bottom: 96px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .contacts-departments-cards {
    margin-bottom: 120px;
  }
}
.contacts-departments-cards__card {
  background-color: var(--color-grey-2);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contacts-departments-cards__card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media screen and (min-width: 1024px) {
  .contacts-departments-cards__card {
    border-radius: 16px;
    padding: 40px;
    flex: 0 0 calc(33% - 13px);
  }
}
.contacts-departments-cards__card-title {
  margin-bottom: 12px;
  display: block;
  font-size: var(--font-size-m);
  line-height: var(--line-height-m);
}
.contacts-departments-cards__contact-text {
  font-size: var(--font-size-m);
  line-height: var(--line-height-m);
  font-weight: var(--font-weight-normal);
}
.contacts-h1 {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contacts-h1 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .contacts-h1 {
    margin-bottom: 64px;
  }
}
