
@media all and (max-width: 1000px) {
    .containercustom {
       /* On small screens, we are no longer using row direction but column */
       flex-direction: column;
     }
   }
   
.containercustom{
    width: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.containercustom .card{
    position: relative;
    cursor: pointer;
}

.containercustom .card .face{
    width: 300px;
    height: 200px;
    transition: 0.5s;
}

.containercustom .card .face.face1{
    position: relative;
    background: #3D405B;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
}

.containercustom .card:hover .face.face1{
    background: #3D405B;
    transform: translateY(0);
}

.containercustom .card .face.face1 .content{
    transition: 0.5s;
}

.containercustom .card:hover .face.face1 .content{
    opacity: 1;
}

.containercustom .card .face.face1 .content img{
    max-width: 100px;
}

.containercustom .card .face.face1 .content h3{
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
}

.containercustom .card .face.face2{
    position: relative;
    background: #F0E68C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
}

.containercustom .card:hover .face.face2{
    transform: translateY(0);
}

.containercustom .card .face.face2 .content p{
    margin: 0;
    padding: 0;
    font-size: 30px;
    text-align: center;
}

.containercustom .card .face.face2 .content a{
    margin: 15px 0 0;
    display:  inline-block;
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    color: #333;
    padding: 5px;
    border: 1px solid #333;
    text-align: center;
}

.containercustom .card .face.face2 .content a:hover{
    background: #333;
    color: #fff;
}