@charset "UTF-8";
@import url("https://use.typekit.net/nqj5alp.css");
@font-face {
  font-family: "icones";
  src: url("../../../assets/fonts/icones.eot");
  src: url("../../../assets/fonts/icones.eot") format("embedded-opentype"), url("../../../assets/fonts/icones.woff") format("woff"), url("../../../assets/fonts/icones.ttf") format("truetype"), url("../../../assets/fonts/icones.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.titre__bg, .burger__checkbox:checked ~ .burger__wrapper .burger__bar:first-child, .burger__checkbox:checked ~ .burger__wrapper .burger__bar:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button__over, .backTop:hover, .instagram a:hover, .footer__barreInsta p a:hover, .footer__copyright a:hover, .menu, .burger__checkbox:checked ~ .burger__wrapper .burger__bar {
  transition: all 0.2s ease-out;
}

.titre, .backTop, .burger__wrapper, .flex__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  display: grid;
}

.text-align__left {
  text-align: left;
}

.text-align__right {
  text-align: right;
}

.titre__paragraphe, .footer, .text-align__center {
  text-align: center;
}

.text-align__justify {
  text-align: justify;
}

.text-align__inherit {
  text-align: inherit;
}

.text-align__start {
  text-align: start;
}

.text-align__end {
  text-align: end;
}

.button__name, .titre, .instagram, .footer__barreInsta p, .footer__copyright, .text-transform__uppercase {
  text-transform: uppercase;
}

.text-transform__capitalize {
  text-transform: capitalize;
}

.text-transform__lowercase {
  text-transform: lowercase;
}

.titre__paragraphe, .text-transform__initial {
  text-transform: initial;
}

