.contacts-block {
  background-color: var(--white);
  padding-bottom: 80px;
}

.contacts-block .block-title {
  text-align: left;
}

.contacts-block .block-holder {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 30px;
  align-items: stretch;
}

.contacts-block .block-holder .right-side {
  display: flex;
}

.contacts-block .map-holder {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts-block .holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contacts-block .holder .holder-icon {
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  position: relative;
}

.contacts-block .holder .holder-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: var(--primary);
  border-radius: 50%;
}

.contacts-block .holder .holder-icon svg {
  color: var(--primary);
  position: relative;
}

.contacts-block .holder .contacts {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contacts-block .phone,
.contacts-block .email,
.contacts-block .address p,
.contacts-block .worktime {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 5px;
  color: var(--gray);
}

.contacts-block .phone:hover,
.contacts-block .email:hover {
  color: var(--primary);
}

@media (max-width: 769px) {
  .contacts-block .block-holder {
    grid-template-columns: 1fr;
  }

  .contacts-block .map-holder {
    height: 300px;
    min-height: auto;
  }
}

/*# sourceMappingURL=block.css.map */