/* base.css */
.marcellus_sc {
    font-family: 'Marcellus SC';
}

.marcellus {
    font-family: 'Marcellus';
}


html,
body {

    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

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

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

body {}

@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%;
    }
}

table,
th,
td {
    border: none;
}


* {
    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;
}

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

.pointer {
    cursor: pointer
}

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

.upper {
    text-transform: uppercase;
}

.relative {
    position: relative !important;
}

.rajdhani {
    font-family: Rajdhani, sans-serif;
}

.light {
    font-weight: lighter;
}

.cover {
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 1200px) {
    .container {
        width: 96% !important;
        margin-left: auto;
        margin-right: auto;
        padding: 0
    }
}

/* menu.css */
#menu .container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
}




#menu .inner {
  flex: 1;
  display: flex;
  align-items: center;
}


#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu li {
  padding: 0;
  margin: 0;
}

#menu a {
  color: white;
  text-decoration: none;
  font-family: 'Marcellus SC';
  font-size: 1.2rem;
}

#menu a:hover {
  color: #ffb216;
}

@media screen and (min-width: 992px) {
  .menu-parot {
    display: none;
  }

  #menu-burger {
    display: none;

  }

  #menu {
    background-color: #0C2246;
    background-color: #197a2b;
    position: relative;
    z-index: 1000;
  }

  #menu .inner {
    width: 96%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-weight: 500;
  }

  #menu ul.level0 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }

  #menu li.level0 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;

  }

  #menu li.level0>a {
    margin: 0;
    padding: 0 20px;
    height: 60px;
    display: block;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.1;
    max-width: 180px;
  }

  #menu ul.level1 {
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #197a2b;
    width: 200px;
    display: none;
  }

  #menu li.level1 {
    border-bottom: 1px solid white;
    padding: 0px 0;
  }

  #menu li.level1>a {
    margin: 0;
    padding: 8px 20px;

    display: block;
    font-size: 0.8rem;
    display: block;
  }

  #menu li:hover>ul {
    display: block;
  }

  #menu li.level0:hover>a {
    color: #ffb216;
  }



}

@media screen and (max-width: 991px) {
  body.menu-on {
    overflow: hidden !important;
  }




  #menu-burger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    cursor: pointer;
    z-index: 9999;
  }

  #menu-burger img {
    max-width: 100%;
    transition: opacity 300ms;
    position: absolute;
    top: 0;
    right: 0;
  }

  #menu-burger .toggle-off {
    opacity: 0;
  }

  body.menu-on #menu-burger .toggle-on {
    opacity: 0;
  }

  body.menu-on #menu-burger .toggle-off {
    opacity: 1;
  }

  #menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0px;
    overflow-x: hidden;
    width: auto;
    max-width: 0;
    height: 100vh;
    background-color: #197a2b;
    z-index: 9990;
    overflow-y: auto;
    padding-top: 20px;
    transition: all 1000ms;

  }

  body.menu-on #menu {
    width: 90vw;
    max-width: 100%;
  }

  #menu .container {
    width: 80vw;
    padding: 0;

    margin: 0;
  }

  #menu .inner {

    /* max-width: 100vh; */
    padding: 0px;
    position: relative;
  }

  .menu-parot {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 60px;
    width: 120px;
    max-width: 120px;
  }

  #menu ul {
    width: 300px;
    position: absolute;
    left: 60px;
    top: 170px;
  }

  #menu ul.level0 {}

  #menu li.level0 {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid white;
  }

  #menu li.level1 {
    margin: 10px 0 10px 20px;
  }
}

#menu_93 a {
  /* color: #d9081c !important; */
}

#menu_93 a:hover {
  /* color: #d9081c !important; */
}

/* header.css */
/* header */

#header {
    background-color: #fff;
    padding: 0 0;
    position: relative;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;

}

#header-top {
    width: 96%;
    margin: 0 auto;
}

#header p {
    padding: 0;
    margin: 0;
}

#header .row {
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 90px;
    padding-top: 7px;
}

#header .row>div {
    /* border: 1px solid pink; */
}

#header .header-logo img {
    height: 80px !important;
    width: auto !important;
}

#header .bg {
    background-image: url('/img/carte.jpg');
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#header-bloc-center {
    text-align: center;
}

