
.fifty-chars {
  width: 200ch;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cards-row {
  margin: 0px auto; 
  background-color: #fff;
}

.card {
  display: inline-block;
  width: 30%;
  min-width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 2px 2px 25px 0px rgba(0, 0, 0, 0.7);
          box-shadow: 2px 2px 25px 0px rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  margin: 1em 1.5%;
  -webkit-animation: scl 0.5s ease-in-out;
          animation: scl 0.5s ease-in-out;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background-color: #fff;
}

.card-title {
  margin-top: -1.5em;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  color: #fff;
  font-size: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-image {
  width: 100%;
  height: 162px;
}

.card-desc {
  padding: 0 1em 1em 1em;
  border-bottom: 1px solid rgba(128, 128, 128, 0.3);
  height: auto; 
  overflow: hidden;
  text-align: justify;
}

.card-action-readMore {
  margin: 1em 0 1em 1em;
  height: 3em;
  width: 8em;
  background: #5C636A;
  border: none;
  font-weight: light;
  color: #fff;
  position: relative;
  overflow: hidden;
  outline: none;
  border-radius: 2px;
} 

.card-action-readMore-btn-danger  {
  margin: 1em 0 1em 1em;
  height: 3em;
  width: 8em;
  background: #ff0000;
  border: none;
  font-weight: light;
  color: #fff;
  position: relative;
  overflow: hidden;
  outline: none;
  border-radius: 2px;
} 
.card-action-readMore-btn-danger:hover {
  background: rgba(236, 63, 63, 0.8);
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.card-action-readMore:hover {
  background: rgba(124, 122, 124, 0.8);
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.card:hover {
  -webkit-box-shadow: 7px 7px 15px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 7px 7px 15px 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-box-shadow 0.3s ease-in;
  transition: -webkit-box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in;
  transition: box-shadow 0.3s ease-in, -webkit-box-shadow 0.3s ease-in;
}

.ripple {
  border-radius: 50%;
  background: #ff8ec7;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 1;
  -webkit-animation: ripple 0.4s linear;
          animation: ripple 0.4s linear;
}

@-webkit-keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
            transform: scale(2.5);
    opacity: 0;
  }
}

@-webkit-keyframes scl {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0.9) translateX(-50px);
            transform: scaleX(0.9) translateX(-50px);
  }
  75% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
    opacity: 1;
  }
}

@keyframes scl {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0.9) translateX(-50px);
            transform: scaleX(0.9) translateX(-50px);
  }
  75% {
    opacity: 0.2;
  }
  100% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
    opacity: 1;
  }
}
/*# sourceMappingURL=projets.css.map */