#contacts-block {
  padding: 40px 0;
}
#contacts-block .contacts__content {
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-between;
  min-height: 480px;
}
#contacts-block .contacts__left {
  border-radius: 20px;
  background-color: var(--primary);
  padding: 70px 50px;
}
#contacts-block .contacts__single-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
#contacts-block .contacts__single-contact-title {
  font-family: "Avenir Next Cyr";
  font-size: clamp(14px, 0 * 100vw + 14px, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--head);
}
#contacts-block .contacts__single-contact-values-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#contacts-block .contacts__single-contact-socials-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
#contacts-block .contacts__single-contact-socials-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contacts-block .contacts__single-contact-socials-wrapper a svg path {
  transition: 0.5s ease;
}
#contacts-block .contacts__single-contact-socials-wrapper a:hover svg path {
  fill: var(--accent2);
}
#contacts-block .contacts__single-contact-value {
  font-family: "Optima Cyr";
  font-size: clamp(18px, 0.00375 * 100vw + 16.8px, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--head);
  width: fit-content;
}
#contacts-block .contacts__single-contact-value p {
  font-family: "Optima Cyr";
  font-size: clamp(18px, 0.00375 * 100vw + 16.8px, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: inherit;
}
#contacts-block a.contacts__single-contact-value:hover {
  color: var(--accent2);
}
#contacts-block .contacts__right {
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
}
#contacts-block .contacts__right .map-holder {
  height: 100%;
}

@media only screen and (max-width: 1100px) {
  #contacts-block .contacts__content {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1000px) {
  #contacts-block {
    padding: 30px 0 !important;
  } 
}

@media only screen and (max-width: 480px) {
  #contacts-block .contacts__left {
    padding: 30px;
  }
}/*# sourceMappingURL=block.css.map */