/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                              GENERAL
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* -----------------------------------------------------
						RESET
------------------------------------------------------- */
html{
  max-width: 2560px;
  height: 100%;
  margin: 0 auto;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  font-size: 20px;
  /* font-family: 'Josefin Sans', sans-serif; */
  font-family: 'Quicksand', sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  color: #332C29;
}

body,div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


.gtm-wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 240px;
}

.gtm-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
}

/* -----------------------------------------------------
                MODULES
------------------------------------------------------- */

/* -------------- padding -------------*/

*[class^="gtm-pos"] .moduletable{
  padding: 2rem 8vw 10px 8vw;
}

/* -------------- Centrer le module -------------*/

/* centrer verticalement et horizentalement */
.gtm-center {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* centrer verticalement et verticalement */
.gtm-center-v {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* centrer verticalement et horizontalement */
.gtm-center-h {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* -------------- Flexbox dans un module simple  -------------*/

.gtm-flex-2 .gtm-custom, .gtm-flex-3 .gtm-custom, .gtm-flex-4 .gtm-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10%;
}

/* 2 colonnes */
  
  .gtm-flex-2 .gtm-custom div {
      width: 50%;
}

  /* 3 colonnes */
      
  .gtm-flex-3 .gtm-custom div {
      width: 33.33%;
  }

  /* 4 colonnes */
      
  .gtm-flex-4 .gtm-custom div {
      width: 25%;
  }


/* -----------------------------------------------------
              ARTICLE
------------------------------------------------------- */

/* padding */

.gtm-article {
  padding: 0 8vw 0px 8vw;
}

.gtm-article .item-page {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* centrer le contenu de l'article */

.gtm-article-center {
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

/* images */

img.gtm-img-small {
  width: 200px !important;
}

/* -----------------------------------------------------
                    FORMULAIRES
------------------------------------------------------- */


/* dimenssions du formulaire */

.gtm-form {
  max-width: 100%;
  margin: auto;
}

/* design du titre */

.gtm-form form h2 {
  margin-bottom: 25px;
}

/* design du bouton envoyer */

.gtm-form .formResponsive button[type="submit"] {
  display: inline-block;
  color: rgb(179, 35, 23);
  background-color: transparent;
  border: 3px solid rgb(179, 35, 23);
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 1px;
  border-radius: 99px;
  padding: 10px 15px;
  margin: 15px 0px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: 'Quicksand', sans-serif;
  -webkit-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
}


.gtm-form .formResponsive button[type="submit"]:hover {
  background-color: rgb(179, 35, 23);
  color: #fff;
}

/* design du formulaire */

.formControls {
  display: block;
}

.formControls input, .formControls textarea {
  width: 100%;
  padding: 10px !important;
}

.formResponsive input, .formResponsive textarea {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  height: auto !important;
}

.rsform-input-box {
  width: 100%;
  padding: 0 !important;
}

.formResponsive input {
  border: 2px solid #B32317 !important;
  outline: 0;
  border-radius: 30px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.formResponsive textarea {
  border: 2px solid #B32317 !important;
  border-radius: 30px !important;
  outline: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.formResponsive input:focus {
  border: 2px solid #FDB913 !important;
  outline: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.formResponsive textarea:focus {
  border: 2px solid #FDB913 !important;
  outline: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}


/* -----------------------------------------------------
                        IMAGES
------------------------------------------------------- */

.gtm-pos img {
  width: 100%;
  height: auto;
}

.gtm-border-radius img {
  border-radius: 30px;
}

/* -----------------------------------------------------
                        TITRES
------------------------------------------------------- */


h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #B32317;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

h3 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 20px;
  color: #B32317;
  text-align: center;
}



h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Josefin Sans', sans-serif;
}

h6 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Quicksand', sans-serif;
}

.widgetsbox h6 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
}

/* -----------------------------------------------------
                        TEXTES
------------------------------------------------------- */

p {
  margin-bottom: 15px;
  text-align: justify;
}

blockquote {
    font-family: serif;
    font-size: 1.3rem;
}

/* -----------------------------------------------------
                    LIENS ET BOUTONS
------------------------------------------------------- */

/*** ------ Liens ------- ***/

/* lien v1 */

a {
  text-decoration: none !important;
  cursor: pointer;
  color: #B32317;
  font-weight: 700;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

a:hover {
    color: #FDB913;
} 

/* lien widget box */


.widgetsbox .uk-link, .widgetsbox a {
  text-decoration: none !important;
  cursor: pointer;
  color: #B32317;
  font-weight: 700;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}

.widgetsbox .uk-link, .widgetsbox a:hover {
  color: #FDB913;
}

/* lien spécial */

a.gtm-lien-spe {
  color: #FDB913;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
} 

a.gtm-lien-spe:hover {
    color: whitesmoke;
} 


/*** ------ Boutons standards ------- ***/

/* bouton 1 */
a.gtm-bouton {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: rgb(179, 35, 23);
  border-radius: 99px;
  line-height: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 10px 15px;
  margin: 15px 0px 30px;
  -webkit-box-shadow: rgba(179, 35, 23, 0.25) 0px 30px 60px -12px, rgba(98, 0, 0, 0.3) 0px 18px 36px -18px;
          box-shadow: rgba(179, 35, 23, 0.25) 0px 30px 60px -12px, rgba(98, 0, 0, 0.3) 0px 18px 36px -18px;
  -webkit-transition: background-color .2s ease-in-out,
              -webkit-box-shadow .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              -webkit-box-shadow .2s ease-in-out;
  -o-transition: box-shadow .2s ease-in-out,
              background-color .2s ease-in-out;
  transition: box-shadow .2s ease-in-out,
              background-color .2s ease-in-out;
  transition: box-shadow .2s ease-in-out,
              background-color .2s ease-in-out,
              -webkit-box-shadow .2s ease-in-out;
}

a.gtm-bouton:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgb(98, 0, 0);
}



/*** ------ Boutons contours ------- ***/

/* bouton 1 */
a.gtm-bouton-contour {
  display: inline-block;
  color: rgb(179, 35, 23);
  background-color: transparent;
  border: 3px solid rgb(179, 35, 23);
  text-align: center;
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 99px;
  padding: 10px 15px;
  margin: 15px 0px 30px;
  -webkit-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
}

a.gtm-bouton-contour:hover {
  background-color: rgb(179, 35, 23);
  color: #fff;
}



/* -----------------------------------------------------
                    LISTES
------------------------------------------------------- */

/* listes à puce et numérotés */

ul:not(.nav, .gtm-sub-menu), ol {
  margin-top: 15px;
  margin-bottom: 25px;
  padding-left: 15px;
  display: inline-block;
}

ul li, ol li {
  margin-bottom: 10px;
}

ol li {
  margin-left: 35px;
}

ul li::marker, ol li::marker {
  font-size: 1rem;
}

/* listes avec picto */

ul.gtm-list-pict {
  margin-top: 15px;
  margin-bottom: 5px;
  padding-left: 25px;
}

ul.gtm-list-pict li {
  list-style: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
  background: url(/images/gtm/gtm-list-pict.png) no-repeat 0 6px;
  background-size: 15px;
  padding-left: 22px;
}

ul.gtm-list-pict li:last-child p {
  margin-bottom: 0px;
}


/* listes à émojis */

ul.gtm-list-emojis {
  margin-top: 15px;
  margin-bottom: 25px;
  padding-left: 25px;
}

ul.gtm-list-emojis li {
  list-style: none;
  padding-bottom: 5px;
}

ul.gtm-list-emojis li::before {
  padding-right: 5px;
}

ul.gtm-list-emojis li:nth-child(1):before {
  content: "😀 ";
}

ul.gtm-list-emojis li:nth-child(2):before {
  content: "😁 ";
}

ul.gtm-list-emojis li:nth-child(3):before {
  content: "😂 ";
}

ul.gtm-list-emojis li:nth-child(4):before {
  content: "😍 ";
}

ul.gtm-list-emojis li:nth-child(5):before {
  content: "😎 ";
}

ul.gtm-list-emojis li:nth-child(6):before {
  content: "🤩 ";
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                 ELEMENTS DE MISE EN PAGE
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/


/* -----------------------------------------------------------
                    SUPRESSION DE PADDING
------------------------------------------------------------ */

.gtm-no-padding {
  padding: 0 0 0 0 !important;
}

.gtm-reset-padding {
  padding: 30px 30px 30px 30px !important;
}

/* -----------------------------------------------------------
                    AJOUT DE PADDING
------------------------------------------------------------ */

.gtm-padding-plus {
  padding: 10px 10px 10px 10px !important;
}

.gtm-padding-plus-t {
  padding-top: 10px !important;
}

.gtm-padding-plus-r {
  padding-right: 10px !important;
}

.gtm-padding-plus-b {
  padding-bottom: 10px !important;
}

.gtm-padding-plus-l {
  padding-left: 10px !important;
}

/* -----------------------------------------------------------
                    AJOUT DE MARGIN
------------------------------------------------------------ */

.gtm-margin-plus {
  margin: 40px 40px 40px 40px !important;
}

.gtm-margin-plus-t {
  margin-top: 40px !important;
}

.gtm-margin-plus-r {
  margin-right: 40px !important;
}

.gtm-margin-plus-b {
  margin-bottom: 40px !important;
}

.gtm-margin-plus-l {
  margin-left: 40px !important;
}


/* -----------------------------------------------------------
                    BOX SHADOW
------------------------------------------------------------ */

.gtm-shadow {
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* -----------------------------------------------------------
                    DÉGRADÉS DE COULEUR
------------------------------------------------------------ */

.gtm-gradient {
  background: rgb(241,158,31);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(241,158,31,1)), to(rgba(239,82,69,1)));
  background: -o-linear-gradient(bottom, rgba(241,158,31,1) 0%, rgba(239,82,69,1) 100%);
  background: linear-gradient(0deg, rgba(241,158,31,1) 0%, rgba(239,82,69,1) 100%);
}


/* -----------------------------------------------------------
                    IMAGE BACKGROUND
------------------------------------------------------------ */

.gtm-img-bg .gtm-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
}


/* -----------------------------------------------------------
                    OVERLAY
------------------------------------------------------------ */

.gtm-overlay .gtm-custom {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
} 

.gtm-overlay .gtm-custom h1,h2,h3,h4,h5,h6,p,a,span,blockquote {
  position: relative;
  z-index: 3;
}
.gtm-overlay .gtm-custom img {
  position: relative;
  z-index: 3;
}

.gtm-overlay .gtm-custom::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(241,158,31, .5);
}

/* -----------------------------------------------------------
                    CLIP-PATH
------------------------------------------------------------ */

.gtm-clip {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 96%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 96%, 0 0);
}

