*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}



/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}





body {
    line-height: 1.75;
    font-size: 14px;
    font-family: "Arial", sans-serif;
    color: #474749;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    line-height: normal;
    font-family: "Arial Narrow", Arial, sans-serif;
    color: #121212;
    margin: 0 0 30px;
}
h1, .h1 {
  font-size: 3rem;    
}

h2, .h2 {
  font-size: 2.5rem;     /* 32px */ 
}

h3, .h3 {
  font-size: 2rem;  /* 28px */ 
}

h4, .h4 {
  font-size: 1.75rem;   /* 24px */ 
}

h5, .h5 {
  font-size: 1.5rem;  /* 20px */ 
}

h6, .h6 {
  font-size: 1.25rem;     /* 16px */ 
}




a,
input[type="submit"],
input[type='submit'],
button {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

input,
button,
textarea {
    outline: none;
}

textarea {
    font-family: inherit;
    max-width: 100%;
}
section{
    padding: 100px 0;
    position: relative;
}
.Mobile section{
    padding: 50px 0;
    position: relative;
}

.icon{
    position: relative;
    padding: 12px;
}
.icon:before {
    content: "";    
    background-repeat: no-repeat!important;
    background-size: contain!important;
    background-position: center!important;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.icon-phone:before {
    background: url(../images/img/icon-fixe-mob.png);
}
.icon-mobile:before {
    background: url(../images/img/icon-portable-mob.png);
}
.icon-envelope:before,
.icon-mail:before {
  background: url(../images/img/icon-mail.png);
}
.icon-location:before {
  background: url(../images/img/icon-locali.png);
}
.icon-map:before,
.icon-map-marker:before, .adr:before {
  background: url(../images/img/icon-adresse.png);
}
.icon-clock-o:before, .hor:before {
  background: url(../images/img/icon-hor.png);
}
.icon-devis:before {
  background: url(../images/img/icon-devis.png);
}
.icon-pdf:before {
  background: url(../images/img/icon-pdf-download.png);
}




.arrow-up-right-long:before {
    background: url(../images/img/arrow-up-right-long.png);
}


.container{
    padding: 0 20px;
    width: 100%;
    margin: auto;
    max-width: 1320px;
    display: block;
}
.Tablet .container {
    max-width: 720px ;
}
.Mobile .container {
    max-width: 100% ;
}

.bg-black{
    background: #000;
}
.bg-grey{
    background: #f4f4f4;
}
.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5, 
.bg-black p,
.bg-black li{
    color: #fff;
}



.grid-col-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    align-items: center;
}
.grid-col-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.grid-col-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
} 
.grid-col-5{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
} 
.gap-20{
    gap:20px;
}
.gap-30{
    gap:30px;
}
.gap-40{
    gap:40px;
}
.gap-50{
    gap:50px;
}
.gap-100{
    gap:100px;
}
.Tablet .grid-col-2  {
  grid-template-columns: 100%;
  gap: 50px;
}
.Mobile .grid-col-2{
    grid-template-columns: 100%;
    gap: 30px;
}

