/*--------VARIABLES--------*/ /*------------MIXINS-----------*/
/*@mixin bouton($text_color, $hover_bg, $hover_text_color){
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 15px 30px;
    border : none;
    min-width: 150px;
    box-sizing: border-box;
    font-family: "Arial", serif;
    color: $text_color;
    background-color: transparent;
    transition : $trans;
    &:last-of-type{
      margin-bottom: 0;
    }
    @media(max-width: 1300px){
      font-size: 16px;
      margin: 18px auto; 
    }
    @media(max-width: 992px){
      font-size: 18px;
      width: 300px;
    }
    @media(max-width: 768px){
      width: 100%;
    }
    // ?? picto
    i {
      font-weight: 100;
      vertical-align: text-top;
      padding-right: 10px;
      &.fas.fa-phone-volume {
        transform: rotate(-45deg) translate(-3px, -5px);
        vertical-align: initial !important;
        font-size: 17px;
        padding: 0;
      }
    }
    // ?? animations
    &::before,
    &::after {
      content: '';
      position: absolute;
      background: transparent;
      z-index: 2;
      width: 50%; 
      height: 75%;
      transition: 0.35s;
    }
    &:before {
      top: 0; left: 0;
      border-left: 2px solid $jaune;
      border-top: 2px solid $jaune;
    }
    &:after {
      bottom: 0; right: 0;
      border-right: 2px solid $jaune;
      border-bottom: 2px solid $jaune;
    }
    // ?? hover
    &:active, &:hover, &:focus {
      outline: 0!important;
      outline-offset: 0;
    }
    &:hover{
      background-color: $hover_bg;
      color: $hover_text_color;
      text-decoration: none;
      &::before,
      &::after {
        width: 100%;
        height: 98%;
      }
    }
    @media(max-width:768px){
      &::before,
      &::after {
        content: '';
        width: 85%; 
        height: 75%;
      }
    }
}*/
/* --- BLOC PROJETS --- */
.bloc-projets .card-projet {
  -webkit-border-radius: 24px;
          border-radius: 24px;
  padding: 40px;
  min-height: 315px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-repeat: no-repeat;
  background-position: top 20% right 20%;
}
.bloc-projets .card-projet__title {
  font-size: 28px;
  font-weight: 400 !important;
  line-height: 1.2;
  color: #110035;
}
.bloc-projets .card-projet__title strong {
  font-weight: 600;
}
.bloc-projets .card-projet__action {
  margin-top: 20px;
}