:root {
  --purple: #960056;
  --green: #97A800;
  --orange: #D86722;
  --grey: #4D4A4B;
  --dark: #131111;
  --neue: "neue-haas-grotesk-display", sans-serif;
  --light: 400;
  --roman: 500;
  --medium: 600;
  --bold: 700;
  --black: 900;
  --xxl: 150px;
  --xl: 80px;
  --l: 60px;
  --m: 40px;
  --s: 30px;
  --xs: 20px;
  --xxs: 10px;
}

header {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 100;
}

/* #nav-toggle */
#nav-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 10;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: none;
}

#nav-toggle span, #nav-toggle span:after, #nav-toggle span:before {
  cursor: pointer;
  height: 3px;
  width: 30px;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  transition: all 0.6s ease-in-out;
}

#nav-toggle span:before {
  top: -10px;
}

#nav-toggle span:after {
  bottom: -10px;
}

#nav-toggle.active span {
  background-color: transparent !important;
}

#nav-toggle.active span:after, #nav-toggle.active span:before {
  top: 0;
}

#nav-toggle.active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: a rotate(45deg);
}

#nav-toggle.active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: a rotate(-45deg);
}

nav {
  display: flex;
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--purple);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 750ms ease-in-out;
  gap: 10px;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
}
nav.active {
  transform: translateX(0);
}
nav a {
  font-size: 40px;
  font-weight: var(--bold);
  position: relative;
  transition: color 300ms;
  color: #fff;
}
nav a::before {
  content: "";
  background-image: url("/images/arrow_header.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -60px;
  transition: opacity 300ms;
  opacity: 0;
}
nav a:hover {
  color: #D8D8D8;
}
nav a:hover::before {
  opacity: 1;
}

nav.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.hamburger {
  top: 30px;
  right: 30px;
  position: absolute;
  width: 50px;
  height: 44px;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  height: 3px;
  width: 100%;
  transition-duration: 0.3s;
  background-color: #fff;
}
.hamburger span {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  position: absolute;
}
.hamburger span::before {
  position: absolute;
  content: "";
  top: -20px;
}
.hamburger span::after {
  position: absolute;
  content: "";
  top: 20px;
}
.hamburger span.active {
  background-color: transparent;
}
.hamburger span.active::before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.hamburger span.active::after {
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.hamburger span.white:not(.active) {
  background-color: #fff;
}
.hamburger span.white:not(.active)::before, .hamburger span.white:not(.active)::after {
  background-color: #fff;
}
.hamburger span.purple:not(.active) {
  background-color: var(--purple);
}
.hamburger span.purple:not(.active)::before, .hamburger span.purple:not(.active)::after {
  background-color: var(--purple);
}

.clear,
* html .clearfix,
*:first-child + html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--dark);
  font-weight: var(--roman);
}

img {
  border: none;
  max-width: 100%;
  display: block;
}

a,
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

/* General */
body {
  font-size: 16px;
  background: #fff;
  color: var(--dark);
  margin: 0;
  padding: 0;
  font-family: var(--neue);
  font-weight: var(--roman);
  overflow-x: hidden;
}
body.noscroll {
  overflow-y: hidden;
}

.row {
  display: flex;
  flex-direction: row;
}

