section.contact-us {
	text-align: center;
	padding: 4rem 5% 4rem;
	background: var(--third-color)
}
section.contact-us .title{
	max-width:760px;
	text-transform: uppercase;
	  font-weight: 300;
	  font-size: 2.75em;
	margin:0 auto 1.125rem;
	color: var(--second-color);
}

section.contact-us .subtitle {
	color: var(--white-color);
	font-size: 1.25em;
}

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

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

section.contact-us p.address {
	color: var(--white-color);
}

section.contact-us p.description strong {
	color: var(--second-color);
}

section.contact-us .email:hover {
	color: var(--light-gold);
}

section.contact-us .contact-wrapper a {
	font-weight: 600;
	font-size: 1.25em;
	display: block;
	background: var(--second-color);
	color:#fff;
	padding: 1em;
	transition: all 0.3s;
	border-radius: 5px;
	border:none;
}
section.contact-us .contact-wrapper a:hover{
	color:var(--white-color);
	background: var(--light-gold);
}

section.contact-us a i {
	font-size: 20px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background-color: transparent;
	color: var(--white-color);
	border-radius: 50%;
	display: inline-block;
	margin: 0.5em 0;
	box-shadow: 0 0 0 2px var(--white-color);
	transition:all 0.3s;
}

section.contact-us a:hover i{
	color:var(--white-color);
	box-shadow: 0 0 0 2px var(--white-color);
}

@media screen and (max-width:992px){ 
	section.contact-us .title,
	section.contact-us .subtitle,
	section.contact-us .description,
	section.contact-us .address,
	section.contact-us .email{
		text-align: left;
		display: block;
	}
	
	section.contact-us .contact-wrapper {
		justify-content: flex-start;
	}
	
	section.contact-us .title {
		margin: 0 0 1.125rem 0;
	}
}

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