/* Landing Page */
  .page-template-template-landing-page{
    body{
      min-width: unset !important;
    }
    color: #DCD7CE;
    a{
      color: #DCD7CE;
      text-decoration: none;
      transition: ease-in all .3s;      
    }    
    h1, .lp-newsletter,.nav{
      font-family: "p22-typewriter", sans-serif !important;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .fixed, .pum, .mobile-header{
      display: none;
    }
    main{
      width: 100%;
      min-height: 100vh;
      box-sizing: border-box;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;      
      .bg-video{
        position: absolute;        
        object-fit: cover;
        width: 100%;
        height: 100%;
      }      
      .bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;     
        @media screen and (max-width:768px){
          object-fit: cover;
          object-position: center;
        }
      }
      section{
        position: relative;
        .container{
          width: 100%;
          max-width: 1080px;
          margin: 0 auto;
          padding: 0 15px;
          display: flex;
          box-sizing: border-box;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 30px;
          @media screen and (max-width:768px){
            flex-direction: column;
          }
        }
        h1{
          font-size: 36px;
          @media screen and (max-width:768px){
            text-align: center;
          }
        }
        .nav{
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;          
          gap: 30px;
          a{
            font-size: 20px;
          }
          a:hover{
            color: #971917;
          }
          @media screen and (max-width:768px){
            gap: 20px;
            justify-content: center;
            a{
              font-size: 14px;
            }
          }
        }
        .social{
          display: flex;
          justify-content: flex-start;
          flex-wrap: wrap;
          gap: 10px;
          a{
            width: 30px;
            height: 30px;
            border: solid 2px #DCD7CE;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
          }
          a:hover{
            color: #971917;
            border-color: #971917;
          }
          @media screen and (max-width:768px){
            justify-content: center;
          }
        }
        .lp-newsletter{
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 20px;
          i{
            width: 30px;
            height: 30px;
            border: solid 2px #DCD7CE;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            transition: ease-in all .3s;
          }
          @media screen and (max-width:768px){
            justify-content: center;
          }
        }
        .lp-newsletter:hover{
          color: #971917;
          i{
           border-color: #971917; 
          }          
        }
      }
      .lp-header{
        padding: 30px 0 0;
      }
      .lp-footer{
        padding: 0 0 30px 0;
      }
    }
  }
  
  .page-template-template-landing-page *{
    cursor: url('https://www.rogertaylorofficial.com/wp-content/themes/rogertaylor/landing-page/drumstick-cursor-2.png') 16 16, auto !important;
}