.footer-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5rem;
  background-color: #394244;
  justify-content: center;
  align-items: center;
  font-family: Helvetica, sans-serif;
}

.footer-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  margin-left: 4rem;
}

.footer-container a {
  text-decoration: none;
}

.footer-logo-text {
  color: white;
  font-weight: bold;
  font-size: x-large;
  margin-left: .5rem;
 
}

.footer-logo-image img {
  height: auto;
  max-width: 4.5rem;
  margin-left: 3rem;
}

.footer-quick-link-container {
  color: white;
  display: flex;
  justify-content: space-evenly;
  width: auto;
  margin-right: 10rem;
}

.footer-quick-link-headers {
  font-size: medium;
  font-weight: bold;
  padding: 1rem;
  width: 4rem;
  text-align: center;
}

.footer-help-container {
  margin-top: 1rem;
  border-top: 1px solid white;
  padding: 2px;
}

.footer-help-links {
  font-size: 0.7rem;
  margin-top: 0.5rem;
  width: max-content;
}

.footer-help-container a {
  text-decoration: none;
  color: white;
}

.footer-help-container a:hover {
  color: rgb(197, 194, 194);
}

.footer-blurb-container {
  display: flex;
  /* position: relative; */
  align-items: center;
  z-index: 1;

  /* option 1 */

  /* border-top: 1px solid white; */
  /* margin-top: 2rem; */

  /* option 2 */
  
  /* border-top: 1px solid white;
  border-bottom: 1px solid white; */

  /* option 3 */

  /* border-bottom: 1px solid white; */

  /* option 4 */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-blurb {
  color: white;
  padding: 1rem;
}

@media only screen and (max-width: 766px) {
  .footer-container {
    display: none;
  }
}
