
/* Variables
--------------------------------------------------
*/
:root {
    --main-bg-color:  #373431;
    --second-bg-color: #ffffff;
    --menu-bg-color: #000000;
    --accent-color: #feb500;
    --light-bg: #eeeeee;
    --select-item-color: #ccc;
    --main-txt-color: #ffffff;
    --second-txt-color: #373431;
    --shade-txt-color: #666;
    --third-txt-color: #7b7b7b;
    
    /*Slider
     * ------*/
    --overlay-width: 9ex;
    --overlay-height: 48px;
    
    /*About
     * -----*/
    --picture-max-width: 487px;
    /*(page height - picture height)/2*/
    --top-ref-margin: 115px;
}


/* Main Frame
 * ---------------------------------------------- --*/
  html {
    width: 100%;
  }
  body {
  margin: 0px;
  background-color: black;
  color: white;
  /*
  font-family: 'Oswald';  
  font-family: 'Merriweather';
  font-family: 'Helvetica', Arial, sans-serif;
  font-family: 'Open Sans';
  font-family: 'Lato';
  font-family: "Times New Roman", Times, serif";
  font-family: 'Roboto';
  font-family: 'Audiowide';
  font-family: 'qualy';
  font-family: 'bison';*/
  font-family: "Oswald";
  font-size: 18px;
  width: 100%;
}

/* Below see:
 *  https://css-tricks.com/snippets/css/a-guide-to-flexbox/
 * ---------------------- -- */
.flex-container {
  display: flex;
  flex-flow: row wrap; 
  width: 100%;

}

.flex-container > section {
  padding: 0px;
  flex: 1 100%;
}


 /* Headers 
-------------------------------------------------- -- */
h2,
h3,
h4 {
    text-transform: uppercase;
}

h1,
h2, 
h4 {
    font-weight: 900;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 4em;
}

h2 {
    font-size: 3em;
}

h4 {
    font-size: 1.8em;
    color: var(--third-txt-color);
}

hr.divider {
   border: none;
   border-radius: 1px;
   height: 6px;
   margin: 1em 0;
   padding: 0;
   width: 160px;
   color: var(--accent-color); 
   background-color: var(--accent-color); 
 }
 
 h4.yellow {
 color: var(--accent-color);
 }
 
 a {
    text-decoration:none;
    cursor: pointer;
    color: var(--main-txt-color);
 }
 
ul {
    list-style-type: none;
}
@media only screen and (max-width: 767px) {
        h1 {
            font-size: 3em;
        }

        h2 {
            font-size: 2em;
        }

        h4 {
            font-size: 1.1em;
        }
}


 /* Sliding Effect 
  * ------------------------------------- --*/

.slide-container {
    margin: 0;
    position: relative;
    margin-left: 15%;
    width: var(--overlay-width);
}

p.slide-effect {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: .5em;
    line-height: 1em;
}

.slide-effect a{
    color: var(--main-txt-color);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var( --accent-color );
    overflow: hidden;
    width: 8px;
    height: var( --overlay-height );
    transition: .3s ease;
    z-index: 1;
}

.slide-container:hover .overlay {
    width: var( --overlay-width );
    color: black;
    z-index: 1;
}

.slide-effect {
    padding-left: 20px;
    z-index: 2;
    position: relative;
    color: var(--main-txt-color);
    cursor: pointer;
}


/* Footer
 * -------------------------------------- -- */
section.bottom {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient( 180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100% ), url(../image/random-truck.jpg);
    background-attachment: fixed;
    background-position: top;
    min-height: 500px;
    }

@media only screen and (max-width: 720px) {
    section.contact_form {
        margin-top: -50px;
    }
    section.single-page {
        padding-top: 90px;
    }
}

 .footer-info {
    margin: auto;
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
}

.footer-info img {
    width: 150px;
    padding: 0px;
    margin-top: 100px;
}

.slide-bottom {
    width: 150px;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.slide-bottom a {
    color: var(--main-txt-color);
    font-weight: 800;
    line-height: 1.2em;
}

.slide-bottom:hover .overlay {
    width: 150px;
}

footer {
    margin-left: auto;
    margin-right: 60px;
}

footer > p {
    font-size: 2em;
    font-weight: 300;
    }
    
    
@media only screen and (max-width: 980px) {
    footer { 
        margin-left: auto;
        margin-right: auto; 
        }
    footer > p {
        font-size: 1em;
        margin: auto;
        padding: 10px;
    }
}


/* Single pages
 * --------------------------------- --*/
 

div.LHS-logo img{
    position: fixed;
    left: 40px;
    bottom: 80px;
    width: 300px;
    z-index: 100;
}

@media only screen and (max-width: 1684px) {
    .LHS-logo {
        display: none;
    }

/* We rely on source order for mobile-first approach
 * in this case:
 * 1. header
 * 2. cover
 * 3. about
 * 4. services
 * 5. service areas
 * 6. why us
 * 7. Contact form
 * 8. Video
 * 9. footer
 */
