

/* ///////////////////////////Members////////////////// */
.container .card{
  position: relative;
  cursor: pointer;
   justify-content: center;
  align-items: center;
}

.container .card .face{
  width: 300px;
  height: 200px;
  transition: 0.5s;
}
.container .card .face.face1{
  position: relative;
  background: #69105a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}
.container .card:hover .face.face1{
  background: #338ca5;
  transform: translateY(0);
}
.container .card .face.face.face1 .content{
  opacity: 0.8;
  transition: 0.8s;
}
.container .card:hover .face.face1 .content{
  opacity: 1;
}
.container .card .face.face1 .content img{
  max-width: 100px;
  align-items: center;
  justify-content: center;
}
.container .card:hover .face.face1 .content h3{
margin: 10px 0 0;
padding: 0;
color: #fff;
text-align: center;
font-size: 1.5em;
}
.container .card .face.face2{
  position: relative;
  background: #fff;
  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);
}
.container .card:hover .face.face2{
  transform: translateY(0);
}
.container .card .face.face2 .content p{
  margin: 0;
  padding: 0;
}
.container .card .face.face2 .content a{
  margin: 15px 0 0;
  display: inline-block;
  text-decoration: none;
  font-weight: 900;
  color: #333;
  padding: 3px;

}
.container .card .face.face2 .content a:hover{
  background: #69105a;
  color: #fff;
}
.orgName{
  color: #fff;
  font-size: 12px;
}

/* /////////////////////////blog article/////////////////////////////// */

.content .main-content .post{
  width: 95%;
  height: 200px;
  margin: 20px auto;
  border-radius: 5px;
  background: #fff;
  position: relative;
 
}
.content .main-content .post .read-more{
  position: absolute;
  bottom: 5px;
  right: 5px;
  border: 1px solid #69105a;
  background: transparent;
  border-radius: 0px;
  
}
.content .main-content .post .read-more:hover{
  background:#69105a;
  transition: .25s;
}
.content .main-content .post .post-image{
  width: 35%;
  height: 100%;
  float: left;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
 
}
.content .main-content .post .post-preview{
  width: 60%;
  padding: 10px;
  float: right;
}
.btnRead{
  padding: .5rem 1rem;
  background: #69105a;
  color: #000;
  border: 1px solid transparent;
  border-radius: .25rem;
}
.btbtnRead:hover{
  color: #fff;
  background: #69105a;
}
.clearfix::before{
  content: "";
  display: block;
  clear: both;
}

/* //////////////////////////Media queries blog article/////////////////////////////// */
@media only screen and (max-width: 574px) {
  .content{
    width: 100%;
  }
  .content .main-content h4{
    font-size: 18px;
  }
  .content .main-content .post{
     width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .content .main-content h4{
    font-size: 15px;
  }
  .preview-text{
    font-size: 14px;
  }
 .btnRead{
  margin-top: 40px !important;
 }
}
@media only screen and (max-width: 412px) {
  .content .main-content .post{
  height: auto;
 
}

  .content .main-content .post .post-image{
  width: 100%;
}
.content .main-content .post .post-preview{
  width: 100%;
}
.content .main-content .post .read-more{
  position: static;
  width: 100%;
  display: block;
  text-align: center;
} 
}