img.logo {
    position: fixed;
    top: 40%;
    left: 15%;
    
    height: 15rem;

    z-index: 4;

    -webkit-transition: all .5s;

    -o-transition: all .5s;

    transition: all .5s;
}

section.sobre {
    width: 50vw;

    position: absolute;
    top: 8rem;
    right: 2rem;

    
    padding-bottom: 7.5rem;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

section.sobre nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    margin-bottom: 3rem;
}

section.sobre nav a {
    text-transform: uppercase;
    font-size: 1.125rem;
    color: var(--color-secondary);
    border-bottom: none;

    -webkit-transition: all .5s;

    -o-transition: all .5s;

    transition: all .5s;
}

section.sobre nav a.active,
section.sobre nav a:hover {
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: none;
    
    color: var(--color-primary);
}

section.sobre nav+p {
    margin-bottom: 7.5rem;
}

section.sobre p {
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

section.sobre h6.cv-line {
    display: inline;

    margin: 0 0 1.87rem 0;
    padding: 0;

    /* border-bottom: 1px solid var(--color-primary); */
}

div.cv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

div.cv-left {
    width: 40vw;
}


div.cv-right {
    width: 10vw;
    text-align: right;
}

div.cv + h6.cv-line {
    margin-top: 3rem;
}


/* Media query
***************************************************/

@media (max-width: 1050px) {
    section.sobre {
        width: 60vw;
        right: 0;

        padding: 0 2rem 7.5rem 2rem;
    }

    img.logo {
        top: 30%;
        left: 5%;
    }

}

@media (max-width: 800px) {
    section.sobre {
        width: auto;
        top: 18rem;
    }

    img.logo {
        width: 10rem;
        top: 4rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        position: absolute;
    }

    div.cv-left {
        width: 80%;
    }

    div.cv-right {
        width: 20%;
    }
}

@media (max-width: 450px) {
    section.sobre {
        padding: 0 1rem 7.5rem 1rem;
    }
}



