@font-face {
    font-family: "takt";
    src: url("../fonts/takt-regular.otf") format(opentype);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "takt";
    src: url("../fonts/takt-italic.otf") format(opentype);
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "mars";
    src: url("../fonts/marsstandard-regular.otf") format(opentype);
    font-weight: 400;
    font-style: normal;
}

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

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:visited,
a:active {
    color: inherit;
    text-decoration: none;
}

/* END RESET */

* {
    --gris: rgba(148, 148, 148, 1);
    --vert: rgba(0, 225, 0, 1);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* --big: 2.5em; */
    --big: 42px;
    --small: 0.75em;
    box-sizing: border-box;
}

body {
    font-family: "takt";
    font-size: 21px;
    line-height: 1.25;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html {
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 190px;
}

strong{
    font-weight: 400;
}

em,
i {
    font-style: italic;
}


.lesTarifs small,
.lesTarifs strong {
    font-family: "mars";
    font-size: 13px;
    font-weight: 500;
}


header .wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    font-size: max(30px, var(--big));
    text-transform: uppercase;
    height: 100px;
    padding: 0.75em 0.75em 3em;
}

header {
    height: 190px;
}

#logo,
#rappelPage {
    position: absolute;
    top: 7px;
    left: 20px;
    width: 33.333%;
}


#logo {
    width: 24%;
    left: 38%;
    height: auto;
    background-color: transparent;
    text-align: center;

    top: 7px;
}

.tpl-search #logo,
.tpl-search #rappelPage,
.tpl-activite #logo,
.tpl-agenda #logo {
    display: none
}


#btnMenu {
    background-color: #000;
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 1em;
    padding: .2em .4em .4em;
    z-index: 2;
}

#btnMenu:hover {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
}

#menu {
    position: fixed;
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: var(--big);
    line-height: 1.15;
}

#menu nav {
    width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

#menu nav>ul>li {
    position: relative;
    width: calc(50% - 0.5rem);
    height: 54px;
    margin-bottom: -1px;
    margin: 0 0 -1px;
}

#menu nav>ul>li>a {
    border-width: 1px 0;
    border-color: transparent;
    border-style: solid;
    width: 100%;
    display: block;
    line-height: 47px;
    height: 54px;
}

#menu nav>ul>li:first-of-type>a {
    border-width: 0px 0 1px;
}

#menu nav>ul>li:last-of-type>a {
    border-width: 1px 0 0px;
}

/* #menu nav > ul > li.nosub:after, */
#menu nav>ul>li#evenements:after,
#menu nav>ul>li#formations:after,
#menu nav>ul>li#residents:after,
#menu nav>ul>li#a-propos:after,
#menu nav>ul>li#pratique:after {
    content: "→";
    position: absolute;
    right: 0px;
    top: 0.11em;
}


#menu nav li>ul {
    display: none;
    font-size: 1rem;
    position: absolute;
    left: 100%;
    top: 0px;
    width: calc(100% - 0.5rem);
    font-size: 21px;
    flex-direction: column;
    padding-left: 1rem;
}

#menu nav li>ul li a {
    border: 1px solid transparent;
    height: 28px;
    margin-top: -1px;
    line-height: 22px;
    display: block;
}

#menu nav li a:hover,
#menu nav>ul>li.active>a {
    border-color: #000 transparent;
}

#menu nav .active a:active {
    color: var(--gris);
    border-color: var(--gris);
    border-width: 1px 0;
}

#menu nav>ul>li.active>ul {
    /* display: flex; */
}

#menu nav li:hover>ul {
    display: flex;
}

.menuOpen #menu {
    display: flex;
}

#btnCloseMenu {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    height: 49px;
    width: 49px;
}

.languages {
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 1rem;
    right: 8rem;
}

.languages li:not(.active) {
    color: var(--gris)
}

.languages li:nth-child(1) {
    border-right: 2px solid var(--gris);
    padding-right: 0.2em;
    margin-right: 0.2em;
    padding-bottom: 0.1em;
}

#heart {
    height: 500vmax;
    width: calc(500vmax / 1.22);
    background-color: #fff;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: -1;
}

#heart svg {
    width: 100%;
    height: 100%;
}

main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 0.5em;
    min-height: 50vh;
}

main>* {
    padding: 0 10px;
}

.tpl-agenda main nav {
    flex: 0 0 33.333%;
}

.tpl-agenda main article {
    flex: 0 0 66.6666%;
}

.tpl-agenda .mois {
    color: var(--gris);
}

.tpl-agenda main article li:last-of-type {
    border-bottom: 1px solid;
}

