html, body {
    margin: 0;
    padding: 0;
    overflow: initial;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.header,
.footer {
    padding-right: 10px;
    padding-left: 10px;
    margin: 0 auto;
    max-width: 1190px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.header {
    padding-top: 35px;
    padding-bottom: 35px;
}

.header__logo {
    float: left;
    line-height: 0;
}

.header__logo img {
    width: 100%;
}

.header__home {
    float: right;
    line-height: 90px;
    font-size: 15px;
}

.header__home a {
    display: block;
}

.header__home a,
.footer__inner a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.header__home a:hover,
.footer__inner a:hover {
    text-decoration: underline;
}

.footer__inner {
    border-top: 10px solid #e9e9e9;
    padding-top: 40px;
    padding-bottom: 10px;
}

.footer__inner p {
    margin: 0;
    font-size: 14px;
}

.footer__inner p + p {
    margin: 10px 0 0;
}

@media all and (max-width: 639px) {
    .header {
        padding-top: 15px;
        padding-bottom: 0;
    }

    .header__logo {
        float: none;
        max-width: none;
        text-align: center;
    }

    .header__logo img {
        height: auto;
        width: auto;
        max-width: 100%;
    }

    .header__home {
        line-height: 30px;
        float: none;
        text-align: center;
        clear: both;
    }
}