
.main-bd {
  width: 1000px;
  margin: 0 auto
}

.contact-wrap {
  padding-top: 40px;
  background: #f5f5f5;
  display: flex;
  color: #333;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-wrap .item {
  width: 100%;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin-bottom: 20px;
  height: 140px;
  background: #fff;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.info-bd {
  line-height: 1.8;
  font-size: 13px;
}

.info-bd h2 {
  font-weight: bold;
  font-size: 19px;
}
.info-bd p strong {
  display: inline-block;
  width: 60px;
}

.media-bd {
  dipslay: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.media-bd h3 {
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: bold;
}

.media-bd img {
  width: 80px;
  height: 80px;
}


@media (max-width: 750px) {
  .contact-wrap {
    width: var(--main-witdh);
    margin: 0 auto;
  }
}