/*--------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 IMAGE LIST --- */
.bloc-img-list__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -15px;
}
.bloc-img-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  position: relative;
  border-right: 1px solid #110035;
}
.bloc-img-list__item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .bloc-img-list__item {
    border-right: none;
    border-bottom: 1px solid #110035;
    padding: 20px 0;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bloc-img-list__item:last-child {
    border-bottom: none;
  }
}
.bloc-img-list__visual {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 20px;
}
.bloc-img-list__visual img {
  display: block;
  max-height: 80px;
  width: auto;
}
@media (max-width: 768px) {
  .bloc-img-list__visual {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.bloc-img-list__content {
  font-size: 14px;
  line-height: 1.4;
  color: #110035;
  max-width: 250px;
}
.bloc-img-list__content p:last-child {
  margin-bottom: 0;
}