

/*General */
html{    
  
  height:100%;
}
body
{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.send_email {
        width: 182px;
        height: 100px;
        background: url("../images/theme/send_email.png") no-repeat;
        display: inline-block;
    }
.send_email:hover {
        background: url("../images/theme/send_email2.png") no-repeat;
		cursor: pointer;
    }


#feedback-page{
	text-align:left;
}

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

#form-div {
	background-color:rgba(72,72,72,0.3);
	padding-left:35px;
	padding-right:35px;
	padding-top:35px;
	padding-bottom:50px;
	font-size: 16px;
	float: left;
	left: 250px;
	position: absolute;
    margin-top:30px;
	margin-left: -260px;
    border-radius: 7px;
  
}

.montform .feedback-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
	opacity: 0.5;
}
/*Inputs styles*/
.montform .feedback-input:focus{
	background: #fff;
	border: 3px solid #de3232;
	color: #434343;
	outline: none;
  padding: 13px 13px 13px 54px;
}


/* Icons ---------------------------------- */

.montform  #name{
	background-image: url(../images/theme/contact/address-book.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #name:focus{
	background-image: url(../images/theme/contact/address-book.svg);
	background-size: 30px 30px;
	background-position: 8px 5px;
    background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #email{
	background-image: url(../images/theme/contact/mail.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #email:focus{
	background-image: url(../images/theme/contact/mail.svg);
	background-size: 30px 30px;
  background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  #comment{
	background-image: url(../images/theme/contact/pencil.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

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

.montform  input:hover, .montform  textarea:hover,
.montform  input:focus, .montform  textarea:focus {
	background-color:#e6e6e6;
	opacity: 0.8;
}

.button-blue{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background: -webkit-linear-gradient(top, #6d0019 0%,#8f0222 56%,#a90329 100%);
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
	opacity: 0.5;
}

.button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: #fefefe;
}
	
.montform  .submit:hover {
	color: #ffffff;
}
	
.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background: -webkit-linear-gradient(top, #006b19 0%,#028f22 56%,#03a929 100%);
}

/*Styles for small screens*/

@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%;
		font-size: 11px;
	}
	#form-div p{
		font-size: 11px;
	}
	
}