/*----------------------------------------------------Header----------------------------------------------------*/
header#header {
    position: absolute;
    width: 100%; 
    background: transparent;
    z-index: 1000;
}
.Tablet #header, .Mobile #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}
.Desktop header#header.sticky {
    position: fixed;
    background: #000;
    top: 0;
    width: 100%;
}
.logomenu {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 50px;
    align-items: start;
}
.Tablet .logomenu ,
.Mobile .logomenu {
  justify-content: space-between;
  align-items: center; 
  gap: 0;
}
.topLogo .logo img {
    width: 250px;
    height: 210px;
    object-fit: contain;
    display: block;
}
.top_info {
    width: 100%;
}
.Tablet .top_info, .Mobile .top_info {
  position: fixed;
  display: none;
  top: 209px;
  left: 0;
  width: 100%;
}
.top_contact {
    width: 100%;/*
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}
.top_contact .icon:before {
    filter: invert(1);
}
.top_contact a {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;    
    font-family: "Arial Narrow", Arial, sans-serif;
}
.top_contact_mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background: #000;
    padding: 5px;
}
.top_contact_mobile a {
  background: #f7ff09;
  padding: 12px;
  border-radius: 900px;
  font-weight: 600;
}
nav#menu {
    width: 100%;
}
.nav-mobile {
    cursor: pointer;
    background: #000000 url(../images/nav.svg) no-repeat 85% center;
    background-size: auto;
    background-size: 18px;
    height: 50px;
    width: 85px;
    padding-left: 9px;
    line-height: 50px;
    color: #fff;
    position: relative;
    z-index: 999;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-align: initial;
}
ul.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
}
.Mobile .nav-list,
.Tablet .nav-list {
  background: #000;
  flex-direction: column;
  gap: 0 !important;
  justify-content: center;
}
li.nav-item {
    list-style: none;
}
.Mobile li.nav-item,
.Tablet li.nav-item {
    list-style: none;
    width: 100%;
    text-align: center;
}
li.nav-item a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;    
    font-family: "Arial Narrow", Arial, sans-serif;
    text-transform: uppercase;
}
.Mobile li.nav-item a,
.Tablet li.nav-item a {
    padding: 12px;
    display: block;
    width: 100%;
}
li.nav-item a:hover,
li.nav-item.active a {
    color: #f7ff09; 
}
.top_navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; 
}
.btn_top {
    display: flex;
    align-items: center;
}
a.btn-style-1 {
    background: #f7ff09;
    font-size: 18px;
    text-transform: uppercase;
    padding: 20px;
    color: #000;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-weight: 600;
}
.homeslider {
    width: 100%;
    height: 900px;
    position: relative;
    display: block;
    overflow: hidden;
}
.Tablet .homeslider, 
.Mobile .homeslider{
    height: 600px;
}
.Tablet .homeslider,
.Mobile .homeslider {
  margin-top: 175px;
}
.imgFull {
    width: 100%;
    height: 900px;
    background-color: #808080;
    background-size: cover;
    background-blend-mode: multiply;
}
.Tablet .imgFull, 
.Mobile .imgFull{
    height: 600px;
}

.title-slider,
.title-slider-ville::first-line { 
    line-height: normal;
    font-size: 72px; 
    color: #ffffff;
    font-weight: 600; 
    font-style: normal;

} 
.title-slider-ville {  
    font-size: 50px;
    font-style: italic;
    color:#a0410d;
    font-weight: 500;
}
.Mobile .title-slider, 
.Mobile .title-slider-ville,
.Mobile .title-slider-ville::first-line { 
    font-size: 44px; 
}
.caption {
    position: absolute;
    animation: 2;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.Tablet .caption-content.grid-col-2 {
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.btn-slider {
    display: flex;
    gap: 25px;
    align-items: center;
}
.Mobile .btn-slider,
.Tablet .btn-slider {
    gap: 10px;
    justify-content: center;
}
.btn-style-2 {
    background: #f7ff09;
    padding: 15px 25px;
    border-radius: 900px;
    border: none;
    border-bottom: solid 3px #444601;
    font-size: 18px;
    font-family: "Arial Narrow", Arial, sans-serif;
    color: #000;
    font-weight: 600;
    outline: none;
}
.btn-style-2:hover{
    color: #f7ff09;
    background: #000;
    border-color: #f7ff09;
}
.planning-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.planning-btn img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.Mobile .planning-btn img,
.Tablet .planning-btn img {
    width: 100px;
    height: 100px;
}
.planning-btn a:hover img {
    transform: scale(0.9) rotate(-5deg);
}



.clipp1 {
    background: #fff;
    clip-path: polygon(0% 67%, 54% 56%, 56% 63%, 100% 53%, 100% 100%, 0% 100%);
    transform: translateY(3px); 
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 250px;
    background: #fff;
}
.Mobile .clipp1,
.Tablet .clipp1{
    height: 100px;
}
.clipp2 {
    background: #fff;
    transform: translateY(-3px);
    clip-path: polygon(0 0, 100% 0, 100% 5%, 80% 8%, 73% 4%, 45% 6%);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
} 
.Tablet .clipp2,
.Mobile .clipp2 {
    height: 20%;
}


/*----------------------------------------------------Contenu----------------------------------------------------*/

.contenu ul li,
footer ul.autre li,
footer ul.disciplines li {
    list-style: none;
    padding-left: 15px;
    position: relative; 
}
.contenu ul li:before,
footer ul.autre li:before,
footer ul.disciplines li:before {
    content: "•";
    position: absolute;
    left: 0;
}
main.contenu p{
    text-align: justify;
}

section.enganement .h2 {
    font-size: 42px;
    text-align: center;
    margin: 0 0 30px;
    font-weight: 600;
}
.eng-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-content: center;
}
.Desktop .eng-list {
    max-width: 85%;
    margin: auto;
}
.Tablet .eng-list { 
  grid-template-columns: repeat(2, 1fr); 
}
.Mobile .eng-list { 
  grid-template-columns: repeat(1, 1fr); 
}
.eng-img {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}
.eng-img img {
    width: 125px;
    height: 125px;
    filter: invert(1);
    border: 1px solid #fff;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
}
.eng-txt {
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 5px;
    margin-top: -60px;
    overflow: hidden;
    position: relative;
}
.eng-txt p {
    text-align: center;
}
.eng-txt > div {
    background: #000; 
    border-radius: 20px;
    padding: 20px;
    padding-top: 60px;
    color: #fff;
}
.eng-txt .h4 {
    color: #fff;
    text-align: center;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.eng-txt > div {
    background: #000;
    border-radius: 20px;
    padding: 20px;
    padding-top: 60px;
    color: #fff;
    text-align: center;
}
.eng-txt em { 
    display: block;
    font-size: 30px;
}
.boxe{
    position: relative;
    overflow: hidden;
}
.boxe:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 3;
    pointer-events: none;
    width: 0px;
    height: 0px;
    bottom: 0;
    right: 0;
    background: url(../images/img/boxe2.webp) no-repeat left top;
    transition: all .15s 0ms cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.eng-item:hover .boxe:before,
.boxe:hover::before {
    width: 75px;
    height: 95px;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.eng-item:hover em{
    color: #f7ff09;
}
.eng-item:hover {
    transform: rotate(-10deg) scale(.9);
}
.eng-item:hover .eng-txt {
    background: #f7ff09;
}
.fd6 {
background-image: url(../images/img/patern.svg);
}
 
 
.btn-contenu {
    display: flex;
    margin: 30px 0 0;
}
.s1-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.s1-img img{
    width: 500px;
    height: 500px;
    object-fit: cover;
    border: 10px solid #fff;
    display: block;
}
.Tablet .s1-img img {
  width: 100%;
  height: 350px;  
  object-position: top;
}
.Mobile .s1-img img {
  width: 100%;
  height: 250px;   
}
section.section1{
    position: relative;
}  

section.categorie .h2 {
    text-align: center;  
}
.categorie-item {
    border: 1px solid #000;
    padding: 5px;
    background: #fff;
    height: 100%;
    top: 0;
    transition: all .3s ease;
}
.categorie-item.active {
    background: #f7ff09;
}
 
.Mobile section.categorie .grid-col-3{
    grid-template-columns: repeat(2, 1fr);
}
.cat_img img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    background: #eee;
}
.Tablet .cat_img img { 
  height: 200px; 
} 
.Mobile .cat_img img { 
  height: 150px; 
}
.cat_titre {
    background: #fff;
    padding: 30px 0 50px;
}
.Tablet .cat_titre,
.Mobile .cat_titre{
    padding: 20px 0;
}
.cat_titre a {
    font-size: 20px;
    text-align: center;
    display: block; 
    text-transform: uppercase;
    font-weight: 600;
    color: #121212;
}
.Tablet .cat_titre a,
.Mobile .cat_titre a {
    font-size: 14px; 
}
.categorie-item:hover{
    position: relative;
    top: 5px;
    background: #f7ff09;
}
 
.contenu ul {
    margin: 0 0 30px;
}
.s2-txt ul li {
    list-style: none;
    padding-left: 15px;
    position: relative;
    color: #fff;
}
.s2-txt ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}
 
