main::before,
main::after {
  content: none;
}

.contacts__title {
  font-size: 24px;
  line-height: 26px;
  color: var(--green-dark);
  margin-bottom: 40px;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contacts__item {
  position: relative;
  padding-left: 40px;
}

.contacts__item::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url("/static/svg/time.svg") no-repeat center;
  width: 30px;
  height: 30px;
}

.contacts__item:nth-child(2):before {
  top: 2px;
  background: url("/static/svg/phone.svg") no-repeat center;
}

.contacts__item:nth-child(3):before {
  background: url("/static/svg/point.svg") no-repeat center;
}

.contacts__item h2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}

.contacts__item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: var(--secondary-color);
}

@media screen and (max-width: 1023px) {
  .contacts__item:nth-child(3) {
    max-width: 230px;
  }
}

@media screen and (max-width: 860px) {

  .contacts__item h2,
  .contacts__item p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contacts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contacts__item:nth-child(3) {
    max-width: 100%;
  }
}