/* base.css */
:root {
    --scroll-transition-duration: 1000ms;
    /* Inclure les unités ici */
}

html,
body {
    min-height: 100%;
    background: #fff;
    font-size: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow: visible;
}

*:focus,
*:active,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:hover,
.btn:hover,
button:focus,
.btn:focus {
    box-shadow: none !important;
}

.btn-close:focus,
.btn-close:active,
.btn-close:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

*:hover {
    box-shadow: none !important;
    transition: none !important;
}

#global-wrapper {
    max-width: 1960px;
    margin: 0 auto;
}

#content {
    overflow-x: hidden;
}


@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-select,
.form-control {
    box-shadow: none !important;
}

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

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

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

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

.pointer {
    cursor: pointer
}

.nobreak,
.no-break,
.nowrap {
    white-space: nowrap;
}

.small {
    font-size: 90%;
}

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

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


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

    .article-text .float-left,
    .article-text .float-right {
        float: none !important;
        margin: 10px auto !important;
        display: block;

    }

}


.iframe-wrapper {
    background-color: var(--gray-1);
    margin: 25px 0 !important
}

.iframe-container {
    max-width: 600px;
    width: 100%;
    margin: 0 0;
    position: relative;

}

.iframe-ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

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

.w-33 {
    width: 33.333333%;
}


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

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


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

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



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

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














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

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


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

    html,
    body {
        font-size: 90%;
    }
}._{}


/* colors.css */
:root {
  /* Couleurs custom */
  --pink: #fce3e9;
  --pink-bg: #fdf1f4;

  /* légèrement plus clair pour hover ou fond */
  --gray: #706f6f;
  --gray-bg: #f0f0f0;

  /* Override Bootstrap */
  --bs-primary: var(--pink);
  --bs-primary-rgb: 253, 241, 244;
  /* pour les transparences */
  --bs-dark: var(--gray);
  --bs-dark-rgb: 112, 112, 112;

  /* Boutons */
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--pink);
  --bs-btn-border-color: var(--pink);
  --bs-btn-hover-bg: var(--pink-bg);
  --bs-btn-hover-border-color: var(--pink);
  --bs-btn-active-bg: var(--pink);
  --bs-btn-active-border-color: var(--pink);
  --bs-btn-disabled-bg: var(--pink-bg);
  --bs-btn-disabled-border-color: var(--pink-bg);

  /* Alertes */
  --bs-alert-bg: var(--pink-bg);
  --bs-alert-color: var(--gray);
  --bs-alert-border-color: var(--pink);

  /* Badges, links, etc. */
  --bs-link-color: var(--gray);
  --bs-link-hover-color: var(--pink);
  --bs-badge-color: #fff;
  --bs-badge-bg: var(--pink);
}

body {
  color: var(--gray);
}

.pink-bg {
  background-color: var(--pink);
}

.light-pink-bg {
  background-color: var(--pink-bg);
}


.gray-bg {
  background-color: var(--gray-bg);
}

.btn-outline-primary {
  color: var(--gray);
  border-color: var(--pink);
}

.btn-outline-primary:hover {
  background-color: var(--pink);
  color: var(--gray);
}

.btn-outline-dark {
  color: var(--gray);
  border-color: var(--gray);
}

.btn-outline-dark:hover {
  background-color: var(--gray);
  color: #fff;
}


.btn-gray {
  background-color: var(--gray);
  color: white !important;
}


.btn-gray:hover {
  filter: brightness(0.9);

}




gray-bg article.title-underline-pink .article-title h2 span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 4px solid var(--pink);
}

article.title-underline-gray .article-title h2 span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 4px solid var(--gray);
}._{}


/* fonts.css */
:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

}

body {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 400;
}

article {
  font-size: 1.2rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
}


.cormorant {
  font-family: var(--font-heading);
  line-height: 1.25;
  letter-spacing: 0.01em;
  font-size: 125%;
  font-weight: 500;
  font-style: italic;
}

.fs-7 {
  font-size: 0.95rem;
}


.fs-8 {
  font-size: 0.9rem;
}

.fs-9 {
  font-size: 0.85rem;
}._{}


