
.panel-title{
	font-size: 1.3em;
	font-weight: 700;
	font-variant: small-caps;
}

.jumbotron{
	background-size: cover; 
	background-repeat: no-repeat; 
	height: 350px;
}

/* extra large displays */
@media only screen and (min-width: 2001px) {
	.jumbotron {
		background-image: url("/static/img/services-xl.jpg");
		background-position: 50% 0%;		
	}
}

/* large displays */	
@media only screen and (max-width: 2000px) {
	.jumbotron {
		background-image: url("/static/img/services-lg.jpg");
		background-position: 50% 20%;
	}
}

/* medium displays */
@media only screen and (max-width: 1200px) {
	.jumbotron{
		background-image: url("/static/img/services-md.jpg"); 
		background-position: 50% 0%;
	}
}

/* small displays */
@media only screen and (max-width: 992px) {
	.jumbotron {
		background-image: url("/static/img/services-sm.jpg"); 
		background-position: 50% 0%;
	}
}


/* extra-small displays */
@media only screen and (max-width: 768px) {
    .jumbotron {
		background-image: url("/static/img/services-xs.jpg");
		background-position: 50% 0%;		
	}
}