/*
#e67e22
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    background-color: #fff;
    color:#555;
    font-family: 'Lato','Arial', sans-serif;
    font-weight: 300;
    font-size:20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
.row {
    max-width: 1140px;
    margin: 0 auto;
}
/*************************************/
/* HEADER*/

header {
    background-image:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url('../images/backdrop.jpeg');
    background-size: cover;
    background-position: center;
    height:100vh;
}
.hero-text-box {
    position:absolute;
    width: 1140px;
    top: 60%;
    left:50%;
    transform: translate(-50%,-60%);
}
h1,
h2,
h3 {
   
    font-weight: 300;
    text-transform: uppercase;
   
    
}
h1 {
    margin-top:0;
    color:#fff;
    font-size: 200%;
    word-spacing: 4px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
h2 {
    font-size:180%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom:30px;
    letter-spacing: 1px;
}
h3 {
   font-size:110%;
    margin-bottom: 15px;
    text-align: center;
}
h2:after {
    display: block;
    height:2px;
    background: #e67e22;
    content: " ";
    width:100px;
    margin: 0 auto;
    margin-top:30px;
}

/*** PARAGRAPHS ***********/
.long-copy {
    line-height: 145%;
    width:70%;
    margin-left:15%;
}

.logo {
    height: 180px;
    width:auto;
    float:left;
    margin-top:10px;
}
/* mobile nav */
.mobile-nav-icon {
    float:right;
    margin-top:30px;
    cursor:pointer;
    display:none;
}
.mobile-nav-icon i {
    font-size:200%;
    color:white;
}



/* Sticky nav */
.sticky {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background-color: rgba(255,255,255,0.95);
    box-shadow:0 2px 2px #eee;
    color:#222;
    z-index: 9999;
}
.sticky .logo {
    height:auto;
    transform: translate(0px,25px);
    display:none;
}
.sticky .main-nav {
    margin-top:2px;
    padding:12px 0px;

}
.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 12px 0px;
    color:#555;

   
}

/*Main nav */
.main-nav {
    float: right;
    list-style: none;
    margin-top:60px;
    
    
}
.main-nav li {
    display:inline-block;
    margin-left:40px;
    
}
.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0px;
    color:#fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s;
}
.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #e67e22;
}
/****** Buttons */
.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    color:#fff;
    transition: background-color 0.5s,border 0.5s, color 0.5s;
}
.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color:#e67e22; 
    border:1px solid #e67e22;
    margin-right:15px;
}
.btn-ghost:link,
.btn-ghost:visited {
    border:1px solid #e67e22;
    color:#e67e22;
}


.btn:hover,
.btn:active,
input[type=submit] {
    background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color:#b05d14; 
    border:1px solid #b05d14;
}
.btn-ghost:hover,
.btn-ghost:active {
    border:1px solid #b05d14;
    color:#fff;
}
/* Re usable */
.box {
    padding:1%;
}
.box p {
    font-size:90%;
    line-height: 145%;
}
/* Icons */
.icon-big {
    font-size: 350%;
    display: block;
    color:#e67e22;
    margin-bottom: 10px;
    text-align: center;
}
/************** Sections *************/
section {
    padding: 80px 0px;
    width:100%;
    margin: 0 auto;
}

.section-services {
    background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../images/machines.jpeg');
    background-size: cover;
    background-position: center;
    height:100%;
    color:white;
}
.section-testimonials {
    background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../images/testimonials.jpg');
    background-size: cover;
    background-position: center;
    height:100%;
    color:white;
}
.section-contactus {
    background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    height:100%;
    color:white;
}
.contact-form {
    width:60%;
    margin:0 auto;
    
}
input[type=text],input[type=email],
select,
textarea {
    width:100%;
    padding:7px;
    border-radius:3px;
    border:1px solid #eee;
}
textarea {
    height:100px;
}
*:focus {
    outline: none;
}
footer {
    background: #222;
    padding: 20px 0px;
    width:100%;
    margin: 0 auto;
}
footer a {
    margin-left:10%;
    text-decoration: none;
    color:white;
}
.section-products .row {
    opacity:0;
}
.section-products .row.animated {
    opacity:1;
}
.section-services .row {
    opacity:0;
}
.section-services .row.animated {
    opacity:1;
}
.section-contactus .row {
    opacity:0;
}
.section-contactus .row.animated {
    opacity:1;
}
.header-bar {
	width:100%;
	height:40px;
	padding:5px;
	background:black;
	text-align:center;
	color:white;
	font-size:110%;
}