:root {
    --f0: 'Open Sans', Arial, Helvetica, sans-serif;
    --f1: 'Fira Sans', sans-serif;
    --hf0: 'Inria', serif;
    --hf1: 'Fire Sans Medium', sans-serif;
    --hf2: 'Cormorant', 'Garamond', serif;
    --c1: #f4d7d7ff;
    --a-bgc: background-color .4s ease;
    --wbase: 2000px;
    --hbase: 1600px;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--f0);
    font-family: var(--f1);
    font-size: 18px;
}
body * {
    box-sizing: border-box;
}
h1 {
    font-size: 2.9em;
    letter-spacing: -0.05em;
    margin-bottom: 0;
    color: #e2f1ef;
}
blockquote {
    margin: 0;
    line-height: 1.5em;
}
h1,h2,h3,h4 {
    font-family: var(--hf2);
    font-weight: 400;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
p {
    line-height: 1.5em;
}
img {
    max-width: 100%;
    display: block;
}
input {
    font-size: 1rem;
    padding: .25rem;
}
#cover {
    background: #18203a url(../images/cover/cover-a1.jpg) 250px 0 no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
#logo {
    width: 100px;
    height: 80px;
    background: url(../images/cover/revinest-logo.svg) 0 0 no-repeat;
    background-size: contain;
    transform: scaleX(-1);
    animation: scaleRotate 1s ease forwards;
   
}
#inner-cover {
}
.inner-section {
    padding: 3em 2em;
    max-width: 1252px;
    margin: 0 auto;
}

.split{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.s2 > div {
    width: 50%;
}

a.cta {
    display: block;
    font-size: 20px;
    text-decoration: none;
}

a.contact {
    padding: .5em .25em;
    border: 0px solid #e2f1ef;
    max-width: 120px;
    text-align: center;
    color: #19203a;
    border-radius: 2px;
    background:#7bc46c;
    transition: all .4s ease;
}

#cover a.cta {
    margin-top: 1.5em;
}

a.cta:hover {
    background: rgba(86, 173, 115, 0.918);
}

@keyframes scaleRotate {
    from {
        transform: scaleX(-1);
    }
    to {
        transform: scaleX(1);
    }
}

@media only screen and (max-width: 500px){
    #cover {
        background-position: 220px 0;
    }
    #cover h1 {
        font-size: 2.5em;
    }
    .inner-section {
        padding:  2em 1em;
    }
}

@media only screen and (min-width: 1500px){
    #cover {
        background-position: 350px -250px;
    }
}