
.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse
}

@media screen and (min-width: 768px) {
  .header-grid {
      display:grid;
      grid-template-columns: repeat(3,1fr);
      grid-template-rows: 1fr;
      grid-column-gap: 0;
      grid-row-gap: 0
  }
}

header .main-header {
  top: 0;
  left: 0;
  padding-right: 3rem;
  padding-left: 3rem;
  transition: .5s all ease
}

@media screen and (min-width: 992px) {
  header .main-header {
      position:fixed
  }
}

header:not(.bzhd-fixed-top) .main-header,header.bzhd-fixed-top .main-header {
  padding: .5rem 1rem;
  background: #fff
}

@media screen and (min-width: 768px) {
  header:not(.bzhd-fixed-top) .main-header,header.bzhd-fixed-top .main-header {
      padding:.5rem 3rem
  }
}

@media screen and (min-width: 992px) {
  header:not(.bzhd-fixed-top) .main-header {
      top:2rem;
      background: 0 0
  }
}

.main-header .logo {
  opacity: 1;
  transition: .5s all ease
}

.main-header .logo-top {
  max-width: 200px
}

.main-header .logo-main {
  max-width: 160px
}

.main-header .logo-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%)
}

header.bzhd-fixed-top .logo-top,header:not(.bzhd-fixed-top) .logo-top {
  transform: translateY(-200%) translateX(-50%);
  opacity: 0
}

header.bzhd-fixed-top .logo-main,header:not(.bzhd-fixed-top) .logo-main {
  transform: translateY(0)
}

@media screen and (min-width: 992px) {
  header:not(.bzhd-fixed-top) .logo-main {
      transform:translateY(-200%);
      opacity: 0
  }

  header:not(.bzhd-fixed-top) .logo-top {
      transform: translateY(calc(-58%)) translateX(-50%);
      opacity: 1
  }
}

body.logo-light header .logo-top:not(.logo-top-light),body:not(.logo-light) header .logo-top-light {
  display: none
}

body.logo-light header .logo-top-light,body:not(.logo-light) header .logo-top:not(.logo-top-light) {
  display: block
}

header .socials-container .picto {
  max-width: 40px
}

header:not(.bzhd-fixed-top) .burger-text {
  color: var(--color-dark)
}

@media screen and (min-width: 992px) {
  .home-page header:not(.bzhd-fixed-top) .burger-text {
      color:var(--white)
  }
}

header:not(.bzhd-fixed-top) .picto-white {
  display: none
}

header.bzhd-fixed-top .picto-white {
  display: none
}

@media screen and (min-width: 992px) {
  .home-page header:not(.bzhd-fixed-top) .picto-black {
      display:none
  }

  .home-page header:not(.bzhd-fixed-top) .picto-white {
      display: block
  }
}

header .accordion-item,header .accordion-header,header .accordion-header .accordion-button {
  background: 0 0;
  font-size: 30px;
  text-align: center;
  border: 0
}

header .nav-logo {
  max-width: 150px
}

header .accordion-button,header .accordion-button:active,header .accordion-button:focus {
  box-shadow: none;
  outline: 0
}

header .accordion-button:hover,header .accordion-button:not(.collapsed) {
  color: var(--color-primary)
}

header .accordion-button {
  justify-content: center;
  box-shadow: none!important;
  padding-bottom: 0
}

header .accordion-button::after {
  margin-left: .5rem
}

header .logo-nav {
  max-width: 175px
}

@media screen and (min-width: 992px) {
  header .logo-nav {
      max-width:200px
  }
}

header .accordion-item .accordion-body {
  padding-top: 0;
  padding-bottom: 0
}

.box_menu {
  cursor: pointer
}

body:not(.open-menu) #main-navigation .menu {
  display: none
}

:root {
  --white: #ffffff;
  --black: #000000;
  --color-primary: #A60000;
  --color-primary-rgb: 166, 0, 0;
  --color-primary-light: #A60000;
  --color-secondary: #C4AE8F;
  --color-secondary-rgb: 196, 174, 143;
  --color-secondary-light: #C4AE8F;
  --color-accent: #E0115F;
  --color-accent-rgb: 224, 17, 95;
  --color-accent-light: #f28110;
  --color-dark: #000000;
  --color-light: #F6F4F2;
  --color-grey: #D9D9D9;
  --color-lightGrey: #F5F5F5;
  --radius-main: 15px;
  --radius-secondary: 8px;
  --font-family-primary: "Fjalla One", sans-serif;
  --font-family-secondary: "Source Code Pro", sans-serif;
  --global-transition-duration: all .5s ease
}

