/* Styles for Desktop */

/* Media Query for Tablets (landscape and portrait) */
@media only screen and (max-width: 1024px) {
    /* Styles for tablets */
  }
  
  /* Media Query for Tablets (portrait) */
  @media only screen and (max-width: 768px) {
    .single-solution-responsive {
        width: 60% !important;
        height: 250px !important;
    }
  }
  
  /* Media Query for Mobile Devices */
  @media only screen and (max-width: 480px) {
    .single-solution-responsive {
        width: 100% !important;
        height: 250px !important;
    }
    
    .font-48 {
        font-size: 25px;
    }
  }
  