#header .rounded {
    border-radius: 48px !important;
    transition: box-shadow 0.3s ease-in-out;
    max-height: 40px;
    width: auto !important;
}




.header-contacts {
    color: #0C2246;
    font-size: 110%;
}

.header-contacts .phone {
    font-size: 120%;
}

.header-reseaux {
    text-align: right;

}

.header-reseaux img {
    max-height: 45px;
    width: auto !important;


}

.header-reseaux img.facebook {
    border-radius: 8px;
}


#header .shadow-on-hover {
    transition: box-shadow 0.3s ease-in-out;
}

#header .shadow-on-hover:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

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


@media screen and (max-width: 575px) {
    #header-top {
        height: 190px;
    }

    .header-logo {
        text-align: center;
        padding-bottom: 10px;
    }
}

/* accordion-title.css */


/* attachments.css */
.attachments {
    margin-bottom: 30px;
    font-size: 0;
    overflow: hidden;
}

.attachments.width-25pc {
    width: 25%;
}

.attachments.width-33pc {
    width: 33%;
}

.attachments.width-50pc {
    width: 50%;
}

.attachments.width-66pc {
    width: 66%;
}

.attachments.width-75pc {
    width: 75%;
}

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

.attachments.width-100pc {
    width: 100%;
    float: none
}

.attachments.right {
    float: right;
    margin-left: 30px;
    margin-right: 0;
}

.attachments.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.attachments .att {
    position: relative;
}

.attachments .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 .nav {
    position: absolute;
    top: 40%;
    width: 90%;
    left: 5%;
    z-index: 20;
}

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

.attachments .nav .nav-left {
    float: left
}

.attachments .nav .nav-right {
    float: right
}

@media (max-width: 767px) {
    .attachments {}
}

/* anniversary-payment.css */
.anniversary-payment-group {
  display: none;
}


.anniversary-payment form {
  font-size: .9rem;
  padding: 35px;
  border: #0C2246 1px solid;
  border-radius: 10px;
  background-color: #fafafa;
  color: #0C2246;
}


.anniversary-payment-group .news-group-inner {
  display: block;
  max-height: 900px;
  max-width: 1200px;
  margin: 0 auto;
}


.anniversary-payment-group #payment-element {
  margin-bottom: 25px;
}

/* homepage-presentation.css */
.homepage-presentation {
  padding-top: 80px;
  padding-bottom: 80px;
  /*
  background-color: #14467b;
  background-image: url('/img/homepage-presentation-art-bg.jpg');
  */
  background-color: white;
  background-size: cover;
  background-position: center;



}

.homepage-presentation .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.homepage-presentation .side {}

.homepage-presentation .attachments {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.homepage-presentation .attachments-inner {
  background-image: url('/img/homepage-presentation-att-bg.png?v=2');
  background-position: center;
  /* overflow: hidden; */
  width: 100%;
}

.homepage-presentation .parrot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.homepage-presentation .attachment {
  display: block;
  width: calc(50% - 35px);
  float: left;
  padding-top: 40%;
  margin: 35px 0;
  background-position: center;
  background-size: cover;
  box-shadow: 0px 3px 6px #00000029;
  border: 1px solid #1D3D91;
  border-radius: 50px;
  transition: all .2s ease-in-out;
}

.homepage-presentation .attachment:hover {
  transform: scale(1.1);
}

.homepage-presentation .attachment:nth-child(1) {
  margin: 0 35px 35px 0;
}

.homepage-presentation .attachment:nth-child(2) {
  margin: 0 0 35px 35px;
}

.homepage-presentation .attachment:nth-child(3) {
  margin: 35px 35px 0 0;
}

.homepage-presentation .attachment:nth-child(4) {
  margin: 35px 0 0 35px;
}

.homepage-presentation .attachment:nth-child(even) {
  float: right;
}

.homepage-presentation .wordings {
  background-color: #1a3058;
  background-color: #197a2b;
  padding: 10px;
  width: calc(50% - 0px);
  margin-left: 80px;
  box-shadow: 0px 3px 6px #00000050;
  border-radius: 40px;
}

.homepage-presentation .wordings-inner {
  padding: 40px 40px 0 40px;
  border: 3px Dashed #a5976e;
  border-radius: 40px;
  text-align: justify;
  color: white;
  box-shadow: 0px 3px 6px #00000050;
}

.homepage-presentation h2 {
  color: white;
  text-align: left;
  font-size: 1.3rem;
}


.homepage-presentation .article-text {
  font-size: 0.95rem;
  font-family: 'Marcellus';
  color: white;
}

.homepage-presentation .anchor-and-ballon {
  max-width: 140px;
  margin: -80px 20px 0 -80px
}

.homepage-presentation .path {
  max-width: 140px;
  margin: -80px -30px 10px 25px;
}

@media screen and (max-width: 991px) {
  .homepage-presentation .container {
    flex-direction: column-reverse;
    max-width: 96%;
  }

  .homepage-presentation .wordings {
    width: 100%;
    padding: 0 15px 0;
  }

  .homepage-presentation .attachments {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 0px;
  }

  .homepage-presentation .wordings {
    width: 100%;
    padding: 0 0 0;

    margin-left: 0px;
    margin-bottom: 80px;
  }

  .homepage-presentation .anchor-and-ballon {
    max-width: 100px;
    margin: -80px 0px 0 -50px;
  }


  element.style {
    width: 250px;
    height: 211px;
    float: right;
  }

  .homepage-presentation .path0 {
    max-width: 90px;
    margin: -60px -30px 10px 25px;
  }
}

/* colors.css */
.text-grey-9 {
    color: #999 !important;
}

#content a {
    text-decoration: none;
    color: #FBA61A;
}

