/*
 *  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 * 
 *      Media queries breakpoints
 *
 *        Defines the breakpoints for the navbar, page, and footer
 * 
 *        SASS variables are required given CSS Variables do not work in Media queries
 * 
 *  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 */
footer {
  background-color: var(--footer-default-color-bg);
  color: var(--base-black);
  border-top: var(--border-style-2);
  padding-top: 0.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
footer p {
  color: var(--base-black);
  background: transparent;
  font-family: var(--font-family-sans-serif);
  font-size: 15px;
  font-weight: bold;
  line-height: 120%;
  text-indent: 0;
  margin: 0;
}
footer p a:link,
footer p a:visited {
  color: var(--base-black);
}

#site_Footer {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-template-areas: "foot-Address" "foot-Facebook" "foot-Email";
  margin-bottom: 0.25rem;
}

#footer_Address {
  grid-area: foot-Address;
  grid-column: col 5/span 2;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0.5rem;
}
#footer_Address p {
  text-align: left;
}

#footer_Facebook {
  grid-area: foot-Facebook;
  grid-column: col 7/span 2;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0.5rem;
}
#footer_Facebook p {
  text-align: center;
}

#footer_Email {
  grid-area: foot-Email;
  grid-column: 9/span 2;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
}
#footer_Email p {
  text-align: right;
}

@media (min-width: 992px) {
  #footer_Address {
    grid-column: col 3/span 3;
  }
  #footer_Facebook {
    grid-column: col 6/span 2;
  }
  #footer_Email {
    grid-column: col 8/span 3;
  }
}
@media (768px <= width <= 991.98px) {
  #footer_Address {
    grid-column: col 2/span 4;
  }
  #footer_Facebook {
    grid-column: col 6/span 2;
  }
  #footer_Email {
    grid-column: col 8/span 4;
  }
}
@media (max-width: 767.98px) {
  footer {
    display: none;
  }
}