@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-VariableFont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}


* {
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

#total {
  height: 100%;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
  /* prevent purple on visited */
}

nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: flex-start;
  padding: 22px 30px 22px 48px;
  width: calc(100% - 78px); /* account for padding */
  height: 44px;
  color: #fff;
  background: #000f28;
  z-index: 7;
}

#navLogo {
  padding: 10px 12px;
  margin-right: 32px;
  filter: brightness(1);
  z-index: 12;
}

/* Apply sizing and hover to the image itself */
#navLogo img {
  height: 20px;
  width: auto;
}

#navLogo:hover {
  filter: brightness(0.8);
  /* slightly gray on hover */
}

#animRect {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000f28;
  width: 100%;
  height: 0;                 /* collapsed = hidden */
  z-index: 10;
  pointer-events: auto;
  border-bottom: 1px solid #000f28;
  overflow: hidden;
  transition: height 0.3s ease;
}

#animRect .dd {
  position: absolute;
  top: calc(44px + 2.5% +  60px); /* nav height + padding + margin top*/
  left: -100vw;
  width: calc(100% - 334px); /* account for left offset on both sides */
  z-index: 11;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

#animRect .dd .tdd {
  margin-bottom: 35px;
  width: fit-content;
}

#animRect .dd .tdd:hover {
  color: #0071c5 !important;
}

#animRect .dd .sdd .title {
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 5px;
}

#animRect .dd .sdd {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  column-gap: 140px;
  row-gap: 20px;
  align-items: start;
}

#animRect .dd .sdd ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#animRect .dd .sdd ul li {
  display: block;
  max-width: 100%;
  margin: 14px 0;
  font-weight: 500;
  font-size: 13px;
}

#animRect .dd .sdd ul li:hover {
  color: #0071c5 !important;
}

#animRectShadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

#animRectShadow {
  position: absolute;
  top: 200px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 1000px;
  z-index: 9;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav #navLeft ul,
nav #navRight ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav #navLeft li,
nav #navRight li {
  display: flex;
  justify-content: center;
  height: 44px;
  margin-right: 9px;
  align-items: center;
  background: none;
  text-decoration: none;
}

nav #navLeft span {
  position: relative;
  display: inline-block;
  --pad-x: 12px;
  padding: 11.5px var(--pad-x);
  height: 100%;
  text-align: center;
  line-height: 44px;
  color: #fff;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 12;
}

nav #navLeft span::after {
  content: "";
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 23px;
  /* move the line further down */
  height: 1px;
  /* thickness of the line */
  background-color: #000f28;
}

nav span:hover {
  color: #0071c5 !important;
}

nav #navLeft span.active::after {
  background-color: #fff;
}

nav #navLeft span.active:hover::after {
  background-color: #0071c5;
}

nav #navRight {
  display: flex;
  align-items: center;
  height: 67px;
  margin-left: auto;
  z-index: 12;
}

nav #navRight span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11.5px 0 11.5px 12px;
  height: 44px;
  font-size: 14px;
  line-height: normal;
  /* reset this */
  cursor: pointer;
}

nav #navRight #lang {
  padding-left: 20px;
}

nav #navRight #langText {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-left: 0;
  margin-left: 6px;
}

nav #navRight #searchText {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding-left: 0;
  margin-left: 11px;
  cursor: text;
}




#upper {
  background-color: #000f28;
  width: 100%;
  height: 3350px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  z-index: 4;
}

#upper #scroll {
  position: relative;
  height: 100%;
  z-index: 1;
}

#upper #scroll #imgContainer {
  position: fixed;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 9;
  isolation: isolate;
  /* keep the glow behind the content */
}

#upper #scroll #imgContainer.snapped {
  position: absolute;
  top: 2920px;
}

#upper #scroll #imgContainer::before {
  content: "";
  position: absolute;
  inset: -6%;
  background:
    radial-gradient(135% 120% at 80% 20%, rgba(90, 20, 180, 0.75), rgba(0, 0, 0, 0) 70%),
    radial-gradient(135% 120% at 80% 80%, rgba(40, 140, 210, 0.72), rgba(0, 0, 0, 0) 73%),
    radial-gradient(135% 120% at 20% 20%, rgba(50, 150, 220, 0.68), rgba(0, 0, 0, 0) 70%),
    radial-gradient(135% 120% at 20% 80%, rgba(100, 160, 180, 0.78), rgba(0, 0, 0, 0) 73%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#upper #scroll #imgContainer.fade::before {
  opacity: 0;
}

#upper #scroll #imgContainer::after {
  content: "";
  position: absolute;
  inset: -1%;
  background:
    radial-gradient(135% 120% at 80% 20%, rgba(90, 20, 180, 0.85) 0 45%, rgba(0, 0, 0, 0) 72%),
    radial-gradient(135% 120% at 80% 80%, rgba(40, 140, 210, 0.80) 0 48%, rgba(0, 0, 0, 0) 75%),
    radial-gradient(135% 120% at 20% 20%, rgba(50, 150, 220, 0.78) 0 45%, rgba(0, 0, 0, 0) 72%),
    radial-gradient(135% 120% at 20% 80%, rgba(100, 160, 180, 0.85) 0 48%, rgba(0, 0, 0, 0) 75%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#upper #scroll #imgContainer.fade::after {
  opacity: 0;
}

#upper #scroll .slide {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
  transition:
    top 0.5s ease,
    opacity 0.5s ease;
}

#upper #scroll #slide1 {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

#upper #scroll #imgContainer .centerImage {
  height: 100%;
  width: 100%;
}

#upper #scroll #imgContainer .centerImgText {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  width: 73%;
}

#upper #scroll #imgContainer .centerImgText h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

