body {
    font-family: 'Open Sans';
}

#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: absolute;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;

}

.bg {
    position: absolute;
    top: 50%;
    width: 30%;
    height: 50%;
    left: 60%;
    background: url('../img/bg.svg') no-repeat 50%;
    background-size: contain;
    transform: translateY(-50%);
}

h1 {
    font-size: 70px;
    width: 40%;
    position: absolute;
    color: #fff;
    left: 10%;
    line-height: 70px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0px;
}

h1 span {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin-top: 30px;
    position: relative;
    display: block;
    line-height: normal;
}

@media (max-width: 1023px) {
    h1 {
        width: 80%;
        top: 14%;
        transform: translateY(0px);
    }

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

}

@media (max-width: 767px) {
    h1 {
        font-size: 48px;
        line-height: 48px;
        top: 6%;
    }

    .bg {
        top: 57%;
        height: 35%;
    }

}