/* BASIC STYLING =========================================================== */
html, body {
	font-family: 'Roboto Condensed', 'Roboto', 'Helvetica Neue', Helvetica, sans-serif;
	background-color: #d2d6de;
}
.banner {
	background-image: url("../img/banner.png");
	background-color: #00c0ef;
    padding: 10px 20px 10px 20px;
    position: relative;
    height: 250px;
    color: #fff;
}
.banner:before {
	content: '';
	background-image: linear-gradient(360deg, #333 5%, rgba(32, 194, 97, 0));
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.banner .title {
	position: relative;
	padding-top: 30px;
}
.applications {
	position: relative;
	margin: 0 auto;
	bottom: 80px;
}
.card {
    box-shadow: 0px 1px 3px -2px;
    margin-bottom: 20px;
    text-align: center;
	border: 0px;
	transition: 0.5s ease-out;
}
.card-top {
	border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
	padding: 0.5rem;
	max-height: 45px;
	margin: 3px;
	color: #fff;
}
.card-top .card-title {
	position: absolute;
	display: inline;
	left: 12px;
}
.card-body {
	padding: 1rem;
	padding-top: 1.4rem;
}
.card-icon {
	box-shadow: 1px 1px 10px -3px #000;
	position: relative;
    margin: 0 0 0 auto;
    bottom: -5px;
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: inherit;
}
.card-icon.center {
	margin: 0 auto;
}
.text-icon {
	margin: 0;
	padding: 0;
	line-height: 50px;
}
.card-body a {
	color: initial;
	text-decoration: none;
}
/* COLORS ================================================================== */
.red {
	color: #dd4b39;
}
.green {
	color: #00a65a;
}
.yellow {
	color: #F0B400;
}
.bg-red {
	background: #dd4b39 !important;
	color: #FFF !important;
}
.bg-green {
	background: #00a65a !important;
	color: #FFF !important;
}
.bg-yellow {
	background: #F0B400 !important;
	color: #FFF !important;
}
.bg-gray {
	background: gray !important;
	color: #000 !important;
}
/* MEDIA =================================================================== */
@media(min-width: 768px) {
	.banner .title {
		font-size: 60px;
	}
}