.c-white {
  color: var(--white)
}

.c-white-hover:hover {
  color: var(--white)
}

.bg-c-white {
  background-color: var(--white)
}

.bg-c-white-hover:hover {
  background-color: var(--white)
}

.c-dark {
  color: var(--color-dark)
}

.bg-c-dark {
  background-color: var(--color-dark)
}

.border-c-dark {
  border-color: var(--color-dark)
}

.c-primary {
  color: var(--color-primary)
}

.c-primary-hover:hover {
  color: var(--color-primary)
}

.bg-c-primary {
  background-color: var(--color-primary)
}

.border-c-primary {
  border-color: var(--color-primary)!important
}

.c-primary-light {
  color: var(--color-primary-light)
}

.bg-c-primary-light {
  background-color: var(--color-primary-light)
}

.c-secondary {
  color: var(--color-secondary)
}

.c-secondary-hover:hover {
  color: var(--color-secondary)
}

.bg-c-secondary {
  background-color: var(--color-secondary)
}

.border-c-secondary {
  border-color: var(--color-secondary)
}

.c-secondary-light {
  color: var(--color-secondary-light)
}

.bg-c-secondary-light {
  background-color: var(--color-secondary-light)
}

.c-accent {
  color: var(--color-accent)
}

.c-accent-hover:hover {
  color: var(--color-accent)
}

.bg-c-accent {
  background-color: var(--color-accent)
}

.border-c-accent {
  border-color: var(--color-accent)
}

.c-accent-light {
  color: var(--color-accent-light)
}

.c-accent-light-hover:hover {
  color: var(--color-accent-light)
}

.bg-c-accent-light {
  background-color: var(--color-accent-light)
}

.bg-c-accent-light-hover:hover {
  background-color: var(--color-accent-light)
}

.border-c-accent-light {
  border-color: var(--color-accent-light)
}

.c-light {
  color: var(--color-light)
}

.bg-c-light {
  background-color: var(--color-light)
}

.c-lightGrey {
  color: var(--color-lightGrey)
}

.bg-c-lightGrey {
  background-color: var(--color-lightGrey)
}

.bg-transparent {
  background-color: transparent
}

.radius-main {
  border-radius: var(--radius-main)
}

.radius-secondary {
  border-radius: var(--radius-secondary)
}

.f-primary {
  font-family: var(--font-family-primary),serif
}

.f-secondary {
  font-family: var(--font-family-secondary),sans-serif
}

.fs-18 {
  font-size: 18px
}

.fs-20 {
  font-size: 20px
}

.fs-24 {
  font-size: 24px
}

.fs-28 {
  font-size: 28px
}

.title-m {
  font-size: 26px
}

.title-l {
  font-size: 30px
}

.title-xl {
  font-size: 2.5rem
}

.title-xxl {
  font-size: 3rem
}

@media screen and (min-width: 576px) {
  .fs-sm-20 {
      font-size:20px
  }

  .title-m {
      font-size: 30px;
      line-height: 35px
  }

  .title-l {
      font-size: 35px;
      line-height: 40px
  }

  .title-xl {
      font-size: 3.5rem;
      line-height: 3.6rem
  }

  .title-xxl {
      font-size: 3.7rem;
      line-height: 3.7rem
  }
}

@media screen and (min-width: 992px) {
  .title-m {
      font-size:35px;
      line-height: 40px
  }

  .title-l {
      font-size: 40px;
      line-height: 45px
  }

  .title-xl {
      font-size: 50px;
      line-height: 55px
  }

  .title-xxl {
      font-size: 75px;
      line-height: 75px
  }

  .content-page-title .title-xxl {
      font-size: 70px;
      line-height: 80px
  }

  .fs-lg-18 {
      font-size: 18px
  }

  .fs-lg-20 {
      font-size: 20px
  }

  .fs-lg-24 {
      font-size: 24px
  }
}

.subtitle {
  letter-spacing: .2rem
}

.fw-600 {
  font-weight: 600
}

.cursor-pointer {
  cursor: pointer
}

.transform-0 {
  transform: none!important
}

.text-justify {
  text-align: justify
}

.flex-1 {
  flex: 1
}

.order-10 {
  order: 10!important
}

.hover-underline:hover {
  text-decoration: underline
}

