/* Laptop device */
@media screen and (max-width: 1200px) {
}

/* Tablet device */
@media screen and (max-width: 1024px) {
  .target-card {
    flex-wrap: warp;
    align-items: center;
  }
  .one-card {
    width: 365px;
  }
  .one-content {
    padding: 0 40px;
  }

  .inspiration-video {
    width: 700px;
    height: 420px;
  }
}

/* Mobile device */
@media screen and (max-width: 640px) {
  #navbar-logo {
    padding: 12px 20px;
    gap: 10px;
    flex-direction: column;
  }
  .hero-heading h1 {
    font-size: 30px;
  }
  .btn-color {
    padding: 12px 20px;
  }
  .one-content h2 {
    font-size: 24px;
  }
  .two-content {
    flex-direction: column-reverse;
    align-items: center;
  }
  .two-content h3 {
    font-size: 18px;
  }

  #inspiration-content {
    margin: 50px 50px;
  }
  .inspiration-video {
    width: 400px;
    height: 320px;
  }

  #target-container {
    margin: 50px;
  }

  .target-card {
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
    flex-direction: column;
    gap: 24px;
  }
  .footer-container .bold {
    font-size: 16px;
  }
}

/* small Mobile device */
@media screen and (max-width: 425px) {
  #navbar-logo {
    padding: 12px 20px;
    flex-direction: column;
  }

  .footer-container .bold {
    font-size: 14px;
  }
  .footer img {
    width: 28px;
  }
}
