.container-navigation{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 810px;
    background: linear-gradient(180deg, #f0f4f8 0%, #d9e4f5 100%);
}
.container-navigation .put-titulo{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 12.5%;

font-family: Open Sans;
font-weight: 650;
font-size: 30px;
}
.container-navigation .container-mids{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 88.5%;
}
.container-mids .mid{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 50%;
}
.mid .carta{
    display: flex;
    flex-direction: column;
    border: solid 5px black;
background-color: rgb(238, 237, 237);
    width: 20%;
    height: 85%;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.45s;
    box-shadow: 24px 25px 36px -7px rgba(0,0,0,0.75);
}
.carta:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.carta .subtitle{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 20%;

    font-family: Open Sans;
    font-size: 24px;
    font-weight: 600;
}
.carta .put-icon{
    display: flex;
    width: 100%;
    height: 80%;

    justify-content: center;
    align-items: center;
    font-size: 150px;
    font-weight: 700;
}
.ver{
    opacity: 1 !important;
    pointer-events: auto;
  
}
@media(max-width:1320px){
    .mid .carta{
        display: flex;
        flex-direction: column;
        border: solid 5px black;
    background-color: rgb(238, 237, 237);
        width: 25%;
        height: 85%;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.45s;
    }

}
@media(max-width:630px){
    .container-navigation{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 1900px;
    }
    .container-mids .mid{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        width: 100%;
        height: 50%;
    }
    .mid .carta{
        display: flex;
        flex-direction: column;
        border: solid 5px black;
    background-color: rgb(238, 237, 237);
        width: 60%;
        height: 30%;
        border-radius: 10px;
        overflow: hidden;
        transition: 0.45s;
    }


}
