@import url('https://fonts.googleapis.com/css?family=Manrope:700|Manrope:400');

:root {
  --text: hsl(0, 0%, 99%);
  --textDim: hsl(0, 0%, 60%);
  --background: hsl(0, 0%, 7%);
  /* --primary: hsl(155, 100%, 65%); */
  --primary: #FF5733;
  --primaryBg: hsla(155, 100%, 65%, 1%);
  --primaryHi: #e75459;
  --primaryFg: #fc5e3ada;
  --secondary: #ca1f25;
  --secondaryFg: #ca1f2588;
  --secondaryBg: hsla(156, 51%, 14%, 5%);
  --secondaryHi: #ca1f25;
  --accent: hsl(155, 100%, 94%);
  --accentBg: hsla(155, 100%, 94%, 1%);
  --accentHi: hsla(155, 100%, 100%, 25%);
}

/* .landing {

  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;

   background: url(/assets/img/avatar/about_6.png) no-repeat ;
   background-repeat: no-repeat;
   background-attachment: fixed; 
   background-size: 100% 100%;
  justify-content: space-between;

} */
.landing {
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  /* background: url(/assets/img/avatar/wave.svg) no-repeat; */
  /* background: url(/assets/img/avatar/about_6.png) no-repeat; */
  background: url(/assets/img/WCX/bg.png) no-repeat;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  background-attachment: local;
  background-size: 100% 100%;
  justify-content: center;
}

.map {
  opacity: 0.09;
  width: 90%;
}
.menu:hover {
  color: #000;
  cursor: pointer;
}

.sitename {
  font-weight: bold;
}

.grid {
  position: absolute;
  height: 100%;
  weight: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  /* z-index: -1; */
}

.grid-svg {
  height: 80%;
  width: 80%;
  position: relative;
  z-index: 1;
  stroke: #a3a3a30c;
}

/* .slogun::after {
  content: "";
  display: block;
  height: 200px;
  width: 310px;
  background-color: #ca1f25d4;
  filter: blur(100px);
  top: 2rem;
  right: 40vw;
  border-radius: 100px;
  z-index: -36;
  position: absolute;
} */
/* .slogun::after {
  content: '';
  position: absolute;
  z-index: -1;
  opacity: 0.55;
  border-radius: 50%;
  height: 20rem;
  width: 20rem;
  background: #ca1f25d4;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.slogun{
  text-align: center;
  padding: 0 11.5%;
  position: relative;
  top: 30%;
  z-index: 1000;
}

.slogun h1{
  /* font-size: 55px; */
  font-size: clamp(2rem, 5vw, 3rem);
  font-size: 5.2vw;
  font-weight: 700;
  /* color: #02244c; */
  color: #ffffff;
  text-shadow: -3px 3px 3px #00000075;
}
.slogun p{
  /* font-size: 25px; */
  /* font-size: clamp(1.25rem, 2vw, 2rem); */
  font-size: 1.3vw;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  color: #02244c;
  /* text-shadow: -2px 2px 3px #ca1f255e; */
}

.wave{
  /* bottom: 0rem;
  position: absolute;
  z-index: 2 */
}
.wave img{
  max-width: 100%;
  position: relative;
  bottom: 4rem;
}

.title {
  font-size: 5.6875em;
  font-weight: 700;
  letter-spacing: -0.8rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  justify-content: center;
  align-self: center;
  height: 100%;
  z-index: 2;

  font-family: Galanogrotesque, sans-serif;
  font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
}

.title > p {
  margin: 0;
  line-height: 10rem;
  width: auto;
  color: #02244c;
}

.title > p:nth-child(1){
  align-self: flex-start;
}

.title > p:nth-child(2){
  color: #ca1f25;
  align-self: flex-end;
}

.title > p:nth-child(3){
  align-self: flex-end;
}

.material-icons {
  display: none;
  fill: #000;
}



.button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 50px;
  width: 160px;
  z-index: 9999;
}



.span-ball {
  width: 100px;
  height: 60px;
  background-color: var(--primaryHi);
  border-radius: 100%;
  filter: blur(20px);
  position: absolute;
  bottom: -50%;
  transition: all 0.2s ease;
}

.button:hover > .span-ball {
  opacity: 60%;
}

.button:hover > button {
  transform: translateY(5px);
}

.button.first {
  top: 12%;
  right: 20%;
}

.button.sec {
  bottom: 13%;
  right: 11%;
}

.button.sec > button {
  background-color: var(--accentBg);
  box-shadow: 0px -3px 15px 0px var(--accentHi) inset;
  color: var(--accentFg);
}

.button.sec > .span-ball {
  background-color: var(--accentHi);
}

.button.third {
  bottom: 25%;
  left: 15%;
}

.button.third > button {
  background-color: var(--secondaryBg);
  box-shadow: 0px -3px 15px 0px var(--secondary) inset;
  color: var(--secondaryFg);
}

.button.third > .span-ball {
  background-color: var(--secondaryHi);
}


.top-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 50%;
}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 50%;
}



@media screen and (max-width: 950px) {
    .title {
      font-size: 3rem !important;
    }
    .slogun{
      top: 40vh;
      padding: 0 9%;
    }
    .slogun h1{
      /* font-size: 55px; */
      /* font-size: clamp(1rem, 5vw, 3rem); */
      font-size: 10vw;

      font-weight: 700;
      color: #ffffff;
    }

    .slogun p{
      /* font-size: 25px; */
      font-size: clamp(0.75rem, 2vw, 1.5rem);
      margin: 2rem 0;
      font-weight: 400;
      color: #02244c;
    }
  }
@media screen and (max-width: 1000px) {
  .title {
    font-size: 3.75em;
  }
  
  .title > p {
    line-height: 5rem;
    letter-spacing: -0.3rem;
  }
  

  
  .material-icons {
    display: flex;
    align-items: center;
  }
  
}
@media only screen and (max-width: 767px) {
  /* .wave img {
    max-width: 100%;
    
    position: relative;
    bottom: -1rem;
  } */
  .landing {
    /* background-size: 150% 38%; */
    background-size: cover;
    justify-content: flex-end;
    /* background-position-y: 14rem; */
    background-attachment: local;
    /* min-height: 110vh; */
  }
 

  /* .slogun::after {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: 0.35;
    border-radius: 50%;
    height: 20rem;
    width: 20rem;
    background: #ca1f25d4;
    filter: blur(100px);
  

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */
  
  /* .slogun h1{
    font-size: 5vw;
    font-weight: 700;
    color: #02244c;
  } */
  .slogun p{
    /* font-size: 25px; */
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin: 2rem 0;
    font-weight: 400;
    color: #02244c;
  }
  .wave img {
    max-width: 192%;
    position: relative;
    right: 22rem;
    bottom: -1rem;
  }

}



body {
  margin: 0;
  -webkit-touch-callout: none;

}

#globeCanvas {
  height: 100vh;
}

.container {
  position: relative;
  background-color: #040d21;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-lights {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
