.contacts-block {
  margin-top: 0;
}
.contacts-block .block-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-bottom: 40px;
}
.contacts-block .tile {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 30px 0 var(--background-secondary);
  background: var(--background-thirdly);
}
.contacts-block .tile__top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 45px;
  gap: 10px;
}
.contacts-block .tile__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
  color: var(--head-primary);
}
.contacts-block .tile__icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: var(--third);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacts-block .tile__icon svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.contacts-block .tile__content {
  margin-top: auto;
}
.contacts-block .map-holder {
  height: 400px;
  border-radius: 20px;
}
.contacts-block .worktime {
  margin-top: 15px;
}
.contacts-block .phone {
  font-weight: 600;
}
.contacts-block .address p {
  font-weight: 600;
}

@media (max-width: 1025px) {
  .contacts-block .block-holder {
    grid-gap: 20px;
  }
  .contacts-block .tile {
    padding: 20px;
  }
  .contacts-block .tile__title {
    font-size: 20px;
  }
  .contacts-block .tile__icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 769px) {
  .contacts-block .block-holder {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-block .tile.messengers {
    order: 3;
    grid-column: span 2;
  }
}
@media (max-width: 498px) {
  .contacts-block .block-holder {
    grid-template-columns: 1fr;
  }
  .contacts-block .tile.messengers {
    order: unset;
    grid-column: unset;
  }
}

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