.s2-img {
    padding: 10px 0 0 10px;
    display: block;
}
.s2-img figure{
    position: relative;
    width: fit-content;
}  
.s2-img figure:before{
    content: "";
    width: 160px;
    height: 160px;
    top: -10px;
    left: -10px;
    background: #f7ff09;
    display: block;
    position: absolute;
    z-index: 0;
}
.s2-img figure:after {
    content: "";
    width: 160px;
    height: 160px;
    bottom: -25px;
    right: -25px;
    background: #f7ff09;
    display: block;
    position: absolute;
    z-index: 0;
}
.s2-img img {
    width: 470px;
    height: 560px;
    object-fit: cover;
    display: block;
    background: #eee;
    position: relative;
    z-index: 1;
} 

.s3-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.s3-img figure{
    padding: 5px;
    border: 1px solid #000;
} 
.s3-img figure img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    display: block;
    background: #eee;
} 
section.section4 {
    background-size: cover;
    background-color: #888;
    background-blend-mode: multiply;
    background-attachment: fixed;
}


/*----------------------------------------------------RS----------------------------------------------------*/


.block-rs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
} 
.block-rs a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all .3s ease;
}
.block-rs a:hover img { 
    filter: drop-shadow(1px 1px 3px black);
} 

/*----------------------------------------------------Footer----------------------------------------------------*/