/* header.css */
header {
  position: relative;
  border-top: 12px solid var(--orange);
  padding-top: 10px;
  z-index: 1000;
  position: sticky;
  top: 0;
  background-color: white;
}

.header-col {
  flex: 1;
  min-height: 20px;

  ;
}

#header-bloc-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

#header-bloc-center a.logo {
  display: inline-block;
  padding: 0 10px 0px 10px;
  position: relative;
  margin: 0 auto;
  transition: all 500ms;
}

#header-bloc-center a.logo img {
  width: auto !important;
  transition: all 500ms;
}


body.scrolled #header-bloc-center a.logo img {
  width: 400px;
  max-width: 80%;
  max-height: 60px;
}

body.infos header {
  border-bottom: 1rem var(--pink) solid;
}

@media screen and (max-width: 576px) {
  header .d-flex {
    flex-direction: column;
  }

  header .header-col {
    min-height: 0;
    flex: 1;


  }
}._{}


/* forms.css */
form .form-label {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}._{}


/* article-homepage-carrousel.css */
.homepage-carrousel-group .articles-group-wrapper {
  width: 100% !important;
  max-width: 100%;
}

#homepage-carrousel {
  border-bottom: 1rem solid #706F6F;
}

#homepage-carrousel .contents {
  position: relative;
}

#homepage-carrousel .illustration {
  height: 380px;
  /* Fixe la hauteur */
  overflow: hidden;
}

#homepage-carrousel .illustration img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
}

#homepage-carrousel .page-title {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;

  max-width: 70%;
}

#homepage-carrousel h1 {
  color: #707070;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  font-style: italic;
}

#homepage-carrousel h1 span.quote-in {
  text-indent: 35px !important;
}._{}


/* menu.css */
header li.footer-only {
  display: none !important;
}

@media screen and (min-width: 992px) {

  .btn-menu,

  .responsive-menu {
    display: none;
  }

  header ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;

    align-items: center;
  }


  header ul.menu li {
    margin: 0;
    padding: 0;
  }

  header ul.menu li a {
    display: block;
    padding: 5px 15px;
    color: var(--navy-blue);
    font-weight: bold;
    line-height: 1.2;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    max-width: 180px;
  }

  header ul.menu li a:hover {
    color: var(--orange);
  }

  body.scrolled header ul.menu li a {
    padding-top: 0;
    transition: all 500ms;

  }

  #menu_2550 a {
    white-space: nowrap;
  }
}

@media screen and (max-width: 991px) {

  .desktop-menu {
    display: none;
  }

  header ul.menu {
    display: none;
  }

  header .btn-menu {
    font-size: 1.8rem;
    margin-top: 0px;
    position: absolute;
    background-color: white;
    z-index: 999;
  }

  #menu {
    position: fixed;
    top: 0;
    left: -10px;
    height: 100vh;
    background-color: var(--navy-blue);
    z-index: 1000;
    width: calc(100vw + 10px);
    max-width: 0px;
    transition: all 700ms;
    overflow: hidden;
    background-color: #fdf1f4;
  }

  #menu .btn-close {
    position: absolute;
    top: 40px;
    right: 40px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(141deg) brightness(110%) contrast(99%);
    width: 1.5em;
    height: 1.5em;
    opacity: 1;
  }

  #menu ul {
    list-style: none;
    margin: 90px auto 0;
    padding: 17vh 0 0 0;
    text-align: center;
    width: 400px;
    max-width: 100vw;
    background-image: url("/msmedias/logos/logo-mini.png?w=200");
    background-repeat: no-repeat;
    background-position: center top;
  }

  #menu li {
    margin: 0;
    padding: 15px 0;


  }

  #menu a {
    display: inline-block;
    width: 250px;
    border-radius: 50px;
    border: 1px solid white;
    color: var(--navy-blue);
    background-color: white;
    font-size: 1.4rem;
    text-decoration: none;
    padding: 7px 15px;
    text-align: center;
    text-transform: uppercase;

  }

  body.menu-on #menu {
    max-width: 100vh;
  }

  #menu a:hover {
    background-color: white;
    border-color: #aaa;
    color: inherit !important;

  }


}

