/* COULEURS */
/* STRUCTURE */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

/* RESET */
h1, h2, h3, h4, h5, h6, ul, ol, li, p, figure {
  margin: 0;
  padding: 0;
}

li, a {
  list-style-type: none;
  text-decoration: none;
}

p {
  margin: 0 0 15px;
}

/* HEADINGS */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 110px;
  line-height: 1;
  margin: 0 0 30px;
}

@media all and (max-width: 767px) {
  h1, .h1 {
    font-size: 90px;
  }
}

h2, .h2 {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

@media all and (max-width: 767px) {
  h2, .h2 {
    font-size: 50px;
  }
}

h3 {
  margin: 0 0 30px;
}

ul.dots li {
  position: relative;
  padding: 0 0 0 15px;
}

ul.dots li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #f2f2e2;
  border-radius: 5px;
}

/* FORMULAIRE */
form {
  width: 450px;
  margin: 30px auto 0;
}

form button {
  margin: 30px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  color: #f2f2e2;
  text-decoration: none;
  cursor: pointer;
}

form button:hover {
  text-decoration: underline;
}

form button:focus {
  outline: none;
}

form input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

form input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

form input[type="checkbox"] + label {
  position: relative;
  padding: 0 0 0 30px;
}

form input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 18px;
  height: 18px;
  border: solid 2px #f2f2e2;
}

form input[type="checkbox"] + label:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  border: solid #f2f2e2;
  border-width: 0 2px 2px 0;
  padding: 5px 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

form .form-group {
  position: relative;
}

form .form-group.error .form-control {
  border-color: #e74c3c;
}

form .form-group .form-control {
  margin: 0 0 var(--bs-gutter-x);
  padding: 0 10px;
  width: 100%;
  height: 38px;
  border: 2px solid #f2f2e2;
  border-radius: 0;
  background: #262525;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #f2f2e2;
}

form .form-group .form-control::-webkit-input-placeholder {
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
}

form .form-group .form-control:-ms-input-placeholder {
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
}

form .form-group .form-control::-ms-input-placeholder {
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
}

form .form-group .form-control::placeholder {
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
}

form .form-group .form-control:focus {
  outline: none;
}

form .message {
  margin: 30px 0 0;
  display: block;
  font-size: 16px;
}

form .msg {
  display: none;
  color: #aec15d;
  text-align: center;
  font-weight: 700;
  margin: 30px 0 30px;
}

/* FORMULAIRE DE RECHERCHE */
.recherche {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.recherche form {
  width: auto;
  margin: 0;
}

.recherche form button {
  margin: 0;
  position: absolute;
  width: 28px;
  height: 28px;
  border: none;
  background: #f2f2e2;
  cursor: pointer;
  -webkit-transition: background .5s ease;
  transition: background .5s ease;
}

.recherche form button .loupe {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #262525;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: border .5s ease;
  transition: border .5s ease;
}

.recherche form button .loupe:after {
  content: '';
  position: absolute;
  top: 12px;
  left: 5px;
  height: 6px;
  width: 2px;
  background: #262525;
  -webkit-transition: background .5s ease;
  transition: background .5s ease;
}

.recherche form button:hover {
  background: #262525;
}

.recherche form button:hover .loupe {
  border: 2px solid #f2f2e2;
}

.recherche form button:hover .loupe:after {
  background: #f2f2e2;
}

.recherche form .form-control {
  margin: 0;
  height: 28px;
  font-size: 14px;
}

@media all and (max-width: 991px) {
  .recherche {
    position: relative;
  }
  .recherche form .form-group .form-control {
    width: calc(100% - 90px);
    margin: 0 auto;
  }
}

@media all and (max-width: 767px) {
  .recherche form .form-group .form-control {
    margin: 0 auto;
  }
}

/* FORMULAIRE DE PRET */
.container-films form {
  width: 100%;
  margin: 0 0 60px;
  padding: 15px 0 0;
  /*border-top: 1px solid $beige;*/
}

.container-films form .form-group .form-control::-webkit-input-placeholder {
  font-weight: 300;
  color: rgba(242, 242, 226, 0.5);
}

.container-films form .form-group .form-control:-ms-input-placeholder {
  font-weight: 300;
  color: rgba(242, 242, 226, 0.5);
}

.container-films form .form-group .form-control::-ms-input-placeholder {
  font-weight: 300;
  color: rgba(242, 242, 226, 0.5);
}

.container-films form .form-group .form-control::placeholder {
  font-weight: 300;
  color: rgba(242, 242, 226, 0.5);
}

.container-films form .btn {
  margin: 0;
  width: 100%;
  height: 48px;
  font-weight: 400;
  text-decoration: none;
}

.container-films form .message {
  font-size: 14px;
  text-align: center;
  color: rgba(242, 242, 226, 0.5);
}

/* HEADER */
.container-header {
  padding: 40px 0 90px;
  position: relative;
}

.container-header:after, .container-header:before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  background: #f2f2e2;
}