a.logo {
    display: block;
    text-align: center;
}
.footer-logo a.logo img {
    width: 250px;
    height: 210px;
    object-fit: contain; 
}

.footer-content {
    padding: 50px 0;
}
.footer-col .h5 {
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: self-start;
}
.Tablet .footer-grid { 
  grid-template-columns: repeat(3, 1fr); 
}
.Tablet .footer-col:first-child {
  grid-column: span 3;
}
.Mobile .footer-grid { 
  grid-template-columns: 100%; 
  gap: 30px;
}
.footer-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Arial Narrow", Arial, sans-serif;
    margin: 0 0 20px;
}
.block-rs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 30px 0 0;
}

.footer-col li {
    display: block;
    margin: 0 0 15px;
}
.footer-col li a,
.footer-col li p {
    display: flex;
    align-items: center;
    gap: 10px;
} 
.copyright {
    background: #000;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}
.copyright a {
    text-decoration: underline;
    color: #f7ff09;
}
.Mobile .copyright a { 
    display: block;
    margin: 15px 0 0;
}

/*----------------------------------------------------prestation----------------------------------------------------*/

.presta-1-txt {
    padding: 100px;
}
.Mobile .presta-1-txt {
    padding: 20px;
}
.presta-1-img {
    background-color: #eee;
    background-size: cover;
    background-position: bottom left;
    width: 100%;
    height: 100%;
}

section.presta-2 .grid-col-2 {
    align-items: self-start;
}


.presta-2-col {
    border: 1px solid #000;
    padding: 5px;
}
.presta-2-col img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    background: #eee;
}
.presta-2-txt {
    background: #fff;
    padding: 40px;
}
.Mobile .presta-2-txt { 
    padding: 20px;
}
/*----------------------------------------------------Planning----------------------------------------------------*/

ul.planning-list li {
    list-style: none;
    font-size: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px;
    justify-content: center;
}
.Mobile ul.planning-list li { 
    font-size: 14px; 
}
.planning-content li:before{
    display: none;
}
li.planning-titre {
    background: #000;
    color: #f7ff09;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Arial Narrow", Arial, sans-serif;
}
.sp-title {
    margin: 0 0 30px;
    text-align: center;
}
.sp-title p {
    font-size: 20px;
   text-align: center!important;
}   
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
ul.nav.nav-tabs {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
}
ul.nav.nav-tabs li{
    list-style: none;
}
.Mobile ul.nav.nav-tabs li { 
    padding: 0;
}
ul.nav.nav-tabs li button {
    padding: 12px 20px;
    font-size: 18px;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    border-radius: 900px;
}
ul.nav.nav-tabs li button.active {
    color: #f7ff09;
    background: #000;
    border-color: #f7ff09;
}
li.planning-item {
    background: #fff;
    border-top: 2px solid #eee;
}
section.section-planning .btn-contenu,
section.coach .btn-contenu  {
    justify-content: center;
}


/*----------------------------------------------------Nos coach----------------------------------------------------*/

