/* **************************************************************************************************************************** */
/* CATALOGUE
/* **************************************************************************************************************************** */
.gamme-catalogue{
  background: var(--vert);
  border-radius: 10px;
  overflow: hidden;
}


/* **************************************************************************************************************************** */
/* CATALOGUE > COVER
/* **************************************************************************************************************************** */
.gamme-catalogue-cover{
  position: relative;
}

.gamme-catalogue-cover img{
  width: 100%;
  height: auto;
  display: block;
}


/* **************************************************************************************************************************** */
/* CATALOGUE > COVER
/* **************************************************************************************************************************** */
.gamme-catalogue-infos{
  position: relative;
  padding: calc(var(--gutter-in)/2) var(--gutter-in);
  color: #FFFFFF;
}

.gamme-catalogue-infos-name{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gamme-catalogue-infos h2{
  font-size: 24px;
  font-weight: bold;
}

.gamme-catalogue-infos .annee{
  font-size: 24px;
}

.gamme-catalogue-infos h2 span{
  display: block;
}

.gamme-catalogue-infos a{
  border: 1px solid #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  display: block;
  color: #FFFFFF;
  border-radius: 320px;
  margin-top: calc(var(--gutter-in)/2);
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}

.gamme-catalogue-infos a span{
  position: relative;
  z-index: 2;
}

.gamme-catalogue-infos a::before{
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
  content: '';
  display: block;
  transition: all .4s ease;
}

.gamme-catalogue-infos a:hover::before{
  width: 100%;
}

.gamme-catalogue-infos a:hover{
  color: var(--vert);
}
