/*	GRID
/*====================================================================*/

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { 
	float: left;
	box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	}
	
.col-12 { width: 100%; }
.col-11 { width: 91.66666667%; }
.col-10 { width: 83.33333333%; }
.col-9 { width: 75%; }
.col-8 { width: 66.66666667%; }
.col-7 { width: 58.33333333%; }
.col-6 { width: 50%; }
.col-5 { width: 41.66666667%; }
.col-4 { width: 33.33333333%; }
.col-3 { width: 25%; }
.col-2 { width: 16.66666667%; }
.col-1 { width: 8.33333333%; }

/*	COMMON
/*====================================================================*/

html, body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

body { 
	margin: 0; 
	font-family: 'Questrial', sans-serif;
	background-color: #ffffff;
}

.container { 
	min-width: 300px;
	max-width: 1200px;
	height: auto;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;         /* Opera/IE 8+ */	
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	text-align: center;
}

section {
	display: block;
	width: 100%;
	margin: 100px 0px;
	float: left;
}

.block {
	display: block;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
	}
	
.blue { color: #22335f; }
.red { color: #ed1c24; }
.orange { color: #f05a3f; }
	
/*	TYPOGRAPHY
/*====================================================================*/	
h1, h2, h3, h4, h5, h6 { 
	font-family: 'Questrial', sans-serif;
	margin: 0px 0px 10px;
	font-weight: 700;
	text-transform: none;
	color: #22335f;
	}
	
h1 { font-size: 60px; line-height: 65px; }	
h2 { font-size: 50px; line-height: 50px; }
h3 { font-size: 40px; line-height: 40px; }	
h4 { font-size: 30px; line-height: 30px; }	
h5 { font-size: 28px; line-height: 28px; }	
h6 { font-size: 24px; line-height: 24px; }

p { 
	font-family: 'Questrial', sans-serif;
	color: #22335f;
	margin: 0px 0px 20px 0px;
	font-size: 18px;
	line-height: 21px;
	font-weight: 300; /* Light */
	text-align: center;
	}
	
	
/*	PAGE
/*====================================================================*/
section .logo {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 0px auto;
	text-align: center;
	}
	section .logo img { width: 100%; max-width: 360px; }
	
	section p.main { 
		font-size: 24px;
		line-height: 26px;
		color: #333333;
		margin: 40px 0px;
	}
	section p {
		color: #333333;
		/*text-transform: uppercase;*/		
	}
	section p a {
		color: #333333;
		text-decoration: none;
	}	
	section span.tel { 
		font-weight: 400;
	}
	section p.address { 
		margin: 0px 0px;
	}	
    section .btn { text-decoration: none; display: inline-block; margin: 0px 0px 50px; text-transform: uppercase; }