.col {
  display: flex;
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.bottom {
  bottom: 0;
}

.mlra {
  margin-left: auto;
  margin-right: auto;
}

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.tac {
  text-align: center;
}

.ptxxl {
  padding-top: var(--xxl);
}

.ptxl {
  padding-top: var(--xl);
}

.ptl {
  padding-top: var(--l);
}

.ptm {
  padding-top: var(--m);
}

.pts {
  padding-top: var(--s);
}

.ptxs {
  padding-top: var(--xs);
}

.ptxxs {
  padding-top: var(--xxs);
}

.pbxxl {
  padding-bottom: var(--xxl);
}

.pbxl {
  padding-bottom: var(--xl);
}

.pbl {
  padding-bottom: var(--l);
}

.pbm {
  padding-bottom: var(--m);
}

.pbs {
  padding-bottom: var(--s);
}

.pbxs {
  padding-bottom: var(--xs);
}

.pbxxs {
  padding-bottom: var(--xxs);
}

.mbl {
  margin-bottom: var(--l);
}

.mtl {
  margin-top: var(--l);
}

.pr20 {
  padding-right: 20px;
}

.pr40 {
  padding-right: 40px;
}

.gap20 {
  gap: 20px;
}

.medium {
  font-weight: var(--medium);
}

.bold {
  font-weight: var(--bold);
}

.black {
  font-weight: var(--black);
}

.purple {
  color: var(--purple);
}

.orange {
  color: var(--orange);
}

.green {
  color: var(--green);
}

.bg-purple {
  background-color: var(--purple);
}
.bg-purple * {
  color: #fff;
}

.gap25 {
  gap: 25px;
}

.arrow.trnT {
  transform: translateY(-40px);
}

.p-mb {
  margin-bottom: 10px;
  font-size: 18px;
}

.p-mb h2 {
  margin-bottom: 25px;
}

.p-mb ul {
  font-size: inherit;
}

.p-mb ul li {
  position: relative;
  list-style: none;
  padding-left: 15px;
  font-weight: 300;
  padding-bottom: 5px;
}

.p-mb ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 5px;
  height: 5px;
  background-color: currentColor;
  border-radius: 5px;
}

.p-mb p {
  margin-bottom: 10px;
  font-size: inherit;
}

.p-mb p:last-child {
  margin-bottom: 0;
}

