/* base.css --- 2024-09-04 19:09:42 */
html,
body {
    height: 100%;
    background: white;
    font-family: 'Karla', sans-serif;
    font-size: 100%;

}



#content {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Merriweather", serif;
}


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

    html,
    body {
        font-size: 96%;
    }
}



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

    html,
    body {
        font-size: 92%;
    }
}

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

    html,
    body {
        font-size: 88%;
    }
}

@media (max-width: 499px) {

    html,
    body {
        font-size: 85%;
    }
}

* {
    outline: none !important;
}

.form-control {
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #ccc !important
}

.clearfix {
    clear: both;
    width: 100%;
    height: 1px;
}

.pull-left {
    margin: 0 5px 0 0;
}

.btn {
    box-shadow: none !important;
    outline: none;
    cursor: pointer
}

img {
    max-width: 100%;
    height: auto !important;
}

.pointer {
    cursor: pointer
}



.small {
    font-size: 90%;
}

.width-100pc {
    width: 100%;
}

.upper {
    text-transform: uppercase;
}

.relative {
    position: relative !important;
}



.container-fluid {
    padding: 0;
    max-width: 96%;
    width: 96%;
    margin: 0 auto;
}



.container {
    padding: 0 !important;
    max-width: 1200px !important;
    width: 96% !important;
    margin: 0 auto !important;
}



#above-all {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(90, 90, 90, 0.2);
    z-index: 999;
    display: none;
}

a.carret::before {
    content: "\f105";
    /* Code Unicode pour 'fa-arrow-right' dans FA6 */
    font-family: 'Font Awesome 6 Free';
    /* Assure-toi que le nom de la famille de polices correspond à ce qui est inclus dans ton projet */
    font-weight: 900;
    /* Font Awesome 6 utilise 900 pour les icônes solides */
    margin-right: 5px;
    /* Espacement entre le texte et l'icône, ajuste selon tes besoins */
}

a.carret {
    text-decoration: none;
}

a.carret:hover::before {
    margin-right: 2px;

}

/* homepage-logos-banner.css --- 2024-09-04 19:09:42 */
article#logos-banner {
  padding: 60px 0;
}

article#logos-banner h2 {
  color: var(--reflex-blue) !important;
}

article#logos-banner h2 span::after {

  background-color: var(--reflex-blue) !important;

}

/* menu.css --- 2024-09-04 19:09:42 */
@media screen and (min-width: 1024px) {
    #menu-wrapper {
        /* background-color: #8bbdc4; */
        background-color: var(--blue);
    }

    #menu-wrapper>div {
        max-width: 1200px;
        margin: 0 auto;
    }

    #menu-burger {
        margin-left: 15px;
        font-size: 2rem;
        color: white;
        display: none;
    }

    header #menu a {
        display: block;
        text-decoration: none;
        font-family: "Merriweather", serif;
    }

    header #menu {
        display: block;
        position: relative;
        padding: 0 0;
        z-index: 1000;
        font-family: 'Ubuntu', sans-serif;
    }

    header #menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    header #menu ul.level0 {
        display: flex;
        align-items: stretch;
        justify-content: center;
    }

    header #menu li.level0 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        position: relative;
    }

    header #menu li.level0:last-child {
        border-right: none;
    }

    header #menu li.level0>a {
        margin: 0;

        height: 40px;
        padding: 5px 10px;

        display: block;
        font-size: 0.85rem;
        color: #312682;
        text-transform: uppercase;
        display: flex;
        /* background-color: #9abec4; */
        align-items: center;
        transition: all 300ms;
        line-height: 1.1;
        font-size: 0.95rem;
        border-right: 1px solid rgba(220, 220, 220, 0.8);
    }

    header #menu ul.level1 {
        display: block;
        position: absolute;
        max-height: 0;
        left: 0;
        top: 100% !important;
        top: calc(100% - 2px);
        min-width: 230px;
        background-color: white;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        overflow: hidden;
        transition: all 700ms;
        border-top: none;
    }

    header #menu li:hover>ul.level1 {
        transition: all 700ms;
        max-height: 400px;
        border: 1px solid #eee;
        border-top: none;
    }

    header #menu li.level1>a {
        display: block;
        padding: 10px 25px;
        border-bottom: 1px solid #eee;
        color: #312682;
        font-size: 100%;
    }

    header #menu li.level1:last-child>a {
        border-bottom: none;
    }

    header #menu li:hover {
        background-color: var(--blue);
    }

    header #menu li:hover>a {
        color: white;
        background-color: #312682;
    }

    header #menu li.level0.invert {
        background-color: var(--green);
        background-color: white;
        border-top: 1px solid var(--blue);
        border-bottom: 1px solid var(--blue);
    }

    header #menu li.level0.invert a {
        color: var(--blue);
    }

    header #menu li.level0.invert:hover {
        background-color: var(--blue);
    }

    header #menu li.level0.invert:hover a {
        color: white;
    }
}

