.sobre{
    display: flex;
    column-count: 2;
}

.left{
    margin-left: 30px;
}

.rigth{
    margin-right: 30px;
}

.sobre h1{
    font-size: 1.8rem;
    margin-top: 0;
    color: var(--text-black);
    margin-bottom: 30px;
}

.sobre p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-align: justify;
    text-justify: inter-word;
}

.about img{
    border-radius: 5px;
    width: 280px;
    height: 302px;
    margin-left: 60px;
    -webkit-clip-path: polygon(25% 0, 100% 0, 100% 75%, 75% 100%, 0 100%, 0 25%);
    clip-path: polygon(25% 0, 100% 0, 100% 75%, 75% 100%, 0 100%, 0 25%);
}

@media screen and (max-width: 800px) {

    .about{
        padding-left: 0;
        padding-right: 0;
    }

    .sobre{
        flex-direction: column-reverse;
        column-count: 1;        
    }

    .sobre h1{
        width: 100%;
        text-align: center;
    }

    .left{
        padding-left: 0;
        margin-left: 0;
    }

    .rigth{
        margin-bottom: 30px;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .rigth img{
        margin: 0;
        max-width: 250px;
        width: auto;
        height: auto;
    }
}