*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
.container2{
    width: 100%;
    display: flex;
    max-width: 1900px;
}
.card{
    width: 100%;
    margin: 10px;
    height: auto;
    max-height: 2000px;
    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: auto;
    border-radius: 3.5%;
}
.card .contenido{
    padding: 10px;
    text-align: left;
    height:max-content;
}
.card .contenido .contdiv{
    line-height: 1.2;
    color: #6a6a6a;
    display: grid;
    font-size: 7px;
    text-align: justify;
    font-size: large;
    height: auto;
    column-width: 19em;
}

.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: 5px solid  rgb(190, 150, 91);
}
.card .contenido p{
    text-align: justify;
    font-size: large;
}
.card .contenido .contdiv h3{
    color: black;
    font-weight: 600;
}

.izquierda {
    float: left;
}

.derecha{
    float: right;
}