@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    .pzero {
        padding: 15px;
    }
    .mahobox{
    
    }
    
    .mahobox .mahoCon{
        
    }
    
    .mahobox .mahoCon h3{
        color: #ffffff;
        font-size: 36px;
        font-weight: 600;
        line-height: 44px;
        text-transform: capitalize;
        margin: 0 0 30px 0;
    }
    
    .mahobox .mahoCon p{
        color: #ffffff;
        font-size: 19px;
        font-weight: 500;
        line-height: 30px;
        text-transform: capitalize;
        margin: 0 0 32px 0;
    }
    
    .mahobox .mahoCon .mahaBtn{
        padding: 14px 20px;
        font-size: 600;
        color: #026839;
        background-color: #ffffff;
        border-radius: 4px;
        transition: background-color .2s ease-in-out;
    }
    
    .mahobox .mahoCon .mahaBtn:hover{
        text-decoration: none;
        color: #ffffff;
        background-color: #222222;
    }
    
    .mahonew{
    
    }
    
    .mahonew .mahohe{
        padding: 20px;
        background-color: #ffff00;
        border-radius: 20px 20px 0px 0px;
    }
    
    .mahonew .mahohe h3{
        color: #000000;
        margin: 0;
        font-size: 22px;
        font-weight: 600;
        text-align: center;
        text-transform: capitalize;
    }
  }