#menu_bar {
    height: 50px;
    width: 100%;
    top: 0%;
    background-color:rgba(255, 255, 255, 0.75);
    position: fixed;
    z-index: 1;
    box-shadow: 0px 2px 10px black;
}

#logo_container {
    position: relative;
    left: 8%;
    display: flex;
}

#fineline_logo {
    height: 40px;
    border: solid, 5px, white;
    border-radius: 7px;
}

/* Footer */
#footer_section {
    padding-top: 10px;
    min-height: 100px;
    width: 100%;
    bottom: 0%;
    position: relative;
    background-color: white;
    font-family: sans-serif;
    margin-top: 10px;
}

#flex {
    position: absolute;
    display: flex;
    width: 100%;
}

.footer_zone {
    width: 33.33%;
    display:block;
}

.footer_text{
    margin: 0;
    text-align: center;
}

#privacy_info_link {
    display: block;
}

@media (max-width: 1200px) {
  #flex {
    flex-direction: column;
    align-items: center;
  }
  #footer_section {
    height: 260px;
  }
  .footer_zone {
    width: fit-content;
  }
}