body.menu-on #menu {
  max-height: 100vh;
  overflow-y: hidden;
}._{}


/* content.css */
#content {
  min-height: 100vh;
}

article {
  border: 0px solid pink;
}

.infos #content {
  padding-top: 35px;
}

.infos #page-cover {
  position: relative;
  height: 180px;
  margin-bottom: 3rem;
}

.infos #page-illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.infos #page-illustration img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}

.infos #content article a {
  color: var(--orange);
  transition: all 200ms;
}

.infos #content article h3 {
  font-size: 1.3rem;
  color: var(--navy-blue);
  padding: 0;
  margin: 0 0 1rem;
}


.infos #content article a:hover {
  filter: brightness(0.8);
}

.infos #content article:last-child {
  margin-bottom: 5rem;
}

#content ul.custom-bullets {
  list-style: none;
  padding-left: 1.2em;
  margin: 0;
  padding: 0;
}

#content ul.custom-bullets li {
  position: relative;
  margin-left: 20px;
}

#content ul.custom-bullets li::before {
  position: absolute;
  top: 10px;
  left: -20px;
  content: '';
  background-color: var(--orange);
  font-weight: bold;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 15px;


  /* 🔸 augmente la taille ici */
}._{}


/* article-homepage-neuro-dynamique.css */
article.neuro-dynamique-title {}

article.neuro-dynamique-title h2 span {}._{}


/* article-default.css */
.article-title-default {
  padding-bottom: 2rem;
  font-style: italic;
}

@media screen and (max-width: 576px) {
  .article-content {
    max-width: 96% !important;
    margin: 0 auto;
  }

}._{}


/* footer.css */
footer {
  background-color: white;
  color: var(--gray);
  font-size: 0.9rem;
  border-top: var(--pink) solid 1rem;
}


.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer p {
  margin-bottom: 0;
}

footer ul.mentions-legales {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}




footer ul.mentions-legales li {
  margin: 0;
  padding: 0 1rem 0 0;
  border-right: 1px solid #000;
  line-height: 1;
}

footer ul.mentions-legales li:last-child {
  border: none;
}

footer ul.mentions-legales a {
  color: var(--gray);
  text-decoration: none;
}

footer ul.mentions-legales a:hover {
  text-decoration: underline;
}


#footer-col-3 {
  text-align: end;
}

@media screen and (max-width: 767px) {
  .footer-col {
    margin-bottom: 35px;
  }

  #footer-col-3 p {
    text-align: center !important;
    margin-bottom: 5px;
  }

  #footer-col-3 {
    text-align: center;
  }
}

#footer-menu {
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--gray);
}

#footer-menu ul {
  list-style: none;
  padding: 0 0 0 15px;
  margin: 0;
}

#footer-menu li {
  margin: 6px 0;
}

#footer-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

#footer-menu a:hover {
  filter: brightness(0.9);
  transform: translateX(3px);
}

#footer-menu li:first-child {
  margin-top: 0;
}

#footer-menu li:last-child {
  margin-bottom: 0;
}

#footer-bloc-bottom {
  padding: 1rem 0;
  border-top: 1px solid var(--gray-bg);
  font-size: 90%;
}

@media screen and (max-width: 768px) {

  #footer .footer-col {
    text-align: center;
  }

  #footer-menu {
    max-width: 250px;
    margin: 0 auto;
  }
}._{}


/* attachments.css */
article.has-attachments {}

article.has-attachments .article-content {
  display: flex;
  gap: 35px;
  align-items: flex-start;

}

article.has-attachments.att-position-right .article-content {
  flex-direction: row-reverse;
}






article .attachments.width-25pc {
  flex: 0 0 25%;
}

article .attachments.width-33pc {
  flex: 0 0 33.3333%;
}

article .attachments.width-50pc {
  flex: 0 0 50%;
}

article .attachments.width-66pc {
  flex: 0 0 66.6666%;
}

article .attachments.width-75pc {
  flex: 0 0 75%;
}

article .attachments.width-100pc {
  flex: 0 0 100%;
}

