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;
}
/* 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;
}

body {
    background-color: #efefef;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
    line-height: 1.5;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

h1 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

em {
    font-style: italic;
}

b {
    font-weight: 600;
}

.wrapper {
    max-width: 650px;
    margin: 0 auto;
    margin-top: 30px;
    padding: 20px;
}

.container {
    background-color: #fff;
    box-shadow: 1px 1px 1px 1px #d6d6d6;
}

.logo {
    text-align: center;
}

.background_placeholder {
    background: url(../img/background.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.section-main {
    padding: 30px 20px;
    overflow: auto;
}

.col-left, .col-right {
    background-color: #8ec746;
    padding: 20px;
    width: 41%;
    color: #fff;
    height: 200px;
}

.col-left {
    float: left; 
}

.col-right {
    float: right;
}

.col-right span {
    font-size: 14px;
}

.list {
    line-height: 1.7;
}

.list__item {
    font-size: 15px;
}

.list__item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
}

.list__item a:before {
    content: "";
    background: url(../img/mailicon.png) no-repeat center;
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 20px;
    height: 12px;
}

.list__item a:hover {
    color: #f5f5f5;
}

.gmap-container{
    height: 260px;
    clear: both;
}

.infow-title {
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: 600;
}

@media all and (max-width: 720px) {
    .col-left {
       float: none;
       margin-bottom: 20px; 
    }
    .col-right {
       float: none;
    }
    .col-left, .col-right {
        width: auto;
        height: auto;
    }
    .logo img {
        width: 260px;
    }
}

