@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,700,800);

*{
	padding: 0;
	margin: 0;
}
body{
	width:100vw;
	height: 100vh;
	overflow-x: hidden;
	font-family: 'Oswald', sans-serif;
	background: #666;
}

a{
	text-decoration: none;
}

h1, h2, h3 {
	cursor: default;
	text-align: center;
}

/***SCROLLBAR*****/
::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #000; 
    border:1px solid #000;
}

.noselect{
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;  
}

.flex_column{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex_row{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#nav{
	width: 100vw;
	height: 50px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: transparent;
	font-size: 0.7em;
	opacity: 0;
}

#nav.colored{
	height:125px;
	background-color: #3299BB;
	transition: 0.5s;
}

#nav.clear{
	background-color: transparent;
	transition: 0.5s;
}

#nav .logo{
	height: 50px;
	width: 280px;
	background-image: url('../img/logos/enforged_logo_black.png');
	background-size: 100% 100%;
	position: absolute;
	top: 0px;
	left: 10px;
	margin-top: 35px;

	/*height: 125px;
	width: 280px;
	background-image: url('../img/logos/enforgedflail5.png');
	background-size: 100% 100%;
	position: absolute;
	top: 0px;
	left: 10px;*/
}

/*****HAMBURGER****/
#burger_wrapper{
	height: 50px;
	width: 50px;
	background-color: transparent;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 35px;
	right: 30px;
	z-index: 2;
}

#burger_wrapper div{
	background-color: #FFF;
}
.bun{
	width: 40px;
	height: 6px;
	border-radius: 3px;
}
.meat{
	width: 40px;
	height: 6px;
	margin: 8px 0;
	border-radius: 3px;
	transition: 0.5s;
}
.slim{
	margin: 4px;
	transition: 0.5s;
}
/****************************/

#link_wrapper_mobile{
	width: 100%;
	position: absolute;
	right: 0;
	top: 125px;
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.mobile_link{
	width: 100%;
	height: 30px;
	margin: -1px 0;
	padding: 11px 0;
	background-color: #3299BB;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile_link a{
	font-size: 2.5em;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#link_wrapper{
	height: 125px;
	position: absolute;
	right: 30px;
	top: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
} 

.link{
	margin: 0 20px 0 20px;
	text-align: center;
}

.mobile_link a:hover{
	color: #000;
	transition: 0.5s;
}

.link a{
	font-size: 2.5em;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#link_wrapper a:hover{
	color: #000;
	transition: 0.5s;
}

.link .colored{
	color: #000;
	transition: 0.5s;
}

#home{
	width: calc(100% - 40px);
	min-height: calc(100vh - 150px);
	padding: 150px 20px 0 20px;
	background-color: #FF9900;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.title_wrapper{
	width: 100%;
	min-height: 400px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

.title_wrapper img{
	width: 170px;
	height: 200px;
	opacity: 0;
}

#home h1{
	width: calc(100% - 40px);
	font-size: 4em;
	margin: 0 0 20px 0;
	color:#000;
	font-weight:bold;
	font-family: 'Oswald', sans-serif;
	opacity: 0;
}

#home h2{
	font-size: 2em;
	margin: 20px 0 20px 0;
	color:#FFF;
	z-index: 2;
	opacity: 0;
}

.down_arrow{
	width: 80px;
	height: 50px;
	position: absolute;
	bottom: 50px;
	left: calc(50% - 35px);
	background-image: url('../img/icons/arrow.png');
	background-size: 100% 100%;
	background-color: transparent;
	transition: 0.5s;
}

.down_arrow:hover{
	bottom: 25px;
	opacity: 0.7;
	transition: 1s;
}


/********* PRODUCT **********/

#product{
	width: calc(100% - 40px);
	min-height: calc(100vh - 75px);
	padding: 75px 20px 50px 20px;
	background-color: #fff; /*#666*/
	color: #000;/*#FFF*/
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
}

#product .sg_icons{
	margin: 30px;
}

#product h1{
	font-size: 4em;
	font-family: 'Oswald', sans-serif;
	margin: 75px 0 20px 0;
	color:#000;/*#FFF*/
	font-weight:bold;
}

#product h2 {
	font-size: 1.5em;
	padding: 25px 0px;
	color: #000;
}

#product h3 {
    font-size: 1.25em;
    padding: 10px 0;
}

#product p {
	color: #FF9900;
	font-weight: bold;
	font-size: 1.4em;
}

#product ul {
	list-style: none;
	padding: 10px 0;
}

#product li {
	display: inline;
}

#product ul img {
	width: 50px;
	padding: 5px;
}

.electronics img {
	width: 100%;
	padding: 25px 10px;
}

.flex_column img{
	padding-bottom: 20px;
	width: 80px;
}

.btn-hvr {
  width: 400px;
  max-width: 50vw;
  margin: auto;
  padding: 10px 20px;
  border: 2px solid #FF9900;
  border-radius: 35px;
  color: #FF9900;
  font-weight: bold;
  font-size: 1.2em;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-hvr:hover{
	color: #3299bb;
	border: 2px solid #3299bb;
	transition: 0.2s;
}

.btn-hvr:active{
	color: #804D00;
	border: 2px solid #804d00;
}


/*********TEAM***********/

#team{
	width: calc(100% - 40px);
	min-height: calc(100vh - 75px);
	padding: 75px 20px 75px 20px;
	background-color: #BCBCBC;
	color: #070a0c;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;	
}