.coach-title {
    text-align: center;
    margin: 0 0 30px;
}
.coach-item {
    display: grid;
    grid-template-columns: 40% 60%;
    padding: 5px;
    border: 1px solid #000;
    height: 100%;
}
.Mobile .coach-item { 
    grid-template-columns: 100%; 
}
.coach-txt {
    padding: 30px;
    background: #fff;
    line-height: 1.5;
    font-size: 13px;
    text-align: justify;
}
.coach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee;
    display: block;
}  
.Mobile .coach-img img { 
    height: 350px; 
}
.coach-title p {
    font-size: 20px;
    text-align: center!important;
}


/*----------------------------------------------------Contact----------------------------------------------------*/

.contact-grid {
    display: grid;
    grid-template-columns: 33.33% 66.66%;
    align-items: center;
    justify-content: center;
}
.Tablet .contact-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-content: center;
}
.Tablet .contact-grid,
.Mobile .contact-grid { 
  grid-template-columns: 100%; 
  gap: 30px;
}
form#FormDevis .input-form,
#avis_form .input-form {
    background: #f2f2f2;

}
.Tablet .contact-grid #Map {
  height: 250px; 
}
textarea.input-form {
    min-height: 150px;
}
form#FormDevis .btn-devis-gratuit, .btn-temoignages .btn-devis-gratuit {
    width: fit-content;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.col-formulaire .h3 {
    margin: 0 0 30px;
}
.col-formulaire p {
    font-size: 20px;
    margin: 0 0 30px;
}
.col-formulaire b { 
    margin: 30px 0;
    display: block;
}
#Map {
    height: 600px;
    width: 100%;
    display: block;
    border-radius: 0;
    overflow: hidden;
    z-index: 0;
}
.Mobile #Map {
    height: 250px; 
}
.contact-adr p {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}

.col-formulaire {
    padding-left: 100px;
}
.Tablet .col-formulaire,
.Mobile .col-formulaire {
  padding-left: 0;
}
.coordonne_cont {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.Tablet .coordonne_cont,
.Mobile .coordonne_cont { 
  gap: 20px; 
  justify-content: center;
}
.coordonne_cont a {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
#mail2,
#mail {
    display: none;
}
.input-form {
    padding: 12px;
    width: 100%;
    height: 60px; 
    outline: none;
    border: none;
    margin: 0 0 10px;
} 
section.Block-contact .col-map {
    border: 1px solid #000;
    padding: 5px;
}


/*----------------------------------------------------Inscription----------------------------------------------------*/
  
.document-item {
    padding: 15px;
    border-top: 2px solid #fff;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.Mobile .document-item { 
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.document-item span {
    font-size: 16px;
    font-weight: 600;
}
.document-item i.icon.icon-pdf {
    line-height: 0;
    background: #f7ff09;
    height: 30px;
    width: 30px;
    display: block;
    border-radius: 50%;
}
.document-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #000;
    color: #fff;
    padding: 5px;
    border-radius: 900px;
    font-weight: 600;
}



/*----------------------------------------------------------
MENTIONS
---------------------------------------------------------*/
.mentions h2 {
    padding: 20px 0;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}
.mentions ol {
    max-width: 100%;
    width: 80%;
    margin: auto;
    padding: 0 0 30px;
}
body.Mobile.mentions ol {
    width: 100%; 
    padding:0 20px 20px;
}
.mentions h3 {
    font-size: 20px; 
    font-weight: 600;
}
.mentions ol li {
    margin: 0 0 30px;
}


div#realisations .container-box > .row {
    display: flex;
    flex-wrap: wrap;
}
div#realisations .container-box > .row > div {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
}
.Tablet #realisations .container-box > .row > div {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%; 
}
.Mobile #realisations .container-box > .row > div {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%; 
}
.swipebox img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}
.titre-album {
  clear: both;
  display: block;
  font-size: 32px;  
  margin: 20px 0;
  width: 100%;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
a.swipebox.thumbnail {
    border: 1px solid #000;
    display: block;
    padding: 5px;
    position: relative;
}
a.swipebox div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #00000087;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.Tablet figure,
.Mobile figure{
    width: 100%;
}
.Tablet figure img{
    width: 100%;
    height: 350px;
    object-position: top;
}
.Mobile figure img {
    width: 100%;
    height: 250px;
    object-position: top;
}
.Mobile .formulaire .grid-col-2 {
    gap: 0;
}




/*----------------------------------------------------temoignage----------------------------------------------------*/

section.block-temoignage {
    background: #f4f4f4;
}/*
#temoignages {
    background-color: #fff;
    padding: 4em 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 25px;  
    position: relative;
    background-size: cover;
}*/

.Mobile #temoignages {
    padding: 3em 1rem;
} 
#temoignages > div {
    position: relative;
    z-index: 1;
}

