* {
  box-sizing: border-box;
}

/* STRUCTURE */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
  line-height: 1.5;
}

/* RESET */
h1, h2, h3, h4, p, ul {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* DEFAUT */
h1:not(.upper) {
  position: relative;
  padding: 0.25rem 0 0 3rem;
  margin: 0 0 2.5rem;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #A41028;
  text-transform: uppercase;
}
h1:not(.upper):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../img/h.svg);
}

h2 {
  font-family: "Arsenal", sans-serif;
  color: #A41028;
  text-indent: 0;
  font-size: 1.75rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem;
  background: none;
}
h2 span {
  position: relative;
  padding: 0 0 0 3rem;
}
h2 span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../img/h.svg);
}

h3 {
  margin: 0 0 2rem;
  font-family: "Arsenal", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

h4 {
  margin: 0 0 1rem;
  font-family: "Arsenal", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #A41028;
  text-transform: none;
}

p {
  margin: 0 0 1.5rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
}

ul {
  margin: 0 0 1.5rem;
}
ul.clean li {
  padding: 0;
}
ul.clean li:before {
  content: none;
}
ul li {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0 0 0 1rem;
  font-weight: 700;
  position: relative;
}
ul li:before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1rem;
  background: #A41028;
}
ul li:last-child {
  margin: 0;
}

/* MARGES */
.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mt-11 {
  margin-top: 11rem;
}

.mb-11 {
  margin-bottom: 11rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mb-12 {
  margin-bottom: 12rem;
}

/* HEADER */
header {
  margin: 0 0 3rem;
  border-bottom: solid 4px #D18793;
}
header span {
  display: none;
}
header .d-wrapper ul {
  margin: 0;
  display: flex;
}
header .d-wrapper ul li {
  width: 16.6666666667%;
  margin: 0;
  padding: 0;
  position: relative;
}
header .d-wrapper ul li.select a {
  background: #D18793;
}
header .d-wrapper ul li:before {
  content: none;
}
header .d-wrapper ul li:hover ul {
  display: block;
}
header .d-wrapper ul li a {
  font-family: "Arsenal", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem;
  text-align: center;
  color: white;
  text-decoration: none;
}
header .d-wrapper ul li a:hover {
  background: #D18793;
}
header .d-wrapper ul li ul {
  position: absolute;
  display: none;
  z-index: 1;
  top: 43px;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #A41028;
}
header .d-wrapper ul li ul li {
  width: 100%;
}
header .d-wrapper ul li ul li a {
  text-transform: none;
}
header .logo {
  margin: auto;
}
header .logo img {
  width: 100%;
  max-width: 320px;
  margin: 1rem auto;
  display: block;
}

@media (max-width: 767px) {
  header span {
    display: block;
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    width: 1.5rem;
    aspect-ratio: 1;
    background: no-repeat center/100% url(../img/burger.svg);
  }
  header span.on {
    background: no-repeat center/100% url(../img/close.svg);
  }
  header .d-wrapper {
    display: none;
    position: absolute;
    z-index: 1;
    top: 5.75rem;
    left: 0;
    right: 0;
    background: #A41028;
  }
  header .d-wrapper.on {
    display: block;
  }
  header .d-wrapper ul {
    display: flex;
    flex-direction: column;
  }
  header .d-wrapper ul li {
    width: 100%;
  }
  header .logo img {
    max-width: 220px;
  }
}
/* FOOTER */
footer div.conteneur div.liens div.social a {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  margin: 0 0.75rem 0 0;
  background-size: 100%;
}

/* BG */
.d-bg {
  background: #F6F4EF;
  padding: 2rem 0;
}
.d-bg.d-border {
  border-top: solid 2px #A41028;
}
.d-bg.d-border.d-grid:before {
  border-top: solid 2px #A41028;
}
.d-bg.d-grid {
  position: relative;
  padding: 2rem 1rem 2rem 0;
}
.d-bg.d-grid:before {
  content: "";
  position: absolute;
  left: -200%;
  top: -2px;
  right: 100%;
  bottom: 0;
  background: #F6F4EF;
}
.d-bg.d-grid p:last-child {
  margin: 0;
}

.d-bg-rouge {
  background: #FAF2F4;
}
.d-bg-rouge.d-grid:before {
  background: #FAF2F4;
}

/* ALIGNEMENT */
.text-center {
  text-align: center;
}

/* IMAGES */
.d-image {
  margin: 0 0 2rem;
}
.d-image.d-rounded img {
  border-radius: 0.75rem;
}
.d-image img {
  width: 100%;
  height: auto;
}

/* BOUTON */
.d-btn {
  background: #000;
  color: white;
  display: inline-block;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
}
.d-btn:hover {
  background: #A41028;
}

/* LISTE DES CAS */
.d-form {
  margin: 0 0 3rem;
  padding: 3rem 0;
  background: no-repeat center/cover url(../img/bg-faq.jpg);
  border-radius: 0.75rem;
}
.d-form.d-faq form {
  position: relative;
  width: 60%;
  margin: auto;
}
.d-form.d-faq form:after {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  border: solid #A41028;
  border-width: 0 1px 1px 0;
  padding: 3px;
  transform: rotate(45deg);
  pointer-events: none;
}
.d-form.d-faq form select {
  width: 100%;
}
.d-form form {
  text-align: center;
}
.d-form form select {
  width: 60%;
  height: 2.25rem;
  line-height: 2.25rem;
  margin: auto;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  border: solid 1px #A41028;
  color: #A41028;
  background: white;
}
.d-form form select:focus {
  outline: none;
}

.d-categorie {
  margin: 0 0 3rem;
  font-size: 1.65rem;
  color: #A41028;
  text-align: center;
}
.d-categorie span {
  position: relative;
  padding: 0 0 0 2.5rem;
  font-weight: 700;
}
.d-categorie span:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  aspect-ratio: 1;
  background: #000;
  -webkit-mask: no-repeat center/100% url(../img/h.svg);
          mask: no-repeat center/100% url(../img/h.svg);
}

