/*Orange color: #e67e22 */

/*--------------------------------------------------------------------*/ 
/* BASIC SETUP*/
/*--------------------------------------------------------------------*/

*{
    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; /*This hide the text in x axis for small screen based on the queries file.*/
    }


.clearfix {zoom: 1}/*this clears the float after an element*/
.clearfix:after {/*specificy after the element for clearing*/
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden; 
}
    
/*--------------------------------------------------------------------*/ 
/* REUSABLE COMPONENTS*/
/*--------------------------------------------------------------------*/

.row{
    max-width:1140px;
    margin: 0 auto; 
}

section { /* Feature section */
    
    padding: 80px 0; 
}

.box{
    
    padding: 1%;
} 

/* -------Headings--------*/ 

h1,
h2, 
h3{
    font-weight: 300; 
    text-transform: uppercase; 
  

}


h1{
    margin top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px; 
      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; 
    
}
    
h2:after {/* Boarder line after the block*/ 
    
    display: block; 
    height: 2px; 
    background-color: #e67e22; 
    content: " "; 
    width: 100px; 
    margin: 0 auto;  
    margin-top: 30px; 
    
    
}

/* -------PARAGRAPHS---------*/ 

.long-copy {
    
    line-height: 145%;
    width: 70%; 
    margin-left: 15%; 
        
}
.box p{/*Selects all the paragraph inside the box of html code*/
    
    font-size: 90%;  
    line-height: 145%;    
}

/* -------ICONS---------*/ 

ion-icon {/*defines the icons big class from the html fine at the end of the icon name*/
    font-size: 350%; 
    display: block; /* forces a line break.  */
    color: #e67e22; 
    margin-bottom: 10px; 
}

.icon-small{
    display: inline-block; 
    width: 30px; 
    text-align: center;  
    color: #e67e22;  
    font-size: 120%; 
        
    /*Secrets to align text and icons */
    line-height: 120%;
    vertical-align: middle; 
    margin-top: -5px;
    margin-right: 10px;
    
}

/* -------LINKS---------*/ 

a:link,
a:visited {
    color: #e67e22;
    text-decoration: none; 
    padding: 1px;
    border-bottom: 1px solid #e67e22;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover, 
a:active{
    color: #555; 
    border-bottom: 1px solid-transport; 
}




/* -------BUTTONS---------*/ 

.btn:link,
.btn:visited, 
input[type=submit] {
    display: inline-block; 
    padding: 10px 30px; 
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;  
    transition: background-color 0.2s, border 0.02s, color 0.2s;  /*changed background when hover link*/
}

.btn-full:link, 
.btn-full:visited,
input[type=submit]{
    background-color: #e67e22; 
    border: 1px solid #e67e22;
    color: #fff; 
    margin-right: 15px;
}

.btn-ghost:link, 
.btn-ghost:visited {
    border: 1px solid #e67e22; 
    color: #e67e22; 
}

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

.btn-full:hover,  
.btn-full:active, 
input[type=submit]{
   border: 1px solid #cf6d17;   
 }

.btn-ghost:hover,  
.btn-ghost:active {
    border: 1px solid #cf6d17; 
    color: #fff; 
}






/*--------------------------------------------------------------------*/ 
/* HEADER*/
/*--------------------------------------------------------------------*/


header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh; 
    background-attachment: fixed;  /*Image stay the same space*/
    
   }

.hero-text-box{
    position: absolute; 
    width: 1140px; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px; 
}

.logo-black{ 
	display: none; 
	height: 50px; 
	width: auto; 
	float: left; 
	margin: 5px 0; 


}

.logo-black {display:  none; }/*hides black logo in normal state.*/


/*Main navi*/
.main-nav{
    float: right; 
    list-style:none;   
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; 
    font-size:90%;
    border-bottom: 2px solid transparent; 
    padding: 8px 0; 
    
    transition: border-bottom 0.2;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 10px solid #e67e22; 
}

