@charset "utf-8";

/* CSS reset - http://meyerweb.com/eric/tools/css/reset/ - v2.0 | 20110126 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box; /* by bsfol */
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* by bsfol */
input, textarea, select {
    margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
    outline: none;
}
select {
    cursor: pointer;
    text-indent: 0px;
    text-overflow: '';
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: #fff url(../img/arrow.png) 98% no-repeat;
}
button {
	display: block;
	cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}
img {
    display: block;
}
a {
    display: block;
    text-decoration: none;
}

/* End CSS reset */

body {
    position: relative;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background-color: #fff;
    font-size: 20px;
    line-height: 28px;
    color: #1B2C3E;
}
button, input, textarea, select {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}
h1, h2 { 
    font-size: 35px; 
    line-height: 40px;  
    font-weight: 800;      
}
.container{
    position: relative;
    width: 93%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width: 1366px) {
    body {        
        font-size: 18px;
        line-height: 25px;
    }
}

@media(max-width: 550px) {
    body {        
        font-size: 18px;
        line-height: 25px;
    }
    h1, h2 { 
        font-size: 30px; 
        line-height: 37px;        
    }
}

