@charset "UTF-8";
/*--------------------------------------------------
  MENU
---------------------------------------------------*/
.menu-outer-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 16;
  width: 25px;
  height: 25px;
  display: none;
}

.menu-wrap {
  width: 100%;
  height: 100%;
}

.menu-wrap .menu {
  width: 100%;
  height: 100%;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.over-hidden {
  overflow: hidden !important;
}

.over-normal {
  overflow: initial !important;
}

/* .link {
  color: white;
  transition: color 150ms ease-in-out;
}

.link:hover {
  color: #FF003C;
} */


/*==================================================
	15. Navigation
===================================================*/
/*--------------------------------------------------
    15.1. Menu-icon animation
---------------------------------------------------*/
.menu {
  display: flex;
  flex-flow: column;
  z-index: 10;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 100ms;
  transform: rotate(0);
}

.menu-wrap {
  z-index: 3;
}

.menu span {
  background-color: #fff;
  width: 25px;
  height: 3px;
  margin-bottom: 6px;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 700ms, opacity 50ms cubic-bezier(0.77, 0, 0.175, 1) 0ms, background-color 100ms ease;
  opacity: 1;
}

.menu span:last-child {
  margin-bottom: 0;
}

.menu-line-2::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 11px;
  width: 3px;
  height: 25px;
  background-color: inherit;
  transform-origin: 0 0;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 400ms, background-color 200ms ease;
  transform: scaleY(0);
}

.menu:hover span {
  /* background-color: #FF003C; */
}

.menu:hover .menu-line-2::after {
  /* background-color: #FF003C; */
}

.is-menu-open {
  width: 100%;
  height: 100%;
}

.is-menu-open .menu {
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 700ms;
}

.is-menu-open .menu span {
  background-color: white;
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 100ms, opacity 50ms cubic-bezier(0.77, 0, 0.175, 1) 400ms, background-color 200ms ease;
}

.is-menu-open .menu .menu-line-1 {
  transform: translateY(9px);
  opacity: 0;
}

.is-menu-open .menu .menu-line-3 {
  transform: translateY(-9px);
  opacity: 0;
}

.is-menu-open .menu .menu-line-2::after {
  background-color: white;
  transform: scaleY(1);
  transition: transform 300ms cubic-bezier(0.77, 0, 0.175, 1) 400ms, background-color 200ms ease;
}

.is-menu-open .menu:hover span, .is-menu-open .menu:hover .menu-line-2::after {
  background-color: #fff;
}

/*--------------------------------------------------
	15.2. Navigation background
---------------------------------------------------*/
.menu-navigation {
  position: relative;
  z-index: 15;
}

.menu-pre-background {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 61.8%;
  height: 100vh;
  background-color: #645CD9;
  transform-origin: 100% 0;
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1) 120ms;
  transform: scaleX(0);
  z-index: 2;
}

.menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 900ms cubic-bezier(0.77, 0, 0.175, 1), transform 100ms cubic-bezier(0.77, 0, 0.175, 1) 900ms;
  opacity: 0;
  transform: scale(0);
  z-index: 2;
  pointer-events: none;
}

.menu-inner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 61.8vw;
  height: 100vh;
  background: #7D7DFF;
  /* background-image: linear-gradient(136.18deg, #2C0045 4.01%, #0E0621 86.2%); */
  transform-origin: 100% 0%;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 3;
  box-shadow: 0 0 25px 1px black;
}

.menu-container {
  height: 100%;
  margin-left: 13%;
  margin-right: 12%;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: opacity 850ms ease;
  opacity: 0;
  position: relative;
}

.menu-header h4 {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0;
  transition: opacity 250ms cubic-bezier(0.165, 0.84, 0.44, 1), transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.is-menu-open .menu-overlay {
  transition: transform 100ms cubic-bezier(0.77, 0, 0.175, 1), opacity 900ms cubic-bezier(0.77, 0, 0.175, 1) 100ms;
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.is-menu-open .menu-pre-background {
  transform: scaleX(1);
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1);
}

.is-menu-open .menu-inner {
  transform: scaleX(1);
  transition: transform 900ms cubic-bezier(0.77, 0, 0.175, 1) 120ms;
}

.is-menu-open .menu-inner .menu-container {
  opacity: 1;
}

.is-menu-open .menu-inner .menu-header h4 {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms;
  opacity: 1;
  transform: translateX(0);
}

/*--------------------------------------------------
	15.3. Navigation list
---------------------------------------------------*/
.navigation {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.navigation-list {
  position: relative;
}

.navigation-list > li {
  margin-bottom: 20px;
}

.navigation-list > li:last-child {
  margin-bottom: 0;
}

.navigation-list > li > a {
  will-change: transform;
  transition: opacity 250ms cubic-bezier(0.755, 0.05, 0.855, 0.06), transform 250ms cubic-bezier(0.755, 0.05, 0.855, 0.06), color 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  transform: translateY(60px);
  position: relative;
}

.navigation-list > li > a:hover {
  color: #fff;
  text-decoration: underline;
}

.navigation-list > li > a:hover::after {
  transform: translateX(25px);
  color: #fff;
  text-decoration: underline;
}

.navigation-list > li > a:not([href]):not([tabindex]) {
  color: white;
}

.navigation-list > li > a:not([href]):not([tabindex]):hover {
  color: #fff;
}

.navigation-list > li > a {
  font-size: 20px;
  line-height: 100%;
  font-weight: 400;
  color: white;
  padding: 0;
}

.menu_item_has_children > a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 7px 0 7px;
  border-color: #fff transparent transparent transparent;
  transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1), transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(20px);
}

