* {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

body {
    font-weight: normal;
    font-style: normal;
    font-family: Roboto, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: 0;
}

.image__holder {
    position: fixed;
    display: flex;
    justify-content: center;
    width: 100vw;
    height: 60vh;
}

.image__holder-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.image {
    background: url('./images/logo.jpg') no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    height: 360px;
    width: 100%;
}

.image-spacer {
    height: 60vh;
}

.content {
    margin: 0 auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
    z-index: 2;
    height: 100%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.content__center {
    max-width: 1008px;
}

.bottom-spacer {
    height: 100px;
}

/* Content */

h1 {
    margin: 0xp;
}

h2 {
    margin: 0px;
}

.about {
    padding: 32px;
    max-width: 550px;
}

.section-one {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.services {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.services__card {
    background: white;
    width: 440px;
    padding: 16px;
    margin: 16px;
    text-decoration: none;
    color: #444;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.services__card h2 {
    margin-left: 8px;
}

.contact {
    padding: 32px;
    margin-top: 100px;
    width: 220px;
}

@media (max-width: 850px) {

    .image {
        height: 200px;
    }

    .section-one {
        flex-wrap: wrap;
    }

    .services__card {
        width: calc(100vw - 64px);
    }

    .about {
        width: calc(100vw - 64px);
    }

    .contact {
        width: calc(100vw - 64px);
        margin-top: 0;
    }
}

