html, body {
  overflow-x:hidden 
} 

a, a:link { transition: all 0.3s ease 0s; }
.clear-both { clear: both; }
.no-pad { padding-left: 0; padding-right: 0; }
.no-inner-pad [class*="col-"] { padding-left: 0; padding-right: 0; }







.mainPicture { position: relative; }
.mainPicture > .overlay {
	position: absolute; top: 0; left: 0;
	width: 100%; height: 100%;

	background-color: rgba(0, 0, 0, 0);

	transition: all 0.8s ease 0s;
}
.mainPicture:hover > .overlay {
	background-color: rgba(0, 0, 0, 0.3)
}

.mainPicture > img { margin: 0 auto; }
	.mainPicture > .caption {
		position: absolute;
		color: white;
	}
	.mainPicture > .caption > .wrap {
		position: relative;
	}
		.mainPicture > .caption > .wrap > h1,
		.mainPicture > .caption > .wrap > h2,
		.mainPicture > .caption > .wrap > h3,
		.mainPicture > .caption > .wrap > p {
			letter-spacing: 1px;
		}


	@media (max-width: 768px) {
		.mainPicture > .overlay {
			background-color: rgba(0, 0, 0, 0.3);
		}

			.mainPicture > .caption {
				top: 0;
				width: 95%;
			}
	}









.social { padding-left: 0; }
	.social > li { display: inline-block; list-style: none; }
	.social > li > a,
	.social > li > a:link {
	  display: block;
	  border: 2px white solid;
	  text-align: center;
	  color: white;
	  transition: all 0.3s ease 0s;
	}
	.social > li:hover > a {
	  border-color: #19a1e6;
	  color: #19a1e6;
	}







.btn.more {
	text-transform: uppercase;
	font-size: 15px; font-weight: 500;
	color: #00aeef;
	padding-left: 0; padding-right: 0;
	margin-top: 10px;
}
.btn.more:hover { color: #17479d; }





.learnMore {
	text-transform: uppercase;
	color: #ddd;
	border: 2px white solid;
	border-radius: 0;
	background-color: transparent;
	transition: all 0.3s ease 0s;
	padding: 4px 12px;
	margin-top: 15px;
}
.learnMore:hover {
	text-decoration: none;
	color: #19a1e6;
	border-color: #19a1e6;
}

.viewMore {
	text-transform: uppercase;
	color: white;
	border: 0;
	border-radius: 0;
	background-color: #e81d16;
	transition: all 0.3s ease 0s;
	font-size: 12px;
	padding: 8px 22px;
	box-shadow: 2px 2px 10px #ccc;
}
.viewMore:hover {
	text-decoration: none;
	color: white;
	background-color: #17479d;
}
.viewMore:visited {
	color: white;
	background-color: #e81d16;
}
	



.btn.green {
	color: white;
	border-radius: 0;
	background-color: #5bc3be;
	transition: all 0.3s ease 0s;
	padding: 8px 14px;
	margin-top: 15px;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 400;
}
.btn.green:hover {
	text-decoration: none;
	background-color: #35938c;
}



.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 0;
}