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

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

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

	border-radius: 12px;
}

section.contact-us .contact-wrapper a {
	font-weight: 600;
	font-size: 1.125em;
	display: block;
	background: #fff;
	padding: 1em;
	border-radius: 12px;
	box-shadow: 0 2px 6px #eee;
	transition: all 0.3s;
	border: none;
	height: 100%;
}

section.contact-us .contact-wrapper a span{
	display:block;
}

section.contact-us .contact-wrapper a span.small {
	font-size: 0.675em;
	font-weight: 500;
	color: var(--paragraph-font-color);
	margin-top: 3px;
}

section.contact-us .contact-wrapper a:hover{
}
section.contact-us a i {
	font-size: 24px;
	width: 48px;
	height: 48px;
	/* line-height: 36px; */
	background-color: transparent;
	color: var(--brand-color-1);
	border-radius: 50%;
	display: inline-block;
	margin: 0.5em 0;
	box-shadow: 0 0 0 1.5px var(--brand-color-1);
	transition: all 0.3s;
	display: flex;
	margin: 0 auto 10px auto;
	justify-content: center;
	align-items: center;
}

section.contact-us a:hover i {
	box-shadow: 0 0 0 3px #B5C0D0;
}

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