/*Main navi*/
.mobile-nav-icon {
	float: right ; 
	margin-top: 30px; 
	cursor: pointer; /*specific the hand pointer*/
	display: none; 
	color: #fff;
	
}

.menu-outline-icon {
	font-size: 200%;  
	color: #fff; 
}
	/*denoted as aka mobile-nav-icon*/





/*Sticky navi*/


.sticky {/*this fix the secondary nav. */
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%; 
	background-color: rgba(255, 255, 255, 0.98); 
	box-shadow: 0 2px 2px #efefef; /*apply shadow*/
	z-index: 9999; /*vertical stack of element and position it at the top at the highest value 9999*/
}


.sticky .main-nav { margin-top: 18px;  }

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 16px 0; 
	color: #555;
}
.sticky .logo {display: none; }
.sticky .logo-black { display: block; } /*If condition change, then this make logo-black visible*/




/*--------------------------------------------------------------------*/ 
/* FEATURES*/
/*--------------------------------------------------------------------*/


.section-features .long-copy {
    
    margin-bottom: 30px;
}




/*--------------------------------------------------------------------*/ 
/* FORM*/
/*--------------------------------------------------------------------*/

.contact-form {
    width: 60%; 
    margin: 0 auto;  /*This center the content form in it parent element*/     
}

input[type=text],
input[type=email], /*This isolate the area to only the selected to be modified.*/ 
select,
textarea{
    width: 100%; 
    padding: 7px; 
    border-radius: 3px; 
    border: 1px solid #ccc; /*This reduce the border within the textr field.*/
}

textarea{
    height: 100px; 
    
}

input[type=checkbox] {
    margin: 10px 5px 10px 0; 
}

*:focus {outline: none;}/*get rid of the blue default outline from browser.*/ 


/*--------------------------------------------------------------------*/ 
/* FOOTER */
/*--------------------------------------------------------------------*/

footer {
    background-color: #333; 
    padding: 50px;
    font-size: 80%;
}

.footer-nav {
    list-style: none; /*This hides the bullet points*/
    float: left; 
}

.social-links {
    list-style: none; 
    float: right; 
    color: #888;
    font-size: 120%;
}

.footer-nav li,
.social-links li {
    display: inline-block; 
    margin-right: 20px;  
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited, 


.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;/*Get rid of border*/
    color: #888;
    transition: color 0.2s;
    
}


.footer-nav li a:hover,
.footer-nav li a:active{
    color: #ddd;
    
}

.social-links li a:link, 
.social-links li a:visited{
    font-size: 160%; 
}

.social-links { 
    transition: color: 0.2s; 
}


.social-links:hover {
    color: #3b5998;/*changes logo color*/
}


footer p{
    color: #888;
    text-align: center; /*This centers the text*/  
    margin-top: 20px;
}



/*--------------------------------------------------------------------*/ 
/* IMAGE SLIDER*/
/*--------------------------------------------------------------------*/


.slide-container{
	width: 1000px; 
	height: 613px;
	margin-left: auto; 
	margin-right: auto;
	overflow: hidden; /*hides the other images so there not shown*/
	text-align: center; 	
}

.image-container{
	width: 12000px; /*This is the combination of 12 image combined*/
	height: 613px;
	position: relative; 
	transition: left 2s; 
}

.slider-image{
	float: left; 
	margin: 0px; 
	padding: 0px; 
}

.button-container{
	top: -50px; 
	position: relative; 
}

.slider-button{ 
	display: inline-block;
	height: 10px; 
	width: 10px;  
	border-radius: 5px; 
	background-color: #f96302; 
}



#slider-image-1:target ~ .image-container{
	left: 0px; 
	}
#slider-image-2:target ~ .image-container{
	left: -1000px; 
	}
#slider-image-3:target ~ .image-container{
	left: -2000px;  	
	}
