body {
    font-family: 'Open Sans';
    margin: 0px;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

#container {

    background: #1fa0fb;
    background: -webkit-linear-gradient(legacy-direction(180deg), #1fa0fb 0%,#0074bc 100%);
    background: linear-gradient(180deg, #1fa0fb 0%,#0074bc 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0%;
    position: relative;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;

}

.bg {
    position: absolute;
    top: 80px;
    width: 10%;
    height: 50%;
    left: 20px;
    background: url('../img/bg.svg') no-repeat 0px 0px;
    background-size: contain;
}

.content {
    width: 77%;
    position: relative;
    color: #fff;
    left: 18%;
    padding-top: 80px;
    padding-bottom: 50px;
}

.content a {
    font-weight: bold;
    color: #FFF;
}

@media (max-width: 767px) {

    .bg {
        position: relative;
        top: 40px;
        width: 80px;
        height: 80px;
        left: 20px;
        background: url('../img/bg.svg') no-repeat 0px 0px;
        background-size: contain;
    }

    .content {
        width: calc(100% - 40px);
        left: 20px;
        padding-top: 50px;
    }

}