<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.contact-info {
	position:relative;
	z-index:2;
	pointer-events:none;
}
.contact-info-box {
	position:relative;
	text-align:center;
	margin:10px 0;
	background: rgb(104,19,203);
	background: -webkit-linear-gradient(32deg, rgba(104,19,203,1) 0%, rgba(0,91,234,1) 100%);
	background: -o-linear-gradient(32deg, rgba(104,19,203,1) 0%, rgba(0,91,234,1) 100%);
	background: linear-gradient(122deg, rgba(104,19,203,1) 0%, rgba(0,91,234,1) 100%);
	background-size:200% auto;
	background-position:left center;
	transition:.5s;
	border-radius:20px;
	padding:20px;
	height:100%;
	color:#fff;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	pointer-events:all;
}
.contact-info-box:hover,
.contact-info-box:focus {
	background-position:right center;
}
.contact-info-box .icon {
	font-size:2rem;
	margin-bottom:10px;
	color:#fff;
	transition:.3s;
}
.contact-info-box:hover .icon,
.contact-info-box:focus .icon {
	transform:scale(1.2);
}
.contact-info-box .info a {
	color:#fff;
}
.contact-info-box:hover .info a,
.contact-info-box:focus .info a {
	color:#fff;
}

#map {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	min-height:400px;
	height:100%;
}

.contact-holder a,
.contact-holder {
	color:#1a2d49;
	font-weight:400;
}
.contact-holder a:hover,
.contact-holder a:focus {
	color:#000;
}

.contact-holder h2{
	font-weight:900;
}</pre></body></html>