@media screen and (max-width: 1023px) {
    #menu-wrapper a {
        text-decoration: none;
    }

    #menu-wrapper {
        background-color: transparent;
    }

    #menu-burger {
        display: block;
        position: fixed;
        top: 45px;
        right: 1%;
        z-index: 1001;
        cursor: pointer;
    }

    #menu-burger img {
        display: none;
    }

    #menu-burger:after,
    #menu-burger:before {
        position: absolute;
        top: 0px;
        right: 0;
        font-family: "FontAwesome";
        font-size: 2.5rem;
        background: none;

        padding: 5px 8px;
        line-height: 1;
        transition: all 1000ms;
    }

    #menu-burger:before {
        content: "\f0c9";
        color: var(--reflex-blue);
    }

    #menu-burger:after {
        content: "\f00d";
        color: white;
        opacity: 0;
    }

    .menu-on #menu-burger:before {
        opacity: 0;
    }

    .menu-on #menu-burger:after {
        opacity: 1;
    }

    #menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        height: 100vh;
        width: 400px;
        max-width: 0;
        overflow-y: auto;
        transition: all 200ms;
        background: var(--reflex-blue);
        border-left: 1px solid white;
        padding-top: 100px;
    }

    #menu ul {
        margin: 0 0 0 15px;
        padding: 0;
        list-style: none;
    }

    #menu ul.level0 {
        width: 350px;
        margin: 0;
        padding: 50px 25px 50px 50px;
        list-style: none;
        font-size: 1.2rem;
    }

    #menu li.level0 {
        margin: 0 0 15px;
    }

    #menu li.level1 {
        padding-left: 15px;
        position: relative;
    }

    #menu li.level1:before {
        font-family: "FontAwesome";
        font-weight: 900;
        content: "\f054";
        position: absolute;
        top: 1px;
        left: 0;
        color: white;
        font-size: 90%
    }

    #menu ul.level1 {
        padding-top: 5px;
    }

    #menu li.level1 {
        padding-bottom: 3px;
    }

    #menu a {
        color: white !important;
    }

    #menu li.level0>a {
        font-weight: 900;
    }

    body.menu-on #above-all {
        display: block;
    }

    body.menu-on #menu {
        max-width: 90%;
        transition: all 1000ms;
    }

    body.menu-on {
        overflow: hidden;
        height: 100%;
    }
}

@media screen and (max-width: 576px) {}

/* colors.css --- 2024-09-04 19:09:42 */
:root {
  --gray: rgba(150, 150, 150, 1);
  --gray-9: rgba(192, 189, 196, 0.9);
  --gray-8: rgba(192, 189, 196, 0.8);
  --gray-7: rgba(192, 189, 196, 0.7);
  --gray-6: rgba(192, 189, 196, 0.6);
  --gray-5: rgba(192, 189, 196, 0.5);
  --gray-4: rgba(192, 189, 196, 0.4);
  --gray-3: rgba(192, 189, 196, 0.3);
  --gray-2: rgba(192, 189, 196, 0.2);
  --gray-1: rgba(192, 189, 196, 0.1);
  --white: #fff;
  --black: #000;
  --reflex-blue: #312682;
  --reflex-blue: rgba(49, 38, 130, 1);
  --reflex-blue-90: rgba(49, 38, 130, 0.9);
  --reflex-blue-80: rgba(49, 38, 130, 0.8);
  --reflex-blue-70: rgba(49, 38, 130, 0.7);
  --reflex-blue-60: rgba(49, 38, 130, 0.6);
  --reflex-blue-50: rgba(49, 38, 130, 0.5);
  --reflex-blue-40: rgba(49, 38, 130, 0.4);
  --reflex-blue-30: rgba(49, 38, 130, 0.3);
  --reflex-blue-20: rgba(49, 38, 130, 0.2);
  --reflex-blue-10: rgba(49, 38, 130, 0.1);

  --reflex-blue-hover: #3b29c2;

  --navy-blue: #021d3d;
  --ocre: rgba(188, 179, 170, 1);
  --ocre-80: rgba(188, 179, 170, 0.8);
  --ocre-70: rgba(188, 179, 170, 0.7);
  --ocre-60: rgba(188, 179, 170, 0.6);
  --ocre-50: rgba(188, 179, 170, 0.5);
  --ocre-40: rgba(188, 179, 170, 0.4);
  --ocre-30: rgba(188, 179, 170, 0.3);

  --ocre-20: rgba(188, 179, 170, 0.2);
  --ocre-10: rgba(188, 179, 170, 0.1);
}




.text-blue {
  color: var(--blue);
}

.text-yellow {
  color: var(--yellow);
}

.text-green {
  color: var(--green);
}


.btn-red {
  background-color: var(--red);
  color: white;
}


.btn-red:hover {

  color: var(--red-hover);
  background-color: white;
  border-color: var(--red-hover);
}


.btn {
  text-decoration: none !important;
}

.btn-outline-blue {
  background-color: white;
  border: 2px solid var(--reflex-blue);
  padding: 5px 15px;
  border-radius: 5px;
  color: var(--reflex-blue) !important;

}

.btn-outline-blue:hover {
  border: 2px solid var(--reflex-blue-hover);
  background-color: var(--reflex-blue-hover);
  color: white !important;
}




.btn-blue {
  background-color: var(--reflex-blue);
  color: white !important;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 5px;
}

.btn-blue:hover {
  background-color: var(--reflex-blue-hover);
}



