﻿* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 1027px;
    margin: 16px auto;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    background-color: #fff;
    border: solid thin #000;
    position: relative;
    overflow: hidden;
    color: #000;
    box-sizing: border-box;
}

address {
    font-style: normal;
}

article {
    margin: 0;
    padding: 20px 20px 0;
}

footer a {
    color: #000;
    display: block;
    text-align: center;
    width: 187px;
    height: 47px;
    line-height: 47px;
    font-weight: bold;
    background: #fd5108;
}

footer a:hover {
    text-decoration: none;
    background: #000;
    color: #fff;
}

header {
    margin: 0;
}

.logo {
    padding: 12px 20px;
}

.banner {
    background: url('../img/banner.jpg') no-repeat;
    background-size: cover;
    padding: 80px 20px 70px;
}

.banner p {
    margin-bottom: 6px;
}

.banner span {
    margin-right: 7px;
    font-size: 13px;
}

.banner i {
    margin-right: 5px;
}

footer {
    margin: 20px 20px 0;
    padding: 20px 0;
    border-top: #9B9B9B 1px solid;
}

.color,
.color a {
    color: #fd5108;
}

.color,
.font {
    font-size: 130%;
}

h1 {
    font-size: 24px;
    line-height: 28px;
}

h1 span {
    font-size: 13px;
    font-weight: normal;
}

h2 {
    font-size: 16px;
    margin: 12px 0;
    line-height: 22px;
    font-weight: 900;
}

h3 {
    font-size: 22px;
    margin: 16px 0px;
    line-height: 26px;
}

p {
    margin-bottom: 2px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    padding: 0 0 16px 22px;
    list-style: none;
}

ul li {
    padding-left: 13px;
}

li:before {
    text-indent: -14px;
    content: "\2022";
    color: #000;
    float: left;
    margin-left: 0px;
    font-size: 21px;
    margin-top: -5px;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 241px;
    background-color: #fff;
    padding: 16px;
    color: #000;
    position: absolute;
    top: -95px;
    left: 36px;
    z-index: 1;
    font-weight: normal;
    font-size: 13px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

@media screen and (max-width:1026px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    h1 {
        font-size: 22px;
    }
}

@media screen and (max-width:660px) {
    .banner span {
        display: inline-block;
    }

    ul {
        padding-left: 0;
    }

    .block {
        display: block !important;
        margin-right: 0 !important;
    }

    .block+br {
        display: none;
    }

    .tooltip .tooltiptext {
        left: 16px;
    }
}