.arrow {
  position: absolute;
  top: var(--xxl);
  left: -50px;
  transform: translateY(20px);
  width: 150px;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.ox-hidden {
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

.parallax {
  background-attachment: fixed;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
  line-height: 1.2em;
}

p,
.link {
  text-align: left;
  margin: 0;
  font-weight: var(--light);
  font-size: 18px;
}

h1 {
  text-align: center;
}

h1,
h2 {
  font-size: 60px;
  color: #fff;
}

h3 {
  font-size: 40px;
  font-weight: var(--black);
}

h4 {
  font-size: 26px;
}
h4.glance {
  font-size: 28px;
}

h1 {
  max-width: 800px;
}

h1,
h2 {
  font-weight: var(--bold);
}

h5 {
  font-size: 22px;
}

.mw {
  max-width: 100%;
}

.mw90 {
  max-width: 90%;
  width: 100%;
}

#page-home h1 {
  opacity: 0;
  transition: opacity 500ms;
}

.container {
  max-width: 1440px;
  width: calc(100% - 200px);
  margin: 0 auto;
}

.slide-container {
  max-width: 1480px;
  width: calc(100% - 160px);
}

.bt-black {
  border-top: 1px solid #000;
}

.btn {
  display: block;
  width: 200px;
  padding: 15px 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border: 1px solid;
  transition: 300ms;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: var(--bold);
}
.btn.purple {
  background-color: var(--purple);
  border-color: var(--purple);
}
.btn.purple:hover {
  background-color: #fff;
  color: var(--purple) !important;
}
.btn.green {
  background-color: var(--green);
  border-color: var(--green);
}
.btn.green:hover {
  background-color: var(--purple);
}
.btn.dark {
  background-color: var(--dark);
  border-color: var(--dark);
}
.btn.dark:hover {
  background-color: #fff;
  color: var(--dark);
}
.btn.normal {
  color: #000;
  border: none;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms;
  margin-top: 20px;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.btn.normal:hover {
  border-color: #000;
}
.btn.small {
  width: 150px;
  padding: 10px 0;
  background-color: #fff;
  border-color: var(--purple);
  color: var(--purple);
}
.btn.small:hover {
  background-color: var(--purple);
  color: #fff;
}
.btn.purple-inv {
  background-color: #fff;
  border-color: var(--purple);
  color: var(--purple);
}
.btn.purple-inv:hover {
  background-color: var(--purple);
  color: #fff;
}

.triangle {
  pointer-events: none;
  position: absolute;
  display: none;
}
.triangle.a {
  top: -50%;
  right: -10%;
}
.triangle.b {
  top: -200px;
  right: -5%;
  width: 50%;
}
.triangle.c {
  width: 50%;
  top: -290px;
  right: -5%;
}

.z-2 {
  position: relative;
  z-index: 2;
}

.landing {
  height: 100vh;
  height: 100svh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing .logo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 218px;
  max-width: 50%;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.tile-grid div {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 3/2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tile-grid div::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 300ms;
}
.tile-grid div img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 57px;
  opacity: 0;
  transition: opacity 300ms;
}
.tile-grid div a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tile-grid div:hover::before {
  background-color: var(--green);
}
.tile-grid div:hover img {
  opacity: 1;
}
.tile-grid h5 {
  color: #fff;
  font-weight: var(--bold);
  position: relative;
  z-index: 1;
  text-align: center;
}

.content-grid div,
.experts div {
  position: relative;
}

#page-team .content-grid div:not(.wrapper):hover h5::before,
.experts div:not(.wrapper):hover h5::before {
  opacity: 1;
}
#page-team .content-grid .wrapper,
.experts .wrapper {
  transition: filter 300ms;
}
#page-team .content-grid h5,
.experts h5 {
  position: relative;
  padding-bottom: 10px;
  color: var(--purple);
}
#page-team .content-grid h5::before,
.experts h5::before {
  content: "";
  background-image: url("/images/arrow_purple_mini.png");
  background-size: cover;
  width: 37px;
  height: 37px;
  position: absolute;
  top: 25px;
  right: 0;
  transition: opacity 300ms;
  opacity: 0;
}

.experts {
  display: flex;
  flex-direction: column;
  gap: 0 20px;
  background: #fff;
  z-index: 99;
  position: relative;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
}

.content-grid .wrapper,
.experts .wrapper,
.service-slider .wrapper {
  display: block;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.content-grid h5,
.experts h5,
.service-slider h5 {
  padding: 20px 0;
}
.content-grid p,
.experts p,
.service-slider p {
  padding-right: 20px;
}
.content-grid a:not(.btn),
.experts a:not(.btn),
.service-slider a:not(.btn) {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.content-grid h5,
.service-slider h5 {
  font-weight: var(--medium);
}

a.cover {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-slider .slick-track {
  display: flex;
  gap: 0 20px;
}

.industry-grid {
  width: calc(100% - 330px);
  padding-right: 40px;
}
.industry-grid .wrapper {
  width: -moz-fit-content;
  width: fit-content;
  gap: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}
.industry-grid .wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.industry-grid .wrapper div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-services .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 40px 60px;
}
.industry-services .grid div {
  border-bottom: 1px solid var(--grey);
}
.industry-services .grid h5 {
  color: var(--purple);
  font-weight: bold;
}
.industry-services .grid p {
  padding: 15px 0 20px;
}
.industry-services .grid h5,
.industry-services .grid p {
  display: block;
}

.experts {
  width: 330px;
  max-width: 100%;
}
.experts .btn {
  width: 100%;
  max-width: 100%;
}

.partnerships {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.partnerships .wrapper {
  padding: 30px 30px 50px;
  border: 1px solid var(--dark);
}
.partnerships .wrapper div {
  height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
}
.partnerships .wrapper img {
  width: 60%;
  max-height: 150px;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 20px;
}
.testimonials .wrapper {
  background-color: var(--purple);
  padding: 40px;
}
.testimonials p {
  color: #fff;
}

#page-insights .content-grid .formDiv {
  position: relative;
  pointer-events: none;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 15px;
}
#page-insights .content-grid .formDiv * {
  position: relative;
  z-index: 1;
}
#page-insights .content-grid .formDiv input {
  padding: 5px;
  border: 1px solid #fff;
}
#page-insights .content-grid .formDiv input::-moz-placeholder {
  opacity: 0.7;
}
#page-insights .content-grid .formDiv input::placeholder {
  opacity: 0.7;
}
#page-insights .content-grid .formDiv input:focus::-moz-placeholder {
  opacity: 0;
}
#page-insights .content-grid .formDiv input:focus::placeholder {
  opacity: 0;
}
#page-insights .content-grid .formDiv input[type=submit] {
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
#page-insights .content-grid .formDiv * {
  color: #fff;
  padding: 0;
  margin: 0 auto 0 0;
}

.hasForm .formDiv {
  opacity: 1 !important;
  pointer-events: all !important;
  z-index: 1000;
}
.hasForm .formDiv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(150, 0, 86, 0.7);
  z-index: 0;
}
.hasForm a {
  pointer-events: none;
}

.vbox-close {
  top: 10px !important;
  left: initial !important;
  right: initial !important;
  margin: 0 auto;
}