.gtm-clip-contentgtm-form .gtm-custom {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 91%);
}


/* -----------------------------------------------------------
                    VIDEOS
------------------------------------------------------------ */

/* vidéo blogue */

.gtm-video-articles-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
  margin-top: 50px;
}

.gtm-mov {
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 1200px) {
  .gtm-mov {
    width: 31%;
  }
}

.gtm-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.gtm-responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}


/* -----------------------------------------------------------
                    SCROLL TO TOP
------------------------------------------------------------ */

.gtm-scroll-top {
  width: 50px;
  height: 50px;
  background-color: #B32317; /* couleur d'arrière plan de la boite */
  border-radius: 63% 37% 70% 30% / 49% 50% 50% 51% ;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 100000;
  padding: 10px;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  display: none;
}

.gtm-scroll-top.gtm-down {
	bottom: 110px !important;
}

.gtm-scroll-top.active {
  visibility: visible;
  opacity: 1;
}

.gtm-scroll-top:active {
  background-color: #65646A;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        HEADER
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* .gtm-logo-head {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 210px;
  z-index: 3;
} */



.gtm-box-hero-23 {
  position: relative;
  top: 40px;
  left: 40px;
  width: calc(100% - 80px); 
  background-color: transparent;
  border-radius: 30px;
  margin-bottom: 80px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
          box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}


.gtm-box-hero-23::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  width: 100vw;
  height: 100vw;
  background-color: #FDB913;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
  z-index: -1;
}

.gtm-hero2.hero2 {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/* .gtm-hero-content {
  padding-top: 3rem !important;
} */

.gtm-hero-content h3 {
  text-align: left;
}

.gtm-hero-content .material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48;
  color: #B32317;
  font-size: 2rem;
  border: 2px solid #B32317;
  padding: 5px;
  border-radius: 50%;
  -webkit-transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
  -o-transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
  transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
}

.gtm-hero-content .material-symbols-rounded:hover {
  border:2px solid #FDB913;
  background-color: #FDB913;
}