.z-1 {
  z-index: 1
}

.z-2 {
  z-index: 2
}

.z-3 {
  z-index: 3
}

.z-4 {
  z-index: 4
}

.z-5 {
  z-index: 5
}

.z-10 {
  z-index: 10
}

.w-110 {
  width: 110%!important
}

@media screen and (min-width: 992px) {
  .w-lg-110 {
      width:110%!important
  }
}

body {
  font-family: var(--font-family-secondary);
  color: #000;
  background-color: #fff;
  font-size: 16px;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  font-weight: 600
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-family-primary)
}

a,a:hover,a:focus,.button:focus,button:focus,.btn:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none
}

a,a:hover {
  color: inherit;
  transition: color .2s ease
}
/* gesret*/





 
    
          .s-hero {
              background-image: url('../../Front/img/homepage/hero-bg.jpg');
              background-position: center bottom;
              background-size: cover;
              min-height: 800px;
              height: 1px;
          }
          .s-1 {
              background-color: transparent;
              background-image: url('../../Front/img/global/torn_bg_white_home.png');
              background-position: top;
              background-size: cover;
              background-repeat: no-repeat;
              position: relative;
              z-index: 2;
              margin-top: -5rem;
          }
          .s-about {
              background-image: url('../../Front/img/global/torn_bg_secondary_home.png');
              background-position: top;
              background-size: cover;
              background-repeat: no-repeat;
              position: relative;
              z-index: 3;
          }
  
          .carnet-bg {
              background-image: url('../../Front/img/homepage/carnet_bg_mobile.webp');
              background-position: bottom;
              background-size: cover;
              background-repeat: no-repeat;
              min-height: 800px;
              height: 1px;
              color: var(--white);
          }
  
  
         
  
          .s-contact {
              /*background-color: var(--color-light);*/
              background-image: url('../../Front/img/global/torn_bg_white_home.png');
              background-position: top;
              background-size: cover;
              background-repeat: repeat;
              margin-top: -5rem;
              margin-right: -5px;
              z-index: 4;
              position: relative;
          }
  
  
  
    


:root {
    --white:                        #ffffff;
    --black:                        #000000;
    --color-primary:                #A60000;
    --color-primary-rgb:            166, 0, 0;
    --color-primary-light:          #A60000;
    --color-secondary:              #C4AE8F;
    --color-secondary-rgb:          196, 174, 143;
    --color-secondary-light:        #C4AE8F;
    --color-accent:                 #E0115F;
    --color-accent-rgb:             224, 17, 95;
    --color-accent-light:           #f28110;
    --color-dark:                   #000000;
    --color-light:                  #F6F4F2;
    --color-grey:                   #D9D9D9;
    --color-lightGrey:              #F5F5F5;
    --radius-main:                  15px;
    --radius-secondary:             8px;
    --font-family-primary:          "Fjalla One", sans-serif;
    --font-family-secondary:        "Source Code Pro", sans-serif;
    --global-transition-duration:   all .5s ease;
}



.c-white { color: var(--white); }
.c-white-hover:hover { color: var(--white); }
.bg-c-white { background-color: var(--white); }
.bg-c-white-hover:hover { background-color: var(--white); }

.c-dark { color: var(--color-dark); }
.bg-c-dark { background-color: var(--color-dark); }
.border-c-dark { border-color: var(--color-dark); }

.c-primary { color: var(--color-primary); }
.c-primary-hover:hover { color: var(--color-primary); }
.bg-c-primary { background-color: var(--color-primary); }
.border-c-primary { border-color: var(--color-primary) !important; }

.c-primary-light { color: var(--color-primary-light); }
.bg-c-primary-light { background-color: var(--color-primary-light); }

.c-secondary { color: var(--color-secondary); }
.c-secondary-hover:hover { color: var(--color-secondary); }
.bg-c-secondary { background-color: var(--color-secondary); }
/*.bg-rgba-secondary { background-color: rgba(69, 78, 156, 0.5); }*/
.border-c-secondary { border-color: var(--color-secondary); }

.c-secondary-light { color: var(--color-secondary-light); }
.bg-c-secondary-light { background-color: var(--color-secondary-light); }

.c-accent { color: var(--color-accent); }
.c-accent-hover:hover { color: var(--color-accent); }
.bg-c-accent { background-color: var(--color-accent); }
.border-c-accent { border-color: var(--color-accent); }