.vid-wrapper {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.vid-wrapper img {
  width: 120px;
}
.vid-wrapper span {
  font-size: 20px;
  color: #fff;
}

.icon-container {
  display: flex;
  width: 100%;
}
.icon-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 25%;
}
.icon-container img {
  height: 80px;
}
.icon-container span {
  font-size: 16px;
  font-weight: var(--bold);
  padding: var(--xs) 0;
}
.icon-container span,
.icon-container p {
  text-align: center;
}
.icon-container p {
  max-width: 100%;
  width: 200px;
  font-size: 16px;
}
.icon-container a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.ticker-banner {
  display: flex;
  justify-content: space-between;
}

.details ul {
  padding-left: 0.7em;
  list-style: "-  ";
}

.expert {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
}

footer div {
  padding: var(--l) 40px;
}
footer .logo {
  width: 220px;
}

.privacyContainer,
.disclaimerContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: var(--purple);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  padding: 20px 20px 100px 20px;
  transition: 300ms;
}
.privacyContainer *,
.disclaimerContainer * {
  color: #fff;
}
.privacyContainer.active,
.disclaimerContainer.active {
  pointer-events: all;
  opacity: 1;
}
.privacyContainer p:not(:first-child),
.disclaimerContainer p:not(:first-child) {
  padding-bottom: 10px;
}
.privacyContainer p:has(strong),
.disclaimerContainer p:has(strong) {
  padding-top: 10px;
}
.privacyContainer .close,
.disclaimerContainer .close {
  position: relative;
  right: initial;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  margin-bottom: 20px;
}

#preloader {
  background-color: var(--purple);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: background-color 800ms, opacity 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
#preloader h2 {
  opacity: 0;
  transition: opacity 800ms;
  text-align: center;
  position: absolute;
}

.banner {
  aspect-ratio: 24/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#page-why .banner {
  background-image: url("/images/why/banner.jpg");
}

#page-insights .banner {
  background-image: url("/images/insights/banner.jpg");
}

#page-why .banner {
  aspect-ratio: 24/10;
}

