/* ==== SCSS Utils ==== */
/* ========== Layout & Grid ========== */
/* ========== Fonts ========== */
/* ========== Elderplan Color Palette ========== */
/* Based on Figma designs - 2026-05-18 */
/* ========== Semantic Color Aliases ========== */
/* ========== Spacing ========== */
/* ========== Borders ========== */
/* ========== Z-Index ========== */
/* ========== SVGS ========== */
/* ==== SCSS Utils ==== */
/* ========== Font Weights ========== */
/* ========== Font Sizes ========== */
/* ==== SCSS Utils ==== */
/* ========== Breakpoints for Mixins ========== */
/* ======= Media Queries ======= */
/* Mobile */
/* Tablet */
/* Desktop */
/* Desktop XL */
/* Desktop XXL */
/* Custom media queries */
/* ==== SCSS Utils ==== */
/* ==== SCSS Utils ==== */
/* ======= Media ======= */
/* ======= SVG ======= */
/* ======= Typography ======= */
/* ======= Storybook Goodies ======= */
/* ======= Form Spacing ======= */
/* ======= Input Styles ======= */
/* ==== SCSS Utils ==== */
/* ======= Buttons ======= */
/* Base button styles */
/* Primary button styles */
/* Secondary button styles */
/* Blue button styles */
/* Green button styles */
/* Link button styles */
/* Button Icon styles */
/* Button Icon styles */
/* ==== SCSS Utils ==== */
/* ======= Layout ======= */
/* ======= FLEXBOX MIXINS ======= */
/* ======= GRID MIXINS ======= */
/* ==== SCSS Utils ==== */
/* MJ 7.17.24: Only call utilites like variable definitions and mixins.
* ! Do not add any class or ID selects, or it will render output into EVERY .css file.
* Add styles to global.scss instead to add styles globally.
*/
.contact-info {
  display: grid;
  gap: 0.5rem;
  margin-top: 3rem;
}

.contact-info__phone {
  display: block;
}

.contact-info__phone-number {
  display: inline;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.contact-info__phone-number:hover, .contact-info__phone-number:focus {
  text-decoration: underline;
}

.contact-info__contact-link {
  font-weight: 700;
}
.contact-info__contact-link a {
  color: inherit;
  text-decoration: underline;
}
.contact-info__contact-link a:hover, .contact-info__contact-link a:focus {
  text-decoration: none;
}

.contact-info__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info__social-label {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.contact-info__social-list {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info__social-item {
  margin: 0;
  padding: 0;
}

.contact-info__social-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-info__social-icon--instagram {
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,...");
}
.contact-info__social-icon--facebook {
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,...");
}
.contact-info__social-icon--linkedin {
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,...");
}
.contact-info__social-icon--youtube {
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,...");
}

.copyright__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer {
  background-color: #007DC3;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 783px) {
  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.footer * {
  color: #ffffff;
}

.footer-section {
  position: relative;
  display: flex;
  row-gap: 2.25rem;
  column-gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 783px) {
  .footer-section {
    flex-direction: row;
  }
}

.footer-section__top {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}
.footer-section__top .site-logo {
  width: 343px;
  height: 80px;
  aspect-ratio: unset;
}
@media (min-width: 783px) {
  .footer-section__top .site-logo {
    width: 388px;
    height: 85px;
  }
}

.footer-menu__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.footer-menu__list .menu-item {
  margin: 0 0 0.1em;
  padding: 0;
}
.footer-menu__list a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.025em;
  text-underline-offset: 0.15em;
  line-height: 1.25;
}
.footer-menu__list a:hover, .footer-menu__list a:focus {
  text-decoration: none;
}

@media (min-width: 783px) {
  .footer-col--first {
    flex: 2;
  }
  .footer-col--second {
    flex: 1;
  }
  .footer-col--third {
    flex: 1;
  }
}
/*# sourceMappingURL=footer.css.map */