.contactInfo{
  margin-bottom: 40px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
.contactInfo .contactInfoItem{
  flex: 0 0 33.33%;
  text-align: center;
  padding: 0 20px;
}
.contactInfo .contactInfoItem i{
  font-size: 28px;
  background-color: var(--button);
  display: flex;
  justify-content: center;
  line-height: 60px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: #ffffff;
  margin: 0 auto 13px;
}
.contactInfo .contactInfoItem .contactInfoTitle{
  font-size: 16px;
  font-weight: 500;
  color: var(--button);
  line-height: 25px;
  margin-bottom: 6px;
}
.contactInfo .contactInfoItem .contactInfoText{
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  line-height: 20px;
}
.contactInfo .contactInfoItem .contactInfoText a{
  color: #444444;
}
.contactInfo .contactInfoItem .contactInfoText a:hover{
  color: var(--button);
}
.contactTitle{
  font-size: 24px;
  font-weight: 600;
  color: #444444;
  line-height: 35px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contactInfo{
    flex-wrap: wrap;
    padding: 40px 0 0;
  }
  .contactInfo .contactInfoItem{
    flex: 0 0 calc(100vw - 30px);
    width: calc(100vw - 30px);
    margin-bottom: 40px;
    padding: 0;
    border: none;
  }
}