/* ==== footer ==== */
a{
  text-decoration: none;
  color: white;
}

.footer{
  height: 40vh;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 3vh 0;
}
.footer-social-links{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
  
}
.social-media-icon{
  height: 30px;
  margin: 0 5px;
 

}
.bg-white{
  background-color: #fff;
  color: black;
}

@media screen and (max-width:786px){
  .footer{
    height: 22vh;
    max-height: 150px;
    /* background-color: red; */
  }
  .footer-social-links{
    margin-bottom: 1vh;
  }
  .social-media-icon{
    margin: 0;
    height: 20px;
  }
  .footer-note{
    font-size: 0.8rem;
  }
}