.ticker-wrapper {
  position: relative;
  left: 0;
  height: 200px;
  top: 0;
}
.ticker-wrapper .scroller {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
}
.ticker-wrapper h5 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.teamPopup {
  position: fixed;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  max-height: 85vh;
  max-width: 90%;
  width: 1600px;
  background-color: var(--purple);
  z-index: 99;
  pointer-events: none;
  transition: transform 300ms, opacity 300ms;
}
.teamPopup.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}
.teamPopup h5 {
  font-weight: var(--bold);
}
.teamPopup p {
  font-size: 16px;
}
.teamPopup .team-overview p {
  margin-bottom: 10px;
}
.teamPopup .wrapper {
  padding: 40px 100px 40px 50px;
}
.teamPopup * {
  color: #fff;
}
.teamPopup ul {
  list-style: "-  ";
  padding-left: 0.6em;
}
.teamPopup .portrait {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.teamPopup .mw {
  width: 600px;
}
.teamPopup .gap25:not(.teamLogo) img {
  height: 30px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close::before, .close::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.close::before {
  transform: rotate(45deg);
}
.close::after {
  transform: rotate(-45deg);
}

.teamLogo a img {
  height: 30px;
}

.scroller {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.scroller .scroller-line {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.scroller .scroller-line:nth-child(1) {
  animation-name: rtl-anim;
}
.scroller .scroller-item {
  position: relative;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
  gap: 30px;
}
.scroller .scroller-item:first-child {
  padding-right: 30px;
}
.scroller img {
  width: 200px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 20px;
}
.scroller span {
  font-size: clamp(20px, 2vw, 26px);
  line-break: none;
  white-space: nowrap;
}

@keyframes rtl-anim {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333333333%);
    -webkit-transform: translateX(-33.3333333333%);
    -moz-transform: translateX(-33.3333333333%);
    -ms-transform: translateX(-33.3333333333%);
    -o-transform: translateX(-33.3333333333%);
  }
}
#event {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
}

/* enquiry */
.register {
  max-width: 500px;
  width: 50%;
  margin: 0 auto;
}

.formbox {
  margin: 0 auto;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.b_submit {
  margin: 20px auto 20px 0;
  border: 1px solid #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border-radius: 15px;
  padding: 5px 15px;
}

input:nth-child(1) {
  padding-top: 0;
}

input, select, textarea {
  font-size: 16px;
  margin: 0 auto;
  width: 100%;
  padding: 30px 0 10px;
  color: #fff;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid #fff;
  text-align: left;
  font-family: var(--neue);
  font-weight: var(--roman);
}

.parsley-required {
  color: #fff !important;
}

textarea {
  height: 8em;
  resize: none;
}

select {
  padding: 5px 10px;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

select option {
  padding: 5px 10px;
  background: #fff;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

.privacy {
  font-size: 10px;
}

.chk_holder {
  margin: 10px auto 0 auto;
  color: #fff;
}

#chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  color: #546670;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: inherit;
  text-transform: uppercase;
  display: inline;
  margin: auto;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #546670;
  content: "";
  display: block;
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: 50%;
  left: 8px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid #546670;
  border-right: 2px solid #546670;
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

#chkInternational:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0.7;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  opacity: 0.7;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.7;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0.7;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: #000;
  cursor: default;
  border: 1px solid #525252;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
}

div.token-input-dropdown-project ul li {
  background-color: #fff;
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #fff;
}

/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
}

ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 98;
  top: 35%;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  height: 40px;
  width: 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.slick-arrow:before, .slick-arrow:after {
  border-right: 2px solid #000;
  content: "";
  display: block;
  height: 20px;
  margin-top: -14px;
  position: absolute;
  top: 50%;
  width: 0;
}

.slick-arrow:after {
  margin-top: 0px;
}

.slick-next {
  right: -30px;
}

.slick-next::after, .slick-next::before {
  right: 10px;
}

.slick-next::before {
  transform: rotate(135deg);
}

.slick-next::after {
  transform: rotate(45deg);
}

.slick-prev {
  left: -30px;
}

.slick-prev::after, .slick-prev::before {
  left: 10px;
}

.slick-prev::before {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
}

.slick-prev::after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

.vbox-overlay {
  --vbox-tools-color: #fff;
  --vbox-title-background: #101010;
  --vbox-title-width: "auto";
  --vbox-title-radius: 0;
  --vbox-share-background: #101010;
  --vbox-share-width: "auto";
  --vbox-share-radius: 0;
  --vbox-padding: 0 ;
}

.vbox-overlay *,
.vbox-overlay :after,
.vbox-overlay :before {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}

.vbox-overlay * {
  backface-visibility: visible;
}

.vbox-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
}

.vbox-share,
.vbox-title {
  line-height: 1;
  position: fixed;
  z-index: 98;
  text-align: center;
  margin: 0 auto;
  color: var(--vbox-tools-color);
}

.vbox-title {
  font-size: 12px;
  background-color: var(--vbox-title-background);
  width: var(--vbox-title-width);
  border-radius: var(--vbox-title-radius);
  padding: 12px 54px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.vbox-share {
  font-size: 24px;
  padding: 0 0.35em;
  background-color: var(--vbox-share-background);
  width: var(--vbox-share-width);
  border-radius: var(--vbox-share-radius);
}

.vbox-link-btn,
button.vbox-link-btn,
button.vbox-link-btn:active,
button.vbox-link-btn:focus,
button.vbox-link-btn:hover {
  border: none !important;
  background: 0 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 6px 12px;
  outline: 0;
  display: inline-block;
  cursor: pointer;
}

.vbox-share a {
  color: inherit !important;
  padding: 6px 12px;
  display: inline-block;
}

.vbox-share svg {
  z-index: 10;
  vertical-align: middle;
}

.vbox-close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  padding: 6px 15px;
  color: #000;
  color: var(--vbox-tools-color);
  border: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-close:hover {
  opacity: 1;
}

.vbox-left-corner {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  line-height: 1;
  font-size: 12px;
  z-index: 99;
  display: flex;
  align-items: center;
  color: var(--vbox-tools-color);
}

.vbox-num {
  display: inline-block;
  padding: 12px 15px;
}

.vbox-left {
  left: 0;
}

.vbox-right {
  right: 0;
}

.vbox-top {
  top: 0;
}

.vbox-bottom {
  bottom: 0;
}

.vbox-next,
.vbox-prev {
  position: fixed;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  z-index: 99;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.vbox-next:hover,
.vbox-prev:hover {
  opacity: 1;
}

.vbox-next span,
.vbox-prev span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--vbox-tools-color);
  border-right-color: var(--vbox-tools-color);
  text-indent: -100px;
  position: absolute;
  top: 8px;
  display: block;
}

.vbox-prev {
  left: 15px;
}

.vbox-next {
  right: 15px;
}

.vbox-prev span {
  left: 10px;
  transform: rotate(-135deg);
}

.vbox-next span {
  transform: rotate(45deg);
  right: 10px;
}

.vbox-inline,
.venoratio {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.venoratio::before {
  display: block;
  padding-top: var(--vb-aspect-ratio);
  content: "";
}

.venoratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 94%;
  padding: var(--vbox-padding);
}

.venoratio-1x1 {
  --vb-aspect-ratio: 100% ;
}

.venoratio-4x3 {
  --vb-aspect-ratio: calc(3 / 4 * 100%) ;
}

.venoratio-16x9 {
  --vb-aspect-ratio: calc(9 / 16 * 100%) ;
}

.venoratio-21x9 {
  --vb-aspect-ratio: calc(9 / 21 * 100%) ;
}

.venoratio-full {
  --vb-aspect-ratio: calc(100vh - 100px) ;
}

.vbox-child.vbox-inline,
.vbox-child.venoratio {
  max-width: 100%;
}

.vbox-open {
  overflow: hidden;
}

.vbox-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  z-index: 20;
  max-height: 100%;
  padding: 30px 0;
}

