.contacts {
  padding: 2rem 0;
}
.contacts__body {
  display: -ms-grid;
  display: grid;
  margin-top: 3.25rem;
  gap: 3.25rem;
}
.contacts__block {
  border-top: 1px solid #e1e1e1;
  padding-top: 1.5rem;
}
.contacts__block:not(:last-child) {
  padding-bottom: 1.5rem;
}
.contacts__list {
  margin-top: 1.5rem;
}
.contacts__item {
  line-height: 140%;
  font-size: 0.875rem;
}
.contacts__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.contacts__item.contacts__item-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts__item.contacts__item-row .contacts__item-value {
  text-align: right;
  font-size: 0.875rem;
}
.contacts__item.contacts__item-row:not(:last-child) {
  margin-bottom: 0.8rem;
}
.contacts__item-name {
  color: #969696;
}
.contacts__item-value {
  line-height: 140%;
}
.contacts__item-value a {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (min-width: 575.98px) {
  .contacts {
    padding: 4rem 0;
  }
}
@media (min-width: 991.98px) {
  .contacts__body {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1199.98px) {
  .contacts__item-value {
    font-size: 1.125rem;
  }
}
@media (min-width: 1439.98px) {
  .contacts {
    padding: 6.25rem 0;
  }
  .contacts__body {
    margin-top: 6.25rem;
    gap: 6.25rem;
  }
  .contacts__block {
    padding-top: 2.5rem;
  }
  .contacts__block:not(:last-child) {
    padding-bottom: 2.5rem;
  }
  .contacts__list {
    margin-top: 2.5rem;
  }
  .contacts__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
@media (any-hover: hover) {
  .contacts__item-value a:hover {
    color: #39bc28;
  }
}
