/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

html, body {
	font-family: 'Open Sans', sans-serif;
}

html { 
  background: url('../images/background-concept.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

h1 {
	font-family: inherit;
	font-size: 30px;
	text-align: center;
	line-height: 40px;
	font-weight: 600;
	color: #274060;
}

h2 {
	font-family: inherit;
	font-size: 20px;
	text-align: center;
	line-height: 28px;
	font-weight: 400;	
}

h3 {
	background-color: #e98a15;
	color: #ffffff;
	font-weight: 600;
	font-family: inherit;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
}


.header img {
	width: 100%;
	max-width: 200px;
	height: auto;
}

.content {
	min-height: 500px;
}

.content ul li {
	list-style: disc;
	margin-left: 30px;
}


.footer {
	width: 100%;
	display: block;
	padding: 20px;
	background-color: #274060;
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	box-sizing: border-box;
}

.container {
	background-color: rgba(255,255,255,1);
}

.thumb-group {
	text-align: center;
}

.thumb {
	width: 200px;
	height: 200px;
	box-sizing: border-box;
	display: inline-block;
	overflow: hidden;
	margin: 10px;
	box-shadow: 2px 2px 2px #000000;
}

.thumb img {
	width: 200px;
	height: auto;
}

.map {
	width: 100%;
	height: 400px;
	margin-bottom: 20px;
}

.button-call
{
	display: inline-block;
	margin: 10px;
	padding: 10px;
	background-color: #335c81;
	border-radius: 3px;
	color: #ffffff;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #508ca4;
}


/* #Page Styles
================================================== */

/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {

		.header img {
			display: none;
		}
		
		.header h1 {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
			font-size: 20px;
			line-height: 24px;
			font-weight: 700;
		}

		.header h2 {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
			font-size: 18px;
			line-height: 22px;
			font-weight: 700;
		}


		.content p {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
		}

		.thumb {
			width: 150px;
			height: 150px;
		}

		.thumb img {
			width: 150px;
			height: auto;
		}
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		.header img {
			display: none;
		}

		.header h1 {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
			font-size: 18px;
			line-height: 22px;
			font-weight: 700;
		}

		.header h2 {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
			font-size: 16px;
			line-height: 20px;
			font-weight: 700;
		}

		.content p {
			padding-left: 10px;
			padding-right: 10px;
			box-sizing: border-box;
		}

		.thumb {
			width: 120px;
			height: 120px;
		}

		.thumb img {
			width: 120px;
			height: auto;
		}
	}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/