article.bg-blue {
  background-color: var(--blue) !important;
  color: white !important;
}

article.bg-blue a {
  color: white !important;
  text-decoration: underline !important;
}


/*
article.bg-green {
  background-color: var(--green) !important;
  color: white !important;
}

article.bg-green a {
  color: white !important;
  text-decoration: underline !important;
}

*/

.dark-gray-bg {
  background-color: #8bbdc4 !important;
}

.text-white,
.text-white * {
  color: white !important;
}

.text-green,
.text-green * {
  color: var(--green) !important;
}

.bg-gray {
  background-color: #8bbdc4;
}

/* article-default.css --- 2024-09-04 19:09:42 */
body.infos .article-default {
    padding-bottom: 40px;
    font-size: 1rem;
}

body.infos .article-default .article-inner {}

body.infos .article-default .article-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

body.infos .article-default.att-position-right:not(.att-layout-gallery) .article-content {
    flex-direction: row-reverse;
}

body.infos .article-default .wordings {
    flex: 1;
}

body.infos .article-default.att-position-left:not(.att-layout-gallery) .wordings {
    padding-left: 5%;
}

body.infos .article-default.att-position-right:not(.att-layout-gallery) .wordings {
    padding-right: 5%;
}

body.infos .article-default.att-width-50pc:not(.att-layout-gallery) .attachments {
    flex: 0 0 45%;
    width: 45%;
}

body.infos .article-default.att-width-33pc:not(.att-layout-gallery) .attachments {
    flex: 0 0 30%;
    width: 30%;
}

body.infos .article-default.att-width-25pc:not(.att-layout-gallery) .attachments {
    flex: 0 0 20%;
    width: 20%;
}

body.infos .article-default .article-title {
    margin-bottom: 25px;
}






body.infos .article-default.att-layout-gallery .attachments {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

body.infos .article-default.att-layout-gallery .att {
    padding: 7px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px;
}

body.infos .article-default.att-layout-gallery .att img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    position: absolute;
    top: 0%;
    left: 0%;
    border: #D4DDDE 1px solid;
}

body.infos .article-default.att-layout-gallery.att-width-25pc .attachments .att {
    flex: 0 0 calc(25% - 10px);
    padding-top: calc(25% - 10px);
}

body.infos .article-default.att-layout-gallery.att-width-33pc .attachments .att {
    flex: 0 0 calc(33.333333333333% - 10px);
    padding-top: calc(33.333333333333% - 10px);
}

body.infos .article-default.att-layout-gallery.att-width-50pc .attachments .att {
    flex: 0 0 calc(50% - 10px);
    padding-top: calc(50%- 10px);
}

body.infos .article-default.att-layout-gallery.att-width-66pc .attachments .att {
    flex: 0 0 calc(66.666666666666666% - 10px);
    padding-top: calc(66.666666666666666%- 10px);
}

body.infos .article-default.att-layout-gallery.att-width-75pc .attachments .att {
    flex: 0 0 calc(75% - 10px);
    padding-top: calc(75% - 10px);

}






body.infos .article-default .attachments {
    margin-bottom: 25px;
}


body.infos .article-title {
    color: var(--reflex-blue)
}



body.infos .article-default .article-title {
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    padding-left: 44px;

}

body.infos .article-default .article-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    display: inline-block;
    width: 32px;
    /* Ajuste la largeur de l'image selon tes besoins */
    height: 32px;
    /* Ajuste la hauteur de l'image selon tes besoins */
    background-image: url('/img/pin-h2.png');
    background-size: contain;
    /* Assure que l'image s'adapte bien */
    background-repeat: no-repeat;
    margin-right: 8px;
    /* Espace entre l'image et le texte */
    vertical-align: middle;
    /* Aligne l'image au centre verticalement */
}




body.infos .article-text {
    text-align: justify;
    font-size: 1rem;
    color: rgb(52, 52, 68);
}



body.infos .article-default h3 {
    font-size: 1.1rem;
    color: var(--reflex-blue);
    margin: 0 0 15px 0;
    position: relative;
    padding: 0 0 0 0px;
    font-weight: bold;
    text-align: left;

}



body.infos .article-default h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--ocre);
    margin: 10px 0 0;
}

body.infos .article-default a {
    color: var(--reflex-blue);
    text-decoration: underline;
}

article.article-default .chapeau {
    font-size: 120%;
    font-weight: bold;
}

body.infos .article-default h4 {
    font-size: 1rem;
    color: #111;
    margin: 0 0 25px 0;
    position: relative;
    padding: 0 0 0 25px;
    font-weight: bold;
    text-align: left;
}






@media screen and (min-width: 768px) {
    body.infos .article-default div.two-columns {
        column-count: 2;
        column-gap: 20px;
    }

}

body.infos .article-default div.two-columns p,
body.infos .article-default div.two-columns li {
    text-align: left;
}


@media screen and (max-width: 991px) {
    .article-default .container {

        max-width: 96%;
    }

}

