.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.menu.mobile {
  display: none;
}
.menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px 4.1666666667vw;
  background: #7B3E90;
  width: 100%;
}
.menu ul li {
  list-style: none;
  position: relative;
  z-index: 1;
}
.menu ul li:hover a {
  color: #90D2F3;
}
.menu ul li.current-menu-item a {
  color: #90D2F3;
  font-weight: 600;
}
.menu ul li.current-menu-item::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 28px;
  background: url(../img/pointer.svg) no-repeat center;
  background-size: contain;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
}
.menu ul li a {
  color: #FFF;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Heebo;
  font-size: 18px;
  font-weight: 400;
  line-height: 177.778%;
  transition: 0.3s;
}
.menu .logo {
  position: absolute;
  right: 3.3333333333vw;
  bottom: -3.0208333333vw;
  padding: 0px 0px 1.4583333333vw 1.6666666667vw;
  border-radius: 24px;
  background: #7B3E90;
}
.menu .logo-img {
  max-width: 9.7916666667vw;
}
.menu .logo-img.mobile- {
  display: none;
}
.menu .burger {
  position: absolute;
  bottom: 28px;
  right: 20px;
}

.hidden-menu.mobile {
  display: none;
}

@media all and (max-width: 1024px) {
  .menu {
    background: #7B3E90;
    height: 80px;
    transition: top 0.5s linear;
  }
  .menu.mobile {
    display: block;
  }
  .menu.mobile.opened {
    z-index: 101;
  }
  .menu.desktop {
    display: none;
  }
  .menu ul {
    display: none;
    position: fixed;
    left: auto;
    right: 0;
    width: 319px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    padding: 114px 24px;
  }
  .menu ul li {
    font-size: 16px;
    line-height: 187.5%;
  }
  .menu ul li.current-menu-item::before {
    display: none;
  }
  .menu .logo {
    right: 50%;
    transform: translateX(50%);
    bottom: 17px;
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .menu .logo-img {
    max-width: 176px;
  }
  .menu .logo-img.mobile- {
    display: block;
  }
  .menu .logo-img.desktop- {
    display: none;
  }
  .hidden-menu {
    position: fixed;
    width: 319px;
    height: 100%;
    background: #7B3E90;
    top: 0;
    right: -100%;
    z-index: 102;
    transition: 0.5s;
  }
  .hidden-menu.mobile {
    display: block;
  }
  .hidden-menu.desktop {
    display: none;
  }
  .hidden-menu.open {
    right: 0;
    z-index: 10000;
  }
  .hidden-menu::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 160px;
    bottom: 0;
    left: 0;
    background: url("../img/menu_bg_lines.svg") no-repeat center;
    background-size: cover;
  }
  .hidden-menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 114px 24px 24px 24px;
  }
  .hidden-menu ul li {
    list-style: none;
    z-index: 1;
  }
  .hidden-menu ul li a {
    color: #FFF;
    text-align: center;
    font-feature-settings: "clig" off, "liga" off;
    font-family: Heebo;
    font-size: 16px;
    font-weight: 400;
    line-height: 187.5%;
  }
  .hidden-menu ul li.current-menu-item a {
    color: #90D2F3;
    font-weight: 600;
  }
  .hidden-menu .menu-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50px;
    left: 16px;
    filter: drop-shadow(0px 6px 20px rgba(30, 30, 32, 0.19));
  }
  .hidden-menu .menu-close img {
    width: 40px;
    height: 40px;
  }
  .hidden-menu .bg {
    position: absolute;
    bottom: 3px;
    left: 16px;
  }
  .hidden-menu .bg img {
    width: 81px;
    height: 176px;
  }
  .menu-overlay {
    display: none;
    z-index: 101;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(53, 53, 53, 0.5);
  }
  .menu-overlay.open {
    display: block;
  }
}
@media all and (max-width: 768px) {
  .menu {
    height: 108px;
  }
}
/*----------------------------------------------------------*/  
@media all and (max-width: 1400px) and (min-width: 1025px) {
  .menu ul li a {
    font-size: 16px;
  }
}
@media all and (max-width: 1280px) and (min-width: 1025px) {
  .menu ul {
    justify-content: flex-end;
    gap: 20px;
  }
}
/*# sourceMappingURL=menu.css.map */