.gtm-hero3.hero3 {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.gtm-hero-img {
  line-height: 0;
}

.gtm-hero-img img {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}



/*-------------------------------------------*/






.gtm-logo-head {
  width: 220px;
  margin-left: 15px;
  margin-top: 15px;
}


@media screen and (min-width: 375px) {
  .gtm-logo-head {
    width: 230px;
  }
}

@media screen and (min-width: 414px) {
  .gtm-logo-head {
    width: 270px;
  }
}

/* ----------------- Header Credits ---------------- */

.gtm-hero-bg-credits {
  position: relative;
  top: 0;
  left: 0;
}

.gtm-hero-bg-credits .gtm-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(82,122,5);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(82,122,5,0.19091386554621848)), to(rgba(32,47,2,1)));
  background: -o-linear-gradient(bottom, rgba(82,122,5,0.19091386554621848) 0%, rgba(32,47,2,1) 100%);
  background: linear-gradient(0deg, rgba(82,122,5,0.19091386554621848) 0%, rgba(32,47,2,1) 100%);
  opacity: .6;
  z-index: 1;
}

.gtm-hero-bg-credits .gtm-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
  background-position: center 100%;  
  background-repeat: no-repeat;
  min-height: 30vh;
  color: #fff;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}


.gtm-hero-bg-credits .gtm-custom > * {
  position: relative;
  z-index: 3;
}

.gtm-hero-bg-credits .gtm-custom h1 {
  font-size: 3rem;
}




/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                    ACCUEIL
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/


.gtm-text-widget-accueil {
  font-size: 20px;
  color: #fff;
}

/* .uk-card-footer {
  padding-top: 0;
  padding-bottom: 0;
} */


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                     MISSION ET OBJECTIFS
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* suite mission */

.gtm-box-top-23 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Objectis */

.gtm-objectifs {
  margin-bottom: 50px;
  margin-top: 50px;
}

.uk-position-relative.uk-card {
  border-radius: 30px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #72b5b7;
  -webkit-transition: background-color .2s ease-in,
              color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  -o-transition: background-color .2s ease-in,
              color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              color .2s ease-in,
              box-shadow .2s ease-in,
              -webkit-box-shadow .2s ease-in;
}

.uk-position-relative.uk-card:hover {
  background-color: #fff !important;
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px !important;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px !important;
}

.uk-position-relative.uk-card:hover h4 {
  color: #343434;
}

