/* 
  ##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) {
    
    #header {
        position: relative;
        height: 165px !important;
        z-index: 1030;
    }
    
    .jat-main-title {
        font-size: 28px;
    }

    .jat-faq-title {
        font-size: 34px;
        font-weight: 700;
        color: #203f1d;
        margin-bottom: 18px;
    }

    .jat-title {
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .jat-section-title {
        font-size: 34px;
        font-weight: 700;
    }
    
    .moreSerBox{
        margin: 0 -20px;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        grid-gap: 20px;
        font-size: 16px;
        line-height: 1;
    }
    
    .moreSerBox .moreSer{
        width: calc(100%/2 - 20px);
        min-height: 68px;
        border-radius: 5px;
        border: 1px solid transparent;
        background-color: transparent;
        padding: 10px 15px;
        margin: 0;
        display: inline-block;
        transition: box-shadow .2s ease-in-out;
    }
    
    .moreSerBox .moreSer:hover{
        /* background-color: #f92f2c; */
        text-decoration: none;
        /* box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px; */
    }
    
    .moreSerBox .moreSer img{
        width: 56px;
        border-radius: 5px;
        padding-bottom: 12px;
        margin: auto;
        align-items: center;
        display: flex;
    }
    
    .moreSerBox .moreSer p{
        color: #ffffff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px;
        margin-bottom: 0px;
        padding-left: 0;
        text-align: center;
    }
  }