@media screen and (max-width: 767px) {
    .article-default .article-content {
        flex-direction: column !important;

    }

    .article-default .wordings {
        width: 100%;
        padding: 0 15px 0;
    }

    .article-default .attachments {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 0px;
    }

    .article-default .wordings {
        width: 100%;
        padding: 0 15px 0;
    }


    .article-default .article-title {
        /* text-align: center; */
    }



    body.infos .article-default .article-content {
        flex-direction: column !important;
    }

    body.infos .article-default.att-width-50pc .attachments {
        width: 100% !important;
        flex: 1 0 100% !important;
    }

    body.infos .article-default.att-width-100pc .attachments {
        width: 100% !important;
        flex: 1 0 100% !important;
    }

    body.infos .article-default.att-position-left .wordings,
    body.infos .article-default.att-position-right .wordings {
        padding: 0;
    }

    body.infos .article-default.att-position-right .article-content {
        flex-direction: column-reverse !important;
    }

    body.infos .article-default .attachments {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    body.infos .article-default .btn {
        margin-bottom: 15px;
    }
}

/* cutsom-card.css --- 2024-09-04 19:09:42 */
.custom-card-group {
  background-color: var(--ocre-20);
  padding: 50px 0 100px;
}

.custom-card-group .articles-group-wrapper {
  max-width: 96%;
  width: 1200px;
  margin: auto;
}

.custom-card-group .articles-group-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

}

.custom-card-group article {
  flex: 0 0 33%;
  padding: 0 15px;
}

.custom-card-group article .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
}









.custom-card .contents {
  padding: 10px 15px;
  flex: 1;
  text-align: center;
}

.custom-card .contents h2 {
  font-size: 130%;
  margin: 20px 0 25px;
  padding: 0;
  font-weight: bold;
}

.custom-card .contents h2 span {
  position: relative;
  padding: 0 0 15px 0;
  margin: 0 !important;

}

.custom-card .contents h2 span:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;

  background-color: var(--reflex-blue);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  /* ajuste la valeur pour l'espacement souhaité sous le titre */
}


.custom-card .contents p {
  margin: 0;
  padding: 0;
}

.custom-card .attachment {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.custom-card .attachment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.custom-card .article-link {
  width: 100%;
  padding: 25px 0;
  text-align: center;
}


@media screen and (min-width: 768px) and (max-width: 960px) {
  .custom-card-group article {

    padding: 0 7px;

  }

}



@media screen and (max-width: 767px) {
  .custom-card-group article {
    flex: 0 0 100%;

    margin-bottom: 20px;
  }

}

/* footer.css --- 2024-09-04 19:09:42 */
/* footer */
#footer {
    background-color: #45403c;
    color: white;
    font-size: 0.9rem;
    padding: 50px 0 35px;
    max-width: 100vw;
    overflow: hidden;
}


#footer p {
    line-height: 1.4;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
}

#footer .row>div {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: top;
}

#footer .gray-spacer {
    padding-top: 5%;
    background: #fAfAfA;
    margin-bottom: 30px;
}

#footer a {
    color: var(--ocre);
    text-decoration: none;
}

#footer a:hover {
    text-decoration: underline;
}

#footer-bloc-left {}

#footer-bloc-left ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

#footer-bloc-left>ul {

    border-left: 1px white solid;
}

#footer-bloc-left>ul ul {
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 500ms;
}

#footer-bloc-left li {

    padding-right: 25px;
    max-width: 200px;
}

#footer-bloc-left li span {
    display: inline-block;
    position: relative;
    padding-right: 25px
}

#footer-bloc-left li.has-children span:after {
    font-family: "FontAwesome";
    font-weight: 900;
    content: "\f107";
    position: absolute;
    top: 0;
    right: 0
}

#footer-bloc-left li.opend span:after {
    content: "\f106";
}

#footer-bloc-left>ul li.opened ul {
    padding-top: 5px;
    max-height: 200px;
}

#footer-bloc-left li {
    padding: 3px 0 3px 10px;
    margin: 0;
}

#footer-bloc-left li:first-child {
    padding-top: 0;
}

#footer-bloc-left li:last-child {
    padding-bottom: 0;
}

#footer h3 {
    margin-bottom: 7px;
    font-size: 1.0rem;
}

#footer .reseaux-sociaux {
    margin-right: -10px
}

#footer-bloc-right {
    text-align: right;
}

#footer .reseaux-sociaux h3 {
    color: #fff !important;
}

#footer .reseaux-sociaux img {
    max-height: 40px;
    width: auto !important;

    transition: all .2s ease-in-out;
}

#footer .reseaux-sociaux img:hover {
    transform: scale(1.1);
}

#footer-bloc-center {}

#footer-bloc-center h3 {
    text-align: center;
    color: #008D36;
}

#footer-bloc-right {
    text-align: center;
}

#footer a img {
    opacity: 0.8;
    transition: all 500ms;
}

#footer a:hover img {
    opacity: 1;
    transform: scale(1.1)
}


#footer-bottom {}

#footer-bottom .separator {
    display: inline-block;
    margin-left: 5px;
}

.short-sep {
    width: 40px;
    height: 3px;
    display: inline-block;
    background-color: var(--reflex-blue);
    font-size: 0;
}

