.central-office-block {
  background-color: #F5FAFF;
  padding: 65px 0;
}
.central-office-block .block-holder {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-gap: 30px;
}
.central-office-block .addresses,
.central-office-block .phones,
.central-office-block .emails,
.central-office-block .worktime {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-left: 55px;
}
.central-office-block .addresses:before,
.central-office-block .phones:before,
.central-office-block .emails:before,
.central-office-block .worktime:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--blue);
  background-size: 24px;
  background-position: center center;
  background-repeat: no-repeat;
}
.central-office-block .title {
  color: var(--text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.central-office-block .addresses:before {
  background-image: url("images/map.svg");
}
.central-office-block .phones:before {
  background-image: url("images/phone.svg");
}
.central-office-block .emails:before {
  background-image: url("images/mail.svg");
}
.central-office-block .worktime:before {
  background-image: url("images/worktime.svg");
}
.central-office-block .phone,
.central-office-block .email,
.central-office-block .address p,
.central-office-block .worktime p {
  color: var(--grey);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.central-office-block .phone:hover,
.central-office-block .email:hover {
  color: var(--orange);
}

@media (max-width: 1025px) {
  .central-office-block .block-holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 498px) {
  .central-office-block {
    padding: 40px 0;
  }
  .central-office-block .block-holder {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=block.css.map */
