section.contact-us {
	text-align: center;
}

section.contact-us .title{
	max-width:760px;
	margin:0 auto;
}

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

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

section.contact-us .contact-wrapper a {
	display: block;
	padding: 1em;
	transition: all 0.3s;
	border: none;
	color:var(--brand-dark-color);
}

section.contact-us .contact-wrapper div.method:not(:last-of-type){
	border-right:1px solid #eee;
}

section.contact-us .contact-wrapper a:hover{
	color:var(--brand-light-color);
}

section.contact-us .contact-wrapper a i {
	font-size: 20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 5px;
	display: inline-block;
	margin: 0.5em 0;
	box-shadow: 0 0 0 1px var(--brand-light-color) inset, 0 0 0 1.25px #eee;
	transition: all 0.3s;
	background: var(--transparent-aqua);
	color: #fff;
}

section.contact-us .contact-wrapper a:hover i{
	background: var(--brand-light-color);
}


@media screen and (max-width:640px){
	section.contact-us .contact-wrapper {
		/* flex-direction: column; */
		/* align-items: center; */
		font-size: 0.75rem;
	}
	
	section.contact-us .contact-wrapper a{
		
	}
	
	section.contact-us .contact-wrapper a i{
		font-size: 1rem;
		width: 28px;
		height: 28px;
		line-height: 28px;
	}
}