*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
.container2{
    width: 100%;
    display: flex;
    max-width: 1100px;
}
.card{
    width: 100%;
    margin: 10px;
    height: auto;
    max-height: 1100px;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    transition: all  400ms ease;
    cursor: default;
}
.card:hover{
    box-shadow: 0px 1px 10px rgba(0, 0,0,0.2);
    transform: translateY(-3%);
}
.card video{
    width: 100%;
    height: 190px;
    border-radius: 5%;
}

.card img {
    width: 100%;
    height: 210px;
    border-radius: 10%;
}

.card .contenido{
    padding: 15px;
    text-align: left;
}
.card p{
    line-height: 1.5;
    color: #6a6a6a;
    column-count: 2; /* número de columnas */
    column-gap: 10px; /* ancho de columnas */
    font-size: 7px;
    text-align: justify;
}


.card .contenido2 h3 {
    font-weight: 800;
    text-align: left;
    font-size: 25px;
    color: #A21F41;
    
}
.card .contenido2 h4 {
    text-align: left;
    font-size: 35px;
    color: #BE965B;
}.card .contenido2 h5{
    text-align: left;
    font-size: 10px;
    
}

.card .conborder{
    padding: auto;
    border: 3px solid  rgb(190, 150, 91);
}

