@charset "UTF-8";
/*basic reset*/
* {
margin: 0;
padding: 0;
}


/*form styles*/
#contactform {
	font-family: 'Lato', arial, sans serif;
	font-weight:300;
width: 90%;
margin: 20px auto;
text-align: center;
position: relative;
}
#contactform fieldset {
	border: 0 none;
/*background: white;

border-radius: 3px;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);*/
padding: 20px 30px;
width: 80%;
margin: 0 10%;
/*stacking fieldsets above each other*/
position: absolute;
}
/*Hide all except first fieldset*/
#contactform fieldset:not(:first-of-type) {
display: none;
}
/*inputs*/
#contactform input, #contactform textarea {
padding: 15px;
border: none;
border-radius: 3px;
margin-bottom: 10px;
width: 100%;
box-sizing: border-box;
background-color: rgba(51, 51, 51, 0.7);
color:#FFF;
font-size: 35px;
font-weight: 300;
}

#contactform textarea {
font-size: 25px;
}
/*buttons*/
#contactform .action-button {
width: 100px;
background-color: rgba(51, 51, 51, 0.8);
font-weight: 300;
color: #CEDD50;
border: 0 none;
border-radius: 1px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
font-size: 15px;
}
#contactform .action-button:hover, #contactform .action-button:focus {

color: #fff;
}
/*headings*/
.fs-title {
font-size: 60px;
font-weight: 300;	
color: #CEDD50;
margin-bottom: 10px;
}
.fs-subtitle {
font-size: 15px;
font-weight: 300;	
color: #fff;
margin-bottom: 20px;
}

#errors{
	color:#CEDD50;
	font-size: 18px;
	font-weight: 400;	
	position:absolute;
	top:310px;
	right:100px;
}
#response{
	font-size: 30px;
	color:#CEDD50;
	padding-top:200px;
	text-align: center;
}

#response .success {
	font-size: 36px;
	color:#CEDD50;
	padding-top:150px;
	text-align: center;
}
/*progressbar*/
#progressbar {
	display:none;
margin-bottom: 30px;
overflow: hidden;
/*CSS counters to number the steps*/
counter-reset: step;
}
#progressbar li {
list-style-type: none;
color: white;
text-transform: uppercase;
font-size: 9px;
width: 33.33%;
float: left;
position: relative;
}
#progressbar li:before {
content: counter(step);
counter-increment: step;
width: 20px;
line-height: 20px;
display: block;
font-size: 10px;
color: #333;
background: white;
border-radius: 3px;
margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
content: '';
width: 100%;
height: 2px;
background: white;
position: absolute;
left: -50%;
top: 9px;
z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
/*connector not needed before the first step*/
content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
background: #27AE60;
color: white;
}

