@media (max-width:768px){

  /* HERO */
  .hero{
    min-height: 60vh !important;
    padding: 80px 20px 50px;

    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* HEADING */
  .hero h1{
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .hero p{
    font-size: 16px;
    line-height: 1.6;
  }

  /* BACK BUTTON */
  .back-btn{
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }

  /* SECTION */
  .section{
    padding: 50px 15px;
  }

  /* CARDS */
  .card{
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 25px 20px;
  }

  /* BENEFITS HEADING */
  .section h2{
    font-size: 30px;
  }

  /* CONTAINER */
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }

}
/* =========================
   💻 LAPTOP / DESKTOP ONLY
========================= */

@media (min-width:769px){

  .hero{
    min-height: 80vh !important;
  }

}