@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.fila{
    width: 100%;
    padding: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(6 , 1fr);
    grid-auto-rows: 60px;
    grid-gap: 25px 20px;
    align-items: center;
    justify-items: stretch;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    -webkit-box-shadow: 9px 9px 14px -9px rgba(81,81,81,0.76); 
    box-shadow: 9px 9px 14px -9px rgba(81,81,81,0.76);
    }
.column-12{


width: 100%;
grid-column: 1 / 4;
}
.column-22{
   
   
width: 100%;
grid-column: 4/ 7;
}
.column-13{
 
width: 100%;
grid-column: 1/ 3;
}
.column-23{
 

width: 100%;
grid-column: 3/ 5;
}
.column-33{
 
width: 100%;
grid-column: 5/ 7;
}
.column-span{
  
width: 100%;
grid-column: 1/ 7;
justify-self: center;
}



@media screen and (max-width: 640px){
    .column-12{
        width: 100%;
        grid-column: 1 / 7;
        }
    .column-22{
        width: 100%;
        grid-column: 1/ 7;
    }
    .column-13{
        width: 100%;
        grid-column: 1 / 7;
        }
    .column-23{
        width: 100%;
        grid-column: 1/ 4;
    }
    .column-33{
        width: 100%;
        grid-column: 4/ 7;
    }
}