@media screen and (max-width: 576px) {
  article.has-attachments .article-content {
    flex-direction: column;

  }

  article .attachments.width-25pc,
  article .attachments.width-33pc,
  article .attachments.width-50pc,
  article .attachments.width-66pc,
  article .attachments.width-75pc {
    flex: 0 0 100%;
  }

}


.att .title {
  padding-top: 1rem;
  text-align: center;
  ;
  font-weight: bold;
}

.att .text {
  text-align: center;
}._{}


/* widths.css */
:root {
  --container-gutter-x: 0.75rem;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;
}


.container,
.article-content,
.articles-group-wrapper {
  width: 100%;

  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {

  .container,
  .article-content,
  .articles-group-wrapper {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {

  .container,
  .article-content,
  .articles-group-wrapper {
    max-width: var(--container-md);
  }
}

@media (min-width: 992px) {

  .container,
  .article-content,
  .articles-group-wrapper {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1200px) {

  .container,
  .article-content,
  .articles-group-wrapper {
    max-width: var(--container-xl);
  }
}

@media (min-width: 1400px) {

  .container,
  .article-content,
  .articles-group-wrapper {
    max-width: var(--container-xxl);
  }
}._{}


/* partial-actualite.css */
.actualite-item {
  border: 2px #aaa solid;
  border-radius: 15px;
  padding: 10px;
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  transition: all 500ms;

}


.actualite-item:hover {
  background: white;

}



.actualite-item .cover {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}

.actualite-item .cover img {
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
  transition: all 400ms;
}

.actualite-item .inner:hover img {
  transform: scale(1.1);
}



.actualite-item .date {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  padding: 3px 10px;
  line-height: 1.2;
}

.actualite-item .date .bg {
  position: absolute;
  background: #000;
  transform: translate3d(0, 0, 0) skew(-30deg, 0deg);
  width: 200%;
  top: 0;
  left: -10px;
  bottom: 0;
}

.actualite-item .date .hover {
  width: 60px;
  position: relative;
}

.actualite-item .day-month {
  font-weight: bold;
}

.actualite-item .year {}

.actualite-item a {
  text-decoration: none;
}

.actualite-item .title {
  padding: 0 25px;
  height: 60px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.actualite-item .title a {
  text-decoration: none !important;
}



.actualite-item .bottom {
  height: 160px;

}

.actualite-item .picto i {
  font-size: 30px;
}


.actualite-item .inner:hover img {
  transform: scale(1.1);
}

.actualite-item .inner:hover .picto {
  padding-right: 0px;

}

@media screen and (max-width: 767px) {
  .actualite-item .title {
    text-align: center;

  }
}._{}


/* article-homepage-a-propos.css */
.homepage-about-us-group .articles-group-wrapper {
  width: 100% !important;
  max-width: 100%;
}


#homepage-a-propos {}

#homepage-a-propos .article-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;

}

#homepage-a-propos .wording {

  color: var(--gray);
  font-style: italic;
}

#homepage-a-propos .article-title {
  padding-bottom: 2rem;

}


#homepage-a-propos .article-text {

  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;

}

#homepage-a-propos p.logo {}

@media screen and (min-width: 768px) {
  #homepage-a-propos .side {
    flex: 0 0 47%;

  }
}

@media screen and (max-width: 1399px) {


  #homepage-a-propos .article-text {
    padding-left: 0px;
  }
}



@media screen and (max-width: 767px) {
  #homepage-a-propos .article-content {
    flex-direction: column;
  }

  #homepage-a-propos .article-text {
    padding-left: 0px;
  }

  #homepage-a-propos .attachments img {
    max-width: 250px;
    margin: 0 auto;
  }
}._{}


/* homepage-actualites.css */
article.homepage-actualites .article-content {
  display: block !important;
  /* Avoid a bug of swiper */
}

#homepage-actualites {
  /* Conteneur général */
  margin: 0 auto;


}


#homepage-actualites .swiper-container {
  overflow-x: hidden;


}


#homepage-actualites .actualite-item {}


#homepage-actualites .swiper-slide div.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}






@media screen and (min-width: 1200px) {
  #homepage-actualites .swiper-button {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  #homepage-actualites .swiper-container {
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }
}._{}