@media (min-width: 992px) {
    .footer-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-block;
    }

    .footer-menu li {
        padding: 7px 0;
        margin: 0 0 0 0;
        line-height: 1;
        font-size: 1.2rem;
        display: inline-block;
    }

    .footer-menu a {
        color: white;
        display: inline-block;
        padding: 0 10px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .footer-menu li a {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    #footer .container {
        max-width: 100%;
    }

    .footer-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-block;
    }

    .footer-menu li {
        padding: 7px 0;
        margin: 0 0 0 0;
        line-height: 1;
        font-size: 1rem;
    }

    .footer-menu li a {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    #footer .row {
        flex-direction: column;
        align-items: center;
    }

    #footer .row>div {
        margin-bottom: 15px;
        text-align: center !important;
    }


}

/* article-budget-oratoire.css --- 2024-09-04 19:09:42 */
article.budget-oratoire {
  background-color: var(--ocre-10);

}

article.budget-oratoire .article-title {}

article.budget-oratoire .circles {
  position: relative;
  height: 450px;
  font-size: 0.9rem;
  line-height: 1.2;
}

article.budget-oratoire .circles h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 10px;
  padding: 0;
  text-align: center !important;
  color: white;
}


article.budget-oratoire .circles h3::after {
  display: none !important;


}

article.budget-oratoire .circles p {
  font-size: 1rem;
  line-height: 1.2;
  margin: 10px;
  padding: 0;
}

article.budget-oratoire .circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: 1000ms;
  opacity: 1;

}

article.budget-oratoire #circle-1 {
  width: 420px;
  height: 320px;
  background-color: var(--reflex-blue-60);
  top: 0%;
  left: 15%;

  animation-delay: 1s;

}

article.budget-oratoire #circle-2 {
  width: 360px;
  height: 280px;
  background-color: var(--reflex-blue-80);
  top: 30%;
  left: 40%;

  animation-delay: 2s;
}

article.budget-oratoire .circle-content {
  font-size: 1.2em;
  color: white;
}

article.budget-oratoire .highlight {
  font-weight: bold;
  color: var(--reflex-blue);
  color: white;
}

article.budget-oratoire.in-viewport .circle {
  opacity: 1;
}

/* attachments.css --- 2024-09-04 19:09:42 */
.first-att .img-wrapper {
    border: 2px solid var(--ocre-10);
    border-radius: 7px;
    padding: 7px;
    background-color: #eee;
    text-align: center;

}


.first-att .img-wrapper img {
    border-radius: 7px;



}

.attachmentTexte {
    display: none;
}

.first-att .attachmentTexte {
    display: block;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-size: 0.9em;
    color: var(--reflex-blue);
    line-height: 1.1;
    padding: 7px 0;

}


/*
.attachments:not(.gallery) {
    width: 50%;
    margin-right: 30px;
    font-size: 0;
}

.attachments.width-25pc:not(.gallery) {
    width: 25%;
}

.attachments.width-33pc:not(.gallery) {
    width: 33%;
}

.attachments.width-50pc:not(.gallery) {
    width: 50%;
}

.attachments.width-66pc:not(.gallery) {
    width: 66%; 
}

.attachments.width-75pc:not(.gallery) {
    width: 75%;
}

.attachments.width-100pc:not(.gallery) {
    width: 100%;
}

.attachments.width-100pc {
    width: 100%;

}

.attachments.right:not(.gallery) {

    margin-left: 30px;
    margin-right: 0;
}

.attachments.center:not(.gallery) {

    margin-left: auto;
    margin-right: auto;
}

.attachments:not(.gallery) .att {
    position: relative;
}

.attachments:not(.gallery) .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.7rem;
    padding: 5px 10px;
    line-height: 1;
    text-align: left;
}

.attachments.first-large .att {
    padding: 1px;
}

.attachments.first-large .following {
    width: 25%;
    float: left
}

.attachments.first-large .following a {
    display: block;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.attachments.slider {
    position: relative;
}

.attachments.slider .inner {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.attachments.slider .att {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border: 1px solid #aaa;
    width: 100%;
    height: 100%;
    background: #eee;
}

.attachments.slider .att a {
    display: block;
    text-align: center;
    ;
    height: 100%;
}

.attachments.slider img {
    max-height: 100%;
}

.attachments.slider .current {
    z-index: 10;
}

.attachments.slider .next {
    z-index: 11;
    opacity: 0;
}

.attachments.slider .caption {}

.attachments:not(.gallery) .nav {
    position: absolute;
    top: 40%;
    width: 90%;
    left: 5%;
    z-index: 20;
}

.attachments:not(.gallery) .nav span {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    color: white
}

.attachments:not(.gallery) .nav .nav-left {
    float: left
}

.attachments:not(.gallery) .nav .nav-right {
    float: right
}




@media (max-width: 767px) {
    .attachments {
        float: none !important;
        width: 100% !important;
        margin: 0 0 30px 0 !important;
        padding: 0 0 0 0 !important;
    }
}

*/

/* article-le-bureau.css --- 2024-09-04 19:09:42 */
.le-bureau {
  background-color: var(--ocre-20);
  padding-top: 30px;
}


.le-bureau .article-title {}

.le-bureau .article-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
}




.le-bureau .image-container {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 0px;

}


.le-bureau .col-md-3 {
  font-size: 0.8rem;
  margin-bottom: 25px;
}

.le-bureau .image-container img {
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 3;
}

