/* CSS Document */
.row:hover .card {
	opacity: 0.5;
}
.row:hover .card:hover {
	opacity: 1;
}
.card {
	box-shadow: none;
	transition: all .35s;
}
.card:hover {
	box-shadow: 0px 0px 10px 2px rgba(51,51,51,0.50);
	transform: scale(1.05);
}
.card-header {
	background-color: #161432;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	padding: 1.5rem;
	background: -moz-linear-gradient(top,  rgba(22,20,50,1) 0%, rgba(35,83,138,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(22,20,50,1) 0%,rgba(35,83,138,1) 100%);
	background: linear-gradient(to bottom,  rgba(22,20,50,1) 0%,rgba(35,83,138,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161432', endColorstr='#23538a',GradientType=0 );
}

.card-body {
	padding: 0;
}

.card-text strong {
    font-weight: 400;
}

.attribute {
    background: #367c9e;
}

.attribute h3 {
    color: #fff;
}