/* CSS Document */
*,
*::before,
*::after {
  box-sizing: border-box;
}

*, html, body, section, p, a, h1, h2, h3, h4, h5, h6 {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: none;
}

/* Firefox specific rule */
@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}

::selection {
  background: rgba(244, 153, 26, 0.8);
}

:root {
  --red: #cc1239;
  --orange: #f4991a;
  --grey: #EEE3E3;
  --grey-1: #736b6b;
  --dark: #352e2e;
  --white: #ffffff;
}

/* Keep footer down : main + body settings */
body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background: #FBF6F6;
}

header {
  display: flex;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 180;
  height: 80px;
}

main {
  flex: 1 0 auto;
  padding: 80px 0 2em 0;
  width: 100vw;
}

section {
  margin: 0 auto 3em;
}

footer {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  height: 150px;
  margin: auto;
  padding: 2em;
  background: var(--white);
}

footer p {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1em;
  line-height: 2;
  color: var(--grey-1);
  text-align: center;
  font-weight: 400;
  padding: 0;
}

footer a {
  font-family: 'Titillium Web', sans-serif;
  font-size: inherit;
  font-weight: 400;
  text-decoration: underline;
  color: var(--black);
  text-align: left;
  padding-left: 0px;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

footer a:hover {
  color: var(--orange);
}

.coockies {
  font-size: .95em;
  margin-top: .5em;
}

.box {
  max-width: 1200px;
  width: 90%;
  margin: 3em auto;
}

footer a[href^="tel"] {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
}

/*  F O N T S */
h1 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 5vw;
  font-weight: 200;
  line-height: 1.1;
  color: #fff;
  padding: 0 0 30px 0;
}

@media screen and (max-width: 964px) {
  h1 {
    font-size: 2.2em;
  }
}

h2 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 2.2em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  color: #f4991a;
  padding: 0;
  margin: 0 0 1em;
}

@media screen and (max-width: 668px) {
  h2 {
    text-align: center;
    font-size: 2em;
  }
}

#intro h2{
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 1.5em;
  text-transform: none;
  font-weight: 500;
  line-height: 1.3;
  color: #444;
  padding: 0;
  margin: 0 0 1em;
}

.h2-top h2 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  padding: 0;
  margin: 2em 0 1em;
}

@media screen and (max-width: 668px) {
  .h2-top h2 {
    text-align: center;
    font-size: 2em;
  }
}

.h2-top h2::before {
  content: '';
  display: block;
  border-top: 0;
  margin-bottom: .8em;
}

h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  color: #FF921C;
  padding: 2em 0 1em 0;
}

#webies h3 {
  padding: 20px 0;
}

h4 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1em;
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  color: #FF921C;
  padding: 1em 0;
}

h5 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  color: #f4991a;
  padding: 0;
  margin: 0 0 1em;
}

p {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.15em;
  line-height: 1.2;
  text-align: justify;
  color: #332c2c;
  padding-bottom: 15px;
}

p:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 668px) {
  p {
    text-align: left;
  }
}

strong {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  color: inherit;
}

#invit strong {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  color: inherit;
  font-size: 1.3rem;
}

#invit p {
  line-height: 1.4;
}

#small p {
  font-size: .85em;
  padding-top: 3em;
}

#small-1 p {
  font-size: 1em;
  line-height: 1.2;
}

#small-1 .fas {
  padding-bottom: 10px;
}

.fas {
  padding-right: 10px;
}

.investisseurs {
  max-width: 500px;
  width: 90%;
  padding: 1em 1em 1.5em;
  margin: 3.5em auto;
  border: 3px solid var(--orange);
  border-radius: 40px;
}

.investisseurs p {
  font-size: 1.4em;
  text-align: center;
}

@media screen and (max-width: 668px) {
  .investisseurs p {
    font-size: 1.05em;
  }
}

.container-generique {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto 0;
}

.container-generique h2 {
  text-align: center;
}

.container-generique p {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.35em;
  line-height: 1.2;
  text-align: justify;
  color: #332c2c;
  padding-bottom: 15px;
}

/*
.spacer-top {
  padding-top: 3em;
}*/
.spacer-top {
  padding-top: 1.5em;
}

.go-back {
  display: grid;
  place-items: center;
}

.go-back a {
  color: var(--dark);
  font-size: .85em;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}

.go-back a:hover {
  color: var(--orange);
}

.investir {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin: 0 auto;
}

@media screen and (max-width: 668px) {
  .investir {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    margin: auto;
  }
}

.offre {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 668px) {
  .offre h2 {
    text-align: center;
  }
}

.offre p {
  text-align: center;
  font-size: 1.3em;
  line-height: 1.2;
}

.offre br {
  margin-bottom: .8em;
}

.offre a, .livret a {
  font-family: inherit;
  font-size: inherit;
  /* font-weight: 600; */
  color: var(--black);
  text-decoration: underline;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.offre a:hover, .livret a:hover {
  color: var(--orange);
}

.box-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em auto;
}