#content a:hover {
    color: #613c01;
    text-decoration: underline;
}

.text-orange {
    color: #FBA61A !important;
}

.text-red {
    color: rgb(217, 0, 13) !important;
}

a.text-orange:hover {
    color: #613c01 !important;
}

.white {
    color: white !important
}

.white-bg {
    background-color: white !important
}




.btn-yellow {
    background-color: #fdb21b;
    color: #04044B !important;
    border: 1px solid #707070;
    font-family: 'Marcellus SC';
    border-radius: 36px;

}

.btn-yellow:hover {
    background-color: #f6b400;
}


.btn-secondary {
    background-color: #111;
    color: #fff !important;
    border: 1px solid black;
}

.btn-secondary:hover {
    background-color: #000;
}

.btn-bordered {
    background: white;
    border: 1px solid black;
}

.text-grey-9 {
    color: #999;
}

.form-control {
    border-color: #0C2246 !important;
}

.form-control:focus {
    border-color: #FAA519 !important;
    background-color: rgba(248, 229, 196, 0.5);

}

/* anniversary-booking.css */
.anniversary-booking {
  /*
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  */
}

.anniversary-booking .news-group {
  padding-bottom: 30px;
}





.anniversary-booking .opened .news-group-inner {
  margin-bottom: 80px;
}


.anniversary-booking .news-group h2 {
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 1.7rem !important;
}

.anniversary-booking .news-group h2 span {
  color: #FAA519;
  display: inline-block;
  padding: 0 25px;
  position: relative;
  cursor: pointer;
}

.anniversary-booking .news-group h2 span:after {
  font-family: 'FontAwesome';
  content: '\f1f8';
  display: inline-block;
  margin-left: 10px;
  color: red;
  font-size: 1.2rem;
  ;
}

.anniversary-booking .news-group.submitted h2 span {
  cursor: default;
}

.anniversary-booking .news-group.submitted h2 span:after {
  display: none;
}




.anniversary-booking .news-group-inner {
  max-height: 0;
  overflow: hidden;
}

.anniversary-booking .news-group.opened .news-group-inner {
  max-height: 12000px;
}



.anniversary-booking {}

.anniversary-booking {}

/* homepage-totem.css */
.homepage-totem-group {
  padding-top: 40px;
  padding-bottom: 140px;
  position: relative;

}

