
/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  LOGO
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
.gtm-logo {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 200px;
  z-index: 10;
  background-color: #fff;
  border-bottom-right-radius: 30px;
  transform-origin: top left;
  transition: transform .2s ease-in-out;
}

body.scrolled .gtm-logo {
  transform: scale(.7);
}

.gtm-logo img {
  padding: 15px 30px 0px 15px;
  
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  HERO
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */


.background-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  border-radius: 5vw;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.background-video-content {
  position: relative;
  z-index: 1;
}

video[poster] {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gtm-bouton-accueil {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.gtm-container-hero {
  min-height: 100%;
  background: url(/images/background-hero-dark.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 60px;
  padding-bottom: 50px;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .gtm-container-hero {
  padding-bottom: 110px;
}
}

.gtm-hero-content .gtm-custom {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #5EC3EF;
  border-radius: 5vw;
  max-width: 1200px;
  margin: auto;
  width: calc(100% - 15vw);
  min-height: 580px;
  padding: 40px 20px;
}

.gtm-accueil video {
    display: none;
}

.gtm-accueil  {
  position: relative;
}

.gtm-accueil .gtm-custom {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.gtm-img-hero {
  margin-bottom: 60px;
  padding: 30px;
}

.gtm-wrap-img {
  position: relative;
}

.gtm-wrap-img::before {
  content: url(/images/forme-jaune-hero.svg);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  transform-origin: center;
  transform: scale(1.08);
}

/* .gtm-wrap-img::after {
  content: url(/images/forme-jaune-bottom-img.svg);
  position: absolute;
  bottom: -20px;
  right: 35px;
  width: 200px;
  height: auto;
} */

.gtm-img-hero img {
  -webkit-mask-image: url(/images/forme-img-hero.svg);
  mask-image: url(/images/forme-img-hero.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-hero-content .gtm-custom::before {
  content: url(/images/personnage-blanc-v2.svg);
  position: absolute;
  bottom: 0px;
  right: 60px;
  width: 100%;
  max-width: 100px;
  line-height: 0;
  z-index: 2;
}

.gtm-hero-content .gtm-custom .gtm-box-hero-content {
  max-width: 100%;
  margin: 0 auto 0 auto;
}

.gtm-hero-content .gtm-custom h1 {
  color: #fff;
  font-weight: bold;
}


.gtm-wrap-img {
  position: relative;
}


@media screen and (min-width: 768px) {
  .gtm-img-hero {
    position: absolute;
    bottom: -80px;
    left: -50px;
  }

  .gtm-img-hero img {
    max-width: 350px;
    -webkit-mask-image: url(/images/forme-img-hero.svg);
    mask-image: url(/images/forme-img-hero.svg);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .gtm-wrap-img {
    transform: translateY(80px);
  }

  .gtm-hero-content .gtm-custom::before {
    max-width: 160px;
  }
}



@media screen and (min-width: 1200px) {
  .gtm-hero-content .gtm-custom .gtm-box-hero-content {
    margin: auto 160px auto auto;
    padding-left: 60px;
  }

  .gtm-hero-content .gtm-custom::before {
    right: 100px;
    max-width: 200px;
  }

  .gtm-img-hero img {
    left: -80px;
    width: clamp(200px, 30vw, 1000px);
    max-width: 400px;
  }

  .gtm-hero-content .gtm-custom::before {
    max-width: 160px;
  }
}

@media screen and (min-width: 1440px) {
  .gtm-hero-content .gtm-custom .gtm-box-hero-content {
    margin: auto auto auto 28vw;
  }
  
  .gtm-hero-content .gtm-custom::before {
    right: 100px;
    max-width: 200px;
  }
}

@media screen and (min-width: 1200px) {
  .gtm-text-right {
    text-align: right;
  }
}


.gtm-hero {
  position: relative;
}


.boite {
display: -webkit-box;

display: -ms-flexbox;

display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
width: 100%;
position: absolute;
left: 0;
z-index: 1;
height: 120px;
bottom: 0px;
transform: translateY(50%);
overflow-x: hidden;
}

.baseline {
white-space: nowrap;
font-size: 30px;
-webkit-animation: scrollBaseline 15s linear infinite;
        animation: scrollBaseline 15s linear infinite;
}

@media screen and (min-width: 768px) {
.boite {
height: 150px;

}

.baseline {
font-size: 90px;
}
}

@-webkit-keyframes scrollBaseline {
0% {
-webkit-transform: translate(0, 0);
        transform: translate(0, 0);
color: #29285b;
}

100% {
-webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
color: #ffd909;
}
}

@keyframes scrollBaseline {
0% {
-webkit-transform: translate(0, 0);
        transform: translate(0, 0);
color: #29285b;
}

100% {
-webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
color: #29285b;
}
}

@media screen and (min-width: 1024px) {
.boite {
margin: auto;
height: 200px;
left: 0;
}

.baseline {
font-size: 100px;
}
}

@keyframes scrollBaseline {
0% {
-webkit-transform: translate(0, 0);
        transform: translate(0, 0);
color: #29285b;
}

100% {
-webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
color: #29285b;
}
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  Mission, vision et histoire
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-timeline {
  overflow: hidden;
}

.gtm-hero-mission h1 {
  font-size: clamp(2rem, 5vw, 6.5rem);
}

.gtm-histoire {
  max-width: 1200px;
  margin: auto;
}

.gtm-histoire .jux-tl-info {
  background-color: #5EC3EF;
}

.jux-tl-item.left .arrow {
  border-left-color: #ffd909;
}

.jux-tl-item.right .arrow {
  border-right-color: #ffd909;
}

.gtm-histoire .jux-tl-title a {
  color: #fff !important;
}

.gtm-histoire .jux-tl-desc {
  color: #fff;
}

.gtm-titre-histoire {
  margin-bottom: 40px !important;
}


/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  NOTRE EQUIPE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */


.gtm-form-dark input, .gtm-form-dark textarea {
  border: 2px solid #ef7d19 !important;
}


@media screen and (min-width:768px) {
  .gtm-form-dark {
    max-width: 80%;
    margin: auto;
  }
}



/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  NOTRE CLIENTELE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-wrap-01, .gtm-wrap-01-bis {
  position: relative;
}

.gtm-wrap-01::before, .gtm-wrap-01-bis::before {
  content: url(/images/wrap-forme-01.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.gtm-wrap-01 img {
  -webkit-mask-image: url(/images/wrap-01.svg);
  mask-image: url(/images/wrap-01.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: right;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-wrap-01-bis img {
  -webkit-mask-image: url(/images/wrap-01.svg);
  mask-image: url(/images/wrap-01.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-titre-center {
  text-align: center;
  max-width: 800px;
  margin: 0px auto;
  color: #29285b;
  font-size: clamp(1.7rem, 5vw, 3rem);
}

.wrap-size-70 {
  max-width: 70%;
  margin: auto;
}

.gtm-wrap-02 {
  position: relative;
}

.gtm-wrap-02::before {
  content: url(/images/wrap-forme-02.svg);
  position: absolute;
  top: -9%;
  left: 0;
  width: 100%;
  z-index: 1;
}

.gtm-wrap-02 img {
  -webkit-mask-image: url(/images/wrap-02.svg);
  mask-image: url(/images/wrap-02.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: right;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* ----------------------------- Accordéons ------------------------- */

.gtm-accordion {
  background-color: #5ec3ef !important;
}

.gtm-accordion h3 {
  color: #fff;
  font-weight: 700 !important;
  position: relative;
  padding-right: 60px !important;
}

.gtm-accordion h3::before {
  content: "";
  width: 15px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 7.5px;
  transform: translateY(-50%);
}

.gtm-accordion h3::after {
  content: "";
  width: 2px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  transition: opacity .3s ease-in-out;
}

.gtm-accordion[data-rlta-state="open"] h3::after{
  opacity: 0;
}

div[data-rlta-element="panel-content"] {
  background-color: #fff;
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  SERVICE DE STIMULATION
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-intro-stimulation h2 {
  text-align: center;
}

.gtm-intro-stimulation .gtm-double-btn {
  text-align: center;
}

.gtm-intro-stimulation h4 {
  text-align: center;
  max-width: 992px;
  padding: 30px;
  margin: auto;
}

/* ------------------------- Tableau -------------------------- */

.gtm-tableau-mini-groupe {
  padding-top: 40px;
  padding-bottom: 40px;
}

.gtm-tableau-mini-groupe.gtm-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(13, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.gtm-tableau-mini-groupe h3 {
  /* background-color: #29285b; */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #29285b;
  border: 1px solid #ffd909;
}

h6.gtm-titre-enfance, h6.gtm-titre-stimulation, h6.gtm-titre-mini, h6.gtm-titre-service {
  background-color: #ef7d19;
  color: #fff;
}

h6.gtm-titre-age,
h6.gtm-titre-besoin,
h6.gtm-titre-intensite,
h6.gtm-titre-age-2,
h6.gtm-titre-besoin-2,
h6.gtm-titre-intensite-2,
h6.gtm-titre-age-3,
h6.gtm-titre-besoin-3,
h6.gtm-titre-intensite-3, 
h6.gtm-titre-age-4,
h6.gtm-titre-besoin-4,
h6.gtm-titre-intensite-4 {
  background-color: #ffd909;
  margin: 0;
  padding: 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.gtm-tableau-mini-groupe h3,
.gtm-tableau-mini-groupe h6:not(h6.gtm-titre-age, h6.gtm-titre-besoin, h6.gtm-titre-intensite, h6.gtm-titre-age-2, h6.gtm-titre-besoin-2, h6.gtm-titre-intensite-2, h6.gtm-titre-age-3, h6.gtm-titre-besoin-3, h6.gtm-titre-intensite-3, h6.gtm-titre-age-4, h6.gtm-titre-besoin-4, h6.gtm-titre-intensite-4),
.gtm-tableau-mini-groupe p {
  margin: 0;
  padding: 10px;
  border: 1px solid #ffd909;
}

/* .gtm-tableau-mini-groupe h3 {
  border: 0px solid #ffd909;
} */

.gtm-tableau-mini-groupe h3,
.gtm-tableau-mini-groupe h6.gtm-titre-enfance,
.gtm-tableau-mini-groupe h6.gtm-titre-stimulation,
.gtm-tableau-mini-groupe h6.gtm-titre-mini,
.gtm-tableau-mini-groupe h6.gtm-titre-service,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-age,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-besoin,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-intensite,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-age-2,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-besoin-2,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-intensite-2,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-age-3,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-besoin-3,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-intensite-3, 
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-age-4,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-besoin-4,
.gtm-tableau-mini-groupe.gtm-mobile h6.gtm-titre-intensite-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.gtm-tableau-mini-groupe p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
  
.gtm-mobile .gtm-titre-tableau {
  grid-area: 1 / 1 / 2 / 4;
}
.gtm-mobile .gtm-titre-enfance {
  grid-area: 2 / 1 / 3 / 4;
}
.gtm-mobile .gtm-titre-age {
  grid-area: 3 / 1 / 4 / 2;
}
.gtm-mobile .gtm-titre-besoin {
  grid-area: 3 / 2 / 4 / 3;
}
.gtm-mobile .gtm-titre-intensite {
  grid-area: 3 / 3 / 4 / 4;
}
.gtm-mobile .gtm-text-age-exceptionnelle {
  grid-area: 4 / 1 / 5 / 2;
}
.gtm-mobile .gtm-text-besoin-exceptionnelle {
  grid-area: 4 / 2 / 5 / 3;
}
.gtm-mobile .gtm-text-intensite-exceptionnelle {
  grid-area: 4 / 3 / 5 / 4;
}

.gtm-mobile .gtm-titre-stimulation {
  grid-area: 5 / 1 / 6 / 4;
}
.gtm-mobile .gtm-titre-age-2 {
  grid-area: 6 / 1 / 7 / 2;
}
.gtm-mobile .gtm-titre-besoin-2 {
  grid-area: 6 / 2 / 7 / 3;
}
.gtm-mobile .gtm-titre-intensite-2 {
  grid-area: 6 / 3 / 7 / 4;
}
.gtm-mobile .gtm-text-age-stimulation {
  grid-area: 7 / 1 / 8 / 2;
}
.gtm-mobile .gtm-text-besoin-stimulation {
  grid-area: 7 / 2 / 8 / 3;
}
.gtm-mobile .gtm-text-intensite-stimulation {
  grid-area: 7 / 3 / 8 / 4;
}

.gtm-mobile .gtm-titre-mini {
  grid-area: 8 / 1 / 9 / 4;
}
.gtm-mobile .gtm-titre-age-3 {
  grid-area: 9 / 1 / 10 / 2;
}
.gtm-mobile .gtm-titre-besoin-3 {
  grid-area: 9 / 2 / 10 / 3;
}
.gtm-mobile .gtm-titre-intensite-3 {
  grid-area: 9 / 3 / 10 / 4;
}
.gtm-mobile .gtm-text-age-mini {
  grid-area: 10 / 1 / 11 / 2;
}
.gtm-mobile .gtm-text-besoin-mini {
  grid-area: 10 / 2 / 11 / 3;
}
.gtm-mobile .gtm-text-intensite-mini {
  grid-area: 10 / 3 / 11 / 4;
}

.gtm-mobile .gtm-titre-service {
  grid-area: 11 / 1 / 12 / 4;
}
.gtm-mobile .gtm-titre-age-4 {
  grid-area: 12 / 1 / 13 / 2;
}
.gtm-mobile .gtm-titre-besoin-4 {
  grid-area: 12 / 2 / 13 / 3;
}
.gtm-mobile .gtm-titre-intensite-4 {
  grid-area: 12 / 3 / 13 / 4;
}
.gtm-mobile .gtm-text-age-service {
  grid-area: 14 / 1 / 15 / 2;
}
.gtm-mobile .gtm-text-besoin-service {
  grid-area: 14 / 2 / 15 / 3;
}
.gtm-mobile .gtm-text-intensite-service {
  grid-area: 14 / 3 / 15 / 4;
}




.gtm-tableau-mini-groupe.gtm-desktop {
  display: none;
}

@media screen and (min-width: 768px) {

  .gtm-tableau-mini-groupe.gtm-mobile {
    display: none;
  }

  .gtm-tableau-mini-groupe.gtm-desktop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
    
  .gtm-desktop .gtm-titre-tableau { 
    grid-area: 1 / 1 / 2 / 6;
    display: flex;
  }
  
  .gtm-desktop .gtm-titre-age {
    grid-area: 3 / 1 / 4 / 2;
  }
  
  .gtm-desktop .gtm-titre-besoin {
    grid-area: 4 / 1 / 5 / 2;
  }
  
  .gtm-desktop .gtm-titre-intensite {
    grid-area: 5 / 1 / 6 / 2;
  }
  
  .gtm-desktop .gtm-titre-enfance {
    grid-area: 2 / 2 / 3 / 3;
  }
  
  .gtm-desktop .gtm-titre-stimulation {
    grid-area: 2 / 3 / 3 / 4;
  }
  
  .gtm-desktop .gtm-titre-mini {
    grid-area: 2 / 4 / 3 / 5;
  }


  .gtm-desktop .gtm-text-age-exceptionnelle {
    grid-area: 3 / 2 / 4 / 3;
  }
  
  .gtm-desktop .gtm-text-besoin-exceptionnelle {
    grid-area: 3 / 3 / 4 / 4;
  }
  
  .gtm-desktop .gtm-text-intensite-exceptionnelle {
    grid-area: 3 / 4 / 4 / 5;
  }
  
  
  .gtm-desktop .gtm-text-age-stimulation {
    grid-area: 4 / 2 / 5 / 3;
  }
  
  .gtm-desktop .gtm-text-besoin-stimulation {
    grid-area: 4 / 3 / 5 / 4;
  }
  
  .gtm-desktop .gtm-text-intensite-stimulation {
    grid-area: 4 / 4 / 5 / 5;
  }
  
  .gtm-desktop .gtm-text-age-mini {
    grid-area: 5 / 2 / 6 / 3;
  }
  
  .gtm-desktop .gtm-text-besoin-mini {
    grid-area: 5 / 3 / 6 / 4;
  }
  
  .gtm-desktop .gtm-text-intensite-mini {
    grid-area: 5 / 4 / 6 / 5;
  }

  .gtm-desktop .gtm-text-age-service {
    grid-area: 5 / 2 / 6 / 3;
  }
  
  .gtm-desktop .gtm-text-besoin-service {
    grid-area: 5 / 3 / 6 / 4;
  }
  
  .gtm-desktop .gtm-text-intensite-service {
    grid-area: 5 / 5 / 6 / 6;
  }
  
  .gtm-desktop .gtm-tab-vide {
    grid-area: 2 / 1 / 3 / 2;
  }

h6.gtm-titre-age,
h6.gtm-titre-besoin,
h6.gtm-titre-intensite,
h6.gtm-titre-age-2,
h6.gtm-titre-besoin-2,
h6.gtm-titre-intensite-2,
h6.gtm-titre-age-3,
h6.gtm-titre-besoin-3,
h6.gtm-titre-intensite-3 {
  border-left: 1px solid #ffd909;
  border-right: 1px solid #ffd909;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
  
  .gtm-tab-vide {
    margin: 0;
    padding: 10px;
    border: 1px solid #ffd909;
  }
  
}

/* ----------------------- Persona ------------------------ */

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

.gtm-zack {
  align-self: center;
}

.gtm-zack .gtm-custom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.gtm-zack.gtm-livia .gtm-custom {
  flex-direction: column-reverse;
}

.gtm-text-zack, .gtm-texte-livia, .gtm-texte-arnaud {
  text-align: center;
} 

.gtm-img-zack, .gtm-img-livia, .gtm-img-arnaud {
  width: 40%;
}

@media screen and (min-width: 992px) {
  .gtm-zack .gtm-custom {
  flex-direction: row;
}

.gtm-zack.gtm-livia .gtm-custom {
  flex-direction: row;
}

.gtm-img-zack, .gtm-img-livia, .gtm-img-arnaud {
  width: 100%;
}

.gtm-text-zack, .gtm-texte-arnaud {
  text-align: left;
} 
.gtm-texte-livia {
  text-align: right;
} 
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  NOTRE EQUIPE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-titres-postes h6 {
  margin-bottom: 0px;
  color: #ef7d19;
}

.gtm-titres-postes p {
  margin-bottom: 20px;
}

.gtm-forme-3-zig {
  position: relative;
  width: fit-content;
}

.gtm-forme-3-zig::before {
  content: url(/images/forme-3-zig.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.gtm-img-equipe img {
  -webkit-mask-image: url(/images/forme-3.svg);
  mask-image: url(/images/forme-3.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-position: center;
}

.gtm-partenaires.blog-items .com-content-category-blog__item.blog-item {
  border: 3px solid #ef7d19;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 10px;
}


.gtm-partenaires .item-content {
  text-align: center;
}

figure.left.item-image {
  text-align: center;
}

figure.left.item-image img {
  max-width: 200px;
}

.gtm-avec {
  text-align: center;
  background-color: #ef7d19;
  padding: 30px;
  color: #fff;
}

.gtm-avec-mots {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  flex-wrap: wrap;
}

.gtm-intro-stimulation-avec {
  padding: 30px;
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  ORTHOPHONIE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-hero-orthophonie h1 {
  font-size: clamp(2.5rem, 5vw, 6.5rem);
}

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

.gtm-orthophonie h2 {
  margin-top: 30px;
}

.gtm-wrap-ortho1, .gtm-wrap-ortho2, .gtm-wrap-ortho3, .gtm-wrap-ortho4 {
  position: relative;
  max-width: 80%;
  margin: auto;
}

.gtm-wrap-ortho1::before {
  content: url(/images/wrap-forme-01.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.gtm-wrap-ortho2::before {
  content: url(/images/wrap-forme-3.svg);
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 1;
}

.gtm-wrap-ortho3::before {
  content: url(/images/wrap-forme-4.svg);
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  z-index: 1;
}

.gtm-wrap-ortho4::before {
  content: url(/images/wrap-forme-7.svg);
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 1;
}

.gtm-wrap-ortho1 img {
  -webkit-mask-image: url(/images/forme-4.svg);
  mask-image: url(/images/forme-4.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-wrap-ortho2 img {
  -webkit-mask-image: url(/images/forme-5.svg);
  mask-image: url(/images/forme-5.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-wrap-ortho3 img {
  -webkit-mask-image: url(/images/forme-6.svg);
  mask-image: url(/images/forme-6.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gtm-wrap-ortho4 img {
  -webkit-mask-image: url(/images/forme-3.svg);
  mask-image: url(/images/forme-3.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  Quoi faire ?
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */


.gtm-bg-1, .gtm-bg-2, .gtm-bg-3 {
  color: #29285b;
  padding: 30px;
}

.gtm-bg-1 .gtm-custom {
  /* background-color: #ef7d19; */
  border: 4px solid #ef7d19;
  padding: 30px;
  min-height: 100%;
  border-radius: 30px;
}

.gtm-bg-2 .gtm-custom {
  /* background-color: #5EC3EF; */
  border: 4px solid #5EC3EF;
  padding: 30px;
  min-height: 100%;
  border-radius: 30px;
}

.gtm-bg-3 .gtm-custom  {
  /* background-color: #ffd909; */
  border: 4px solid #ffd909;
  padding: 30px;
  min-height: 100%;
  border-radius: 30px;
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  NOUS JOINDRE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.btn-form-demande {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}


/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  APPEL A L'ACTION
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-img-action-02 {
  text-align: center;
  min-width: 100%;
}

.gtm-bottom6 {
  max-width: 1400px;
  margin: auto;
  padding: 30px;
  align-items: center;
}


.gtm-wrap-02b {
  position: relative;
  line-height: 0;
}

.gtm-wrap-02b a{
  display: block;
  position: relative;
}

.gtm-wrap-02b a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: normal;
}

@media screen and (min-width: 1024px){
  .gtm-wrap-02b a span {
  font-size: 1.8rem;
}
}

.gtm-wrap-02b::before {
  content: "";
  background-color: #29285b;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  transition: opacity .3s ease-in-out;
}

.gtm-wrap-02b:hover::before {
  opacity: 1;
}

.gtm-wrap-02b::before {
  -webkit-mask-image: url(/images/wrap-02b.svg);
  mask-image: url(/images/wrap-02b.svg);
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


.gtm-wrap-02b img {
  -webkit-mask-image: url(/images/wrap-02b.svg);
  mask-image: url(/images/wrap-02b.svg);
}


.gtm-wrap-02b img {
  -webkit-mask-size: auto;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}


.gtm-action-triple .gtm-custom {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 30px;
  }


@media screen and (min-width: 768px) {
.gtm-action-triple .gtm-custom {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  }

  .gtm-img-action-01-triple, .gtm-img-action-02-triple, .gtm-img-action-03-triple {
    width: 33%;
  }
}

@media screen and (min-width: 1200px) { 
  .com-content-article.item-page.gtm-avis {
    max-width: 1200px;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  FOOTER
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.gtm-box-footer {
  padding: 30px 20px;
  text-align: center;
}

.gtm-footer {
  background-color: #29285b;
  border-radius: 50px;
  padding: 40px;
}

.gtm-footer h3 {
  color: #fff;
}

.gtm-footer p {
  color: #fff;
}

.gtm-facebook a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.gtm-facebook svg {
  width: 35px;
  padding-right: 10px;
  fill: #fff;
}

.gtm-logo-footer {
  align-self: center;
}

.gtm-logo-footer img {
  width: 100%;
}


@media screen and (min-width: 992px) {
  .gtm-box-footer {
    padding: 60px 60px;
    text-align: center;
  }
}


@media screen and (max-width: 992px){
  .gtm-pos-1 {
      order: 1;
  }
  .gtm-pos-2 {
      order: 2;
  }
  .gtm-pos-3 {
      order: 3;
  }
  .gtm-pos-4 {
      order: 4;
  }
  .gtm-pos-5 {
      order: 5;
  }
  .gtm-pos-6 {
      order: 6;
  }
}


.osmap-sitemap {
  margin-top: 100px;
  padding: 50px;
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  RECHERCHE
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.visually-hidden {
  visibility: hidden;
}

.gtm-recherche {
  text-align: center;
  padding: 40px;
  background-color: #5EC3EF;
}

.gtm-recherche .awesomplete {
  padding-right: 0px;
  width: 100%;
}

.gtm-recherche .awesomplete input {
  border-radius: 99px;
  border: 2px solid #ffd909 !important;
}

.gtm-recherche label {
  display: none;
}

.com-finder {
  /* margin-top: 150px; */
  padding: 40px;
}

.com-finder .input-group .btn-secondary {
  display: none;
}

.com-finder__tips {
  border: 2px solid #98bc1f;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.com-finder__tips p {
  margin-bottom: 15px;
}

.filter-branch .control-group {
  margin-bottom: 15px;
}

.filter-branch .control-group select {
  min-height: 30px;
  min-width: 300px;
}

/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  JOOMLA
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */

.mod-login label {
  visibility: visible !important;
}

.mod-login .visually-hidden {
  visibility: visible !important;
}


/* ---------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------
  POPUP
------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */


  /* Style du pop-up */
  #popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
    border-radius: 20px;
  }

  #popup .close-btn {
    cursor: pointer;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-align: right;
  }
  
  #popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

.gtm-planifier-box-2 {
  margin-top: 30px;
}


@media screen and (max-width: 768px) {
.gtm-hero-content .gtm-custom .gtm-box-hero-content {
  text-align: center;
}
}
@media screen and (min-width: 768px) {
  .gtm-accueil video {
    display: block;
}

.gtm-accueil .gtm-custom {
  background-image:none !important;
}

.gtm-hero-content .gtm-custom .gtm-box-hero-content {
  max-width: 50%;
  margin: 0 auto 0 auto;
  text-align: left;
}
}

@media screen and (min-width: 1024px) {
  .gtm-logo {
  max-width: 350px;
}

.gtm-img-hero {
    padding: 0px;
}

.gtm-recherche .awesomplete {
  padding-right: 20px;
  width: 30%;
}
}