.btn-souscrire {
  background-image: url("../img/btn-souscrire.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100px;
  width: 500px;
  background-repeat: repeat;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin: 2em 0;
  cursor: pointer;
}

.btn-souscrire:hover {
  background-image: url("../img/btn-souscrire-hover.png");
}

@media screen and (max-width: 668px) {
  .btn-souscrire {
    height: 60px;
    width: 295px;
  }
}

.info-souscripteurs p {
  font-size: 2em;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 668px) {
  .info-souscripteurs p {
    font-size: 1.7em;
  }
}

.info-souscripteurs span {
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  font-size: .7em;
  font-weight: 500;
}

@media screen and (max-width: 668px) {
  .info-souscripteurs p {
    font-size: 1.4em;
  }
}

/*   BUTTONS  */
.btn {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #332c2c;
  border: 2px solid #f4991a;
  border-radius: 5px;
  padding: 15px 20px;
  /**/
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #f4991a;
  color: #fff;
  transform: translateY(-3px);
  -webkit-box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
  box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
}

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

.btn_souscrire {
  padding: 15px 20px;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #CC1212;
  border-radius: 5px;
  /**/
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn_souscrire:hover {
  background: #332c2c;
  color: #fff;
  /**/
  -webkit-box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
  box-shadow: 6px 10px 18px -6px rgba(0, 0, 0, 0.35);
}

.btn_souscrire:active, .btn_souscrire:focus,
.btn_souscrire.active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none !important;
}

.button-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  height: auto;
}

@media screen and (max-width: 1100px) and (min-width: 668px) {
  .button-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2em;
  }
}

.titre {
  display: grid;
  align-items: center;
  background-image: linear-gradient(to bottom, #ff6400, #f65117, #eb3e23, #df2a2a, #CC1239);
  height: auto;
  padding: 4em;
}

@media screen and (max-width:768px) {
  .titre {
    padding: 4em 2em;
  }
}

.titre p {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.3;
  color: #fff;
}

@media screen and (max-width:968px) {
  .titre p {
    text-align: center;
    font-size: 1.4em;
    line-height: 1.3;
    color: #fff;
  }
}

.titre img {
  border-radius: 1em;
  max-height: 400px;
  margin: 20px;
}

.photos-titre {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid #CC1239;
  position: relative;
  top: 0px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 70vw;
  flex: 1;
  margin: 3em 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:1500px) {
  .container {
    width: 90vw;
    margin: 3em 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.souscription a, .panel a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: #504D4A;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.souscription a:hover {
  color: #f4991a;
}

.legende p {
  font-size: 1em;
}

.legende a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: #504D4A;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}

.legende a:hover {
  color: #f4991a;
}

.links a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: #504D4A;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  cursor: pointer;
}

.links a:hover {
  color: #f4991a;
}

.mention {
  display: grid;
  place-items: center;
  padding: .4em;
  background: #473937;
  margin-bottom: 50px;
}

@media screen and (max-width: 668px) {
  .mention {
    margin-bottom:40px;
  }
}

.mention p {
  text-align: center;
  font-size: .8em;
  line-height: 1;
  color: #fff;
  margin: 0;
  padding: 0;
}

.souscription {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 2em 0 0;
}

.souscription p {
  text-align: center;
  font-size: 1em;
  line-height: 1.5;
  color: #504D4A;
}

.souscription a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: #504D4A;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.souscription a:hover {
  color: #f4991a;
}

.container-sites {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0;
  margin: 0em 0 2em 0;
  margin-left: auto;
  margin-right: auto;
}

.container-sites p {
  text-align: center;
  line-height: 1.5;
}

/*   VIDEOS  */
.videoWrapper {
  position: relative;
  padding-bottom: 50%;
  max-width: 1200px;
  width: 90%;
  height: 0;
  margin: 5em 0 1.5em;
}

@media screen and (max-width:1500px) {
  .videoWrapper {
    max-width: 90vw;
  }
}

.container-video-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -4em auto 0;
  max-width: 1340px;
}

.margin-top-3em {
  margin: -1em 0 3em;
}

.legende {
  font-size: .95em;
  text-align: center;
  margin: 0 0 0.5em 0;
}

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

@media screen and (max-width: 1500px) {
  #vimeo {
    display: grid;
    align-items: start;
    margin: 0;
  }
}

/*  CONTAINER 4 VIDEOS */
#videos-frogans {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2em;
  max-width: 1200px;
  width: 90%;
  margin: 80px auto 0;
  padding: 0 ;
}

@media screen and (max-width: 968px) {
  #videos-frogans {
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 0 0;
  }
}

#videos-frogans h2{
margin: 0;
padding: 0;
}

#videos-frogans h3{
font-size: 1.2em;
text-align: center;
font-weight: 600;
color: var(--red);
margin: 0;
padding: 0;
}

.video_tittle{
  height: 30px;
}

@media screen and (max-width: 968px) {
  .video_tittle{
    height: 30px;
  }
}

@media screen and (max-width: 400px) {
  .video_tittle{
    height: 55px;
  }
}

.wrapper_video{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f0e9e8;
}

.video-responsive {
  overflow: hidden;
  width: 100%;
  padding-bottom: 66.25%;
  position: relative;
  height: 0;
  margin-top: 0;
}

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

/*   SETTINGS  */
.responsive {
  max-width: 100%;
  display: block;
  height: auto;
}

hr.style1 {
  width: 100%;
  background-color: #D3CACA;
  border: 0 none;
  height: 1px;
  margin: 0 0 3em 0;
}

hr.style2 {
  width: 100%;
  background-color: #DAD0D0;
  border: 0 none;
  height: 1px;
  margin: 1em 0;
}

hr.style3 {
  width: 100%;
  background-color: #DAD0D0;
  border: 0 none;
  height: 1px;
  margin: 0 0 3em;
}

/*   RETRUN TO TOP  */
#return-to-top {
  position: fixed;
  bottom: 0;
  right: 30px;
  background-color: #f4991a;
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s ease;
  -ms-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #return-to-top {
    right: 19px;
  }
}

#return-to-top:hover {
  background-color: #332c2c;
}

#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 13px;
  top: 10px;
  font-size: 22px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return-to-top:hover i {
  color: #fff;
  top: 5px;
}

@media (max-width: 768px) {
  #return-to-top:hover i {
    color: #fff;
    top: 10px;
    opacity: 1;
  }
}

