.project{
    height: auto;
    background-color: #71A6BE;
    display: flex;
    margin-bottom: 2em;
    padding: 0 5em;
    justify-content: space-between;
}
.project-content{
    padding: 1em 0;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    width: 40%;
}
.project-content *{
    color: white;
    text-align: center;
}
.project-image{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    aspect-ratio: 1/1;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
}
.project-image img{
    width: 100%;
}
.diag-line{
    width: 5em;
    transform: skew(335deg);
    background-color: white;
}
h2{
    color: white;
    font-size: 3em;
    margin: 0.1em;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.title{
    margin-bottom: 1em;
}

.inverted{
    flex-direction: row-reverse;
}

.inverted .diag-line{
    transform: skew(25deg);
}

.flex-seta{
    border-radius: 10px;
    padding: 0.6em 1em;
    background-color: #578E9B;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.project-button{
    padding: 0em 0.5em;
    display: inline-block;
    font-weight: bolder;
    text-transform: uppercase;
    line-height: 2em;
}

.seta{
    padding: 0.6em;
    background-color: #578E9B;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
    aspect-ratio: 1/1;
}
#seta{
    height: 20px;
}

#pegada_de_carbono{
    background-color: black;
}


@media screen and (max-width: 800px){
    .project{
        flex-flow: column-reverse;
        align-items: center;
        padding: 0 2.5em;
    }
    .diag-line{
        display: none;
    }
    .project-content{
        width: 90%;
    }
    .project-image{
        height: 300px;
    }
    .flex-seta{
        padding: 0.6em 3em;
    }
    .project-content > h2{
        font-size: 2.5em;
    }

}
