section.contact-us {
	text-align: center;
	padding: 3rem 5% 3rem;
}
section.contact-us .title{
	max-width:760px;
	margin:0 auto;
	font-weight: 800;
	color: var(--second-color);
	font-size: 2.25rem;
}

section.contact-us .contact-wrapper {
	display: flex;
	justify-content: center;
	margin: 30px 0;
	padding: 1.5em 0;
	gap: 15px;
}

section.contact-us .contact-wrapper div {
	width: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 12px;
}

section.contact-us .contact-wrapper a {
	font-weight: 500;
	font-size: 1em;
	display: block;
	background: var(--second-color);
	color:#fff;
	padding: 1em;
	transition: all 0.3s;
	border:none;
	border-radius: 0.5rem;
}
section.contact-us .contact-wrapper a:hover{
	background: var(--main-color);
	color:var(--white-color);

}
section.contact-us a i {
	font-size: 20px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: transparent;
	color: #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0.5em 0;
	box-shadow: 0 0 0 2px #fff;
	transition:all 0.3s;
}

section.contact-us a:hover i{
	color:var(--white-color);
	box-shadow: 0 0 0 2px var(--white-color);
}



@media screen and (max-width:640px){
	section.contact-us .contact-wrapper {
		flex-direction: column;
		align-items: center;
	}
	
	section.contact-us .title, 
	section.contact-us .description,
	section.contact-us .subtitle {
		text-align: left;
	}
	
	section.contact-us .contact-wrapper div {
	  width: 96%;
 	 }
}