section.contact-us {
	text-align: center;
	padding: 45px 6%;
}

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: 400;
	  font-size: 1em;
	  display: block;
	  background: #fff;
	  padding: 1em;
	  border-radius: 12px;
	 box-shadow: 0 0 13px rgba(200, 194, 194, 0.2);
	  transition: all 0.3s;
}
section.contact-us .contact-wrapper a:hover{
	box-shadow: 0 0 0 3px var(--main-color);
}
section.contact-us a i {
	font-size: 20px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: var(--main-color);
	color: #fff;
	border-radius: 50%;
	display: inline-block;
	margin: 0.5em 0;
	box-shadow: 0 0 0 1.5px #fff, 0 0 0 4px var(--body-color);
	transition:all 0.3s;
}

section.contact-us a:hover i {
	box-shadow: 0 0 0 1.5px #fff, 0 0 0 4px var(--main-color);
}

@media screen and (max-width:640px){
	section.contact-us .contact-wrapper {
		flex-direction: column;
		align-items: center;
	}
	
	section.contact-us .contact-wrapper div {
		width: 100%;
	}
}