<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.noscroll{
  overflow: hidden;
}

/**********************************************************************************************************************************/
/* HEADER
/**********************************************************************************************************************************/
#header-wrapper{
  box-shadow: 0 1px 12px 0 rgba(0,0,0,.2);
  z-index: 40;
  background: #FFFFFF;
  position: relative;
  position: sticky;
  top: 0;
}

#header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-direction: row-reverse;
}

@media only screen and (min-width: 600px) {
  #header{
    padding: 20px 0;
  }
}

@media only screen and (min-width: 1000px) {
  #header{
    flex-direction: row;
  }
}

.openMenu{
  background: rgba(0,0,0,.6);
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 394;
  width: 100%;
}

.openMenu #menu{
  display: block;
  position: absolute;
  top: 96px;
  left: 0;
  width: 100vw;
  background: #FFF;
}

.openMenu #menu &gt; li + li{
  margin-left: 0;
}
.openMenu #menu &gt; li &gt; a{
  padding: 20px;
  display: block;
  border-top: 1px solid #F0F0F0;
}

/**********************************************************************************************************************************/
/* HEADER &gt; MENU
/**********************************************************************************************************************************/
#header-navigation{
  min-width: 30%;
}

#menu{
  display: none;
}

@media only screen and (min-width: 1000px) {
  #menu{
    display: flex;
    position: relative;
  }
}

#menu &gt; li + li{
  margin-left: 30px;
}

#menu &gt; li &gt; a{
  color: inherit;
  font-weight: 600;
}

#menu &gt; li.hover &gt; a,
#menu &gt; li:hover &gt; a{
  color: var(--vert);
}

#menu &gt; li &gt; a.hasMegamenu {
  position: relative;
  padding-right: 20px;
  z-index: 2;
}

#menu &gt; li &gt; a.hasMegamenu span{
  position: absolute;
  background-image: url(../images/icons/menu-down.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
  background-color: transparent;
  display: block;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all .2s ease;
}



#menu .open a.hasMegamenu span{
  transform: rotate(180deg);
}

@media only screen and (min-width: 1000px) {
  #menu &gt; li &gt; a.hasMegamenu span{
    display: none;
  }
  #menu &gt; li.hover &gt; a.hasMegamenu span,
  #menu &gt; li:hover &gt; a.hasMegamenu span{
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/megamenu/megamenu-pointer2.png);
    background-size: contain;
    bottom: 0;
    left: 50%;
    transform: translateY(200%) translateX(-50%);
  }
  #menu &gt; li &gt; a.hasMegamenu {
    padding-right: 0;
  }
}

#header-menu-toggler span{
  height: 5px;
  margin: 5px 0;
  width: 32px;
  border-radius: 320px;
  background: var(--vert);
  display: block;
  transition: all .4s ease;
  opacity: 1;
}

#header-menu-toggler{
  position: absolute;
  top: 30px;
  right: 20px;
}

@media only screen and (min-width: 1000px) {
  #header-menu-toggler{
    display: none;
  }
}

.openMenu #header-menu-toggler span:nth-child(1){
  transform: rotate(45deg) translateY(7px) translateX(0px);
}

.openMenu #header-menu-toggler span:nth-child(2){
  opacity: 0;
}

.openMenu #header-menu-toggler span:nth-child(3){
  transform: rotate(-45deg) translateY(-14px) translateX(7px);
}

/**********************************************************************************************************************************/
/* HEADER &gt; LOGO
/**********************************************************************************************************************************/
#header-logo{
  min-width: 30%;
  display: flex;
  justify-content: center;
}
#header-logo span{
  font-size: 0;
}
#header-logo svg{
  width: 120px;
}

/**********************************************************************************************************************************/
/* HEADER &gt; SHORTCUTS
/**********************************************************************************************************************************/
#header-shortcuts{
  min-width: 30%;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1000px) {
  #header-shortcuts{
    justify-content: flex-end;
  }
}

/**********************************************************************************************************************************/
/* HEADER &gt; SHORTCUTS &gt; SEARCH
/**********************************************************************************************************************************/
#searchbox{
  padding: 0;
  width: 40px;
  font-size: 0;
  background: #F2F2F2;
  border-radius: 320px;
  border: none;
  max-height: 32px;
  z-index: 1;
  outline: 0;
}

#searchbox:focus{
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
}

.focusSearch #header-shortcuts-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.focusSearch #searchbox{
  width: 75vw;
  font-size: inherit;
  padding-left: 50px;
}

.focusSearch #header-logo{
  opacity: 0;
}

@media only screen and (min-width: 1000px) {
  #searchbox{
    padding: 0 20px 0 45px;
    width: 100%;
    font-size: 14px;
  }
}

#header-shortcuts-search{
  position: relative;
}

#search-icon{
  width: 40px;
  display: block;
  font-size: 0;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/icons/search.png) no-repeat center center / 16px transparent;
  z-index: 2;
  cursor: pointer;
}

@media only screen and (min-width: 1000px) {
  #search-icon{
    width: 50px;
  }
}

#header-shortcuts-lang{
  margin-left: 10px;
  display: none;
}

.openMenu #header-shortcuts-lang{
  display: block;
}

@media only screen and (min-width: 1000px) {
  #header-shortcuts-lang{
    margin-left: 30px;
    display: block;
    border: 1px solid #cecece;
    border-radius: 5px;
    padding: 2px 5px;
    cursor: pointer;
  }
}

#current-lang{
  font-size: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-color: transparent;
  background-repeat: no-repeat;
}

#langs span{
  font-size: 0;
}

