/* 
* Flip Card 
*/

.cardcontainter{
    position: relative; 
    width: 100%;
    height: 350px;
    border: 1px solid;     
       

}

.thecard{
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    

}

.thecard:hover{
    transform: rotateY(180deg);
}

.thefront{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: #ffcc78;
    color: #333;
    

}

.theback{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: purple;
    color: #fff;
    transform: rotateY(180deg);
    padding: 40px ;

}

.padding-0{
    padding-right:0;
    padding-left:0;
}

.thefront>img{
    width: 400px;
    height: 350px;
   
}



.info{
    background: #000;
    color: #fff;
    font-weight: 300;
   
    margin: auto;
    width: 80%;
    border: 3px solid green;
    padding: 10px;
    text-align: center;
    
}
h3{
    text-transform: uppercase;
    padding-bottom: 15px;
    color: #fff !important;
}
ul{
    padding-left: 50px;
    list-style-type: none;
}

ul.arrow{
    padding-left: 20px;
    list-style-image: url('/images/icons/double-arrow.png');

}
h1{
    padding: 50px 0 50px;
}