*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
}
a:hover {
	color: unset;
	text-decoration:none;
}
#contact{
	background: url('../image/background-contact.png') no-repeat bottom;
	height: 100vh;
	width: 100%;
	position: relative;
	padding-top: 120px;
}
.contact-title{
	font-size: 48px;
	text-transform: uppercase;
	text-align: center;
	font-family: 'TradeGothicLTCom-BdCn20';
	letter-spacing: 2px;
	margin-bottom: 70px;
}
.form-gr{
	display: flex;
	flex-wrap: wrap;
}
.form-ctr-left{
	flex: 0 0 30%;
}
.form-ctr-left label{
	margin-left: 50px;
	height: 50px;
}
.form-ctr-right{
	flex: 0 0 70%;
}
.form-ctr-right input, .form-ctr-right textarea{
	border-radius: 15px;
	border:1px dotted #Ff0000;
	width: 100%;
	height: 50px;
	background: transparent;
	padding: 10px 20px;
	color: #333;
	outline: none;
}
.form-ctr-right textarea{
	height: 100px;
}
.mail, .phone, .location{
	position:relative;
}
.mail:before, .phone:before, .location:before{
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	height: 50px;
	width: 50px;
	background: url('../image/icon-contact.png') no-repeat;
	background-size: 25px;
}
.mail:before{
	background-position: 0 5px;
}
.phone:before{
	background-position: 0 -60px;
}
.location:before{
	background-position: 0 -130px;
}
.contact-btn{
	background: #ff0000;
	text-transform: uppercase;
	font-size: 18px;
	color: #FFF!important;
	border-radius: 15px;
	font-family: 'TradeGothicLTCom-BdCn20';
	border:none;
	display: block;
	margin:auto;
	width: 200px;
	padding: 7px;
	text-align: center;
	margin-top: 20px;
}
@media (max-width: 767px){
	.contact-title{
		font-size: 24px;
	}
	.form-ctr-left{
		display: none;
	}
	.form-ctr-right input, .form-ctr-right textarea{
		display: block;
		height: 30px;
		margin-bottom: 20px;
		padding: 0 15px;
		width: 300px;
		margin: auto;
	}
	.form-ctr-right textarea{
		height: 150px;
	}
	.form-ctr-right{
		flex: 1;
		margin-bottom: 15px;
	}
}