#temoignages b {
    font-size: 30px;
    text-transform: uppercase;
    display: block;
    line-height: 130%;
    color: var(--black);
    font-weight: normal;
}

.Mobile #temoignages b {
  font-size: 28px
}
#temoignages b::after {
  content: "";
  display: block;
  margin: 2rem auto;
  border-bottom: 3px solid var(--colorP);
  width: 70px;
}

#temoignages span {
    color: #fff;
}
.temoin span {
  color: #000;
}

#temoignages p {
  font-size: 18px;
  text-align: center;
  font-style: italic;
}

.temoin {
    background: #fff;
    color: #333;
    padding: 80px 0;
}
.Mobile .temoin, .Tablet .temoin {
    padding: 20px 0;
}
.Desktop .temoin .grid-row {
    display: grid;
    grid-template-columns: 60% auto;
    grid-gap: 20px;
}
.col-right {
    border: 1px solid #000;
    padding: 5px;
    border-radius: 0;
}
section.temoin .blockFormulaire {
    padding: 20px;
    background: #000;
}
.Desktop .col-right {
    margin-left: 1rem;
}
.temoin .item-tem {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    margin-bottom: 1rem;
}
h1.Titrecontenu {
    font-size: 36px;
    margin-bottom: 2rem;
}
#avis_form {
    margin-top: 15px;
}

#avis_form label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
}
#MonAvis span {
    font-size: 18px;
    color: #ffffff;
    display: block;
}
.item-tem .avis {
  display:inline-block;
  vertical-align: top;
}
.btn-temoin {
    border: none;
    background: #000; 
    cursor: pointer;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 6px auto 5px;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 11px 30px;
    font-size: 14px;
    font-weight: 600;
}
.btn-temoin:hover{
    background: #333;
    color: #fff;
}
.slide-temoignage {
    margin: 20px 0 30px;
}
.Tablet .slide-temoignage {
  margin: 0;
}
.avis a {
  width:10%;
  float:left;
  height:100%;

}
.avis > i {
  background: url('../images/img/rating-sprit.webp') no-repeat;
  display: inline-block;
  height: 23px;
  width: 120px;
  margin-right: 15px;
}
.avis-0 {
  background-position: 0 0 !important;
}
.avis-1 {
  background-position: 0 -25px !important;
}
.avis-2 {
  background-position: 0 -50px !important;
}
.avis-3 {
  background-position: 0 -75px !important;
}
.avis-4 {
  background-position: 0 -100px !important;
}
.avis-5 {
  background-position: 0 -125px !important;
}
.avis-6 {
  background-position: 0 -150px !important;
}
.avis-7 {
  background-position: 0 -175px !important;
}
.avis-8 {
  background-position: 0 -200px !important;
}
.avis-9 {
  background-position: 0 -225px !important;
}
.avis-10 {
  background-position: 0 -250px !important;
}
.col-temoignage .item-tem .avis {
    margin: 0 0 30px;
}

