header {
  width: 100%;
  height: 200px;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .logo {
  max-width: 380px;
  height: 100%;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .logo img {
  height: 100%;
}

header .logo .name {
  height: 100%;
  margin-left: 25px;
  font-size: 22pt;
  font-weight: bold;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .logo .name .description {
  padding: 5px;
  margin: 10px;
  font-size: 12pt;
  font-weight: normal;
  border-top: 1px solid black;
}

@media (min-width: 1350px) {
  header .navigation {
    height: 100%;
    margin-left: 25px;
    background: white;
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  header .navigation .language {
    height: 100%;
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  header .navigation .language a {
    padding-left: 12.5px;
    padding-right: 12.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .navigation .language a img {
    height: 25%;
    border-radius: 10px;
    border: 3px solid transparent;
  }
  header .navigation .language a:hover img {
    border: 3px solid #8bb340;
  }
  header .navigation a {
    height: 100%;
    font-size: 16pt;
    color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .navigation a.active {
    font-weight: bold;
  }
  header .navigation a div {
    padding-left: 25px;
    padding-right: 25px;
    border-right: 1px solid black;
  }
  header .navigation a:last-child div {
    border-right: none;
  }
  header .navigation-toggle {
    display: none;
  }
}

@media (max-width: 1350px) {
  header .navigation {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: white;
    z-index: 1;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .navigation .language {
    width: 100%;
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .navigation .language a {
    width: auto;
    height: 50px;
    padding: 25px;
  }
  header .navigation .language a img {
    height: 75%;
    border-radius: 10px;
    border: 3px solid transparent;
  }
  header .navigation .language a:hover img {
    border: 3px solid #8bb340;
  }
  header .navigation a {
    width: 100%;
    font-size: 16pt;
    color: black;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .navigation a.active {
    font-weight: bold;
  }
  header .navigation a div {
    width: calc(100% - 50px);
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid black;
  }
  header .navigation-toggle {
    height: 100%;
    margin-left: auto;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .navigation-toggle img {
    height: 25%;
  }
}
/*# sourceMappingURL=header.css.map */