.footer{
  background-color: #F8F9FA;
  padding: 1.25rem 1.25rem 1.875rem;
}
.footer p{
  margin-bottom: 1rem;
}
.footer p span{
  font-weight: 600;
}
.footer_logo{
  width: 7.5rem;
}
.footer_links {
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
.footer_group{
  display: flex;
  flex-direction: column;
  width: 33%;
}
.footer_links a{
  color: #2E2E2E;
  margin-bottom: 1.25rem;
  font-weight: 500;
  transition: all 0.5s;
}
.footer_links a:visited{
  color: #2E2E2E;
  transition: all 0.5s;
}
.footer_links a:not(.navbar_cta):hover{
  color: rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}
.footer .navbar_cta{
  opacity: 1;
}
.footer .navbar_cta .app_store{
  border: 1px solid #000;
  width: 9rem;
}
@media (min-width:768px) {
  .footer{
    padding: 3rem 1.25rem 3.75rem;
  }
  .footer_container{
    display: flex;
    justify-content: space-between;
  }
  .footer_container > div{
    width: 50%;
  }
  .footer_links {
    margin-top: 0;
  }
}