/*-------------- General -------------*/

/*---- video ----*/
.video-one {
  position: absolute;
  top: -420px;
  right: -100px;
}

/*------------- hero banner section -------------*/
#hero-banner-section-text-content > h1 {
  font-size: clamp(32px, 5vw, 60px) !important;
}

@media only screen and (max-width: 560px) {
  #hero-banner-section-text-content > h1 {
    white-space: normal !important;
  }
}

/*-------------- ecosystem section ---------------*/
#ecosystem-section{
  display: flex;
  justify-content: center;
  align-items: center;
}

#ecosystem-section-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}

	
}	
/*-------------------- content top --------------------*/
#ecosystem-section-content-top{
  text-align: center;
  line-height: 30px;
}

#ecosystem-section-content-top h2::before{
  background-image: url(../assets/images/common/deco-title-1.svg);
}

/*-------------------- content nav --------------------*/
#ecosystem-section-content-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 80px;
  cursor: pointer;
  position: relative;
}

#ecosystem-section-content-nav > h3{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ecosystem-section-content-nav > h3.active::after{
  content: "";
  width: 120%;
  height: 3px;
  border-radius: 3px;
  display: block;
  background-color: #4e71fa;
  position: absolute;
  top: 47px;
}

#ecosystem-section-content-bar{
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin-top: -40px;
  opacity: 0.2;
}

/*-------------------- content bottom --------------------*/
.ecosystem-section-content-bottom{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/*-------------------- content bottom right --------------------*/
.ecosystem-section-content-bottom-right{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}

.ecosystem-section-content-bottom-right ul{
  margin-left: 30px;
}

.ecosystem-section-content-bottom-right ul div li{
  opacity: 0.8;
  line-height: 30px;
}

.ecosystem-section-content-bottom-right ul div > li::marker{
  color: #4e71fa;
}

.ecosystem-section-content-bottom-right-text > p{
  margin-top: 10px;
  line-height: 30px;
  opacity: 0.8;
}

/*-------------------- content bottom left --------------------*/
.ecosystem-section-content-bottom-left{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 50px;
}


.ecosystem-section-content-bottom-left > img{
  height: 350px;
}


/*------------------ black & white ---------------------*/
html.clair #ecosystem-section-content-bar{
  background-color: rgb(0, 0, 0);
  opacity: 0.1;
}

/*------------------ Animations --------------------*/
@keyframes opacityAnim {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/*------------------- Responsive ----------------------*/
@media only screen and (max-width: 1600px){
  .video-one{
    width: 400px;
    right: 0;
    top: -300px;
  }
}

@media only screen and (max-width: 950px){
  #ecosystem-section-content-bar{
    display: none;
  }

  #ecosystem-section-content-nav{
    flex-direction: column;
    gap: 30px; /*modifié par Didier*/
  }

  #ecosystem-section-content-nav > h3::after{
    content: "";
    width: 120%;
    height: 2px;
    display: block;
    background-color: #efefef;
    position: absolute;
    top: 35px;
  }

  #ecosystem-section-content-nav > h3.active::after{
    top: 35px;
  }

  .ecosystem-section-content-bottom{
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .ecosystem-section-content-bottom-left{
    grid-row-start: 2;
    grid-row-end: 2;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    margin-top: 50px;
  }

  .ecosystem-section-content-bottom-left > img{
    width: 80%;
    height: min-content;
  }

  .ecosystem-section-content-bottom-right {
    text-align: center;
    justify-content:center;
    align-items: center;
  }

  .ecosystem-section-content-bottom-right-text{
    line-height: 50px;
  }

  .ecosystem-section-content-bottom-right-text > p{
    line-height: 35px;
  }

  .ecosystem-section-content-bottom-right ul {
    display: flex;
    flex-direction: row;
    gap: 80px;
  }
}
