/* 
  ##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-top {
        display: flex;
        align-items: center;
        border-bottom: 2px solid rgba(0, 0, 0, .06);
        height: auto;
        min-height: 42px;
        background-color: #473f2b;
    }
    
    #header .header-nav-top .nav>li>a, #header .header-nav-top .nav>li>span, #header .header-nav-top .nav>li>span a {
        color: rgb(255, 255, 255);
        font-size: 14px;
        padding: 3px 10px;
        display: inline-block;
        letter-spacing: -.5px;
    }

    .ypt-heroText {
        font-size: 13px;
        line-height: 1.75;
        color: #555;
        max-width: 480px;
    }

    .ypt-btnPrimary {
        background: #daa625;
        color: #ffffff;
        padding: 14px 20px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
    }

    .ypt-btnSecondary {
        margin-left: 14px;
        border: 1.8px solid #ffffff;
        padding: 12px 20px;
        border-radius: 50px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
    }
    
  }