.footer_container {
  background-color: #f1f1f1;
}

.footer_inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 30px 20px;
}

.footer_columns {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding-bottom: 80px;
}

.footer_logo_image {
  max-width: 140px;
  width: 100%;
  height: unset;
}

.footer_address_title,
.footer_contact_title,
.footer_hours_title {
  margin: 0 0 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  color: #5F8ECA;
}

.footer_address_line,
.footer_hours_day_name,
.footer_hours_day_time {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

.footer_address_line {
  margin-bottom: 5px;
}

.footer_hours_workweek_group,
.footer_hours_day {
  margin-bottom: 5px;
}

.footer_contact_phone_link,
.footer_contact_email_link {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: unset;
  margin-bottom: 5px;
  color: black;
  display: block;
}
.footer_contact_phone_link:hover,
.footer_contact_email_link:hover {
  text-decoration: underline;
}

.footer_hours_wrapper,
.footer_hours_title,
.footer_hours_content {
  padding-right: 30px;
}

.footer-credits {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
}
.footer-credits p {
  margin: 0;
}

.footer-credits-c1,
.footer-credits-c2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
}

.footer-credits a {
  text-decoration: none;
  color: black;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.footer-credits a:hover {
  border-bottom-color: #5F8ECA;
  color: #5F8ECA;
}

@media only screen and (max-width: 1100px) and (min-width: 700px) {
  .footer_columns {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer_column {
    flex: 45%;
  }
}
@media only screen and (max-width: 699px) and (min-width: 1px) {
  .footer_columns {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer_column {
    flex: 45%;
  }
}
@media only screen and (max-width: 600px) {
  .footer_columns {
    flex-wrap: wrap;
    gap: 30px;
    flex-direction: column;
  }
  .footer_column {
    flex: 45%;
  }
  .footer-credits {
    flex-direction: column;
    gap: 7px;
  }
  .footer_inner {
    padding-bottom: 40px;
  }
}
/* ===================================
   Scroll to Top Button Styling
   =================================== */
.scroll-to-top {
  /* Positie */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  /* Afmetingen */
  width: 40px;
  height: 40px;
  /* Styling */
  background: #5F8ECA;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  /* Schaduw voor diepte */
    box-shadow: 0 4px 15px rgb(73 88 153 / 50%);
  /* Icon kleur */
  color: #ffffff;
  /* Verberg standaard */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  /* Animatie transities */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Flexbox voor centrering icon */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Zichtbare staat */
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Active (klik) effect */
.scroll-to-top:active {
  transform: translateY(-2px) scale(0.95);
}

/* SVG icon styling */
.scroll-to-top svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ===================================
   Responsive Aanpassingen
   =================================== */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=footer.css.map */