/*
 * Contact Section
 */

.contact-section {}

.contact-section .title {
	display: inline-block;
	color: var(--teal);
	background: -moz-linear-gradient(left, var(--blue) 0%, var(--teal) 50%, var(--green) 100%);
	background: -webkit-linear-gradient(left, var(--blue) 0%,var(--teal) 50%,var(--green) 100%);
	background: linear-gradient(to right, var(--blue) 0%,var(--teal) 50%,var(--green) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-section .heading {
	margin-top: 30px;
	margin-bottom: 10px;
}

.contact-section .address {
	margin-bottom: 10px;
}

.contact-section .get-in-touch {
	font-size: 0;
}

.contact-section .get-in-touch a {
	padding: 0 12px;
}

.contact-section .get-in-touch a > img {
	margin-left: 0;
	margin-right: 3px;
}

.contact-section .get-in-touch .call,
.contact-section .get-in-touch .email {
	margin-bottom: 15px;
	margin-right: 10px;
}

.contact-section .social-icons .icon {
	display: inline-block;
	width: 42px;
	height: 42px;
	margin-left: 8px;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
	border-radius: 4px;
	background-color: var(--off-light);
	border: 1px solid rgba(180,180,180,0.1);
	cursor: pointer;
	transition: box-shadow .25s ease-out;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25), 0px 1px 6px 0px rgba(0, 0, 0, 0.25), inset 0px 1px 0px 0px rgba(255, 255, 255, .3);
}

.contact-section .social-icons .icon:first-child {
	margin-left: 0;
}

.contact-section .social-icons .icon:hover {
	box-shadow: 0px 2px 10px 2px rgba(0, 0, 0, 0.25), 0px 1px 6px 0px rgba(0, 0, 0, 0.25), inset 0px 1px 0px 0px rgba(255, 255, 255, .3);
}

.contact-section .social-icons .icon:focus {
	outline: 0;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25), 0px 0px 0px 0px rgba(0, 0, 0, 0.25), inset 0px 0px 0px 0px rgba(255, 255, 255, .3);
}

.contact-section .social-icons .icon * { pointer-events: none; }

@media( min-width: 640px )  {

	.contact-section .heading {
		margin-top: 40px;
		margin-bottom: 15px;
	}

	.contact-section .get-in-touch .call {
		font-size: 1.3rem;
	}

	.contact-section .get-in-touch a {
		padding: 0 22px;
	}

	.contact-section .social-icons .icon {
		width: 48px;
		height: 48px;
	}

	.contact-section .social-icons .icon:first-child {
		margin-left: 0;
	}
}

@media( min-width: 1040px ) {
	.contact-section .heading {
		margin-top: 70px;
		margin-bottom: 15px;
	}
}
@media( min-width: 1380px ) {}
