/**********************************************************************************************************************************/
/* LISTING SOLUTIONS CONSTRUCTIVES
/**********************************************************************************************************************************/
#listing-solutions-constructives-navigation-title{
  font-size: 20px;
  text-align: center;
  display: block;
  margin: 10px 0 50px 0;
  color: #FFFFFF;
  text-transform: uppercase;
}

/**********************************************************************************************************************************/
/* LISTING SOLUTIONS CONSTRUCTIVES
/**********************************************************************************************************************************/
#listing-solutions-constructives-navigation{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  overflow: auto;
  background: #201547;
  padding: 80px 30px 30px 30px;
  z-index: 30;
  bottom: 0;

  transform: translate(0, -200vh);
  -webkit-transform: translate(0, -200vh);
  -moz-transform: translate(0, -200vh);
  -o-transform: translate(0, -200vh);
  -ms-transform: translate(0, -200vh);

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.open #listing-solutions-constructives-navigation{
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -o-transform: translate(0);
  -ms-transform: translate(0);
}

#lscn-close{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 31;
  width: 32px;
  height: 32px;
  background: url(../Icons/closeW.png) no-repeat center center / 32px transparent;
  cursor: pointer;
}


/**********************************************************************************************************************************/
/* LISTING SOLUTIONS > LISTE
/**********************************************************************************************************************************/
#listing-solutions-constructives-navigation ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

@media only screen and (min-width: 1200px) {
  #listing-solutions-constructives-navigation ul{
    max-width: 1080px;
  }
}

/**********************************************************************************************************************************/
/* ITEM
/**********************************************************************************************************************************/
.solution-constructive-header{
  width: 100px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1200px) {
  .solution-constructive-header{
    width: 220px;
    height: 220px;
  }
}


/**********************************************************************************************************************************/
/* ITEM CONTAINER
/**********************************************************************************************************************************/
.solution-constructive-header a{
  position: relative;
  padding: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #f1f1f1;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

@media only screen and (min-width: 800px) {
  .solution-constructive-header a{
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .solution-constructive-header a{
    padding: 30px;
  }
}

.solution-constructive-header .sc-pic img{
  height: 24px;
  width: auto;
  display: inline-block;
}

@media only screen and (min-width: 1200px) {
  .solution-constructive-header .sc-pic img{
    height: 40px;
  }
}

.solution-constructive-header a span,
.solution-constructive-header p{
  position: relative;
  z-index: 2;
}

.solution-constructive-header .sc-title{
  font-family: "RationalText-SemiBold";
  font-size: 12px;
  display: block;
  margin-top: 10px;
  line-height: 16px;
}

@media only screen and (min-width: 1200px) {
  .solution-constructive-header .sc-title{
    font-size: 13px;
    margin-top: 20px;
  }
}

.solution-constructive-header a::before{
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: -5px;
  top: 0;
  background: rgba(255,255,255,.3);

  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.solution-constructive-header a:hover::before{
  width: 110%;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
}


.solution-constructive-header a:hover span{
  color: #FFFFFF;
}
