/***DESKTOP***/

@media (max-width: 600px) {

  :root {
    
  }
  body {
    font-size: var(--smallFont);
  }

  /***HEADER AND MENU
  *****************************************************/
  header {
    flex-direction: column;
    width: 70%;
  }
  #info_button {
    display: none;
  }
  a.logo_malba {
    height: 11px;
    position: fixed;
    right: var(--colGutter);
    display: flex;
    margin-top: 3px;
  }
  nav.menu ul {
    display: flex;
    justify-content: end;
    gap: var(--colGutter);
  }

  /***CONTENT
  *****************************************************/
  .content section.section_header #title.hide {
    translate: 0 -25vh; 
    opacity: 0;
  }

  /***FOOTER
  *****************************************************/
  footer {
    /*
    display: grid;
    grid-template-columns: var(--threeColsGrid);
    grid-gap: var(--gridGap);
    align-items: start;
    */
  }

  footer .quote {
    margin-bottom: var(--rowGutterMedium);
  }

  iframe {
    height: 80px;
    margin-top: var(--rowGutterMedium);
  }

}