/* 
  ##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 .header-logo img {
      width: 220px;
      height: auto;
    }
    
    #header .header-nav-top .nav>li>a,
    #header .header-nav-top .nav>li>span {
        margin-left: 5px;
    }

    .home-intro p {
      color: var(--light);
      display: inline-block;
      font-size: 14px;
      font-weight: normal;
      line-height: 24px;
      text-align: center;
      margin-bottom: 0;
  }

  .becomebaSec{
    background-color: #095360;
}
.becomebaSec .row {
    display: flex;
    align-items: stretch;
}

.becomebaImg {
    height: 100%;
}

.becomebaImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* agar crop karna chale */
    /* object-fit: contain;  agar pura image dikhana ho bina crop kiye */
}

.becomebaCon{
    padding: 50px 10px;
}

.becomebaCon h3{
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
  margin: 0 0 15px 0;
}

.becomebaCon h4{
    color: #ffffff;
    font-size: 20px;
    margin: 12px 0 8px 0;
    display: flex;
    /* text-transform: uppercase; */
    align-items: flex-end;
    letter-spacing: 0.1px;
}

.becomebaCon h4 img{
    width: 100%;
    max-width: 46px;
    margin-right: 10px;
}

.becomebaCon p{
    color: #ffffff;
    line-height: 26px;
}
    
  }