.tpl-agenda main article li {
    border-top: 1px solid;
}

.box {
    overflow: hidden;
    width: calc(50% - 1.5em);
    padding-top: 27%;
    margin: 0 0.75em 1.5em;
    mix-blend-mode: multiply;
    position: relative;
}

.tpl-home main {
    padding-top: calc(75vh - 100px);
}

.tpl-home .box {
    overflow: hidden;
    width: calc(50% - 1.5em);
    padding-top: 27%;
    margin: 0 0.75em 1.5em;
    mix-blend-mode: multiply;
    position: relative;
}


.box {
    border: 1px solid #000;
}

.box.les-inaccoutumes,
.box.inacc,
.box.les-inaccoutumes .content,
.box.inacc .content {
    color: var(--vert);
    border-color: var(--vert);
}

.box.les-inaccoutumes,
.box.inacc {
    transition: 0.5s border-color;
}

.box.les-inaccoutumes:hover,
.box.inacc:hover {
    border-color: #000;
    transition: 1s border-color;
}


.box .content {
    font-size: var(--big);
    line-height: 1.07;
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    background-color: transparent;
    width: max-content;
    height: 100%;
    transition-property: right, left;
    transition-duration: 0.3s;
}


.tpl-home .box .content {
    right: 0%;
    left: initial;
}

.box .cat {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.75rem 1.1rem;
    font-family: "mars";
    font-size: 20px;
}

.content.multi {
    width: 200%;
}

.tpl-home .box .content img {
    height: 100%;
    filter: grayscale(100) contrast(110%);
}

.box .content.multi .textWrapper {
    width: 50%;
    flex: 0 0 50%;
}

.box .content .textWrapper {
    padding: 0.6em 0.9em;
    flex: 0 0 calc(50vw - 0.9em);
    width: calc(50vw - 0.9em);
    box-shadow: rgb(0, 0, 0, 0.5) 40px 0px 80px 30px;
}


.diaporama {
    flex: 1 1 auto;
    position: relative;
}


.diaporama li {
    height: 100%;
}

.solo img {
    height: 100%;
    display: block;
}

.multi img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.multi .diaporama {
    flex: 0 0 50%;
}

.multi li {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}

.tpl-liste .box {
    color: var(--vert);
    width: 100%;
    padding-top: 50%;
    border-color: var(--vert);
}

.tpl-liste #en-cours .box:hover {
    background-color: var(--vert);
    color: #fff;
}

.tpl-liste #archives .box {
    color: var(--gris);
    border-color: var(--gris);
}

.tpl-liste .box .content {
    padding: 0.6em 0.9em;
    /* display: block; */
    width: 100%;
}

#breadCrumb {
    position: fixed;
    top: 20px;
    left: 20px;
    opacity: 0;
    transition: 0.15s opacity ease-in-out;
    z-index: 3;
    text-transform: uppercase;
}

#breadCrumb h1,
#breadCrumb h2 {
    display: inline-block;
}

#breadCrumb.show,
.tpl-activite #breadCrumb,
.menuOpen #breadCrumb {
    opacity: 1;
}

.flex {
    display: flex;
}

.column {
    flex-direction: column;
}

.flex>* {
    flex: 0 0 50%;
    width: 50%;
}

.third {
    flex: 0 0 33.33%;
    width: 33.333%;
}

.tpl-default main {
    padding: 0 20px;
    margin: 0 -10px;
    width: 100vw;
}

.navh3 ul {
    position: -webkit-sticky;
    position: sticky;
    top: 190px;
}

.navh3 .active {
    border-width: 1px 0;
    border-style: solid;
    border-color: #000;
}

.tpl-default article h3,
.tpl-event article h3,
.tpl-activite article h3 {
    border-width: 0px 0px 1px;
    border-style: solid;
    margin-bottom: 1em;
}

.tpl-event .dateEvent {
    font-size: 21px;
    white-space: nowrap;
    display: block;
    margin: 10px 0 23px;
}


h3.hide {
    opacity: 0;
    position: absolute;
    left: -9000px;
}


.tpl-default article p {
    margin-bottom: 1em;
}

.tpl-default article p+h3 {
    margin-top: 2em;
}

.tpl-default article figure:not(.logo) {
    position: absolute;
    max-width: calc(50% - 2em);
    width: 100%;
    transform: translateX(calc(-100% + -1em));
    display: flex;
    flex-direction: column;
    mix-blend-mode: multiply;
    justify-items: center;
    align-items: center;
}


figure a {
    width: 100%;
}

.tpl-default article img {
    display: block;
    width: 16vw;
    margin: 0 auto;
}

