/**********************************************************************************************************************************/
/* SECTEUR CONTAINER (LIST)
/**********************************************************************************************************************************/
.secteurs-list{
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}


@media only screen and (min-width: 1200px) {
  .secteurs-list{
    flex-direction: row;
    margin-top: 0;
    justify-content: space-between;
  }
}


/**********************************************************************************************************************************/
/* SECTEUR ITEM
/**********************************************************************************************************************************/
@media only screen and (min-width: 1200px) {
  .secteur{
    max-width: 30%;
  }
}


/**********************************************************************************************************************************/
/* SECTEUR PIC
/**********************************************************************************************************************************/
.secteur-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.secteur.active .secteur-image{
  justify-content: flex-start;
}

@media only screen and (min-width: 800px) {
  .secteur-image {
    min-height: 80px;
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 1200px) {
  .secteur-image {
    min-height: 120px;
    justify-content: center;
  }
}

.secteur-image img{
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

@media only screen and (min-width: 800px) {
  .secteur-image img{
    max-width: 80px;
    max-height: 80px;
  }
}

@media only screen and (min-width: 1200px) {
  .secteur-image img{
    max-width: unset;
    max-height: unset;
  }
}

/**********************************************************************************************************************************/
/* SECTEUR TITLE
/**********************************************************************************************************************************/
.secteur h3{
  font-family: "RationalText-SemiBold";
  font-size: 16px;
  margin: 10px 0;
  line-height: 20px;
}

@media only screen and (min-width: 800px) {
  .secteur h3{
    font-size: 20px;
    line-height: 25px;
  }
}

@media only screen and (min-width: 1200px) {
  .secteur h3{
    font-size: 30px;
    margin: 20px 0;
    line-height: 35px;
  }
}


/**********************************************************************************************************************************/
/* SECTEUR CATEGORIE
/**********************************************************************************************************************************/
.secteur ul{
  display: none;
}

.secteur.active ul{
  display: block;
}

@media only screen and (min-width: 680px) {
  .secteur ul{
    display: block;
  }
}

.secteur li{
  margin: 5px 0;
  font-size: 14px;
}


/**********************************************************************************************************************************/
/* SECTEUR LINK
/**********************************************************************************************************************************/
.secteur li .likeLink,
.secteur li a{
  color: inherit;
  display: inline-block;
  position: relative;
}

.secteur li .likeLink span,
.secteur li a span{
  position: relative;
  z-index: 2;
  cursor: pointer;
}


.secteur li .likeLink::before,
.secteur li a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: -5px;
  top: 0;
  background: #77bee4;

  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;
}

.secteur li .likeLink:hover::before,
.secteur li a:hover::before,
.secteur li.selected .likeLink::before,
.secteur li.selected a::before {
  width: 110%;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
}

.secteur li .likeLink:hover,
.secteur li a:hover{
  color: #FFFFFF;
}


/**********************************************************************************************************************************/
/* CATALOG TREE
/**********************************************************************************************************************************/
#catalog-tree h3{
  font-size: 25px;
}

#catalog-tree li a{
  font-size: 14px;
}

#catalog-tree .secteur img{
  -webkit-filter: invert(100%); /* Safari/Chrome */
  filter: invert(100%);
  opacity: .3;
}

#catalog-tree .secteur-image {
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 80px;
  margin-top: 40px;
}

#catalog-tree .secteur-image img{
  max-width: 80px;
  height: auto;
  max-height: 50px;
  width: auto;
}


/**********************************************************************************************************************************/
/* PHASES DE CONSTRUCTION
/**********************************************************************************************************************************/
.phases-list{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phases-list .title{
  text-align: center;
  color: #77bee4;
  font-family: "RationalText-SemiBold";
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 30px;
  display: block;
}

@media only screen and (min-width: 800px) {
  .phases-list .title{
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (min-width: 1600px) {
  .phases-list .title{
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (min-width: 800px) {
  .phases{
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 800px) {
  .phase{
    display: block;
  }
}

.phase a{
  margin: 0 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media only screen and (min-width: 800px) {
  .phase a{
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (max-width: 800px) {
  .phase{
    border-top: 1px solid #f1F1F1;
    padding: 10px;
  }
}

.phase .icon{
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 20px;
}

@media only screen and (min-width: 800px) {
  .phase .icon{
    width: unset;
    height: unset;
    margin-right: 0;
  }
}

.phase .icon img{
  filter: grayscale(100%);

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

  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;

}

.phase:hover .icon img{
  filter: grayscale(0);
}

@media only screen and (min-width: 800px) {
  .phase .icon img{
    width: unset;
    height: unset;
  }
}

.phase .titre{
  display: block;
  text-align: center;
  color: #202020;
  font-family: "RationalText-SemiBold";
  font-size: 14px;

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

@media only screen and (min-width: 800px) {
  .phase .titre{
    margin-top: 10px;
  }
}

.phase:hover .titre{
  color: #77bee4;
}


#footerListCategories .phase img{
  max-height: 32px;
}
#footerListCategories .phase a .titre{
  color: #FFFFFF;
  font-size: 13px;
}
