.contacts .container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}
.contacts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}
.contacts .contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-rounded-2xl);
  background: var(--color-neutral-96);
}
.contacts .acf-contact-list__value {
  color: var(--color-black-12);
}
.contacts .ya-map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-rounded-2xl);
}
.contacts .ya-map .map-holder {
  height: 100%;
  min-height: clamp(20rem, -1.3793103448rem + 34.4827586207vw, 40rem);
}
.contacts__additional-content:has(.video-player) {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}
@media (max-width: 767.98px) {
  .contacts__additional-content:has(.video-player) {
    display: flex;
    flex-direction: column;
  }
}
.contacts__additional-content:has(.video-player:nth-child(2)) {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767.98px) {
  .contacts__additional-content:has(.video-player:nth-child(2)) {
    display: flex;
    flex-direction: column;
  }
}
.contacts__video:has(.video-player:nth-child(2)) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, 0.375rem + 1.25vw, 1.875rem);
}
@media (max-width: 575.98px) {
  .contacts__video:has(.video-player:nth-child(2)) {
    display: flex;
    flex-direction: column;
  }
}
.contacts .video-player {
  position: relative;
  overflow: hidden;
  height: clamp(17.5rem, 13rem + 22.5vw, 40rem);
  border-radius: var(--radius-rounded-2xl);
  cursor: pointer;
}
@media (any-hover: hover) {
  .contacts .video-player:hover .video-player__play-button {
    color: var(--color-neutral-96);
    background-color: var(--color-accent-45);
  }
}
@media (any-hover: none) {
  .contacts .video-player:active .video-player__play-button {
    color: var(--color-neutral-96);
    background-color: var(--color-accent-45);
  }
}
.contacts .video-player video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.contacts .video-player__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  color: var(--color-accent-45);
  background-color: var(--color-neutral-96);
}

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