select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-family: mainfont;
  font-size: 1em;
  color: #6d655e;
}

option {
  font-family: mainfont;
}

.menu {
  position: fixed;
  z-index: 100;
  display: flex;
  width: 100%;
  background: white;
  margin: 0;
  align-items: center;
  font-family: mainfont;
  height: 5em;
}

.menu img {
  width: 100%;
}

.menu a {
  text-decoration: none;
  margin: 2em 0 2em 1em;
}

#logo {
  flex: 2;
  margin-right: 2em;
  margin-left: 2em;
}

#link a:visited,
#link a:link,
#social a:visited,
#social a:link {
  color: #6d655e;
}

#social {
  flex: 4;
  text-align: right;
  margin-right: 2em;
  letter-spacing: 0.1em;
  line-height: 0.9em;
}

#social form {
  display: inline-flex;
  padding-left: 1em;
  border-left: 1px solid black;
}

#social img {
  width: 16px;
  -webkit-filter: opacity(75%);
  filter: opacity(75%);
}

#social img:hover {
  -webkit-filter: invert(65%);
  filter: invert(65%);
}

#lastsocial {
  margin-right: 1em;
}

#link {
  flex: 9;
  letter-spacing: 0.1em;
  line-height: 0.9em;
}

#link a + a {
  border-left: solid #6d655e 1px;
}

#link a {
  padding-left: 1em;
}

#link a:hover {
  color: #ff5200;
}

/* Version Mobile */

@media screen and (max-width: 1080px) {
  .menu {
    display: block;
    border-bottom: solid 1px #6d655e;
  }

  #link {
    display: none;
    flex-direction: column;
    text-align: center;
    font-size: 3em;
  }

  #link a {
    padding: 0;
    margin: 0.3em 0;
  }

  #link a + a {
    border: none;
  }

  #social {
    margin: 0;
    text-align: center;
    display: none;
    -webkit-transition: height 3s; /* Safari */
    -webkit-transition-delay: 1s; /* Safari */
    transition: height 3s;
    transition-delay: 1s;
  }

  #social form {
    padding: 0;
    border: none;
  }

  #social form select {
    font-size: 2.5em;
  }

  #social img {
    width: 40px;
  }

  #logo {
    margin: 3em auto 2.5em auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }

  #logo img {
    width: 30em;
  }

  .menu a + a,
  #social form {
    margin: 5em 0 2em 3em;
  }

  #lastsocial {
    margin-right: 0;
  }
}
