.contact{
	padding: 52px 0 88px;
}

.contact .contact-main{
	background-color: #fff;
	padding: 48px 46px 40px 80px;
	display: flex;
	justify-content: space-between;
}

.contact .contact-main .contact-left h3{
	font-size: 28px;
	line-height: 34px;
	padding-bottom: 24px;
	color: #333;
	position: relative;
}

.contact .contact-main .contact-left h3::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 2px;
	content: '';
	background-color: #DDDDDD;
}

.contact .contact-left .contact-text{
	margin-top: 44px;
}

.contact .contact-left .contact-text .contact-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 36px;
	gap: 12px;
	line-height: 1.6;
	font-size: 18px;
	color: #333;
}

.contact .contact-left .contact-text .contact-item:first-child{
	margin-top: 0;
}

.contact .contact-left .contact-code{
	padding: 14px 20px 13px 21px;
	border-radius: 12px;
	margin-top: 28px;
	background-color: #F5F5F5;
	text-align: center;
	max-width: 129px;
}

.contact .contact-left .contact-code img{
	width: 88px;
}

.contact .contact-left .contact-code p{
	font-size: 16px;
	line-height: 19px;
	color: #333;
	margin-top: 12px;
}

.contact .contact-right .contact-right-title{
	text-align: center;
}

.contact .contact-right .contact-right-title h3{
	font-size: 36px;
	font-weight: 500;
	margin: 0;
	color: #333;
}

.contact .contact-right .contact-right-title p{
	font-size: 16px;
	margin-top: 12px;
	color: #555;
}

.contact .contact-right-main{
	margin-top: 36px;
}

.contact .contact-right-main .form-group {
    margin-bottom: 20px;
}

.contact .contact-right-main input {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #666;
    font-weight: 400;
    border-radius: 2px;
    border: 1px solid #ccc;
	box-sizing: border-box;
}

.form-control:focus{
	box-shadow: none;
}

.contact .contact-right-main textarea {
    height: 200px;
    font-size: 18px;
    border: 1px solid #ccc;
}

.contact .contact-right-main .submit{
	text-align: center;
	margin-top: 20px;
}

.contact .contact-right-main .submit button{
	width: 250px;
	border-radius: 100px;
	line-height: 52px;
	background-color: #E1242A;
	text-align: center;
	color: #fff;
	font-size: 20px;
	outline: none;
	border: none;
	transition: all 0.3s;
}

.contact .contact-right-main .submit button:focus{
	outline: none;
}

.contact .contact-right-main .submit button:hover{
	width: 298px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}

/*****************************************************/

@media (max-width: 992px){
	.contact{
		padding: 3rem 0 ;
	}
	
	.contact .contact-main{
		padding: 2rem 1.5rem;
		flex-wrap: wrap;
	}
	
	.contact .contact-main .contact-left h3{
		font-size: 1.8rem;
		line-height: 2;
		margin: 0;
		padding-bottom: 1.5rem;
	}
	
	.contact .contact-left .contact-text{
		margin-top: 1.5rem;
	}
	
	.contact .contact-left .contact-text .contact-item{
		font-size: 1.4rem;
		margin-top: 1.5rem;
	}
	
	.contact .contact-left .contact-text .contact-item img{
		width: 2rem;
	}
	
	.contact-right{
		margin-top: 3rem;
		text-align: center;
		width: 100%;
	}
	
	.contact .contact-right .contact-right-title h3{
		font-size: 2.2rem;
		font-weight: 700;
	}
	
	.contact .contact-right .contact-right-title p{
		font-size: 1.4rem;
	}
	
	.contact .contact-right-main .form-group{
		margin-bottom: 1.5rem;
	}
	
	.contact .contact-right-main input{
		line-height: 3.6rem;
		height: 3.6rem;
		font-size: 1.6rem;
	}
	
	.contact .contact-right-main textarea{
		height: 15rem;
	}
	
	.contact .contact-right-main .submit{
		margin-top: 1rem;
	}
	
	.contact .contact-right-main .submit button{
		width: 15rem;
		line-height: 4.2rem;
	}
}