*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,html{
  width: 100%;
  height: 100;
  /* text-align: center; */
}
footer {
  background: #222;
  color: #ddd;
  padding: 30px 20px;
  margin-top: 0px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;  
  margin-left: 7% ;
  margin-right: 5%;
  gap: 20px;
}
@media (max-width:850px) {
  .footer-container {
    margin-left: 0%;
  }
}

.footer-column {
  flex: 1 1 80px;
  /* min-width: 100px; */

}

.footer-column h3 {
  color: #fff;
  margin-top: 0px;
  font-size: 18px;
  border-bottom: 2px solid #444;
  display: inline-block;
  margin-bottom: 10px;
}

.footer-column p{
  color: #bbb;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  display: block;
  margin: 0px;
  
}



.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media(max-width: 768px) {
  .footer-container {
    flex-direction: column;
    /* text-align: center; */
    
  }
  .footer-column h3 {
    border: none;
  }
}