.site__header .menu__area ul.sub-menu > li:last-child,
.site__header .menu__area ul ul.sub-menu {
  border-radius: 0 0 20px 20px !important;
}
.site__header ul#primary-menu {
  align-items: self-start;
  height: 35px;
}
.site__header .menu__area ul.sub-menu > li {
  border: 0 !important;
  border-radius: 0px !important;
  transition: 0.2s;
}
.site__header .menu__area ul > li {
  border: 1px solid var(--yellow);
  border-radius: 20px;
  transition: 0.2s;
  background: #090b35;
}
.site__header .menu__area ul .menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  height: auto;
}
.site__header .menu__area ul .menu-item:not(.menu__btn):hover > a{
    color:#00BCFF;
}
.site__header {
  padding: 24px 40px;
  transition: ease all 0.2s;
  background-color: var(--header--bg);
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9922;
}
.site__header .site__logo img {
  max-width: 129px;
  transition: ease all 0.5s;
}
.site__header .site__logo a {
  min-height: 48px;
  display: inline-block;
}
.site__logo a #lottieLogo {
  width: 129px;
  overflow: hidden;
  height: 50px;
  position: relative;
}
.site__logo a #lottieLogo svg {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  left: 50%;
  width: 150px !important;
  height: 145px !important;
}
.site__header .site__logo a .desktop__logo,
.site__header .site__logo a .hover__logo {
  position: absolute;
}
.site__header .site__logo a .hover__logo {
  opacity: 0;
}
.site__header .site__logo a:hover .hover__logo {
  opacity: 1;
}
.site__header .site__logo a:hover .desktop__logo {
  opacity: 0;
}
.site__header .flex__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site__header .menu__area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site__header .menu__area ul li a {
  text-align: center;
  font-family: "TT Commons Pro";
  font-size: 20px;
  color: var(--menu--clr);
  line-height: 0.92;
  padding: 8px 24px;
  display: block;
  text-decoration: none;
}
.site__header .menu__area ul li.menu__btn a {
  background-color: var(--blue);
  border-color: rgba(0, 0, 0, 0);
  transition: ease all 0.5s;
  border-radius: 100px;
}
.site__header .menu__area ul li.menu__btn {
  border: none;
}
.site__header .menu__area ul li.menu__btn a:hover {
  background-color: #5eb0f7;
}
.site__header .toggle__btn {
  display: none;
  width: 44px !important;
  height: 44px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: none;
  padding: 0;
  background: var(--yellow);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  flex: 0 0 44px !important;
  top: 0;
  right: 0;
}
.site__header .toggle__btn .bar {
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.site__header .toggle__btn .bar:nth-of-type(2) {
  top: calc(50% - 6px);
}
.site__header .toggle__btn .bar:nth-of-type(3) {
  top: calc(50% + 6px);
}
.site__header .toggle__btn.active .bar:nth-of-type(1) {
  display: none;
}
.site__header .toggle__btn.active .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}
.site__header .toggle__btn.active .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}
.site__header .mobile__logo,
.site__header .burgermenu__logo {
  display: none;
}

.site__header .menu__area ul .sub-menu li a {
  font-size: 20px;
  border-radius: 0;
  border-width: 0px 0 1px 0;
  padding: 14px 20px;
}
.site__header .menu__area ul ul.sub-menu {
  background: #090b35;
  min-width: 150px;
  width: 0;
  display: block;
  opacity: 0;
  transition: 0.1s;
  padding: 0;
  height: 0;
  visibility: hidden !important;
}
.site__header .menu__area ul .sub-menu li:last-child a {
  border-bottom: 0;
}
.site__header .menu-item-has-children {
  position: relative;
}
.site__header .menu__area ul .sub-menu li {
  width: 100%;
}
.site__header .menu__area ul .menu-item-has-children:hover ul.sub-menu {
  opacity: 1;
  visibility: visible !important;
  width: auto;
}
@media screen and (max-width: 1023px) {
  .site__header .menu__area ul .sub-menu li a {
    font-size: 36px;
    padding: 3px 19px;
  }
  .site__header .menu__area ul ul.sub-menu {
    position: initial;
    background: rgba(0, 0, 0, 0);
    top: 125%;
  }
}
@media (max-width: 992px) {
  .site__header ul#primary-menu {
    height: inherit;
  }
  .site__header .menu__area ul > li {
    border: none;
  }
  .site__header .menu__area ul li a {
    text-align: left;
  }
  .site__header .menu__area ul > li {
    background: #e1e1e100;
  }
  .site__header .menu__area ul ul.sub-menu {
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: -13px;
  }
}
@media screen and (max-width: 992px) {
  .site__header {
    padding: 12px 20px;
  }
  .site__header .toggle__btn,
  .site__header .mobile__logo,
  .site__header .site__logo.active .burgermenu__logo {
    display: block;
  }
  .site__header .desktop__logo,
  .site__header .site__logo.active .mobile__logo,
  .site__header .hover__logo {
    display: none;
  }
  .site__header .site__header:has(.active) {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .site__header .menu__area {
    position: absolute;
    height: 100vh;
    top: 0;
    left: 0;
    background: #0573de;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    transition: ease all 0.5s;
    visibility: hidden;
  }
  @supports (height: 100dvh) {
    .site__header .menu__area {
      height: 100dvh;
    }
  }
  @supports (height: 100svh) {
    .site__header .menu__area {
      height: 100dvh;
    }
  }
  .site__header .menu__area ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 24px;
    gap: 8px;
  }
  .site__header .menu__area ul li a {
    font-size: 36px;
    padding: 0;
    border: none;
    font-weight: 400;
    line-height: 1.34;
  }
  .site__header .menu__area.active__menu {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
  }
  .site__header .menu__area ul li.menu__btn a {
    background-color: rgba(0, 0, 0, 0);
    color: var(--yellow);
  }
  .site__header .site__logo {
    position: relative;
    z-index: 9999;
  }
  .site__header .site__logo a {
    min-height: auto !important;
  }
  .site__header .site__logo a #lottieLogo {
    display: none;
  }
  .site__header .toggle__btn.active {
    background-color: var(--blue);
    top: -12px;
    right: -6px;
  }
  .site__header .toggle__btn.active .bar {
    background-color: var(--white);
  }

  /* MENU MOBILE DESPEGABLE */
  .site__header .menu__area > ul{
    gap: 0;
  }
  .site__header .menu__area > ul > li{
    margin-bottom: 8px;
  }
  .site__header .menu__area ul li.menu-item-has-children a{
    position: relative;
    padding: 0;
    padding-right: 24px;
  }
  .site__header .menu__area ul li.menu-item-has-children a:focus{
    outline: unset;
  }
  .site__header .menu__area > ul > li > ul.sub-menu {
    display: none !important;
    margin-bottom: 0;
  }
  .site__header .menu__area > ul > li > ul.sub-menu li a{
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
  }
  .site__header .menu__area > ul > li.menu-item-has-children > a::before {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-bottom: 2px solid #f5f5ef;
    border-right: 2px solid #f5f5ef;
    transform: rotate(45deg) translateY(-50%);
    margin-left: 6px;
    top: 40%;
    right: 0;
  }
  .site__header .menu__area > ul > li.menu-item-has-children.active > a::before {
    border: unset;
    border-top: 2px solid #00BCFF;
    border-left: 2px solid #00BCFF;
    top: 60%;
  }
  .site__header .menu__area > ul > li.active > ul.sub-menu {
      display: block !important;
  }
  .site__header .menu__area ul li.menu__btn a:hover {
    background-color: unset;
  }
}
/*# sourceMappingURL=block.css.map */
