@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;600&display=swap");
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  transition: 1s;
  will-change: opacity, filter;
}

body {
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: hidden;
  font-weight: 600;
}

.xy-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-screen {
  height: 100vh;
}

.intro {
  margin-bottom: 140vh;
  position: relative;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
}

.intro svg {
  max-width: 1200px;
  stroke-dasharray: 700;
  width: 100%;
  stroke-dashoffset: 700;
}
.intro svg path {
  stroke: rgba(0, 0, 0, 0.15);
}

.intro-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  font-size: 12vw;
  justify-content: center;
  font-family: "Jost", sans-serif;
  color: #000000;
  display: flex;
  align-items: center;
  transition: 1s;
  will-change: opacity, font-size;
}

.intro-text span:nth-child(odd) {
  opacity: 0;
  transform: translateY(40px);
  font-size: 2vw;
}

.intro-text span:nth-child(even) {
  opacity: 0;
  transform: translateY(-40px);
  font-size: 2vw;
}

@media only screen and (max-width: 600px) {
  .intro-text {
    font-size: 12vw; /* Adjust the font size for smaller screens */
  }

  .intro-text span:nth-child(odd),
  .intro-text span:nth-child(even) {
    font-size: 6vw; /* Adjust the font size for smaller screens */
  }
}


.title {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 94px;
  color: rgb(0, 166, 255);
  font-family: "Jost", sans-serif;
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
.title span:first-child {
  color: #000000;
  font-size: 34px;
  margin-bottom: 6px;
}
.title span {
  white-space: nowrap;
}

.content {
  left: 0;
  width: 100%;
  color: #333;
  z-index: 2;
  height: 88vh;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 100vh;
  background-color: #ffffff;
  padding: 0 5% 40px;
  transform: scale(0.8);
}

.inner {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1.4vw;
       column-gap: 1.4vw;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.inner img {
  display: block;
  margin-bottom: 1.4vw;
}

.loading {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  font-weight: normal;
  justify-content: center;
  font-size: 28px;
  flex-direction: column;
  font-family: "Jost", sans-serif;
}

.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 4px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #000000;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.scroll {
  position: fixed;
  width: 100%;
  bottom: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  font-weight: normal;
  align-items: center;
}
.scroll svg {
  width: 26px;
  -webkit-animation: down 1s alternate infinite both;
          animation: down 1s alternate infinite both;
}

@-webkit-keyframes down {
  0% {
    transform: translatey(-6px);
  }
  100% {
    transform: translatey(6px);
  }
}

@keyframes down {
  0% {
    transform: translatey(-6px);
  }
  100% {
    transform: translatey(6px);
  }
}

@media (max-width: 1200px) {
  .title {
    font-size: 8.7vw;
  }
  .title span:first-child {
    font-size: 3vw;
  }

  .intro-text {
    font-size: 4vw;
  }
}