/*! STYLE REBOOT */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-1);
  font-family: var(--font-1);
  background: var(--white);
  font-size: 17px;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: var(--color-2);
}
a:hover {
  color: var(--color-2--dark);
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*! STYLE ROOT */
:root {
  --color-1: #0B3A68;
  --color-2: #5B95CE;
  --color-3: #0B1F33;
  --color-1--dark: #01070c;
  --color-1--light: #156dc4;
  --color-2--dark: #2d6296;
  --color-2--light: #aac8e5;
  --black: #000000;
  --white: #ffffff;
  --font-1: roboto, sans-serif;
  --font-2: teko, sans-serif;
  --font-icone: "icones";
}

/*! STYLE GRID */
@media screen and (min-width: 769px) {
  .grid__col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-1 {
    grid-column: span 1;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-2 {
    grid-column: span 2;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-3 {
    grid-column: span 3;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-4 {
    grid-column: span 4;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-5 {
    grid-column: span 5;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-6 {
    grid-column: span 6;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-7 {
    grid-column: span 7;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-8 {
    grid-column: span 8;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-9 {
    grid-column: span 9;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-10 {
    grid-column: span 10;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-11 {
    grid-column: span 11;
  }
}
@media screen and (min-width: 769px) {
  .grid__col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (min-width: 577px) {
  .grid__span-12 {
    grid-column: span 12;
  }
}
.grid__gap {
  gap: 3em;
}

/*! STYLE FLEX */
.flex {
  display: flex;
}
.flex__column {
  flex-direction: column;
  justify-content: center;
}

/*! STYLE KEYFRAMES */
.animate-slide-out {
  animation-duration: 3s;
  animation-name: animationSlideOut;
}

.animate-slide-in {
  animation-duration: 3s;
  animation-name: animationSlideIn;
}

@keyframes animationSlideOut {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-110%);
  }
}
@keyframes animationSlideIn {
  0% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(0%);
  }
}
* {
  box-sizing: border-box;
}

header {
  overflow: hidden;
}

/*! STYLE MENU */
.burger__checkbox {
  position: absolute;
  visibility: hidden;
}
.burger__checkbox:checked ~ .burger__wrapper {
  background: transparent;
}
.burger__checkbox:checked ~ .burger__wrapper .burger__bar {
  background: var(--color-2);
  width: 100%;
}
.burger__checkbox:checked ~ .burger__wrapper .burger__bar:nth-child(2) {
  display: none;
}
.burger__checkbox:checked ~ .burger__wrapper .burger__bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger__checkbox:checked ~ .burger__wrapper .burger__bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burger__checkbox:checked ~ .menu {
  transform: translateX(0%);
}
.burger__wrapper {
  background: var(--color-2);
  width: 60px;
  height: 70px;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
@media screen and (min-width: 577px) {
  .burger__wrapper {
    width: 90px;
    height: 90px;
  }
}
.burger__container {
  display: flex;
  width: 50%;
  height: 50%;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  position: relative;
}
.burger__bar {
  display: block;
  background: var(--white);
  height: 5px;
  width: 100%;
}
@media screen and (min-width: 577px) {
  .burger__bar {
    height: 7px;
  }
}
.burger__bar:first-child, .burger__bar:last-child {
  width: 70%;
}

.menu {
  background: white;
  width: clamp(190px, 41vw, 280px);
  height: 100vh;
  position: fixed;
  transform: translateX(-100%);
  overflow-y: scroll;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 20px;
  z-index: 991;
  padding: 1em;
}
@media screen and (min-width: 577px) {
  .menu {
    overflow-y: initial;
  }
}
.menu__logo {
  width: 100%;
  max-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-top: 70px;
  margin-bottom: 1em;
}
@media screen and (min-width: 577px) {
  .menu__logo {
    margin-top: 90px;
  }
}
.menu__logo svg {
  height: 100%;
}
.menu__item,
.menu .dropdown__label {
  padding: 0.25em 1em;
  margin: 0 -1em;
}
.menu__item:hover,
.menu .dropdown__label:hover {
  background: var(--color-2);
  color: var(--white);
}
.menu__item:hover a,
.menu .dropdown__label:hover a {
  color: var(--white);
}
.menu a {
  color: var(--color-1);
}
.menu__social {
  display: flex;
  justify-content: space-around;
  width: 40%;
  padding: 2em 1em;
}
.menu .dropdown {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.menu .dropdown__menu {
  background: var(--color-2);
  color: var(--white);
  transition: all 0.2s ease-in;
}
.menu .dropdown__menu a {
  color: var(--white);
}
@media screen and (min-width: 577px) {
  .menu .dropdown__menu {
    transform: translateX(100%);
    right: 0;
    top: 0;
    left: initial;
    bottom: initial;
    position: absolute;
    width: 0;
  }
}
.menu .dropdown__liste {
  height: 0;
  width: 0;
}
.menu .dropdown__item {
  position: relative;
}
.menu .dropdown .dropdown__item:hover {
  background: var(--color-3);
  color: var(--white);
}
.menu .dropdown__links {
  position: relative;
  left: -100%;
  opacity: 0;
}
.menu .dropdown input[type=checkbox] {
  display: none;
}
.menu .dropdown input[type=checkbox]:checked + .dropdown__label {
  background: var(--color-2);
  color: var(--white);
}
.menu .dropdown input[type=checkbox]:checked + .dropdown__label a {
  color: var(--white);
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu {
  visibility: visible;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu .dropdown__item {
  padding: 0.35em 1em;
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu .dropdown__item:first-child {
  padding-top: 0.7em;
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu .dropdown__item:last-child {
  padding-bottom: 0.7em;
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu .dropdown__liste {
  height: 100%;
  max-height: 140px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  overflow-y: scroll;
}
.menu .dropdown input[type=checkbox]:checked ~ .dropdown__menu .dropdown__links {
  left: 0;
  opacity: 1;
  transition: all 0.2s ease-in-out 0.2s;
}

/*! STYLE TEXT */
.text-align__center .button {
  margin-left: auto;
  margin-right: auto;
}
.text--m-0 {
  margin: 0;
}

/*! STYLE FOOTER */
.footer {
  background: var(--color-3);
  color: var(--white);
}
.footer__logo {
  display: contents;
}
.footer__logo svg {
  max-width: 280px;
  height: max-content;
}
.footer__paragraphe {
  margin: 1em auto;
  max-width: 800px;
}
.footer__barreInsta p, .footer__copyright {
  padding: 1.5em 1em;
  background: var(--white);
  color: var(--color-2);
}
.footer__barreInsta p a, .footer__copyright a {
  color: var(--color-1);
}
.footer__barreInsta p a:hover, .footer__copyright a:hover {
  color: var(--color-1--dark);
}
.footer__barreInsta .icone {
  display: inline-flex;
  height: 40px;
}
.footer__barreInsta .icone::before {
  color: var(--color-1--dark);
  font-size: 1.5em;
}
.footer__social {
  display: flex;
  justify-content: center;
}
.footer .icone {
  font-size: 1.2em;
}

/*! STYLE ICONES SOCIALES */
.icone:before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  margin: 0 10px;
  font-family: var(--font-icone);
  content: "";
}
.icone--revers:before {
  transform: scaleX(-1);
}

.icone__facebook::before {
  content: "";
}

.icone__twitter::before {
  content: "";
}

.icone__instagram::before {
  content: "";
}

.icone__shop::before {
  content: "";
}

.icone__menu::before {
  content: "";
}

.icone__localisation::before {
  content: "";
}

.icone__check::before {
  content: "";
}

.icone__back-top::before {
  content: "";
}

.icone__arrow::before {
  content: "";
}

.icone__cross::before {
  content: "";
}

.logo-ffe-fei {
  padding: 15px 0;
}
.logo-ffe-fei.logo-ffe img {
  width: 100px;
}
.logo-ffe-fei.logo-fei img {
  width: 120px;
}

/*! STYLE INSTABARRE */
.instagram {
  background: var(--white);
  color: var(--color-2);
}
.instagram a {
  color: var(--color-1);
}
.instagram a:hover {
  color: var(--color-1--dark);
}
.instagram p {
  padding: 1.5em 0;
}
.instagram .icone {
  display: inline-flex;
  height: 40px;
}
.instagram .icone::before {
  color: var(--color-1--dark);
  font-size: 1.5em;
}

/*! STYLE FOOTER */
.instagram__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 577px) {
  .instagram__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 769px) {
  .instagram__gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}

@font-face {
  font-family: "cookies";
  src: url("../../../assets/fonts/cookies/cookies.eot");
  src: url("../../../assets/fonts/cookies/cookies.eot") format("embedded-opentype"), url("../../../assets/fonts/cookies/cookies.woff") format("woff"), url("../../../assets/fonts/cookies/cookies.ttf") format("truetype"), url("../../../assets/fonts/cookies/cookies.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
#tarteaucitronRoot #tarteaucitronAlertBig {
  background: var(--color-1);
  box-shadow: none;
  border-radius: 0;
  z-index: 10000;
  padding: 2em 3em;
  text-align: left;
}
@media screen and (max-width: 576px) {
  #tarteaucitronRoot #tarteaucitronAlertBig {
    width: initial;
  }
}
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert .infos {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 15px;
}
#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert .infos.titre {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  align-items: start;
}
#tarteaucitronRoot #tarteaucitronAlertBig button {
  margin: 0;
  margin-right: 10px;
  padding: 1.2rem 2rem;
  min-width: 150px;
}
#tarteaucitronRoot #tarteaucitronAlertBig button#tarteaucitronPersonalize {
  background-color: var(--color-2--dark);
}
#tarteaucitronRoot #tarteaucitronAlertBig button#tarteaucitronCloseAlert {
  color: var(--color-2--dark);
}
#tarteaucitronRoot #tarteaucitron {
  top: 50% !important;
  transform: translateY(-50%);
}
#tarteaucitronRoot #tarteaucitron button {
  padding: 10px 20px;
}
#tarteaucitronRoot #tarteaucitron button.tarteaucitronAllow {
  background-color: var(--color-2);
}
#tarteaucitronRoot #tarteaucitron button.tarteaucitronDeny {
  background-color: dimgray;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronClosePanel {
  background: white;
  color: var(--color-2--dark);
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices {
  background: white;
  padding: 20px;
  box-shadow: none;
  margin: 35px 0 !important;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
  flex-wrap: wrap;
  width: 100%;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle .tarteaucitronName,
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle #tarteaucitronScrollbarAdjust {
  display: inline-block;
  margin: 0 !important;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle .tarteaucitronName {
  flex: 1;
  min-width: 300px;
  padding: 10px 0;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle .tarteaucitronH2 {
  color: var(--color-2--dark);
  text-transform: uppercase;
  margin: 0;
  font-size: 17px;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle #tarteaucitronScrollbarAdjust {
  margin: 0;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronTitle #tarteaucitronScrollbarAdjust button {
  margin: 0;
  min-width: 94px;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices #tarteaucitronMainLineOffset {
  background: white;
  border: none;
  padding: 0;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices #tarteaucitronMainLineOffset #tarteaucitronInfo {
  padding: 1em 0 !important;
  margin: 0 !important;
  width: 100% !important;
  background: none;
  max-width: initial !important;
  color: var(--color-2);
  font-size: 13px !important;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices #tarteaucitronMainLineOffset #tarteaucitronInfo .titre {
  font-size: 18px !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin: 10px 0;
  color: var(--color-2);
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder {
  background: #FFF;
  border: none;
  margin-bottom: 75px;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden {
  background: none;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronTitle {
  justify-content: start;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronTitle button {
  background: none;
  margin: 0 !important;
  color: var(--color-2--dark);
  padding: 0;
  font-size: 18px;
  font-weight: lighter;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronLine {
  background: none;
  border: none;
  display: flex;
  flex-wrap: wrap;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronLine .tarteaucitronName .tarteaucitronH3 {
  font-weight: bold;
  text-transform: uppercase;
}
#tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronLine .tarteaucitronAsk button {
  border-radius: 0;
  min-width: 90px;
  margin: 2px 0;
}
@media screen and (max-width: 767px) {
  #tarteaucitronRoot #tarteaucitron #tarteaucitronServices .tarteaucitronBorder .tarteaucitronHidden .tarteaucitronLine .tarteaucitronAsk {
    text-align: left !important;
  }
}
#tarteaucitronRoot #tarteaucitronAlertSmall {
  background: var(--color-2);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 60px;
  height: 60px;
}
#tarteaucitronRoot #tarteaucitronAlertSmall button {
  height: 100%;
  width: 100%;
  padding: 0;
  position: relative;
}
#tarteaucitronRoot #tarteaucitronAlertSmall button::before {
  font-family: "cookies";
  content: "";
  font-size: 1.5em;
  position: absolute;
  right: 8px;
  bottom: 10px;
  color: var(--white);
}
#tarteaucitronRoot #tarteaucitronAlertSmall button:focus {
  outline: none;
}

/*! BACKTOP */
.backTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  padding: 5px;
  width: 50px;
  height: 50px;
  background-color: var(--color-1);
  color: white;
  text-decoration: none;
}
.backTop__icone {
  font-family: var(--font-icone);
  font-style: normal;
  font-size: 1.5em;
}
.backTop__icone:before {
  content: "";
}
.backTop:hover {
  background-color: var(--color-2);
  color: white;
}
.backTop__zoom {
  transition: opacity 1s, transform 0.5s ease-in-out;
}
.backTop__zoom.hide {
  transform: translateZ(0) scale(0);
  opacity: 0;
}
.backTop__zoom.show {
  transform: translateZ(0) scale(1);
  opacity: 1;
}
@media screen and (max-width: 576px) {
  .backTop {
    display: none;
  }
}

/*! STYLE TITRES */
.titre {
  font-family: var(--font-2);
  color: var(--color-1);
  margin: 0 auto;
  position: relative;
  flex-direction: column;
}
.titre__header {
  min-height: 270px;
}
.titre__over {
  margin: 0;
  font-family: var(--font-1);
  font-size: 1.2em;
}
.titre__bg {
  font-size: 30em;
  opacity: 0.04;
  z-index: -1;
  line-height: 0;
  padding-top: 0.15em;
  white-space: nowrap;
  margin: 0;
}
.titre__paragraphe {
  font-family: var(--font-1);
  margin: 1em auto;
  max-width: 600px;
}
.titre__h1, .titre__h2, .titre__h3 {
  margin: 0;
}
.titre__h1 {
  font-size: clamp(4em, 10vw, 7em);
  text-align: center;
}
.titre__h2 {
  font-size: clamp(3em, 10vw, 5em);
  margin-bottom: 0;
  text-align: center;
  margin-top: 0.3em;
  line-height: 70px;
}
.titre__h3 {
  font-size: 2.2em;
  margin-bottom: 0.3em;
}
.titre--left {
  align-items: flex-start;
  position: initial;
}
.titre--left .titre__h2,
.titre--left .titre__h3 {
  text-align: left;
  align-items: start;
}
.titre--col {
  width: 100%;
  display: block;
}
.titre--m-0 {
  margin: 0;
}

.titre__bullets {
  opacity: 0.1;
  background: radial-gradient(circle, var(--color-2) 10%, transparent 0%, transparent 80%, transparent 80%, transparent);
  background-size: 50px 50px;
  width: 100%;
  height: 95%;
  display: block;
  position: absolute;
  z-index: -2;
}

/*! STYLE LISTES */
ul {
  padding: 0;
}
ul li {
  list-style: none;
}

.list__item {
  padding: 0.3em 0;
}
.list__puce {
  padding-left: 20px;
  position: relative;
}
.list__puce::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-1);
  color: var(--white);
}

/*! STYLE BUTTONS */
.button {
  padding: 1em 2em;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: 1em 0;
  position: relative;
  border: none;
  background: transparent;
  overflow: hidden;
}
@media screen and (min-width: 577px) {
  .button {
    width: max-content;
  }
}
.button__name {
  font-weight: 500;
  font-family: var(--font-2);
  color: var(--white);
  z-index: 3;
}
.button__over {
  background: var(--color-1--dark);
  border: 1px solid var(--color-1--dark);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(-100%);
}
.button__bg {
  background: var(--color-1);
  border: 1px solid var(--color-1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.button:hover .button__over {
  transform: translateX(0%);
}
.button__bgColor-2 .button__bg {
  background-color: var(--color-2);
  border: 1px solid var(--color-2);
}
.button__bgColor-2 .button__over {
  background-color: var(--color-2--dark);
  border: 1px solid var(--color-2--dark);
}
.button__bgColor-2--light .button__bg {
  background-color: var(--color-2--light);
  border: 1px solid var(--color-2--light);
}
.button__bgColor-2--light .button__over {
  background-color: var(--color-2);
  border: 1px solid var(--color-2);
}
.button__swall {
  font-weight: 500;
  font-family: var(--font-2);
  color: var(--white);
  background: var(--color-1) !important;
  border: 1px solid var(--color-1) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/*! STYLE FORMS */
.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form__label {
  text-transform: uppercase;
  color: var(--color-1);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.form__input, .form__textarea {
  padding: 1rem 1.5rem;
  border: 1px solid var(--color-1);
}
.form__input:focus, .form__textarea:focus {
  outline: none;
}
.form__textarea {
  resize: none;
  min-height: 150px;
}
.form__button {
  padding: 0;
}
.form__submit {
  width: 100%;
  height: 100%;
  background: none;
  outline: none;
  border: none;
  padding: 1em 2em;
}
.form__checkbox input {
  display: none;
  position: absolute;
  top: -1000px;
}
.form__checkbox input:checked ~ .checkbox__label::before {
  background: var(--color-1);
}
.form__checkbox input:checked ~ .checkbox__label::after {
  content: "";
  font-family: var(--font-icone);
  color: white;
  position: absolute;
  top: 12.5px;
  left: 9px;
  transform: translate(-50%, 100%);
  font-size: 0.5rem;
}
.form__checkbox label {
  position: relative;
  text-transform: initial;
  padding: 1em;
  padding-left: 25px;
}
.form__checkbox label::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-1);
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
}
.form__message {
  background: var(--color-2);
  padding: 1em;
  color: white;
}

/*! STYLE MAPS */
.maps {
  height: 300px;
}
@media screen and (min-width: 577px) {
  .maps {
    height: 400px;
  }
}
@media screen and (min-width: 769px) {
  .maps {
    height: 500px;
  }
}

/*! STYLE CONTAINER */
.container {
  padding: clamp(1.5em, 5vw, 55px);
  max-width: 1300px;
  margin: auto;
  width: 100%;
}
.container__full {
  max-width: initial;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 769px) {
  .container__full--padding-0 {
    padding: 0;
  }
}
.container__full--texte {
  padding-left: clamp(1.5em, 5vw, 55px);
  padding-right: clamp(1.5em, 5vw, 55px);
}
@media screen and (min-width: 769px) {
  .container__full--texte {
    padding-left: 0;
    max-width: calc(1300px / 2 - (clamp(1.5em, 5vw, 55px) / 2));
  }
}
@media screen and (min-width: 769px) {
  .container__rtl {
    direction: rtl;
  }
}
.container__rtl--texte {
  padding-left: clamp(1.5em, 5vw, 55px);
  padding-right: clamp(1.5em, 5vw, 55px);
}
@media screen and (min-width: 769px) {
  .container__rtl--texte {
    padding-right: 0;
    max-width: calc(1300px / 2 - (clamp(1.5em, 5vw, 55px) / 2));
    padding-bottom: clamp(1.5em, 5vw, 55px);
  }
}
@media screen and (max-width: 768px) {
  .container__rtl .titre {
    order: 1;
  }
}
@media screen and (min-width: 769px) {
  .container__rtl .titre {
    text-align: end;
    margin: 0;
  }
}
.container__rtl .flex {
  display: block;
}
@media screen and (min-width: 769px) {
  .container__rtl .flex {
    display: flex;
    direction: ltr;
  }
}
@media screen and (max-width: 768px) {
  .container__rtl .image {
    order: 2;
  }
}
.container__rtl .image--flex {
  display: flex;
}
@media screen and (min-width: 769px) {
  .container__rtl .revers {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
}
.container--py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.partenaires,
.item__chevaux,
.derniersArticles {
  gap: 1em;
}
.partenaires__images::after,
.item__chevaux__images::after,
.derniersArticles__images::after {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  background-color: var(--color-2);
  transition: all 0.3s ease-in;
  position: absolute;
  bottom: 0;
  left: 0;
}
.partenaires__images .image,
.item__chevaux__images .image,
.derniersArticles__images .image {
  height: min-content;
  display: flex;
}
.partenaires__titre,
.item__chevaux__titre,
.derniersArticles__titre {
  margin-top: 0.5em;
  font-size: 0.9rem;
}
.partenaires__links,
.item__chevaux__links,
.derniersArticles__links {
  position: relative;
}
.partenaires__links:hover .partenaires__images::after,
.partenaires__links:hover .item__chevaux__images::after,
.partenaires__links:hover .derniersArticles__images::after,
.item__chevaux__links:hover .partenaires__images::after,
.item__chevaux__links:hover .item__chevaux__images::after,
.item__chevaux__links:hover .derniersArticles__images::after,
.derniersArticles__links:hover .partenaires__images::after,
.derniersArticles__links:hover .item__chevaux__images::after,
.derniersArticles__links:hover .derniersArticles__images::after {
  width: 100%;
}

@media screen and (min-width: 577px) {
  .partenaires {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
}
@media screen and (min-width: 769px) {
  .partenaires {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .partenaires {
    gap: 3em;
  }
}

.item__chevaux .grid-item,
.item__chevaux .grid-sizer {
  width: 100%;
}
@media screen and (min-width: 577px) {
  .item__chevaux .grid-item,
.item__chevaux .grid-sizer {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .item__chevaux .grid-item,
.item__chevaux .grid-sizer {
    width: 33.33%;
  }
}
.item__chevaux .grid-item {
  float: left;
  padding: 1em;
}
.item__chevaux .titre__h3 {
  font-size: 1.8em;
}

.partenaires .image {
  height: 215px;
  justify-content: center;
  max-width: 200px;
  margin: auto;
}
.partenaires .image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.image--cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image--max-content {
  height: max-content;
  min-height: 300px;
}
@media screen and (min-width: 1200px) {
  .image--max-content {
    max-height: 700px;
  }
}
.image--flex {
  display: flex;
}
@media screen and (min-width: 769px) {
  .image--flex {
    height: 100%;
  }
}

.video {
  position: relative;
}
@media screen and (min-width: 993px) {
  .video .plyr {
    height: 56vw;
  }
}
@media screen and (min-width: 1200px) {
  .video .plyr {
    height: 650px;
  }
}
.video .plyr__poster {
  background-size: cover;
}
.video .plyr__control--overlaid {
  border-radius: 0;
}
.video__text .container {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 576px) {
  .video__text .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.video__text .container:before, .video__text .container:after {
  content: "";
  display: block;
  background: white;
  position: absolute;
  border: 2px solid white;
  z-index: -1;
}
.video__text .container:before {
  width: 60px;
  height: 60px;
  top: -40px;
  left: 0px;
}
.video__text .container:after {
  width: 20px;
  height: 20px;
  top: -70px;
  left: 80px;
}
.video__text .titre {
  color: var(--color-2);
}
.video__text .titre__h2 {
  margin: 0;
}
.video__text .titre__over {
  color: white;
}
.video__text__wrapper {
  background: var(--color-1);
  color: white;
  max-width: 765px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 10;
  padding: clamp(1.5em, 5vw, 55px);
  margin-top: 220px;
}
@media screen and (min-width: 769px) {
  .video__text__wrapper {
    transform: translate(0%, 0);
    top: -140px;
    margin-bottom: -140px;
  }
  .video__text .container:before {
    width: 60px;
    height: 60px;
    top: -180px;
    left: 0px;
  }
  .video__text .container:after {
    width: 20px;
    height: 20px;
    top: -210px;
    left: 80px;
  }
}

:root {
  --plyr-color-main: var(--color-2);
}

.share {
  position: fixed;
  background: var(--color-1);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 990;
  left: -50px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .share {
    left: -60px;
  }
}
.share:hover {
  left: 0;
}
.share__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50px;
  height: 50px;
  font-size: 0.7em;
  color: white;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .share__links {
    width: 60px;
    height: 60px;
  }
}
.share__links:hover {
  background: var(--color-2);
  color: white;
}
.share__titre {
  position: absolute;
  background: var(--color-1);
  transform: translateX(98%) rotate(180deg);
  right: 0;
  padding: 0;
  color: white;
  writing-mode: vertical-rl;
  text-orientation: unset;
  height: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}

@media screen and (min-width: 769px) {
  .articles {
    grid-template-columns: repeat(auto-fit, minmax(331px, 1fr));
  }
}
@media screen and (min-width: 993px) {
  .articles {
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  }
}
.articles__item {
  position: relative;
  overflow: hidden;
}
.articles__item:hover .articles__content {
  transform: translateX(0%);
}
.articles__content {
  padding: 3em 2em;
  background: var(--color-1);
  position: relative;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .articles__content {
    padding: 7em 2em;
  }
}
@media screen and (min-width: 993px) {
  .articles__content {
    padding: 10em 2em;
  }
}
.articles__images {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.articles__titre .titre__over {
  color: white;
}
.articles__titre .titre__h2 {
  margin: 0;
  color: var(--color-2);
}
@media screen and (min-width: 769px) {
  .articles__titre .titre__h2 {
    font-size: 2.5em;
  }
}
.articles__paragraphe {
  color: white;
}
.articles__date {
  color: white;
  font-size: 4em;
  font-family: var(--font-2);
  width: max-content;
  margin: auto;
}
.articles__date span {
  display: block;
  line-height: 0.7em;
}
.articles__date span.larger {
  font-size: 2em;
}
@media screen and (min-width: 577px) {
  .articles.grid__col-3 {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 769px) {
  .articles.grid__col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .articles.grid__col-3 .titre {
    min-height: 200px;
  }
  .articles.grid__col-3 .button {
    width: initial;
  }
}
@media screen and (min-width: 993px) {
  .articles.grid__col-3 .titre {
    min-height: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .articles.grid__col-3 .titre {
    min-height: initial;
  }
}

.imagesGroup {
  display: grid;
}
@media screen and (min-width: 993px) {
  .imagesGroup {
    grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
  }
}
@media screen and (min-width: 1400px) {
  .imagesGroup {
    grid-template-columns: repeat(2, 1fr);
  }
}
.imagesGroup-4 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 769px) {
  .imagesGroup-4 {
    grid-template-columns: repeat(auto-fit, minmax(179px, 1fr));
  }
}
@media screen and (min-width: 993px) {
  .imagesGroup-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resultats__day--titre {
  background: var(--color-1);
  text-transform: uppercase;
}
.resultats__piste--titre {
  background: var(--color-2);
}
.resultats__day--titre, .resultats__piste--titre {
  color: white;
  padding: 1em;
}
.resultats__resulat {
  padding: 1em 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
}
@media screen and (min-width: 993px) {
  .resultats__resulat {
    grid-template-columns: 75px 75px 1fr auto;
  }
}
.resultats__resulat--items {
  padding: 1em;
}
@media screen and (max-width: 576px) {
  .resultats__resulat--detail {
    grid-column: span 2;
    padding-top: 0;
  }
}
.resultats__resulat--detail span {
  display: block;
  width: 100%;
  font-size: 0.8em;
  color: var(--color-2);
}
.resultats__resulat--buttons {
  display: grid;
}
@media screen and (min-width: 577px) {
  .resultats__resulat--buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .resultats__resulat--buttons {
    grid-column: span 3;
  }
}
.resultats__resulat--buttons .button {
  width: auto;
  padding: 0.8em 2em;
  margin: 0;
}

.concours__boutons {
  display: grid;
}
@media screen and (min-width: 577px) {
  .concours__boutons {
    grid-template-columns: repeat(auto-fit, minmax(331px, 1fr));
  }
}
@media screen and (min-width: 769px) {
  .concours__boutons {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}
.concours__boutons .button {
  margin: 0;
  width: auto;
  padding: 1em;
}
.concours__wrapper {
  padding: 1em;
  height: 100%;
}
.concours__titre {
  font-family: var(--font-2);
  text-transform: uppercase;
}
.concours__date {
  color: var(--color-2--light);
}
.concours__items {
  display: grid;
  position: relative;
  margin-bottom: 2em;
}
.concours__items::before {
  content: "";
  width: 0;
  height: 5px;
  background: var(--color-2);
  transition: all 0.3s ease-in-out;
  position: absolute;
}
.concours__items:hover::before {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .concours__items {
    grid-template-columns: 1fr 2fr;
    align-items: stretch;
  }
  .concours__items:hover::before {
    width: 5px;
    height: 100%;
  }
}
.concours__images {
  height: 100%;
  display: flex;
}
.concours__content {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.oldEvent .concours__wrapper {
  padding-top: 0;
  padding-bottom: 0;
}
.oldEvent .concours__boutons .button {
  font-size: 1.2em;
}
.oldEvent__content {
  margin-bottom: 2em;
}
@media screen and (min-width: 1200px) {
  .oldEvent__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .oldEvent .concours__wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
  }
  .oldEvent .concours__boutons .button {
    padding: 1em 0;
  }
  .oldEvent .concours__titre {
    margin: 0;
  }
  .oldEvent .concours__date {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .hide-mobil {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}

.table {
  width: 100%;
  text-align: left;
  font-size: clamp(.9em, 2vw, 1em);
}
.table thead {
  background: var(--color-1);
  color: white;
}
.table__center {
  text-align: center;
}
.table__th, .table__td {
  padding: 0.5em;
  padding-left: clamp(.2em, 1vw, 10em);
  padding-right: clamp(.2em, 1vw, 10em);
}
.table__td p {
  margin: 0;
}
.table__tr:nth-child(2n) {
  background: var(--color-2--light);
}

/*! STYLE LINKS */
.e-mail:before {
  content: attr(data-website) "@" attr(data-user);
  unicode-bidi: bidi-override;
  direction: rtl;
}

.links {
  color: white;
  position: relative;
  padding: 0.5em 0;
  font-family: var(--font-1);
}
.links:before {
  content: "";
  width: 40px;
  height: 3px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-2);
  transition: all 0.3s ease-in-out;
}
.links:hover {
  color: white;
}
.links:hover::before {
  width: 100%;
}
.links__color-2 {
  color: var(--color-2);
}
.links__color-2:hover {
  color: var(--color-1);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.5em;
  justify-content: center;
}
.categories p {
  margin: 0.5em 0;
}
.categories .links {
  margin: 0 0.5em;
}
.categories .links:before {
  width: 0;
}
.categories .links:hover:before {
  width: 100%;
}

.elevage {
  display: grid;
  gap: 3em;
}
.elevage__texte {
  padding-left: clamp(1.5em, 5vw, 55px);
  padding-right: clamp(1.5em, 5vw, 55px);
}
@media screen and (min-width: 993px) {
  .elevage {
    grid-template-columns: repeat(2, 1fr);
  }
  .elevage__texte {
    padding-left: 0;
    max-width: calc(1300px / 2 - (clamp(1.5em, 5vw, 55px) / 2));
  }
}

.badge {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--color-1);
  color: white;
  transform: translate(0.3em, -0.5em);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.filter {
  display: grid;
}
@media screen and (min-width: 993px) {
  .filter {
    grid-template-columns: auto 1fr;
  }
}
.filter__aside {
  background: var(--color-1);
  color: white;
  height: max-content;
  padding: 2em;
  margin-bottom: 3em;
}
@media screen and (min-width: 577px) {
  .filter__aside {
    min-width: 280px;
  }
}
@media screen and (min-width: 993px) {
  .filter__aside {
    margin-right: 2em;
    margin-bottom: 0em;
  }
}
.filter__aside .titre {
  color: var(--color-2);
  margin: 0;
}
.filter__liste {
  margin-top: 0;
}
.filter__item {
  padding: 0.3em 0;
  padding-left: 30px;
  position: relative;
}
.filter__item label:before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
}
.filter__item input {
  margin-right: 0.5em;
  display: none;
}
.filter__item input:checked ~ label:before {
  background: white;
  content: "";
  font-family: var(--font-icone);
  color: var(--color-3);
  font-size: 0.7em;
}

/*! PAGINATION */
.pagination {
  color: var(--color-1);
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
  list-style-type: none;
  padding: 0;
}
.pagination__numbers, .pagination__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.1rem;
  font-size: 1.4rem;
  cursor: pointer;
}
@media screen and (min-width: 577px) {
  .pagination__numbers, .pagination__btn {
    margin: 0.5rem;
  }
}
@media screen and (min-width: 769px) {
  .pagination__numbers, .pagination__btn {
    margin: 0.8rem;
  }
}
.pagination__numbers {
  border: 2px solid var(--color-2);
  width: 40px;
  height: 40px;
  background: white;
  font-family: var(--font-2);
}
@media screen and (min-width: 577px) {
  .pagination__numbers {
    width: 50px;
    height: 50px;
  }
}
.pagination .icone:before {
  content: "";
  font-family: var(--font-icone);
  color: var(--color-1);
  transform: rotate(-180deg);
}
.pagination .icone:last-child {
  transform: rotate(180deg);
}
.pagination .active {
  color: white;
  pointer-events: initial;
  transition: all 0.2s ease-in;
  background: var(--color-2);
}
.pagination .active:hover {
  background: var(--color-1);
  border: 2px solid var(--color-1);
}
@media screen and (min-width: 993px) {
  .pagination .pagination__col {
    flex-direction: column;
    height: 100%;
  }
}
.pagination .pagination__col .pagination__btn {
  display: none;
}
.pagination .pagination__col .pagination__numbers {
  border: none;
  color: var(--color-2);
  position: relative;
  background: none;
}
@media screen and (min-width: 993px) {
  .pagination .pagination__col .pagination__numbers {
    justify-content: end;
    padding-right: 0.5em;
    margin: 0;
    margin-right: 1.5em;
  }
}
.pagination .pagination__col .pagination__numbers:before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: var(--color-3);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.pagination .pagination__col .pagination__numbers.active, .pagination .pagination__col .pagination__numbers:hover {
  color: var(--color-3);
}
.pagination .pagination__col .pagination__numbers.active:before, .pagination .pagination__col .pagination__numbers:hover:before {
  width: 100%;
}

.aside label .titre {
  font-size: 2em;
  color: white;
  margin-bottom: 0.5em;
}
.aside input[type=checkbox] {
  display: none;
}
.aside input[type=checkbox]:checked ~ .aside__content {
  display: none;
}
@media screen and (min-width: 993px) {
  .aside input[type=checkbox]:checked ~ .aside__content {
    display: block;
  }
}
.aside input[type=checkbox]:checked ~ label .titre {
  margin-bottom: 0;
}
.aside input[type=checkbox]:checked ~ label .titre .icone {
  transform: rotate(90deg);
}
.aside .titre {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.aside .icone {
  font-size: 0.5em;
  transform: rotate(-90deg);
}
@media screen and (min-width: 993px) {
  .aside__label {
    display: none;
  }
}

.enAvant {
  background: var(--color-2);
  color: white;
}
@media screen and (min-width: 993px) {
  .enAvant {
    margin-top: 25px;
  }
}
.enAvant__content {
  padding: clamp(1.5em, 5vw, 55px);
  padding-top: clamp(3.5em, 5vw, 55px);
  padding-bottom: clamp(3.5em, 5vw, 55px);
}
.enAvant__image .image--cover {
  max-height: 300px;
}
@media screen and (min-width: 769px) {
  .enAvant__image .image--cover {
    max-height: 400px;
  }
}
@media screen and (min-width: 993px) {
  .enAvant__image .image--cover {
    max-height: 450px;
  }
}
.enAvant .titre {
  color: white;
}
.enAvant .button {
  z-index: 1;
}
.enAvant .button:hover .button__name {
  color: white;
}
.enAvant .button__name {
  color: var(--color-3);
  transition: all 0.3s ease-in-out;
}
.enAvant .button__bg {
  background: white;
  border: 1px solid white;
}

.listeCategorie {
  display: grid;
  gap: 2em;
  max-width: 1920px;
}
.listeCategorie__grid {
  display: grid;
  padding-left: clamp(1.5em, 5vw, 55px);
  padding-right: clamp(1.5em, 5vw, 55px);
}
@media screen and (min-width: 577px) {
  .listeCategorie__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 993px) {
  .listeCategorie__grid {
    padding: 0;
  }
  .listeCategorie__grid .image--cover.image--max-content {
    max-height: 190px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1199px) {
  .listeCategorie__grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.listeCategorie__grid .grid-item {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 993px) {
  .listeCategorie {
    grid-template-columns: 500px 1fr auto;
  }
  .listeCategorie .item__chevaux__links {
    height: 100%;
  }
  .listeCategorie .listeCategorie__grid .item__chevaux__images,
.listeCategorie .listeCategorie__grid .image,
.listeCategorie .listeCategorie__grid .image--max-content {
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .listeCategorie {
    grid-template-columns: 500px auto auto;
  }
}
.listeCategorie .item__chevaux__links {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-right: 25px;
}
.listeCategorie .item__chevaux__links .badge {
  transform: translate(0%, 0%);
}
.listeCategorie .item__chevaux__links .titre {
  width: 100%;
}

.listeChevauxOlivierVendue,
.listeChevauxOlivier {
  display: grid;
  gap: 2em;
  max-width: 1920px;
  grid-template-columns: auto;
}
@media screen and (min-width: 993px) {
  .listeChevauxOlivierVendue,
.listeChevauxOlivier {
    grid-template-columns: auto auto;
  }
}
.listeChevauxOlivierVendue .listeCategorie__grid,
.listeChevauxOlivier .listeCategorie__grid {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 577px) {
  .listeChevauxOlivierVendue .listeCategorie__grid,
.listeChevauxOlivier .listeCategorie__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .listeChevauxOlivierVendue .listeCategorie__grid,
.listeChevauxOlivier .listeCategorie__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.caracteristiques {
  font-family: var(--font-2);
  color: var(--color-2);
  display: inline;
  font-size: 1.2em;
  margin: 0 0.5em;
}

.slider__splide {
  margin: 3em 0;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 577px) {
  .slider__splide {
    grid-template-columns: 1fr auto;
  }
}
.slider .splide__pagination {
  display: flex;
  position: initial;
  transform: initial;
}
@media screen and (min-width: 577px) {
  .slider .splide__pagination {
    flex-direction: column;
    width: max-content;
  }
}
.slider .splide__pagination__page {
  background: none !important;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: relative;
}
.slider .splide__pagination__page:before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: var(--color-3);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.slider .splide__pagination__page.is-active, .slider .splide__pagination__page:hover {
  transform: initial;
}
.slider .splide__pagination__page.is-active .splide__number, .slider .splide__pagination__page:hover .splide__number {
  color: var(--color-1);
}
.slider .splide__pagination__page.is-active:before, .slider .splide__pagination__page:hover:before {
  width: 100%;
}
.slider .splide__number {
  font-family: var(--font-2);
  color: var(--color-2);
}
@media screen and (min-width: 577px) {
  .slider .splide__number {
    display: flex;
    justify-content: end;
    padding-right: 0.5em;
  }
}
.slider .splide__slide {
  padding: 1em;
}
.slider .splide__content {
  margin: 1em 0;
}
.slider .splide__content .titre {
  font-size: 0.7rem;
}
@media screen and (min-width: 577px) {
  .slider .splide__content .titre {
    font-size: 0.4rem;
  }
}
@media screen and (min-width: 577px) {
  .slider .splide__content .titre__over {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 577px) {
  .slider .splide__image {
    height: 200px;
  }
}
@media screen and (min-width: 1300px) {
  .slider .splide__image {
    height: 300px;
  }
}
.slider .splide__badge {
  transform: translate(0, 0);
}
.slider.slider__header {
  display: flex;
  min-height: 100vh;
}
@media screen and (max-width: 576px) {
  .slider.slider__header {
    min-height: -webkit-fill-available;
  }
}
.slider.slider__header .logo {
  padding: 0 2em;
  text-align: center;
  max-width: 300px;
}
.slider.slider__header .logo svg {
  max-width: 100%;
}
.slider.slider__header .titre__header {
  min-height: initial;
}
.slider.slider__header .slider__splide {
  margin: 0;
}
.slider.slider__header .splide__slide {
  color: white;
}
.slider.slider__header .slider__paragraphe {
  text-align: center;
}
.slider.slider__header .slider__titre {
  color: var(--color-2);
  margin-top: 2em;
}
.slider.slider__header .slider__titre .titre__over {
  color: white;
}
.slider.slider__header .splide__number {
  color: var(--white);
}
.slider.slider__header .splide__pagination__page.is-active .splide__number {
  color: var(--color-2);
}
.slider.slider__header .splide__pagination__page::before {
  background: var(--color-2);
}
.slider.slider__header .slider__header__image {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  top: 0;
  z-index: -1;
}
.slider.slider__header .slider__header__image::after {
  content: "";
  background: #14212FE3;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  mix-blend-mode: multiply;
}
@media screen and (min-width: 577px) {
  .slider.slider__header .slider__paragraphe,
.slider.slider__header .slider__titre,
.slider.slider__header .logo {
    text-align: left;
  }
  .slider.slider__header .slider__titre {
    align-items: start;
    padding: 0 1em;
  }
  .slider.slider__header .splide__pagination {
    top: -50%;
    position: relative;
  }
}

.contact {
  display: grid;
  gap: 20px;
  overflow: hidden;
}
@media screen and (min-width: 993px) {
  .contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__paragraphe {
  text-align: center;
  max-width: initial;
}
@media screen and (min-width: 769px) {
  .contact .titre {
    align-items: start;
  }
  .contact .titre__h1,
.contact .titre__h2 {
    text-align: start;
  }
  .contact__paragraphe {
    text-align: start;
  }
}

.derniersArticles {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 577px) {
  .derniersArticles__images {
    height: 300px;
  }
}
@media screen and (min-width: 769px) {
  .derniersArticles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.derniersArticles .image {
  display: initial;
  height: initial;
}

/*! STYLE PAGEERROR */
.pageError {
  background: var(--color-1);
  padding: 1em;
}
.pageError__titre {
  margin: 0;
  font-family: var(--font-1);
  color: var(--white);
  font-size: 3em;
  text-transform: initial;
  align-items: flex-start;
  text-align: start;
}
@media screen and (min-width: 577px) {
  .pageError__titre {
    align-items: center;
    text-align: center;
  }
}
.pageError__titre span {
  font-size: 8rem;
  font-size: clamp(66px, 25vw, 180px);
  color: var(--color-2);
  font-family: var(--font-2);
}
.pageError__paragraphe {
  color: white;
}
@media screen and (min-width: 577px) {
  .pageError__paragraphe {
    text-align: center;
  }
}
.pageError .button {
  margin: auto;
}
.pageError .button .button__over {
  z-index: 2;
}
.pageError .button .button__name {
  z-index: 5;
}
.pageError .button .button__bg {
  z-index: 0;
}

.pedigree-ctn {
  width: 100%;
  overflow-x: scroll;
}
.pedigree-ctn .pedigree-table {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
}
.pedigree-ctn .pedigree-table thead {
  border-bottom: 2px solid var(--color-2);
}
.pedigree-ctn .pedigree-table td {
  padding: 3px 25px;
}
.pedigree-ctn .pedigree-table td.pere {
  font-weight: bold;
}
.pedigree-ctn .pedigree-table td.bordered {
  border-bottom: 2px solid var(--color-1);
}

.bordered-hr {
  border: 0;
  border-bottom: 2px solid var(--color-1);
}

.shop-cheval-slider-nav {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-1);
}
.shop-cheval-slider-nav img {
  max-width: 100%;
  max-height: 350px;
}
.shop-cheval-slider-nav .slick-slide {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.section-galerie {
  display: grid;
}
@media screen and (min-width: 1100px) {
  .section-galerie {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-galerie .bloc-section-images {
  border-top: 8px #fff solid;
  border-bottom: 8px #fff solid;
}
@media screen and (min-width: 1100px) {
  .section-galerie .bloc-section-images:nth-child(3n-1):nth-last-of-type(1) {
    grid-column: span 2;
  }
  .section-galerie .bloc-section-images:nth-child(3n-2):nth-last-of-type(1) {
    grid-column: span 3;
  }
}
.section-galerie .bloc-section-images:nth-child(n+4) {
  border-top: 0;
}
.section-galerie .bloc-section-images.item-full:not(.item-2):not(.item-3) {
  border-left: 0;
  border-right: 0;
}
.section-galerie .bloc-section-images.item-full.item-2 {
  border-left: 8px #fff solid;
  border-right: 8px #fff solid;
}
.section-galerie .bloc-section-images.item-full.item-2:nth-child(1n) {
  border-left: 0;
}
.section-galerie .bloc-section-images.item-full.item-2:nth-child(3n) {
  border-right: 0;
}
.section-galerie .bloc-section-images.item-full.item-3:last-child {
  border-left: 8px #fff solid;
}
.section-galerie .bloc-section-images.item-full {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-galerie .bloc-section-images img {
  max-width: 100%;
  max-height: 350px;
}
@media screen and (max-width: 992px) {
  .section-galerie .bloc-section-images {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .section-galerie .bloc-section-images:nth-child(n+2) {
    border-top: 0 !important;
  }
}

.section-bg-image.slider-bandeau .slider-bandeau-item {
  min-height: 500px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .section-bg-image.slider-bandeau .slider-bandeau-item {
    min-height: 300px;
  }
}
.slider-bandeau-item .slider-bandeau-desc {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #fff;
  background: #152a46;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slider-bandeau-item:hover .slider-bandeau-desc {
  opacity: 0.8;
}

.pg-build__button {
  padding: 1em 2em !important;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: 1em 0;
  position: relative;
  border: none;
  background: transparent;
  overflow: hidden;
  font-weight: 500;
  font-family: var(--font-2);
  color: var(--white);
  z-index: 3;
  background-color: var(--color-2--light);
  border: 1px solid var(--color-2--light);
  cursor: pointer;
  border-radius: 0;
  outline: none !important;
  transition: background-color 0.3s;
  min-height: auto !important;
}
.pg-build__button:hover {
  color: var(--color-2--dark);
  background-color: var(--color-2);
  border: 1px solid var(--color-2);
}

.revu-presse .articles__titre .titre__h2{
  font-size: 1.5em;
  line-height: 40px;
  padding-top: 22px;
}

.revu-presse .articles__content{
  height: 100%;
  padding: 5em 2em;
}
/*# sourceMappingURL=default.css.map */