#upper #scroll #imgContainer .centerImgText h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 auto 32px;
  width: 55%;
}

#upper #scroll #imgContainer .centerImgText a {
  font-size: 14px;
  font-weight: 400;
  background-color: #0046c8;
  padding: 14px 18px;
  border-radius: 24px;
}

#upper #scroll #imgContainer .centerImgText a:hover {
  background-color: #3d7dd9;
}

#upper #dots {
  position: fixed;
  top: 60%;
  left: 6%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0;
}

#upper #dots.snapped {
  position: absolute;
  top: 2962px;
}

#upper #dots svg circle.dot,
#upper #dots svg polygon.dot {
  stroke: rgba(255, 255, 255, 0.4);
  fill: rgba(255, 255, 255, 0.4);
  z-index: 8;
  cursor: pointer;
  transition:
    stroke 0.3s ease,
    fill 0.3s ease;
}

#upper #dots svg circle.dot:hover,
#upper #dots svg polygon.dot:hover {
  stroke: #fff;
  fill: #fff;
}

#upper #dots svg circle.dot.active,
#upper #dots svg polygon.dot.active {
  stroke: #fff;
  fill: #fff;
}

#upper #bt {
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}

#upper #bt.snapped {
  position: absolute;
  top: 3158px;
}

#upper #bt h3 {
  position: absolute;
  top: -50%;
  display: inline-block;
  color: rgba(0, 110, 200, 0.25);
  font-size: 240px;
  letter-spacing: -10px;
  width: 100%;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  opacity: 0;
  user-select: none;
  transition:
    top 0.8s ease,
    opacity 0.5s ease;
}

#upper #bt #bt1 {
  opacity: 1;
  top: 0;
}

#lower {
  position: relative;
  z-index: 6;
  height: 1000px;
  padding: 120px 95px;
}

#lower a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 5px 2px;
}

#lower a:hover {
  color: #3d7dd9;
}

#lower #lower1 {
  padding: 120px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-bottom: rgba(50, 118, 220, 0.3) 1px solid;
}

#lower #lower1 div {
  position: relative;
  height: 400px;
  border-right: rgba(50, 118, 220, 0.3) 1px solid;
}

#lower #lower1 div a {
  display: inline-block;
  height: 100%;
  width: 18vw;
  padding-right: 3vw;
  cursor: pointer;

  font-family: 'Roboto', sans-serif;
}

#lower #lower1 div a h1 {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 25px;
}

#lower #lower1 div a h2 {
  color: #bebebe;
  font-size: 14px;
  margin-bottom: 12px;
}


#lower #lower3 div:last-child a {
  padding-right: 0;
}

#lower #lower1 div a h3 {
  color: #afafaf;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 18px;
}

#lower #lower1 div a h4 {
  position: absolute;
  bottom: 0;
  color: #84b5ff;
  font-size: 14px;
}

#lower #lower1 #gaming {
  border-right: none;
}

#lower #lower2 {
  padding: 120px 0;
}

#lower #lower2 h1 {
  display: block;
  margin: 0 auto;
  width: 75%;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: center;
}

#lower #lower2 h1 sup {
  font-size: 30px;
}

#lower #lower2 h1::after {
  background-color: #00c7fd;
  content: "";
  display: inline-block;
  height: 13px;
  margin-left: -5px;
  width: 13px;
  border: 1px solid #000;
}

#lower #lower3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#lower #lower3 div {
  position: relative;
}

#lower #lower3 a {
  position: relative;
  display: inline-block;
  height: 21vw;
  width: 100%;
  padding: 0;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  background-color: rgba(45, 118, 255, 0.1);
  color: rgba(45, 118, 255, 1.0);
  fill: rgba(45, 118, 255, 1.0);
  stroke: rgba(45, 118, 255, 1.0);
}

#lower #lower3 a:hover {
  background-color: rgba(45, 118, 255, 1.0);
  color: #fff;
  fill: #fff;
}

#lower #lower3 a span {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  height: 45px;
  width: auto;
}

#lower #lower3 a span svg {
  height: 100%;
  width: auto;
  stroke: inherit;
  fill: inherit;
}

#lower #lower3 a span svg .statusGreen {
  fill: #22C55E;
  stroke: #22C55E;
}

#lower #lower3 a:hover span svg .statusGreen {
  fill: #22C55E;
  stroke: #22C55E;
}

#lower #lower3 a h5 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 18px;
  letter-spacing: 1px;
}

footer {
  position: relative;
  padding: 160px 50px 30px 50px;
  font-family: 'Roboto', sans-serif;
}

footer #lower4 {
  border-bottom: rgba(0, 0, 0, 0.2) solid 1px;
}

footer #lower4 ul {
  list-style: none;
}

footer #lower4 ul li {
  display: inline-block;
  margin-right: 40px;
  height: 40px;
}

footer #lower4 ul li a {
  display: inline-block;
  height: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.0);
}

footer #lower4 ul li a:hover {
  color: rgba(0, 0, 0, 0.4);
  border-bottom: rgba(0, 0, 0, 0.4) solid 1px;
}

footer #lower5 {
  padding-left: 5px;
}

footer #lower5 a {
  display: inline-block;
  height: 20px;
  width: auto;
  margin-right: 28px;
  cursor: pointer;
}

footer #lower5 a svg {
  height: 100%;
  width: auto;
}

footer #logoCanvas {
  display: block;
  padding: 6px 0;
  cursor: pointer;
  bottom: 0;
  width: 70px;
  height: auto;
}



#about{
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 110, 200, 0.5);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  width: 220px;
  transition: top 0.3s ease;
}

#aboutTitle {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

#aboutName{
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
