/*
  Author: Lumberjacks
  Template: Holy Wood (Coming Soon)
  Version: 1.0
  URL: http://themeforest.net/user/Lumberjacks/
*/



/* TABLE OF CONTENTS

  1. Import section
  2. Basic styles
  3. Typography
  4. Breakpoint for high-res devices
  5. Header
  6. Product
  7. Subscribe
  8. Contact
  9. Footer
  10. Breakpoints

*/



/* 1. IMPORT SECTION */

  @import url("bootstrap.css");
  @import url("http://fonts.googleapis.com/css?family=Open+Sans:700,300,600&amp;subset=latin,latin-ext");
  @import url("font-awesome.min.css");
  @import url("featherlight.css");
  @import url("lj-color-switcher.css");



/* 2. BASIC STYLES */

  html, body {
    height: 100%;
  }

  body {
	font: 22px/1.5 "Open Sans", "Century Gothic", "Trebuchet MS", Helvetica, sans-serif;
	background-color: #fff;
	color: #27272c;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
  }

  a { 
    color: #00dd9d;
    transition: all 0.125s ease-in-out 0s;
    -moz-transition: all 0.125s ease-in-out 0s;
    -webkit-transition: all 0.125s ease-in-out 0s;
    -o-transition: all 0.125s ease-in-out 0s;
    -ms-transition: all 0.125s ease-in-out 0s;
  }

  a:hover {
    color: #00dd9d;
  }

  a, a:hover, a:active, a:focus {
    outline: 0;
    border: 0;
    text-decoration: none;
  }

  .lj-float-left {
    float: left;
  }

  .lj-float-right {
    float: right;
  }
  
  .lj-block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .lj-show {
    display: block !important;
  }
  
  .lj-hide {
    display: none !important;
    visibility: hidden !important;
  }

  .lj-preloader {
    background: #f2f3f7 url('../img/preloader.svg') no-repeat center center;
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
  }



/* 3. TYPOGRAPHY */

  p {
    line-height: 1.5;
  }
    
  .lj-text-uppercase {
    text-transform: uppercase;
  }

  .lj-text-center {
    text-align: center;
  }

  .lj-text-left {
    text-align: left;
  }

  .lj-text-right {
    text-align: right;
  }

  .lj-text-justify {
    text-align: justify;
  }

  .lj-text-underline {
    text-decoration: underline;
  }



/* 4. BREAKPOINT FOR HIGH-RES DEVICES */

  @media
    only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (   min--moz-device-pixel-ratio: 2),
    only screen and (     -o-min-device-pixel-ratio: 2/1),
    only screen and (        min-device-pixel-ratio: 2),
    only screen and (                min-resolution: 192dpi),
    only screen and (                min-resolution: 2dppx) {

    .lj-logo-1x {
      display: none !important;
    }
    
    .lj-logo-2x {
      display: block !important;
    }

  } 



