footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5%;
    background-color: #1f1f1f;
}

footer p, address {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
}

footer a {
  color: white;
}

.bi-youtube {
  color: #dd4b39;
  /* margin: 5px 20px; */
}

.bi-youtube:hover {
    opacity: 0.7;
}

.fa {
  padding: 20px;
  font-size: 70px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-google {
  background: #dd4b39;
  color: white;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
}

.fa-youtube {
  background: #bb0000;
  color: white;
}

  
@media (max-width: 1100px) {
    
  footer {
      flex-direction: column;
      align-items: flex-start;
  }

  footer .info {
    margin-top: 30px;
  }
 
}