body {
    background: rgb(243,240,251);
    background: -moz-linear-gradient(-45deg, rgba(243,240,251,1) 0%, rgba(226,220,237,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(243,240,251,1) 0%,rgba(226,220,237,1) 100%);
    background: linear-gradient(135deg, rgba(243,240,251,1) 0%,rgba(226,220,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f0fb', endColorstr='#e2dced',GradientType=1 );
    height: 100vh;
    display: flex;
    align-items: center;
    color: #000;
    position: relative;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #33578A;
}

p {
    line-height: 25px;
    color: #000000;
    font-size: 18px;
}

a {
    color: #6FA1F0;
    font-weight: 600;
    text-decoration: none;
}

.bg-pattern {
    position: absolute;
    width: 50%;
    height: 100%;
    background: url(../img/pattern.svg);
    background-size: 168%;
    z-index: -1;
    right: 0;
    background-repeat: repeat;
}

.btn {
    text-decoration: none;
    padding: 16px;
    background-color: #44c6ac;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: .4s;
}

.btn:hover {
    color: #fff;
    border-color: #fff;
}

.content-block {
    margin: 32px 0;
}

.content-block p{
    font-family: 'Work Sans', sans-serif;
}

.landing {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing > * {
    width: 50%;
}

.landing-logo {
    margin-left:2vw;
}

.landing-content {
    margin-right:7vw;
}

.landing-logo .content-block {

    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.landing-logo .content-block img {
    height: 28vw;
    max-height: 389px;
}

.eduqo-wide-logo {
    width: 141px;
}

@media(max-width: 740px) {

    body {
        display: block;
        height: inherit;
    }

    .landing {
        flex-direction: column;
    }

    .landing > * {
        width: 95%;
    }

    .landing-logo .content-block img {
        height:inherit;
        max-height:inherit;
        width: 100%;
    }

    .landing-content, .landing-logo {
        margin: 0;
    }

    .bg-pattern {
        background-size: 100%;
        bottom: 0;
        width: 100%;
        height: 40%;
    }
}