.vbox-content {
  opacity: 0;
}

.vbox-content {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.vbox-container img {
  max-width: 100%;
  height: auto;
}

.vbox-child {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  max-width: 100%;
  text-align: initial;
  padding: var(--vbox-padding);
}

.vbox-child img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
}

.vbox-grab .vbox-child img {
  cursor: grab;
}

.vbox-child > iframe {
  border: none !important;
  background: transparent;
}

.vbox-content.swipe-left {
  margin-left: -200px !important;
}

.vbox-content.swipe-right {
  margin-left: 200px !important;
}

.vbox-preloader {
  transform: translateZ(0);
}

.vbox-preloader .vbox-preloader-inner {
  opacity: 1;
  transition: opacity 0.2s;
}

.vbox-hidden {
  display: none;
}

.vbox-preloader.vbox-hidden .vbox-preloader-inner {
  opacity: 0;
}

.vbox-backdrop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(-1px);
  z-index: 0;
}

.vbox-tooltip {
  position: relative;
  display: inline-block;
}

.vbox-tooltip .vbox-tooltip-text {
  visibility: hidden;
  color: #fff;
  text-align: center;
  padding: 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
  margin-bottom: 2px;
  font-family: sans-serif;
}

.vbox-top .vbox-tooltip .vbox-tooltip-text {
  bottom: auto;
  top: 100%;
  margin-bottom: 0;
  margin-top: 2px;
}

.vbox-tooltip-inner {
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  font-size: 10px;
}

.vbox-tooltip:hover .vbox-tooltip-text {
  visibility: visible;
  opacity: 1;
}

.vbox-overlay {
  --sk-size: 40px;
  --sk-color: #333 ;
}

.sk-center {
  margin: auto;
}

.sk-plane {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  animation: sk-plane 1.2s infinite ease-in-out;
}

@keyframes sk-plane {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  100%, 80% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  0%, 100% {
    transform: scale(1);
  }
}
.sk-bounce {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-bounce-dot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.sk-bounce-dot:nth-child(2) {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
  }
  45%, 55% {
    transform: scale(1);
  }
}
.sk-wave {
  width: var(--sk-size);
  height: var(--sk-size);
  display: flex;
  justify-content: space-between;
}

.sk-wave-rect {
  background-color: var(--sk-color);
  height: 100%;
  width: 15%;
  animation: sk-wave 1.2s infinite ease-in-out;
}

.sk-wave-rect:nth-child(1) {
  animation-delay: -1.2s;
}

.sk-wave-rect:nth-child(2) {
  animation-delay: -1.1s;
}

.sk-wave-rect:nth-child(3) {
  animation-delay: -1s;
}

.sk-wave-rect:nth-child(4) {
  animation-delay: -0.9s;
}

