header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  padding: 25px 154px 25px 140px;
  box-shadow: 0px 3px 10px #00000015;
}

.desktop-logo {
  width: 195px;
  height: 49px;
}

.logo-mobile {
  display: none;
}
  
.logo-container {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-container > span {
  color: #FFFFFF;
  padding-left: 10px;
}
  
.header-nav-container {
  display: flex;
}

.header-nav-mobile-container {
  display: none;
}

.menu-close-button {
  display: none;
}
  
.header-nav-list {
  display: flex;
  align-items: center;
  width: 100%;
  color: #FFFFFF;
}
  
.header-nav-element {
  flex: 1;
  list-style: none;
  font-size: 18px;
}

.header-nav-element > a {
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 33px;
  color: #FFFFFF;
}

.header-nav-element > a {
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 35px;
}

.opacity-header:hover {
  font-weight: 600;
  border-bottom: 5px solid #FFFFFF;
}

.header-nav-element > .white-header {
  color: #2D2D2D;
}

.white-header:hover {
  font-weight: bold;
  color: #2B70A6;
  border-bottom: 5px solid #2B70A6;
}

.header-nav-element:last-child {
  display: flex;
  justify-content: flex-end;
}

.header-nav-element:last-child {
  position: relative;
  height: 100%;
}

.language-symbol {
  cursor: pointer;
  position: absolute;
  top: 46%;
  transform: translate(0%, -50%);
  right: 9px;
  color: #FFF;
}

.language-icon {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 35px;
}

.dropdown-language-icon {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  left: 100%;
  cursor: pointer;
  display: block;
  width: 8px;
  height: 4px;  
}

.rotate-icon-up {
  animation: rotate-icon-up .6s forwards;
}

.rotate-icon-down {
  animation: rotate-icon-down .6s forwards;
}

@keyframes rotate-icon-up {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

@keyframes rotate-icon-down {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.language-list {
  position: fixed;
  display: none;
  z-index: 1001;
  top: 99px;
  right: 120px;
  width: 79px;
  height: 58px;
  padding: 0 15px 0 15px;
  background-color: #FFFFFF;
}

.header-nav-language-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -5px;
  width: 100%;
  height: 100%;
}

.header-nav-language-element {
  cursor: pointer;
  text-decoration: none;
  list-style: none;
  border: 5px solid transparent;
  padding: 5px 0;
}

.header-nav-language-element > a {
  color: #2D2D2D;
  text-decoration: none;
}

.header-nav-language-element:hover span{
  color: #2B70A6;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  header {
    padding: 30px 38px;
    background-color: #FFFFFF;
  }
  .logo-mobile {
    display: block;
  }

  .logo-container > span {
    color: black;
    font-size: 11px;
  }

  .header-nav-container, .desktop-logo {
    display: none;
  }

  .header-nav-mobile-container {
    position: fixed;
    display: none;
    z-index: 1001;
    width: 100%;
    top: 94.8px;
    left: 0;
    background-color: #FFFFFF;
    padding: 0 38px;
    box-shadow: 0 8px 6px -6px #00000015;
  }

  .header-nav-mobile-list {
    display: flex;
    padding: 20px 0;
    border-top: 1px solid #F8F8F8;
  }

  .header-nav-mobile-element {
    flex: 1;
    list-style: none;
  }

  .header-nav-mobile-element > a {
    text-decoration: none;
    color: #2D2D2D;
    padding-left: 11px;
  }

  .menu-close-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .close-menu-button {
    display: none;
    width: 21px;
    height: 21px;
  }

  .open-menu-button {
    width: 34px;
    height: 21px;
  }

  .header-nav-mobile-element:last-child {
    display: flex;
    justify-content: flex-end;
  }

  .header-nav-mobile-element:last-child > span {
    padding-left: 15px;
  }
}

@media only screen and (max-width: 375px) {
  header {
    padding: 24px 38px;
   }

   .header-nav-mobile-container {
    top: 81.8px;
  }
}