.homepage-totem-group .articles-group-inner {
  position: relative;
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.homepage-totem {
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  margin: 16px 0;
  transition: 0.3s;
}

.homepage-totem:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.homepage-totem-header {
  text-align: center;
  background: #f1f1f1;
  color: black;
  font-weight: bold;
  flex: 0;
  color: #F8BB13;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.homepage-totem-header h4 {
  font-size: 1.2rem;
  position: relative;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px 0 45px;
  margin: 0;
}

.homepage-totem h4:before {
  content: " ";
  position: absolute;
  top: 5px;
  left: 5px;
  display: block;
  width: 40px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
}

.homepage-totem.plaine-de-jeux h4:before {
  background-image: url('/msmedias/pictos/toboggan.png');
}

.homepage-totem.brasserie h4:before {
  background-image: url('/msmedias/pictos/brasserie.png');
}

.homepage-totem.anniversaire h4:before {
  background-image: url('/msmedias/pictos/ballons.png');
}

.homepage-totem.vae h4:before {
  background-image: url('/msmedias/pictos/vae-yellow.png');
}

.homepage-totem.h4-blue .homepage-totem-header {
  background-color: #0C2246;
  background-color: #197a2b;

}

.homepage-totem.h4-brown .homepage-totem-header {
  background-color: #842F35;

}

.homepage-totem-img {
  background-position: center;
  background-size: cover;
  height: 150px;
  flex: 0 0 150px;
  margin: 10px;
}

.homepage-totem-content {
  padding: 0 16px;
  flex: 1;
  color: #0C2246;

}

.homepage-totem-content a {
  color: #0C2246 !important;
  text-decoration: underline !important;
}

.homepage-totem-footer {
  padding: 16px;
  text-align: center;
}

@media screen and (min-width: 576px) and (max-width: 992px) {
  .homepage-totem {
    flex: 0 0 48%;
  }

  .homepage-totem-group {
    padding-bottom: 30px;


  }


}

@media screen and (min-width: 320px) and (max-width: 576px) {
  .homepage-totem {
    flex: 0 0 98%;
  }

  .homepage-totem-group {
    padding-bottom: 30px;


  }

}

/* decoration.css */
a {
    cursor: pointer;
}


h1,
h2,
h3 {
    font-family: 'Marcellus SC';
}

/* homepage.css */
body.homepage {}

body.homepage h1 {
    padding: 80px 0 30px 0;
    margin: 0;
    font-size: 3rem;
    color: #0C2246;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}


body.homepage #content {
    position: relative;

}



body.homepage article {}

#hp-row-2 {
    position: relative;
    background-color: white;
}

#hp-row-2 .clearfix {
    display: none;
}

#hp-row-2:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    left: 0;
    background-image: url('/msmedias/homepage/content-bg.jpg?v=3');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;

}




#hp-row-2 article {

    position: relative;

}

#hp-row-2 article:last-child {
    margin-bottom: 0px
}










body.homepage #header-top {
    height: 120px;
}

body.homepage #header-top .rounded {
    max-height: 50px;

}

body.homepage #header .header-logo img {
    height: 110px !important;
    width: auto !important;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    body.homepage #header .header-logo img {

        height: 80px !important;
        width: auto !important;
    }

    body.homepage #header-top .rounded {
        max-height: 40px;
    }

    body.homepage h1 {
        padding: 80px 0 20px 0;
        font-size: 2.8rem;
    }
}


@media screen and (max-width: 575px) {
    body.homepage #header-top {
        height: 190px;
    }

    body.homepage #header-top .rounded {
        max-height: 40px;
    }

    body.homepage h1 {
        padding: 80px 0 20px 0;

        font-size: 2.7rem;
    }

}

/* anniversary-form.css */
.anniversary-form-group {}


.anniversary-form-group .news-group-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.anniversary-form form {
  font-size: .9rem;
  padding: 35px;
  border: #0C2246 1px solid;
  border-radius: 10px;
  background-color: #fafafa;
}

.anniversary-form form h3 {
  font-size: 1.3rem;
}

.anniversary-form form .error {
  border: 2px solid red;
  border-radius: 5px;
  padding: 3px 5px;
}

.anniversary-form form input,
.anniversary-form form textarea {
  border-color: #0C2246;
  color: #0C2246;
  font-size: 0.9rem;
}

.anniversary-form form textarea {
  height: 120px;
}

@media screen and (min-width: 0px) and (max-width: 992px) {
  .anniversary-form form div.submit {
    text-align: center;
  }

}

/* footer.css */
#footer {
  min-height: 100px;
  position: relative;
  color: #6a3111;

}

#footer .bg {
  background-image: url(/img/carte.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#footer-main {
  position: relative;
  min-height: 35px;
  padding-top: 15px;
}


#footer-bottom {
  position: relative;
  padding: 15px 0;
  font-size: 0.9rem;
}

#footer a {
  color: #FBA61A;
}