.c-accent-light { color: var(--color-accent-light); }
.c-accent-light-hover:hover { color: var(--color-accent-light); }
.bg-c-accent-light { background-color: var(--color-accent-light); }
.bg-c-accent-light-hover:hover { background-color: var(--color-accent-light); }
.border-c-accent-light { border-color: var(--color-accent-light); }

.c-light { color: var(--color-light); }
.bg-c-light { background-color: var(--color-light); }

.c-lightGrey { color: var(--color-lightGrey); }
.bg-c-lightGrey { background-color: var(--color-lightGrey); }

.bg-transparent { background-color: transparent; }

.radius-main { border-radius: var(--radius-main); }
.radius-secondary { border-radius: var(--radius-secondary); }

.f-primary { font-family: var(--font-family-primary), serif; }
.f-secondary { font-family: var(--font-family-secondary), sans-serif; }

.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-24 { font-size: 24px; }
.fs-28 { font-size: 28px; }

.title-m { font-size: 26px; }
.title-l { font-size: 30px; }
.title-xl { font-size: 2.5rem; }
.title-xxl { font-size: 3rem; }
@media screen and (min-width: 576px) {
    .fs-sm-20 { font-size: 20px; }
    .title-m { font-size: 30px; line-height: 35px; }
    .title-l { font-size: 35px; line-height: 40px; }
    .title-xl { font-size: 3.5rem; line-height: 3.6rem; }
    .title-xxl { font-size: 3.7rem; line-height: 3.7rem; }
}
@media screen and (min-width: 992px) {
    .title-m { font-size: 35px; line-height: 40px; }
    .title-l { font-size: 40px; line-height: 45px; }
    .title-xl { font-size: 50px; line-height: 55px; }
    .title-xxl { font-size: 75px; line-height: 75px; }
    .content-page-title .title-xxl { font-size: 70px; line-height: 80px; }
    .fs-lg-18 { font-size: 18px; }
    .fs-lg-20 { font-size: 20px; }
    .fs-lg-24 { font-size: 24px; }
}

.subtitle { letter-spacing: .2rem; }

.fw-600 { font-weight: 600; }

.cursor-pointer { cursor: pointer; }

.transform-0 { transform: none !important; }

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

.flex-1 { flex: 1; }

.order-10 { order: 10 !important; }

.hover-underline:hover {
    text-decoration: underline;
}

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }
.z-10 { z-index: 10; }

.w-110 { width: 110% !important; }
@media screen and (min-width: 992px) { .w-lg-110 { width: 110% !important; } }

body {
    font-family: var(--font-family-secondary);
    color: #000000;
    background-color: #ffffff;
    /*font-size: 1rem;*/
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-primary);
    /*font-weight: 700;*/
}

a, a:hover, a:focus, .button:focus, button:focus, .btn:focus{
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
a, a:hover {
    color: inherit;
    transition: color .2s ease;
}




header .cross {
    max-width: 30px;
}

/** footer **/

footer .logo {
    max-width: 250px;
}
@media screen and (min-width: 992px) {
    footer .logo {
        max-width: 300px;
    }
}

footer ul li {
    margin-bottom: .3rem;
}
footer ul li a:hover {
    color: var(--color-primary);
}

footer .socials-container .picto {
    max-width: 40px;
}
/** footer END **/


@media screen and (min-width: 992px) {
    .s-hero.global {
        padding-top : 5rem;
    }
}

.gesret-bg-light{
      background-image: url('../../Front/img/global/light-bg.jpg');

}

/* homepage home-page */
.home-page .s-hero {
    position: relative;
}
.home-page .s-hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .4);
}

