section.contact-us {
	text-align: center;
	padding: 5%;
}
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: 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: 600;
	font-size: 1.25em;
	display: block;
	background: var(--blue-color);
	color:#fff;
	padding: 1em;
	transition: all 0.3s;
	clip-path:polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
	border:none;
}
section.contact-us .contact-wrapper a:hover{
	background: var(--yellow-color);
	color:var(--blue-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(--blue-color);
	box-shadow: 0 0 0 2px var(--blue-color);
}



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