.container-header:after {
  bottom: 40px;
  height: 10px;
}

.container-header:before {
  bottom: 30px;
  height: 3px;
}

.container-header header {
  position: relative;
  z-index: 2;
}

.container-header header .logo {
  width: 450px;
  margin: 0 auto;
  position: relative;
}

.container-header header .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.container-header header .container-menu {
  display: block;
  width: 160px;
  height: 139px;
  position: absolute;
  top: 0;
  right: 15px;
  padding: 15px 0;
  background: no-repeat center center/cover url(../images/header.svg);
  z-index: 3;
}

.container-header header .container-menu ul li {
  padding: 5px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  text-align: center;
  -webkit-transition: background .25s ease;
  transition: background .25s ease;
}

.container-header header .container-menu ul li a {
  text-decoration: none;
  color: #f2f2e2;
  -webkit-transition: color .25s ease;
  transition: color .25s ease;
}

.container-header header .container-menu ul li:hover {
  background: #f2f2e2;
}

.container-header header .container-menu ul li:hover a {
  color: #262525;
}

.container-header header .container-menu .etoiles {
  margin: 5px 0 0;
}

@media all and (max-width: 1399px) {
  .container-header header .container-menu {
    right: -45px;
  }
}

@media all and (max-width: 1199px) {
  .container-header header .container-menu {
    right: -90px;
  }
}

