#cadre {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#cadre h4 {
  margin-top: 0.2em;
}

.p_card {
  font-family: 'Futura Std';
  font-style: normal;
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: 0.01em;
  text-align: left;
  color: #4B4B4D;
  height: 10.5em;
}

.card {
    margin: 1.5%;
    position: relative;
    display: flex;
    width: 18em;
    height: 23em;
    box-shadow: 0px 0px 0.5em 0.2em rgba(0, 0, 0, 0.25);
    padding: 0.7em;
    overflow: hidden;
    border-radius: 0.7em;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .content .btn {
    color: #e8e8e8;
    text-decoration: none;
    padding: 0.7em;
    margin-top: 3.7em;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: linear-gradient(-45deg, #f8b332 0%, #E8501F 100% );
    border-radius: 0.5em;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  
  .card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.55em;
    background: linear-gradient(-45deg, #f8b332 0%, #E8501F 100% );
    z-index: -1;
  }
  
  .content .btn:hover {
    outline: 2px solid #4B4B4D;
    background: transparent;
    color: #4B4B4D;
  }
  
  