
footer{
  display: flex;
  flex-direction: column-reverse;
	justify-content: space-around;
	align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  padding-top: 50px; 
  background: rgb(243, 243, 243); 
  border-top: 1px solid black;
  margin-top: 30px;
}

footer .footer-section{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
  align-items: flex-start;
  width: 250px;
  font-size: 11pt; 
}

footer .footer-section a{
  margin: 5px 0 5px 15%;
  text-decoration: none;
}

footer .footer-section a:hover{
  color: gray;
  text-decoration: underline;
}

footer .logo-container{
  width: 100%;
	justify-content: center;
	align-items: center;
}

footer .logo-container a{
  margin-left: 0;
}

footer .website-logo {
	width: 150px;
	height: auto;
}

.social-media-icons{
	width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.social-media-icons a{
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  margin: 10px 10px !important;
}

#footer-text{
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background: rgb(243, 243, 243); 
  font-size: 14px;
}

#footer-text a{
  color: black;
  text-decoration: none;
}

#linkedin-footer-icon{
  background-image: url(../icons/rounded_black_linkedin.png);
}

#facebook-footer-icon{
  background-image: url(../icons/rounded_black_facebook.png);
}

#instagram-footer-icon{
  background-image: url(../icons/rounded_black_instagram.png);
}

#twitter-footer-icon{
  background-image: url(../icons/rounded_black_twitter.png);
}

.card-logo-field{
  margin: 10px 0; 
}

footer .card-logo-field img{
  width: 60px;
}

@media only screen and (min-width: 600px) {
  footer{
    flex-direction: row;
    flex-wrap: wrap;
    background: none; 
  }


  #footer-text{
    background: none; 
  }
  
  footer .logo-container{
    width: 250px;
  }
  
  footer .logo-container a{
    margin-left: 0 !important;
  }


  .social-media-icons{
    width: 70%;
  }

  footer .footer-section a{
    margin: 5px 0 5px 15%;
  }


}