footer ul {
  list-style: none;
}

.img-footer img {
  max-width: 8vw;
}

footer .footer-section .footer-container {
  font-size: 1vw;
  line-height: 1.4;
  padding: 6vw;
  display: grid;
  gap: 1vw;
  justify-items: center;
  align-items: flex-start;
  justify-content: center;
  grid-template-columns: 20% 60% 20%;
}

footer .footer-section .footer-container .footer-contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1vw;
}

footer .footer-section .footer-container .footer-contact .contact-info h4 {
  color: var();
  margin-bottom: 10px;
}

footer .footer-section .footer-container .footer-contact .contact-info {
  text-align: center;
}

footer .footer-section .footer-container .footer-contact a:hover {
  color: var(--blue);
}

footer .footer-section .footer-container .footer-contact .footer-social-icons i {
  color: var(--blue);
  font-size: 23px;
  margin-right: 10px;
}

footer .footer-section .footer-container .footer-contact .footer-social-icons i:hover{
  color: var(--red);
}

footer .footer-section .footer-container .footer-contact .footer-privacy {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: center;
}


footer .footer-section .footer-container .footer-contact .footer-privacy a {
  color: var(--gray);
}

footer .footer-section .footer-container .footer-contact .footer-privacy a:hover {
  color: var(--blue);
}

.footer-section .footer-container .bussines-hours {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
}

.footer-section .footer-container .bussines-hours .location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 3vw;
}

.footer-section .footer-container .bussines-hours .location .location-box {
  display: flex;
  flex-direction: column;
  gap: .3vw;
  min-height: 200px;
  max-height: 200px;
}

.footer-section .footer-container .bussines-hours .location i {
  margin-right: 10px;
}

.footer-section .footer-container .bussines-hours .location a {
  color: var(--gray);
  display: inline-block;
}

.footer-section .footer-container .bussines-hours .location a:hover {
  color: var(--blue);
}

.footer-section .footer-container .bussines-hours h4 {
  color: var(--blue);
  text-align: left;
}



.footer-section .footer-container .footer-services h4 {
  color: var(--blue);
}

.footer-services div {
  display: flex;
  flex-direction: column;
}

.footer-services div a,
.bussines-box div p {
  color: var(--gray);
}

.footer-services div a:hover{
  color: var(--blue);
}

@media (max-width: 996px) {
  .img-footer img {
    max-width: 30vw;
  }

  footer .footer-section .footer-container .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }

  footer .footer-section .footer-container .footer-contact .footer-privacy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }

  footer .footer-section .footer-container {
    grid-template-columns: 100%;
    justify-items: center;
    font-size: 4vw;
    padding: 12vw 6vw;
    gap: 8vw;
  }


  .footer-section .footer-container .bussines-hours {
    display: grid;
    grid-template-columns: 100%;
    gap: 12vw;
    text-align: center;
  }

  .footer-section .footer-container .bussines-hours .location a {
    text-align: center;
  }

  .footer-section .footer-container .bussines-hours .location .location-box {
    gap: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: none;
  }

  .footer-section .footer-container .bussines-hours .location .businessHours {
    text-align: center;
  }

  .footer-section .footer-container .footer-services h4 {
    text-align: center;
  }

  .footer-services {
    text-align: center;
  }

  .footer-section .footer-container .bussines-hours .location {
    gap: 12vw;
  }

}