

.post-wrap {
    min-width: 200px;
    max-width: 280px;
    height: 190px;
    perspective: 1000px;
    flex: 1;
    margin: 10px 15px;
}

.post {
    position: relative; /* Required to absolutely position the faces */
    width: 100%;
    height: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
}
.post-front, .post-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 7px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border : solid 1px #2D6362;
}

.post-front_them {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color:rgba(45, 99, 98, 0.3);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 7px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border : solid 1px #2D6362;
}

.post-back {
    transform: rotateY(180deg);
}
.post-wrap:hover .post {
    transform: rotateY(180deg);
}
.post-img {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.post-img-back {
    height: 70%;
    width: 100%;
    background-image:  url(../img/CV_flip_v2.png);
    background-size: contain;
    background-repeat: no-repeat;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}


.post-info {
    font-size: 17px;
    text-align: center;
}


.post-back {
    background-color: #ffffff;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* To push the read more button to bottom */
    align-items: center; /* To position the read more button at [] */
}

.card{
    width: 95%;
    margin: 5px auto;
    height: 380px;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.1);
    border : 1px solid transparent;
}

.card:hover{
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.5);
    background-color: rgba(45, 99, 98, 0.3);
    border-color:#FFF;
}

.card:hover .post-info, .card:hover .public{
    color: #FFF;
    text-shadow:  2px 2px 5px rgba(0, 0, 0, 0.5);
}

.card-body{
    padding:0 10px;
}

.public{
    position: absolute;
    bottom: 40px;
  color:  rgba(45, 99, 98, 0.5);
  text-shadow:  2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: auto;
  width: 90%;
  padding: 0;
  font-size: 20px;
  text-align: center;
}

.public-desc{
  font-family: 'Poiret One', cursive;
    font-weight: 600;
    color: rgba(45, 99, 98, 0.5);
    font-size: 13px;
    text-align: center;
    text-shadow:  2px 4px 5px rgba(0, 0, 0, 0.5);
    padding: 1px 0px;
    margin-top: 2px;
}

.post-blank, .post-blank:hover{
 background-color: rgba(255,255,255,0.3);
 box-shadow: none;
 border:1px solid rgba(255,255,255,0.3);
}


.pdf-dl{
    position: absolute;
    bottom: 3px;
    left: 0;
    padding-top: 15px;
}