/* general */
@import url('https://fonts.googleapis.com/css?family=Work+Sans:100,300,400,500,600,700,900');

body{
    color: #868686;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}

a{
    text-decoration: none;
}

/* container */
.container{
    display: flex;
}

#col-left{
    background: url('../assets/citron-bg.jpg') center #ffffff no-repeat;
    background-size: 140%;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
}

#col-right{
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    box-sizing: border-box;
}

.logo-app{
    margin-bottom: 44px;
}

.logo-app img{
    width: 420px;
}

.call-to-action{
    padding: 1.4em 3.3em 1.4em 1.2em;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    background: url(../assets/arrow-btn.svg) no-repeat 222px center #47BAB2;
    background-size: 20px;
    transition: 0.2s;
}

.call-to-action-contact {
    color: #000000;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 18px;
    border-bottom: 1px solid #000000;
}

.call-to-action:hover{
    transition: 0.2s;
    background-color: #DE7D8E;
}

#col-right h1{
    margin-bottom: 50px;
    padding: 0 4em;
    font-size: 1.625em;
    color: #8E8E8E;
    line-height: 1.3;
}

@media screen and (max-width: 970px){
    .container{
        flex-flow: row wrap;
    }

    #col-left{
        display: none
    }

    .logo-app img{
        width: 260px;
    }

    .logo-app{
        margin-bottom: 30px;
    }

    #col-right h1{
        font-size: 1.6em;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    #col-right{
       background: rgba(255, 255, 255, 0.8);
    }

    .call-to-action{
        padding: 1.1em 2.8em 1.1em 1em;
        background: url(../assets/arrow-btn.svg) no-repeat 218px center #47BAB2;
        background-size: 18px;
        transition: 0.2s;
    }

    body{
        background: url('../assets/citron-bg.jpg') center center #ffffff no-repeat;
        background-size: 140%;
    }
}

@media screen and (max-width: 750px){

    .logo-app img{
        width: 200px;
    }

    #col-right h1{
        font-size: 1.3em;
        line-height: 1.3;
        padding: 0 3em;
        margin-bottom: 30px;
    }

    #col-right{
       background: rgba(255, 255, 255, 0.8);
    }

}