#temoignages a.btn-rea {
    margin-top: 1rem;
    padding: 7px 35px;
}
.item-tem img {
    margin: 0;
    width: 50px;
    height: 50px;
}
img.google {
    width: 60px;
    height: 25px;
    object-fit: contain;
}
.avis-nom {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slide-temoignage .avis-nom {
    justify-content: center;
}
.temoignages .col-left .avis > i {
    background: url(../images/img/rating-sprit.png) no-repeat;
    height: 9px;
    width: 50px;
    margin: 0;
}
.temoignages .col-left .avis-0 {
  background-position: 0 0 !important;
}
.temoignages .col-left .avis-1 {
  background-position: 0 -11px !important;
}
.temoignages .col-left .avis-2 {
  background-position: 0 -22px !important;
}
.temoignages .col-left .avis-3 {
  background-position: 0 -32px !important;
}
.temoignages .col-left .avis-4 {
  background-position: 0 -43px !important;
}
.temoignages .col-left .avis-5 {
  background-position: 0 -53px !important;
}
.temoignages .col-left .avis-6 {
  background-position: 0 -65px !important;
}
.temoignages .col-left .avis-7 {
  background-position: 0 -75px !important;
}
.temoignages .col-left .avis-8 {
  background-position: 0 -85px !important;
}
.temoignages .col-left .avis-9 {
  background-position: 0 -95px !important;
}
.temoignages .col-left .avis-10 {
  background-position: 0 -105px !important;
}

.avis-t {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-temoignage .avis-t {
    justify-content: center;
    margin: 10px 0 5px;
}
.Mobile .slide-temoignage .avis-t {
    flex-wrap: wrap;
    gap: 0;
}
.temoignages .col-left img.google {
    width: 36px;
    height: 15px;
    object-fit: contain;
}

.Tablet .col-temoignage:first-child {
  grid-column: span 2;
}
.client {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 30px;
}
.client img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.client span {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}
 
.temoignage-txt .h1 {
    color: #121212; 
    font-weight: 400  ;
    font-size: 50px ;
    line-height: 62.5px;
    margin: 0 0 20px;
}
.Mobile .temoignage-txt .h1 { 
    font-size: 22px;
    line-height: normal; 
}
.temoignage-txt div#MonAvis {
    margin: 0 0 20px;
}
.temoignage-txt p {
    font-size: 20px;
    line-height: 2;
}
.grid-temoignage {
    display: grid;
    justify-content: center;
    grid-template-columns: 50% 25% 25%;
    background: #f2f2f2;
    /* padding: 40px 30px; */
    border-radius: 30px;
}
.Tablet .grid-temoignage { 
  grid-template-columns: 50% 50%; 
}
.Mobile .grid-temoignage { 
  grid-template-columns: 100%; 
}
.temoignage-txt {
    padding: 30px 0;
}
.Mobile .temoignage-txt {
    padding: 0;
}
.slide-temoignage .item-tem {
    background: #fff;
    padding: 20px;
    border-radius: 30px; 
}
.btn-temoignages {
    display: flex;
    align-items: end;
    height: 100%;
    width: 100%;
    position: relative;
    justify-content: end;
} 


.block-temoignage .slick-slide { 
  padding: 5px;
}

/*------------------------------------------------------------------------- 
404 style 
-------------------------------------------------------------------------*/

.blog_pageIntrouvable {
    background: #000000;
    position: fixed;
    height: 100%;
    width: 100%;
    font-size: 18px;
    z-index: 10000 !important;
    text-align: center;
    top: 0;
    left: 0;
}
.blog_pageIntrouvable .d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.blog_pageIntrouvable span {
  color: #fff;
}

.blog_pageIntrouvable > div {
  height: 100%;
  color: #fff;
}
.blog_pageIntrouvable .h1 {
    font-size: 200px;
    color: #f7ff09;
    font-weight: 600;
}
.blog_pageIntrouvable p {
    font-size: 36px;
    line-height: 100%;
    margin-top: -21px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
}
.blog_pageIntrouvable a {
    color: #f7ff09;
}
.blog_pageIntrouvable a:hover {
    text-decoration: underline;
}
#noDesktop { display: none; }
.Mobile .blog_pageIntrouvable {
    font-size: 14px;
  }
  .Mobile .blog_pageIntrouvable a {
      display: block;
  }
  .Mobile .blog_pageIntrouvable p {
      font-size: 17px;
      letter-spacing: 5px;
      margin-top: -10px;
  }
  .Mobile .blog_pageIntrouvable h1 {
    font-size: 100px;
  }

  /*----------------------------------------------------------------------------------- 
MESSAGES 
-----------------------------------------------------------------------------------*/

div#Messages {
    text-align: center;
    background-color: #000;    
    padding: 10px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
}