#header-shortcuts-lang li:first-child a,
.fr #current-lang{
  background-image: url(../images/icons/fr.jpg);
}

#header-shortcuts-lang a,
.en #current-lang{
  background-image: url(../images/icons/en.jpg);
}

#header-shortcuts-lang li:last-child a,
.de #current-lang{
  background-image: url(../images/icons/de.jpg);
}

#header-shortcuts-lang li a{
  display: block;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#langs{
  position: relative;
  padding-right: 15px;
  background: url(../images/icons/menu-down.png) no-repeat 95% center / 8px transparent;
}

#header-shortcuts-lang ul{
  display: none;
}

#langs.hover ul{
  display: block;
}

#langs.hover #current-lang{
  display: none;
}

#langs.hover .en ul{
  display: flex;
  flex-direction: column-reverse;
}

/**********************************************************************************************************************************/
/* MAIN
/**********************************************************************************************************************************/
#main{
  padding-top: var(--gutter-in);
  padding-bottom: var(--gutter-in);
  min-height: 76.6vh;
}


/**********************************************************************************************************************************/
/* MAIN &gt; HEADER
/**********************************************************************************************************************************/
#main-header{
  margin-top: calc(var(--gutter-in)*-1);
  margin-left: -20px;
  margin-right: -20px;
}

@media only screen and (min-width: 600px) {
  #main-header{
    margin-left: -50px;
    margin-right: -50px;
  }
}

@media only screen and (min-width: 1000px) {
  #main-header{
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
  }
}

#main-header-left{
  max-height: 320px;
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 1000px) {
  #main-header-left{
    max-height: unset;
    width: 60%;
    padding-right: calc(var(--gutter-in)/2);
  }
}

@media only screen and (min-width: 1440px) {
  #main-header-left{
    width: 65%;
  }
}


@media only screen and (min-width: 1600px) {
  #main-header-left{
    width: 70%;
  }
}

#main-header-left .frame-type-header{
  position: absolute;
  top: 50%;
  z-index: 3;
  text-align: center;
  width: calc(100% - calc(var(--gutter-in)/2) );
  transform: translateY(-50%);
}


#main-header-left .frame + .frame{
  margin-top: 0;
}

#main-header-left .frame-type-header h1{
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  color: #FFF;
}

#main-header-left .frame-type-header header::after{
  content: none;
}

#main-header-left .frame-type-image{
  position: relative;
  z-index: 2;
}


#main-header-left img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#main-header-left &gt; .frame-type-image,
#main-header-left .ce-image,
#main-header-left .ce-gallery,
#main-header-left .ce-outer,
#main-header-left .ce-inner,
#main-header-left .ce-column,
#main-header-left .ce-gallery figure {
  display: flex;
  min-height: 100%;
  position: relative;
  float: none;
  width: 100%;
}

#main-header-right{
  margin: calc(var(--gutter-out)*-1.5) calc(var(--gutter-in)/2) var(--gutter-in) calc(var(--gutter-in)/2);
  position: relative;
  z-index: 3;
  background: #FFFFFF;
}

@media only screen and (min-width: 600px) {
  #main-header-right{
    margin: calc(var(--gutter-out)*-1) var(--gutter-in) var(--gutter-in) var(--gutter-in);
  }
}

@media only screen and (min-width: 1000px) {
  #main-header-right{
    width: 40%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

@media only screen and (min-width: 1440px) {
  #main-header-right{
    width: 35%;
  }
}

@media only screen and (min-width: 1600px) {
  #main-header-right{
    width: 30%;
  }
}

#main-header-right .frame:first-child{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter-in);
}

#main-header-right .bouton{
  display: block;
}

#main-header-right .frame h2,
#main-header-right .frame h1{
  text-transform: uppercase;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 30px;
  color: var(--vert);
}

#main-header-right .frame * + p{
  margin-top: 20px;
}

#main-header-right .frame-type-html{
  margin-top: calc(var(--gutter-out)/2);
}

#main-header-right .frame-type-html a.force{
  background: var(--vert);
  padding: 20px;
  display: block;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

#main-header-right .frame-type-html a.force::after{
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(var(--gutter-in)/4);
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
}

#main-header-right figure{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#main-header-right img{
  max-width: 100%;
  height: auto;
  width: auto;
}


/**********************************************************************************************************************************/
/* MAIN &gt; CONTENT
/**********************************************************************************************************************************/
#main-content{
  margin-top: var(--gutter-out);
}
#main-content &gt; .frame-type-div:first-child{
  display: none;
}

@media only screen and (min-width: 600px) {
  #main-content &gt; .frame-type-div:first-child{
    display: block;
  }
}

/**********************************************************************************************************************************/
/* FOOTER
/**********************************************************************************************************************************/
#footer-wrapper{
  box-shadow: 0 1px 12px 0 rgba(0,0,0,.2);
}

#footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

#footer-logo svg{
  width: 120px;
}

/**********************************************************************************************************************************/
/* FOOTER &gt; MENU
/**********************************************************************************************************************************/
#footer-legals{
  min-width: 30%;
  display: none;
}

@media only screen and (min-width: 1000px) {
  #footer-legals{
    display: block;
  }
}

#footer-legals ul{
  display: flex;
}

#footer-legals ul li + li{
  margin-left: 30px;
}

#footer-legals ul a{
  color: inherit;
  font-weight: 600;
  font-size: 12px;
}

/**********************************************************************************************************************************/
/* FOOTER &gt; SOCIALS
/**********************************************************************************************************************************/
#footer-social ul{
  display: flex;
}

#footer-social ul li + li{
  margin-left: 10px;
}
</pre></body></html>