.tpl-default article .logo {
    display: inline-block;
}

.tpl-default article .logo img {
    display: inline-block;
    height: 50px;
    width: auto;
    /* max-width: 100%; */
    margin: 0;
    cursor: default !important;
    filter: grayscale(1);
}



.tpl-default article figcaption {
    opacity: 0;
    width: 100%;
    color: grey;
    padding-top: 0.5em;
    font-family: "mars", Arial, Helvetica, sans-serif;
    font-size: 0.7em;
    border-top: grey 1px solid;

}

figcaption em {
    font-style: normal;
    text-decoration: underline;
    color: var(--gris);
}

.tpl-default article figure:hover figcaption {
    opacity: 1;
}

.tpl-default article figure:hover img,
article .blockImage figure:hover img,
article .blockGalerie figure:hover img {
    /* cursor: pointer; */
    cursor: url('../img/zoom.svg')32 32, pointer;
}


.blockGalerie img,
.myVideo {
    width: 100%;
    margin-bottom: 1em;
    display: block;
}

section.block.blockImage,
section.block.blockGalerie {
    margin-bottom: 1em;
    padding-top: 1em;
}

.blockGalerie figure,
.blockImage figure {
    position: relative;
}

.blockGalerie img,
.blockImage img {
    max-width: 100%;
    display: block;
}

.blockGalerie figure:hover figcaption,
.blockImage:hover figcaption {
    opacity: 1;
}

.blockGalerie figcaption,
.blockImage figcaption {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    background-color: #fff;
    padding: 0 0.5em;
    bottom: 0px;
    left: 0px;
    font-family: "mars", Arial, Helvetica, sans-serif;
    font-size: var(--small);
}

.tpl-activite .navh3 li:nth-child(2) {
    border-top: 0px;
}

.tpl-activite main h2 {
    font-size: var(--big);
    line-height: 1.2;
    border-top: 1px solid;
    border-bottom: 1px solid;
    max-width: 100%;
    padding-right: 170px;
}

.tpl-activite main h2 #tags {
    position: absolute;
    top: 0px;
    right: 0;
    display: flex;
    flex-direction: column;
    font-size: 21px;
    max-width: 240px;
    text-align: right;
    padding-top: 2px;
}

.tpl-activite main h2 #tags .tag {
    display: inline-block;
    text-transform: lowercase;
}

#menu .btnBilletterie {
    font-size: 20.5px;
    position: absolute;
    right: 95px;
    top: auto;
    transform: none;
    left: auto;
    bottom: 40px;
}

.btnBilletterie,
.btnProgramme {
    position: sticky;
    display: inline-block;
    top: calc(100vh - 150px);
    border: 1px solid;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
    width: 205px;
    height: 107px;
    background-color: #000;
    left: 25%;
    transform: translateX(-50%);
}

.btnBilletterie a:hover,
.btnProgramme a:hover {
    color: #fff;
    background-color: #000;
}

.btnBilletterie a,
.btnProgramme a {
    position: absolute;
    display: flex;
    background-attachment: green;
    width: calc(100% - 2px);
    height: calc(100% - 0px);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0 50%);
    background-color: #fff;
    top: 0px;
    left: 1px;
    justify-content: center;
    align-items: center;
    vertical-align: baseline;
}

.btnProgramme {
    clip-path: none;
    width: 160px;
    height: 160px;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
}

.btnProgramme a {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: none;

    background: transparent;
}


.myVideo {
    padding-top: calc(100% / (16 / 9));
    ;
    width: 100%;
    position: relative;
    display: block;
}

.myVideo iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.slug-pratique iframe{
    margin: 1em 0;
}

h4 {
    font-size: var(--big);
    border-bottom: 1px solid;
}

.blockProgramme h4:last-of-type {
    border-bottom: 0px solid;
}

h4:hover {
    color: var(--gris)
}

section.block {
    margin-bottom: 2em;
    border-top: 1px solid #000;
}

.tpl-activite article section:last-child {
    min-height: calc(100vh);
}


.tpl-activite .blockText br {
    content: "&nbsp;" !important;
}

.tpl-activite .blockText br::after {
    content: "\000A\0009";
    white-space: pre;
}

.blockText ul {
    margin-bottom: 1em;
}

.blockText ul li::before {
    content: "\0009";
    white-space: pre;
}

.blockText p a {
    text-decoration: underline;
}

/* .blockText hr + p br{
    content: "" !important;
}

.blockText hr + p br::after {
    content: "\000A";
    white-space: normal;
} */

