.container-aliados{
display: flex;
width: 100%;
height: 700px;
flex-direction:column;
align-items: center;
justify-content: space-evenly;
background-image: url(../img/chill.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.container-aliados .put-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 12.5%;
    
    font-family: Open Sans;
    font-weight: 650;
    font-size: 30px;
}
.container-aliados .container-ally{
    display: flex;
    width: 75%;
    height: 85%;
    border: solid black 5px;
    border-radius: 25px;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: auto;
    background-color:rgba(121, 119, 119, 0.637); 
    box-shadow: 14px 2px 36px 19px rgba(0,0,0,0.75);
}
.container-ally .card{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 30%;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: 0.5s;
    background-color:rgba(255, 255, 255, 0.85); 
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.7);
    border-radius: 10px;
}
.card:hover{
    transform: scale(1.2);
    cursor: pointer;
}
#ums{
    width: 100%;
    height: 40%;
}