/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

@font-face {
    font-family: 'Amarante';
    src: url('fonts/amarante-regular-webfont.woff2') format('woff2'),
         url('fonts/amarante-regular-webfont.woff') format('woff'),
         url('fonts/amarante-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('fonts/fahkwang-regular-webfont.woff2') format('woff2'),
         url('fonts/fahkwang-regular-webfont.woff') format('woff'),
         url('fonts/fahkwang-regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Fahkwang  ';
    src: url('fonts/fahkwang-italic-webfont.woff2') format('woff2'),
         url('fonts/fahkwang-italic-webfont.woff') format('woff'),
         url('fonts/fahkwang-italic-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Fahkwang';
    src: url('fonts/fahkwang-bold-webfont.woff2') format('woff2'),
         url('fonts/fahkwang-bold-webfont.woff') format('woff'),
         url('fonts/fahkwang-bold-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Fahkwang';
    src: url('fonts/fahkwang-light-webfont.woff2') format('woff2'),
         url('fonts/fahkwang-light-webfont.woff') format('woff'),
         url('fonts/fahkwang-light-webfont.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


:root{
    --dark-color: #0D291C;
    --light-color: #FBFFE4;
    --white-color: #FFFFFF;
    --lime-green: #E3F971;
    --green: #267852;
    --dark-green: #0A2016;
    --transparent-green:#385b4a;
    --padding: 1.5rem;
    --title-size: clamp(3.2rem, 10vw, 4.2rem);
    --text-size: clamp(1.6rem, 10vw, 1.8rem);
    --text-big-size: clamp(1.8rem, 10vw, 2.4rem);
    --sub-title-size: clamp(2.4rem, 10vw, 3.2rem);
    --text-font: 'Fahkwang','Montserrat','Arial', serif;
    --title-font: 'Amarante','Fahkwang','Montserrat','Arial', serif;
}

html { font-size: 10px; }

/* Style de base, à personnaliser ou remplacer par Tailwind plus tard */
body {
    font-family: var(--text-font);
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}
body.blocked{
    overflow: hidden;
}


/*
TRANSITION
*/

.transition{
    transition: all ease .3s
}

.transition-opacity{
    transition: opacity ease .3s
}

.opacity-0{
    opacity: 0
}
.opacity-100{
    opacity: 1
}  

.translate-x-0{
    transform: translateX(0)
}
.translate-x-10{
    transform: translateX(-10px)
}
.translate-x-100{
    transform: translateX(-100%)
}

.translate-y-0{
    transform: translateY(0)
}
.translate-y-10{
    transform: translateY(-10px)
}
.translate-y-100{
    transform: translateY(-100%)
}

.transition-delay-transition{
    transition-delay: .3s;
}

/* TRANSITIONS END */

/* HAMBURGER */
    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .hamRotate.active {
        transform: rotate(45deg);
    }
    .hamRotate180.active {
        transform: rotate(180deg);
    }
    .line {
        fill:none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke-width:3.5;
    }
    .ham4 .top {
        stroke-dasharray: 40 121;
        transform:translateY(6px);
    }
    .ham4 .bottom {
        stroke-dasharray: 40 121;
        transform:translateY(-6px);
    }
    .ham4.active .top {
        stroke-dashoffset: -68px;
        transform:translateY(0px);
    }
    .ham4.active .bottom {
        stroke-dashoffset: -68px;
        transform:translateY(0px);
    }

    .menu-toggle{
        position:relative;
        z-index: 100;
      
    }
    .menu-toggle svg{
        stroke: var(--lime-green);
        background-color: var(--dark-color);
        border-radius: 50%;
        margin: var(--padding) 0;
        width: 55px;
        height: 55px;
        display:flex;
        justify-content: center;
        align-items: center;
    }
  /* END HAMBURGER */


/* NAV */

header {
    position: relative;
   
    background-color: var(--dark-color);

}

.blob {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--lime-green);
    opacity: .5;
    border-radius: 50%;
    transition: all 0.6s linear;
    pointer-events:none;
    z-index: 0;
    filter: blur(60px);
}
.blob-left {
    left: 0;
    bottom:  0;
}
.blob-right {
    right: 0;
    top: 0;
}
.head{
    position: relative;
    z-index: 1;
    min-height: clamp(460px, 25vh, 640px);
    display:flex;
    flex-direction: column;
    z-index: 10;
    overflow: hidden;
   
}

.hidden .logo-header{
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
}

.logo-header{
    gap: 1px;
}

.logo-header.animate .icon svg{
    animation: citronAnim 1s linear infinite;
    animation-play-state: paused;
    animation-delay: calc(var(--scroll) * -1s);
    animation-iteration-count: 1;
    animation-fill-mode: both;
    transform: rotate(115deg);

}

@keyframes citronAnim{
    from{
        transform: rotate(115deg);
    }
    to{
        transform: rotate(1080deg);
    }
}

.logo-header{
    display:flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    visibility: visible;
    transition: all ease .3s;
    opacity: 1;
    position: relative;
    z-index: 1;
    transform: translate(0);

}

.nav-ctn{
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 0 var(--padding);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 100;
    background-color: var(--dark-color);
    transition: background-color ease .3s;
    min-height: 75px;
    
}

.nav-ctn.hidden{
    background-color: transparent;
}

button{
    background: none;
    outline:none;
    border: none;
    cursor: pointer;
    padding: 0;
}

button svg{
    display:block;
}

h1{
    font-family: var(--text-font);
    font-size: var(--title-size);
    color: var(--white-color);
}

h1 span{
    font-family: var(--title-font);
    color: var(--lime-green);
}
header h1{
    text-align: center;
}

.header-content{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 10rem  var(--padding) 5rem;
    flex-grow:1;
}
.header-content .logo-header img{
    max-width: 500px;
    width: 100%;
}
.header-content-ctn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: var(--padding);
}
.arrow-btn{
    width: 45px;
    height: 45px;
    aspect-ratio: 1;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lime-green);
    border-radius: 50%;
}
.arrow-btn svg{
    stroke: var(--dark-color);
    width: 100%;
    height:auto;
    padding: 5px;
}

.nav-container{
    display:block;
   
    width:100%;
    height: 100dvh;
    background-color: var(--dark-color);
    position: fixed;
    top: 0;
    left:0;
    transition: all ease .3s;
    opacity: 0;
    pointer-events: none;

    transform: translateX(100%);

}

.nav-container.active{
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;

}



.nav-container ul{
  font-family: var(--text-font);
  font-weight: normal;
  font-size: var(--title-size);
  width: 100%;
  margin-top: 88px;
  padding: var(--padding);

}
.nav-container ul li{
  border-bottom: 1px solid var(--transparent-green);
}


.nav-container ul li a {
  color: var(--white-color);
  text-decoration:none;
  display: block;
  height: 100%;
  width: 100%;
  padding: 30px 0;
  position: relative;
  transform: translateX(0);
  transition: all ease .3s;

}

.nav-container ul li a:hover{
    color: var(--lime-green);
    transform: translateX(10px);
}
.nav-container ul li a:hover::after{
  width: calc(100% - 10px);
}

.nav-container ul li a::after{
  content:"";
  width: 0;
  height: 1px;
  background-color: var(--lime-green);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all ease .3s;
}
.nav-container ul li a span{
  vertical-align:middle;
}

.nav-container ul li a svg{
  fill: var(--white-color);
  vertical-align:middle;
  display:inline-block;
  margin-right: 15px;
  width: 18px;
  height: auto;
  transform:translateX(0); 
  transition: all ease .3s;
}
.nav-container ul li a:hover svg{
  fill: var(--lime-green);
  transform:translateX(5px);
}


/* MARQUEE */

.marquee{
    width:100%;

    background-color: var(--lime-green);
    color: var(--dark-color);
    overflow: hidden;
    position: relative;
    padding: var(--padding);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.marquee-content {
    display: inline-block;
    vertical-align: center;
    white-space: nowrap;
    font-size: var(--sub-title-size);
    font-style: italic;

    /*animation: scrolling linear;
    animation-timeline: scroll(root);*/
  }
  .marquee-anim{
    animation-timing-function: linear;
    animation: scrolling 10s linear infinite; 
  }

  .marquee-content p, .marquee-content span {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-right: var(--padding);
  }

  @keyframes scrolling {
    0% {
      transform: translateX(-100%);
    }
  

      100% {
        transform: translateX(-200%);
     
      }
  }

  /* MAIN */

  main{
    padding:0 var(--padding);
   overflow-x: hidden;
    margin: auto;
  }

  img{
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }

  .container{
    margin: 5rem auto;
    display:flex;
    justify-content: space-between;
    flex-direction: column;
    gap: var(--padding);
    max-width: 1640px;
    
  }

  .container h2{
    font-family: var(--title-font);
    font-size: var(--title-size);
    color: var(--dark-color);
  }
  h2 em{
    /*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='wavy-svg' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 184 48'%3E%3Cdefs%3E%3Cstyle%3E.st0%7Bfill:none%3B%7D.st1%7Bfill:%23e3f971%3B%7D.st2%7Bclip-path:url(%23clippath)%3B%7D%3C/style%3E%3C/defs%3E%3Cpath class='st1 path1' d='M32.8,11.8c.6,0,.7.2.8.5.1.3-.4.1-.5.2-.2,0-.5.2-.4.4.3.4,0,1.1,1.2,1,0,0,.2,0,.2,0,.4.6,1.2.4,1.9.4.6,0,1,.4.7.7-.3.3-.3.6,0,.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0c0,.2-.2.4,0,.5l126,.8c-.2,0-.3-.2-.5-.3-.2,0-.4-.1-.3-.3.2-.8-1-1.3-1.2-2,0-.1-.3-.1-.5-.1-.8,0-1-.3-1-.7,0-.3-.2-.5-.6-.7-.3-.1-.8-.2-.8-.5,1,0,1.1-.1.8-.7-.2-.3-.3-.7-1.1-.6,0,0-.2,0-.2,0-.2-.4-.8-.4-1.3-.4-.3,0-.8,0-.7-.3.2-.4-.2-.5-.6-.7,0,0,0,0,0,0-.6-.4-1.5-.3-2.2-.3,0,0,0,0,0,0,0,0,0,0,0,0-.2-.2-.4-.3-.7-.3-.8-.1-1.5,0-2.3,0-2.1-.1-4.1-.3-6.2-.4-2.1-.1-4.2-.2-6.2-.3-.4,0-.7-.2-.8-.4,0-.5-.5-.7-1-.9-.2,0-.5-.3-.2-.4.7-.2.5-.5.4-.8,0-.4-.2-.6-1-.6-.2,0-.3,0-.4-.2-.2-.3-.6-.3-1-.3s-.8,0-.9-.4c0-.4-.5-.7-1-.9,0,0,0,0,0,0-.3-.2-.8-.2-1.2-.2-.1,0-.3,0-.4,0-.2-.4-.6-.4-1.2-.3-.4,0-.8,0-1.2,0-2.6-.4-5.3-.5-7.9-.7-3.3-.2-6.5-.4-9.8-.5-1.7,0-3.3-.2-5-.3-1.8,0-3.6-.1-5.4-.2-2.8,0-5.5-.2-8.3-.2-2.7,0-5.5,0-8.2,0-1.8,0-3.5,0-5.3,0-3.1,0-6.2.2-9.4.2-1.4,0-2.9,0-4.3.2-2.9.1-5.8.2-8.7.2-6.2,0-12.4,0-18.6,0s-1.4-.1-2.2,0c0,0,0,0,0,0,0,0,0,0-.1,0-1,.2-1.1.2-.8.8,0,0,0,0,0,0-.3.1-.7,0-1,.2-.6,0-1,0-1.2.4-.3.5-1,.8-1.9.7-.3,0-.6,0-.7.2,0,0,0,0,0,0,0,0,0,0-.1,0h-.4s0,0,0,0c0,0,0,0,0,0-.5-.3-1.4-.2-2,.1-.3.2-.4.8-.1,1.1,0,0,0,0,0,0,0,.5.4,1,.6,1.5.2.4.8.6.9.9.2.6.8.8,1.5,1,.4.1.8.2.8.6,0,0,0,0,0,0-.2.3,0,.5.3.6.4.1.7.3,1.1.5,0,0,0,0,0,0-.1.3.3.7.3.7l1.3.9Z'%3E%3C/path%3E%3Cpath class='st1 path2' d='M153.4,31c.2-.2.4-.3.8-.3.6,0,1.1-.2,1.6-.4h0s0,0,0,0h0c1,0,2,.1,3,0h-.2c0,0,.1,0,.2,0,.3,0,.5.1.8,0,0,0,0,0,0,0,.5-.1,1.4,0,1-.7,0-.1.1-.2.3-.2.9-.1,1.1-.6,1.4-1h0c.2-.1.3-.2.5-.4h0c.6,0,1.3,0,.9-.6,0,0,0-.2,0-.3.5-.4-.1-.8-.1-1.2,0-.1-.2-.1-.4-.2-.8-.3-1.6,0-2.4-.1,0,0,0,0,0,0,0,0,0,0,0,0-.2-.6-1.1-.8-1.8-1.1-.3-.1-.6-.2-.7-.5,0-.4,0-.8-.5-1.2-.1-.1,0-.2.1-.2,1.5-.5,3.1-.6,4.7-.5.5,0,.9-.1,1.4-.1.9,0,.3-.5.4-.7,0,0,.1,0,.1,0h0s0,0,0,0h0c.5,0,.8-.1,1.1-.4.5-.4.8-1,1.8-1.1.2,0,.3-.1.3-.2-.2-.4,0-.7.1-1,0-.3-.2-.6-.3-.9,0-.1-.2-.1-.4-.1-.8,0-1.6,0-2.4,0,0,0,0,0,0,0,0,0,0,0,0,0-.1-.5-1.3-.9-1.9-1.1l-125.6-1.1c.4.2.2.8,0,1,0,0,0,0,0,0-.4,0-.7.1-1.1.2,0,0,0,0,0,0-.9,0-1.7.2-2.4.5,0,0,0,0,0,0-.8,0-1.6.3-2.3.4-2.1.4-4.2.8-6.3,1.2-1.7.3-3.4.6-5.1.8-1.1.1-2.3.1-3.4.5h0s0,0,0,0c-.7,0-.6.3-.6.6,0,0-.1,0-.2,0,0,0,0,0,0,0-.9,0-1.5.3-2.1.6-.4.2-.7.3-1.2.4-.9,0-1.7.1-2.6.3-1.5.2-2.1.7-1.6,1.3.2.3.3.6.4,1,0,.3.2.5.5.7-.1.4.7.5.8.8.1.6.7.7,1.3,1l142.2,4.7Z'%3E%3C/path%3E%3Cpath class='st1 path3' d='M11.9,23c.2,0,0,.4-.3.7,0,0,0,0,0,0,0,0,0,0,0,0h-.1c0,0-.1,0-.2,0,0,0,.1,0,.2,0-.5-.2-.9,0-1.4,0-.4,0-.8-.3-1.2,0,0,0,.1,0,.2,0,0,0-.1,0-.2,0-.4.2-1.4,0-1.2.7,0,0-.1,0-.2,0-.5,0-.7.2-1.1.3,0,0,0,0,0,0,0,0,0,0,0,0-.4,0-.6.1-.9.3-.3.2-.5.5-.7.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-.1,0,0,0,0,0,.1,0-.7,0-1.4-.1-2.1,0,0,0,0,0,.1,0,0,0,0,0,0,0-.1,0-.2,0-.3,0,0,0,0,0,0,0,0,0,0,0,0,0-.5-.3-1.3-.2-1.9.1,0,0,0,0,0,0,0,0,0,0,0,0-.4.3-.5.7-.2,1.1H.2s0,0,0,0c0,0,0,0,0,0H.2s0,0,0,0c0,.3,0,.6.3.9,0,0,0,0,0,0,0,.3.2.6.5.9,0,0,0,0,0,0,.2.4.7.7,1,1.1,0,0,0,0,0,0,.4.4,1.1.5,1.7.8.1.5.5.8,1.2,1.1.4.1.5.4.5.6,0,.2.2.4.4.5h0c.1.5.6.8,1.4.8.2,0,.4,0,.4.1,0,0,0,.2-.2.2-.6,0-.7.3-.6.7,0,.3.1.6.4.8.5.3,1.2.4,1.8.7.2.1.7,0,1.1,0,.7,0,.9.1.7.6-.2.4-.2.8,0,1.2.3.5.9.7,1.8.7,1.9-.2,3.8-.3,5.7-.3,2.2,0,4.4,0,6.7,0,2.2,0,4.3,0,6.5,0s.7,0,.9.3c.2.3.6.5,1.2.6.7,0,1.4.1,2.1.1,2.2,0,4.4,0,6.5,0,2.3-.1,4.6,0,7-.1,4-.1,8-.2,12.1-.2,2.9,0,5.8,0,8.7,0,2.2,0,4.4,0,6.5,0,2.9,0,5.7,0,8.6.2,1.7,0,3.3,0,5,.2,2.7.1,5.4.2,8.1.4,1.4,0,2.9.1,4.3.2,2.1.1,4.3.3,6.4.4,1.8.1,3.6.2,5.5.3,2,.1,4.1.3,6.2.4,1.8.1,3.6.2,5.4.3,2.2.2,4.4.3,6.6.5,2.1.2,4.2.3,6.3.4,2.4.2,4.9.4,7.3.6,2.4.2,4.9.3,7.3.5,3,.2,6,.5,9,.7,2.4.2,4.8.3,7.2.6,1,.1,1.9.2,2.9,0,.8-.1,1.2-.7,2.1-.6h0c.3-.2.9,0,1.1-.3.2-.4.7-.3,1.2-.3,1,.1,2.1.2,3.1,0,.5,0,.7-.2.6-.5,0-.2-.1-.3.3-.3.5,0,.7-.2,1-.5.4-.3.6-.7,1.2-1,0,0,0,0,0,0,.6,0,.9,0,.7-.5-.1-.2,0-.4.1-.6.4-.7-.2-1.3-1.2-1.5,0,0,0,0,0,0,0,0,0,0,0,0-.7,0-1.3-.3-2.1-.2,0,0,0,0,0,0,0,0,0,0,0,0-.6-.3-1.2-.6-1.9-.8,0,0,0,0,0,0,0,0,0,0,0,0h0c-.4-.2-.4-.5-.5-.8,0-.5-.4-.9-1.1-1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0h0c.1-.3-.2-.4-.5-.6-.5-.2-.8-.4-1.1-.7.1-.5-.6-.6-1-.8-.3-.2-.5-.3,0-.5.4,0,.3-.2.3-.5,0-.4-.4-.6-.9-.9-.7-.3-1.5-.5-2.4-.7,0,0,0,0,0,0-.3-.4-.4-1-1.4-.9-.2,0-.3-.1-.5-.2,0,0,0,0,0,0-.7-.2-1.3-.5-2.1-.6-2.9-.3-5.7-.6-8.6-.8-1.8-.1-3.6-.5-5.4-.5-.4,0-.6-.5-.5-.7L11.9,23Z'%3E%3C/path%3E%3C/svg%3E");
    */
    background-image: url("img/background-title-large.svg");
    background-repeat: no-repeat;
    background-size: contain;
    padding: 5px;
    background-position: center center;
    display: inline-block;
  }

  .text-center{
    text-align: center;
  }

  .flex-bloc{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap: var(--padding);
  }

  .flex-bloc>*{
    flex-basis:100%;
  }

  .container p{
    font-family: var(--text-font);
    font-size: var(--text-size);
    color: var(--dark-color);
    line-height: 1.25;
    margin: .5rem 0;
  }
  .link{
    color: var(--green);
    position:relative;
    display:inline-flex;
    gap: 0;
    font-family: var(--text-font);
    font-size: var(--text-size);
    text-decoration: none;
    font-weight: bold;
    overflow: hidden;
    z-index: 1;
    transition: all ease .3s;
    align-items: center;

  }
  
  .link span{
    padding: 0 5px;
  }
  

  .link:hover{
    padding-right: 5px;
  }

  .link:hover span{
    cursor: pointer;

 
    /*background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='wavy-svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:none%3B%7D.st1%7Bfill:%23e3f971%3B%7D.st2%7Bclip-path:url(%23clippath)%3B%7D%3C/style%3E%3C/defs%3E%3Cpath class='st1 path1' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-size: auto 6px;
    background-position: 0 100%;
    background-repeat: repeat-x;
    text-decoration: none;*/
  }

  .link:hover::before{
    left: 0;
    width: 100%;
    right: unset;
  }

  .link:hover::after{
    transform: translateX(5px);
  }

  .link::before{
    content:'';
    width: 0%;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--lime-green);
  transition: width ease .3s;
    z-index: -1;
   
   
   
  }

  .link::after{
    content:"";
    width: 42px;
    height:42px;
    background: url('./img/arrow-right.svg') no-repeat center center;
    background-size: contain;
    display: block;
    transition: transform ease .3s, opacity ease .3s;
    transform: translateX(0);
  }

  .triple-blocs{
    max-width:80%;
    margin:5rem auto;
  }
  .triple-blocs>div{
    display:none;
  }
  .triple-blocs>div:nth-child(2){
    display:block;
  }

  section{
    position:relative;
  }

  section::before{
    content:"";
    width: 350px;
    height: 350px;
    aspect-ratio:1;
    max-width:100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border: 3px solid var(--lime-green);
    transition: all ease .3s;
    z-index: -1;
    border-radius:50%;
    display:none;
    opacity: 0.5;
  }

  section#about::before{
    right: 0;
    left: unset;
    top: -5rem;
    transform: translateY(-50%);
  }
  section#services::before{
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    /* right: 0; */
    /* margin: auto; */
    top: -5rem;
    /* display: none;*/
    
  }
  section#real::before{
    bottom: 0;
    top: unset;
    right: 0;
    left: unset;
    transform: translateX(50%);
    border: 3px solid var(--green);
    opacity: 0.25;
  }



  .services{
    margin: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }

  .card{
    display: flex;
    flex-direction: column;
    gap: var(--padding);
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* border: 2px solid var(--lime-green); */
    width:100%;
  }
  .card::before{
    content:"";
    width: 100%;
    height: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: var(--light-color);
    transition: all ease-in-out .3s;
    z-index: -1;
  }

  /*.card:hover::before{
    height: 100%;
  }*/

  .card>div{
    padding: var(--padding);
  }

  .card-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--padding);
    font-weight: bold;
    font-size: var(--sub-title-size);
    color: var(--green);
    transition: color ease .3s;
  }
  .card h3{
    text-align:center;
  }
  .card h4{
    font-weight: bold;
    font-size: var(--text-size);
    color: var(--dark-green);
    transition: color ease .3s;

  }
  .card p{
    transition: color ease .3s;
  }

  .card-list{
    background-color: var(--lime-green);
    color: var(--green);

  }
  .card-list ul{
    display: flex;
    flex-direction: column;
    gap: var(--padding);
  }
  .card-list ul li{
    padding-left: 20px;
    position: relative;
    font-weight: bold;
    font-size: var(--text-size);
  }
  .card-list ul li::before{
    content:"";
    width: 16px;
    height: 16px;
    background: url("./img/puce.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
  }
  .card-icon{
    position: relative;
    z-index: 1;
  }
  .card-icon::before{
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: url("./img/background-icon.svg") no-repeat center center;
    background-size: contain;
    z-index: -1;
    transition: all ease .3s;
  }
 
  .card-icon svg{
    padding: var(--padding);
    width: 55px;
    height:auto;
    display: block;
    fill: var(--dark-color);
  }

  /* REALISATIONS */
  .real-ctn{
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;

  }
  .real-item{
    /* border-radius: 15px; */
    overflow: hidden;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: var(--dark-color);
    display:block; 
    margin: 0;
    /* border: 3px solid var(--lime-green); */
    transition: all ease .5s;
    max-width:1024px;
  }


  .real-item:hover{
    /* background-color: var(--lime-green); */
  }
  .real-item h3{
    font-weight: bold;
    font-size: var(--sub-title-size);
    color: var(--green);
  }

  
  .real-img{
    position:relative;
    border-radius:5px;
  }
  .btn-animated{
    position: absolute;
    bottom: 0;
    right: 15px;
    z-index: 1;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    transform: translate(0, 50%);
    transition: all ease .3s;
    
  }

  .real-text{
    padding: var(--padding);
  }

  .btn-animated svg{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    filter: drop-shadow(0px 0px 15px #00000025);
  }
  .real-item:hover .btn-animated{
    transform: translate(0, 50%) scale(1.25);
  }
  .real-item:hover .btn-animated .svg-text{
    animation: rotateText 25s linear infinite;
  }
  .real-item .real-tags{
    margin: 15px 0;
    color:var(--green);
  }
  .real-item span{
    background: linear-gradient(to right, var(--lime-green) 0%, var(--lime-green) 100%);
    background-position: 0 100%;
    background-size: 0% 50%;
    background-repeat: no-repeat;

    display: inline;
    transition: all ease 1s;
    line-height: 1.75;
  }

  .real-item:hover h3, .real-item:hover span{
    background-size: 100% 50%;
  }

  .real-img .img-ctn{
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 0;
  }
  .real-item .img-ctn img{
    transition: transform ease .3s;
    display: block;
    border-radius:0;
  }

  .real-item:hover .img-ctn img{
    transform: scale(1.1);
  }

  @keyframes rotateText{
    from{
      transform: rotate(0deg);
    }
    to{
      transform: rotate(360deg);
    }
  }
    
  /* FOOTER */

  footer {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);

}

footer .blob-left{
  transform: translate(-50%, 50%);
}
footer .blob-right{
  transform: translate(50%, -50%);
}
footer .container{
  z-index: 1;
  position: relative;
  padding: var(--padding);
}
footer .container h2{
  color: var(--white-color);
  font-size: var(--title-size);
  font-family: var(--text-font);
  text-align:center;
}


footer .container h2 span{
  font-family: var(--title-font);
  color: var(--lime-green);
}

footer .btn-animated{
  position: initial;
  transform: scale(1);
}
footer .band-contact{
  display:flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: -1;
}

footer .band-contact .btn-animated .svg-text{
  animation: rotateText 25s linear infinite;
}

footer .band-contact .btn-animated:hover{
  transform: scale(1.25);
}

.footer-bloc{
  background-color: var(--dark-green);
  border-radius: 15px;
  padding: var(--padding);
  color: #FFF;
  font-size: var(--text-size);
  width:100%;

}
.footer-bloc p{
  color: #FFF;
}

.footer-bloc ul li{
  margin: 10px 0;
}

.footer-bloc ul li a{
  color: #FFF;
  display: block;
  text-decoration:none; 
}
.footer-bloc ul li a span{
  color: #FFF;
  text-decoration: none;
  background: linear-gradient(to right, var(--lime-green) 0%, var(--lime-green) 100%);
    background-position: 0 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
    display: inline;
    transition: all ease .5s;
    line-height: 1.75;
}
.footer-bloc ul li a:hover span{
  background-size: 100% 1px;
}
  
.footer-bloc ul li a.footer-link{
  text-decoration: underline;
}
.footer-bloc .flex-bloc{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.socials a{
  display: inline-block;
  margin: 0 5px;
}
.socials a svg{
  fill: var(--lime-green);
  transition: all ease .3s;
}
.socials a:hover svg{
  fill: var(--light-color);
  transform:scale(1.25);
}
.footer-bloc-center{
  text-align: center;
}

.footer-bloc-flex{
  display:flex;
  flex-direction:column; 
  gap: var(--padding);
}

footer .logo-header{
  max-width: 500px;
  margin:auto;
}

footer .container{
  margin:5rem auto 0
}
.socials{
  text-align: right;
}

footer .blob{
  z-index: -1;
}
@media(min-width:624px){
  .card-title{
    flex-direction:row;
    text-align:left;
    gap: var(--padding);
    font-size: var(--text-big-size);
  }
  .card h3{
    text-align:left;
  }
}
@media(min-width:990px){


  .services{
    flex-direction:row;
  }

  .card>div{
    height:100%;
  }

  .services{
    flex-wrap: wrap;
    justify-content: center;

  }

  .card{
    width: calc(100% / 2 - 30px);
  }

  .real-ctn{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  
  }

  .real-item:nth-child(odd){
    margin-top:0;
   }
   .real-item:nth-child(even){
     margin-top:2.5rem;
   }

   .real-item{
    margin:5rem 0;
   }

  .footer-bloc-flex{
    flex-direction:row;
    align-items:stretch;
    justify-content:center;
    gap: 3rem;
  }

  .footer-bloc-flex .footer-bloc{
    width:auto;
  }

  footer .flex-bloc>*{
    flex-basis:auto;
  }
  .footer-bloc{
    background:transparent;
  }

  .footer-bloc .flex-bloc, .footer-bloc ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .menu-toggle{
    display:none;
  }

  .nav-container{
    position:relative;
    pointer-events:all;
    height: auto;
    transform:translateX(0);
    opacity: 1;
    background:transparent;
    z-index:1 ;
  }

  .nav-container ul{
    font-size: var(--text-size);
    width: auto;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--padding);
  }

  /* .hidden .nav-container{
    opacity: 0;
    transform: translateY(-100%);
  } */


  .nav-container ul li a svg{
    margin-right: 5px;
    width:8px;
  }

  .nav-container ul li{
    border:none;
  }
  .nav-container ul li a{
    padding:10px 0;
    margin:0 10px;
  }
  .nav-container ul li a:hover{
    transform:translateX(0);
  }
  .nav-container ul li a:hover svg{
    transform:translateX(2px);
  }

}

@media(min-width:1240px){
  .services{
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .card{
    width: 100%;
  }
  .flex-bloc{
    flex-direction:row;
    gap: 30px;
  }

  .triple-blocs>div{
    display:block;
  }

  section::before{
    display:block;
  }
}
