.footer{
    background:#0a0a0a;
    color:white;
    padding:60px 20px 20px 20px;
}

.footer-container{
  max-width:72%;
  margin:auto;

  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:40px;
}

.footer h3{
  font-size:22px;
  margin-bottom:10px;
}

.footer h4{
  margin-bottom:10px;
}

.footer p{
  opacity:0.7;
  line-height:1.6;
}

.footer a{
  display:block;
  color:white;
  text-decoration:none;
  opacity:0.7;
  margin-bottom:8px;
  transition:0.3s;
}

.footer a:hover{
  opacity:1;
}

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #222;
  width: 72%;
  
  display:flex;
  justify-content:space-between;
  margin: 0 auto;
  flex-wrap:wrap;

  font-size:14px;
  opacity:0.6;
}