/* DASHBOARD */
#dashboard {
  font-family: 'Titillium Web', sans-serif;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 900px) {
  #dashboard {
    font-family: 'Titillium Web', sans-serif;
    width: 90vw;
  }
}

#dashboard h2 {
  font-size: 2.5em;
  text-align: left;
  font-weight: 700;
  color: #f4991a;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 668px) {
  #dashboard h2 {
    text-align: left;
    font-size: 2em;
    margin: 0;
  }
}

#dashboard h2::before {
  content: '';
  display: block;
  border-top: 0;
  margin: 0;
}

#dashboard h3 {
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  color: #f4991a;
  padding: 0 0 1em;
}

#dashboard strong {
  font-weight: 500;
  color: #312B2B;
}

#dashboard .container {
  width: 100%;
  margin: 3em 0;
}

#dashboard .centered {
  display: grid;
  place-items: center;
}

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

#dashboard li {
  font-weight: 200;
  font-size: 1.1em;
}

#dashboard li a {
  color: #CE8012;
  font-weight: 300;
}

#dashboard select {
  font-size: .8em;
  background: #fff;
}

.title-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 3em 0;
}

@media screen and (max-width: 668px) {
  .title-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 1em;
    margin: 3em 0;
  }
}

.red {
  color: #CC1239;
}

.styling {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2em;
  margin-top: 2em;
  background-color: #F2ECEC;
  border-radius: 10px;
  padding: 20px 30px;
}

@media screen and (max-width: 500px) {
  .styling {
    grid-template-columns: 1fr;
    padding: 20px 15px;
  }
}

.styling ul {
  background-color: #F9F2F2;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #E6DCDC;
}

.styling li {
  text-align: left;
  padding: 4px 0;
  font-weight: 400;
}

.styling button {
  color: #fff;
  background: #F4991A;
  padding: 8px;
  border-radius: 5px;
  margin-left: 10px;
}

@media screen and (max-width:500px) {
  .styling button {
    margin: 1em 0 0;
  }
}

.styling button:hover {
  color: #fff;
  background: #000;
}

.styling .li-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5em;
}

#dashboard .dashboard_btn {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: .85em;
  text-transform: uppercase;
  background: #ADA5A5;
  color: #fff;
  border: 0;
  border-radius: 40px;
  padding: 12px 20px;
  margin: 1em 0 0;
  cursor: pointer;
}

#dashboard .dashboard_btn:hover {
  background: #857F7F;
}

#dashboard .dashboard_btn_1 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: .95em;
  text-transform: uppercase;
  background: #F4991A;
  color: #fff;
  border: 0;
  border-radius: 40px;
  padding: 13px 20px;
  margin: 0 0 0;
  cursor: pointer;
}

#dashboard .dashboard_btn_1:hover {
  background: #CC1239;
}

#dashboard a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #999;
  font-size: 1em;
}

#dashboard a:hover {
  color: #CC1239;
}

#dashboard li i {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #CE8012;
  font-size: .95em;
}

#dashboard .container li a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #CE8012;
  font-size: 1em;
}

#dashboard li a:hover {
  color: #CC1239;
}

#dashboard .action {
  display: grid;
  grid-template-columns: auto, 1fr;
  background: red;
}

.item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 3em;
}

@media screen and (max-width: 768px) {
  .item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.bg {
  background-color: #F2ECEC;
  border-radius: 10px;
  padding: 20px;
}

/* ACCOUNT */
#account {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Titillium Web', sans-serif;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  #account {
    width: 90vw;
  }
}

#account .container {
  max-width: 700px;
  margin: auto;
}

#login {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Titillium Web', sans-serif;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  #login {
    width: 90vw;
  }
}

#login .container {
  width: 100%;
  padding: 3em 0;
}

#login .container {
  max-width: 700px;
  margin: auto;
}

#login h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-align: left;
  margin: 0;
  padding: 0
}

#login h2::before {
  content: '';
  display: block;
  border-top: 0px;
}

#login p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
}

#login a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #332c2c;
  font-size: .85em;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#login a:hover {
  color: #F4991A;
}

.pad-top {
  padding-bottom: 20px;
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (max-width: 768px) {
  .login-wrapper {
    grid-template-columns: 1fr;
  }
}

#login input {
  box-sizing: border-box;
  padding-left: 10px;
}

#login input:invalid {
  box-shadow: none;
}

#login input:invalid {
  box-shadow: none;
}

#login .login {
  font-size: .95em;
  font-weight: 600;
  text-transform: uppercase;
  background: #F4991A;
  color: #fff;
  border: 0;
  border-radius: 40px;
  padding: 10px 25px;
  margin: 1em 0;
}

#login .login:hover {
  background: #CC1239;
}

#login .input:hover {
  background: #cf0;
}

/*  subscription */
#subscription {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Titillium Web', sans-serif;
  width: 70vw;
  margin-left: auto;
  margin-right: auto;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  #subscription {
    width: 90vw;
  }
}

#subscription .container {
  max-width: 700px;
  margin: auto;
}

#subscription h2 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  padding: 0;
}

#subscription h2::before {
  content: '';
  display: block;
  border-top: 0px;
}

#subscription a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #332c2c;
  font-size: 1em;
  text-decoration: none;
  padding-bottom: 0;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#subscription a:hover {
  color: #CC1239;
}

#subscription p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
  margin: 2em 0;
}

#subscription .actions {
  border-radius: 5px;
  border: 1px solid #D1CBCA;
  background-color: #fff;
  padding: 10px;
  margin: 0 10px;
}

#subscription .input {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: #F4991A;
  border: 0;
  border-radius: 40px;
  padding: 12px 25px;
  margin: 2em 0 2em 0;
}