.le-bureau .image-container::before {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 104%;
  height: 104%;
  border-radius: 50%;
  background-color: var(--ocre);
  background-color: var(--reflex-blue);
  z-index: 1;
}

.le-bureau .image-container::after {
  content: '';
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 102%;
  height: 102%;
  border-radius: 50%;
  background-color: white;

  z-index: 2;
}

@media screen and (max-width: 767px) {
  .le-bureau .image-container {

    width: 115px;
    height: 115px;

  }

  .le-bureau .image-container::after {
    left: -3px;
    bottom: -3px;
  }
}

/* homepage-gallery.css --- 2024-09-04 19:09:42 */
/* Container de la galerie */
#homepage-gallery {
  padding: 20px;
  background-color: var(--navy-blue);
  /* Fond optionnel */
  position: relative;
  width: 100%;
  padding: 50px 0 120px;
}


#homepage-gallery h2 {
  color: white;
  text-align: center;
  margin-bottom: 25px !important;
}


#homepage-gallery .gallery-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 96%;
  width: 1200px;
  margin: 0 auto;

}

#homepage-gallery .gallery-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 0px 0;
  width: calc(100% - 80px);
  margin: auto;
}

/* Style des items de la galerie */
#homepage-gallery .gallery-item {
  flex: 0 0 25%;
  /* 25% de la largeur pour chaque image */
  padding: 10px;
  position: relative;
  box-sizing: border-box;
  text-align: center;

}

#homepage-gallery .gallery-item-inner {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  border: 1px solid wheat;

}

#homepage-gallery .gallery-item img {
  width: 100%;

  height: auto;
  opacity: 1;
  /* Opacité à 100% */


}

/* Boutons de navigation */
#homepage-gallery .gallery-prev,
#homepage-gallery .gallery-next {
  background-color: var(--ocre);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

#homepage-gallery .gallery-prev {
  left: 10px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

#homepage-gallery .gallery-next {
  right: 10px;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

/* Masquer la scrollbar horizontale */
#homepage-gallery .gallery-container::-webkit-scrollbar {
  display: none;
}



#homepage-gallery .gallery-item-desc {
  position: absolute;
  top: 100%;
  height: 100%;
  left: 0%;
  right: 0%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 0.9rem;
  transition: all 700ms;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}


#homepage-gallery .gallery-item:hover .gallery-item-desc {

  top: 0%;

}


@media screen and (min-width: 768px) and (max-width: 960px) {
  #homepage-gallery .gallery-item {
    flex: 0 0 33.3333333333%;
  }

}



@media screen and (min-width: 576px) and (max-width: 767px) {
  #homepage-gallery .gallery-item {
    flex: 0 0 50%;
  }

}

@media screen and (max-width: 575px) {
  #homepage-gallery .gallery-item {
    flex: 0 0 100%;
  }

}

/* homepage.css --- 2024-09-04 19:09:42 */
body.homepage h2 {
  margin-bottom: 0;
}

body.homepage h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 15px;
  /* Assure que le ::before peut être positionné correctement */
}

body.homepage h2 span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 60px;
  transform: translateX(-50%);
  bottom: 0;
  height: 4px;
  background: white;
  border-radius: 2px;
}

/* homepage-colonne.css --- 2024-09-04 19:09:42 */
.homepage-colonne-group {
  background-color: var(--ocre-20);
  padding: 50px 0 100px;
}

.homepage-colonne-group .articles-group-wrapper {}

.homepage-colonne-group .articles-group-inner {
  max-width: 96%;
  width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.homepage-colonne-group article {
  flex: 0 0 29%;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;


}

.homepage-colonne-group article .inner {
  height: 100%;
  display: flex;
  flex-direction: column;


}










.homepage-colonne {}


.homepage-colonne .contents {
  padding: 10px 15px;
  flex: 1;
  text-align: center;
}

.homepage-colonne .contents h2 {
  font-size: 130%;
  margin: 20px 0 0px;
  padding: 0;
  font-weight: bold;
}

.homepage-colonne .contents h2 span {
  position: relative;
}

.homepage-colonne .contents h2 span:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  /* ou n'importe quelle hauteur que tu préfères */
  background-color: var(--reflex-blue);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  /* ajuste la valeur pour l'espacement souhaité sous le titre */
}


.homepage-colonne .contents p {
  margin: 0;
  padding: 0;
}

.homepage-colonne .attachment {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.homepage-colonne .attachment img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.homepage-colonne .article-link {
  width: 100%;
  padding: 25px 0;
  text-align: center;
}

/* homepage-actualites.css --- 2024-09-04 19:09:42 */
.homepage-actualites h2.article-title {
  color: var(--reflex-blue);
  font-size: 200%;
  font-weight: bold;
  text-align: center;
}

.homepage-actualites h2.article-title span::after {
  background-color: var(--reflex-blue) !important;

}

.homepage-actualites .newsIndexItem {
  margin: 0 0 15px 0;
}

.homepage-actualites .newsIndexItem .inner {
  height: 100%;
  border: 1px solid var(--ocre);
  border-radius: 7px;
  display: flex;
  background-color: var(--ocre-10);
  cursor: pointer;

}

.homepage-actualites .cover {
  height: 120px;
  width: 80px;
  margin-right: 15px;
  background-color: var(--ocre-10);
  display: flex;
  justify-content: center;
  align-items: center;
}

.homepage-actualites img {
  max-width: 100%;
  max-width: 100%;

}

.homepage-actualites .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-actualites a {
  color: var(--reflex-blue);
}

.homepage-actualites .text a {

  position: relative;
  padding-left: 20px;
  display: inline-block;
  font-size: 0.9rem;
  text-decoration: none;
}

.homepage-actualites .text a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: left 0.3s ease;
}

