/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  .logo{
    width: 200px;
  }
  .promo-team{
    width: 100%;
    position: relative;
    top: -30px;
    z-index: -1;
  }
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  .logo{
    width: 200px;
  }
  .promo-team{
    width: 100%;
    position: relative;
    top: -30px;
    z-index: -1;
  }
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  .logo{
    width: 200px;
  }
  .promo-team{
    width: 100%;
    position: relative;
    top: -30px;
    z-index: -1;
  }
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .logo{
    width: 200px;
  }
  .promo-team{
    width: 100%;
    position: relative;
    top: -30px;
    z-index: -1;
  }
      
  
  
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  .logo{
    width: 150px;
  }
  .promo-team{
    width: 192%;
    position: relative;
    top: 10px;
    z-index: -1;
  }
  .nav-link{
    text-align: center;
    margin-top: 1rem;
  }
  .cta .cta-inner {
    padding: 1rem;
    margin: 0rem;
  }
  .cta .cta-inner .section-heading {
    padding-top: 3rem;
  }
  .tips-list li {
    padding-left: 0rem;
  }
      
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  .logo{
    width: 150px;
  }
  .promo-team{
    width: 192%;
    position: relative;
    top: 10px;
    z-index: -1;
  }
  .nav-link{
    text-align: center;
    margin-top: 1rem;
  }
  .cta .cta-inner {
    padding: 1rem;
    margin: 0rem;
  }
  .cta .cta-inner .section-heading {
    padding-top: 3rem;
  }
  .tips-list li {
    padding-left: 0rem;
  }
    
  
}



@media (max-width: 375px) {
  .logo{
    width: 150px;
  }
  .promo-team{
    width: 192%;
    position: relative;
    top: 10px;
    z-index: -1;
  }
  .nav-link{
    text-align: center;
    margin-top: 1rem;
  }
  .cta .cta-inner {
    padding: 1rem;
    margin: 0rem;
  }
  .cta .cta-inner .section-heading {
    padding-top: 3rem;
  }
  .tips-list li {
    padding-left: 0rem;
  }
  
}





