@media (min-width: 992px){
    .container{
      max-width: 1600px;
    }
  }
  /* Medium Scrren Size */
  @media (min-width: 768px){
    .card-body > h1{
        font-size: 1.1em;
        margin-bottom: 0.5rem;
    }
    .sm-wide {
      border:0;  
      width: 30% !important; 
      opacity: 0.8;
    }
  }
    .card-body > p{
        margin-bottom: 0.5rem;
        font-size: 1em;
    }
    /* Larger Screen Size */
    @media (min-width: 999px){
      .card-body > h1{
          font-size: 2em;
          margin-bottom: 0.5rem;
      }
      .card-body > p{
          margin-bottom: 0.5rem;
          font-size: 1.5em;
      }
      .sm-wide {
        border:0;  
        width: 30% !important; 
        opacity: 0.8;
      }
    }

     /* Small Screen Size */
     @media only screen and (max-width: 766px) {
      .sm-wide {
        border:0;  
        width: 80% !important; 
        opacity: 0.8;
      }
    }
