/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.contacts-block {
  padding: 40px 0;
}
.contacts-block .title {
  text-align: center;
}
.contacts-holder {
  position: relative;
  padding: 80px 90px;
}
.contacts-holder .map-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.contacts-card {
  position: relative;
  z-index: 1;
  background: var(--card);
  width: -moz-fit-content;
  width: fit-content;
  padding: 40px 50px;
}
.contacts-card .item {
  margin-bottom: 20px;
}
.contacts-card .item.address-item {
  max-width: 244px;
  width: 100%;
}
.contacts-card .item.time-item {
  max-width: 196px;
  width: 100%;
}
.contacts-card .item-name {
  font-size: clamp(12px, 0.00125 * 100vw + 11.6px, 14px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin-bottom: 10px;
}
.contacts-card .item-value {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
}
.contacts-card .item-value p {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--head);
  padding: 0;
}
.contacts-card .item.phone-item:hover .item-value {
  color: var(--primary);
}
.contacts-card .soc-holder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.contacts-card .soc-holder .soc-item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bgDark);
  border-radius: 100%;
  padding: 17px;
  transition: background 0.4s ease-out;
}
.contacts-card .soc-holder .soc-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: filter 0.4s ease-out;
}
.contacts-card .soc-holder .soc-item:hover {
  background: var(--primary);
}
.contacts-card .soc-holder .soc-item:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
  .contacts-block {
    padding: 20px 0;
  }
}
@media (max-width: 700px) {
  .contacts-holder {
    padding: 0;
  }
  .contacts-holder .map-holder {
    position: relative;
    height: 500px;
  }
  .contacts-card {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
}/*# sourceMappingURL=block.css.map */