#subscription .input:hover {
  background: #CC1239;
}

#subscription input:invalid {
  box-shadow: none;
}

#subscription input:invalid {
  box-shadow: none;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

#subscription label {
  font-family: "Titillium Web", sans-serif;
  font-weight: 200;
  font-size: 1.1em;
  text-transform: none;
  -webkit-tap-highlight-color: transparent;
}

#subscription label a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: .95em;
  text-transform: none;
}

#subscription label a:hover {
  color: #CC1239;
}

.control-group select {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: .95em;
  background: #fff;
  min-width: 330px;
}

input {
  -webkit-appearance: none;
}

input {
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
}

input[type="checkbox"]:focus {
  outline: 0;
}

input[type="number"]:focus {
  outline: 0;
}

input[type="submit"]:focus {
  outline: 0;
}

.check {
  margin-right: 10px;
  height: 15px;
  width: 15px;
  background: #fff;
  border: 1px solid #ccc;
}

.control-group {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 30px 0;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin: 30px 0;
  cursor: pointer;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* CASE A COCHER */
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  background: #fff;
  border: 1px solid #999;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #fff;
}

.control input:checked~.control__indicator {
  background: #fff;
}

.control input:disabled~.control__indicator {
  background: #fff;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked~.control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  left: 4px;
  top: 0px;
  width: 3px;
  height: 8px;
  border: solid #F4991A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #F4991A;
}

/* ACCOUNT */
#account {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Titillium Web', sans-serif;
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  #account {
    width: 90vw;
  }
}

#account .container {
  max-width: 700px;
  margin: auto;
}

#account h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-align: left;
  margin: 0;
}

#account h2::before {
  content: '';
  display: block;
  border-top: 0px;
}

#account p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  text-align: justify;
}

#account .create {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  background: #F4991A;
  color: #fff;
  border: 0;
  border-radius: 40px;
  padding: 12px 25px;
  margin: 1em 0;
  cursor: pointer;
}

#account .create:hover {
  background: #CC1239;
}

#account a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #332c2c;
  font-size: 1em;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#account a:hover {
  color: #CC1239;
}

#account input {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #332c2c;
  font-size: .85em;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  padding-left: 10px;
}

#account input :hover {
  color: #F4991A;
}

#account input:invalid {
  box-shadow: none;
}

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.container .g-recaptcha {
  margin-top: 35px;
}

select {
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: .5em 3.5em .5em 1em;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
}

@media screen and (max-width: 768px) {
  select {
    padding: .5em 0 .5em .5em;
  }
}

form {
  padding-bottom: 30px;
  max-width: 100%;
}

.orange {
  color: #CE8012;
}

.wrapper {
  list-style-type: none;
  padding: 0;
  border-radius: 3px;
}

.wrapper p {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.2;
  color: #000;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  align-items: center;
  padding: 1em 0;
}

@media screen and (max-width: 768px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 2.6fr;
    align-items: center;
    padding: 1em 0;
  }
}

label {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  color: #000;
  font-size: .65;
  line-height: 1.2;
  text-align: left;
}

.form-row>label {
  padding: .5em 1em .5em 0;
}

.form-row>input {
  flex: 1;
  border-radius: 5px;
  border: 1px solid #D3CCCC;
  outline: 0px;
  padding: 0 0 2em;
}

.form-row>input,
.form-row>button {
  padding: .5em;
}

.form-row>button {
  color: white;
  border: 0;
}

.form-row select option {
  background-color: #fff;
  border: 0px;
  outline: 0px;
}

.form-row input {
  padding: 10px 0;
}

select.select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border: 1px solid #D1CBCA;
}

.form-row {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  color: #000;
  line-height: 1.2;
  text-align: left;
}

#account .form-row p {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 200;
  font-size: .9em;
  line-height: 1.2;
  text-align: left;
  /* color: #6E6B6B; */
  margin: -20px 0 0;
  padding: 0;
}

.form-row .fas {
  color: #999;
  font-size: .75em;
}

.form-row a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #999;
  font-size: 1em;
}

.form-rowd a:hover {
  color: #CC1239;
}

.birthdate {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}

.bloc-2col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 3em;
}

@media screen and (max-width: 1100px) {
  .container .bloc-2col {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    margin: 0;
    padding: 0 0 2em;
  }
}

.bloc-2col h2 {
  text-align: left;
  padding: 0;
  margin: 0;
}

.bloc-2col h2::before {
  content: '';
  display: block;
  border-top: 0;
  padding: 0;
  margin: 0;
}

.bloc-2col p {
  margin: 0 0 2em;
  padding: 0;
}

.bloc-2c-50 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  align-items: start;
  padding: 0;
}

@media screen and (max-width: 1000px) {
  .bloc-2c-50 {
    grid-template-columns: 1fr;
    gap: 3em;
  }
}

.bloc-2c {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  padding: 0;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 950px) {
  .bloc-2c {
    grid-template-columns: 1fr;
    gap: 3em;
  }
}

.bloc-radio {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 4em;
  width: 75%;
  margin: 0 auto;
}

