.projetos {
    display: grid;
    grid-template-columns: 80%;
    justify-content: center;
    padding: 0px 72px;
    margin-top: 50px;
}

.projetos .title_projetos .left .title_proj {
    font-family: 'm-bold';
    color: black;
    margin-bottom: 10px;
}

.projetos .title_projetos .left .subtitle_proj .text1 {
    font-family: 'm-semibold';
    font-size: 2.5rem;
}

.projetos .title_projetos .left .subtitle_proj b {
     font-family: 'm-extrabold';
     color: var(--cor-azul);
}

.projetos .itens_emp{
    display: grid;
    grid-template-columns: repeat(3, 30%);
    column-gap: 30px;
    row-gap: 40px;
    margin-top: 50px; 
}

.icon_footer{
    width: 17px;
}

.projetos .itens_emp .text_emp p{
    margin-bottom: 10px;
    color: var(--cor-azul);
    font-family: 'm-medium';
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    column-gap: 8px;
}

.projetos .itens_emp .img_emp{
    position: relative; 
}

.projetos .itens_emp .img_emp .badge_emp{
    position: absolute;
    z-index: 1;
    right: 9px;
    top: 9px;
    padding: 5px 12px;
    border-radius: 8px;
    background-color: var(--cor-verde);
    color: white;
    font-family: 'm-bold';
    font-size: 0.9rem;
}


.projetos .itens_emp .text_emp .nome_emp{
    font-family: 'm-bold';
    font-size: 1.2rem;
    color: var(--cor-azul);
}

.projetos .itens_emp .item .button_detalhes{
    display: flex;
    justify-content: center;
    margin-top: 20px;   
}

.projetos .itens_emp .item .button_detalhes button{
    background-color: var(--cor-azul-claro);
    color: white;
    font-family: 'm-bold';
    border: 0;
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
  
}

.projetos .text_emp{
    margin-top: -20px;
    border: 1px solid var(--cor-cinza2);
    border-radius: 0 0 15px 15px;
    padding: 40px 30px 30px 30px;
}

.bx-wrapper img {
    max-width: 100%;
    display: block;
    border-radius: 23px !important;
}

.bx-wrapper{
    border: 0px !important;
    border-radius: 23px  !important;
    margin-bottom: 0px !important;
}

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

    .projetos {
        display: grid;
        grid-template-columns: 90%;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 20px;
    }

    .projetos .title_projetos .left .subtitle_proj .text1 {
        font-family: 'm-semibold';
        font-size: 1.2rem;
    }

    .projetos .itens_emp {
        display: grid
    ;
        grid-template-columns: repeat(1, 100%);
        column-gap: 30px;
        row-gap: 40px;
        margin-top: 50px;
    }

}