* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inter;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

:root {
  --gap: 10px;
  --big-gap: 15px;
  --padding: 15px;
  --radius: 10px;
  --gamemode-color: rgb(179, 255, 0);
  --money-color: rgb(255, 251, 0);
  --preview-color: rgb(255, 107, 107);
}
[data-theme="dark"] {
  --turner: white;
  --turner-opacity: rgba(255, 0, 0, 0);
  --turner-turn: black;
  color: white;
  --bg-color: #000e12;
  --bg-transparency: rgba(0, 0, 0, 0.5);
  .svg-color {
    fill: white;
  }
  --fills: rgba(0, 208, 255, 0.056);
  --prime: #1a2a32;
  --prime2: #081b22;
}
[data-theme="light"] {
  color: black;
  --turner-turn: white;
  --bg-color: #dff2f2;
  --turner: black;
  --bg-transparency: rgba(255, 255, 255, 0.5);
  .svg-color {
    fill: black;
  }
}
ul,
li {
  list-style: none;
  list-style-type: none;
}
body {
  background-color: var(--bg-color);
  overflow-x: hidden !important;
}

.first-landing {
  height: 100vh;
}
.scroll-sections {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.scroll-sections .section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  flex-direction: column;
}
.scroll-sections .section.show {
}
.fade-out {
  opacity: 0;
  transform: translate(0, 15px);
  filter: blur(5px);
}
.scroll-sections .section .container {
  animation: fade-in 0.5s linear 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.scroll-sections .section .container > * {
  text-align: center;
}

@keyframes fade-in {
  0% {
    transform: translate(0, 50%);
    filter: blur(5px);
  }
  100% {
    transform: translate(0, 0px);
  }
}

.marquee-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -5;
}

.logos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  opacity: 0.08;

  transition: 1s cubic-bezier(0.66, -0.67, 0.35, 1.48);
  animation: marquee 35s linear infinite forwards;
  position: relative;
}
.logos-container.mobile {
  animation: marquee-mobile 35s linear infinite forwards !important;
}

.marquee-container::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(to top, var(--bg-color), transparent);
}
.logos-container.scale {
  scale: 2;
}

.logo-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background-image: url("rami.png");
  background-size: 100%;
  transition: 0.3s;
}

@keyframes marquee {
  0% {
    transform: translate(
        calc(0% - (100px * 8) - (8 * 5px)),
        calc(0% - (100px * 8) - (8 * 5px))
      )
      rotate(45deg);
  }
  100% {
    transform: translate(calc(0% - (100px * 1)), calc(0% - (100px * 1)))
      rotate(45deg);
  }
}
@keyframes marquee-mobile {
  0% {
    transform: translate(
      calc(0% - (100px * 1)),
      calc(0% - (100px * 8) - (8 * 5px))
    );
  }
  100% {
    transform: translate(calc(0% - (100px * 1)), calc(0% - (100px * 1)));
  }
}
.scroll-animation {
  opacity: 0;
  transform: translate(0, 30px);
  transition: 0.3s;
}
.show-transition {
  opacity: 1;
  transform: translate(0, 0px);
}
a,
a:active,
a:visited,
a:hover {
  color: var(--turner) !important;
  text-decoration: none; /* optional, removes underline */
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 500px) {
  body > .content {
    transition: 0.3s transform;
  }
  nav .mobile .burger {
    position: relative;
  }
  .swiped nav .mobile .burger span {
    width: 100% !important;
    background-color: var(--turner) !important;
    border-color: transparent !important;
  }
  .swiped nav .mobile .burger span:first-child {
    transform: translate(-50%, -50%);
    top: 50% !important;
    position: absolute;
    width: 5px !important;
    height: 100% !important;
    left: 50% !important;
  }
  .swiped {
    position: relative;
  }
  .swiped nav ul li {
    background-image: linear-gradient(to top, var(--turner) -500%, transparent);
    border-radius: var(--radius);
    width: 100%;
  }

  .swiped nav .desktop {
    width: 50%;
    position: fixed;
    left: 0 !important;
    top: 0 !important;
    transform: translate(-100%, 0) !important;
    background-image: linear-gradient(to top, var(--turner) -500%, transparent);
    display: flex;
    flex-direction: column;
    height: 100vmax;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--padding);
  }
  .swiped nav .desktop ul {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
    gap: var(--gap);
  }
  .swiped nav .desktop ul li {
  }
  .swiped nav .desktop .logo {
    order: -1;
  }
  .swiped nav {
    top: var(--top) !important;
  }
  .swiped {
    transform: translate(50%, 0);
  }
  #teleport-div {
    display: none;
  }
}

body:has(.swiped) {
  overflow: hidden !important;
}