#footer p {
  margin: 0;
  padding: 0;
}

#footer-bloc-right img {
  max-width: 40px;
}

@media screen and (min-width: 768px) {
  #footer-bloc-right {
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  #footer-bloc-right {
    text-align: center;
  }
}



#footer .horaires {
  line-height: 1.2;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  font-size: 0.8rem;
}

/* article-default.css */
body .article-default {
  padding-bottom: 40px;
}

body .article-default .article-inner {}

body .article-default .article-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

body .article-default.att-position-right .article-content {
  flex-direction: row-reverse;
}

body .article-default .wordings {
  flex: 1;
}

body .article-default.att-position-left .wordings {
  padding-left: 5%;
}

body .article-default.att-position-right .wordings {
  padding-right: 5%;
}

body .article-default.att-width-50pc .attachments {
  flex: 0 0 45%;
  width: 45%;
}

body .article-default.att-width-33pc .attachments {
  flex: 0 0 30%;
  width: 30%;
}

body .article-default.att-width-25pc .attachments {
  flex: 0 0 20%;
  width: 20%;
}

body .article-default .article-title {
  margin-bottom: 25px;
}



body .article-text {
  text-align: justify;
  font-size: 1.1rem;
  color: #666;
  font-family: Marcellus
}


body.infos .article-default .container {
  background-color: white;
  padding: 15px;
  background-color: white;
  padding: 15px;

}


body .article-text strong {}


@media screen and (max-width: 767px) {
  body .article-default .article-content {
    flex-direction: column;
  }

  body .article-default.att-position-right .article-content {
    flex-direction: column-reverse;
  }

  body .article-default .attachments {
    width: 100% !important;
  }

  body .article-default.att-position-left .wordings {
    padding-left: 0;
  }

  body .article-default.att-position-right .wordings {
    padding-right: 0;
  }
}

/* above-all.css */
#above-all {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(60, 60, 60, 0.5);
  z-index: 9900;
  display: none;
}

.menu-on #above-all {
  display: block;
}

/* homepage-video.css */
.homepage-video {
  background-color: #0C2246;
  background-color: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

.homepage-video p {
  margin: 0;
  padding: 0;
}

.homepage-video .article-text {
  position: relative;
}


.homepage-video button {
  position: absolute;
  top: 50%;
  z-index: 10;
  font-size: 4rem;
  cursor: pointer;
  background: none;
  border: none;
  color: red;
  opacity: 0.7;
  transition: all 500ms;
}

.homepage-video {
  text-align: center;
}

.homepage-video video {
  width: 100%;
  max-height: 80vh;
}

/* content.css */
#content {}

/* gallery.css */
article.gallery {}

article.gallery .container {
  background-color: white;
  padding: 15px;
}

article.gallery .row {
  margin: 0 -1px
}

article.gallery .row>div {
  padding: 1px;
}

article.gallery .item {}

article.gallery .item a {
  display: block;
}

article.gallery img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* half-column.css */
.half-column-group {}

.half-column-group .news-group-inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 60px;

}

.half-column-group article {
  flex: 0 0 50%;
  width: 50%;
  padding: 0 15px;
  background-color: white;
  padding: 15px;
}





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

  .half-column-group .news-group-inner {
    flex-direction: column;


  }


  .half-column-group article {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 25px;
  }

}

/* infos.css */
body.infos {}

body.infos #content {
  min-height: 80vh;
  background-image: url('/img/carte-content-bg.jpg');
  background-attachment: fixed;
  padding-bottom:90px;
}



#page-cms-header {
  position: relative;
  height: 200px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
}

#page-cms-header .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0.8;
  background-position: center;
  background-size: cover;
}

#page-cms-header h1 {
  position: relative;
  text-align: center;
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


body.infos .no-cover h1 {
  text-align: center;
  padding: 25px 0;
  background-color: #FBA61A;
  margin-bottom: 0px;
  color: white;
}





body.infos h2.article-title {
  text-align: center;
  color: #0C2246;
  line-height: 1.3;
  font-size: 1.9rem;
}


body.infos h2.article-title span {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}


body.infos h2.article-title span:after {
  display: block;

  content: ' ';
  margin: 7px auto 0;
  background-color: #FBA61A;
  height: 5px;
  width: 80px;
}



#infos-main {
  padding-top: 60px;
}

