#header {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 12px;
}

#header .text {
  align-self: flex-start;
  padding: 0px;
  color: var(--white-ter);
  font-size: 20px;
  font-family: "Gotham Bold", sans-serif;
  font-weight: bold;
}

#top .line {
  height: 30px;
  width: 100%;
  left: 0;
  position: absolute;
  border: solid 0.5px white;
  overflow: hidden;
  display: flex;
  font-family: "Gotham Bold", sans-serif;
  background: linear-gradient(
    90deg,
    rgba(139, 244, 110, 0.75) 0%,
    rgba(132, 232, 243, 0.75) 96.54%
  );
  gap: 90%;
  flex-wrap: nowrap;
}

#run {
  animation: run 6s infinite linear;
  white-space: nowrap;
  padding-left: 100%;
  margin-top: 2px;
  font-size: 18px;
  color: black;
}

@keyframes run {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

#header .sign-up {
  width: 100px;
  height: 30px;
  border: double 0.5px transparent;
  border-radius: 5px;
  background-image: linear-gradient(black, black),
    linear-gradient(
      90deg,
      rgba(139, 244, 110, 0.75) 0%,
      rgba(132, 232, 243, 0.75) 96.54%
    );
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin-top: 0px;
  visibility: hidden;
}

.sign-up p {
  font-size: 15px;
  font-family: "Gotham Pro Regular", sans-serif;
  font-weight: bold;
}

#top .line-2 {
  visibility: hidden;
}

#top .marquee__inner {
  visibility: hidden;
}

#top .marquee__inner span {
  visibility: hidden;
}

#top .marquee__inner_2 span {
  visibility: hidden;
}
@media only screen and (min-width: 768px) {
  #header {
    margin-top: 36px;
  }

  #top .line-2 {
    height: 30px;
    width: 100%;
    left: 0;
    position: absolute;
    margin-bottom: 10px;
    border: solid 0.5px white;
    font-family: "Gotham Bold", sans-serif;
    display: flex;
    flex-direction: row;
    user-select: none;
    white-space: nowrap;
    background: linear-gradient(
      90deg,
      rgba(139, 244, 110, 0.75) 0%,
      rgba(132, 232, 243, 0.75) 96.54%
    );
    visibility: visible;
  }

  #top .marquee__inner {
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    width: calc(100% - 24px);
    margin-top: 2px;
    font-size: 18px;
    color: black;
    visibility: visible;
  }

  #top .marquee__inner span {
    animation: run 6s linear infinite;
    display: inline-block;
    padding-left: calc(100% - 24px);
    margin-left: 10px;
    visibility: visible;
  }

  #top .marquee__inner_2 span {
    animation-delay: 2s;
    margin-left: 100px;
    visibility: visible;
  }

  #top .line {
    visibility: hidden;
  }

  #header .sign-up {
    width: 160px;
    height: 30px;
    border: double 2px transparent;
    border-radius: 5px;
    background-image: linear-gradient(black, black),
      linear-gradient(
        90deg,
        rgba(139, 244, 110, 0.75) 0%,
        rgba(132, 232, 243, 0.75) 96.54%
      );
  }

  .sign-up p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1440px) {
  #header .sign-up {
    width: 200px;
    height: 48px;
    border: double 2px transparent;
    border-radius: 10px;
    background-image: linear-gradient(black, black),
      linear-gradient(
        90deg,
        rgba(139, 244, 110, 0.75) 0%,
        rgba(132, 232, 243, 0.75) 96.54%
      );
  }

  .sign-up p {
    font-size: 32px;
  }
}
