* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #132135;
    color: #ffffff;
    font-family: 'Open Sans;', sans-serif;
    line-height: 1.5;
    padding: 3vw
}

hr {
    background: #424d5d;
    border: 0;
    height: 1px;
    margin: 0;
    margin: 3vw 8vw;
}

div.top {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.center {
    text-align: center;
}

.services {
    display: flex;
    justify-content: center;
}

.services div {
    text-align: center;
    width: 33%;
}

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

.services p {
    max-width: 300px;
}

.services a {
    color: #ffffff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.services span {
    background-color: #3e72ca;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
    padding: 11px 12px 9px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

footer {
    margin-top: 4vw;
    opacity: .9;
}

.maxi{max-width: 600px; margin: auto; opacity: .8;}

@media(max-width:768px) {
    .services {
        align-items: center;
        flex-direction: column;
    }

    .services span {
        margin-bottom: 50px;
    }

    .services div {
        width: 100%;
    }
}

