@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600;700;800;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; 
}

html, body {
  position: relative;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  background: #050505;
  color: white;
}

#web-container{
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.container{
  width: 100%;
  position : fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
}

.animate{ transition: 0.5s ease; }
.animated{ transition: 0.5s ease; }

#width-100{
    width: 100vw;
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #e0e0e0 #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #00000000;
}

*::-webkit-scrollbar-thumb {
  background-color: #e0e0e020;
  border-radius: 10px;
  border: 2px solid #000000;
}

a {
  color: #808080;
  text-decoration: none;
}

section {
  position: relative;
  padding: 100px clamp(20px, 8%, 8%);
  max-width: 100vw;
}

section div h2 {
  font-size: 45px;
  font-weight: 800;
  z-index: 1;
}

section div h2 b {
  position: relative;
  display: inline-block;
  font-weight: 800;
}

section div h2 b::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: -3px;
  right: -3px;
  height: 10px;
  background-color: #C435E8;
  z-index: -1;
}

.loader {
  animation: rotate 2s infinite;
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}

.loader:before {
  animation: ball1 1s infinite;
  background-color: #fff;
  box-shadow: 30px 0 0 #C435E8;
  margin-bottom: 10px;
}

.loader:after {
  animation: ball2 1s infinite;
  background-color: #C435E8;
  box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }

  50% {
    transform: rotate(360deg) scale(1.2);
  }

  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #C435E8;
  }

  50% {
    box-shadow: 0 0 0 #C435E8;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 #C435E8;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }

  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}

.primary-btn {
  display: inline-block;
  background-color: #C435E8;
  color: white;
  padding: 12px 30px;
  border: 1px solid #C435E8;
  border-radius: 200px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 150px #C435E8;
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  padding: 12px 30px;
  color: white;
  border: 1px solid white;
  border-radius: 200px;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.secondary-btn:hover {
  color: #C435E8;
  border: 1px solid #C435E8;
}

.custom-btn-1 {
  display: inline-block;
  padding: 20px 50px;
  border-radius: 2000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  gap: 5px;
  background: linear-gradient(45deg, #101010, #606060);
  color: white;
  transition: 0.4s ease;
}

.custom-btn-1:hover {
  transform: scale(1.05);
}

.custom-btn-1-b {
  font-size: 25px;
  font-weight: 700;
}

.custom-btn-1-i {
  font-weight: 200;
}

.arrow-el {
  max-width: 120px;
  width: 100%;
  height: 8px;
  background-color: #C435E8;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

#header a:nth-child(1) img {
  height: 50px;
}

#footer {
  position: relative;
  padding: 100px 50px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
}

#footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

#footer-links a{
  font-size: 30px;
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2000px;
  transition: 0.4s ease;
}

#footer-links a:hover{
  transform: scale(1.1);
  background-color: #202020;
}

#footer-links a img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

#footer-container {
  text-align: center;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

#footer-container h2 {
  font-size: 48px;
  font-weight: 1000;
}

#footer-container p {
  max-width: 600px;
  width: 100%;
  margin: 15px auto;
}

#footer-container p a b{
  color: #000000;
  font-weight: 800;
}

#footer-container img {
  max-width: 100px;
  width: 100%;
}






#display {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 10000000;
  background-color: #000000;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#display-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background: #000000dd;
  opacity: 0;
  display: none;
  transition: 1s ease;
}

#display::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: unset;
  z-index: 1000000000;
  background-color: #C435E8;
  width: 0px;
  height: 100%;
  transition: 2s ease;
}

#display .loader{
  z-index: 100000;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

#display video{
  z-index: 10000000;
  max-width: 800px;
  max-height: 70vh;
  border-radius: 20px;
}

#display iframe{
  z-index: 10000000;
  max-width: 800px;
  width: 100%;
  margin: 0 100px;
  max-height: 70vh;
  height: 100vh;
  aspect-ratio: 9/16;
  border-radius: 20px;
  border: 0;
}

#display img{
  z-index: 10000000;
  width: 100%;
  max-width: 800px;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 20px;
}

#display.img video{
  display: none;
}
#display.img iframe{
  display: none;
}

#display.video img{
  display: none;
}
#display.video iframe{
  display: none;
}

#display.frame img{
  display: none;
}
#display.frame video{
  display: none;
}

#display i{
  z-index: 100000000;
  font-size: 30px;
  color: #ffffff80;
  position: absolute;
  top: 15%;
  right: 10%;
  cursor: pointer;
  transition: 0.4s ease;
}

#display i:hover{
  color: #ffffff;
  transform: scale(1.2);
}

@keyframes loadAnim2 {
  0%{
    width: 0px;
  }
  50%{
    width: 500px;
  }
  100%{
    width: 0px;
  }
}





#document{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: column;
  gap: 10px;
  padding-top: 150px;
  background-color: #ffffff;
  color: #000000;
}

#document h1{
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
}

#document h2, #document h3, #document h4, #document h5, #document h6{
  margin: 40px 0 10px 0;
}

#document ul, #document ol{
  margin-left: 30px;
}






@media screen and (max-width: 1000px){
  body {
    font-size: 16px;
  }

  section div h2 {
    font-size: 35px;
  }
}

@media screen and (max-width: 550px) {
  #header{
    padding: 20px;
  }

  #display iframe{
    margin: 0 20px;
    height: 100vh;
    aspect-ratio: unset;
  }
  #display i{
    top: 8%;
    right: 9%;
  }

  #footer-container h2 {
    font-size: 38px;
  }

  #footer {
    position: relative;
    padding: 100px 50px 75px 50px;
  }
}