/* **************************************************************************************************************************** */
/* GAMME
/* **************************************************************************************************************************** */
.gamme-grid{
}


/* **************************************************************************************************************************** */
/* GAMME > ITEM
/* **************************************************************************************************************************** */
.gamme-item{
  margin-top: var(--gutter-out);
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  border-radius: 10px;
}

@media only screen and (min-width: 600px) {
  .gamme-item{
    flex-direction: row;
    border-radius: 0;
  }
}


/* **************************************************************************************************************************** */
/* GAMME > ITEM (1 / 2)
/* **************************************************************************************************************************** */
.gamme-item:nth-child(even){
  flex-direction: column-reverse;
}

@media only screen and (min-width: 600px) {
  .gamme-item:nth-child(even){
    flex-direction: row-reverse;
  }
}


/* **************************************************************************************************************************** */
/* GAMME > INFOS
/* **************************************************************************************************************************** */
.gamme-infos{
  background: var(--vert);
  padding: var(--gutter-in);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all .4s ease;
}

@media only screen and (min-width: 600px) {
  .gamme-infos{
    width: 50%;
  }
}

@media only screen and (min-width: 1000px) {
  .gamme-infos{
    width: 30%;
  }
}


/* **************************************************************************************************************************** */
/* GAMME > INFOS H2 / DESC
/* **************************************************************************************************************************** */
.gamme-infos h2{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

.gamme-infos .infos{
  text-align: center;
}
.gamme-infos .infos p{
  line-height: 1.6em;
}
.gamme-infos .infos p + p{
  margin-top: 15px;
}


/* **************************************************************************************************************************** */
/* GAMME > INFOS LINK
/* **************************************************************************************************************************** */
.gamme-infos .link a{
  margin-top: 30px;
  border: 1px solid #FFFFFF;
  border-radius: 320px;
  display: inline-block;
  padding: 20px 25px;
  font-size: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gamme-infos .link a::before{
  background: #FFFFFF;
  height: 100%;
  width: 0;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  display: block;
  transition: all .4s ease;
  z-index: 1;
}

.gamme-infos .link a:hover::before{
  width: 100%;
}

.gamme-infos .link-arrow{
  position: relative;
  z-index: 2;
}

.gamme-infos .link-arrow span:nth-child(1){
  width: 13px;
  height: 1px;
  display: block;
  background: #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  transform-origin: right;
}

.gamme-infos .link-arrow span:nth-child(2){
  width: 40px;
  height: 1px;
  display: block;
  background: #FFFFFF;
}

.gamme-infos .link-arrow span:nth-child(3){
  width: 13px;
  height: 1px;
  display: block;
  background: #FFFFFF;
  transform: rotate(315deg);
  position: absolute;
  right: 0;
  transform-origin: right;
}

.gamme-infos .link-arrow span{
  transition: all .4s ease;
}

.gamme-infos a:hover .link-arrow span{
  background: var(--vert) !important;
}


/* **************************************************************************************************************************** */
/* GAMME > INFOS > PICTO
/* **************************************************************************************************************************** */
.gamme-infos img{
  display: inline-block;
}


/* **************************************************************************************************************************** */
/* GAMME > COVER
/* **************************************************************************************************************************** */
.gamme-cover{
  overflow: hidden;
  transition: all .4s ease;
}

@media only screen and (min-width: 600px) {
  .gamme-cover{
    width: 50%;
  }
}

@media only screen and (min-width: 1000px) {
  .gamme-cover{
    width: 70%;
  }
}


.gamme-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease;
  transform: scale(1);
}

/*
.gamme-cover a:hover img{
  transform: scale(1.2);
}
*/
