/* C6 Contact */
#c6.contact {
	width: 100%;
	padding: 15px;
	background-color: #fff;
	box-sizing: border-box;
	border: 1px solid var(--color-lime);
}

#c6.contact h3 {
	border-bottom: 1px solid var(--color-evergreen);
	text-align: center;
	width: auto;
	max-width: 230px;
	margin: 0 auto !important;
	padding: 0 0 5px 0;
	color: var(--color-evergreen);
}

#c6 .contact-info {
	margin: 30px auto 15px auto;
	flex-wrap: wrap;
	justify-content: space-around;
}

#c6 .phone,
#c6 .fax,
#c6 .email,
#c6 .location,
#c6 .hours {
	display: flex;
	align-items: flex-start;
}

#c6.contact p {
	text-transform: uppercase;
}

#c6.contact div p {
	color: #333;
	font-size: .9em;
	margin: 0 0 0 0;
}

#c6.contact .hours .options p {
	padding: 0 0 0 0;
}

#c6.contact p.faxnumber {
	display: flex;
	align-items: flex-start;
	text-decoration: none;
	color: #333;
	transition: color 200ms;
	font-size: 0.9em;
}

/** Icons **/
#c6 .contacticons {
	min-width: 18px;
	max-width: 18px;
	margin: 3px 10px 0 10px;
}

#c6.contact a {
	display: flex;
	align-items: flex-start;
	text-decoration: none;
	color: var(--color-evergreen);
	transition: color 200ms;
	font-size: 0.9em;
	margin: 0 0 1em 0;
}

/**Hover**/
#c6.contact a:hover {
	color: var(--color-lime);
	transition: color 200ms;
}

#c6 .cshape-1 {
	fill: var(--color-lime);
}

#c6 .cshape-2,
.cshape-3 {
	fill: var(--color-lime);
}

#c6 .cshape-2 {
	stroke: #fff;
	stroke-linecap: round;
	stroke-miterlimit: 10;
	stroke-width: 15px;
}

#c6 .hours.cshape-3 {
	fill: #fff;
}

/* Mobile Styles */
@media (max-width: 1100px) {
	#c6 .contact-info {
		justify-content: flex-start;
	}

	#c6 .phone,
	#c6 .fax,
	#c6 .email,
	#c6 .location,
	#c6 .hours {
		margin: 30px auto;
	}
}

@media (max-width: 900px) {
	#c6 .contact-info {
		flex-direction: column;
		flex-basis: 100%;
	}

	#c6 .contact-info>div {
		margin: 15px 0;
	}
}

@media only screen and (min-width: 701px) and (max-width: 960px) {
	#c6.contact {
		font-size: .9em;
	}

	#c6 .contacticons {
		width: 25px;
	}
}

/* End C6 Contact */