@charset "utf-8";
@media screen and (min-width: 800px) {
  header {
    height: 120px;
  }
  header .title {
    width: 40%;
    transition: width 1s;
  }
  .openMainNavBtn {
    display: none;
  }
  header .mainNav {
    justify-content: end;
    position: relative;
    left: auto;
    z-index: 11;
    width: 60%;
    max-width: 680px;
    height: 100%;
    margin-left: auto;
    padding: 20px 0 0;
    background-color: transparent;
  }
  #firstPageHeader .title {
    width: 100%;
  }
  #firstPageHeader .mainNav {
    width: 0;
    opacity: 0;
    visibility: hidden;
  }
  header #mainNavHidden {
    top: 0;
    opacity: 1;
    visibility: visible;
    transition: width 1s, opacity 1s 2s;
  }
  .mainNav .maxWidthSubNav {
    display: flex;
    height: 40%;
  }
  .mainNav .maxWidthSubNav li {
    font-size: 14px;
  }
  .mainNav .maxWidthSubNav img {
    width: 20px;
    margin: 0 5px;
  }
  .mainNav ul {
    max-width: 680px;
    height: 60%;
    justify-content: space-around;
    flex-wrap: nowrap;
  }
  .mainNav li {
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0 2px;
    border-bottom: none;
    font-size: 16px;
    transition: margin 1s;
  }
  .mainNav li:hover {
    margin: 0 10px;
  }
  .mainNav #closeMainNav {
    display: none;
  }
  footer {
    padding: 10vh 150px;
  }


}