*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand',sans-serif;
}

.containeryo{
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px auto;
    text-align: center;
}

.containeryo .cardyo{
    position: relative;
    height: 250px;
    display: flex;
    width: 45%;
    margin: 30px 0;
    box-shadow: 0 5px 35px rgba(0,0,0,0.15);
}

.containeryo .cardyo .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #61ba6d;
    background: -webkit-linear-gradient(to right, #61ba6d, #83c331);
    background: linear-gradient(to right, #61ba6d, #83c331);  /*color donde esta la imagen */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s ease ease-in-out;
}

.containeryo .cardyo:hover .imgBx{
    width: 150px;
    height: 150px;
    left: -75px;
    top: calc(100% - 75%);
    transition: 0.5s ease-in-out;
    background: linear-gradient(45deg, green, yellow);  /*color-----*/
}

.containeryo .cardyo .imgBx:before{
    content: attr(data-text);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-style: 6em;
    color: green;
    font-weight: 500;
    font-size: 16px;
    
}

.containeryo .cardyo .imgBx img{
    max-width: 100px;
    transition: 0.5s ease-in-out;
}

.containeryo .cardyo:hover .imgBx img{
    max-width: 75px;

}

.containeryo .cardyo .contentyo {
    position: absolute;
    right: 0;
    width: calc(100% - 75px);
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containeryo .cardyo .contentyo h3{
    margin-bottom: 5px;
    font-size: 24px;
}

@media (max-width:992px)
{
    .containeryo{
        width:100%;
        flex-direction: column;
        align-items: center;
    }
    .containeryo .cardyo{
        width: 400px;

    }
}

@media (max-width:768px)
{
    .containeryo .cardyo{
        max-width: 300px;
        flex-direction: column;
        height: auto;

    }

    .containeryo .cardyo .imgBx{
        position: relative;
    }
    .containeryo .cardyo .imgBx,
    .containeryo .cardyo:hover .imgBx{
        width: 100%;
        height: 200px;
        left: 0;
    }
    .containeryo .cardyo .imgBx img,
    .containeryo .cardyo:hover .imgBx img{
        max-width: 100px;
    }
    .containeryo .cardyo .contentyo{
        position: relative;
        width: 100%;
    }
}

.base_titulo{
    margin-top: 100px;
    color: #068e08;
    font-size: 47px;
    text-align: center;

    font-weight: bold; /*color de letra del slider-------------------- */
      text-shadow: 2px 4px 6px grey;
}

.bas_legal{
    font-size: 15px;
    color: black;
    text-align: justify;
}