@-webkit-keyframes openMenu {
  0% {
    visibility: visible;
    z-index: 4;
    opacity: 0;
  }
  100% {
    visibility: visible;
    z-index: 4;
    opacity: 1;
  }
}

@keyframes openMenu {
  0% {
    visibility: visible;
    z-index: 4;
    opacity: 0;
  }
  100% {
    visibility: visible;
    z-index: 4;
    opacity: 1;
  }
}

@-webkit-keyframes currentLangAnimate {
  0% {
    z-index: 3;
    font-size: 1.11vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    font-size: 1.32vw;
  }
  100% {
    z-index: 1;
    font-size: 1.11vw;
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
}

@keyframes currentLangAnimate {
  0% {
    z-index: 3;
    font-size: 1.11vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    font-size: 1.32vw;
  }
  100% {
    z-index: 1;
    font-size: 1.11vw;
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
}

@-webkit-keyframes inactiveLangAnimate {
  0% {
    z-index: 2;
    font-size: 1.11vw;
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
  50% {
    font-size: 0.91vw;
  }
  100% {
    z-index: 1;
    font-size: 1.11vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes inactiveLangAnimate {
  0% {
    z-index: 2;
    font-size: 1.11vw;
    -webkit-transform: translate(-200%, 0);
            transform: translate(-200%, 0);
  }
  50% {
    font-size: 0.91vw;
  }
  100% {
    z-index: 1;
    font-size: 1.11vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes currentLangAnimateMobile {
  0% {
    z-index: 3;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    z-index: 1;
    -webkit-transform: translate(-170%, 0);
            transform: translate(-170%, 0);
  }
}

@keyframes currentLangAnimateMobile {
  0% {
    z-index: 3;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    z-index: 1;
    -webkit-transform: translate(-170%, 0);
            transform: translate(-170%, 0);
  }
}

@-webkit-keyframes inactiveLangAnimateMobile {
  0% {
    z-index: 2;
    -webkit-transform: translate(-170%, 0);
            transform: translate(-170%, 0);
  }
  100% {
    z-index: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes inactiveLangAnimateMobile {
  0% {
    z-index: 2;
    -webkit-transform: translate(-170%, 0);
            transform: translate(-170%, 0);
  }
  100% {
    z-index: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0 1.1%;
  width: 100%;
  max-width: 100%;
  font-family: RobotoMedium;
  font-size: 1.11vw;
  color: #242424;
  background: rgba(249, 249, 249, 0.05);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  z-index: 3;
}

.header__logo-mobile {
  display: none;
}

.header__body, .header__container, .header__nav, .header__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__container {
  width: 65%;
}

.header__logo {
  padding: 2.1vw 0 1.53vw;
}

.header__nav {
  padding-top: 2.7vw;
  width: 100%;
}

.header__nav ul {
  width: 29.2vw;
}

.header__link a {
  display: block;
  padding-bottom: .8vw;
}

.header__link a:hover, .header__link--active {
  border-bottom: 2px solid #242424;
}

.header__donate {
  padding: 1.7vw 0 0 5vw;
}

.header__donate--menu {
  display: none;
}

.header__donate-container {
  width: 10.76vw;
}

.header__donate-container a {
  padding: .9vw 0;
  cursor: pointer;
  display: block;
  background-color: #F9DF58;
  width: 100%;
  height: 100%;
  border-radius: 46px;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
  text-align: center;
}

.header__donate-container a:hover {
  background-color: #FFB801;
}

.switcher {
  cursor: pointer;
}

.switcher, .switcher__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.switcher__icon {
  margin-right: 3vw;
  width: 1.25vw;
  -webkit-transform: translate(0, -10%);
          transform: translate(0, -10%);
}

.switcher__icon svg {
  width: 100%;
}

.switcher__items {
  position: relative;
}

.switcher__items > span {
  position: absolute;
  top: 0%;
  left: 0;
  -webkit-transition: color .3s ease-in;
  transition: color .3s ease-in;
}

.switcher__items .switcher__lang {
  -webkit-animation: inactiveLangAnimate .3s;
          animation: inactiveLangAnimate .3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.switcher__items .switcher__lang--current {
  -webkit-animation: currentLangAnimate .3s;
          animation: currentLangAnimate .3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.switcher__options > span {
  margin-right: .6vw;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

.switcher__lang:not(.switcher__lang--current) {
  color: #BBBBBB;
}

.switcher__controller {
  display: none;
}

@media screen and (max-width: 630px) {
  .open-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  .open .header__menu-button::before, .open .header__menu-button::after {
    width: 100%;
    top: 50%;
    border-radius: 6.41vw;
  }
  .open .header__menu-button::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    left: 1%;
  }
  .open .header__menu-button::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .open .header__controller {
    right: 12.2vw;
    top: 62%;
    max-width: 5vw;
    min-height: 5vw;
  }
  .open .header__nav {
    -webkit-animation: openMenu .5s;
            animation: openMenu .5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .header {
    position: -webkit-sticky;
    position: sticky;
    padding: 6vw 3.07vw 0;
    font-size: 3.58vw;
  }
  .header > * {
    padding-top: 0;
  }
  .header.open-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
  .header__logo {
    padding: 1vw 0 5.64vw 0;
  }
  .header__container {
    width: 68%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .header__controller {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 45%;
    right: 3%;
    width: 7.69vw;
    height: 3.07vw;
    max-width: 7.69vw;
    max-height: 3.07vw;
    z-index: 5;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  .header__menu-button {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header__menu-button::before, .header__menu-button::after {
    content: '';
    position: absolute;
    width: 100% !important;
    height: 2px;
    background-color: #242424;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header__menu-button::before {
    top: 0;
  }
  .header__menu-button::after {
    bottom: 0;
  }
  .header__nav {
    visibility: hidden;
    position: absolute;
    top: 30%;
    right: 3%;
    padding: 7.69vw 9% 7.69vw 0;
    width: 75%;
    background-color: white;
    border-radius: 3.59vw;
    z-index: -1;
  }
  .header__nav, .header__nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__nav > *:not(div:last-child),
  .header__nav ul > *:not(li:first-child) {
    margin-bottom: 13.3vw;
  }
  .header__nav > * {
    margin: 0 auto;
  }
  .header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .header__nav ul > li:nth-child(1) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .header__nav ul > li:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header__nav ul > li:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header__nav ul > li:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__link {
    width: 100%;
    text-align: center;
  }
  .header__link a {
    display: block;
    margin: 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .header__donate {
    padding: 0;
    width: 100%;
  }
  .header__donate-container {
    width: 37.18vw;
  }
  .header__donate-container a {
    display: block;
    padding: 2.56vw;
    width: 100%;
  }
  .header__donate--menu {
    display: block;
    width: 100%;
    padding: 0;
  }
  .header__donate--menu > .header__donate-container {
    margin: 0 auto;
  }
  .header__language {
    margin-bottom: 11vw !important;
  }
  .switcher {
    padding-right: 21%;
  }
  .switcher__icon {
    width: 7.61vw;
    margin-right: 8vw;
  }
  .switcher__options > span {
    margin-right: 1vw;
  }
  .switcher__lang {
    font-size: 3.58vw;
  }
  .switcher .switcher__lang--inactive {
    -webkit-animation: inactiveLangAnimateMobile .3s;
            animation: inactiveLangAnimateMobile .3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
  .switcher .switcher__lang--current {
    -webkit-animation: currentLangAnimateMobile .3s;
            animation: currentLangAnimateMobile .3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