/* decoration.css */
ul.pink-bullet {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.pink-bullet li {
  position: relative;
  margin: 0.5em 0;
  padding-left: 1.8em;
  line-height: 1.4;
}

ul.pink-bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid var(--gray);
  background: var(--pink);
}

ul.pink-bullet li:hover::before {}

.underline-on-hover {
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.quote-in,
.quote-out {
  position: relative;
  display: inline-block;
  font-style: italic;
  text-align: inherit;
}

.qmark {
  width: 40px;
  height: calc(40px * 68 / 89);
  /* ratio 89/68 */
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}


.quote-sm .qmark {
  width: 28px;
}



.qmark-in {
  margin-right: 6px;
  margin-top: -6px;
}

.qmark-out {
  margin-left: 6px;
}

/* variantes de couleur */
.quote-pink .qmark {
  filter: brightness(0) saturate(100%) invert(95%) sepia(7%) saturate(1097%) hue-rotate(293deg) brightness(100%) contrast(98%) drop-shadow(0 0 1px var(--gray));
}

.quote-white .qmark {
  filter: brightness(0) saturate(100%) invert(91%) sepia(59%) saturate(2%) hue-rotate(134deg) brightness(104%) contrast(100%) drop-shadow(0 0 1px var(--gray));
}

/* facultatif : un léger survol */
.qmark:hover {
  opacity: 1;
}._{}


/* column-group.css */
.column-group {}



.column-group .articles-group-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* 12 colonnes fractionnelles */
  gap: var(--gap, 3rem);
  /* gap variable */
  width: 100%;
  box-sizing: border-box;
}




.column-group:has(.group-pink-bg) {
  background: var(--pink);
}



.column-group:has(.group-light-pink-bg) {
  background: var(--pink-bg);
}

.column-group:has(.group-gray-bg) {
  background: var(--gray-bg);
}




.column-group:has(.group-mb-5) {
  margin-bottom: 3rem;
}




@media screen and (min-width: 728px) {
  .column-group .articles-group-wrapper {

    flex-direction: row;
  }

}








/* ======================
   🎯 Largeurs dynamiques
   ====================== */
[class^="article-"] {
  box-sizing: border-box;

}

.article-1 {
  grid-column: span 1;
}

.article-2 {
  grid-column: span 2;
}

.article-3 {
  grid-column: span 3;
}

.article-4 {
  grid-column: span 4;
}

.article-5 {
  grid-column: span 5;
}

.article-6 {
  grid-column: span 6;
}

.article-7 {
  grid-column: span 7;
}

.article-8 {
  grid-column: span 8;
}

.article-9 {
  grid-column: span 9;
}

.article-10 {
  grid-column: span 10;
}

.article-11 {
  grid-column: span 11;
}

.article-12 {
  grid-column: span 12;
}

/* ======================
   📱 Responsive optionnel
   ====================== */
@media (max-width: 768px) {
  [class^="article-"] {
    width: 100%;
    grid-column: span 12;
    /* empile tout sur mobile */
  }

  @media (max-width: 768px) {
    .column-group .articles-group-wrapper {
      grid-template-columns: 1fr;
      /* une seule colonne */
      gap: var(--gap, 2rem);
      /* tu peux aussi réduire un peu le gap si tu veux */
    }
  }


}._{}


/* acticle-full-width.css */
.full-width-group {}

.full-width-group .articles-group-wrapper,
.full-width-group .article-content {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  max-width: unset;
}._{}


/* section-page-cover.css */
section#page-cover {}

section#page-cover {}._{}


/* dev.css */
.dev-only {
  display: none !important;
}

.is-dev .dev-only {
  display: block !important;
}._{}


/* modal.css */
.modal-header {
  background-color: var(--navy-blue);
  color: white;
}


.modal-header .logo {
  flex: 0 0 110px;
}


@media screen and (min-width: 768px) {


  .modal-header .logo {
    flex: 0 0 150px;
  }
}





.modal-header .btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(141deg) brightness(110%) contrast(99%);
}._{}


/* swiper.css */
.swiper-button-next,
.swiper-button-prev {
  color: var(--navy-blue);
}._{}