@media all and (max-width: 991px) {
  .container-header {
    padding: 15px 0 60px;
  }
  .container-header header .burger {
    display: block;
    position: absolute;
    bottom: 15px;
    right: 0;
  }
  .container-header header .logo {
    width: 100%;
  }
  .container-header header .logo a {
    display: block;
  }
  .container-header header .logo a img {
    width: 200px;
    margin: 0 auto 30px;
  }
  .container-header header .container-menu {
    display: none;
  }
  .container-header header .container-menu ul li:not(:last-child) {
    margin: 0 0 5px;
  }
  .container-header header .container-menu.on {
    display: block;
    background: #262525;
    width: 100%;
    position: relative;
    top: 0;
    bottom: calc(-100% + 21px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border: 2px solid #f2f2e2;
  }
}

/* HEADER - CONNEXION */
.connexion {
  background: #262525;
}

.connexion .container-header:before {
  content: none;
}

.connexion .container-header:after {
  top: 200px;
  bottom: 0;
}

@media all and (max-width: 991px) {
  .connexion .container-header:after {
    top: 85px;
  }
}

/* FOOTER */
footer .mentions {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

footer .mentions p {
  margin: 5px 0;
}

/* BLOCS */
.container-image {
  position: relative;
}

.container-image.container-ambiance {
  height: 220px;
}

.container-image.container-ambiance .ambiance {
  padding: 15px 0;
  width: 800px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container-image.container-ambiance .ambiance img {
  width: 100%;
}

.container-image.container-ambiance .date {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.container-image.container-bobine {
  height: 90px;
}

.container-image.container-bobine .bobine {
  width: 450px;
  position: absolute;
  bottom: -130px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.container-image.container-bobine .bobine img {
  width: 100%;
}

@media all and (max-width: 991px) {
  .container-image.container-ambiance {
    height: 100%;
  }
  .container-image.container-ambiance .ambiance {
    display: none;
  }
  .container-image.container-ambiance .date {
    position: relative;
    font-size: 14px;
    margin: 15px 0;
  }
  .container-image.container-bobine {
    display: none;
  }
  .container-image.container-bobine .bobine {
    display: none;
  }
}

.container-article {
  padding: 45px 0;
}

.container-article article p, .container-article article img {
  margin: 0 0 30px;
  text-align: justify;
}

.container-article article a {
  text-decoration: underline;
}

.container-article article img {
  margin: 0 0 30px;
  display: block;
  max-width: 100%;
  /*width: 100%;*/
  height: auto;
}

.container-article article img.aligncenter {
  margin: 0 auto 30px;
}

.container-article article .image {
  position: relative;
}

.container-article article .image img {
  margin: 0 0 145px;
}

.container-article article .image h2 {
  width: 100%;
  position: absolute;
  bottom: -128px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  line-height: 1.25;
}

.container-article article .accroche {
  text-align: center;
}

.container-article article .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container-article article .wp-block-columns .wp-block-column {
  width: calc(50% - 15px);
}

@media all and (max-width: 767px) {
  .container-article article .image img {
    margin: 0 0 75px;
  }
  .container-article article .image h2 {
    bottom: -70px;
  }
  .container-article article .wp-block-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-article article .wp-block-columns .wp-block-column {
    width: 100%;
  }
}

.container-search {
  padding: 170px 0 0 0;
}

@media all and (max-width: 991px) {
  .container-search {
    padding: 15px 0 0 0;
  }
}

.container-films {
  padding: 160px 0 45px;
}

.container-films .filtres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 3;
  margin: 0 0 30px;
}

.container-films .filtres .btn {
  display: inline-block;
  font-size: 16px;
  width: calc((100% - (100% / 8)) / 4);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.container-films .filtres .btn:first-child {
  width: calc(100% / 8);
  font-size: 18px;
  cursor: auto;
  background: #262525;
  border-color: #262525;
  color: #f2f2e2;
}

.container-films .filtres .btn:first-child:hover {
  background: #262525;
  color: #f2f2e2;
}

.container-films .filtres .btn:not(:first-child) {
  padding: 0 0 0 45px;
  text-align: left;
}

.container-films .filtres .btn:not(:first-child):after, .container-films .filtres .btn:not(:first-child):before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.container-films .filtres .btn:not(:first-child):after {
  left: 10px;
  width: 18px;
  height: 18px;
  border-radius: 18px;
  border: 1px solid #262525;
  -webkit-transition: border .5s ease;
  transition: border .5s ease;
}

.container-films .filtres .btn:not(:first-child):before {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: transparent;
  -webkit-transition: background .5s ease;
  transition: background .5s ease;
}

.container-films .filtres .btn:not(:first-child):hover:after {
  border: 1px solid #f2f2e2;
}

.container-films .filtres .btn:not(:first-child):hover:before {
  /*background: $beige;*/
}

.container-films .filtres .btn:hover form ul {
  display: block;
}

.container-films .filtres .btn.active {
  background: #262525;
  color: #f2f2e2;
}

.container-films .filtres .btn.active:before {
  background: #f2f2e2;
}

.container-films .filtres .btn.active:after {
  border: 1px solid #f2f2e2;
}

.container-films .filtres .btn:not(:last-child) {
  margin: 0 1px 0 0;
}

.container-films .filtres .btn form {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.container-films .filtres .btn form ul {
  position: absolute;
  top: 44px;
  left: -2px;
  right: -2px;
  background: #f2f2e2;
  padding: 10px;
  display: none;
}

.container-films .filtres .btn form ul input {
  position: absolute;
  opacity: 0;
}

.container-films .filtres .btn form ul input:checked + label:after {
  opacity: 1;
}

.container-films .filtres .btn form ul input + label {
  position: relative;
  display: block;
  padding: 0 0 0 30px;
  color: #262525;
}

.container-films .filtres .btn form ul input + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: solid 1px #262525;
}

.container-films .filtres .btn form ul input + label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  border: solid #262525;
  border-width: 0 2px 2px 0;
  padding: 4px 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.container-films .films {
  -webkit-column-count: 4;
          column-count: 4;
  margin: 0 0 45px;
  position: relative;
}

.container-films .films ul {
  margin: 0 0 15px;
  /*break-inside: avoid;
            page-break-inside: avoid;*/
  width: 100%;
}

.container-films .films ul li {
  margin: 0 0 8px;
  line-height: 1.3;
}

.container-films .films ul li:first-child {
  font-size: 80px;
}

.container-films .films ul li a:hover small {
  text-decoration: none;
  background: #f2f2e2;
  color: #262525;
}

.container-films .films ul li a small {
  font-size: 11px;
  padding: 1px 3px;
  border-radius: 2px;
  position: relative;
  top: -1px;
  margin: 0 0 0 5px;
  border: solid 1px #f2f2e2;
}

.container-films .films.filtre {
  -webkit-column-count: auto;
          column-count: auto;
}

.container-films .films.filtre h1 {
  margin: 0 0 30px;
  /*font-family: 'Nunito Sans', sans-serif;
                font-weight: 300;*/
  font-size: 72px;
}

.container-films .films.filtre ul li:first-child {
  font-size: 17px;
}

.container-films .films .loading {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(38, 37, 37, 0.8);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
}

.container-films .films .loading.on {
  display: block;
}

.container-films .films .loading span {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 100px;
  left: calc(50% - 40px);
}

.container-films .films .loading span:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 4px solid #f2f2e2;
  border-color: #f2f2e2 transparent #f2f2e2 transparent;
  -webkit-animation: loading 1.2s linear infinite;
          animation: loading 1.2s linear infinite;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.container-films .film {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-films .film .image {
  width: 400px;
  margin: 12px 30px 0 0;
}

.container-films .film .fiche {
  width: calc(100% - 430px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-films .film .fiche h1 {
  font-size: 80px;
}

.container-films .disponibilite {
  margin: 45px 0 30px;
  padding: 15px 0;
  border-top: 1px solid #f2f2e2;
  border-bottom: 1px solid #f2f2e2;
}

.container-films .disponibilite button {
  background: none;
  border: none;
  color: #f2f2e2;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  position: relative;
  padding: 0 0 0 40px;
  opacity: .5;
  cursor: pointer;
}

.container-films .disponibilite button:after, .container-films .disponibilite button:before {
  content: '';
  position: absolute;
}

.container-films .disponibilite button:before {
  top: -3px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border: 1px solid #f2f2e2;
}

.container-films .disponibilite button:first-child {
  margin: 0 45px 0 0;
}

.container-films .disponibilite button:not(.enable) {
  opacity: 0.1;
  pointer-events: none;
  cursor: not-allowed;
}

.container-films .disponibilite button.active {
  opacity: 1;
}

.container-films .disponibilite button.active:after {
  top: 2px;
  left: 5px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #f2f2e2;
}

.container-films .disponibilite + button {
  margin: 0 0 30px;
}

.container-films .en-ligne, .container-films .en-dvd {
  display: none;
  margin: 0 0 30px;
}

.container-films .en-ligne.active, .container-films .en-dvd.active {
  display: block;
}

.container-films .en-ligne .btn, .container-films .en-dvd .btn {
  background: #262525;
  color: #f2f2e2;
}

.container-films .en-ligne .btn:hover, .container-films .en-dvd .btn:hover {
  background: #f2f2e2;
  color: #262525;
}

.container-films .autres h2 {
  font-size: 26px;
  font-weight: 600;
  text-transform: none;
  text-align: left;
}

@media all and (max-width: 1023px) {
  .container-films .films {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media all and (max-width: 991px) {
  .container-films .filtres {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-films .filtres .btn {
    width: 100%;
  }
  .container-films .filtres .btn:not(:first-child) {
    padding: 8px 0 8px 45px;
  }
  .container-films .filtres .btn:not(:last-child) {
    margin: 0 0 1px 0;
  }
  .container-films .films {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .container-films .films.filtre ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .container-films .film .fiche, .container-films .film .image {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .container-films {
    padding: 45px 0;
  }
  .container-films .films {
    -webkit-column-count: 1;
            column-count: 1;
  }
  .container-films .films ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container-films .film {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container-films .film .image {
    width: 100%;
    margin: 0 0 15px;
  }
  .container-films .film .fiche {
    width: 100%;
  }
  .container-films .film .fiche h1 {
    margin: 15px 0;
  }
  .container-films .disponibilite {
    margin: 30px 0;
  }
  .container-films .disponibilite button:first-child {
    margin: 0 0 15px;
  }
  .container-films .disponibilite + button {
    width: 100%;
  }
}

/* CLASSE */
.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.background-noir {
  background: #262525;
  color: #f2f2e2;
}

.background-noir a {
  color: #f2f2e2;
}

.background-noir a:hover {
  text-decoration: underline;
}

.background-noir article {
  color: #f2f2e2;
}

.background-noir .btn-audio {
  background: no-repeat center/24px auto url(../images/son-blanc.svg);
}

.background-noir .btn-audio:hover {
  background: no-repeat center/24px auto url(../images/son-vert.svg);
}

.background-beige {
  background: #f2f2e2;
  color: #262525;
}

.background-beige .accroche span {
  background: #f2f2e2;
}

.background-beige .accroche:after, .background-beige .accroche:before {
  background: #262525;
}

.background-beige a {
  color: #262525;
}

.background-beige a:hover {
  text-decoration: underline;
}

.background-beige article {
  color: #262525;
}

.background-beige .btn-audio {
  background: no-repeat center/24px auto url(../images/son-noir.svg);
}

.background-beige .btn-audio:hover {
  background: no-repeat center/24px auto url(../images/son-vert.svg);
}

.image img {
  display: block;
  width: 100%;
  height: auto;
}

.accroche {
  margin: 30px 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.accroche span {
  background: #262525;
  padding: 15px 30px;
  position: relative;
  z-index: 2;
}

.accroche:after, .accroche:before {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #f2f2e2;
}

.accroche:after {
  top: -1px;
  height: 8px;
}

.accroche:before {
  bottom: -1px;
  height: 2px;
}

.accroche + p:first-letter {
  float: left;
  font-size: 110px;
  line-height: 100%;
  /* margin: -.1em 0px; */
  padding-right: .1em;
}

@media all and (max-width: 767px) {
  .accroche {
    font-size: 12px;
  }
  .accroche span {
    padding: 15px;
  }
}

.banniere {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banniere.banniere-forme {
  margin: 30px 0 0;
}

.banniere.banniere-ouvrir {
  height: 302px;
  background: repeat-x center center/auto 100% url(../images/ouvrir.png);
}

.banniere img {
  margin: 0 auto;
}

@media all and (max-width: 991px) {
  .banniere.banniere-ouvrir {
    height: 230px;
  }
}

@media all and (max-width: 629px) {
  .banniere.banniere-ouvrir {
    height: 90px;
  }
}

@media all and (max-width: 345px) {
  .banniere img {
    width: 100%;
  }
}

.retour {
  display: block;
  position: relative;
  font-size: 18px;
  margin-top: 30px;
}

.retour span {
  padding: 0 30px 0 0;
  background: #262525;
  position: relative;
  z-index: 2;
}

.retour:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #f2f2e2;
  z-index: 1;
}

.etoiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.etoiles .etoile {
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
}

.etoiles .etoile:not(:last-child) {
  margin: 0 3px 0 0;
}

.etoiles .etoile:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: no-repeat center center/cover url(../images/etoile.svg);
}

.burger {
  display: none;
  width: 36px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.burger:before, .burger:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.burger:before {
  top: 11px;
  border-top: 2px solid #f2f2e2;
}

.burger:after {
  height: 20px;
  border-top: 2px solid #f2f2e2;
  border-bottom: 2px solid #f2f2e2;
}

.content {
  color: black;
}

/* BTN */
.btn {
  padding: 7px 15px;
  background: #f2f2e2;
  color: #262525;
  border: 2px solid #f2f2e2;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: background .25s ease, color .25s ease;
  transition: background .25s ease, color .25s ease;
  text-align: center;
}

.btn:hover {
  background: #262525;
  color: #f2f2e2;
}

/* AUDIO */
audio {
  display: none;
}

.btn-audio {
  width: 24px;
  height: 24px;
  margin: 0 5px;
  display: inline-block;
  position: relative;
  top: 6px;
  cursor: pointer;
}
/*# sourceMappingURL=styles.css.map */