
/*
font-family: 'latoblack';
font-family: 'latobold';
font-family: 'latohairline';
font-family: 'latolight';
font-family: 'latoregular';
*/

body{
	background: #fff;
	padding: 0;
	margin: 0;
    font-family: 'Arial';

	-webkit-font-smoothing: antialiased;
	font-size: 14px;
	transition: opacity .2s ease;
	position: relative;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin: 0 0 20px;
	padding: 0;
}
h1, .h1 {
	font-size: 55px;
}
h2, .h2 {
	font-size: 39px;
}
h3, .h3 {
	font-size: 34px;
}
h4, .h4 {
	font-size: 27px;
}
h5, .h5 {
	font-size: 20px;
}
h6, .h6 {
	font-size: 17px;
}

a:hover{
    color: #84a6b8;
}

.button{
    padding: 8px 20px;
    text-transform: lowercase;
    color: #fff;
    background: #84a6b8;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;

    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
         -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

.button:hover{
	background: #7093a6;
	color: #fff;
}

.site-container {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
}

.wrapper {
    width: 1200px;
    max-width: 100%;
    padding: 0px 15px;
    margin: 0 auto;
}

.header{
    position: absolute;
    background-color: rgba(255,255,255,0.95);
    width: 100%;
    display: inline-block;
    padding: 35px 0px 25px 0px;
    z-index: 1;
}

.logo{
    float: left;
}

.header-phone{
    float: right;
    padding-top: 18px;
}

.header-phone .phone{
    display: block;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 1px;
}

.header-phone .mail{
    font-size: 16px;
    font-weight: 700;
}

.header-phone .phone,
.header-phone .mail{
    color: #333;
    text-decoration: none;
}

.banner{
    background: url(images/banner.jpg) no-repeat;
    width: 100%;
    background-size: cover;
    position: relative;
    background-position: bottom;
}

.banner-text{
    min-height: 570px;
    margin: auto;
}

.banner-text h1{
    font-family: 'Arial';
    font-weight: 800;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin: auto;
    text-align: center;
}

.content{
    padding: 40px 20px;
    background: #fff;
}

.location{
	margin: 50px 0px 30px;
}

.location span{
	margin: 0px 5px;
}

.footer{
    padding: 10px 20px;
    background: #666766;
    font-size: 12px;
    color: #fff;
    font-style: italic;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer .bar{
	margin: 0px 10px;
	display: inline-block;
	font-style: normal;
}


/* Helpers */
.align-center{
    text-align: center;
}

.go-middle{
	display: flex;
	display: -webkit-flex; /*Safari*/
	display: -ms-flexbox; /*IE*/

	align-items: center;
	-ms-flex-align: center; /*IE*/
	-webkit-align-items: center; /*Safari*/
	-webkit-box-align: center;

	justify-content: center;
	-webkit-justify-content: center; /*Safari*/
	-ms-justify-content: center; /*IE*/
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}