@media screen and (min-width: 0px) and (max-width: 992px) {
  #page-cms-header h1 {

    font-size: 3rem;
    line-height: 1.1;

  }

}

/* homepage-banner.css */
#homepage-banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid #197a2b;
  color: #19ff2b;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  font-family: monospace;
  box-sizing: border-box;
}

#homepage-banner-content {
  display: inline-block;
  padding-left: 100%;
  animation: hpbScroll 20s linear infinite;
  font-size: 16px;
}

@keyframes hpbScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* anniversary-slot-selector.css */
.anniversary-slot-selector-group {}

.anniversary-slot-selector-group h2 span {
  font-size: 85%;
}

.anniversary-slot-selector-group .news-group-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.anniversary-slot-selector .spinner {
  padding: 35px;
  text-align: center;
  opacity: 0.5;
}

.anniversary-slot-selector .calendar {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin: 0 0px;
  user-select: none;
}

.anniversary-slot-selector .calendar .day {
  flex: 0 0 23%;
  margin: 1%;
  border-radius: 15px;
  padding: 15px;
  background-color: #fafafa;
  border: #0C2246 2px solid;
  background-color: #f8e5c4;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 5%, rgba(255, 255, 255, 0) 100%);
}

.anniversary-slot-selector .calendar h5 {
  font-size: 0.8rem;
  padding: 0;
  margin: 0 0 15px 0;
  color: #0C2246;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.anniversary-slot-selector .calendar .full {
  color: #842F35;
  font-style: italic;
  text-align: center;
}

.anniversary-slot-selector .calendar .slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 7px 0
}

.anniversary-slot-selector .calendar .slot {
  flex: 0 0 30%;
  font-size: 0.8rem;
  padding: 3px 7px;
  background-color: #0C2246;

  border: 1px solid #eee;
  border-radius: 3px;
  text-align: center;
  color: white;
  cursor: pointer;
}

.anniversary-slot-selector .calendar .day.selected {
  border-color: #FAA519;
}

.anniversary-slot-selector .calendar .day.selected h5 {
  color: #FAA519;
}


.anniversary-slot-selector .calendar .slot.selected {
  background-color: #FAA519;
}

.anniversary-slot-selector .alert {
  width: 96%;
  max-width: 450px;
  margin: 35px auto;
}


@media screen and (min-width: 576px) and (max-width: 991px) {
  .anniversary-slot-selector .calendar .day {
    flex: 0 0 31%;


  }
}

@media screen and (max-width: 575px) {
  .anniversary-slot-selector .calendar .day {
    flex: 0 0 48%;


  }
}

/* anniversary-formule.css */
.anniversary-formule-group {}

.anniversary-formule-group .news-group-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;


}

.anniversary-formule {
  flex: 0 0 25%;
  padding: 0 10px
}


.anniversary-formule-inner {
  border: 5px solid #eee;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  transition: all 500ms;
}


.anniversary-formule.selected .anniversary-formule-inner {
  border-color: #FAA519;
}



.anniversary-formule-header {

  padding: 5px 10px;
  font-family: 'Marcellus SC';
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #0C2246;
  justify-content: center;
  align-items: center;

}

.anniversary-formule-header h4 {
  font-size: 1.1rem;

  flex: 1;
  text-align: left;
  color: white;
  margin: 0;
  padding: 0;
}

.anniversary-formule-header .price {
  flex: 0 0 60px;
  text-align: right;
  font-size: 1.1rem;
  color: #FAA519;
  font-weight: bold;
}

.anniversary-formule-header .price span {

  font-size: 0.7rem;
  vertical-align: super;

}


.anniversary-formule-body {
  flex: 1;
  font-size: 0.8rem;
  padding: 10px 10px;
  background-color: #f8e5c4;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 5%, rgba(255, 255, 255, 0) 100%);
}

.anniversary-formule-body p {
  margin-bottom: 5px;
}

.anniversary-formule-footer {
  padding: 20px 10px;
  background-color: #0C2246;
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .anniversary-formule {
    flex: 0 0 50%;
    padding: 0 10px;
    margin-bottom: 25px
  }
}

@media screen and (max-width: 575px) {
  .anniversary-formule {
    flex: 0 0 100%;
    padding: 0 10px;
    margin-bottom: 25px
  }
}

