#contacts-block .contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.25vw + 6px, 30px);
}
@media (max-width: 1000px) {
  #contacts-block .contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  #contacts-block .contacts {
    grid-template-columns: 1fr;
  }
}
#contacts-block .contacts .item {
  display: flex;
  flex-direction: column;
  padding: clamp(15px, 0.3125vw + 14px, 20px);
  border-radius: 10px;
  background-color: var(--bg-light);
}
#contacts-block .contacts .item__top {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
#contacts-block .contacts .item__top .p3 {
  max-width: 90px;
}
#contacts-block .contacts .item__top svg {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}
#contacts-block .contacts .item__top.address svg path:last-of-type,
#contacts-block .contacts .item__top svg path {
  fill: var(--accent-1);
}
#contacts-block .contacts .item__top svg rect:last-of-type {
  stroke: var(--accent-1);
}
#contacts-block .contacts .item__top.address svg path {
  fill: unset;
}
#contacts-block .contacts .item__top.address svg path:nth-child(1),
#contacts-block .contacts .item__top.address svg path:nth-child(2) {
  fill: white;
}
/* #contacts-block .contacts .item__top.address svg path:not(:first-of-type),
        #contacts-block .contacts .item__top.address svg path:not(:last-of-type) {
          fill: unset;
        } */
#contacts-block .contacts .item__values {
  margin-top: auto;
}
#contacts-block .contacts .item__values a {
  transition: .3s;
}
#contacts-block .contacts .item__values a:hover {
  color: var(--accent-1);
}
#contacts-block .contacts .item__values p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

/*# sourceMappingURL=block.css.map */