/* 5. HEADER */

  header {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #2c2a39 !important;
  }
  
  header > .container {
    position: relative;
    padding: 100px 0 75px;
  }
  
  .lj-overlay {
    width: 100%;
    height: 100%;   
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .lj-background-repeat {
      background-repeat: repeat;
  }
  
  .lj-background-no-repeat {
    background-repeat: no-repeat;
  }
  
  .lj-overlay-none {
    display: none;
    visibility: hidden;
  }
  
  .lj-overlay-image {
    background-image: url('../img/lines.png');
    background-repeat: repeat;
  }
  
  .lj-overlay-color {
      background-color: rgba(39,39,44,0.8);
  }
  
  .lj-overlay-gradient {
    background: -moz-linear-gradient(top,  rgba(39,39,44,0) 0%, rgba(39,39,44,1) 95%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(39,39,44,0)), color-stop(95%,rgba(39,39,44,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(39,39,44,0) 0%,rgba(39,39,44,1) 95%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(39,39,44,0) 0%,rgba(39,39,44,1) 95%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(39,39,44,0) 0%,rgba(39,39,44,1) 95%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(39,39,44,0) 0%,rgba(39,39,44,1) 95%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002c2a39', endColorstr='#2c2a39',GradientType=0 ) progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/1x1.png'); /* IE6-9 fallback on horizontal gradient */
    pointer-events:none;
  }

  header.yt-background {
    background-image: url('../img/video.html');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
  }

  .mobile .mbYTP_wrapper,
  .tablet .mbYTP_wrapper {
    z-index: -1 !important;
  }

  .mobile .yt-controls,
  .tablet .yt-controls {
    display: none;
  }

  .yt-controls {
    margin-top: 50px;
    text-align: center;
  }

  .yt-controls a {
    display: inline-block;
    color: #fff;
    width: 20px;
  }

  .yt-controls a:hover { 
    color: #00dd9d;
  }
  
  .lj-logo a,
  .lj-logo img {
    width: 90px;
    height: 60px;
  }
  
  .lj-logo a {
    display: inline-block;
  }
  
  .lj-logo img {
    vertical-align: bottom;
  }
  
  .lj-logo-1x {
    display: block;
  }
  
  .lj-logo-2x {
    display: none;
  }

  .lj-text-button {
    text-align: right;
  }

  .lj-text-button span {
    line-height: 56px;
    color: #fff;
    margin: 0 25px;
  }

  .lj-text-button a,
  .lj-text-button a:focus {
    height: 60px;
    line-height: 56px;
    text-align: center;
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.75);
    font-weight: 700;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 25px;
  }

  .lj-text-button a:hover {
    background-color: #00dd9d;
    color: #fff;
    border: 2px solid #00dd9d;
  }

  .lj-title {
    margin-top: 150px;
  }
  
  .lj-title h1 {
    font-size: 3em;
    font-weight: 300;
    color: #fff;
    margin: 0;
    word-wrap: break-word;
  }
  
  .lj-title span {
    color: #fff;
    font-weight: 700;
  }

  .lj-title-paragraph {
    margin-top: 25px;
  }

  .lj-title-paragraph p {
    color: #fff;
    margin: 0;
  }

  .lj-countdown {
    margin-top: 40px;
    text-align: center;    
    color: #fff;
  }

  .lj-countdown > * {
    text-align: center;
  }

  .lj-countdown div {
    display: inline-block;
  }

  .lj-countdown div span {
    width: 150px;
    display: block;     
  }

  .lj-countdown div span:first-child {
    height: 48px;
    font-weight: 300;
    font-size: 3em;
    line-height: 48px;
  }

  .lj-countdown div span:last-child {
    height: 20px;
    font-weight: 300;
    font-size: 0.9em;
    line-height: 20px;
  }

  .lj-scroll-down {
    margin-top: 100px;
  }

  .lj-scroll-down a,
  .lj-scroll-down a:focus {
    width: 45px;
    height: 45px;
    display: block;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
    text-align: center;
    line-height: 41px;
    color: #fff;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.75);
    margin: 0 auto;
  }

  .lj-scroll-down a:hover {
    color: #fff;
    background-color: #00dd9d;
    border: 2px solid #00dd9d;
  }



/* 6. PRODUCT */

  .product {
	padding: 150px 0;
	background-color: #27272c;
  }

  .lj-product-image img {
    max-width: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1; 
    transition: all 0.125s ease-in-out 0s;
    -moz-transition: all 0.125s ease-in-out 0s;
    -webkit-transition: all 0.125s ease-in-out 0s;
    -o-transition: all 0.125s ease-in-out 0s;
    -ms-transition: all 0.125s ease-in-out 0s;
  }

  .lj-product-image img:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;   
  }

  .lj-product h3 {
    font-weight: 300;
    font-size: 2.5em;
    margin: 0;
    color: #fff;
  }

  .lj-product h3 strong {
    font-weight: 600;
  }

  .lj-product p {
    color: #b9b8c2;
    margin: 20px 0 0;
  }

  .lj-product-button-left,
  .lj-product-button-right {
    height: 60px;
    line-height: 56px;
    text-align: center;
    display: inline-block;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 25px;
    margin: 25px 0 0;
  }

  .lj-product-button-left {
	border: 2px solid #f84545;
	background-color: #853131;
	margin-right: 10px;
  }

  .lj-product-button-left i {
    margin-left: 5px;
    color: #fff;
  }

  .lj-product-button-left:hover,
  .lj-product-button-left:focus {
	color: #fff;
	border: 2px solid #f75e5e;
	background-color: #853131;
  }

  .lj-product-button-left:hover i {
    color: #fff;
  }

  .lj-product-button-right {
    color: #fff;
    background-color: #3f3c52;
    border: 2px solid #3f3c52;
  }

  .lj-product-button-right:hover,
  .lj-product-button-right:focus {
    color: #fff;
    background-color: #00dd9d;
    border: 2px solid #00dd9d;
  }



/* 7. SUBSCRIBE */

  .subscribe {
	padding: 150px 0;
	background-color: #853131;
  }

  .lj-subscribe-title h3 {
    font-weight: 300;
    font-size: 2em;
    margin: 0;
    color: #fff;
  }

  .lj-subscribe-title h3 strong {
    font-weight: 600;
  }

  .lj-subscribe-title p {
    color: #b9b8c2;
  }

  .lj-subscribe-form {
    text-align: center;
  }

  .lj-subscribe-form input:focus {
    outline: 0;
  }

  .lj-subscribe-form input[type=text],
  .lj-subscribe-form input[type=submit] {
    height: 60px;
    line-height: 60px;  
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    transition: all 0.125s ease-in-out 0s;
    -moz-transition: all 0.125s ease-in-out 0s;
    -webkit-transition: all 0.125s ease-in-out 0s;
    -o-transition: all 0.125s ease-in-out 0s;
    -ms-transition: all 0.125s ease-in-out 0s;  
  }

  .lj-subscribe-form input[type=text] {
    width: 350px;
    background-color: #fff;
    color: #747d93;
    font-weight: 300;
    padding: 0 20px;
    margin-right: 10px;
    border: 2px solid #fff;
  }

  .lj-subscribe-form input[type=text]:focus {
    border: 2px solid #5b82f7;
  }

  .lj-subscribe-form input[type=submit] {
    text-align: center;
    background-color: #00dd9d;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 40px;
    border: 0;
  }

  .lj-subscribe-form input[type=submit]:hover {
    color: #fff;
    background-color: #f84545;
  }

  .lj-subscribe-message {
    display: inline-block;
    height: 15px;
    line-height: 15px;
    padding: 0 20px;
    color: #b9b8c2;
    font-size: 0.9em;
    margin-top: 15px;
  }

  .lj-subscribe-message i {
    margin-right: 5px;
  }

  .lj-subscribe-message .fa-warning {
    color: #cc3e4a;
  }

  .lj-subscribe-message .fa-check {
    color: #2cbf6d;
  }



/* 8. CONTACT */

  .contact {
    background-color: #333333;
    padding: 75px 0;
  }

  .lj-contact h4 {
    text-transform: uppercase;
    margin: 0 0 25px;
    color: #fff;
  }

  .lj-contact p {
    margin: 0;
    color: #b9b8c2;
  }



/* 9. FOOTER */

  .footer {
    background-color: #2c2a39;
    padding: 50px 0;
  }

  .lj-footer-copyrights p {
    font-size: 0.9em;
    line-height: 40px;
    margin: 0;
    color: #b9b8c2;
  }

  .lj-footer-copyrights a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
  }

  .lj-footer-copyrights a:hover {
    color: #00dd9d;
  }

  .lj-footer-socials {
    text-align: right;
  }

  .lj-footer-socials ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
  }

  .lj-footer-socials li {
    display: inline-block;
    margin-left: 10px;
  }

  .lj-footer-socials li a {
    width: 40px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #524e6b;
    color: #b9b8c2;
    font-size: 1.25em;
  }

  .lj-footer-socials li a:hover {
    background-color: #00dd9d;
    color: #fff;   
  }



