.hero{
    position: relative; 
    width: 100%; min-height: 100vh;
    overflow-x: hidden;
  }
  
  .hero .hero_bg{
    position: absolute; 
    top: 0; left: 50%;
    transform: translateX(-50%); 
    width: 150%; height: 100%; 
    
    overflow: hidden;
    background: var(--light-grey);;
    
    
  }
  
  .hero_bg .bg_layout{
    position: absolute; top: 50%; left: 50%; 
    scale: 0.8;
    
  }
  
  .hero_bg .bubble{
    position: absolute; 
    top: 50%; left: 50%; 
    background-size: cover!important; 
    background-position: center!important;
  }
  
  
  .hero_bg .bubbleWrapper:nth-child(1){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(-900px) translateY(370px);
  }
  
  .hero_bg .bubbleWrapper:nth-child(1) .bubble{
    position: absolute; 
    width: 600px; height: 600px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    transition-duration: 0.5s;
    transition-delay: 0.1s;
    
  }

  .hero_bg .bubbleWrapper:nth-child(2){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(800px) translateY(-146px);
  }
  
  .hero_bg .bubbleWrapper:nth-child(2) .bubble{
    position: absolute; 
    width: 450px; height: 450px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    transition-duration: 0.5s;
    transition-delay: 0.2s;
  }

  .hero_bg .bubbleWrapper:nth-child(3){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(1050px) translateY(-350px);
  }

  .hero_bg .bubbleWrapper:nth-child(3) .bubble{
    position: absolute; 
    width: 200px; height: 200px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: var(--primary-color);
    transition-duration: 0.5s;
    transition-delay: 0.3s;
  }

  .hero_bg .bubbleWrapper:nth-child(4){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(-1150px) translateY(-65px);
  }

  .hero_bg .bubbleWrapper:nth-child(4) .bubble{
    position: absolute; 
    width: 400px; height: 400px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: var(--light-grey-2);
    transition-duration: 0.5s;
    transition-delay: 0.4s;
  }

  .hero_bg .bubbleWrapper:nth-child(5){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(-825px) translateY(-50px);
  }

  

  .hero_bg .bubbleWrapper:nth-child(5) .bubble{
    position: absolute; 
    width: 250px; height: 250px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: var(--primary-color);
    transition-duration: 0.5s;
    transition-delay: 0.5s;
  }

  .hero_bg .bubbleWrapper:nth-child(6){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(-515px) translateY(550px);
  }

  
  .hero_bg .bubbleWrapper:nth-child(6) .bubble{
    position: absolute; 
    width: 250px; height: 250px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: var(--light-grey-2);
    transition-duration: 0.5s;
    transition-delay: 0.6s;
  }

  .hero_bg .bubbleWrapper:nth-child(7){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(-265px) translateY(550px);
  }

  
  .hero_bg .bubbleWrapper:nth-child(7) .bubble{
    position: absolute; 
    width: 250px; height: 250px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: #666;
    transition-duration: 0.5s;
    transition-delay: 0.7s;
  }

  .hero_bg .bubbleWrapper:nth-child(8){
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(155px) translateY(250px);
  }

  
  .hero_bg .bubbleWrapper:nth-child(8) .bubble{
    position: absolute; 
    width: 100px; height: 100px; 
    transform: translateY(-50%) translateX(-50%) scale(0);
    border-radius: 50%;
    background: var(--primary-color);
    transition-duration: 0.5s;
    transition-delay: 0.8s;
  }


  .hero_bg.do_show .bubbleWrapper .bubble{transform: translateY(-50%) translateX(-50%) scale(1);}


  .hero_bg .shapeWrapper{
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translateX(850px) translateY(380px);
  }

  .hero_bg .shapeWrapper .shape{
    width: 600px; height: 600px; 
    background: var(--secondary-color);
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition-duration: 0.5s;
    transition-delay: 0.5s;
}

.hero_bg.do_show .shapeWrapper .shape{
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.webWrapper{
    width: calc(100% - 80px);
    max-width: 1900px;
    margin: 0 auto;
    position: relative;
    height: 100%; 
  }
  
  .webWrapper_hero{
    width: calc(100% - 80px);
    max-width: 1900px;
    margin: 0 auto;
    height: 100vh; 
    position: relative;
    display: flex; 
    align-items: center;
    justify-content: center;
  }
  
  .webWrapper_hero > div{
    width: 40%;
    transform: translateY(300px);
    opacity: 0; 
    transition-duration: 1s;
    transition-delay: 0.5s;
  }
  
  .webWrapper_hero.do_show > div{
      transform: translateY(0);
      opacity: 1;
      
  }
  
  .webWrapper_hero > div h1{
    font-weight: 300;
    line-height: 1.5em;
    margin-bottom: 0.5em;
  }
  
  .webWrapper_hero > div h1 strong{font-weight: 700;}
  

  #deck_1{
    padding: 180px 0;
  }
   #deck_2{
    padding: 80px 0;
  }
  #deck_1 .grid{
    align-items: center; 
  }
  #deck_2 .grid_1_1_top {
	align-items: top;
  }

  #deck_1 h2{padding-bottom: 1em;}
  #deck_2 h2{padding-bottom: 1em;}
  