@media screen and (max-width: 868px) {
  .bloc-radio {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2em;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.bloc-radio img {
  height: 200px;
}

.bloc-radio p {
  text-align: left;
}

@media screen and (max-width: 868px) {
  .bloc-radio p {
    text-align: center;
  }
}

@media screen and (max-width: 868px) {
  .bloc-radio p {
    text-align: center;
  }
}

.audio-player {
  background: #E8DFDD;
  border-radius: 40px;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-panel {
  background-color: #E8DFDD;
  color: #000;
}

.carte {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  max-width: 600px;
  width: 100%;
  background: #EEE3E3;
  border-radius: 20px;
  margin: 1em 0 1.5em;
}

.liner::before {
  content: '';
  display: block;
  border-top: 1px solid #D7D1D1;
  margin-bottom: .8em;
  max-width: 1200px;
  width: 90%;
  margin: 3em auto;
}

.legende-carte {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-carte {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 60%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 10;
  height: 100%;
  width: 100%;
  position: absolute;
}

.carte h4 {
  text-align: center;
  font-size: 1.2em;
  color: #6C5454;
  font-weight: 400;
}

@media screen and (max-width: 668px) {
  .carte h4 {
    font-size: 1.05em;
  }
}

.meetings {
  display: grid;
  place-items: center;
  background-image: linear-gradient(to bottom, #ff6400, #f65117, #df2a2a);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}

@media screen and (max-width: 668px) {
  .meetings {
    justify-content: start;
  }
}

.meetings h4 {
  text-align: center;
  line-height: 1.5;
  font-size: 1.2em;
  color: #fff;
  padding: 0;
}

@media screen and (max-width: 668px) {
  .meetings h4 {
    text-align: left;
    padding: 0 0 10px;
  }
}

.meetings P {
  text-align: left;
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  padding: 0 0 10px;
}

.container-meetings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 0;
}

.container-meetings ul {
  padding-left: 20px;
  list-style: none;
  margin-left: .5em;
  margin-bottom: .5em;
}

.container-meetings ul>li {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.15em;
  text-align: left;
  color: #fff;
  line-height: 1.75;
  padding: 10px 0;
  margin-left: .5em;
}

.container-meetings ul>li::before {
  content: "\f061";
  font-family: 'FontAwesome';
  display: inline-block;
  margin-left: -1.7em;
  width: 1.7em;
  color: #850A24;
  font-size: .9em;
}

.container-meetings ul>li:last-child {
  padding-bottom: 0px;
}

.meetings strong {
  font-weight: 700;
}

@media screen and (max-width: 668px) {
  .meetings ul li {
    line-height: 1.4;
  }
}

.meetings ul li:last-child {
  padding-bottom: 10px;
}

.meetings .fas {
  color: #850A24;
}

.bloc-2c-50-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  align-items: start;
}

@media screen and (max-width: 1200px) {
  .bloc-2c-50-1 {
    grid-template-columns: 1fr;
  }
}

.bloc-2c-tiers-1 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5em;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .bloc-2c-tiers-1 {
    grid-template-columns: 1fr;
  }
}

.bloc-2c-tiers-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5em;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .bloc-2c-tiers-2 {
    grid-template-columns: 1fr;
  }
}

#cookies {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2em;
  background: rgba(0, 0, 0, 0.8);
  padding: .5em 10vw;
  position: fixed;
  bottom: 0;
  z-index: 200;
}

@media screen and (max-width: 768px) {
  #cookies {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: .5em;
    padding-bottom: 15px;
  }
}

#cookies p {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: .85em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}

#cookies a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  color: #fff;
}

#cookies a:hover {
  color: #F4991A;
}

#cookies .c_btn {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: .8em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #F4991A;
  padding: 5px 7px;
  border-radius: 50%;
}

#cookies .c_btn:hover {
  color: #F4991A;
  background: #fff;
  border-radius: 20px;
}

/*  CONDITIONS D'UTILISATION */
#conditions .container {
  width: 70vw;
  flex: 1;
  margin: 2em 0;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

@media screen and (max-width:1500px) {
  #conditions .container {
    width: 90vw;
  }
}

#conditions h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  text-align: left;
}

#conditions h2::before {
  content: '';
  display: block;
  border-top: 0;
  margin-bottom: 0;
}

#conditions h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 1.4em;
  text-align: left;
  padding: 0 0 2em;
  margin: 0;
}

#conditions h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
  color: #332c2c;
  padding: 2em 0;
}

#conditions P {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

#conditions a, #invit a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  color: #332c2c;
  font-size: inherit;
  padding-bottom: 0;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#conditions a:hover, #invit a:hover {
  color: #F4991A;
}

#conditions ul {
  padding-left: 20px;
  list-style: none;
}

#conditions ul>li {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.5;
  padding: 10px 0;
}

#conditions ul>li::before {
  content: "\f111";
  /* FontAwesome Unicode */
  font-family: 'FontAwesome';
  display: inline-block;
  margin-left: -1.9em;
  width: 1.9em;
  color: #F4991A;
  font-size: .5em;
}

#conditions em {
  font-weight: 600;
}

#s3 ul {
  padding-bottom: 0px;
}

.ancre {
  padding-top: 60px;
}

.strong {
  font-weight: 600;
}

#invit h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.56rem;
  font-weight: 600;
  text-align: center;
  color: #888;
  margin-top: 10px;
}

/* - - D I S - - */
#dis h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  text-align: left;
  padding: 0 0 1em;
  margin: 0;
  color: #CC1239;
}

#dis h2::before {
  content: '';
  display: block;
  border-top: 0;
  margin-bottom: 0;
}

#dis h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 1.6em;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
  padding: 0;
  margin: 0;
}

#dis h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  color: #332c2c;
  padding: 0 0 1em;
  margin: 0;
}

#dis h5 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.5;
  color: #F4991A;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

#dis ul {
  padding-left: 20px;
  list-style: none;
  margin-left: .5em;
}

#dis ul>li {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.5;
  padding: 10px 0;
}

#dis ul>li::before {
  content: "\f061";
  /* FontAwesome Unicode */
  font-family: 'FontAwesome';
  display: inline-block;
  margin-left: -1.9em;
  width: 1.9em;
  color: #F4991A;
  font-size: .8em;
}