/* 16. BREAKPOINTS */

  @media (max-width: 1199px) {

    /* 7. SUBSCRIBE */

    .lj-subscribe-title {
      text-align: center;
    }

    .lj-subscribe-title h3 {
      font-size: 2.5em;
    }

  }

  @media (min-width: 768px) and (max-width: 991px) {

    /* 6. PRODUCT */
    
    .lj-product {
      margin-top: 40px;
    }

  }

  @media (max-width: 767px) {

    /* 5. HEADER */

    .lj-logo,
    .lj-text-button {
      text-align: center;
    }

    .lj-text-button {
      margin-top: 50px;
    }

    .lj-title h1,
    .lj-title-paragraph p {
      padding: 0 20px;
    }

    .lj-button-right {
      margin-top: 20px;
    }

    /* 6. PRODUCT */
    
    .lj-product {
      margin-top: 40px;
    }

    /* 7. SUBSCRIBE */

    .lj-subscribe-form input[type=text],
    .lj-subscribe-form input[type=submit] {
      margin-top: 20px;
    }

    .lj-subscribe-form input[type=text] {
      width: 90%;
      margin-right: 0;
    }

    /* 8. CONTACT */

    .lj-contact {
      text-align: center;
      margin-top: 75px;
    }

    .lj-contact:first-child {
      margin-top: 0;
    }

    /* 9. FOOTER */

    .lj-footer-copyrights,
    .lj-footer-socials {
      text-align: center;
    }

    .lj-footer-socials {
      margin-top: 40px;
    }

  }