.homepage-actualites .newsIndexItem:hover::before {
  left: 5px;
}

/* gallery.css --- 2024-09-04 19:09:42 */
article.gallery {
  padding-bottom: 40px;
}

article.gallery .container {
  background-color: white;
  padding: 15px 0;
}

article.gallery .article-title h2 {
  font-size: 1.3rem;
  font-weight: bold;
}

article.gallery .row {
  margin: 0 -7px
}

article.gallery .row>div {
  padding: 7px;
}

article.gallery .item {}

article.gallery .item a {
  display: block;
}

article.gallery img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* homepage-about-us.css --- 2024-09-04 19:09:42 */
.homepage-about-us {
  text-align: center;
  padding: 60px;

}

.homepage-about-us h2.article-title {
  color: var(--reflex-blue);
  font-size: 200%;
  font-weight: bold;

}

.homepage-about-us h2.article-title span::after {
  background-color: var(--reflex-blue) !important;

}


.homepage-about-us .article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px 20px;
}

.homepage-about-us .article-text {

  color: var(--reflex-blue);
  font-size: 120%;
  width: 100%;
  max-width: 800px;
}

.homepage-about-us .article-text p {
  margin-bottom: 25px;
}

@media screen and (max-width: 960px) {
  .homepage-about-us {
    padding: 60px 0;
  }

  .homepage-about-us .article-content {
    padding: 0 0 20px;
  }
}

/* infos.css --- 2024-09-04 19:09:42 */
body.infos {}

body.infos #content {
  min-height: 70vh;

}

#page-cms-header {
  position: relative;

  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}

#page-cms-header .bg {
  position: absolute;
  top: 0;
  right: 0%;
  height: 400px;
  left: 0%;
  background-position: center;
  background-size: cover;
}

#page-cms-header .container {
  position: relative;
}

#page-cms-header .page-title {}

#page-cms-header h1 {
  background-color: var(--reflex-blue);
  display: inline-block;

  margin-bottom: 0;
  position: relative;
  color: white;
  padding: 10px 100px 10px 0;
  font-size: 1.8rem;
  /* white-space: nowrap; */
  border-top-right-radius: 10px;
}

#page-cms-header h1:before {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  right: 100%;
  width: 1000px;
  background-color: var(--reflex-blue);
}



#page-cms-header .article-text {

  color: #777;
}

#page-cms-header .article-text a {
  color: inherit;
  text-decoration: underline;
}

#page-cms-header .article-text a:hover {
  color: black;

}


#page-cms-headerless {
  color: white;
  background-color: var(--reflex-blue);
}

#infos-main {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {

  body.infos h1,
  body.infos .h1 {
    font-size: 1.8rem;
    max-width: 100%;
  }

  body.infos .article-default h2 {
    font-size: 1.5rem;
  }

  body.infos .page-title {}


  #page-cms-header h1 {
    font-size: 1.4rem;
  }

}

/* prehome.css --- 2024-09-04 19:09:42 */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;

}

body.no-scroll {
  overflow-y: hidden;

}

#pre-homepage {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  z-index: 10000;
}

#pre-homepage .top-section,
#pre-homepage .bottom-section {
  background-color: black;
  transition: transform 1s ease-in-out;
  text-align: center;
  height: 50vh;
}



#pre-homepage .top-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #cf1519;
}

#pre-homepage .bottom-section {

  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 25px;
  border-top: 1px solid #cf1519;
}



#pre-homepage.ready .top-section {
  transform: translateY(-100%);
}

#pre-homepage.ready .bottom-section {
  transform: translateY(100%);
}

#pre-homepage .logo {
  max-width: 90%;
  width: 600px;
}

#pre-homepage .baseline {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  color: white;
  /* Adjust based on your preference */
}

#pre-homepage.baseline::after {
  content: '';
  display: none;
  width: 120px;
  height: 3px;
  background-color: #cf1519;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}

#pre-homepage .scroll-btn {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  animation: blinkPreHome 2s infinite;
}

@keyframes blinkPreHome {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* homepage-carrousel.css --- 2024-09-04 19:09:42 */
#homepage-carrousel {
  position: relative;
  overflow: hidden;
  display: flex;
  height: 70vh;
  border-top: 4px solid var(--reflex-blue);
  border-bottom: 4px solid var(--reflex-blue);
}

#homepage-carrousel .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-top: 70vh;
  background-color: white;
  min-width: 1300px;
}

#homepage-carrousel .bg img {
  width: 100% !important;



  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: all 2000ms;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

#homepage-carrousel.ready img.current {
  opacity: 1;
}