.bg_collage{
    display: block; 
    width: 600px; height: 600px; 
    background: url(images/background/team-bg-1.svg) no-repeat;
    background-size: 70%; background-position: bottom left;
    margin: 0 auto;
    position: relative;
}

.bg_collage .bubble{
    position: absolute; 
    top:44%; left: 18.5%;
    width: 50%; height: 50%; 
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-size: contain!important; background-position: center!important;
}

.bg_collage .bubble:nth-child(2){
    top: 78%;
    left: 53%;
    width: 44%;
    height: 44%;
}

  @media(min-width: 840px){
    .webWrapper_hero > div h1{font-size: 3em;}
    #deck_1 h2{font-size: 2em;}
	#deck_2 h2{font-size: 2em;}

    
  }

  @media(min-width: 1400px){

    
    #deck_1 h2{font-size: 2.5em;}
	#deck_2 h2{font-size: 2.5em;}
  }


  @media(max-width: 1200px){
    .bg_collage{
        width: 400px; height: 400px;
    }
  }

  @media(max-width: 940px){
    #deck_1 .grid_1_1{
        grid-template-columns: 1fr;
    }
	#deck_2 .grid_1_1{
        grid-template-columns: 1fr;
    }
  }

  @media(max-width: 540px){
    .bg_collage{
        width: 300px; height: 300px;
    }

    p{font-size: 14px;}
  }
#deck_equipe{
    padding: 180px 0 90px 0;
}

#deck_equipe .equipe_grille {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr; 
    grid-gap: 5em 1em;
    align-items: top;
}

#deck_equipe .equipe_grille .item .card{
    width: 300px; 
    position: relative; 
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}

#deck_equipe .equipe_grille .item .card .avatar{
    width: 300px; height: 300px; 
    border-radius: 50%; 
    background-size: cover!important; 
    background-position: center!important;
    margin: 0 auto;
    position: relative;
}

#deck_equipe .equipe_grille .item .card .avatar .click_bubble{
    position: absolute; 
    bottom: 10px; left: 10px; 
    width: 50px; height: 50px;
    border-radius: 50%; 
    background: var(--primary-color);
    transform: translateX(0);
    transition-duration: 0.5s;
}

#deck_equipe .equipe_grille .item .card .avatar .click_bubble::after{
    content: "";
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: url(images/buttons/little-white-arrow.svg) no-repeat; background-size: 70%; background-position: center;
}

#deck_equipe .equipe_grille .item .card:hover .avatar .click_bubble{
    background: var(--secondary-color);
    transform: translateX(220px);
}


#deck_equipe .equipe_grille .item .card h3{font-size: 1.5em;}

#deck_equipe .equipe_grille .item .card .textwrapper{padding-top: 2em;}

.modal_card{background: white;}

.modal_card .padding{padding: 40px; }

.modal_card p{font-size: 14px;}

.modal_card p, .modal_card h3, .modal_card h2{color: #151515; padding: 0.5em 0;}
.modal_card h3{font-size: 1.5em; padding-top: 1em;}

.modal_card .imgcontainer{
    height: 100%; 
	max-height: 480px;
    background-size:cover!important;
    background-position: center!important;
}


@media(max-width: 1100px){
    #deck_equipe .equipe_grille {grid-template-columns: 1fr 1fr;}

    #deck_1, #deck_2, #deck_equipe{padding: 80px 0;}
}

@media(max-width: 940px){
    .modal_card .padding{padding: 20px; }

    .grid_1_1{grid-template-columns: 1fr;}

    .modal_card{height: calc(100vh - 80px);}
}

@media(max-width: 720px){
    #deck_equipe .equipe_grille {grid-template-columns: 1fr; grid-gap: 2em;}

    #deck_1, #deck_2, #deck_equipe{padding: 40px 0;}

    .modal_card .imgcontainer{width: 100%; 
    height: calc(50vh - 40px);}
}

.modal_card a.close_card{
	filter: invert(100%);
}

#logo_slider .item img{width: 100%;}

#deck_partners{padding-bottom: 180px;}

#deck_partners .grid img{
	width: 100%; 
	max-width: 200px;
	display: block;
	margin: 1em auto;
}