#dis .container_dis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5em;
}

@media screen and (max-width: 850px) {
  #dis .container_dis {
    grid-template-columns: 1fr;
    gap: 0em;
  }
}

#dis .container_statuts {
  padding: 2em 0 0;
}

#dis a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  color: #332c2c;
  font-size: 1em;
  padding-bottom: 0;
  text-decoration: none;
  text-decoration: underline;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#dis a:hover {
  color: #CC1239;
}

#pdf {
  margin: 3em 0;
}

#pdf .btn_pdf {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  color: #fff;
  background: #CC1239;
  border: 0;
  border-radius: 30px;
  font-size: 1.2em;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#pdf .btn_pdf:hover {
  background: #F4991A;
  transition: all 0.1s ease;
  color: #fff;
}

@media screen and (max-width: 668px) {
  #pdf .btn_pdf {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #CC1239;
    border: 0;
    border-radius: 30px;
    font-size: .75em;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }
}

@media screen and (max-width: 450px) {
  #pdf .btn_pdf {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #CC1239;
    border: 0;
    border-radius: 30px;
    font-size: .65em;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }
}

#error {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'Titillium Web', sans-serif;
  width: 70vw;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 768px) {
  #error {
    width: 90vw;
  }
}

#error h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.5em;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  color: #FF921C;
  padding: 2em 0 1em 0;
}

#error a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: inherit;
  color: #332c2c;
  font-size: inherit;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#error a:hover {
  color: #CC1239;
}

/* - -F A Q - - */
#faq .container_faq {
  width: 70vw;
  flex: 1;
  margin: 2em 0;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

@media screen and (max-width: 668px) {
  #faq .container_faq {
    width: 90vw;
  }
}

#faq h2 {
  font-family: 'Titillium Web', sans-serif;
  text-align: left;
  text-transform: uppercase;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  color: #f4991a;
  padding: .5em 0;
  margin: 0 0 1em;
}

#faq h2::before {
  content: '';
  display: block;
  border-top: 0;
  margin-bottom: 0;
}

#faq h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  color: #CC1239;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
  padding: 2em 0 1em;
}

#faq a {
  font-family: 'Titillium Web', sans-serif;
  font-weight: inherit;
  color: #332c2c;
  font-size: inherit;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#faq a:hover {
  color: #CC1239;
}

#presentation  {
margin-top: 50px;
}

#presentation ul {
  padding-left: 20px;
  list-style: none;
  margin-left: .5em;
}

#presentation ul>li {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 300;
  font-size: 1.15em;
  text-align: left;
  color: #332c2c;
  line-height: 1.75;
  padding: 0 0 10px;
}

#presentation ul>li::before {
  content: "\f111";
  font-family: 'FontAwesome';
  display: inline-block;
  margin-left: -3em;
  width: 3em;
  color: #F4991A;
  font-size: .5em;
}

/*#presentation ul>li:last-child {
  padding-bottom: 0px;
}*/
#presentation p {
  line-height: 1.75;
}

#presentation a {
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#presentation a:hover {
  color: var(--orange);
}

#emission p {
  text-align: left;
  padding: .5em 0;
}

.btn_emission {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 3em;
  justify-items: center;
  padding: 2em 0 0;
}

.presentation {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1em;
  justify-items: center;
  padding: 3em 0 0;
}

.img-adresses img {
  width: 30vw;
  margin: auto;
  padding: 1em 0 2em;
}

@media screen and (max-width:868px) {
  .img-adresses img {
    width: 50vw;
    padding: 1em 0 2em;
  }
}

@media screen and (max-width:668px) {
  .img-adresses img {
    width: 100vw;
    padding: 1em 0 2em;
  }
}

.op3ft img {
  width: 40vw;
  margin: auto;
  padding: 1em 0 0;
}

@media screen and (max-width:768px) {
  .op3ft img {
    width: 100vw;
  }
}

@media screen and (max-width:668px) {
  .img-adresses img {
    width: 100vw;
  }
}

/* - - WEBINAIRES - - */
.webinaires-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  width: 100%;
}

.webinaire-1 {
  grid-column-start: 1;
  grid-column-end: 2;
  padding: 10px 0;
}

