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;
	align-items: stretch;
}

section.contact-us .contact-wrapper div.method {
	width: 240px;
	display: flex;
	flex-direction: column;
	/* justify-content: center; */
	/* align-items: flex-start; */
}

section.contact-us .contact-wrapper div.method a {
	display: flex;
	padding: 1em;
	transition: all 0.3s;
	border: none;
	flex-direction:column;
	align-items:center;
	gap:0.5rem;
}

section.contact-us .contact-wrapper div.method a span{
	font-size: .875rem;
}

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

section.contact-us .contact-wrapper a{
	color:var(--font-color);
}

section.contact-us .contact-wrapper a i {
	font-size: 1.5rem;
	width: 36px;
	height: 36px;
	line-height: 36px;
	color: var(--copper-color);
	display: inline-block;
	transition: all 0.3s;
}

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

section.contact-us .contact-wrapper a:hover i{
	color:var(--brand-light-green);
	box-shadow: 0 0 0 1.25px var(--brand-light-green);
}


@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;
	}
}