#homepage-carrousel .content {
  position: absolute;
  left: 50%;
  bottom: 0%;
  max-width: 650px;
  width: 90%;
  transform: translate(-50%, 100%);
  background-color: var(--ocre-70);
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 25px 25px 25px 35px;
  font-size: 1.2rem;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 1000ms;
  color: white;
}

#homepage-carrousel h1 {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding: 0;
}

#homepage-carrousel .baseline {
  font-size: 1.2rem;
  margin: 25px 0;
}

#homepage-carrousel .content .cta {
  height: 45px;
}


#homepage-carrousel.ready .content {
  transform: translate(-50%, 0%);
}

/*
@media screen and (min-width: 1023px) and (max-width: 1290px) {
  #homepage-carrousel .content {
    padding: 25px 25px 25px 25px;
    font-size: 1.1rem;
  }
  #homepage-carrousel .bg {
    left: -20%
  }
}
*/

/*
@media screen and (max-width: 1290px) {
  #homepage-carrousel .bg {
    left: -20%
  }
}
*/
@media screen and (max-width: 991px) {
  #homepage-carrousel .bg {
    left: -40%
  }
}

@media screen and (max-width: 516px) {
  #homepage-carrousel .bg {
    left: -80%
  }
}

/* half-column.css --- 2024-09-04 19:09:42 */
.half-column-group {}

.half-column-group .articles-group-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 60px;
  justify-content: space-between;

}

.half-column-group article {
  flex: 0 0 calc(50% - 15px);
  width: calc(50% - 15px);
  padding: 0 15px;
  background-color: white;
  padding: 15px;
}





.half-column-group .attachments {
  margin-bottom: 15px;
}


@media screen and (min-width: 0px) and (max-width: 767px) {

  .half-column-group .articles-group-inner {
    flex-direction: column;


  }


  .half-column-group article {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 25px;
  }

}

/* header.css --- 2024-09-04 19:09:42 */
/* header */
#header {
    background: transparent;
    padding: 0;
    position: relative;

}

#header-wrapper {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}

#header .row,
#header .row>div {

    background-color: white;
}

#header-liens {}

.top-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.top-links li {
    margin-left: 20px;
}

.top-links li a {
    color: #111;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 300ms;
    text-transform: uppercase;
}

.top-links li:hover a {
    opacity: 1;
}

.header-col {}

#header p,
#header .row {
    margin: 0;
    padding: 0;
}

#header-wrapper {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-logo {
    z-index: 998;
    flex: 0 0 270px;
    position: relative;
    height: 100%;
    overflow: visible;
}

header .logo {
    margin: 5px;
    height: calc(170%);
    position: relative;
    transition: all 700ms;

    /* Ajout de l'ombrage */
}


header .logo img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 10px solid white;
    border-radius: 7px;
    transition: all 700ms;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*
body.scrolled header .logo,
body.infos header .logo {
    margin: 5px;
    height: calc(100% - 10px);
    position: relative;
}
*/
/*
body.scrolled header .logo img,
body.infos header .logo img {
    border: 4px solid white;
}
*/

#header-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#header-main-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;

}

#header-top-wrapper {
    padding-top: 5px;
}


#header-top-wrapper ul {
    padding: 0px 0px;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    background-color: var(--ocre);
    list-style: none;
}

#header-top-wrapper li {
    font-size: 90%;

    border-right: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

#header-top-wrapper li:hover {
    background-color: var(--reflex-blue);
}

#header-top-wrapper li a {
    display: block;
    padding: 7px 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

#header-top-wrapper li img {
    max-height: 22px;
    width: auto !important;
}


@media screen and (min-width: 1200px) {
    #header .container-fluid {
        padding-left: 3rem;
    }


}



@media screen and (min-width: 960px) and (max-width: 1200px) {
    #header-logo {
        flex: 0 0 240px;
    }



}

@media screen and (min-width: 576px) and (max-width: 959px) {
    #header-logo {
        flex: 0 0 240px;
    }

    #header-top-wrapper li a {
        padding: 3px 7px;
        font-size: 1rem;
    }

}

@media screen and (min-width: 768px) {
    .header-top-wrapper-responsive {
        display: none;
    }

}

@media screen and (max-width: 767px) {
    header #header-top-wrapper {
        display: none;
    }

    #header-logo {
        flex: 1 0 100%;
    }

    header .logo {
        width: 240px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 400px) {
    header .logo {
        width: 200px;
        margin: 0 auto;
    }
}


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

#menu ul.header-top-wrapper-responsive {
    padding: 0px 25px 0 50px;
    margin: 0;
    width: 350px;
}

#menu ul.header-top-wrapper-responsive li {
    font-size: 1.2rem;
    padding: 0 0 7px 0;
}

#menu ul.header-top-wrapper-responsive li img {
    width: 24px !important;
    height: auto !important;
    margin-right: 10px;
}


#menu ul.header-top-wrapper-responsive li.facebook {
    display: none;
}




/*


@media screen and (max-width: 991px) {
    header .col-sm-4 {
        width: 33.33333% !important;
    }

    header .container-fluid {}

    #header .languages {
        padding-top: 25px
    }
}

@media screen and (max-width: 576px) {
    header img {
        max-width: 60%;
    }
}

*/

/* responsive.css --- 1970-01-01 01:00:00 */