@media screen and (max-width: 1350px) {
  .webinaire-1 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (max-width: 630px) {
  .webinaire-1 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

.webinaire-2 {
  grid-column-start: 2;
  grid-column-end: 3;
  padding: 10px 0;
}

@media screen and (max-width: 1350px) {
  .webinaire-2 {
    grid-column-start: 3;
    grid-column-end: 5;
  }
}

@media screen and (max-width: 630px) {
  .webinaire-2 {
    grid-column-start: 4;
    grid-column-end: 7;
  }
}

.webinaire-3 {
  grid-column-start: 3;
  grid-column-end: 4;
  padding: 10px 0;
}

@media screen and (max-width: 1350px) {
  .webinaire-3 {
    grid-column-start: 5;
    grid-column-end: 7;
  }
}

@media screen and (max-width: 630px) {
  .webinaire-3 {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}

.webinaire-4 {
  grid-column-start: 4;
  grid-column-end: 5;
  padding: 10px 0;
}

@media screen and (max-width: 1350px) {
  .webinaire-4 {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media screen and (max-width: 630px) {
  .webinaire-4 {
    grid-column-start: 4;
    grid-column-end: 7;
  }
}

.webinaire-5 {
  grid-column-start: 5;
  grid-column-end: 7;
}

@media screen and (max-width: 1350px) {
  .webinaire-5 {
    grid-column-start: 3;
    grid-column-end: 7;
  }
}

@media screen and (max-width: 630px) {
  .webinaire-5 {
    grid-column-start: 1;
    grid-column-end: 7;
  }
}

.webinaire-container {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.webinaire-container p {
  text-align: center;
  line-height: 1.2;
  font-size: 1em;
}

.webinaire {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 10px 0 20px 0;
  width: 100%;
  height: 100%;
}

.txt-white {
  color: #fff;
}

.webinaire-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 60px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1100px) {
  .webinaire-logo img {
    max-height: 70px;
  }
}

.bottom-2em {
  padding-bottom: 3em;
}

#webies {
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

#webies p {
  padding-bottom: 0;
}

#webies a {
  font-size: 1em;
  margin-left: 10px;
}

.bourse-btn {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #332c2c;
  border: 2px solid #7d7b7b;
  border-radius: 30px;
  padding: 5px 20px;
  margin: 5px 0 0;
  /**/
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.bourse-direct-btn {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 1em;
  text-align: center;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 2px solid #f29800;
  border-radius: 30px;
  padding: 5px 20px;
  margin: 5px 0 0;
  /**/
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.bourse-direct-btn:hover {
  color: #fff;
  background: #f29800;
  border: 2px solid #f29800;
}

.revoir {
  margin-top: 10px;
}

.revoir a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  font-size: .8em;
  color: #f29800;
  text-decoration: none;
}

.revoir a:hover {
  color: #fff;
}

.revoir-1 {
  margin-top: 10px;
}

.revoir-1 a {
  font-family: "Titillium Web", sans-serif;
  font-weight: 500;
  font-size: .8em;
  color: #000;
  text-decoration: none;
}

.revoir-1 a:hover {
  color: #928C8C;
}

.bourse-btn:hover {
  color: #fff;
  background: #7d7b7b;
  border: 2px solid #7d7b7b;
}

.bg_bd {
  background: #003b79;
}

.bg_boursorama {
  background: #FBF6F6;
}

.newcap-bg {
  background: #EBE4E4;
}

/* - - MEETING ZOOM - - */
.zoom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0em;
  align-items: center;
  border: 3px solid #CBBFBF;
  border-radius: 20px;
  height: 100%;
  margin-top: 0;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .zoom {
    grid-template-columns: 1fr;
  }
}

.container-zoom {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 3em;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .container-zoom {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

.container-zoom p {
  line-height: 3;
}

.zoom {
  margin: 0 0 4em;
}

.zoom p {
  text-align: left;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .zoom p {
    text-align: center;
    line-height: 1.3;
  }
}

.zoom a {
  font-size: 1em;
  font-weight: 600;
  line-height: inherit;
  color: #f4991a;
  text-decoration: none;
  margin: 0;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.zoom a:hover {
  color: #312B2B;
}

.photos-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: auto;
}

.reasons {
  display: flex;
  align-items: flex-start;
}

.number {
  max-height: 60px;
  margin-right: 10px;
  margin-top: 5px;
}

.numbers {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: flex-start;
  margin: 0 0 2em 0;
}

/* - - TEMOIGNAGES - - */
#blockquote {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}

#blockquote p {
  text-align: left;
  font-family: "Titillium Web", sans-serif;
  font-style: italic;
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 10px;
}

#blockquote .name {
  font-weight: 600;
  color: #f4991a;
  padding-left: 30px;
}

#blockquote .next {
  padding-top: 50px;
}

/* - - CAROUSEL - - */
#carousel {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  background: #F1EDEA;
  border-radius: 20px;
  margin: 4em 0 1em;
}

#carousel p {
  text-align: center;
  font-weight: normal;
  font-size: .85em;
  margin: 0;
  padding: 1em 0;
  margin: 0 2em;
}

.glide img {
  height: 100%;
  width: 100%;
  filter: drop-shadow(3px 5px 3px rgba(0, 0, 0, 0.25));
}

.glide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: none;
}

.glide__track ul {
  margin: auto;
}

.glide__track ul {
  list-style: none;
  padding: 1em 0;
}

.carousel-container {
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

.centered {
  display: grid;
  place-items: center;
  margin-top: 1em;
}

/* - - BTN SOUSCRIRE - - */
.btn-souscrire-top {
  display: inline-block;
  position: fixed;
  float: right;
  right: 25px;
  top: 110px;
  z-index: 30;
  padding: 8px 15px;
  background: #f4991a;
  border: 3px solid #f4991a;
  border-radius: 30px;
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 1.05em;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  /**/
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-shadow: rgba(50, 50, 93, 0.2) 0px 6px 12px -2px, rgba(0, 0, 0, 0.2) 0px 3px 7px -3px;
}

.btn-souscrire-top:hover {
  background: #fff;
  border: 3px solid #f4991a;
  color: #575553;
}

@media screen (max-width; 668px) {
  .btn-souscrire-top {
    font-size: .8em;
  }
}

#countdown {
  display: block;
  position: fixed;
  background: #cc1239;
  z-index: 200;
  left: 170px;
  top: 10px;
  padding: 5px 25px;
  border-radius: 25px;
}

#countdown p {
  font-size: 1.8em;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

#countdown-last {
  display: block;
  position: fixed;
  background: #cc1239;
  z-index: 200;
  left: 150px;
  top: 15px;
  padding: 5px 20px;
  border-radius: 25px;
}

#countdown-last p {
  font-size: 1.2em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.blink {
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-iteration-count: 2;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
}

@-webkit-keyframes blinker {
  from {
    opacity: 1.0;
  }

  to {
    opacity: 0.0;
  }
}

#localisation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#localisation h4 {
  padding: 1em 0 0;
}

#localisation p {
  font-size: .85em;
  text-align: center;
  margin-bottom: 10px;
}