#team h1{
	font-size: 4em;
	margin: 75px 0 20px 0;
	color:#000;
	font-weight:bold;
	font-family: 'Oswald', sans-serif;	
}

#team h2{
	color: #FFF;
}

#team .member_wrapper{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#team .member_box{
	width: 310px;
	height: 310px;
	margin: 30px;
	position: relative;
}

#team .member_box .member_name{
	width: 310px;
	height: 40px;
	color: #FFF;
	font-size: 1.5em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-align: center;
	cursor: default;
	transition: 0.5s;
}

#team .member_box .member_name:hover{
	color: #000;
	transition: 0.5s;
}

#team img.member_pic {
  width: 300px;
  height: 300px;
  padding: 0;
  margin: 0;
  border: 5px solid #FFF;
}

#team .member_info {
  background-color: rgba(0,0,0,0.8);
  width: 300px;
  height: 300px;
  color: #FFF;
  position: absolute;
  left: 5px;
  top: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  display: none;
}

#team .member_info h1{
	width: calc(100% - 20px);
	padding: 0 10px 0 10px;
	margin: 20px 0 20px 0;
	font-size: 1.5em;
	color: #FFF;
	text-align: center;
	text-decoration: underline;
}

#team .member_info p{
	width: calc(100% - 30px);
	padding: 0 15px 15px 15px;
	text-align: center;
}
#team .member_medias{
	width: 60%;
	padding: 10px 0 10px 0;
	height: 50px;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.member_medias img{
	height: 50px;
	width: 50px;
}


/******JOIN********/

#join {
	background-image: url('../img/pentagon.png');
	padding: 20px;
	background-size: 100%;
	background-repeat: no-repeat;
}

#white{
	
	/*width: calc(100% - 40px);
	min-height: calc(100vh - 150px);*/
	padding: 75px 20px;
	margin: 5%;
	max-width: 900px;
	background-color: #fff;
	color: #000;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	box-shadow: 0 15px 6px -6px #333;

	/*width: calc(100% - 40px);
	min-height: calc(100vh - 150px);
	padding: 75px 20px;
	background-color: #666;
	color: #000;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;*/	
}

#white h1{
	font-size: 4em;
	margin: 20px 0;
	/*margin: 75px 0 20px 0;*/
	font-weight:bold;
	font-family: 'Oswald', sans-serif;
	/*color: #FFF;*/
}

#white h2{
	padding: 0 0 20px 0;
	margin: 0px;
}

#white .mail_link{
	color: #FF9900;
}

#white .mail_link:hover{
	text-decoration: underline;
}

#white h3{
	margin: 10px 0;
	font-weight: bolder;
}

#white h3:hover{
	color: #FF9900;
	cursor: pointer;
}

#white .job_description{
	display: none;
	text-align: center;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	padding: 15px;
	margin-bottom: 30px;
}

.job_description h3{
	font-style: italic;
}

.job_description p{
	margin-top: 10px;
}

.job_description ul{
	text-align: left;
	padding: 0 10px 0 10px;
}

/**************/
/****CONTACT***/
/**************/


#contact{
	width: calc(100% - 40px);
	min-height: calc(100vh - 150px);
	padding: 75px 20px;
	background-color: #FF9900;
	color: #FFF;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#contact h1{
	font-size: 4em;
	margin: 75px 0 20px 0;
	font-weight:bold;
	font-family: 'Oswald', sans-serif;
	color: #000;
}

#contact h2{
	font-size: 1.2em;
	color: #000;
	margin-top: 10px;
}

#contact p{
	font-size: 1.5em;
	font-weight: bold;
	color: #FFF;
	width: 400px;
	text-align: center;
	max-width: calc(100wv - 40px);
}

#contact .contact_form{
	width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#contact .contact_form input[type='text'], #contact .contact_form input[type='email']{
	width: 400px;
	max-width: calc(100vw - 70px);
	height: 30px;
	padding: 5px 15px;
	margin: 10px 0;
	font-size: 1.25em;
	border-radius: 10px;
	border: #000 1px solid;
	font-family: 'Raleway', sans-serif;
	font-weight: bold;
}

#contact .contact_form textarea{
	width: 400px;
	height: 200px;
	margin: 10px 0;
	border-radius: 10px;
	resize: none;
	padding: 10px;
	font-size: 1.1em;
}

input.button {
  background-color: #000;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1em;
  color: #FFF;
  font-weight: bold;
  cursor: pointer;
  margin: 20px 10px;
}

input.button:hover {
  background-color:#3299bb;
  cursor: pointer;
  transition: 0.3s;
}

#contact .mail_link{
	color: #000;
}

#contact .mail_link:hover{
	text-decoration: underline;
}


/*****FOOTER******/

#footer{
	width: 100%;
	height: 100px;
	padding: 20px 10px;
	background-color: #3299BB;
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#footer img {
	width: 50px;
	padding: 5px;
}

#footer ul {
	list-style: none;
	padding-bottom: 10px;
}

#footer ul li {
	display: inline;
}

.f-hvr:hover {
	content: url('../img/icons/f2.png');
	width: 50px;
	padding: 5px;
}

.in-hvr:hover {
	content: url('../img/icons/in2.png');
	width: 50px;
	padding: 5px;
}

.tweet-hvr:hover {
	content: url('../img/icons/tweet2.png');
	width: 50px;
	padding: 5px;
}

.mail-hvr:hover {
	content: url('../img/icons/mail2.png');
	width: 50px;
	padding: 5px;
}

#footer p{
	margin: 0 20px;
}