@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');


.wrapper{
  height: 350px;
  width: auto;
  position: relative;
  transform-style: preserve-3d;
 perspective: 1000px;
}
.wrapper .card{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 5px;
  background: rgb(255, 255, 255);
  border: 2px solid rgb(0, 0, 0);
  border-radius: 10px;
  transform: translateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transition: transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.wrapper:hover > .front-face{
  transform: rotateY(-180deg);
}
.wrapper .card img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.wrapper .back-face{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  transform: rotateY(180deg);
}
.wrapper:hover > .back-face{
  transform: rotateY(0deg);
}

/*Mission*/
.wrapper .back-face img{
  height: 150px;
  width: 150px;
  padding: 3px;
  border-radius: 5%;
  background: linear-gradient(375deg, #000000, #cecece);/*#1cc7d0, #2ede98*/
}

.wrapper .back-face .info{
  text-align: center;
}
.back-face .info .title{
  font-size: 30px;
  font-weight: 500;
}
.back-face ul{
  display: flex;
}
.back-face ul a{
  display: block;
  height: 40px;
  width: 40px;
  color: #fff;
  text-align: center;
  margin: 0 5px;
  line-height: 38px;
  border: 2px solid transparent;
  border-radius: 50%;
  /*background: linear-gradient(375deg, #522fee, #95d4ff);*/
  color: #0004fa;
  transition: all 0.5s ease;
}
.back-face ul a:hover{
  color: #000000;
  border-color: #0004fa;
  background: #ffffff;
}


/*****************PLUS DE PROJETS BUTTON******************/
.buttonsecprojet{
  margin: 10px 60px 0px 0px;
  text-align: right;
}
.buttonplusprojet {
  text-align: right;
  border-radius: 4px;
  background-color: #383bf3;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 18px;
  padding: 12px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.buttonplusprojet span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}


.buttonplusprojet span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttonplusprojet:hover span {
  padding-right: 25px;
}

.buttonplusprojet:hover span:after {
  opacity: 1;
  right: 0;
}