#slider-image-4:target ~ .image-container{
	left: -3000px;  
	}
#slider-image-5:target ~ .image-container{
	left: -4000px;  	
	}
#slider-image-6:target ~ .image-container{
	left: -5000px; 
	}
#slider-image-7:target ~ .image-container{
	left: -6000px;
	}
#slider-image-8:target ~ .image-container{
	left: -7000px;  
	}
#slider-image-9:target ~ .image-container{
	left: -8000px;
	}
#slider-image-10:target ~ .image-container{
	left: -9000px;
	}
#slider-image-11:target ~ .image-container{
	left: -10000px;
	}
#slider-image-12:target ~ .image-container{
	left: -11000px;
	}


/*Process Slider */

.slide-container-process{
	width: 1000px; 
	height: 613px;
	margin-left: auto; 
	margin-right: auto;
	overflow: hidden; /*hides the other images so there not shown*/
	text-align: center; 	
}

.image-container-process{
	width: 12000px; /*This is the combination of 12 image combined*/
	height: 613px;
	position: relative; 
	transition: left 2s; 
}

.slider-image-process{
	float: left; 
	margin: 0px; 
	padding: 0px; 
}

.button-container-process{
	top: -50px; 
	position: relative; 
}

.slider-button-process{ 
	display: inline-block;
	height: 10px; 
	width: 10px;  
	border-radius: 5px; 
	background-color: #f96302; 
}



#slider-image-process-1:target ~ .image-container-process{
	left: 0px; 
	}
#slider-image-process-2:target ~ .image-container-process{
	left: -1000px; 
	}
#slider-image-process-3:target ~ .image-container-process{
	left: -2000px;  	
	}
#slider-image-process-4:target ~ .image-container-process{
	left: -3000px;  
	}
#slider-image-process-5:target ~ .image-container-process{
	left: -4000px;  	
	}
#slider-image-process-6:target ~ .image-container-process{
	left: -5000px; 
	}
#slider-image-process-7:target ~ .image-container-process{
	left: -6000px;
	}
#slider-image-process-8:target ~ .image-container-process{
	left: -7000px;  
	}
#slider-image-process-9:target ~ .image-container-process{
	left: -8000px;
	}
#slider-image-process-10:target ~ .image-container-process{
	left: -9000px;
	}
#slider-image-process-11:target ~ .image-container-process{
	left: -10000px;
	}
#slider-image-process-12:target ~ .image-container-process{
	left: -11000px;
	}

/*--------------------------------------------------------------------*/ 
/* RESUME*/
/*--------------------------------------------------------------------*/

.position {
	list-style: none;
	margin-top: 2.5px; 
}

.section-resume{
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(resources/img/resume%20Texture.jpg);	
	padding: 0px;
}

.skill-icons{
	align-content: center;
	margin-left:100px;
}


.skills-table{
	float: left; 
	width: 230px; 
	height: auto;
	display: inline-block; 
	border-radius: 3px; 
    border: none;
	margin-right: 55px;
	list-style: none;
}

.skills-table li{
	padding: 5px;
	
}


.resume-title {
 	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}


.resume-experience{
	margin-top: 20px;
	text-align: left;
}


.resume-engineer-projects{
	margin-top: 20px;
	text-align: left;
	list-style: none;
	
}

.resume-engineer-projects li {
	margin-top: 10px;
	margin-bottom: 10px;
}

.resume-date{
	text-align: right;
}

.resume-education {	
	float: left; 
	width: 12000px; 
	height: 20px;
	display: inline-block; 
	text-align: left;
}


.resume-education h4{
	margin-top: 20px; 
	margin-bottom: 20px; 
}


resume-education-degree{
	margin-top: 5px;
	text-align: left;	
	
}

.resume-education-content{
	margin-top: 20px;
}

.resume-job-achievement{
	margin-top: 10px; 
	margin-bottom: 10px;
	margin-left: 20px;
}

	