@media (max-width: 767px) {
}

@media (min-width: 768px) {
  .wrapper {
    height: 64px;

    .container {
      width: 100%;
      left: -8px;

      .nav {
        gap: 30px;
        margin-left: 136px;
      }
      .rightSide {
        min-width: 110px;
        .getStartButton {
          height: 38px;
          padding: 12px;
          border-radius: 8px;
          font-size: 14px;
          line-height: 38px;
        }
      }
    }

    .smallHeader {
      top: 24px;
      left: -8px;
      width: 630px;
      padding: 20px;
      border-radius: 8px;
      .nav {
        margin-left: 32px;
      }
    }
  }
}
.wrapper {
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: center;
  width: 100vw;

  .container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    transition: all 0.3s ease-in-out;

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      .navItem {
        color: #89898a;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
      }
      .navItem:hover {
        color: #ffffff;
      }
    }
    .rightSide {
      margin-left: auto;
      .getStartButton {
        background-image: linear-gradient(
          -68deg,
          #ae5efb 0%,
          #713cff 30%,
          #65a4ce 81%,
          #56e4de 100%
        );

        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0;
        text-align: center;
        background-color: #ffffff;
        transition: all 0.3s ease-in-out;
      }

      .getStartButton:hover {
        box-shadow: 0 4px 7px rgba(0, 0, 0, 0.15),
          0 100px 80px rgba(255, 255, 255, 0.02),
          0 42px 33px rgba(255, 255, 255, 0.024),
          0 22px 18px rgba(255, 255, 255, 0.028),
          0 12px 10px rgba(255, 255, 255, 0.034),
          0 7px 5px rgba(255, 255, 255, 0.04),
          0 3px 2px rgba(255, 255, 255, 0.07);
      }
    }
  }

  .smallHeader {
    background-color: #ffffff0c;
    backdrop-filter: blur(10px);

    .rightSide {
      .getStartButton {
        background-image: none;
        color: #000000;
      }
    }
  }
}