.home-page .signboard-container {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.home-page .signboard {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home-page .signboard-container .title {
    color: var(--color-dark);
    font-size: 2.4rem;
    /*text-shadow: black -2px 1px;*/
    /*-webkit-text-stroke: 1px black;*/
    /*font-weight: 700;*/
}
.home-page .s-hero .title {
    font-size: 2.5rem;
}
@media screen and (min-width: 576px) {
    .home-page .s-hero .title {
        font-size: 3.5rem;
    }
}

@media screen and (min-width: 992px) {
    .home-page .s-hero .title {
        font-size: 6rem;
    }
}


.home-page .s-shop .shirt {
    display: none;
}
@media screen and (min-width: 992px) {
    .home-page .s-shop .shirt {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 3;
        margin-bottom: -.5rem;
        max-width: 500px;
    }
    .home-page .s-shop .shirt:nth-of-type(2) {
        left: 30%;
        z-index: 2;
    }
    .home-page .s-shop .shirt:nth-of-type(3) {
        left: 60%;
        z-index: 1;
    }
}

.home-page .s-1 .sticker {
    position: absolute;
    max-width: 400px;
    z-index: 0;
    display: none;
}
@media screen and (min-width: 992px) {
    .home-page .s-1 .sticker {
        display: block;
    }
}
.home-page .s-1 .sticker.sticker-pops {
    max-width: 200px;
    right: 10%;
    bottom: 40%;
    transform: rotate(-10deg);
}
.home-page .s-1 .sticker.sticker-drawer {
    bottom: 5%;
    left: 10%;
    max-width: 340px;
}
.home-page .s-1 .sticker.sticker-brand {
    bottom: 7%;
    right: 14%;
    transform: rotate(-10deg);
    max-width: 320px;
}
.home-page .s-1 .sticker.sticker-vest {
    transform: rotate(10deg);
}

.home-page .s-video {
    min-height: 800px;
    height: 1px;
    background-position: center;
    background-size: cover;
}

.home-page .prestation-item a.text-container .name {
    color: var(--color-dark);
    transition: .5s ease;
}
.home-page .prestation-item a.text-container:hover .name,
.home-page .prestation-item a.img-container:hover + a.text-container .name {
    color: var(--color-primary);
}

/* homepage END */


.small-dot {
    font-size: 8px;
}


/** homepage home-page **/

.home-page .prestation-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}
@media screen and (min-width: 400px){
    .home-page .prestation-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }
}
@media screen and (min-width: 992px){
    .home-page .prestation-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 2rem;
        grid-row-gap: 2rem;
    }
    /*

    .home-page .prestation-grid .prestation-item .img-container img {
        filter: grayscale(1);
        transition: all ease .5s;
    }
    .home-page .prestation-grid .prestation-item .img-container:hover img {
        filter: grayscale(0);
    }*/
}

.home-page .prestation-grid .prestation-item .img-container .overlay {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 94%;
    height: 94%;
    border: 3px solid var(--white);
}

.home-page .prestation-grid .red-arrow {
    width: 25px;
}

.home-page .s-actu .text-container {
    max-width: 300px;
    padding: 0 1rem;
    margin-top: 7rem;
}

/*@media screen and (min-width: 568px) {
    .home-page .s-actu .text-wrapper {
        margin-bottom: 5.5rem;
    }
}*/
@media screen and (min-width: 576px) {
    .home-page .s-actu .text-container {
        margin-left: -6rem;
        max-width: 400px;
    }
}
@media screen and (min-width: 992px) {
    .home-page .s-actu .text-container {
        margin-left: 0;
        margin-top: 0;
    }
    .home-page .s-actu .text-wrapper {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .s-actu .custom-container-fluid {
        max-width: 992px;
    }
}
@media screen and (max-width: 1200px) {
    .s-actu .custom-container-fluid {
        max-width: 1200px;
    }
}

@media screen and (min-width: 992px){
    .home-page .s-actu .text-container .title {
        transform: translateX(125%) translateY(-75%);
        color: var(--white);
    }
}

    /** homepage home-page END **/





header .picto.picto-red,
footer .picto.picto-red {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
header .picto:hover.picto-red,
footer .picto:hover.picto-red {
    opacity: 1;
}
header .picto:hover.picto-black,
header .picto:hover.picto-white,
footer .picto:hover.picto-black,
footer .picto:hover.picto-white {
    opacity: 0;
}
header .socials-container a,
footer .socials-container a {
    position: relative;
}

.contact-page label.required:after {
    content: '*';
    color: red;
}

header .bloc-note-menu {
    position: absolute;
    max-width: 400px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.arrow_carnet{
    background-image: url("../img/picto/arrow.svg");
    min-width: 20px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    margin-top: 5px;
}

.bg-banner-portrait{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 500px;
}
.single-blog-page section a:not(.gallery_img){
    text-decoration: underline;
    text-decoration-color:var(--color-primary);
    font-weight: bold;
}

.single-blog-page section p:last-of-type{
    margin-bottom: 0;
}
@media  screen and (max-width:992px) {
  section.s-about{
    padding-bottom: 7em!important;
}
}

.gesret-top-padding {
        padding-top: 6rem;
    }

@media screen and (min-width: 992px) {
    .gesret-top-padding {
        padding-top: 10rem;
    }
}

 