
.main-containerfooter {
  padding: 0 !important;
  display: contents;
}

/* ----------------------------------
   Footer
---------------------------------- */
.site-footer-block {
  --footer-bg: #0a0a0a;
  --footer-text: #ffffff;
  --footer-text-soft: rgba(255, 255, 255, 0.9);
  --footer-text-muted: rgba(242, 240, 239, 0.5);
  --footer-border: rgba(255, 255, 255, 0.16);
  --footer-hover: #00ffd4;
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 6.25rem 0;
  font-family: "Roboto", sans-serif;
}

.site-footer-wrap {
  max-width: 75rem;
}

.site-footer-card {
  padding: 1.875rem;
}

.site-footer-logo {
  width: 9.1875rem;
  height: 9.1875rem;
  object-fit: cover;
  display: block;
  margin-bottom: 1.25rem;
}

.site-footer-brand-title,
.site-footer-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04rem;
  color: #fff;
}

.site-footer-brand-title {
  margin-bottom: 1.0625rem;
}

.site-footer-text {
  max-width: 25.375rem;
  margin: 0 0 1.0625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--footer-text-soft);
}

.site-footer-divider {
  width: 100%;
  height: 0.0625rem;
  background: var(--footer-border);
  margin: 0 0 1.0625rem;
}

.site-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.site-footer-social {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-footer-social:hover,
.site-footer-social:focus {
  transform: translateY(-0.125rem);
  opacity: 0.85;
}

.site-footer-social img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  display: block;
}

.site-footer-column {
  padding: 0.625rem;
}

.site-footer-title-wrap {
  margin-bottom: 0.625rem;
}

.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer-link {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  transition: color 0.25s ease;
}

.site-footer-link:hover,
.site-footer-link:focus {
  color: var(--footer-hover);
}

.site-footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.site-footer-hours-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #fff;
}

.site-footer-hours-day {
  width: 4.6875rem;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.04rem;
}

.site-footer-hours-time {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
}

.site-footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.site-footer-contact-item:hover,
.site-footer-contact-item:focus {
  color: var(--footer-hover);
}

.site-footer-contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer-contact-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
}

.site-footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #eeeeee;
}

.site-footer-copy span {
  color: var(--footer-text-muted);
  margin-right: 0.3125rem;
  font-size: 1rem;
}

@media (max-width: 61.99875rem) {
  .site-footer-block {
    padding: 4.5rem 0;
  }

  .site-footer-card {
    padding: 1.25rem 1rem;
  }

  .site-footer-text {
    max-width: none;
  }
}

@media (max-width: 35.99875rem) {
  .site-footer-block {
    padding: 3.5rem 0;
  }

  .site-footer-logo {
    width: 7.5rem;
    height: 7.5rem;
  }

  .site-footer-hours-row {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .site-footer-hours-day {
    width: auto;
    min-width: 5.5rem;
  }
}

