/* General Mobile Devices */
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .logo-header {
    margin-bottom: 5rem;
  }
  .intro-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 5rem;
    width: 90% !important;
    gap: 4rem;
  }

  .intro-section__box {
    margin-left: 0;
    padding-left: 0;
  }

  .banner__text h1 {
    font-size: 3rem;
  }

  .register_form {
    width: 100%;
  }

  .register_content__box {
    height: 35vh;
  }

  .investment__cards {
    grid-template-columns: 1fr !important;
    justify-content: center !important;
  }
}

/* regular desktop screen */
@media only screen and (min-width: 1024px) and (max-width: 1024px) {
  .logo-header {
    margin-bottom: 3rem;
  }
  .intro-section {
    padding: 2rem 3rem;
    width: 100% !important;
  }

  .intro-section__box {
    margin-left: 0;
    padding-left: 0;
  }

  .investment__cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Tablet and iPad Screen  */
@media only screen and (min-width: 320px) and (max-width: 768px) {
  .offers {
    flex-direction: column;
  }

  .logo-header {
    margin-top: 10rem;
  }

  .offers__first__child {
    width: 100%;
  }

  .offers__second__child {
    width: 100%;
  }
  .register_form {
    width: 70%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .investment__cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1366px) and (max-width: 1430px) {
  .investment__wrapper {
    width: 90%;
  }

  .investment__cards {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Small Screen Devices */
@media only screen and (min-width: 320px) and (max-width: 468px) {
  .flex-sm-column {
    flex-direction: column;
  }

  .text-sm-center {
    text-align: center;
  }

  .w-sm-100 {
    width: 100%;
  }

  .d-sm-none {
    display: none;
  }

  .g-sm-2 {
    gap: 2rem;
  }

  .align-sm-center {
    align-items: center;
  }

  .mt-sm-2 {
    margin-top: 2rem;
  }

  .mt-sm-5 {
    margin-top: 5rem;
  }

  .mb-sm-2 {
    margin-top: 2rem;
  }
}
