/*Header*/
header {
  width: 100%;
  z-index: 99;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: var(--white);
}
.header-wrapper {
  padding: 20px 50px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrapper {
  width: 240px;
}

/*Navigation*/
.links-wrapper {
  width: 100%;
  display: none;
  transition: all ease-in-out 0.3s;
}

.hamburger-wrapper {
  display: block;
  width: 45px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.wha-wrapper {
  width: 35px;
  height: 35px;
  margin-right: 25px;
}
.wha-wrapper svg {
  width: 100%;
  height: 100%;
}
.wha-wrapper svg > * {
  transition: all ease 0.2s;
}

@media (min-width: 768px) {
  .wha-wrapper svg:hover > * {
    fill: var(--orange) !important;
  }
  .hamburger-wrapper:hover > .line {
    background-color: var(--orange);
  }
}
.line {
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  -ms-transition: 0.2s all ease;
  -o-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.menu-on .line-m {
  display: none;
}
.menu-on .line-t {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--orange);
}
.menu-on .line-b {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -2px;
  background-color: var(--orange);
}
.menu-on.hamburger-wrapper {
  justify-content: center;
}
.links-show {
  width: 100%;
  height: calc(var(--vh) * 100 - 160px);
  position: absolute;
  left: 0px;
  background-color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  animation: mymove 0.3s;
}

@keyframes mymove {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 768px) {
  .links-show {
    height: calc(var(--vh) * 100 - 200px);
  }
}

@media (max-width: 550px) {
  .logo-wrapper {
    width: 190px;
  }
  .links-show {
    height: calc(var(--vh) * 100 - 192px);
  }
  .wha-wrapper {
    width: 25px;
    height: 25px;
    margin-right: 15px;
  }
  .hamburger-wrapper {
    width: 30px;
    height: 20px;
  }
}

.links-show nav {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 70%;
  padding: 0px 10%;
}
.links-show nav a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 10vh;
}
.language-row,
.privacy-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15%;
}
.language-row p {
  margin: 0px 8px;
}

@media (min-width: 768px) {
  .links-show nav {
    max-width: 80%;
  }
}

@media (max-width: 1250px) {
  .links-show nav a {
    font-size: 7vh;
  }
  .links-show nav {
    padding: 0px 8%;
  }
}

@media (max-width: 768px) {
  .links-show nav a {
    font-size: 5.5vh;
  }
  .links-show nav {
    padding: 0px;
  }
}

@media (max-width: 550px) {
  .links-show nav a {
    font-size: 3vh;
  }
}

/*Footer*/
footer {
  width: 100%;
  background-color: var(--white);
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 99;
  bottom: 0px;
  left: 0px;
}
footer div:nth-child(1) {
  text-align: left;
  width: 25%;
}
footer div:nth-child(2) {
  text-align: center;
  width: 50%;
}
footer div:nth-child(3) {
  text-align: right;
  width: 25%;
}

@media (max-width: 768px) {
  .header-wrapper,
  footer {
    padding-left: 25px;
    padding-right: 25px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer div:nth-child(1) {
    order: 2;
    width: 50%;
  }
  footer div:nth-child(2) {
    order: 1;
    width: 100%;
    padding-bottom: 15px;
  }
  footer div:nth-child(3) {
    order: 3;
    width: 50%;
  }
}