.sk-wave-rect:nth-child(5) {
  animation-delay: -0.8s;
}

@keyframes sk-wave {
  0%, 100%, 40% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
.sk-pulse {
  width: var(--sk-size);
  height: var(--sk-size);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes sk-pulse {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}

.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}

.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}

.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}

@keyframes sk-flow {
  0%, 100%, 80% {
    transform: scale(0.3);
  }
  40% {
    transform: scale(1);
  }
}
.sk-swing {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  animation: sk-swing 1.8s infinite linear;
}

.sk-swing-dot {
  width: 45%;
  height: 45%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-swing-dot 2s infinite ease-in-out;
}

.sk-swing-dot:nth-child(2) {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-swing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-swing-dot {
  0%, 100% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(1);
  }
}
.sk-circle {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle 1.2s infinite ease-in-out both;
}

.sk-circle-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle {
  0%, 100%, 80% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.sk-circle-fade {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-circle-fade-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-fade-dot:before {
  content: "";
  display: block;
  width: 15%;
  height: 15%;
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-circle-fade 1.2s infinite ease-in-out both;
}

.sk-circle-fade-dot:nth-child(1) {
  transform: rotate(30deg);
}

.sk-circle-fade-dot:nth-child(2) {
  transform: rotate(60deg);
}

.sk-circle-fade-dot:nth-child(3) {
  transform: rotate(90deg);
}

.sk-circle-fade-dot:nth-child(4) {
  transform: rotate(120deg);
}

.sk-circle-fade-dot:nth-child(5) {
  transform: rotate(150deg);
}

.sk-circle-fade-dot:nth-child(6) {
  transform: rotate(180deg);
}

.sk-circle-fade-dot:nth-child(7) {
  transform: rotate(210deg);
}

.sk-circle-fade-dot:nth-child(8) {
  transform: rotate(240deg);
}

.sk-circle-fade-dot:nth-child(9) {
  transform: rotate(270deg);
}

.sk-circle-fade-dot:nth-child(10) {
  transform: rotate(300deg);
}

.sk-circle-fade-dot:nth-child(11) {
  transform: rotate(330deg);
}

.sk-circle-fade-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-circle-fade-dot:nth-child(2):before {
  animation-delay: -1s;
}

.sk-circle-fade-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-circle-fade-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-circle-fade-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-circle-fade-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

.sk-circle-fade-dot:nth-child(7):before {
  animation-delay: -0.5s;
}

.sk-circle-fade-dot:nth-child(8):before {
  animation-delay: -0.4s;
}

.sk-circle-fade-dot:nth-child(9):before {
  animation-delay: -0.3s;
}

.sk-circle-fade-dot:nth-child(10):before {
  animation-delay: -0.2s;
}

.sk-circle-fade-dot:nth-child(11):before {
  animation-delay: -0.1s;
}

@keyframes sk-circle-fade {
  0%, 100%, 39% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}
.sk-grid {
  width: var(--sk-size);
  height: var(--sk-size);
}

.sk-grid-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: var(--sk-color);
  float: left;
  animation: sk-grid 1.3s infinite ease-in-out;
}

.sk-grid-cube:nth-child(1) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(2) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(3) {
  animation-delay: 0.4s;
}

.sk-grid-cube:nth-child(4) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(5) {
  animation-delay: 0.2s;
}

.sk-grid-cube:nth-child(6) {
  animation-delay: 0.3s;
}

.sk-grid-cube:nth-child(7) {
  animation-delay: 0s;
}

.sk-grid-cube:nth-child(8) {
  animation-delay: 0.1s;
}

.sk-grid-cube:nth-child(9) {
  animation-delay: 0.2s;
}

@keyframes sk-grid {
  0%, 100%, 70% {
    transform: scale3D(1, 1, 1);
  }
  35% {
    transform: scale3D(0, 0, 1);
  }
}
.sk-fold {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  transform: rotateZ(45deg);
}

.sk-fold-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-fold-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--sk-color);
  animation: sk-fold 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-fold-cube:nth-child(2) {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-fold-cube:nth-child(4) {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-fold-cube:nth-child(3) {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-fold-cube:nth-child(2):before {
  animation-delay: 0.3s;
}

.sk-fold-cube:nth-child(4):before {
  animation-delay: 0.6s;
}

.sk-fold-cube:nth-child(3):before {
  animation-delay: 0.9s;
}

@keyframes sk-fold {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0);
    opacity: 1;
  }
  100%, 90% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.sk-wander {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
}

.sk-wander-cube {
  background-color: var(--sk-color);
  width: 20%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  --sk-wander-distance: calc(var(--sk-size) * 0.75);
  animation: sk-wander 2s ease-in-out -2s infinite both;
}

.sk-wander-cube:nth-child(2) {
  animation-delay: -0.5s;
}

.sk-wander-cube:nth-child(3) {
  animation-delay: -1s;
}

@keyframes sk-wander {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6);
  }
  50% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg);
  }
  50.1% {
    transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg);
  }
  75% {
    transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@media screen and (max-width: 1500px) {
  .arrow {
    left: -20px;
    width: 100px;
    transform: translateY(70px);
  }
  #page-why .icon-container {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  #page-why .icon-container div {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 1200px) {
  .d-fullwidth {
    width: 100%;
  }
  p {
    font-size: 17px;
  }
  .industry-grid {
    padding-right: 0;
  }
  .industry-grid,
  .details {
    width: 100%;
  }
  .experts {
    width: 100%;
    max-width: 100%;
  }
  .experts .containsPop {
    width: 50%;
    max-width: 330px;
  }
  .experts .btn {
    max-width: 200px;
  }
  .d-col {
    flex-direction: column;
  }
  .d-row {
    flex-direction: row;
  }
  h3 {
    font-size: 36px;
  }
  .ticker-details {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-height: 800px) {
  .teamPopup .wrapper {
    overflow-y: scroll;
  }
}
@media screen and (max-width: 1000px) {
  .t-dnone {
    display: none;
  }
  #preloader h2 {
    font-size: 40px;
  }
  nav a {
    font-size: 20px;
  }
  .content-grid,
  .partnerships,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
  .teamPopup {
    flex-direction: column;
    overflow-y: scroll;
    max-height: 90vh;
    z-index: 200;
  }
  .teamPopup .wrapper {
    overflow: initial;
    padding: 20px 20px 40px;
  }
  .teamPopup .grid_4, .teamPopup .grid_8 {
    width: 100%;
  }
  .teamPopup .row:has(.btn) {
    flex-direction: column;
    padding-bottom: 20px;
  }
  .teamPopup .close {
    position: fixed;
  }
  .teamLogo {
    flex-wrap: wrap;
  }
  .experts .containsPop {
    width: 100%;
    max-width: 330px;
  }
  footer.ptm {
    padding-top: 0;
  }
  footer div {
    padding: var(--l) 20px;
  }
  h1 {
    font-size: 40px;
  }
  h3 {
    font-size: 26px;
  }
  h4 {
    font-size: 24px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .arrow {
    display: none;
  }
  .triangle.b {
    top: -10vh;
  }
  .t-col {
    flex-direction: column;
  }
  .t-fullwidth {
    width: 100%;
  }
  .t-justify-start {
    justify-content: flex-start;
  }
  .slide-container {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 680px) {
  :root {
    --xxl: 100px;
    --xl: 60px;
    --l: 40px;
    --m: 30px;
    --s: 20px;
    --xs: 15px;
  }
  #preloader h2 {
    font-size: 26px;
  }
  h1 {
    font-size: 26px;
    max-width: 80%;
  }
  .hamburger {
    top: 15px;
    right: 10px;
  }
  #page-home .icon-container,
  #page-why .icon-container {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  #page-home .icon-container div,
  #page-why .icon-container div {
    width: 50%;
  }
  .tile-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tile-grid h5 {
    font-size: 16px;
    max-width: 95%;
  }
  .icon-container {
    gap: 20px 0;
  }
  .icon-container p {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-grid,
  .partnerships,
  .testimonials {
    grid-template-columns: 1fr;
  }
  .register {
    width: 100%;
    margin-top: 30px;
  }
  footer div {
    padding-top: var(--m);
    padding-bottom: var(--m);
  }
  footer .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
  .m-col {
    flex-direction: column;
  }
  .m-fullwidth {
    width: 100%;
  }
  p {
    font-size: 16px;
  }
  .slide-container {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 350px) {
  #preloader h2 {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */