.informacoes-equipamentos{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.grid-ap .item1 { 
    grid-area: textap;
    font-weight: 400;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #061940;
}

.grid-ap .item2 { 
    grid-area: img1;

}

.grid-ap .item3 { 
    grid-area: gallery;
    display: flex;
    justify-content: space-around;
    margin-top: 20px;


}


.grid-ap{
    display: grid;
    grid-template-areas:
        'textap img1'
        'gallery gallery';
    width: 75%;
    position: relative;
    max-width: 1000px;
}

.grid-ap #img1{
    width: 100%;
}

.grid-ap #img2, .grid-ap video{
    width: 30%;
    
}


@media screen and (max-width: 770px){

    .grid-ap{
        width: 95%;
    }

}

@media screen and (max-width: 650px){

    .grid-ap .item1{
        font-size: 13px;
    }

}

@media screen and (max-width: 450px){

    .informacoes-equipamentos{
        padding: 30px 15px;
    }

    .grid-ap{
        grid-template-areas:
            'img1'
            'textap'
            'gallery';
        width: 100%;
    }

    .grid-ap .item2 { 
        grid-area: img1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    
    }

    

    .grid-ap #img1{
        width: 50%;
    }

}