/* 
  ##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) {

    .cta-content .section-heading h2 {
        font-size: 28px;
        line-height: 35px;
        color: #fff;
    }
    
    .whyBox{
        display: block;
    }
    
    .whyBox .whyImg{
        display: none;
        font-size: 2rem;
        margin-top: 1.5rem;
        margin-left: 0;
        position: relative;
        width: 20%;
        /* height: 5rem; */
    }
    
    .whyBox .whyImg img{
        width: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        margin: 8px;
    }
    
    .whyBox .whyImg .whyimgbg{
        background-color: #196AAE;
        width: 100%;
        max-width: 56px;
        aspect-ratio: 1/1;
        transform: rotate(45deg);
        border-radius: 3px;
        transition: 0.3s;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .whyBox .whyCon{
        width: 100%;
        padding: 0 10px;
    }
    
    .whyBox .whyCon h3{
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    
    .whyBox .whyCon p{
        margin: 0;
    }
    
  }