.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%; 
    
    
  }
  
  .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: 5vh 0;
  }

  #deck_1 .grid{
    align-items: center; 
  }

  #deck_1 h2, #deck_6 h2{font-weight: 400; font-size: 3em;}
  
@media(min-width: 1024px){
	#deck_2 h2, #deck_5 h2, #deck_7 h2{font-size: 2em; font-weight: normal; }
	

}
	#deck_5 .services_grid h2{padding-bottom: 0.5em;}

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

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

  @media(min-width: 840px){
    #deck_1 .grid_1_1 > div:nth-child(1){grid-column: 2/3; grid-row: 1/2;}
    #deck_1 .grid_1_1 > div:nth-child(2){grid-column: 1/2; grid-row: 1/2;}
    .webWrapper_hero > div h1{font-size: 3em;}
    #deck_1 h2{font-size: 3em;}

    
  }

  @media(min-width: 1400px){

    
    #deck_1 h2{font-size: 3em;}
  }

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

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

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

    p{font-size: 14px;}
  }

  #deck_2 .grid_1_1{margin: 110px 0;}

  #deck_2{background: var(--light-grey); padding: 180px 0 60px 0;}

  #deck_2 .benefice_grid{
    
    display: grid; 
    grid-template-columns: 100px 1fr; 
  }

  #deck_2 .benefice_grid .icone{
    width: 60px; height: 60px;
	transform: translateY(-10px)
  }

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



  #deck_5{ padding: 160px 0;}

#deck_5 .services_grid > div{
    padding: 50px 50px 120px 50px;
    position: relative;
}

@media(min-width: 1100px){
    #deck_5 .services_grid{
        display: grid; 
		grid-template-columns: 1fr 1fr;
		grid-gap: 2em;
        justify-content: center;
        flex-wrap: wrap;
    }


}



#deck_5 .services_grid > div a{
    position: absolute; 
    bottom: 50px; left: 50%; 
    transform: translateX(-50%);
}

#deck_5 .services_grid > div .icon{
    display: block; 
    width: 85px; height: 85px; 
    background-size: contain!important;
    background-position: center!important;
    margin: 0 auto 2em auto;
}

#deck_5 .services_grid > div:nth-child(1) .icon{background: url(images/buttons/service-2-red.svg) no-repeat;}
#deck_5 .services_grid > div:nth-child(2) .icon{background: url(images/buttons/service-3-red.svg) no-repeat;}
#deck_5 .services_grid > div:nth-child(3) .icon{background: url(images/buttons/service-4-red.svg) no-repeat;}
#deck_5 .services_grid > div:nth-child(4) .icon{background: url(images/buttons/service-5-red.svg) no-repeat;}

@media(max-width: 940px){
    #deck_5{padding: 80px 0;}
}

#deck_5 .services_grid h2{padding-bottom: 0.5em; font-size: 28px;}



#deck_6{
		padding: 120px 0 120px 0;

	}

#deck_6.padding_top_0{
	padding-top: 0;
}

#deck_6 h2{font-size: 3em; font-weight: normal;}

#deck_6 img{width: 100%; border-radius: 50%; }

#deck_6 > .webwrapper .grid_1_1{
    margin: 80px 0 -4em 0;
}

#deck_6 .grid .textwrapper{
    padding: 0 0 100px 100px;
    position: relative;
}

#deck_6 .grid .textwrapper a{
    position: absolute; bottom: 0; left: 100px;
}

#deck_6 .grid.grid_1_1 > div{position: relative;}

#deck_6 .grid > div .box{width: 100%; height: 100%; position: relative;}
#deck_6 .grid > div .box:hover{z-index: 5;}

#deck_6 .grid > div .box h2{font-size: 1.6em; padding-bottom: 0.5em;}

#deck_6 .grid > div .box .bg{
    position: absolute; top: 0; left: 0; 
    width: 100%; height: 100%;
    transition-duration: 0.25s;
    transform: translateX(0) translateY(0);

}

#deck_6 .grid > div .box:hover .bg{
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    transform: translateX(-40px) translateY(-40px);
    background: var(--primary-color);
    box-shadow: 0 0 20px #999;
}


#deck_6 .grid > div .box h3, #deck_3 .grid > div .box p{color: var(--text-color); transition-duration: 0.25s;}
#deck_6 .grid > div .box:hover h2, #deck_6 .grid > div .box:hover p{color: white;}

#deck_6 .grid > div .icon{width: 85px; height: 85px; position: absolute; top: 0; left: 0; }




#deck_6 .grid > div .icon .icon_1, #deck_6 .grid > div .icon .icon_2{
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background-size: cover!important; background-position: center!important;
    transition-duration: 0.25s;
}

#deck_6 .grid > div .icon .icon_2{opacity: 0;}

#deck_6 .grid > div:hover .icon .icon_1{opacity: 0;}
#deck_6 .grid > div:hover .icon .icon_2{opacity: 1;}

#deck_6 .grid > div .box a.button{
    position: absolute; 
    bottom: 20px; 
    left: 100px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition-duration: 0.25s;
}

#deck_6 .grid > div .box:hover a.button{
    border: 2px solid white; 
    color: white;
}


@media(max-width: 1100px){
    .webWrapper_hero > div{
        width: 50%;
      }

      .hero .hero_bg{
        transform: translateX(-40%);
      }

      #deck_6 .grid.grid_1_2{
        grid-template-columns: 1fr;
      }
      #deck_6 .imgwrapper{text-align: center;}
      #deck_6 img{max-width: 350px; margin: 0 auto;}

      #deck_6 {
        padding: 80px 0;
      }
}

#deck_7{padding: 120px 0;}

#deck_7 h2{padding-bottom: 0.5em;}
