/* CSS Document */

/*  ------------------------------------------CONTACT------------------------------------------ */


@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

html{    background:url(../../img/layout/contact-bg.jpg);
  background-size: cover;
  height:100%;
  border-top: 10px solid #000;
}
/*  ------------LOGO------------------- */

.logo {
	margin:40px;
	width:80px;
	}
	
.rollin {	
	-webkit-transition:All .8s ease;
	-moz-transition:All .8s ease;
	-o-transition:All .8s ease;
	-webkit-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	-o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px);
	}
	
.rollin:hover{
	-webkit-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-moz-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	-o-transform: rotate(180deg) scale(1) skew(0deg) translate(0px);
	}
	
	.contact-me {
	text-align: center;
	color: #333;
	font-family: 'Montserrat', Arial, sans-serif;
} 
.contact-me h2{
	text-align: center;
	color: #333;
	font-size: 4em;
	margin-bottom: 2px;
} 
.contact-me p{
	text-align: center;
	padding: 2px;
	background-color:#fbfbfb;
	width: 450px;
	margin: 0 auto;
} 
#answer{
	text-align: center;
	background-color:#fbfbfb;
	width: 450px;
	float: left;
	left: 50%;
	position: absolute;
  margin-top:580px;
	margin-left: -225px;
	padding: 5px;
}

/*  ------------FORM------------------ */
#feedback-page{
	text-align:center;
}

#form-main{
	width:100%;
	float:left;
	padding-top:0px;
}

#form-div {
	background-color:rgba(72,72,72,0.4);
	padding-left:35px;
	padding-right:35px;
	padding-top:35px;
	padding-bottom:50px;
	width: 450px;
	float: left;
	left: 50%;
	position: absolute;
  margin-top:30px;
	margin-left: -260px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
}

.feedback-input {
	color:#333;
	font-family: 'Montserrat', Arial, sans-serif;
  font-weight:300;
	font-size: 0.9em;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
  border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid #333;
	color: #333;
	outline: none;
  padding: 13px 13px 13px 54px;
}

.focused{
	color:#ccc;
	border:#30aed6 solid 3px;
}

/* Icons ---------------------------------- */
#name{
	background-image: url(../../img/layout/name.svg);
	background-size: 40px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#name:focus{
	background-image: url(../../img/layout/name.svg);
	background-size: 40px 30px;
	background-position: 8px 5px;
  background-position: 11px 8px;
	background-repeat: no-repeat;
}

#email{
	background-image: url(../../img/layout/mail.svg);
	background-size: 40px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#email:focus{
	background-image: url(../../img/layout/mail.svg);
	background-size: 40px 30px;
  background-position: 11px 8px;
	background-repeat: no-repeat;
}

#message{
	background-image: url(../../img/layout/message.svg);
	background-size: 40px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

#button-blue{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #333;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}

#button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: #333;
}
	
.submit:hover {
	color: #333;
}
	
.ease {
	width: 0px;
	height: 74px;
	background-color: #333;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}
.antispam{
    display: none;
}

label[for="name"] { display:none; }
label[for="email"] { display:none; }

@media only screen and (max-width: 580px) {
	#form-div{
		left: 3%;
		margin-right: 3%;
		width: 88%;
		margin-left: 0;
		padding-left: 3%;
		padding-right: 3%;
	}
	.contact-me h2{
	font-size: 3em;

} 
.contact-me p{
	width: 400px;
} 
#answer{
	display: none;
}
}
