html {
    background: var(--SG-Grad---Dark-Blue, linear-gradient(235deg, #061B2B 17.05%, #0E3E62 100%));
    background-size: cover;
    background-repeat: no-repeat;
}

html, body {
    color: var(--SG---Ice, #CDEAFF);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

a {
    color: var(--SG---Ice, #CDEAFF);
    text-decoration: underline;
}

a:hover {
    color: #fff;
    text-decoration: none;;
}

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

.wrapper {
    display: flex;
    align-items: center;
    padding: 30px;
    height: 100vh;
    width: 1000px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content {
    display: flex;
    flex-direction: column;
} 

header {
    margin-bottom: 60px;
}

section {
    margin-bottom: 60px;
}

footer {

}

.cm > div {
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: bold;
    opacity: .5;
}

.cm + .cm {
    margin-top: 30px;
}

.mail i {
    display: none;
}

@media (min-width: 900px) {
    .wrapper {
        padding: 30px 60px;
    }

    .content {
        flex-direction: row;
        align-items: center;
    } 

    section {
        margin-right: 120px;
        margin-bottom: 0;
    }
}