.google-maps {
  position: relative;
  padding-bottom: 80%; // This is the aspect ratio
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  .google-maps {
    position: relative;
    padding-bottom: 100%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
  }
}

.google-maps-div {
  padding-bottom: 80%; // This is the aspect ratio
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.otop-f2r2 {
  display: grid;
  place-items: center;
  margin: 5em auto;
  padding: 20px;
  border-radius: 20px;
  background: #EEE3E3;
  border-radius: 20px;
}

.otop-f2r2 h2 {
  font-size: 1.5em;
  text-align: center;
}

.otop-f2r2 p {
  text-align: center;
  line-height: 1.5;
}

.otop-f2r2 a {
  color: #332c2c;
  text-decoration: none;
  padding-bottom: 0;
  text-decoration: none;
  border-bottom: 1px solid #f4991a;
  display: inline-block;
  line-height: 1.5;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.otop-f2r2 a:hover {
  color: #cd7e10;
}

.otop-f2r2 span {
  font-weight: inherit;
}

.otop-f2r2 br {
  margin-bottom: 10px;
}

/* - - LANDING PAGE - - */
#landing-page {
  max-width: 600px;
  width: 95%;
  flex: 1;
  margin: 0 auto;
  padding: 6em 0 3em;
}

/*@media screen and (max-width:668px){
  #landing-page {
    padding: 10em 0 3em;
  }
}*/
#landing-page h3 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  color: #f4991a;
  padding: 0;
  margin: 1em 0;
}

#landing-page h4 {
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: .85;
  color: #403432;
  padding: 0;
  margin: 1em 0;
}

#landing-page p {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.3;
  padding: 0;
}

#landing-page a {
color: inherit;
}

#landing-page a:hover {
color: var(--orange);
}

#landing-page .mentions {
  text-align: justify;
  font-size: .8em;
  line-height: 1.3;
  padding: 0;
}

#landing-page .img_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1.5em 0;
}

.bloc-orange {
  background: var(--orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 10px 10px 20px;
}

.padding-sides{
  padding: 0 ;
  margin: 3em 0;
}

#landing-page .btn_je_minscris{
  background: var(--red);
  font-family: 'Titillium Web', sans-serif;
  font-size: 2em;
  font-weight: 600;
  color: #fff;
  border: 0;
  border-radius: 40px;
  padding: 10px 40px;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

#landing-page .btn_je_minscris:hover{
  background: var(--orange);
  color: #fff;
}

.btn_container{
  display: flex;
align-items: center;
justify-content: center;
margin: 2em 0;
}

/*  JANVIER 2023 */
.overviewtop {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.2em 0 50px;
  background: #f0e9e8;
  padding: 0.5em;
}

/*  SEPTEMBRE 2022 */
.overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.2em 0 50px;
  background: #f0e9e8;
  padding: 0 2em 2em;
}

@media screen and (max-width: 968px) {
  .overview {
    padding: 0 1em 1em;
  }
}

.overview_container_2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  align-items: start;
  justify-items: start;
}

@media screen and (max-width: 968px) {
  .overview_container_2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.overview h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 2em;
  font-weight: 300;
  text-align: center;
  line-height: 1;
  color: #fff;
  background: var(--orange);
  width: 100%;
  margin: 20px 0;
  padding: 0 15px 20px;
}

@media screen and (max-width:668px) {
  .overview h2 {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.2;
    padding: 0 20px 20px;
  }
}

.overview h3 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
  margin: 0;
  padding: 20px 0 10px;
  color: var(--red);
}

.overview_container_2col p {
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1;
  margin-bottom: 0;
}

.overview_container_2col .mention {
  font-size: 12px;
  background: transparent;
  text-align: left;
  margin-left: -5px;
}

.centered_container {
  display: flex;
  align-items: flex-start;
}

.overview_img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

#overview_spacer {
  margin: 30px 0;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding: 20px 0;
  width: 100%;
}

#overview_spacer p {
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.3;
  text-align: center;
}

@media screen and (max-width:668px) {
  #overview_spacer p {
    font-size: 1.3em;
  }
}

#devenir-actionnaire {
  position: absolute;
  padding-top: 165px;
  margin-top: -165px;
}

@media screen and (max-width:668px) {
  #devenir-actionnaire {
    position: absolute;
    padding-top: 170px;
    margin-top: -170px;
  }
}

.overview sup {
  vertical-align: baseline;
  position: relative;
  top: -0.5em;
  font-size: .75em;
}

@media screen and (max-width:668px) {
  .h2-top h2{
    margin-top: 1em;
  }
}


/*  SEPTEMBRE 2025  */
.invitation{
  background: #fff;
  border-radius: 8px;
  padding: 3em;
  box-shadow: 0 1px 1px rgba(0,0,0,0.10),
              0 2px 2px rgba(0,0,0,0.10),
              0 4px 4px rgba(0,0,0,0.10),
              0 8px 8px rgba(0,0,0,0.10);
}


.invitation p{
font-weight: 300;
font-size: 1.2rem;
text-align: left;
}

.livret {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  margin: 30px auto 50px;
  max-width: 500px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:668px) {
  .livret {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .livret a{
  text-align: center;
  }
}

#livret p{
  font-size: 1.25em;
  line-height: 1.2;
}

.livret a{
text-align: left;
font-size: 1.2rem;
}

 .light{
font-weight: 300;
}

#livret img{
  height: 200px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.09),
    0 4px 12px rgba(0, 0, 0, 0.09);
}

.livret-links{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.div-centered{
  display: grid;
  place-items: center;
  margin: 40px 0;
}
.videos-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
}
@media screen and (max-width:768px) {
  .videos-container{
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em;
  }
}