.menu_item_has_children > a:hover {
  color: #fff;
}

.menu_item_has_children > a:hover::after {
  transform: translateX(5px);
  color: #fff;
}

.is-menu-open .navigation-list > li > a {
  opacity: 1;
  transform: translateY(0);
}

.is-menu-open .navigation-list > li:first-child > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 920ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 920ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(2) > a {
  cursor: pointer;
  position: relative;
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 960ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 960ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(3) > a {
  cursor: pointer;
  position: relative;
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(4) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1040ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1040ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(5) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1080ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1080ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(6) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1120ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1120ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(7) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1160ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1160ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(8) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1200ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1200ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .navigation-list > li:nth-child(9) > a {
  transition: opacity 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1240ms, transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1) 1240ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li > a {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(9) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22), transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22), color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(8) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 40ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 40ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(7) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 80ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 80ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(6) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 120ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 120ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(5) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 160ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 160ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(4) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 200ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 200ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(3) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 240ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 240ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:nth-child(2) > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 280ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 280ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.is-menu-open .nav-list-hidden.navigation-list > li:first-child > a {
  transition: opacity 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 320ms, transform 600ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 320ms, color 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

/*--------------------------------------------------
	15.4. Subnav
---------------------------------------------------*/
.subnav-list {
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 280px;
}

.subnav-list.subnav-active {
  pointer-events: auto;
}

.subnav-list.subnav-active .subnav-title {
  pointer-events: auto;
}

.subnav-list li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22), transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.subnav-list li:last-child {
  margin-bottom: 0;
}

.subnav-list li a.subnav-title {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 600;
  color: white;
  pointer-events: none;
  /* padding-bottom: 20px; */
}

.subnav-list li a {
  color: #fff;
  font-size: 19px;
  transition: color 100ms cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.subnav-list li a:hover {
  color: white;
  text-decoration: underline;
}

.subnav-title:not([href]):not([tabindex]) {
  color: white;
}

.subnav-title:not([href]):not([tabindex]):hover {
  color: #F7F7FF;
  text-decoration: underline;
  cursor: pointer;
}

a.subnav-title::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 10px 7px 0;
  border-color: transparent #fff transparent transparent;
  transition: color 400ms cubic-bezier(0.165, 0.84, 0.44, 1), transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-25px);
}

a.subnav-title:hover {
  color: #fff;
}

a.subnav-title:hover::after {
  color: #fff;
  transform: translateX(-30px);
}

.navigation-list > li .subnav-list li:nth-child(8) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22), transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.navigation-list > li .subnav-list li:nth-child(7) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 50ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 50ms;
}

.navigation-list > li .subnav-list li:nth-child(6) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 100ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 100ms;
}

.navigation-list > li .subnav-list li:nth-child(5) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 150ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 150ms;
}

.navigation-list > li .subnav-list li:nth-child(4) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 200ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 200ms;
}

.navigation-list > li .subnav-list li:nth-child(3) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 250ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 250ms;
}

.navigation-list > li .subnav-list li:nth-child(2) {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 300ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 300ms;
}

.navigation-list > li .subnav-list li:first-child {
  transition: opacity 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 350ms, transform 400ms cubic-bezier(0.895, 0.03, 0.685, 0.22) 350ms;
}

.subnav-active.subnav-list li {
  opacity: 1;
  transform: translateY(0);
}

.navigation-list > li .subnav-active.subnav-list li:first-child {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1000ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(2) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1050ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1050ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(3) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1100ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1100ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(4) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1150ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1150ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(5) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1200ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1200ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(6) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1250ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1250ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(7) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1300ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1300ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(8) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1350ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1350ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(9) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1400ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1400ms;
}

.navigation-list > li .subnav-active.subnav-list li:nth-child(10) {
  transition: opacity 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1450ms, transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 1450ms;
}

@media only screen and (min-width: 1024px) {
  /* html {
    width: 100vw;
  } */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-inner {
    width: 85vw;
  }

  .menu-pre-background {
    width: 85%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu-inner {
    width: 70vw;
  }

  .menu-pre-background {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 25px 30px;
  }

  .menu-inner {
    width: 100vw;
  }

  .menu-pre-background {
    width: 100%;
  }

  .menu-header {
    display: none;
  }

  .menu-inner .social {
    bottom: 30px;
  }

  .nav-link {
    font-size: 38px;
  }

  .navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-bottom: 40%;
  }
}
@media only screen and (max-width: 991px) {
  .menu-anchor {
    display: none;
  }

  .header-anchor .menu-outer-wrap {
    display: block;
  }

  .menu-navigation-md {
    display: block;
  }
}
@media only screen and (max-width: 440px) {
  .navigation-list > li {
    margin-bottom: 20px;
  }

  .navigation-list > li:last-child {
    margin-bottom: 0;
  }

  .navigation-list > li a {
    font-size: 19px;
  }

  .subnav-list li {
    margin-bottom: 15px;
  }

  .subnav-list li:last-child {
    margin-bottom: 0;
  }

  .subnav-list li .subnav-title {
    font-size: 20px;
  }

  .subnav-list li a {
    font-size: 18px;
  }
}