@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) {

    .dblock{
      display: block !important;
    }

    .celeBtn , .celeBtn:hover {
        display: none !important;
        margin-top: 0;
        background-color: #000000;
        color: #ffffff !important;
        font-weight: 500;
        padding: 0.6rem 1.5rem!important;
        border-radius: 8px;
        border: 0;
        outline: 0;
        box-shadow: 7px 7px 20px 0 rgb(0 0 0 / 10%), 4px 4px 5px 0 rgb(0 0 0 / 10%);
        position: relative;
        display: block;
        width: fit-content;
        text-wrap: nowrap;
    }
    
    .celeBtn:hover {
        transform: translateY(-5px);
        transition: all 400ms;
        text-decoration: none !important;
        background-color: #0B77F6;
    }

    #about {
      position: relative;
      min-height: 61vw;
      padding-top: 44px !important;
  }
  
  #about .background-image {
      width: 100%;
  }
  
  .about .about-heighlight {
      margin-top: 5vh;
  }
  
  .about .section-title h1 {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px #000000;
  }
  
  .about .wrap-layer {
      position: relative;
  }

  .about .wrap-layer .background-layer{
    
  }

  .about .wrap-layer .background-layer img{
    width: 100%;
  }
  
  .about .text-layer {
      position: absolute;
      width: 100%;
      height: auto;
      top: 0;
      left: 0;
      padding: 30px 30px;
      font-size: 24px;
      line-height: 1.2;
      pointer-events: none;
      color: #fff;
  }
  
  .about .text-layer p{
      color: #ffffff;
      line-height: 22px;
      font-size: 15px;
  }
  
  .about .icon-boxes .text-layer {
      position: absolute;
      width: 100%;
      height: auto;
      top: 0;
      left: 0;
      padding: 10px 6px;
      text-align: center;
      vertical-align: middle;
      font-size: 24px;
      line-height: 1.2;
      pointer-events: none;
      color: #fff;
  }
  
  .about .icon-boxes .number {
      font-size: 20px;
      color: #ffffff;
      font-weight: 700;
      margin: 0 0 4px 0;
  }
  
  .about .icon-boxes .text {
    font-size: 12px;
    color: #ffffff;
    line-height: 15px;
  }


  }