.widgetsbox.uk-card-default {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.uk-position-relative.uk-card h4{
  color: #fff;
}

/* .uk-card-body {
  display: flex !important;
  align-items: center !important;
} */

.nx-extensions.widgetsbox .nx-item h4{
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
}



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

/* Équipe */

.gtm-equipe {
  margin-bottom: 60px;
}

.blog-items.gtm-equipe.masonry-2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-items.gtm-equipe .blog-item {
  margin-bottom: 20px;
}

.blog-items.gtm-equipe .blog-item h2, .blog-items.gtm-equipe .blog-item h6, .blog-items.gtm-equipe .blog-item p a {
  text-align: center !important;
}

.blog-items.gtm-equipe .blog-item img {
  border-radius: 30px;
}

/* Conseil d'administration */

.gtm-conseil .gtm-custom {
  margin-bottom: 60px;
}

.gtm-conseil ul {
  padding-left: 0px;
}

.gtm-conseil ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 100vw;
  gap: 2%;
  padding: 20px 60px;
  border-bottom: 2px solid #fff;
  background-color: #72b5b7;
  color: #fff;
  -webkit-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.gtm-conseil ul li:hover {
  background-color: transparent;
  color: #343434;
}

.gtm-conseil ul li img {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.gtm-conseil ul li p {
  font-size: 1.3rem;
}

.gtm-equipe .blog-item {
  padding: 0px 10px;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        MEMBRES
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-box-bottom-23 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gtm-membres-categories .gtm-custom{
  padding: 0px 40px;
}

.gtm-membres-categories .gtm-custom .gtm-intro-article4 {
  text-align: center;
  margin-bottom: 60px;
}

.gtm-membres-categories .gtm-article4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4%;
}

.uk-accordion {
  width: 100%;
}

.uk-accordion-content {
  padding-left: 40px;
}
.gtm-membre h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  font-family: 'Josefin Sans', sans-serif;
  color: #B32317;
  text-align: center;
}

.gtm-article-5 {
  max-width: 1200px;
  margin: auto;
  padding: auto 40px;
}

.gtm-article-5 ul {
  display: inline-block;
}

.gtm-membres ul {
  padding-left: 35px;
}

.gtm-membre {
  padding-bottom: 0 !important;
}

.gtm-membre a{
  text-decoration: none !important;
}

.uk-accordion li {
  border-left: 4px solid #FDB913;
}

.uk-accordion-content li {
  border: none;
}

.uk-first-column {
  font-size: 1.7rem;
  color: #332C29;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6 {
  margin: auto;
  font-family: 'Quicksand', sans-serif;
  font-weight: auto;
  color: #B32317;
  text-transform: none;
}

/* .widgetsbox .uk-grid-column-small>*, .widgetsbox .uk-grid-small>* {
  font-size: 16px !important;
} */

.widgetsbox .uk-grid-column-small, .widgetsbox .uk-grid-small {
  margin-left: auto !important;
}
.widgetsbox .uk-grid {
  margin-left: auto !important;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        NOUVELLES
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-retour-nouvelles {
  text-align: center;
}

.gtm-nouvelles .blog-item {
  background-color: #72b5b7;
  border-radius: 30px;
  padding: 15px 20px;
  -webkit-transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  -o-transition: box-shadow .2s ease-in,
              background-color .2s ease-in;
  transition: box-shadow .2s ease-in,
              background-color .2s ease-in;
  transition: box-shadow .2s ease-in,
              background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
}

.gtm-nouvelles .blog-item {
  color: #fff;
}

.gtm-nouvelles .blog-item:hover {
  color: #343434;
}

.gtm-nouvelles .blog-item .item-content .readmore a {
  color: #343434;
  border: 3px solid #343434;
}

.gtm-nouvelles .blog-item .item-content .readmore a:hover {
  color: #fff;
  border: 3px solid #343434;
  background-color: #343434;
}

.gtm-nouvelles .blog-item:hover {
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
  background-color: #fff;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        OUTILS
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-outils .blog-item {
  background-color: #72b5b7;
  color: #fff;
  border-radius: 30px;
  padding: 15px 20px;
  -webkit-transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  -o-transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in,
              -webkit-box-shadow .2s ease-in;
}

.gtm-outils .blog-item a {
  color: #343434;
  border-bottom: 2px solid #343434;
}

.gtm-outils .blog-item:hover {
  background-color: #fff;
  color: #343434;
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.gtm-outils .blog-item:hover a {
  color: #B32317;
  border-bottom: none;
}

.gtm-outils .blog-item a.gtm-bouton-contour {
  color: #343434;
  border: 3px solid #343434;
}

.gtm-outils .blog-item a.gtm-bouton-contour:hover {
  color: #fff;
  border: 3px solid #343434;
  background-color: #343434;
}


.gtm-outils .blog-item ul {
  list-style: none;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        PUBLICATIONS
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-publications .blog-item {
  background-color: #72b5b7;
  border-radius: 30px;
  padding: 15px 20px;
  -webkit-transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  -o-transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in,
              -webkit-box-shadow .2s ease-in;
}

.gtm-publications .blog-item a {
  color: #343434;
  border-bottom: 2px solid #343434;
}

.gtm-publications .blog-item:hover {
  background-color: #fff;
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.gtm-publications .blog-item:hover a {
  color: #B32317;
  border-bottom: none;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        PROJET ET DOSSIER - Répertoire
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-repertoire .blog-item {
  background-color: #72b5b7;
  color: #fff;
  border-radius: 30px;
  padding: 15px 20px;
  -webkit-transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              -webkit-box-shadow .2s ease-in;
  -o-transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in;
  transition: background-color .2s ease-in,
              box-shadow .2s ease-in,
              -webkit-box-shadow .2s ease-in;
}

.gtm-repertoire .blog-item:hover {
  background-color: #fff;
  color: #343434;
  -webkit-box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}

.page-header h2 a {
  color: #fff;
}

.item-content:hover .page-header h2 a {
  color: #fdb913;
}

.page-header h2 a:hover {
  color: #fdb913;
}

.gtm-repertoire .blog-item .item-content .readmore a {
  color: #343434;
  border: 3px solid #343434;
}

.gtm-repertoire .blog-item .item-content .readmore a:hover {
  color: #fff;
  border: 3px solid #343434;
  background-color: #343434;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        ENTENTES SECTORIELLES
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-entente .uk-position-relative.uk-card {
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgb(0 0 0 / 8%);
}

.gtm-entente h3 {
  font-family: 'Quicksand', sans-serif !important;
  font-weight: 700 !important;
  border-bottom: 2px solid #fdb913;
  min-height: 110px;
}

.gtm-entente h4 {
  color: #343434 !important;
}

.gtm-entente p {
  font-size: 20px;
}


.gtm-entente .nx-item {
    padding-left: 0px !important;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        INTRODUCTION
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* .gtm-box-top-23 {
  margin-bottom: 60px;
} */

.gtm-img-introduction img {
  border-radius: 30px;
}


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

.gtm-contact a:hover {
  color: #332C29;
}

.gtm-contact ul {
  list-style: none;
  padding-left: 0;
}


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


.gtm-box-footer-456 {
  position: relative;
  left: 40px;
  width: calc(100% - 80px);
  background-color: white;
  margin-top: 60px;
  margin-bottom: 15px;
  border-radius: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gtm-ms-footer .gtm-custom{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  text-align: center;
}

.gtm-footer-femmes h3 {
  font-size: 1.6rem;
}

.gtm-footer-femmes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
}

/* Logo */

.gtm-logo-footer img {
  max-width: 450px;
}


.gtm-logo-footer .gtm-custom {
  text-align: center;
}

/* Coordonnées */

.gtm-coor-footer {
  text-align: center;
}

.gtm-coor-footer ul {
  list-style: none;
  padding-left: 0;
}

/* Réseaux sociaux */

.gtm-ms-footer span {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #B32317;
  border-radius: 50%;
  -webkit-transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
  -o-transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
  transition: border .2s ease-in-out,
              background-color .2s ease-in-out;
}

.gtm-ms-footer a {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 0;
}

.gtm-ms-footer img {
  width: 15px;
}

.gtm-ms-footer .gtm-facebook-ok img {
  width: 12px;
}

.gtm-ms-footer .gtm-instagram-am img {
  width: 20px;
}

.gtm-ms-footer .gtm-linkedin-in img {
  width: 17px;
}

.gtm-ms-footer .gtm-youtube-be img {
  width: 20px;
}

.gtm-ms-footer .gtm-twitter-er img {
  width: 18px;
}

.gtm-ms-footer .gtm-mail-il img {
  width: 20px;
}

.gtm-ms-footer span:hover {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid #FDB913;
  background-color: #FDB913;
  border-radius: 50%;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        COMPTE
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/


.gtm-article .gtm-compte {
  padding-top: 30px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: auto;
}


/* -----------------------------------------------------
                        CONNEXION
------------------------------------------------------- */

.com-users-login.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 150px);
}

.login-image {
  max-width: 270px;
}

.com-users-login.login form.com-users-login__form {
  padding: 20px 30px;
  margin: 15px auto 25px auto;
}

.gtm-compte .control-group {
  margin-bottom: 15px;
}

.com-users-login.login input {
  padding: 10px;
  background-color: #ffffff !important;
  border: 1px solid #cccccc;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
          box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  -webkit-transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  transition: border linear 0.2s, -webkit-box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s, -webkit-box-shadow linear 0.2s;
}

.btn.btn-primary {
  display: inline-block;
  font-family: 'Comfortaa', sans-serif;
    color: #fff;
  background-color: #40acf4;
  line-height: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
    padding: 5px 10px;
  margin: 15px 0px;
  -webkit-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn.btn-primary:hover {
  background-color: #2b73a2;
}

.btn.btn-secondary {
  display: inline-block;
    color: #000;
  background-color: #cfcfcf;
  line-height: 1rem;
  font-weight: 400;
    padding: 1px 10px;
  -webkit-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  border: none;
  cursor: pointer;
}

.form-control-feedback {
  font-size: 16px;
  color: red;
  padding-left: 5px;
}

/* -----------------------------------------------------
                        PROFIL
------------------------------------------------------- */

.com-users-profile.profile ul.com-users-profile__edit {
  padding-left: 0px;
}

.com-users-profile.profile ul.com-users-profile__edit.btn-toolbar li  {
  list-style: none;
}

.com-users-profile__core {
  margin-bottom: 35px;
}

.com-users-profile.profile legend {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.com-users-profile.profile .dl-horizontal dt {
  font-size: 1.1rem;
  color: rgb(62, 62, 62);
}

.com-users-profile.profile .dl-horizontal dd {
  color: #939393;
  padding-left: 10px;
  margin-bottom: 10px;
}

/* -----------------------------------------------------
              MODIFICATION PROFIL
------------------------------------------------------- */

.com-users-profile__edit.profile-edit legend {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.com-users-profile__edit.profile-edit .control-group {
  margin-bottom: 20px;
}

.btn.btn-danger {
  display: inline-block;
    color: #fff;
  background-color: #e94848;
  line-height: 1rem;
  font-weight: 400;
    padding: 1px 10px;
  -webkit-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn.btn-danger:hover {
  background-color: #9c3636;
}

/* -----------------------------------------------------
                  DECONNEXION
------------------------------------------------------- */

.com-users-logout.logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 150px);
}

.com-users-logout__description.logout-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.com-users-logout.logout .com-users-logout__image {
  max-width: 270px;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        AMPZ
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.ampz_support_author {
  display: none !important;
}

#ampz_inline_mobile {
  background-color: transparent !important;
}

.gtm-recherche .visually-hidden.finder {
  display: none;
}

.ampz_container ul {
  padding-left: 0 !important;
}


.ampz_btn {
  border-radius: 63% 37% 70% 30% / 49% 50% 50% 51% !important;
}

.ampz_facebook {
  background-color: #3b5998 !important;
}

.ampz_twitter {
  background-color: #00acee !important;
}

.ampz_email {
  background-color: #B32317 !important;
}

.ampz_linkedin {
  background-color: #0e76a8 !important;
}

.ampz_facebook:hover, .ampz_twitter:hover, .ampz_email:hover, .ampz_linkedin:hover   {
  background-color: #FDB913 !important;
}


.ampz-icoon-facebook:before, .ampz-icoon-email:before, .ampz-icoon-copy:before, .ampz-icoon-linkedin:before, .ampz-icoon-twitter:before {
  color: #fff;
}

#ampz_sidebar.ampz_sidebar_right, .ampz_show_sidebar.ampz_sidebar_right {
  right: 10px;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                           POLITIQUE DE CONFIDENTIALITÉ ET DE COOKIES
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* image de cookie */
.cc-revoke.cc-bottom.cc-right {
  content: url(/images/cookie.svg);
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  left: 15px;
  bottom: 15px;
  background-color: transparent !important;
  -webkit-animation: cookie 0.8s 1.8s both;
  animation: cookie 0.8s 1.8s both;
}

@keyframes cookie {
  0% {  
    visibility: hidden;
    transform: translate(0%, 100%); 
  }
  100% {
    visibility: visible;
    transform: translate(0%, 0%); 
  }
}

.cc-btn {
  font-weight: 600;
}
a.cc-btn:hover {
  text-decoration: none;
}

.cc-right {
  right: 0;
}

@media (max-width: 639px) {
  .cc-window.cc-banner .cc-compliance {
      gap: 2%;
  }
}

/* hauteur de la fenêtre */
div.cc-window.cc-banner {
  padding: 1em;
}

/* x pour fermer la fenêtre */
.cc-close {
  top: 1.5em;
  right: 1em;
  font-size: .5em;
}

/* placer les éléments dans la barre */
.cc-compliance {
  order: 2;
}

div.cc-checkboxes-container {
  order: 1;
}

/* cacher la flèche et les liens vers la politique de cookie et de confidentialité */
span.cc-cookie-settings-toggler, a.cc-link.cc-privacy {
  display: none;
}

/* espace devant la première boîte pour qu'on voit la bordure de gauche */
input.cc-cookie-checkbox+span {
  left: 1px;
}
 
/* espace sous le bouton paramètres */
.cc-window .cc-message {
  margin-bottom: 0em;
}

/* espace sous le paragraphe pour plus d'informations */
div.cc-window.cc-floating div.cc-settings-label {
  margin-bottom: 20px;
}

/* espace entre la boite à cocher et le texte */
a.cc-link label {
  padding-left: 5px;
}

/* couleur du crochet et du x des cookies */
div.cc-checkboxes-container.cc-checkboxes-filled input.cc-cookie-checkbox:disabled+span:before, div.cc-checkbox-container.cc-checkboxes-filled input.cc-cookie-checkbox:disabled+span:after, div.cc-checkboxes-container.cc-checkboxes-filled input.cc-cookie-checkbox:checked+span:before, div.cc-checkbox-container.cc-checkboxes-filled input.cc-cookie-checkbox:checked+span:after {
  background-color: #fff;
  border-color: #333333;
}

/* centrer du crochet et du x des cookies */
div.cc-checkboxes-container.cc-checkboxes-filled input.cc-cookie-checkbox:disabled+span:after {
  left: 4px;
  top: -1px;
}

/* enlever la bordure */
div.cc-checkbox-container:not(:last-child) a {
  border-right: 0;
}

/* couleur du x */
div.cc-checkboxes-container.cc-checkboxes-filled input.cc-cookie-checkbox:disabled+span:after {
  color: #333333;
}

/* couleur du crochet */
div.cc-checkboxes-container.cc-checkboxes-filled input.cc-cookie-checkbox:checked+span:after {
  border-color: #333333;
}

/* enlever le background dans les cases à cocher */
input.cc-cookie-checkbox+span:after {
  border-color: #fff #fff #fff #fff;
  background-image: linear-gradient(135deg,#fff 0,#FFF 100%);
}

/* design du bouton paramètres */
span.cc-message span.cc-cookie-settings-toggle {
  display: block;
  width: 110px;
  padding: 0.4em 0.8em;
  border-radius: 99px;
  font-weight: 300;
}

span.cc-cookie-settings-toggle:hover {
  background-color: #620000;
  border-color: #620000;
}

/* design du bouton accepter */
div.cc-checkboxes-container a.cc-btn.cc-allow {
  width: 100%;
  margin-top: 10px;
  padding: 0.4em 0.8em;
  border-radius: 99px;
  font-weight: 300;
}

div.cc-checkboxes-container a.cc-btn.cc-allow:hover {
  background-color: #620000;
  border-color: #620000;
}

/* design du bouton accepter tous les cookies */
a.cc-btn.cc-allowall {
  margin-right: 0 !important;
  width: 100%;
  border-radius: 99px;
  border-radius: 99px !important;
  font-weight: 300;
}

a.cc-btn.cc-allowall:hover {
  background-color: #620000;
  border-color: #620000 !important;
}

/* design du bouton refuser */
a.cc-btn.cc-deny {
  margin-right: 0 !important;
  width: 100%;
  border-radius: 99px !important;
  font-weight: 300;
}

a.cc-btn.cc-deny:hover {
  background-color: #620000 !important;
  border-color: #620000 !important;
}

/* design des catégories de fichiers témoins */
a.cc-link label:hover {
  color: #620000;
}

/* police */
.cc-revoke, .cc-window {
  font-family: 'Quicksand', sans-serif;
}

/* grosseur de la police nous utilisons les cookies */
div.cc-settings-label {
  font-size: 16px;
  padding-top: 2px;
}

div.cc-window.cc-floating {
  width: 100%;
  max-width: none;
  transform: translateY(16px);
}

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

  .cc-window.cc-floating .cc-compliance {
    gap: 0.2em;
    flex-wrap: nowrap;
  }

  a.cc-btn.cc-allowall, a.cc-btn.cc-deny {
    width: 48%;
  }

  .cc-checkbox-container {
    width: 32%;
  }

  div.cc-checkbox-container {
    align-items: flex-start;
    width: 23%;
  }

  div.cc-checkboxes-container a.cc-btn.cc-allow {
    width: 22%;
    margin-top: 0;
    transform: translateY(-2px);
  }

  div.cc-checkboxes-container {
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  div.cc-window.cc-floating {
    padding: 3em 5.5em;
  }
}

@media screen and (min-width: 992px) {
  div.cc-window.cc-floating {
    padding: 3em 8.5em;
  }
}

@media screen and (min-width: 1200px) {
  div.cc-window.cc-floating {
    padding: 3em 11.5em;
  }
}

@media screen and (min-width: 1400px) {
  div.cc-window.cc-floating {
    padding: 3em 19.5em;
  }
}

@media screen and (min-width: 1700px) {
  div.cc-window.cc-floating {
    padding: 3em 25.5em;
  }
}

@media screen and (min-width: 2000px) {
  div.cc-window.cc-floating {
    padding: 3em 32.5em;
  }
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        COPYRIGHT
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

@font-face {
  font-family: 'sciflysans, sans-serif';
  src: url('/templates/gtm_template4/typographies/scifly-sans-webfont.woff2') format('woff2'),
       url('/templates/gtm_template4/typographies/scifly-sans-webfont.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
}


.gtm-row-copyright {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 240px;
}

.gtm-copyright1 {
  background-color: #f5deb3;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  text-align: center;
  padding-left: 35px;
  padding-right: 35px;
}

.gtm-flinks {
  margin-top: 15px;
  color: #332C29;
  font-size: 16px !important;
}

.gtm-copyright  {
  padding-top: 15px;
  color: #332C29;
  font-size: 16px !important;
}


.gtm-copy-anim-logo {
  margin: 0px auto 30px auto;
  max-width: 400px;
}

.gtm-copy-anim-logo .gtm-lien-gestimark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

a.gtm-lien-gestimark span {
  font-family: 'sciflysans, sans-serif';
  color: #636569;
  letter-spacing: 1px;
  font-size: 1.2rem;
  padding-right: 10px;
}

.gtm-copy-anim-logo .gtm-lien-gestimark img {
  width: 50px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.gtm-copy-anim-logo:hover .gtm-lien-gestimark img {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}



.gtm-container-copyright::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0%;
  bottom: 0%;
  width: 80vw;
  height: 250vw;
  background-color: #FDB913;
  border-radius: 100% 0% 43% 57% / 38% 66% 34% 62%;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        CRÉDITS
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-credits .com-content-article__body {
  text-align: center;
}

.gtm-credits .com-content-article__body img.gtm-logo-gestimark-credit {
  width: 100%;
  max-width: 500px !important;
  padding-top: 80px;
  padding-bottom: 80px;
}

.ba-gallery {
  margin-bottom: 100px;
}


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


.gtm-recherche {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 80%;
  margin: auto;
  padding: 15px 20px;
  background-color: white;
  border-radius: 30px;
  -webkit-box-shadow: rgb(17 12 46 / 15%) 0px 48px 100px 0px;
          box-shadow: rgb(17 12 46 / 15%) 0px 48px 100px 0px;
}


.gtm-article .gtm-finder {
  padding-top: 30px;
  padding-bottom: 60px;
  max-width: 800px;
  margin: auto;
}

.gtm-recherche {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.gtm-recherche .awesomplete {
  padding-right: 10px;
}


@media screen and (max-width: 393px) {
  .gtm-recherche .awesomplete {
    margin-bottom: 25px;
  }
}

.gtm-recherche input {
  min-width: 140px;
  padding: 12px 8px 10px 8px;
  border-radius: 99px !important;
  line-height: 1;
  background-color: #ffffff;
  border: 3px solid #72B5B7;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border linear 0.2s;
  -o-transition: border linear 0.2s;
  transition: border linear 0.2s;
}

.gtm-recherche  .btn.btn-primary {
  color: #72B5B7;
  background-color: transparent;
  border: 3px solid #72B5B7;
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 1px;
  border-radius: 99px;
  padding: 8px 15px 9px 15px;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: 'Quicksand', sans-serif;
  -webkit-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
}

.gtm-recherche .btn.btn-primary:hover {
  background-color: #72B5B7;
  color: #fff;
}

/* .mod-finder__search.input-group .btn.btn-primary {
  padding-top: 4px;
  padding-bottom: 7px;
  border: 1px solid #40acf4;
  transition: border .2s ease-in-out
} */

/* .mod-finder__search.input-group .btn.btn-primary:hover {
  border: 1px solid #2b73a2;
} */

.result__item {
  margin-left: 0px;
}



.gtm-recherche input {
  min-width: 140px;
  padding: 12px 8px 10px 8px;
  border-radius: 99px !important;
  line-height: 1;
  background-color: #ffffff;
  border: 3px solid #72B5B7;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border linear 0.2s;
  -o-transition: border linear 0.2s;
  transition: border linear 0.2s;
}


.gtm-finder .btn.btn-primary {
  color: #72B5B7;
  background-color: transparent;
  border: 3px solid #72B5B7;
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 1px;
  border-radius: 99px;
  padding: 8px 15px 9px 15px;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: 'Quicksand', sans-serif;
  -webkit-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  margin-top: 15px;
}

.gtm-finder .btn.btn-primary:hover {
  background-color: #72B5B7;
  color: #fff;
}

.gtm-finder input {
  min-width: 140px;
  padding: 12px 8px 10px 8px;
  border-radius: 99px !important;
  line-height: 1;
  background-color: #ffffff;
  border: 3px solid #72B5B7;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border linear 0.2s;
  -o-transition: border linear 0.2s;
  transition: border linear 0.2s;
}


/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        FIL D'ARIANE
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-ariane {
  margin: 20px auto;
  max-width: fit-content;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 99px;
}

.gtm-ariane nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
}

.gtm-ariane nav ol li {
  margin-bottom: 0;
  margin-left: 25px;
  font-weight: 300;
}

.gtm-ariane nav ol li::marker {
  content: "> " !important;
}

.gtm-ariane nav ol li:nth-child(2)::marker {
  content: "";
}

.gtm-ariane nav ol li a {
  color: #72B5B7;
}

.gtm-ariane nav ol .mod-breadcrumbs__divider.float-start {
  display: none;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        OUPS !
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/



.gtm-oups {
  position: relative;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(/images/gtm/gestimark-oups.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 80px);
  width: calc(100% - 80px) ;
  text-align: center;
  z-index: 0;
  border-radius: 30px;
}

.gtm-oups::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: #fdb913;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(253,185,19,1)), to(rgba(253,185,19,0.27914915966386555)));
  background: -o-linear-gradient(bottom, rgba(253,185,19,1) 0%, rgba(253,185,19,0.27914915966386555) 100%);
  background: linear-gradient(0deg, rgba(253,185,19,1) 0%, rgba(253,185,19,0.27914915966386555) 100%);
}

.gtm-oups h3 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: #B32317;
}

.gtm-oups .gtm-custom  {
  padding-left: 60px;
  padding-right: 60px;
}

.gtm-oups .gtm-custom p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #B32317 ;
}

.gtm-oups .gtm-custom a {
  line-height: 1.2;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        MERCI !
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.gtm-merci {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(/images/gtm/gestimark-merci.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  text-align: center;
  z-index: 0;
}

.gtm-merci::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0,0,0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.15730042016806722)), to(rgba(0,0,0,1)));
  background: -o-linear-gradient(top, rgba(0,0,0,0.15730042016806722) 0%, rgba(0,0,0,1) 100%);
  background: linear-gradient(180deg, rgba(0,0,0,0.15730042016806722) 0%, rgba(0,0,0,1) 100%);
  opacity: .8;
}

.gtm-merci h3 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: #fff;
}

.gtm-merci .gtm-custom  {
  padding-left: 60px;
  padding-right: 60px;
}

.gtm-merci .gtm-custom p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.gtm-oups .gtm-custom a {
  line-height: 1.2;
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        BLOG
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* ------------ Blog style Masonry --------------- */

/* 
.blog-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 25px;
}


.blog .blog-item .item-content {
  display: flex;
  flex-direction: column;
}

.fields-container {
  order: 1;
  padding-left: 0;
} 


.blog-items[class^=masonry-], .blog-items[class*=" masonry-"] {
  display: block;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}

.blog-items[class^=masonry-] .blog-item, .blog-items[class*=" masonry-"] .blog-item {
  display: flex;
  margin-bottom: 1em;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}

@media (min-width: 768px) {

  .blog-items.masonry-4 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }

  .blog .blog-item {
    padding: 40px 40px 0px 40px;
  }

}


@media (min-width: 1200px) {
  .blog-items.masonry-2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
  .blog-items.masonry-3 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  .blog-items.masonry-4 {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
} */



/* ------------ Blog style flexbox --------------- */


.span.icon-chevron-right {
  display: none !important;
}

.blog-items {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* align-items: flex-start; */
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
}

.blog-items .blog-item{
  margin-bottom: 30px;
}


.blog-item h2 {
  font-size: 1.5rem;
}


.blog-items[class^=masonry-], .blog-items[class*=" masonry-"] {
  gap: 2%;
}

.blog-items.masonry-2 .blog-item {
  width: 100%;
}
.blog-items.masonry-3 .blog-item {
  width: 100%;
}

.blog-items.masonry-4 .blog-item {
  width: 100%;
}


.blog-item img {
  margin-bottom: 1.5rem;
  width: 100%;
}


.blog-item .btn.btn-secondary {
  position: relative;
  padding: 10px 0px;
  z-index: 3;
  background-color: transparent;
}



@media (min-width: 768px) {

  .blog-items.masonry-2 .blog-item {
    width: 100%;
  }
  .blog-items.masonry-3 .blog-item {
    width: 46%;
  }

  .blog-items.masonry-4 .blog-item {
    width: 46%;
  }
}


@media (min-width: 1200px) {

  /* .blog-items.masonry-2 .blog-item {
    width: 46%;
  } */

  .blog-items.masonry-2 .blog-item {
    width: 46%;
  }

  
  .blog-items.masonry-3 .blog-item {
    width: 29%;
  }

  .blog-items.masonry-4 .blog-item {
    width: 21%;
  }
}


/* ------------ Lire la suite --------------- */

.item-content .readmore a {
  display: inline-block;
  color: rgb(179, 35, 23);
  background-color: transparent;
  border: 3px solid rgb(179, 35, 23);
  font-size: .9rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 99px;
  padding: 10px 15px !important;
  margin: 15px 0px 30px;
  -webkit-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
  transition: background-color .2s ease-in-out,
              border .2s ease-in-out,
              color .2s ease-in-out;
}

.item-content .readmore a:hover {
  background-color: rgb(179, 35, 23);
  color: #fff;
}

/* ------------ Navigation entre les articles --------------- */

.gtm-article .pagenavigation .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10%;
  list-style: none;
}

.gtm-article .pagenavigation .pagination a {
  display: inline-block;
  color: #fff;
  background-color: red;
  line-height: 1.3rem;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 10px 15px;
  margin: 25px 15px 30px;
  -webkit-transition: background-color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out;
  transition: background-color .2s ease-in-out;
}

.gtm-article .pagenavigation .pagination a:hover {
  background-color: darkred;
}


.gtm-article .pagenavigation .pagination .visually-hidden, .gtm-article .pagenavigation .pagination .icon-chevron-right {
  display: none;
}



/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                      SITEMAP
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

.osmap-sitemap {
margin-top: 180px;
}

*[id^="osmap-ul-uid-"] {
display: block !important;
}





/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

MEDIA-QUERIES

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        Petits mobiles
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/


@media screen and (min-height: 567px) and (max-height: 666px) {
  h1, h3 {
    font-size: 1.6rem;
  }

  html{
    font-size: 16px;
  }

  .gtm-container-copyright::before {
    width: 70vw;
    height: 250vw;
  }
}

.gtm-recherche input {
  min-width: 140px;
  padding: 12px 8px 10px 8px;
  border-radius: 99px !important;
  line-height: 1;
  background-color: #ffffff;
  border: 3px solid #72B5B7;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: border linear 0.2s;
  -o-transition: border linear 0.2s;
  transition: border linear 0.2s;
}




/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        Tablette - Standard
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

/* -----------------------------------------------------
                        MODULES
------------------------------------------------------- */

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

  .gtm-pos-m .moduletable {
    padding-right: 30px;
  }
  
  .gtm-pos-r .moduletable{
    padding-left: 30px;
  }

  .gtm-pos-sl .moduletable {
    padding-right: 30px;
  }

  .gtm-pos-lm .moduletable {
    padding-left: 30px;
  }

  .gtm-pos-rm .moduletable {
    padding-right: 30px;
  }

  .gtm-pos-sr .moduletable {
    padding-left: 30px;
  }

  .gtm-hero-content h3 {
    font-size: 2.8rem;
  }


  .gtm-container-copyright::before {
    width: 70vw;
    height: 130vw;
  }

  /* -----------------------------------------------------
                        HEADER
------------------------------------------------------- */


   .gtm-box-hero-23 {
    top: 60px;
    left: 60px;
    width: calc(100% - 120px);
    margin-bottom: 120px;
      min-height: calc(100vh - 120px);
  } 

  .gtm-box-hero-23::before {
    width: 50vw;
    height: 50vw;
  }

  
  .gtm-hero2.hero2 {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }


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

.gtm-recherche {
  margin-bottom: 20px;
}

}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        Tablette - Grande
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/
/* -----------------------------------------------------
                        MODULES
------------------------------------------------------- */

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


  .gtm-container-copyright::before {
    width: 70vw;
    height: 110vw;
  }

}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        Tablette - Grande 2
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

@media screen and (min-width: 1023px) and (max-width:1199px) {
  
  /** --------------------------------------------------------------------------------------------------------------------------------------------------
                                                          HEADER
  -------------------------------------------------------------------------------------------------------------------------------------------------- **/
  
  .gtm-hero-content .gtm-custom {
    font-size: 1.5rem;
  }
  }

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                    PETIT DESKTOP
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/

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

  .gtm-container-copyright::before {
    width: 60vw;
    height: 60vw;
  }
}

/** //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
--------------------------------------------------------------------------------------------------------------------------------------------------
                                                        DESKTOP
--------------------------------------------------------------------------------------------------------------------------------------------------
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// **/



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

  .gtm-container-copyright::before {
    width: 50vw;
    height: 50vw;
    max-width: 1000px;
    max-height: 750px;
  }

  .gtm-wrapper {
    padding-bottom: 165px;
  }

  .gtm-row-copyright {
    height: 165px;
  }

/* -----------------------------------------------------
                        ARTICLE
------------------------------------------------------- */

.gtm-article {
  padding: 0rem 60px 0px 60px;
}


/* -----------------------------------------------------
                        MODULES
------------------------------------------------------- */

*[class^="gtm-pos"] .moduletable{
  padding: 3rem 60px 10px 60px;
}

.gtm-pos-simple-l .moduletable {
  padding-right: 30px;
}
.gtm-pos-simple-r .moduletable {
  padding-left: 30px;
}

.gtm-pos-l .moduletable{
  padding-left: 60px;
  padding-right: 0px;
}

.gtm-pos-m .moduletable {
  padding-left: 30px;
  padding-right: 30px;
}

.gtm-pos-r .moduletable{
  padding-left: 0px;
  padding-right: 60px;
}

.gtm-pos-sl .moduletable {
  padding-left: 60px;
  padding-right: 0px;
}

.gtm-pos-lm .moduletable {
  padding-left: 40px;
  padding-right: 20px;
}

.gtm-pos-rm .moduletable {
  padding-left: 20px;
  padding-right: 40px;
}

.gtm-pos-sr .moduletable {
  padding-left: 0px;
  padding-right: 60px;
}

/* -----------------------------------------------------------
                    TITRES
------------------------------------------------------------ */

h1, h3 {
  font-size: 3.2rem;
}

.gtm-membre h1 {
  font-size: 3.2rem;
}



/* -----------------------------------------------------------
                    CLIP-PATH
------------------------------------------------------------ */

.gtm-clip {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 92%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 92%, 0 0);
}


.gtm-clip-img .gtm-custom {
  -webkit-clip-path: polygon(0 0, 100% 0, 93% 100%, 0 91%);
          clip-path: polygon(0 0, 100% 0, 93% 100%, 0 91%);
}
/* -----------------------------------------------------
                        RESEAUX SOCIAUX
------------------------------------------------------- */

/* ----- Position du social share en desktop ----- */

  .gtm-ms1.ms1 {
    top: 55%;
    right: 0;
    left: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  /* ----- Alignement vertical ----- */

  .rrssb-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* ----- Ne pas toucher ----- */

  .bw-social-share .rrssb-buttons {
    min-height: 42px;
  }
  .bw-social-share .rrssb-buttons li {
    height: 42px;
    padding-bottom: 3px;
    margin-bottom: 3px;
  }
  .bw-social-share {
    padding: 15px 5px 10px 5px;
  }

/* -----------------------------------------------------
                        OUPS
------------------------------------------------------- */

  .gtm-oups h3 {
    position: relative;
    z-index: 2;
    font-size: 4rem;
    color: #B32317;
  }
  .gtm-oups .gtm-custom p {
    position: relative;
    z-index: 2;
    max-width: 800px;
    font-size: 30px;
    color: #B32317;
  }

/* -----------------------------------------------------
                        MERCI
------------------------------------------------------- */

.gtm-merci h3 {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  color: #fff;
}
.gtm-merci .gtm-custom p {
  position: relative;
  z-index: 2;
  max-width: 800px;
  font-size: 30px;
  color: #fff;
}

/* -----------------------------------------------------
                        FORMULAIRE
------------------------------------------------------- */


.gtm-form {
  max-width: 100%;
}

/* -----------------------------------------------------
                        SCROLL TOP TOP
------------------------------------------------------- */

.gtm-scroll-top {
  bottom: 20px;
  display: block;
}

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

.gtm-recherche {
  width: 50%;
}


/** --------------------------------------------------------------------------------------------------------------------------------------------------
                                                        HEADER
-------------------------------------------------------------------------------------------------------------------------------------------------- **/

.gtm-logo-head {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  width: auto;
  z-index: 100;
}

.gtm-hero-content h3 {
  font-size: 4rem;
}

.gtm-hero-img img {
  max-height: 625px;
}

/* .gtm-box-hero-23 {
  min-height: calc(100vh - 80px);
} */

  .gtm-box-hero-23::before {
    width: 60vw;
    height: 60vw;
    bottom: 0%;
    top: auto;
  }

  
  .gtm-her-content {
    padding-top: 2rem;
  }
  
  .gtm-hero-content .gtm-custom {
    font-size: 1.3rem;
  }
  
  .gtm-hero-img img {
    border-bottom-left-radius: 0px;
  }

/* --------------- Header Credits --------------------- */



.gtm-hero-bg-credits .gtm-custom h1 {
  font-size: 5rem;
}

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

.gtm-conseil ul li {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: left;
}

.gtm-conseil ul li img {
  margin-bottom: 0px;
}


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

.gtm-box-footer-456 {
  left: 60px;
  width: calc(100% - 120px);
}

/** --------------------------------------------------------------------------------------------------------------------------------------------------
                                                        OUPS
-------------------------------------------------------------------------------------------------------------------------------------------------- **/

.gtm-oups {
  position: relative;
  left: 60px;
  min-height: calc(100vh - 120px);
  width: calc(100% - 120px) ;
}


}