.d-liste {
  margin: 0 0 2rem;
}
.d-liste .d-element {
  border-top: solid 1px #000;
  /*border-bottom: solid 1px $noir;*/
  padding: 1rem;
  min-height: 5rem;
  position: relative;
  display: none;
}
.d-liste .d-element.on {
  background: #F6F4EF;
}
.d-liste .d-element.on:hover {
  background: #F6F4EF;
}
.d-liste .d-element.on span {
  background: no-repeat center/100% url(../img/moins.svg);
}
.d-liste .d-element.on .d-reponse {
  display: block;
}
.d-liste .d-element:hover {
  background: #F8EDEF;
}
.d-liste .d-element span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../img/plus.svg);
  cursor: pointer;
}
.d-liste .d-element .d-titre {
  font-family: "Arsenal", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 0 5rem 0 0;
}
.d-liste .d-element .d-reponse {
  display: none;
  padding: 1rem 5rem 0 1rem;
}
.d-liste .d-element .d-reponse p:last-child {
  margin: 0;
}

/* FEATURED */
.d-featured {
  margin: 0 0 5rem;
}
.d-featured .d-wrapper {
  background: no-repeat center/cover url(../img/bg-featured.jpg);
  border-radius: 0.75rem;
  padding: 3rem 0 1.5rem 2rem;
}
.d-featured .d-wrapper h1 {
  position: relative;
  padding: 3.5rem 0 0;
  margin: 0 0 1.5rem;
  font-family: "Arsenal", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  text-transform: uppercase;
}
.d-featured .d-wrapper h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  aspect-ratio: 1;
  background: no-repeat center/100% url(../img/logo-part.svg);
}
.d-featured .d-wrapper h1 span {
  font-weight: 700;
  color: #A41028;
}
.d-featured .d-wrapper .d-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.d-featured .d-wrapper .d-image {
  margin: -5rem 0;
  height: calc(100% + 8.5rem);
}
.d-featured .d-wrapper .d-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* CONTACT */
.d-contact {
  background: #F6F4EF;
  border-radius: 0.75rem;
  margin: 0 0 2rem;
  padding: 2rem;
}
.d-contact input, .d-contact textarea {
  font-family: "Arial", sans-serif;
  border: solid 1px #A41028;
  border-radius: 0.5rem;
  height: 2.25rem;
  line-height: 2.25rem;
}
.d-contact textarea {
  height: 10rem;
  line-height: 1.4;
  resize: none;
}
.d-contact label {
  margin: 0 0 0.25rem;
  color: #A41028;
  display: block;
}
.d-contact label sup {
  color: #000;
}
.d-contact small {
  font-size: 0.8rem;
  line-height: 1.3;
  display: block;
}/*# sourceMappingURL=davy.css.map */