footer {
  /* min-height: 35vh;
  min-height: 35dvh; */
  padding: 150px 15% 15px 15%;
  background-color: #636363;
  color: white;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer-content img{
height: 120px;
width: auto;
}
.footer-bottom {
  text-align: center;
}
.footer-bottom p{
    margin-top: 100px;
    margin-bottom: 0;
}

footer a {
  color: white;
  transition-duration: 0.5s;
}
footer a:hover {
  color: #76ce58;
  text-decoration: none;
  transition-duration: 0.5s;
}

footer h5 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 3px;
  color: white;
}
footer h5.no-link {
  font-weight: 500;
}

footer h5.highlight{
  font-weight: 700;
}
@media (max-width: 768px) {
  footer {
    padding: 150px 10% 15px 10%;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 100px 15% 15px 15%;
  }
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }
  .footer-bottom p{
    margin-top: 60px;
}
}