.blockText p {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;

    -webkit-hyphenate-limit-before: 4;
    /* For Safari */
    -webkit-hyphenate-limit-after: 4;
    /* For Safari */
    -ms-hyphenate-limit-chars: 10 3 4;
    hyphenate-limit-chars: 10 3 4;
    margin-bottom: 1em;
}

.past,
.inacc.past {
    color: var(--gris);
    border-color: var(--gris);
    pointer-events: none;
}

li.inacc {
    color: var(--vert);
    border-color: var(--vert);
}

#target {
    border-top: 1px solid;
    text-transform: uppercase;
    position: sticky;
    top: 0px;
}

#target>span:first-child {
    display: inline-block;
    width: 27%;
    min-width: 6em;
}

#filters {
    position: sticky;
    top: calc(100vh - 7em);
    background-color: #fff;
    /* transform: translateY(calc(-100% - 1em)); */
    color: var(--gris);
    cursor: pointer;
}

.masquer {
    opacity: 0;
}

.filtered .masquer {
    opacity: 1;
}

#filters li.selected,
#filters li:hover {
    color: #000;
}

.tpl-agenda article li {
    text-transform: uppercase;
}

.tpl-search article li {
    border-top: 1px solid;
    padding: 0.1em 0 1em;
    color: var(--gris);
}

.tpl-search article li:hover {
    color: #000;
}

.tpl-search article li mark {
    background-color: transparent;
    color: #000;
}

.tpl-search #inputField {
    border: 0px;
    padding: 0;
    font-family: "takt";
    font-size: 1em;
    border-width: 1px 0;
    border-style: solid;
    width: 100%;
}


.tpl-search #inputField:focus {
    outline: none;
}

.tpl-search input::placeholder {
    color: #000;
}


/* Photoswipe */
.pswp--custom-bg {
    --pswp-bg: #fff;

}

.pswp {
    --pswp-bg: #fff;
    --pswp-placeholder-bg: #fff;
}

.pswp__img,
.pswp__zoom-wrap {
    display: flex;
    object-fit: contain;
    padding: 60px;
}

.pswp--custom-icon-colors {
    --pswp-icon-color: #00fffc;
    --pswp-icon-color-secondary: #333;
}

.pswp__button--close {
    margin: 1.5rem;
}

.pswp__button--arrow--next {
    right: 0.6em;
}

.pswp__button--arrow--prev {
    left: 0.6em;
}

.pswp__item iframe {
    position: relative;
    top: 50%;
    left: 50%;
    width: 75vw;
    height: 42vw;
    transform: translate(-50%, -50%);
}

.pswp__custom-caption {
    position: absolute;
    bottom: 1em;
    left: 1em;
    font-family: "mars", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: var(--small);
}

.pswp__custom-caption em {
    font-style: normal;
    text-decoration: underline;
}

footer {
    background-color: var(--gris);
    /* min-height: 50vh; */
    width: 100%;
    z-index: 1;
    position: relative;
    bottom: 0px
}

footer a:hover,
footer .edit-cookie:hover {
    color: #fff;
    cursor: pointer;
}

footer>div,
footer div>div {
    padding: 0 0.5em;
}

#footerLogos {
    display: flex;
    justify-items: start;
    align-items: end;
    mix-blend-mode: multiply;
    flex-wrap: wrap;
}

#footerLogos div {
    flex: 0 0 auto;
    padding: 0 20px;
}

#footerLogos div img {
    max-height: 100px;
    max-width: 150px;
    width: auto;
    height: auto;
}

#footerLink {
    flex-wrap: wrap;
}

#footerLink>* {
    flex: 1 0 50%;

}

#footerLink>*:nth-child(3) {
    flex: 0 0 100%;
    margin-top: 1em
}

article table {
    width: 100%;
}

article table tr th {
    font-size: var(--small);
    padding: 0 0 3px;
    border-bottom: 1px solid #000
}

article table tr td {
    border-bottom: 1px solid #000;
    padding: 1px 3px 2px;
}

article table tr:nth-child(odd) td {
    background-color: #eee;
}

