@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column;  */
    align-items: center;
    padding: 14px 5vw;
    height: auto;

    .logo {
      font-size: 26px;
      img {
        width: 8rem;
      }
    }

    .logo2 {
      display: block;
    }

    .NavLinksContainer {
      padding: 20px;
      padding-bottom: 50px;
      height: 100vh;
      width: 40vw;
      position: absolute;
      top: 0px;
      left: -100%;

      display: flex;
      flex-direction: column;
      align-items: center;
      border-right: 2px solid var(--primaryColor);
      border-radius: 2px;
      box-shadow: 0px 2px 10px var(--primaryColor);
      transition: all 0.3s linear;

      background-color: #1a1a1a;
      .nav-links {
        color: var(--primaryColor);
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
      }
    }

    .hamburger {
      display: flex !important;
      flex-direction: column;
      margin-left: auto;
    }

    .loginBtn {
      display: none;
    }
  }
}

/* genrated code  */
/* resp.css */

/* Phones and small devices */
@media (max-width: 768px) {
  /* NAVBAR */

  .nav-links.show {
    display: flex;
  }

  /* HERO SECTION */
  .hero {
    padding: 20px 2vw;
    height: auto;
  }

  .hero .inner2 {
    flex-direction: column;
    align-items: center;
  }

  .hero .inner2 .inner3 {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero .inner2 .inner4 {
    width: 80%;
    margin-top: 20px;
    /* border: 10px solid var(--primaryColor);
    background-color: rgba(0, 0, 0, 0.4); */
  }

  /* SECTION SPACING */
  .section2 {
    padding: 30px 2vw;
  }

  .firstdiv {
    width: 100%;
    padding: 10px 0;
  }

  /* FONT SIZES */
  h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: center;
    padding-bottom: 10px;
  }

  p,
  li {
    font-size: 16px;
  }

  /* BUTTONS */
  button {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  .btnCont,
  .btnCont2 {
    flex-direction: column;
    align-items: center;
  }

  .functions {
    justify-content: center;
    align-items: center;
    width: 80%;
  }

  /* CIRCLES AND BOXES */
  .circleContainer {
    flex-direction: column;
    align-items: center;
  }

  .boxContainer {
    flex-direction: column;
    align-items: center;
    /* width: 90%; */
  }

  .box {
    width: 90%;
    height: auto;
    padding: 20px;
  }

  /* WHATSAPP SECTION */
  .whatsapp {
    right: 10px;
    bottom: 20px;
  }

  /* FOOTER */

  .footer {
    padding-top: 5px;
  }
  .footer ul {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .footer ul li {
    padding: 10px;
  }

  .footer h4 {
    text-align: center;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .logo2 {
    display: none;
  }
}
