html, body, button {
    font-family: Roboto, Arial, sans-serif;
}
button {
    outline: none;
    -webkit-appearance: none;
}

body {
    background: #fff;
    color: #111;
    margin: 0 auto;
    padding: 0 0 48px 0;
    width: 1200px;
}

.banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 380px;
    margin-top: 24px;
}
.banner-half {
    margin: 12px;
}
.banner-text {
    font-size: 42px;
    line-height: 66px;
    font-weight: 600;
    display: grid;
    align-items: center;
    justify-items: center;
    order: 1;
    text-transform: uppercase;
    background: #5aac4e;
    color: #111;
}
.banner-text span {
    display: inline-block;
    color: #fff;
    font-style: italic;
}
.banner-image {
    background-image: url('./images/banner.jpg');
    background-size: cover;
    background-position-x: -50px;
}

.logo {
    font-family: Roboto Slab, Arial, sans-serif;
    font-size: 40px;
    display: inline-block;
    background: #111;
    margin: 24px;
    padding: 10px 18px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.logo:hover {
    background: #5aac4e;
}

.section {
    padding: 36px;
}

.title {
    font-size: 38px;
    font-weight: bold;
    margin: 48px 0 24px 0;
    text-align: center;
}

.grid2 {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.grid2-item {
    font-size: 17px;
    margin: 12px;
    padding: 42px;
    line-height: 26px;
    background: #edf5f5;
}
.grid2-title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #5aac4e;
}
.grid2-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 18px;
}

.contact {
    background-image: url('./images/contact.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 24px;
}
.contact-info {
    padding: 18px;
    background: rgba(241, 243, 250, .25);
    margin-bottom: 24px;
    font-size: 17px;
    background: #111;
    color: #fff;
    display: inline-block;
}
.contact-info a {
    color: #fff;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    margin-bottom: 12px;
    color: #5aac4e;
}

@media only screen and (max-width: 690px) {
    body {
        width: auto;
        padding: 8px;
    }
    .logo {
        font-size: 30px;
    }
    .banner {
        margin-top: 0;
        grid-template-columns: 1fr;
        height: auto;
    }
    .banner-half {
        margin: 8px;
    }
    .banner-text {
        font-size: 28px;
        line-height: 36px;
        min-height: 200px;
    }
    .banner-image {
        min-height: 250px;
        background-position-x: 0;
    }
    .title {
        font-size: 32px;
    }
    .grid2 {
        width: auto;
        grid-template-columns: 1fr;
    }
    .grid2-item {
        padding: 24px;
        margin: 8px;
    }
}