.contacts-cards__cards {
  display: flex;
  border-right: var(--border-blue-5);
}
@media screen and (max-width: 900px) {
  .contacts-cards__cards {
    display: block;
    border-bottom: var(--border-blue-5);
  }
}
.contacts-cards__card {
  flex: 1 1 25%;
  padding: 32px;
  border: var(--border-blue-5);
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .contacts-cards__card {
    border-bottom: none;
    padding: 24px 16px;
  }
}
.contacts-cards__card-title {
  margin-bottom: 44px;
}
@media screen and (max-width: 900px) {
  .contacts-cards__card-title {
    margin-bottom: 40px;
  }
}
.contacts-cards__card-link {
  color: var(--color-blue-3);
}
.contacts-details__cards {
  display: flex;
  border-right: var(--border-blue-5);
}
@media screen and (max-width: 900px) {
  .contacts-details__cards {
    display: block;
    border-bottom: var(--border-blue-5);
  }
}
.contacts-details__card {
  flex: 1 1 30%;
  padding: 32px;
  border: var(--border-blue-5);
  border-right: none;
}
@media screen and (max-width: 900px) {
  .contacts-details__card {
    border-bottom: none;
    padding: 24px 16px;
  }
}
.contacts-details__card-title {
  margin-bottom: 8px;
}
.contacts-details__card-info {
  margin-bottom: 24px;
}
.contacts-details__card-info:last-child {
  margin-bottom: 0;
}
.contacts-details__card-info-link {
  transition: color var(--transition);
}
@media (hover: hover) {
  .contacts-details__card-info-link:hover {
    color: var(--color-blue-3);
    transition: color var(--transition);
  }
}
.contacts-map {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .contacts-map {
    flex-direction: column;
    gap: 40px;
  }
}
.contacts-map__subtitle {
  margin-bottom: 48px;
}
@media screen and (max-width: 900px) {
  .contacts-map__subtitle {
    margin-bottom: 24px;
  }
}
.contacts-map__details {
  flex: 0 0 33%;
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .contacts-map__details {
    margin-bottom: 0;
  }
}
.contacts-map__map-container {
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .contacts-map__map-container {
    height: 95vw;
  }
}
.contacts-map__map {
  width: 100%;
  height: 100%;
}
.contacts-map__controls {
  position: absolute;
  top: calc(50% - 42px);
  right: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 900px) {
  .contacts-map__controls {
    right: 12px;
  }
}
.contacts-map__control-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.contacts-map__filter-blackout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 170, 255, 0.2);
}
.contacts-map__filter-saturation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgb(0, 80, 120);
  mix-blend-mode: hue;
}
.contacts-map__cluster {
  left: -25px;
  top: -25px;
  height: 55px;
  width: 48px;
  position: absolute;
}
.contacts-map__cluster-number {
  left: 0;
  top: 0;
  position: absolute;
  color: var(--color-white-2);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
