.footer {
  padding: 60px 0;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.footer .footer-grid .footer-grid__brand {
  display: flex;
  flex-direction: column;
}

.footer .footer-grid .footer-grid__brand .brand-logo,
.footer .footer-grid .footer-grid__brand .brand-logo a {
  line-height: 0;
}

.footer .footer-grid .footer-grid__brand .brand-logo a img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.footer .footer-grid .footer-grid__brand .brand-socials {
  display: flex;
  align-items: center;
  column-gap: 5px;
  padding: 30px 0;
  margin: 0 -10px;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link,
.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a,
.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a span {
  line-height: 0;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a {
  padding: 10px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a svg { 
  width: 32px;
  height: auto;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a:hover svg,
.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a:focus svg {
  transform: translateY(-4px);
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link.brand-socials__link--TikTok a svg {
  width: 30px;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link.brand-socials__link--Facebook a svg {
  width: 36px;
}

.footer .footer-grid .footer-grid__brand .brand-socials .brand-socials__link a svg path {
  fill: var(--white);
}

.footer .footer-grid .footer-grid__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer .footer-grid .footer-grid__info .info-hours {
  max-width: 500px;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list {
  display: flex;
  flex-direction: column;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list .list-hour {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list .list-hour + .list-hour {
  margin-top: 15px;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list .list-hour p {
  margin: 0;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list .list-hour .list-hour__day {
  font-weight: 300;
}

.footer .footer-grid .footer-grid__info .info-hours .info-hours__list .list-hour .list-hour__time {
  font-weight: 700;
}

.footer .footer-grid .footer-grid__info .info-company {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .footer-grid .footer-grid__info .info-company .info-company__item {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 15px;
}

.footer .footer-grid .footer-grid__info .info-company .info-company__item svg {
  width: 100%;
  height: auto;
  margin-top: 3px;
}

.footer .footer-grid .footer-grid__info .info-company .info-company__item svg path {
  fill: var(--white);
}

.footer .footer-grid .footer-grid__info .info-company .info-company__item a,
.footer .footer-grid .footer-grid__info .info-company .info-company__item p {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.footer .footer-grid .footer-grid__info .info-company .info-company__item a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer hr {
  margin: 30px 0;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer .footer-copyright p {
  margin: 0;
}

.footer .footer-copyright .footer-copyright__links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .footer-copyright .footer-copyright__links a {
  color: var(--white);
}


@media (min-width: 768px) {
  .footer .footer-grid .footer-grid__info {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
  .footer .footer-grid .footer-grid__info .info-hours {
    min-width: 340px;
    max-width: 340px;
  }
  .footer hr {
    margin: 40px 0;
  }
}

@media (min-width: 880px) {
  .footer .footer-grid {
    grid-template-columns: auto 1fr;
    gap: 80px;
  }
  .footer .footer-grid .footer-grid__info {
    justify-content: end;
  }
  .footer .footer-grid .footer-grid__info .info-hours {
    min-width: 240px;
    max-width: 240px;
  }
} 



