/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#aggregator .fusion-column-wrapper {
	width: 100%;
	padding-bottom: 100% !important;
	position: relative;
}

@media only screen and (min-width: 801px) {
	#aggregator .fusion_builder_column_1_2 .fusion-column-wrapper {
		padding-bottom: 50% !important;
	}
}

#aggregator .aggregator-block {
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;

	display: -ms-flexbox;   
	display: -webkit-flex; 
	display: flex;

	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;

	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

@media only screen and (min-width: 991px) and (max-width: 1100px) {
	#aggregator .aggregator-block {
		font-size: 14px;
	}
}

@media only screen and (min-width: 801px) and (max-width: 990px) {
	#aggregator .aggregator-block {
		font-size: 12px;
	}
}

#aggregator .aggregator-block .block-icon {
	position: absolute;
	top: 10px;
	left: 10px;
}

#aggregator .aggregator-block.content {
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;	
	justify-content: flex-end;

	padding-bottom: 30px;
	padding-left: 30px;
}

#aggregator .content {
	color: #fff;
}

#aggregator .content p {
	margin: 0;
}

#aggregator .content h2 {
	color: #fff;
	margin: 0;
}

#aggregator .content h4 {
	color: #fff;
	margin: 0 0 30px;
}

#aggregator .pfa {
	color: #fff;
}

#aggregator .pfa strong {
	font-size: 30px;
	line-height: 30px;
}

#aggregator .twitter {
	background-color: #84bd00;
	color: #fff;
	text-align: center;
	padding: 0 20px 0 20px;
}

#aggregator .facebook {
	background-color: #004a73;
	color: #fff;
	text-align: center;
	padding: 0 20px 0 20px;
}
#aggregator .instagram {
	background-color: #ea4655;
}

#aggregator .twitter .tweet-image img {
	border-radius: 50%;
	width: 75px;
}

#aggregator .twitter .tweet-user {
	text-transform: uppercase;
	font-weight: bold;
	padding-top: 10px;
}

#aggregator .twitter .tweet-text {
	padding-top: 10px;
	font-style: italic;
}

#aggregator .fusion-column-wrapper, #aggregator .fusion-column-inner-bg {
	overflow: hidden;
	opacity: 1;
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	transition: opacity 1s, transform 1s, -webkit-transform 1s;	
}

#aggregator .fusion-column-wrapper:hover, #aggregator .fusion-column-inner-bg:hover {
	opacity: 0.9;
	-webkit-transform: scale3d(1.05, 1.05, 1);
	transform: scale3d(1.05, 1.05, 1);	
	z-index: 10000;
}

#aggregator .twitter:hover, #aggregator .facebook:hover, #aggregator .instagram:hover {
	cursor: pointer;		
}


