.nuestroMetodo{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 70px;
    align-items: center;
}

.nuestroMetodo-info{
    display: flex;
    flex-direction: column;
    color: #333;
}

.nuestroMetodo-info h3{
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
}
.nuestroMetodo-info p{
    font-weight: 400;
    font-size: 1em;
    text-align: justify;
    padding: 0 20px;
}



.nuestroMetodo-img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
  
}

.nuestroMetodo-img-container img {
    width: 100%;
 
   
    max-width: 300px;
}






@media screen and (min-width: 992px){
    .nuestroMetodo{
        flex-direction: row;
    }


    .nuestroMetodo-img-container img{
        min-width: 400px;
    }

    .nuestroMetodo-img-container img:hover{
        transition: 1s all;
        transform: scale(1.1) ;
     }
}