div#Messages p {
    margin: 0;
    color: #fff;     
    font-size: 20px;
}
.Tablet div#Messages p,
.Mobile div#Messages p {
    font-size:14px;
}
section.block-rappel {
    background: #000;
}
.block-rappel {
  padding: 50px 0;
}
.block-rappel-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.Tablet .block-rappel-flex{
    justify-content: center;
}
#rappel_immediat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.Tablet #rappel_immediat,
.Mobile #rappel_immediat{
    justify-content: center;
}
.block-rappel-formulaire .input-form,
.block-rappel-formulaire .btn-style-2 {
    height: 60px;
    width: 200px;
    border-radius: 900px;
    margin: 0;
}
.block-rappel-title {
    color: #fff;
    font-size: 32px;
}
.Tablet .block-rappel-title,
.Mobile .block-rappel-title { 
    font-size: 24px;
    margin: 0 0 20px;
    text-align: center;
}
.Mobile .topLogo .logo img, .Tablet .topLogo .logo img, .Mobile .footer-logo a.logo img, .Tablet .footer-logo a.logo img {
    width: 200px;
    height: 150px;
}
.scroll-arrow{
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    padding: 10px;
    border-radius: 9999px;
    background: rgb(247 255 9 / 62%);
    color: #000000;
    backdrop-filter: blur(4px);
    animation: bounce 1.6s infinite;
    z-index: 9999;
    text-decoration: none;
}
.scroll-arrow:focus { 
    outline: 2px solid #fff; 
    outline-offset: 3px; 
}

@keyframes bounce{
  0%,20%,50%,80%,100%{ transform:translateX(-50%) translateY(0); }
  40%{ transform:translateX(-50%) translateY(-6px); }
  60%{ transform:translateX(-50%) translateY(-3px); }
}

.page-formulaire {
    padding: 60px 0;
}
.Desktop .page-formulaire {
    font-size: 16px;
}
.page-f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 40px 20px;
}
.Mobile .page-f {
    grid-template-columns: 100%;
}
.page-f div {
    background: #ffffff;
    border: 1px solid #000;
    border-radius: 20px;
    padding: 60px 20px 20px 20px;
}
.titre-formulaire {
    display: block;
    margin: 20px auto 40px;
    text-align: center;
    font-size: 32px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    max-width: 80%;
}
.Mobile .titre-formulaire {
    font-size: 22px;
    max-width: 100%;
}
.page-f h1 {
    font-size: 28px;
}
.page-f h2 {
    font-size: 26px;
}

.table-container {
  overflow-x: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
}

table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}

th, td {
  border: 1px solid #cfd8dc;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}
tbody {
    font-weight: 600;
    color: #000;
}
th {
  background-color: #3f83f8;
  color: #fff;
  text-align: center;
}
.Desktop th,
.Desktop .category {
  font-size: 18px;
}
tr:nth-child(even) {
  background-color: #f1f5f9;
}

.category {
    background-color: #3f83f8;
    color: #fff;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
}

.important {
    color: #ff0000;
  font-weight: bold;
}
.tableau-f {
    margin-top: 60px;
}


.diplome {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-wrap: wrap;
    gap: 5px;
}
.diplome img {
    max-width: 33.33%;
    height: 140px;
    object-fit: contain;
    cursor: pointer;
}
.Mobile .diplome img {
    max-width: 100%;
}
.Mobile .diplome {
    flex-wrap: wrap;
    gap: 10px;
}
.caption-s {
    padding-top: 30px;
}
section.enganement {
    padding: 50px 0;
}

.overlay {
  background: rgb(45 61 66 / 20%);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  z-index: 9999 !important;
}
.overlay.is-on {
  opacity: 1;
  visibility: visible;
}
.overlay.is-on .content {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay .content {
  background: #fff;
  position: absolute;
  top: -50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: 68%;
  padding: 7px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.overlay .content img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.close {
  position: absolute;
    right: 20px;
    top: 20px;
    font-size: 25px;
    /*color: white;*/
    cursor: pointer;
    z-index: 80;
    font-weight: bold;
}
section.coach.bg-grey .grid-col-2.gap-50 {
    align-items: flex-start;
}
.Mobile .overlay .content {
    width: 100%; 
    height: max-content;
}
.Mobile .s2-img figure:after {
    right: -10px;
}