@media screen and (max-width: 750px) {

    * {
        --big: 1.8em;
    }

    #btnMenu {
        z-index: 10;
    }

    html {
        scroll-padding-top: 120px;
    }

    body {
        font-size: 16px;
    }

    .tpl-home .box {
        width: 100%;
        padding-top: 52%;
        margin: 0 0px 2em;
    }


    #logo {
        width: 100%;
        left: 0;
        margin: 0;
        top: 0em;
        padding: 0.3em;

    }

    .tpl-home #rappelPage {
        display: none;
    }

    #logo img {
        width: 200px;
    }

    #rappelPage {
        display: none;
    }

    #breadCrumb {
        background-color: #ffffffdd;
        margin: 0px;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem 70px 1.5em 1.45em;
    }

    
    h2#pageTitle.hide {
        display: none;
    }
    

    main {
        flex-direction: column;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }

    .tpl-home main {
        padding-top: calc(50vh - 100px);
    }


    .box .cat {
        font-size: 15px;
    }

    main nav,
    main article {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    #menu nav>ul>li {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 0 -1px 0;

    }

    #menu nav {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        padding: 30px;
    }

    #menu nav>ul>li>a {
        border-width: 1px 0;
        border-color: transparent;
        border-style: solid;
        width: 100%;
        display: block;
        line-height: 36px;
        height: auto;
    }

     /* .tpl-event .navh3 {
        display: none;
    } */
    /*
    .tpl-activite .navh3 {
        display: block;
    } */
    .tpl-activite .navh3 ul{
        margin-bottom: 0;
    }
    .tpl-activite .navh3 ul li{
        width: 100%;
    }

    h2#pageTitle {
        font-size: var(--big);
        text-transform: uppercase;
    }

    body.menuOpen h2 {
        opacity: 0;
        display: none;
    }

    .tpl-activite .navh3 h2{
        padding-right: 0px;
        width: 100%;
        border-bottom: 0;
    }

    footer>div {
        flex-direction: column-reverse;
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .blockHoraires>.flex {
        flex-wrap: wrap;
        gap: 30px 0;
        position: relative;
    }

    .blockHoraires .btnBilletterie {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 130px;
        height: 75px;
        transform: none;
        left: auto;
    }

    .tpl-agenda main article li a {
        display: flex;
    }

    #menu nav li>ul {
        display: none;
        font-size: 1rem;
        position: static;
        left: 100%;
        top: 0px;
        width: 100%;
        font-size: 18px;
        flex-direction: column;
        padding-left: 0rem;
        line-height: 0.7 !important;
    }


    .blockHoraires>.flex .third {
        flex-basis: 50%;
        width: 50%;
    }

    .blockHoraires>.flex .third:first-child {
        flex-basis: 100%;
        width: 100%;
    }

    .box {
        margin: 0 0em 1.5em;
    }


    .content.multi {
        width: 100%;
    }


    .box .content.multi .textWrapper {
        width: 100%;
        flex: 0 0 100%;
    }
    .content.solo {
        left: 0 !important;
        right: initial !important;
        width: 100%;
        display: block;
    }

    .box .content .textWrapper {
        padding: 0.3em 0.6em;
        flex: 0 0 100%;
        width: 100%;
        box-shadow: none;
        height: 100%;
    }
    .tpl-activite article section:last-child {
        min-height: auto;
    }
    #footerLink p {
        padding: 0 10px;
    }

    footer>div>div {
        width: 100% !important;
        margin: 0px 0px 20px;
    }
    
    .slug-formations .navh3{
        display: block;
    }
    .navh3 {
        position: sticky;
        top: 60px;
        background-color: #ffffffdd;
        z-index: 1;
        margin-bottom: 1em;
    }

    
    .tpl-event .navh3,
    .tpl-activite .navh3{
        position: static;
    }
   
    .navh3 ul{
        display: flex;
        flex-direction: row;
        justify-content: start;
        padding: 0.5em 0 1em;
        text-transform: uppercase;
        gap: 16px;
        overflow-x: scroll;
    }



    #filters li,
    .tpl-default #pageNav li{
        white-space: nowrap;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .tpl-default #pageNav::-webkit-scrollbar,
    #filters::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .tpl-default #pageNav,
  #filters {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

    .navh3 .active {
        border: none;
    }
    .navh3 .active::after {
        content: '•';
        position: absolute;
    }


    #footerLogos div {
        flex: 0 0 auto;
        padding: 0 10px 0px 10px;
    }

    #footerLogos {
        align-items: start;
    }

    .tpl-default article figure:not(.logo) {
        position: relative;
        max-width: 100%;
        width: 100%;
        transform: none;
        display: flex;
        flex-direction: column;
        mix-blend-mode: multiply;
        justify-items: center;
        align-items: center;
        margin-bottom: 1em;
    }

    .tpl-default article figcaption {
        opacity: 1;

    }

    .tpl-default article img {
        display: block;
        width: 75vw;
        margin: 0 auto 0px;
    }

    .pswp__img,
    .pswp__zoom-wrap {
        padding: 10px;
    }

    .eventEl a span:first-child,
    .eventEl a span:nth-child(2) {
        width: 4em;
        flex: 0 0 4em;
    }

    
    

}