/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@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) {
    .logo img {
        width: 100%;
        max-width: 110px;
        height: auto;
        padding: 2px 0;
    }
    
    .banner-area {
        padding-top: 92px;
    }

    .latProTitle{
        display: block;
        justify-content: space-between;
        align-items: center;   
    }
    
    .latProTitle .title{
        width: 100%;
    }
    
    .latProTitle .title h3{
        font-size: 32px;
        margin: 0 0 15px 0;
    }

    .latProTitle .title p{
        margin: 0 0 20px 0;
    }
    
    .latProTitle .laProMore{
        color: #ec1f23;
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        text-align: center;
        align-items: baseline;
    }
    
    .latProTitle .laProMore .fa{
        color: #ec1f23;
        padding-left: 15px;
    }
    
    .latProTitle .laProMore:hover .fa{
        transition: all 1s ease-in-out;
        padding-left: 10px;
    }
    
    .laProBox{
        box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    }
    
    .laProBox .laProImg{
    
    }
    
    .laProBox .laProImg img{
        width: 100%;
        opacity: 1;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    
    .laProBox .laProImg:hover img{
        opacity: .5;
    }
    
    .laProBox .laProCon{
        padding: 0 15px 15px 15px;
    }
    
    .laProBox .laProCon h3{
        font-size: 20px;
        margin: 10px 0 6px 0;
    }
    
    .laProBox .laProCon h3 a{
        color: #ec1f23;
    }
    
    .laProBox .laProCon p{
        margin: 0 0 10px 0;
    }
    
    .laProBox .laProCon .laread{
        color: #ec1f23;
        cursor: pointer;
    }
    
    .whChooseBox{
        box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
        padding: 20px;
        min-height: 250px;
    }
    
    .whChooseBox .whImg{
    
    }
    
    .whChooseBox .whImg img{
        width: 100%;
        max-width: 64px;
    }
    
    .whChooseBox .whCon{
        
    }
    
    .whChooseBox .whCon h3{
        font-size: 20px;
        margin: 10px 0 8px 0;
        line-height: 26px;
    }
    
    .whChooseBox .whCon p{
        font-size: 15px;
        line-height: 26px;
    }
    
  }