.contact {
  text-align: center;
}

.contact h3 {
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5%;
  text-transform: uppercase;
}
.contact h4 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-info {
  display: flex;
  justify-content: center;
}

.contact-item {
  width: 100%;
  max-width: 250px;
  text-align: center;
  margin-bottom: 5%;
}

.contact-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  pointer-events: none;
}

.contact-item p, .contact-item a {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.contact-item a {
  text-decoration: none;
}

@media screen and (max-width: 1280px) {
  
  .contact h3 {
    font-size: 3rem;
    margin-bottom: 10%;
  }
  
  .contact-info {
  	display: flex;
  	align-items: center;
  	flex-direction: column;
  }
  
  .contact-item {
    width: 50%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 0;
  }
}




