@charset "UTF-8";
:root {
  --buttonSize: 25px;
}
@media screen and (min-width: 1024px) {
  :root {
    --buttonSize: 30px;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --buttonSize: 35px;
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --buttonSize: 40px;
  }
}
@media screen and (min-width: 2560px) {
  :root {
    --buttonSize: 50px;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

body {
  pointer-events: none;
}

@font-face {
  font-family: "quentin";
  src: url("../font/quentin-webfont.woff2") format("woff2"), url("../font/quentin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
h2 {
  color: #1A203E;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1920px) {
  h2 {
    font-size: 3.2rem;
  }
}
h2 span {
  display: block;
  color: #973D3D;
  text-transform: initial;
  font-family: "quentin";
  font-size: 65%;
  position: relative;
  transform: translateY(-10%);
  line-height: 0.7;
  font-weight: 300;
}

h3.red {
  color: #973D3D;
  text-transform: uppercase;
  margin: 2rem 0 10px;
  margin-bottom: 1.2rem;
  font-weight: bold;
  font-size: 1.1rem;
}
@media screen and (min-width: 325px) {
  h3.red {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  h3.red {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1024px) {
  h3.red {
    margin-bottom: 4%;
  }
}
@media screen and (min-width: 1920px) {
  h3.red {
    font-size: 1.5rem;
  }
}

p {
  color: #707070;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  p {
    line-height: 1.4;
  }
}
@media screen and (min-width: 1920px) {
  p {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 2560px) {
  p {
    font-size: 1.4rem;
  }
}
p strong, p b {
  font-weight: bold;
}
p em {
  font-style: italic;
}

.article ul, .legales ul {
  list-style: none;
  margin: 2rem 0rem 0.5rem 1rem;
  line-height: 1.5;
}
.article ul li, .legales ul li {
  color: #707070;
}
@media screen and (min-width: 1024px) {
  .article ul li, .legales ul li {
    line-height: 1.4;
  }
}
@media screen and (min-width: 1920px) {
  .article ul li, .legales ul li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 2560px) {
  .article ul li, .legales ul li {
    font-size: 1.4rem;
  }
}
.article ul li::before, .legales ul li::before {
  content: "•";
  color: #CB9F9F;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

img {
  width: 100%;
  height: auto;
}

a:hover {
  color: #fff;
}

#wpadminbar {
  pointer-events: all;
}

@media screen and (min-width: 1024px) {
  .chrome header {
    background-position: left bottom;
    background-size: cover;
    height: 11vw;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/utils/bgMobileHeader.svg);
  background-position: bottom left;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.7rem 0 2rem;
  height: 26vw;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header #logo {
    width: 66.66666667%;
  }
}
@media screen and (min-width: 1200px) {
  header #logo {
    position: relative;
    top: 5%;
  }
}
@media screen and (min-width: 768px) {
  header {
    height: 22vw;
  }
}
@media screen and (min-width: 1024px) {
  header {
    background: url(../img/utils/bgHeader.svg);
    background-color: transparent;
    background-position: left top;
    background-size: contain;
    background-repeat: no-repeat;
    height: 21vw;
    padding: 1.2rem 0 2rem;
  }
}
@media screen and (min-width: 1440px) {
  header {
    background-position: left 77%;
    background-size: cover;
    height: 10.5vw;
  }
}
header .shopMenu {
  position: absolute;
  right: 1rem;
  top: 98%;
}
@media screen and (min-width: 768px) {
  header .shopMenu {
    top: 80%;
  }
}
@media screen and (min-width: 1024px) {
  header .shopMenu {
    bottom: 60%;
    top: 20%;
    display: flex;
    flex-direction: row;
  }
}
header .shopMenu__icon {
  background-color: #74798C;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25%;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  header .shopMenu__icon {
    width: 3.5vw;
    height: 3.5vw;
    margin: 0 2vw 0 0;
    transition: 0.3s ease;
  }
  header .shopMenu__icon:hover {
    transform: scale(1.1);
  }
  header .shopMenu__icon:hover img {
    transform: scale(0.91);
  }
}
@media screen and (min-width: 2560px) {
  header .shopMenu__icon {
    width: 3.5vw;
    height: 3.5vw;
  }
}
header .shopMenu__icon img {
  width: 85%;
  transition: 0.3s ease;
}
header .shopMenu__icon img#shop {
  width: 55%;
}

nav.menu {
  position: fixed;
  bottom: 0;
  pointer-events: none;
  z-index: 15;
}
@media screen and (min-width: 1024px) {
  nav.menu {
    position: relative;
    top: 0;
    z-index: 2;
  }
}
nav.menu .menuIcon {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  display: block;
  font-size: 1.8rem;
  color: #CB9F9F;
  z-index: 20;
  padding: 0.5rem;
  transform: translateX(-50%) translateY(30%);
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  nav.menu .menuIcon {
    display: none;
  }
}
nav.menu .container-mobile {
  background-color: #EAEBEE;
  height: 100vh;
  border-radius: 270px 270px 0% 0%/100px 100px 0% 0%;
  transform: translateY(95%);
  transition: ease-in 0.25s;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.menu .container-mobile[state=open] {
  transform: translateY(0%);
  border-radius: 0;
  width: 100vw;
}
nav.menu .container-mobile[state=open] .navList {
  opacity: 1;
}
nav.menu .container-mobile[state=open] .navList li {
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  nav.menu .container-mobile {
    width: 70vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  nav.menu .container-mobile {
    display: none;
  }
}
nav.menu .container-mobile .navList {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80vw;
  opacity: 0;
}
nav.menu .container-mobile .navList li {
  margin: 0.5rem 0;
  position: relative;
  pointer-events: all;
}
nav.menu .container-mobile .navList li a {
  color: #1A203E;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.6;
}
nav.menu .container-desktop {
  display: none;
  justify-content: flex-end;
  position: relative;
  height: 19vw;
  background: url(../img/utils/bgMenu.svg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  margin-top: 1rem;
}
@media screen and (min-width: 1440px) {
  nav.menu .container-desktop {
    height: 15.5vw;
    background-size: cover;
    background-position: center 100%;
  }
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop {
    height: 16.5vw;
  }
}
nav.menu .container-desktop::before {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
  background-color: #eaebee;
  height: 1rem;
  width: 100%;
}
nav.menu .container-desktop .navList {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;
  padding-bottom: 3.5%;
}
@media screen and (min-width: 1024px) {
  nav.menu .container-desktop .navList {
    padding-bottom: 2.5%;
  }
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop .navList {
    padding-bottom: 2%;
  }
}
nav.menu .container-desktop .navList li {
  margin: 0.5rem;
  position: relative;
  padding: 0 3rem;
  margin: 0 0 0 3%;
  pointer-events: all;
}
@media screen and (min-width: 1920px) {
  nav.menu .container-desktop .navList li {
    margin: 0 0 0 6%;
  }
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop .navList li {
    padding: 0 8rem;
    margin: 0 0 0 2%;
  }
}
nav.menu .container-desktop .navList li div {
  border: #CC9F9F solid 2px;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateX(70%);
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop .navList li div {
    width: 6rem;
    height: 6rem;
    border: #CC9F9F solid 5px;
  }
}
nav.menu .container-desktop .navList li:first-child {
  margin: 0;
}
nav.menu .container-desktop .navList li a {
  position: absolute;
  top: 50%;
  right: 40%;
  transform: translateY(-50%);
  color: #1A203E;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  width: -moz-fit-content;
  transition: 0.1s ease-in;
  font-weight: bold;
  font-size: 0.9rem;
}
@media screen and (min-width: 1920px) {
  nav.menu .container-desktop .navList li a {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop .navList li a {
    font-size: 1.54rem;
  }
}
nav.menu .container-desktop .navList li:hover div {
  background-color: #CC9F9F;
}
nav.menu .container-desktop .navList li:hover a {
  transform: translateY(-50%) translate(50%);
}
@media screen and (min-width: 2560px) {
  nav.menu .container-desktop .navList {
    padding-bottom: 2.6%;
  }
}
@media screen and (min-width: 1024px) {
  nav.menu .container-desktop {
    display: flex;
  }
}

footer {
  width: 100vw;
  margin: auto 0 0;
  background: url(../img/utils/bgMobileFooter.svg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 8rem;
  padding-bottom: 5rem;
  max-width: 100%;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 375px) {
  footer {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 8rem;
  }
}
@media screen and (min-width: 1024px) {
  footer {
    padding-bottom: 1rem;
    padding-top: 9rem;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding-top: 7vw;
  }
}
@media screen and (min-width: 1720px) {
  footer {
    padding-top: 9vw;
  }
}
@media screen and (min-width: 1920px) {
  footer {
    padding-top: 10vw;
  }
}
@media screen and (min-width: 2120px) {
  footer {
    padding-top: 12vw;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (min-width: 375px) {
  footer .container {
    flex-direction: row;
  }
}
footer .menuFooter {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  footer .menuFooter {
    margin: 0;
    align-items: flex-start;
  }
}
footer .menuFooter li {
  margin: 0 0.4rem;
  pointer-events: all;
  position: relative;
  z-index: 1;
  transition: transform ease-in 0.2s;
}
footer .menuFooter li::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  left: -10%;
  z-index: -1;
  border-radius: 50%;
  background-color: #D5B1B1;
  opacity: 0;
  transition: opacity ease-in 0.1s 0.15s;
  transform: translateY(-50%);
}
@media screen and (min-width: 1440px) {
  footer .menuFooter li::after {
    width: 2rem;
    height: 2rem;
    top: 0;
    transform: translateY(35%);
  }
}
footer .menuFooter li:hover {
  transform: translateX(5%);
}
footer .menuFooter li:hover::after {
  opacity: 1;
}
footer .menuFooter li a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (min-width: 375px) {
  footer .menuFooter li a {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1440px) {
  footer .menuFooter li a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  footer .menuFooter li a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  footer .menuFooter li {
    margin: 0.2rem 0.5rem;
  }
}
@media screen and (min-width: 1440px) {
  footer .menuFooter li {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) {
  footer .menuFooter {
    flex-direction: column;
  }
}
footer .socialMedia {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  footer .socialMedia {
    justify-content: flex-end;
    width: 45%;
    margin: 0;
  }
  footer .socialMedia a:last-of-type {
    margin-right: 0;
  }
}
footer .socialMedia .creator {
  display: block;
  width: 100%;
  font-size: 0.7rem;
  margin-bottom: 0;
}
@media screen and (min-width: 375px) {
  footer .socialMedia .creator {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  footer .socialMedia .creator {
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 1920px) {
  footer .socialMedia .creator {
    font-size: 1rem;
  }
}
footer p {
  text-align: center;
}

.home {
  position: relative;
  top: -3rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .home {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1024px) {
  .home {
    margin-top: 0rem;
  }
}
.home .homeMainContent {
  overflow-x: hidden;
}
.home .supportSection {
  position: relative;
}
@media screen and (min-width: 375px) {
  .home .supportSection {
    margin-top: 0rem;
  }
}
@media screen and (min-width: 375px) {
  .home .supportSection {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .supportSection {
    margin-top: 0;
  }
}
.home .supportSection .imgContainer {
  mask: url(../img/utils/mobilemaskImage.svg);
  mask-size: cover;
  -webkit-mask: url(../img/utils/mobilemaskImage.svg);
  -webkit-mask-size: cover;
  -webkit-mask-position-y: 100%;
  background-color: #9a6e6e;
  height: 30rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .home .supportSection .imgContainer {
    mask: url(../img/utils/maskImage.svg);
    mask-size: cover;
    -webkit-mask: url(../img/utils/maskImage.svg);
    -webkit-mask-size: cover;
    -webkit-mask-position-y: 100%;
    background-color: #9a6e6e;
    height: initial;
  }
}
.home .supportSection .imgContainer img {
  width: auto;
  height: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  mix-blend-mode: hard-light;
}
@media screen and (min-width: 768px) {
  .home .supportSection .imgContainer img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    mix-blend-mode: hard-light;
    height: initial;
  }
}
.home .supportSection .textContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(122, 54, 62, 0) 0%, #dd959eb3 100%);
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .home .supportSection .textContainer {
    justify-content: flex-start;
  }
}
.home .supportSection .textContainer h1 {
  max-width: 50vw;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-shadow: 2px 2px 8px 1px rgba(66, 66, 66, 0.7);
  text-shadow: 2px 2px 8px 1px rgba(66, 66, 66, 0.7);
  text-align: center;
  font-family: "Bebas Neue", cursive;
  font-size: 1.2rem;
  position: relative;
}
@media screen and (min-width: 325px) {
  .home .supportSection .textContainer h1 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 425px) {
  .home .supportSection .textContainer h1 {
    font-size: 1.9rem;
  }
}
@media screen and (min-width: 768px) {
  .home .supportSection .textContainer h1 {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .supportSection .textContainer h1 {
    font-size: 3.5rem;
    margin-top: 10rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .supportSection .textContainer h1 {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .supportSection .textContainer h1 {
    font-size: 5.5rem;
  }
}
.home .supportSection .textContainer h1 span {
  font-family: "quentin";
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%);
  text-transform: none;
  display: block;
  text-align: center;
  font-size: 50%;
  color: #1A203E;
}
@media screen and (min-width: 325px) {
  .home .supportSection .textContainer h1 span {
    bottom: -10%;
    width: 90vw;
  }
}
@media screen and (min-width: 325px) {
  .home .supportSection .textContainer h1 span {
    bottom: -25%;
  }
}
.home .supportSection .textContainer .buttonContainer {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
@media screen and (min-width: 325px) {
  .home .supportSection .textContainer .buttonContainer {
    flex-direction: row;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .home .supportSection .textContainer .buttonContainer {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .supportSection .textContainer .buttonContainer {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .supportSection .textContainer .buttonContainer {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 280px) and (max-width: 325px) {
  .home .supportSection .textContainer .buttonContainer .button {
    margin: 0 0 1.2rem;
  }
}
.home .supportSection .bottomWave {
  position: absolute;
  bottom: -1%;
  left: 0;
  z-index: 2;
  width: 100%;
}
.home .sectionPresentation {
  position: relative;
  margin-top: 6rem;
}
.home .sectionPresentation .bg {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 114vw;
}
@media screen and (min-width: 335px) {
  .home .sectionPresentation .bg {
    bottom: -20%;
    right: -10%;
    width: 95vw;
  }
}
@media screen and (min-width: 475px) {
  .home .sectionPresentation .bg {
    bottom: -26%;
    right: -6%;
    width: 65vw;
  }
}
@media screen and (min-width: 575px) {
  .home .sectionPresentation .bg {
    right: -12%;
  }
}
@media screen and (min-width: 768px) {
  .home .sectionPresentation .bg {
    width: 40vw;
  }
}
@media screen and (min-width: 1024px) {
  .home .sectionPresentation .bg {
    width: 24rem;
    right: -9vw;
    bottom: -16%;
  }
}
@media screen and (min-width: 1240px) {
  .home .sectionPresentation .bg {
    right: -8vw;
  }
}
@media screen and (min-width: 1440px) {
  .home .sectionPresentation .bg {
    right: -6vw;
  }
}
@media screen and (min-width: 1920px) {
  .home .sectionPresentation .bg {
    right: -17vw;
    width: 28rem;
    bottom: -6%;
  }
}
@media screen and (min-width: 2560px) {
  .home .sectionPresentation .bg {
    right: -26vw;
  }
}
.home .sectionPresentation__text p {
  margin-top: 1rem;
}
.home .sectionPresentation__text p:first-of-type {
  margin-top: 2rem;
}
@media screen and (min-width: 1920px) {
  .home .sectionPresentation__text .teamValue {
    margin-top: 4rem;
  }
}
.home .sectionPresentation__text .teamValue__motivation, .home .sectionPresentation__text .teamValue__connection, .home .sectionPresentation__text .teamValue__value {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 2rem 0;
}
.home .sectionPresentation__text .teamValue__motivation img, .home .sectionPresentation__text .teamValue__connection img, .home .sectionPresentation__text .teamValue__value img {
  width: 3.5rem;
}
@media screen and (min-width: 1920px) {
  .home .sectionPresentation__text .teamValue__motivation img, .home .sectionPresentation__text .teamValue__connection img, .home .sectionPresentation__text .teamValue__value img {
    width: 5.5rem;
  }
}
@media screen and (min-width: 2560px) {
  .home .sectionPresentation__text .teamValue__motivation img, .home .sectionPresentation__text .teamValue__connection img, .home .sectionPresentation__text .teamValue__value img {
    width: 7.5rem;
  }
}
.home .sectionPresentation__text .teamValue__motivation h3, .home .sectionPresentation__text .teamValue__connection h3, .home .sectionPresentation__text .teamValue__value h3 {
  color: #CB9F9F;
  font-family: "Bebas Neue", cursive;
  font-size: 1.6rem;
  position: relative;
  margin-left: 1rem;
}
@media screen and (min-width: 1920px) {
  .home .sectionPresentation__text .teamValue__motivation h3, .home .sectionPresentation__text .teamValue__connection h3, .home .sectionPresentation__text .teamValue__value h3 {
    font-size: 2.3rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 2560px) {
  .home .sectionPresentation__text .teamValue__motivation h3, .home .sectionPresentation__text .teamValue__connection h3, .home .sectionPresentation__text .teamValue__value h3 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
  }
}
.home .sectionPresentation__text .teamValue__motivation h3 span, .home .sectionPresentation__text .teamValue__connection h3 span, .home .sectionPresentation__text .teamValue__value h3 span {
  color: #1A203E;
  font-family: "quentin";
  font-size: 70%;
  display: block;
  margin-left: 2rem;
  text-transform: none;
}
.home .nextMatch {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 6rem auto 0;
}
.home .nextMatch__text p {
  margin: 2rem 0 4rem;
}
@media screen and (min-width: 2560px) {
  .home .nextMatch__text p {
    margin: 2rem 0 5rem;
  }
}
.home .nextMatch__text .button.classement {
  font-size: 1.1rem;
  margin: 4rem 0 0;
}
.home .nextMatch__text .button.classement:hover::before {
  width: var(--buttonSize);
}
.home .nextMatch__text .button.classement::before {
  width: 105%;
}
.home .nextMatch__dates {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .home .nextMatch__dates {
    margin-top: 0rem;
  }
}
.home .nextMatch__dates .dateItem {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .home .nextMatch__dates .dateItem {
    flex-direction: row;
    align-items: center;
  }
  .home .nextMatch__dates .dateItem:first-of-type {
    margin: 0 auto;
  }
  .home .nextMatch__dates .dateItem .dateItem__visual {
    margin-right: 1rem;
  }
  .home .nextMatch__dates .dateItem .dateItem__text {
    margin-top: 0;
  }
}
.home .nextMatch__dates .dateItem__visual {
  background-color: #EAEBEE;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 375px) {
  .home .nextMatch__dates .dateItem__visual {
    max-width: 80vw;
  }
}
@media screen and (min-width: 1024px) {
  .home .nextMatch__dates .dateItem__visual {
    width: 55%;
    margin-right: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .nextMatch__dates .dateItem__visual {
    width: 45%;
  }
}
.home .nextMatch__dates .dateItem__visual img {
  margin: 1rem;
  width: 20%;
}
.home .nextMatch__dates .dateItem__text {
  margin-top: 1rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .home .nextMatch__dates .dateItem__text {
    width: 35%;
    margin-top: 0;
  }
}
.home .nextMatch__dates .dateItem__text .nextDateText {
  color: #973D3D;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: bold;
}
.home .nextMatch__dates .dateItem__text .date {
  font-family: "Bebas Neue", cursive;
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
  color: #1A203E;
  line-height: 1;
}
@media screen and (min-width: 1920px) {
  .home .nextMatch__dates .dateItem__text .date {
    margin-bottom: 1.5rem;
  }
}
.home .nextMatch__dates .dateItem__text .button.match {
  font-size: 1.1rem;
  margin: 0 auto;
}
.home .nextMatch__dates .dateItem__text .button.match::before {
  width: 110%;
}
@media screen and (min-width: 1024px) {
  .home .nextMatch__dates .dateItem__text .button.match {
    margin: 0 auto;
  }
  .home .nextMatch__dates .dateItem__text .button.match:hover::before {
    width: var(--buttonSize);
  }
}
.home .lastActu {
  margin: 6rem auto 0;
  position: relative;
}
.home .lastActu .articlesList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .home .lastActu .articlesList {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .lastActu .articlesList {
    margin-top: 4rem;
  }
}
.home .lastActu .articlesList .articleItem {
  position: relative;
  margin: 2rem 0;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  .home .lastActu .articlesList .articleItem {
    margin: 0.5rem;
    width: 30%;
  }
}
.home .lastActu .articlesList .articleItem:hover img {
  opacity: 0.5;
}
.home .lastActu .articlesList .articleItem:hover .button.article {
  opacity: 1;
}
.home .lastActu .articlesList .articleItem .button.article {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-65%);
}
@media screen and (min-width: 475px) {
  .home .lastActu .articlesList .articleItem .button.article {
    top: 30%;
  }
}
@media screen and (min-width: 768px) {
  .home .lastActu .articlesList .articleItem .button.article {
    top: 30%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .home .lastActu .articlesList .articleItem .button.article {
    top: 26%;
    left: 55%;
    opacity: 0;
  }
}
@media screen and (min-width: 1440px) {
  .home .lastActu .articlesList .articleItem .button.article {
    top: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .home .lastActu .articlesList .articleItem {
    margin: 0.5rem;
    width: 30%;
  }
}
.home .lastActu .articlesList .articleItem h3 {
  color: #973D3D;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 425px) {
  .home .lastActu .articlesList .articleItem h3 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .lastActu .articlesList .articleItem h3 {
    font-size: 1.6rem;
  }
}
.home .lastActu .articlesList .articleItem .articleSubtitle {
  font-family: "quentin";
  font-size: 1.3rem;
  font-weight: 100;
  color: #1A203E;
}
@media screen and (min-width: 1920px) {
  .home .lastActu .articlesList .articleItem .articleSubtitle {
    font-size: 1.6rem;
  }
}
.home .lastActu .articlesList .articleItem img {
  width: 100%;
}
.home .lastActu .articlesList .articleItem .articleDate {
  font-family: "Bebas Neue", cursive;
  color: #CC9F9F;
  font-size: 2.8rem;
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  right: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .home .lastActu .articlesList .articleItem .articleDate {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .lastActu .articlesList .articleItem .articleDate {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .home .lastActu .button {
    position: absolute;
    top: 1%;
    right: 1%;
  }
}
@media screen and (min-width: 1024px) {
  .home .lastActu .button {
    right: 1.6%;
    margin: 0.5rem 0rem 0.5rem 1.8rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .lastActu .button {
    margin: 0;
  }
  .home .lastActu .button svg {
    margin-left: 13px;
  }
}
.home .headbandShop {
  background: url(../img/utils/mobile-waveBoutique.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  margin-top: 2rem;
}
@media screen and (min-width: 375px) {
  .home .headbandShop {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 425px) {
  .home .headbandShop {
    padding: 13rem 0;
  }
}
@media screen and (min-width: 768px) {
  .home .headbandShop {
    background: url(../img/utils/waveBoutique.svg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 6rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .home .headbandShop {
    padding: 8rem 0;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .headbandShop {
    padding: 11rem 0;
    margin-top: 6rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .headbandShop {
    padding: 14rem 0;
    margin-top: 8rem;
  }
}
.home .headbandShop__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .home .headbandShop__content {
    margin-bottom: 2rem;
  }
}
.home .headbandShop p.baseline {
  font-family: "quentin";
  width: 80%;
  text-align: center;
  color: #973D3D;
}
@media screen and (min-width: 375px) {
  .home .headbandShop p.baseline {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .headbandShop p.baseline {
    font-size: 2rem;
    width: 100%;
  }
}
@media screen and (min-width: 1920px) {
  .home .headbandShop p.baseline {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 375px) {
  .home .headbandShop__links {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .home .headbandShop__links {
    margin-top: 0.5rem;
  }
}
.home .headbandShop__links .button svg {
  margin-left: 12px;
}
@media screen and (min-width: 1920px) {
  .home .headbandShop__links .button svg {
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .home .headbandShop__links .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 1rem;
  }
  .home .headbandShop__links .button.shop::before {
    right: 2px;
  }
}
@media screen and (min-width: 768px) {
  .home .headbandShop__links .button.shop::before {
    right: -2px;
  }
}
.home .partnair {
  margin: 5rem auto 0;
  position: relative;
}
.home .partnair__list {
  margin: 5rem auto 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 325px) {
  .home .partnair__list {
    margin: 3rem auto 0;
  }
}
.home .partnair__list li {
  pointer-events: all;
  transition: ease-in 0.8s;
  transition: 0.5s ease;
  width: 40%;
  margin: 0 0 3rem;
}
@media screen and (min-width: 768px) {
  .home .partnair__list li {
    width: 26%;
  }
}
@media screen and (min-width: 992px) {
  .home .partnair__list li {
    margin: 2rem 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .home .partnair__list li {
    width: 22%;
    margin: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .home .partnair__list li {
    width: 20%;
    margin: 2rem 4rem;
  }
}
.home .partnair__list li[show=no] {
  opacity: 0;
  transition: opacity ease-in 1s;
}
.home .partnair__list li[show=yes] {
  opacity: 1;
  transition: opacity ease-in 1s;
}
.home .partnair__list li svg path, .home .partnair__list li svg rect, .home .partnair__list li svg text {
  transition: ease-in 0.3s;
}
.home .partnair__list li:not(:hover) {
  filter: grayscale(1);
  filter: -moz-grayscale(1);
}
.home .partnair .button.join-us {
  margin: 2rem auto;
}
.home .partnair .button.more {
  position: absolute;
  top: 14%;
  right: 8%;
}
@media screen and (min-width: 325px) {
  .home .partnair .button.more {
    top: 0%;
    right: 1%;
  }
}
@media screen and (min-width: 1024px) {
  .home .partnair .button.more {
    right: 1.6%;
    margin: 0.5rem 0rem 0.5rem 1.8rem;
  }
}
@media screen and (min-width: 1440px) {
  .home .partnair .button.more {
    margin: 0;
  }
  .home .partnair .button.more svg {
    margin-left: 13px;
  }
}

.equipe {
  margin-top: 8rem;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.equipe .container.title {
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .equipe .row.slider {
    width: 97.6%;
  }
}
.equipe .swiper-container {
  margin: 0 0 0 auto;
  pointer-events: all;
  padding: 0;
}
@media screen and (min-width: 425px) {
  .equipe .swiper-container {
    margin: 0 0 0rem auto;
  }
}
@media screen and (min-width: 576px) {
  .equipe .swiper-container {
    margin: 0 0 2rem auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .equipe .swiper-container {
    margin: 0 0 2rem auto;
  }
}
@media screen and (min-width: 1920px) {
  .equipe .swiper-container {
    width: 78vw;
    margin: 0 0 2rem auto;
  }
}
.equipe .swiper-container .swiper-button-prev, .equipe .swiper-container .swiper-button-next {
  background-color: #973D3D;
  border-radius: 15px;
  position: static;
  height: 30px;
  width: 3rem;
  margin: 0.1rem;
}
.equipe .swiper-container .swiper-button-prev img, .equipe .swiper-container .swiper-button-next img {
  width: 1rem;
}
.equipe .swiper-container .swiper-button-prev::after, .equipe .swiper-container .swiper-button-next::after {
  content: "";
}
.equipe .swiper-container .arrowContainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 90%;
  padding-right: 1rem;
  margin-bottom: 2rem;
}
.equipe .swiper-container .arrowContainer .swiper-button-prev {
  transform: rotate(-180deg);
}
.equipe .swiper-container .swiper-wrapper {
  height: initial;
}
.equipe .swiper-container .swiper-wrapper .cardPlayer {
  background-color: #E9D7D7;
  border-radius: 30px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 1.2rem 0em;
}
.equipe .swiper-container .swiper-wrapper .cardPlayer p {
  margin-bottom: 0;
}
.equipe .swiper-container .swiper-wrapper .cardPlayer img {
  border-radius: 50%;
  box-shadow: 6px 2px 0px 0px #973D3D;
  -webkit-box-shadow: 6px 2px 0px 0px #973D3D;
  -moz-box-shadow: 6px 2px 0px 0px #973D3D;
  position: relative;
  max-width: 25%;
}
@media screen and (min-width: 768px) {
  .equipe .swiper-container .swiper-wrapper .cardPlayer img {
    max-width: 30%;
  }
}
.equipe .swiper-container .swiper-wrapper .cardPlayer .stat {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1rem 0 0;
}
@media screen and (min-width: 325px) {
  .equipe .swiper-container .swiper-wrapper .cardPlayer .stat {
    margin: 0 0 1rem;
  }
}
.equipe .swiper-container .swiper-wrapper .cardPlayer .stat p {
  color: #973D3D;
  font-weight: bold;
  position: relative;
  font-size: 1rem;
  z-index: 0;
  width: 50%;
}
.equipe .swiper-container .swiper-wrapper .cardPlayer .name {
  z-index: 1;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #1A203E;
  text-align: left;
  font-size: 1.4rem;
  width: 45%;
}
.equipe .swiper-container .swiper-wrapper .cardPlayer .name span {
  display: block;
  font-family: "quentin";
  color: #973D3D;
  font-size: 70%;
  text-align: left;
  text-transform: initial;
  transform: translateY(-40%);
}
.equipe .swiper-container .swiper-wrapper .cardPlayer .number {
  position: absolute;
  bottom: 0;
  right: 10%;
  transform: translateY(50%);
  color: #973D3D;
  font-weight: bold;
  font-size: 1.7rem;
}
@media screen and (min-width: 325px) {
  .equipe .swiper-container .swiper-wrapper .cardPlayer .number {
    bottom: 12%;
    right: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .equipe .swiper-container .swiper-wrapper .cardPlayer img {
    max-width: 62%;
    margin-left: 0.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 11px 2px 0px 0px #973D3D;
    -webkit-box-shadow: 11px 2px 0px 0px #973D3D;
    -moz-box-shadow: 11px 2px 0px 0px #973D3D;
    max-width: 194px;
    max-height: 194px;
  }
  .equipe .swiper-container .swiper-wrapper .cardPlayer .name {
    position: absolute;
    top: 6%;
    left: 6%;
    font-size: 1.8rem;
    z-index: 3;
  }
  .equipe .swiper-container .swiper-wrapper .cardPlayer .stat {
    position: absolute;
    flex-direction: column;
    top: 15%;
    right: 5%;
  }
  .equipe .swiper-container .swiper-wrapper .cardPlayer .stat p {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .equipe .swiper-container .swiper-wrapper .cardPlayer .stat p::before {
    content: "";
    display: block;
    height: 1px;
    background-color: #fff;
    width: 250%;
    position: absolute;
    top: 50%;
    left: -260%;
    z-index: 1;
  }
}
.equipe .staffContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .equipe .staffContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem auto;
  }
}
.equipe .staffContainer .member {
  background-color: #E9D7D7;
  border-radius: 30px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  margin: 0.5rem 0;
  z-index: -1;
}
@media screen and (min-width: 425px) {
  .equipe .staffContainer .member {
    width: 70vw;
  }
}
@media screen and (min-width: 768px) {
  .equipe .staffContainer .member {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .equipe .staffContainer .member {
    margin: 1.6rem 0;
  }
}
.equipe .staffContainer .member img {
  border-radius: 50%;
  box-shadow: 5px 0px 0px 0px #973D3D;
  -webkit-box-shadow: 5px 0px 0px 0px #973D3D;
  -moz-box-shadow: 5px 0px 0px 0px #973D3D;
  position: relative;
  max-width: 45%;
}
@media screen and (min-width: 1440px) {
  .equipe .staffContainer .member img {
    max-width: 32%;
  }
}
.equipe .staffContainer .member .memberDescription {
  width: 45%;
}
.equipe .staffContainer .member .memberDescription p {
  margin-bottom: 0;
}
.equipe .staffContainer .member .memberDescription .name {
  z-index: 1;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #1A203E;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .equipe .staffContainer .member .memberDescription .name {
    font-size: 2.4rem;
  }
}
.equipe .staffContainer .member .memberDescription .name span {
  display: block;
  font-family: "quentin";
  color: #973D3D;
  font-size: 70%;
  text-align: center;
  text-transform: initial;
  transform: translateY(-40%);
}
.equipe .staffContainer .member .memberDescription .function {
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.partnairPage {
  margin-top: 35vw;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .partnairPage {
    margin-top: 8vw;
    margin-bottom: 7rem;
  }
}
.partnairPage > section {
  margin: 3rem 0;
}
.partnairPage .institution__list, .partnairPage .official__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.partnairPage .institution__list .logo, .partnairPage .official__list .logo {
  pointer-events: all;
  width: 30%;
  margin: 0 4% 8% 4%;
}
@media screen and (min-width: 1024px) {
  .partnairPage .institution__list .logo, .partnairPage .official__list .logo {
    width: 18%;
  }
}
.partnairPage .institution__list .logo img, .partnairPage .official__list .logo img {
  pointer-events: all;
  filter: grayscale(1);
  width: 100%;
}
.partnairPage .institution__list .logo img:hover, .partnairPage .official__list .logo img:hover {
  filter: none;
}
.partnairPage .partnairClub {
  margin-bottom: 2rem;
}
.partnairPage .partnairClub__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.partnairPage .partnairClub__list li {
  pointer-events: all;
}
.partnairPage .partnairClub__list li a {
  color: #B3B3B3;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.partnairPage .partnairClub__list li a:hover {
  color: #1A203E;
}
.partnairPage .partnairClub__list li a .round {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #CB9F9F;
  margin: 0 10px;
  border-radius: 50%;
  transform: translateY(25%);
}
.partnairPage .partnairClub__list li:last-of-type a .round {
  display: none;
}
.partnairPage .partnairClub .button.blue {
  margin: 0 auto;
  margin-top: 2rem;
}
.partnairPage .partnairBook {
  margin-top: 3rem;
}
@media screen and (min-width: 475px) {
  .partnairPage .partnairBook {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .partnairPage .partnairBook {
    margin-top: 6rem;
  }
}
.partnairPage .partnairBook p:last-of-type {
  margin-bottom: 2rem;
}
.partnairPage .partnairBook .button.join-us {
  margin-left: 0;
}

.clubElite {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
.clubElite:last-of-type {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .clubElite {
    margin-top: 8vw;
  }
}
.clubElite > section {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .clubElite > section {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .presentation .title {
    margin-bottom: 1rem;
  }
}
.clubElite .presentation .title img {
  width: 30%;
  height: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 425px) {
  .clubElite .presentation .title img {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .presentation .title img {
    width: 6rem;
  }
}
@media screen and (min-width: 1920px) {
  .clubElite .presentation .title img {
    width: 7rem;
  }
}
@media screen and (min-width: 2560px) {
  .clubElite .presentation .title img {
    width: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .presentation .title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}
.clubElite .presentation article {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .clubElite .presentation article {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.clubElite .presentation article img {
  margin-bottom: 1rem;
  height: 100%;
}
.clubElite .presentation article p:not(.catchline) {
  margin-bottom: 1rem;
}
.clubElite .presentation article p.catchline {
  font-family: "quentin";
  color: #1A203E;
  margin: 1rem 0 2rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
  .clubElite .presentation article p.catchline {
    font-size: 1.5rem;
    margin: 0rem 0 3rem;
  }
}
.clubElite .presentation article .button.join-us {
  margin-left: 0;
}
.clubElite .advantages .containerAdvantage {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .clubElite .advantages .containerAdvantage {
    justify-content: space-between;
  }
}
.clubElite .advantages .containerAdvantage .advantagesCard {
  background-color: #EAEBEE;
  border-radius: 50px;
  width: 70vw;
  height: 70vw;
  margin: 5vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clubElite .advantages .containerAdvantage .advantagesCard:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .clubElite .advantages .containerAdvantage .advantagesCard:first-child {
    margin: 5vw 0;
  }
}
@media screen and (min-width: 1024px) {
  .clubElite .advantages .containerAdvantage .advantagesCard:first-child {
    margin: 4rem 0;
  }
}
@media screen and (min-width: 425px) {
  .clubElite .advantages .containerAdvantage .advantagesCard {
    width: 60vw;
    height: 60vw;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .advantages .containerAdvantage .advantagesCard {
    width: 20rem;
    height: 20rem;
    margin: 5vw 0;
  }
}
@media screen and (min-width: 1024px) {
  .clubElite .advantages .containerAdvantage .advantagesCard {
    width: 20vw;
    height: 20vw;
    margin: 4rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .clubElite .advantages .containerAdvantage .advantagesCard {
    width: 20rem;
    height: 20rem;
  }
}
.clubElite .advantages .containerAdvantage .advantagesCard img {
  width: 40%;
}
@media screen and (min-width: 425px) {
  .clubElite .advantages .containerAdvantage .advantagesCard img {
    width: 30%;
  }
}
.clubElite .advantages .containerAdvantage .advantagesCard h4 {
  font-family: "Bebas Neue", cursive;
  text-transform: uppercase;
  color: #1A203E;
  font-size: 1rem;
  margin-top: 1rem;
  width: 60%;
  text-align: center;
}
@media screen and (min-width: 375px) {
  .clubElite .advantages .containerAdvantage .advantagesCard h4 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 425px) {
  .clubElite .advantages .containerAdvantage .advantagesCard h4 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .clubElite .advantages .containerAdvantage .advantagesCard h4 {
    font-size: 1.5rem;
  }
}
.clubElite .advantages .containerAdvantage .advantagesCard .subtilte {
  font-size: 0.7rem;
}
.clubElite .advantages .containerAdvantage .plus {
  background-color: #973D3D;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  padding: 1rem 1.3rem;
  margin: 2rem 0;
  max-width: 90%;
}
@media screen and (min-width: 1024px) {
  .clubElite .advantages .containerAdvantage .plus {
    font-size: 1.1rem;
    margin: 2rem auto;
    padding: 1rem 1rem 1rem 1.8rem;
    width: 100%;
    text-align: left;
    max-width: 100%;
  }
}
.clubElite .advantages .containerAdvantage .plus::before {
  content: url(../img/utils/icons/plus.svg);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2rem;
  z-index: 2;
  transform: translateX(-65%) translateY(-50%) scale(0.5);
}
.clubElite .event .containerEvents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .clubElite .event .containerEvents {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.clubElite .event .containerEvents .eventCard {
  background-color: #E9D7D7;
  border-radius: 30px;
  position: relative;
  margin: 2rem 1rem 2rem calc(4rem / 2);
  padding: 1rem 1rem 1rem calc(4rem / 1.5);
}
@media screen and (min-width: 425px) {
  .clubElite .event .containerEvents .eventCard {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .event .containerEvents .eventCard {
    max-width: 42%;
  }
}
@media screen and (min-width: 1440px) {
  .clubElite .event .containerEvents .eventCard {
    max-width: 40%;
  }
}
.clubElite .event .containerEvents .eventCard:nth-child(1)::before {
  content: "1";
}
.clubElite .event .containerEvents .eventCard:nth-child(1) .description::before {
  content: url(../img/utils/icons/eventChrono.svg);
}
.clubElite .event .containerEvents .eventCard:nth-child(2)::before {
  content: "2";
}
.clubElite .event .containerEvents .eventCard:nth-child(2) .description::before {
  content: url(../img/utils/icons/eventParty.svg);
}
.clubElite .event .containerEvents .eventCard:nth-child(3)::before {
  content: "3";
}
.clubElite .event .containerEvents .eventCard:nth-child(3) .description::before {
  content: url(../img/utils/icons/eventPlan.svg);
}
.clubElite .event .containerEvents .eventCard:nth-child(4)::before {
  content: "4";
}
.clubElite .event .containerEvents .eventCard:nth-child(4) .description::before {
  content: url(../img/utils/icons/eventCup.svg);
}
.clubElite .event .containerEvents .eventCard::before {
  content: "1";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateX(-50%) translateY(-30%);
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  background-color: #973D3D;
  color: #fff;
}
.clubElite .event .containerEvents .eventCard h4 {
  color: #1A203E;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .clubElite .event .containerEvents .eventCard h4 {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .clubElite .event .containerEvents .eventCard h4 {
    font-size: 2rem;
  }
}
.clubElite .event .containerEvents .eventCard h4 span {
  display: block;
  color: #973D3D;
  text-transform: initial;
  font-family: "quentin";
  font-size: 90%;
  position: relative;
  transform: translateY(-10%);
  line-height: 0.7;
}
.clubElite .event .containerEvents .eventCard .description {
  position: relative;
  left: 2rem;
  width: 80%;
  z-index: 1;
}
.clubElite .event .containerEvents .eventCard .description::before {
  content: url(../img/utils/icons/eventPlan.svg);
  display: block;
  display: block;
  width: 4rem;
  height: 4rem;
  transform: translateX(-100%) scale(0.9);
  z-index: -1;
  position: relative;
  left: 1.5rem;
}
.clubElite .event .containerEvents .eventCard .description .date {
  color: #973D3D;
  text-transform: uppercase;
  font-family: "Bebas Neue";
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .clubElite .event .containerEvents .eventCard .description .date {
    font-size: 2rem;
  }
}
.clubElite .event .containerEvents .eventCard .description .text {
  color: #1A203E;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.clubElite .membership .membershipCardContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .clubElite .membership .membershipCardContainer {
    justify-content: space-between;
  }
}
.clubElite .membership .membershipCardContainer .membershipCard {
  border-radius: 50px;
  width: 70vw;
  height: 70vw;
  margin: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clubElite .membership .membershipCardContainer .membershipCard:first-child {
  margin-top: 0;
  background-color: #E9D7D7;
}
.clubElite .membership .membershipCardContainer .membershipCard:first-child .title span {
  color: #74798C;
}
@media screen and (min-width: 768px) {
  .clubElite .membership .membershipCardContainer .membershipCard:first-child {
    margin: 5vw 0;
  }
}
@media screen and (min-width: 1024px) {
  .clubElite .membership .membershipCardContainer .membershipCard:first-child {
    margin: 4rem 0;
  }
}
.clubElite .membership .membershipCardContainer .membershipCard:nth-child(2) {
  background-color: #CB9F9F;
}
.clubElite .membership .membershipCardContainer .membershipCard:nth-child(3) {
  background-color: #973D3D;
}
@media screen and (min-width: 475px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 50vw;
    height: 50vw;
    margin: 5vw 0;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 20rem;
    height: 20rem;
    margin: 5vw 0;
  }
}
@media screen and (min-width: 1024px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 15rem;
    height: 15rem;
    margin: 4rem 0;
  }
}
@media screen and (min-width: 1100px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (min-width: 1200px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 18rem;
    height: 18rem;
  }
}
@media screen and (min-width: 1440px) {
  .clubElite .membership .membershipCardContainer .membershipCard {
    width: 21rem;
    height: 21rem;
  }
}
.clubElite .membership .membershipCardContainer .membershipCard img {
  width: 52%;
}
@media screen and (min-width: 425px) {
  .clubElite .membership .membershipCardContainer .membershipCard img {
    width: 60%;
  }
}
.clubElite .membership .membershipCardContainer .membershipCard .title {
  font-family: "Bebas Neue", cursive;
  text-transform: uppercase;
  color: #1A203E;
  font-size: 1.2rem;
  margin-top: 1rem;
  width: 60%;
  text-align: center;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (min-width: 425px) {
  .clubElite .membership .membershipCardContainer .membershipCard .title {
    font-size: 1.4rem;
  }
}
.clubElite .membership .membershipCardContainer .membershipCard .title span {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #E9D7D7;
  display: block;
  text-transform: none;
  font-size: 90%;
}
.clubElite .membership .membershipCardContainer .membershipCard .price {
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  color: #FFFFFF;
  font-size: 2rem;
  margin-top: 0.6rem;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .clubElite .membership .membershipCardContainer .membershipCard .price {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .clubElite .membership .membershipCardContainer .membershipCard .price {
    font-size: 2.4rem;
  }
}
.clubElite .question {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clubElite .question h2 {
  margin: 0 auto 2rem 0;
}
.clubElite .question .contactCardContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .clubElite .question .contactCardContainer {
    flex-direction: row;
    margin-bottom: 5vw;
  }
}
.clubElite .question .contactCardContainer .contactCard {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  background-color: #E9D7D7;
  border-radius: 30px;
  width: 90%;
  margin: 1rem 0;
}
@media screen and (min-width: 320px) {
  .clubElite .question .contactCardContainer .contactCard {
    justify-content: space-around;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .question .contactCardContainer .contactCard {
    margin: 0 1rem;
  }
}
.clubElite .question .contactCardContainer .contactCard:nth-child(1) {
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .clubElite .question .contactCardContainer .contactCard:nth-child(1) {
    margin: 0 1rem;
  }
}
.clubElite .question .contactCardContainer .contactCard .leftContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.clubElite .question .contactCardContainer .contactCard .leftContainer img {
  border-radius: 50%;
  box-shadow: 5px 0px 0px 0px #973D3D;
  -webkit-box-shadow: 5px 0px 0px 0px #973D3D;
  -moz-box-shadow: 5px 0px 0px 0px #973D3D;
  position: relative;
  height: 15vw;
  width: 15vw;
}
@media screen and (min-width: 320px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer img {
    height: 20vw;
    width: 20vw;
  }
}
@media screen and (min-width: 425px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer img {
    height: 25vw;
    width: 25vw;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer img {
    height: 10vw;
    width: 10vw;
  }
}
@media screen and (min-width: 1440px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer img {
    height: 9vw;
    width: 9vw;
  }
}
.clubElite .question .contactCardContainer .contactCard .leftContainer .function {
  text-transform: uppercase;
  color: #1A203E;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  margin-bottom: 0;
}
@media screen and (min-width: 475px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer .function {
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .question .contactCardContainer .contactCard .leftContainer .function {
    font-size: 0.8rem;
  }
}
.clubElite .question .contactCardContainer .contactCard .description {
  width: 70%;
}
@media screen and (min-width: 320px) {
  .clubElite .question .contactCardContainer .contactCard .description {
    width: 60%;
  }
}
@media screen and (min-width: 425px) {
  .clubElite .question .contactCardContainer .contactCard .description {
    width: 50%;
  }
}
.clubElite .question .contactCardContainer .contactCard .description .tel {
  font-size: 0.8rem;
}
@media screen and (min-width: 425px) {
  .clubElite .question .contactCardContainer .contactCard .description .tel {
    font-size: 1rem;
  }
}
.clubElite .question .contactCardContainer .contactCard .description .name {
  z-index: 1;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #1A203E;
  font-size: 1.3rem;
  max-width: 45%;
  line-height: 1.1;
  margin-bottom: 0rem;
}
@media screen and (min-width: 1024px) {
  .clubElite .question .contactCardContainer .contactCard .description .name {
    font-size: 1.8rem;
  }
}
.clubElite .question .contactCardContainer .contactCard .description .name span {
  display: block;
  font-family: "quentin";
  color: #973D3D;
  font-size: 70%;
  text-align: center;
  text-transform: initial;
  transform: translateY(-40%);
}
.clubElite .question .contactCardContainer .contactCard .description .mail {
  font-size: 0.6rem;
  word-wrap: anywhere;
  margin-top: 0.5rem;
}
@media screen and (min-width: 425px) {
  .clubElite .question .contactCardContainer .contactCard .description .mail {
    font-size: 0.8rem;
  }
}
.clubElite .question .contactCardContainer .contactCard .description a.mail, .clubElite .question .contactCardContainer .contactCard .description a.tel {
  display: flex;
  line-height: 1;
  margin-bottom: 0rem;
  color: #74798C;
  text-decoration: none;
  pointer-events: all;
  align-items: center;
}
.clubElite .question .contactCardContainer .contactCard .description a .icon {
  width: 13px;
  margin-right: 0.3rem;
}
@media screen and (min-width: 1440px) {
  .clubElite .question .contactCardContainer .contactCard .description a .icon {
    width: 15px;
  }
}
.clubElite .question .button.blue {
  align-self: flex-end;
  margin-right: 1.4rem;
}
@media screen and (min-width: 375px) {
  .clubElite .question .button.blue {
    margin-right: 1.6rem;
  }
}
@media screen and (min-width: 425px) {
  .clubElite .question .button.blue {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .clubElite .question .button.blue {
    margin-right: 1.2rem;
  }
}

.separator {
  padding: 0;
}
.separator svg {
  width: 100%;
}

.benevoles {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .benevoles {
    margin-top: 8vw;
  }
}
.benevoles .benevolesContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .benevoles .benevolesContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2rem auto;
  }
}
.benevoles .benevolesContainer .benevolesCard {
  background-color: #E9D7D7;
  border-radius: 30px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 90vw;
  margin: 1.6rem 0;
  z-index: -1;
}
@media screen and (min-width: 425px) {
  .benevoles .benevolesContainer .benevolesCard {
    width: 70vw;
  }
}
@media screen and (min-width: 768px) {
  .benevoles .benevolesContainer .benevolesCard {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .benevoles .benevolesContainer .benevolesCard {
    margin: 1.2rem 0;
    width: 42%;
    border-radius: 45px;
  }
}
@media screen and (min-width: 1440px) {
  .benevoles .benevolesContainer .benevolesCard {
    border-radius: 55px;
  }
}
.benevoles .benevolesContainer .benevolesCard img {
  border-radius: 50%;
  box-shadow: 5px 0px 0px 0px #973D3D;
  -webkit-box-shadow: 5px 0px 0px 0px #973D3D;
  -moz-box-shadow: 5px 0px 0px 0px #973D3D;
  position: relative;
  max-width: 45%;
}
@media screen and (min-width: 1024px) {
  .benevoles .benevolesContainer .benevolesCard img {
    max-width: 35%;
  }
}
@media screen and (min-width: 1440px) {
  .benevoles .benevolesContainer .benevolesCard img {
    max-width: 32%;
    margin-left: 2rem;
  }
}
.benevoles .benevolesContainer .benevolesCard .name {
  z-index: 1;
  font-family: "Bebas Neue";
  text-transform: uppercase;
  color: #1A203E;
  text-align: left;
  font-size: 1.4rem;
  margin-left: 1rem;
  max-width: 50%;
  line-height: 1.1;
  margin-bottom: 0;
}
@media screen and (min-width: 375px) {
  .benevoles .benevolesContainer .benevolesCard .name {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 475px) {
  .benevoles .benevolesContainer .benevolesCard .name {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .benevoles .benevolesContainer .benevolesCard .name {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1440px) {
  .benevoles .benevolesContainer .benevolesCard .name {
    font-size: 2.4rem;
    line-height: 1;
    margin-left: 2rem;
  }
}
.benevoles .benevolesContainer .benevolesCard .name span {
  display: block;
  font-family: "quentin";
  color: #973D3D;
  font-size: 70%;
  text-align: center;
  text-transform: initial;
  transform: translateY(-40%);
}
.benevoles .CTA {
  display: flex;
  justify-content: flex-end;
}
.benevoles .CTA .button {
  margin: 1rem 0.25rem 0 0;
}

.article {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .article {
    margin-top: 8vw;
  }
}
.article h1 {
  color: #1A203E;
  text-transform: uppercase;
  font-family: "Bebas Neue", cursive;
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1920px) {
  .article h1 {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 2560px) {
  .article h1 {
    font-size: 6.2rem;
  }
}
.article h1 span {
  display: block;
  color: #973D3D;
  text-transform: initial;
  font-family: "quentin";
  font-size: 75%;
  position: relative;
  transform: translateY(-10%);
  line-height: 0.7;
}
.article .ArticleContent h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
@media screen and (min-width: 1024px) {
  .article .ArticleContent h2 {
    font-size: 1.8rem;
  }
}
.article .ArticleContent h3 {
  font-family: "Bebas Neue", cursive;
  text-transform: uppercase;
  color: #1A203E;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}
@media screen and (min-width: 1024px) {
  .article .ArticleContent h3 {
    font-size: 1.5rem;
  }
}
.article p {
  color: #707070;
}
.article .image {
  position: relative;
}
.article .image .filigrane {
  position: absolute;
  top: -50%;
  right: -20%;
  display: block;
}
@media screen and (min-width: 375px) {
  .article .image .filigrane {
    width: 70%;
    right: -26%;
  }
}
@media screen and (min-width: 1024px) {
  .article .image .filigrane {
    width: 50%;
    right: -20%;
    top: -40%;
  }
}
@media screen and (min-width: 1440px) {
  .article .image .filigrane {
    width: 40%;
    right: -15%;
    top: -40%;
  }
}
.article .image .date {
  font-family: "Bebas Neue";
  font-size: 2.5rem;
  position: absolute;
  top: 0;
  right: 1rem;
  transform: translateY(-50%);
  color: #CB9F9F;
  width: fit-content;
  width: -moz-fit-content;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 375px) {
  .article .image .date {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .article .image .date {
    font-size: 3.7rem;
  }
}
@media screen and (min-width: 1440px) {
  .article .image .date {
    font-size: 4rem;
  }
}
.article .image img:not(.filigrane) {
  height: 100%;
  padding: 0;
}
.article .lastActu {
  position: relative;
  margin: 4rem auto 2rem;
  pointer-events: all;
}
@media screen and (min-width: 475px) {
  .article .lastActu {
    margin: 6rem auto 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .article .lastActu {
    margin: 8rem auto 2rem;
  }
}
.article .lastActu .articlesList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  .article .lastActu .articlesList {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .article .lastActu .articlesList {
    margin-top: 4rem;
  }
}
.article .lastActu .articlesList .articleItem {
  position: relative;
  margin: 2rem 0;
}
.article .lastActu .articlesList .articleItem::before {
  display: none;
}
.article .lastActu .articlesList .articleItem:hover img {
  opacity: 0.5;
}
.article .lastActu .articlesList .articleItem:hover .button.article {
  opacity: 1;
}
.article .lastActu .articlesList .articleItem .button.article {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-65%);
}
@media screen and (min-width: 475px) {
  .article .lastActu .articlesList .articleItem .button.article {
    top: 30%;
  }
}
@media screen and (min-width: 768px) {
  .article .lastActu .articlesList .articleItem .button.article {
    top: 30%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .article .lastActu .articlesList .articleItem .button.article {
    top: 26%;
    left: 55%;
    opacity: 0;
  }
}
@media screen and (min-width: 1440px) {
  .article .lastActu .articlesList .articleItem .button.article {
    top: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .article .lastActu .articlesList .articleItem {
    margin: 0.5rem;
    width: 30%;
  }
}
.article .lastActu .articlesList .articleItem h3 {
  color: #973D3D;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 425px) {
  .article .lastActu .articlesList .articleItem h3 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1920px) {
  .article .lastActu .articlesList .articleItem h3 {
    font-size: 1.6rem;
  }
}
.article .lastActu .articlesList .articleItem .articleSubtitle {
  font-family: "quentin";
  font-size: 1.3rem;
  font-weight: 100;
  color: #1A203E;
}
@media screen and (min-width: 1920px) {
  .article .lastActu .articlesList .articleItem .articleSubtitle {
    font-size: 1.6rem;
  }
}
.article .lastActu .articlesList .articleItem img {
  width: 100%;
}
.article .lastActu .articlesList .articleItem .articleDate {
  font-family: "Bebas Neue", cursive;
  color: #CC9F9F;
  font-size: 2.8rem;
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  right: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .article .lastActu .articlesList .articleItem .articleDate {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1920px) {
  .article .lastActu .articlesList .articleItem .articleDate {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .article .lastActu .button {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.actualites {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .actualites {
    margin-top: 8vw;
  }
}
.actualites .articleContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .actualites .articleContainer {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .actualites .articleContainer {
    margin-top: 4rem;
  }
}
.actualites .articleContainer .articleItem {
  position: relative;
  margin: 4rem 0;
}
.actualites .articleContainer .articleItem:first-of-type:before {
  display: none;
}
.actualites .articleContainer .articleItem:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #B3B3B3;
  position: absolute;
  top: -3.2rem;
}
.actualites .articleContainer .articleItem:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .actualites .articleContainer .articleItem {
    width: 46%;
    margin: 3.8rem 0;
  }
  .actualites .articleContainer .articleItem:nth-child(odd):before {
    left: 0;
  }
  .actualites .articleContainer .articleItem:nth-child(even):before {
    right: 0;
  }
  .actualites .articleContainer .articleItem:before {
    width: 110%;
  }
  .actualites .articleContainer .articleItem:first-of-type:before, .actualites .articleContainer .articleItem:nth-child(2):before {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .actualites .articleContainer .articleItem {
    margin: 4rem 0;
  }
}
@media screen and (min-width: 1920px) {
  .actualites .articleContainer .articleItem {
    margin: 5rem 0;
  }
}
.actualites .articleContainer .articleItem h3 {
  color: #973D3D;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 425px) {
  .actualites .articleContainer .articleItem h3 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1920px) {
  .actualites .articleContainer .articleItem h3 {
    font-size: 1.6rem;
  }
}
.actualites .articleContainer .articleItem .articleSubtitle {
  font-family: "quentin";
  font-size: 1.3rem;
  font-weight: 100;
  color: #1A203E;
}
@media screen and (min-width: 1920px) {
  .actualites .articleContainer .articleItem .articleSubtitle {
    font-size: 2rem;
  }
}
.actualites .articleContainer .articleItem img {
  width: 100%;
}
.actualites .articleContainer .articleItem .articleDate {
  font-family: "Bebas Neue", cursive;
  color: #CC9F9F;
  font-size: 2.8rem;
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  right: 2rem;
}
@media screen and (min-width: 768px) {
  .actualites .articleContainer .articleItem .articleDate {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .actualites .articleContainer .articleItem .articleDate {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1920px) {
  .actualites .articleContainer .articleItem .articleDate {
    font-size: 3rem;
  }
}
.actualites .articleContainer .articleItem .button {
  margin-left: 0.4rem;
}
.actualites .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  pointer-events: all;
  max-width: 6rem;
  margin: 2rem 0 0 auto;
}
.actualites .nav-links a {
  color: #CB9F9F;
  text-decoration: none;
}
.actualites .nav-links a.prev, .actualites .nav-links a.next {
  width: 46%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 4px;
  margin-top: 0.5rem;
}
.actualites .nav-links a.prev::after, .actualites .nav-links a.next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #973D3D;
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  transition: 0.3s ease;
}
.actualites .nav-links a.prev:hover::after, .actualites .nav-links a.next:hover::after {
  width: 35px;
  border-radius: 50%;
}
.actualites .nav-links a.prev svg, .actualites .nav-links a.next svg {
  max-width: 40%;
}
.actualites .nav-links a.prev {
  order: 6;
}
.actualites .nav-links a.next {
  order: 7;
}
.actualites .nav-links span {
  color: #CB9F9F;
}
.actualites .nav-links span.current {
  color: #973D3D;
}
.actualites .nav-links .page-numbers {
  margin: 0 0.4rem;
  font-family: "Bebas Neue", cursive;
  font-size: 1.2rem;
}

.legales {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .legales {
    margin-top: 8vw;
  }
}
.legales p, .legales ul {
  color: #B3B3B3;
}
.legales p a, .legales ul a {
  color: #CB9F9F;
  pointer-events: all;
}
.legales ul li {
  color: #B3B3B3;
}
.legales .text h2 {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #973D3D;
  text-transform: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 5.5rem 0 2rem;
}
.legales .text h2:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .legales .text h2 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .legales .text h2 {
    font-size: 1.7rem;
  }
}
.legales .text h3 {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: #1A203E;
  text-transform: none;
  font-weight: normal;
  margin: 4rem 0 1.5rem;
  font-size: 1.1rem;
}
.legales .text h3:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .legales .text h3 {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1920px) {
  .legales .text h3 {
    font-size: 1.3rem;
  }
}

.supportPage {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .supportPage {
    margin-top: 8vw;
  }
}
.supportPage__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  pointer-events: all;
}
@media screen and (min-width: 768px) {
  .supportPage__list {
    justify-content: space-around;
  }
}
.supportPage__list .club {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  margin: 0.5rem 0;
  transition: 0.3s ease;
}
.supportPage__list .club:not(:hover) {
  filter: grayscale(1);
  filter: -moz-grayscale(1);
}
@media screen and (min-width: 768px) {
  .supportPage__list .club {
    width: 30%;
    margin: 2rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .supportPage__list .club {
    margin: 2.5rem 0;
  }
}
.supportPage__list .club a {
  text-decoration: none;
}
.supportPage__list .club a img {
  width: 100%;
}
.supportPage__list .club p {
  text-align: center;
  color: #CB9F9F;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}
@media screen and (min-width: 425px) {
  .supportPage__list .club p {
    font-size: 0.9rem;
  }
}

.catchlineContainer .catchline {
  font-family: "quentin";
  color: #973D3D;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .catchlineContainer .catchline {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .catchlineContainer .catchline {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1920px) {
  .catchlineContainer .catchline {
    font-size: 2.6rem;
  }
}
.catchlineContainer .button.blue {
  margin: 0 auto;
}

.presentation {
  margin-top: 35vw;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .presentation {
    margin-top: 8vw;
    margin-bottom: 7rem;
  }
}
.presentation .title {
  position: relative;
}
.presentation .title .join-us {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .presentation .title .join-us {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(50%);
  }
}
.presentation .presentationContainer {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.presentation .presentationContainer__text ul li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: #707070;
}
.presentation .presentationContainer__text ul li:first-of-type {
  margin-top: 0;
}
.presentation .presentationContainer__text ul li:last-of-type {
  margin-bottom: 0;
}
.presentation .presentationContainer__text ul li .icon {
  display: block;
  width: 30px;
  margin: 0 1rem 0 0;
}
@media screen and (min-width: 425px) {
  .presentation .presentationContainer__text ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .presentation .presentationContainer__text ul li {
    width: 45%;
    margin: 1rem 0;
  }
  .presentation .presentationContainer__text ul li:first-of-type, .presentation .presentationContainer__text ul li:last-of-type {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .presentationContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
  }
  .presentation .presentationContainer:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .presentation .presentationContainer .img {
    width: 50%;
    padding: 0;
  }
  .presentation .presentationContainer__text {
    width: 45%;
  }
  .presentation .presentationContainer__text ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .presentation .presentationContainer__text ul li {
    width: 45%;
    margin: 1rem 0;
  }
  .presentation .presentationContainer__text ul li:first-of-type, .presentation .presentationContainer__text ul li:last-of-type {
    margin: 1rem 0;
  }
  .presentation .presentationContainer__text ul li .icon {
    width: 35px;
  }
}
.presentation .presentationContainer img {
  margin-bottom: 1rem;
}
.presentation .presentationContainer h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #973D3D;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .presentation .presentationContainer h3 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.presentation .member__tree .firstLevel .sectionTitle, .presentation .member__tree .secondaryLevel .sectionTitle, .presentation .member__tree .lastLevel .sectionTitle {
  width: 70%;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .firstLevel .sectionTitle, .presentation .member__tree .secondaryLevel .sectionTitle, .presentation .member__tree .lastLevel .sectionTitle {
    width: 50%;
  }
}
.presentation .member__tree .firstLevel .memberList, .presentation .member__tree .secondaryLevel .memberList, .presentation .member__tree .lastLevel .memberList {
  display: flex;
  flex-direction: row;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .presentation .member__tree .firstLevel .memberList, .presentation .member__tree .secondaryLevel .memberList, .presentation .member__tree .lastLevel .memberList {
    justify-content: center;
  }
}
.presentation .member__tree .firstLevel .memberList .member, .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
  background-color: #F0E6E6;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 35px;
  width: 50%;
  min-width: 35vw;
  margin: 0rem 0.8rem 2rem;
  padding: 1rem;
}
@media screen and (min-width: 425px) {
  .presentation .member__tree .firstLevel .memberList .member, .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    border-radius: 50px;
  }
}
@media screen and (min-width: 768px) {
  .presentation .member__tree .firstLevel .memberList .member, .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    width: 25%;
    min-width: 23vw;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .firstLevel .memberList .member, .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .firstLevel .memberList .member, .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    border-radius: 55px;
  }
}
.presentation .member__tree .firstLevel .memberList .member h4, .presentation .member__tree .secondaryLevel .memberList .member h4, .presentation .member__tree .lastLevel .memberList .member h4 {
  font-family: "Bebas Neue", cursive;
  color: #1A203E;
  text-transform: uppercase;
  text-align: center;
}
.presentation .member__tree .firstLevel .memberList .member h4 span, .presentation .member__tree .secondaryLevel .memberList .member h4 span, .presentation .member__tree .lastLevel .memberList .member h4 span {
  font-family: "quentin";
  color: #973D3D;
  display: block;
  text-transform: none;
}
.presentation .member__tree .firstLevel .memberList .member img, .presentation .member__tree .secondaryLevel .memberList .member img, .presentation .member__tree .lastLevel .memberList .member img {
  border-radius: 50%;
  box-shadow: 4px 0px 0px 2px #973D3D;
  -webkit-box-shadow: 4px 0px 0px 1px #973D3D;
  -moz-box-shadow: 4px 0px 0px 2px #973D3D;
  position: relative;
  max-width: 80%;
  margin-top: 1rem;
}
.presentation .member__tree .firstLevel .memberList .member .function, .presentation .member__tree .secondaryLevel .memberList .member .function, .presentation .member__tree .lastLevel .memberList .member .function {
  text-transform: uppercase;
  text-align: center;
  color: #973D3D;
  font-size: 0.7rem;
  margin: 0.5rem 0 0;
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .firstLevel {
    width: 33.3%;
  }
  .presentation .member__tree .firstLevel .memberList .member {
    width: 14%;
    min-width: 11vw;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) {
  .presentation .member__tree .firstLevel .memberList .member {
    width: 10%;
    min-width: 10rem;
  }
}
.presentation .member__tree .firstLevel.treasurer:after {
  content: "";
  display: block;
  height: 50px;
  width: 2px;
  background-color: #973D3D;
  margin: 0 auto 1rem;
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .firstLevel.treasurer:after {
    margin: 0 0 1rem 28%;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .firstLevel.presidency:after {
    content: "";
    display: block;
    height: 50px;
    width: 2px;
    background-color: #973D3D;
    margin: 0 0 1rem 70%;
  }
}
.presentation .member__tree .secondaryLevel.rse .memberList, .presentation .member__tree .secondaryLevel.elite .memberList, .presentation .member__tree .lastLevel.rse .memberList, .presentation .member__tree .lastLevel.elite .memberList {
  width: min-content;
}
.presentation .member__tree .secondaryLevel .memberList, .presentation .member__tree .lastLevel .memberList {
  flex-wrap: wrap;
  justify-content: center;
  background-color: #F7F7F7;
  border-radius: 50px;
  padding: 0.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .presentation .member__tree .secondaryLevel .memberList, .presentation .member__tree .lastLevel .memberList {
    border-radius: 70px;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .secondaryLevel .memberList, .presentation .member__tree .lastLevel .memberList {
    border-radius: 125px;
  }
}
.presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
  width: 30%;
  min-width: 38vw;
  margin: 0 0.4rem 0.4rem;
}
@media screen and (min-width: 425px) {
  .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    width: 30%;
    min-width: 27vw;
  }
}
@media screen and (min-width: 768px) {
  .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    width: 22%;
    min-width: 20vw;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    width: 12%;
    min-width: 11vw;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .secondaryLevel .memberList .member, .presentation .member__tree .lastLevel .memberList .member {
    width: 10%;
    min-width: 10rem;
  }
}
.presentation .member__tree .secondaryLevel .memberList .member.manager, .presentation .member__tree .lastLevel .memberList .member.manager {
  margin: 0 20vw 1.5rem;
}
@media screen and (min-width: 768px) {
  .presentation .member__tree .secondaryLevel .memberList .member.manager, .presentation .member__tree .lastLevel .memberList .member.manager {
    margin: 0px 35vw 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .secondaryLevel .sectionTitle {
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .lastLevel.elite .memberList, .presentation .member__tree .lastLevel.rse .memberList, .presentation .member__tree .lastLevel.commercial .memberList {
    border-radius: 70px;
  }
}
@media screen and (min-width: 425px) {
  .presentation .member__tree .commercial {
    width: 75%;
    margin: 0 auto;
  }
  .presentation .member__tree .event, .presentation .member__tree .marketing {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .presentation .member__tree .commercial {
    width: 32%;
    margin: 0 auto;
  }
  .presentation .member__tree .commercial::before {
    content: "";
    display: block;
    height: 50px;
    width: 2px;
    background-color: #973D3D;
    margin: 0 auto 1rem;
  }
  .presentation .member__tree .event, .presentation .member__tree .marketing {
    width: 49%;
    margin: 0;
  }
  .presentation .member__tree .elite, .presentation .member__tree .rse {
    width: 34%;
    align-self: flex-end;
  }
  .presentation .member__tree .rse {
    position: relative;
  }
  .presentation .member__tree .rse::after {
    content: "";
    display: block;
    height: 3px;
    width: 50px;
    background-color: #973D3D;
    margin: 0 auto 1rem;
    position: absolute;
    top: 58%;
    right: 5%;
  }
  .presentation .member__tree .elite {
    position: relative;
  }
  .presentation .member__tree .elite::after {
    content: "";
    display: block;
    height: 3px;
    width: 50px;
    background-color: #973D3D;
    margin: 0 auto 1rem;
    position: absolute;
    top: 58%;
    left: 5%;
  }
  .presentation .member__tree .presidency {
    position: relative;
  }
  .presentation .member__tree .presidency::before {
    content: "";
    display: block;
    height: 3px;
    width: 35px;
    background-color: #973D3D;
    margin: 0 auto 1rem;
    position: absolute;
    top: 45%;
    right: -5%;
  }
  .presentation .member__tree .treasurer {
    position: relative;
  }
  .presentation .member__tree .treasurer::before {
    content: "";
    display: block;
    height: 3px;
    width: 35px;
    background-color: #973D3D;
    margin: 0 auto 1rem;
    position: absolute;
    top: 45%;
    left: -5%;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .member__tree .commercial {
    width: 30%;
  }
  .presentation .member__tree .rse::after {
    width: 70px;
  }
  .presentation .member__tree .elite::after {
    width: 70px;
  }
  .presentation .member__tree .presidency::before {
    width: 45px;
  }
  .presentation .member__tree .treasurer::before {
    width: 45px;
  }
}
@media screen and (min-width: 1920px) {
  .presentation .member__tree .commercial {
    width: 32%;
  }
}
.presentation .catchlineContainer {
  margin-top: 5rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .presentation .catchlineContainer {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1920px) {
  .presentation .catchlineContainer {
    margin-top: 12rem;
  }
}
.presentation .catchlineContainer .catchline {
  z-index: 1;
}
.presentation .catchlineContainer .catchline::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: -60%;
  background: url(../img/utils/Bg_prez.svg);
  width: 10rem;
  height: 10rem;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 475px) {
  .presentation .catchlineContainer .catchline::after {
    right: 0%;
    top: -94%;
  }
}
@media screen and (min-width: 768px) {
  .presentation .catchlineContainer .catchline::after {
    right: 15%;
    top: -80%;
  }
}
@media screen and (min-width: 1200px) {
  .presentation .catchlineContainer .catchline::after {
    right: 22%;
  }
}
@media screen and (min-width: 1440px) {
  .presentation .catchlineContainer .catchline::after {
    right: 20%;
    top: -70%;
  }
}

.contact {
  margin-top: 35vw;
  position: relative;
  z-index: -1;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  .contact {
    margin-top: 8vw;
  }
}
.contact input, .contact textarea {
  border: 1px solid #973D3D;
  border-radius: 50px;
  margin: 0.5rem 0;
  color: #1A203E;
  padding: 0.2rem 15px;
}
.contact input::placeholder, .contact textarea::placeholder {
  color: #1A203E;
  opacity: 0.9;
}
.contact input[type=submit] {
  background-color: #973D3D;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
.contact textarea {
  width: 100%;
  border-radius: 40px;
  font-size: initial;
}
.contact .formGroup {
  display: flex;
  justify-content: space-between;
}
.contact .formGroup span {
  width: 48%;
}
.contact .formGroup span input {
  width: 100%;
}
.contact .formGroup.single span {
  width: 100%;
}
.contact .formGroup.submit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.contact .formGroup.submit input {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .contact .formGroup.submit input {
    max-width: 20%;
  }
}
.contact .wpcf7-acceptance {
  font-size: 1rem;
  color: #1A203E;
}
.contact form p {
  margin-bottom: 0;
}
.contact .ajax-loader {
  display: none;
}
@media screen and (min-width: 992px) {
  .contact .map {
    padding-left: 3rem;
  }
}
.contact .map #map {
  width: 100%;
  height: 100%;
  min-height: 250px;
}
.contact .map .mapboxgl-ctrl-logo {
  display: none;
}
.contact .map .marker {
  background-image: url("../img/utils/marker.png");
  background-size: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}
.contact .map .mapboxgl-popup {
  max-width: 200px;
}
.contact .map .mapboxgl-popup-content {
  text-align: center;
  font-family: "Open Sans", sans-serif;
}
.contact .socialMedia {
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.contact_catchline {
  font-family: "quentin";
  color: #973D3D;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .contact_catchline {
    margin-top: 6rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .contact_catchline {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1920px) {
  .contact_catchline {
    font-size: 2.2rem;
  }
}

.button {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 1rem;
  pointer-events: all;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 325px) {
  .button {
    margin: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.1rem;
    margin: 0.5rem 0.5rem 0.5rem 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .button:hover {
    color: #973D3D;
  }
  .button:hover::before {
    width: var(--buttonSize);
  }
}
@media screen and (min-width: 1440px) {
  .button {
    margin: 0 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .button {
    font-size: 1.2rem;
    margin: 0 3rem;
  }
}
.button span {
  margin-left: 10px;
}
.button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  height: var(--buttonSize);
  width: 115%;
  background-color: #973D3D;
  border-radius: 50px;
  z-index: -1;
  transform: translateY(-50%) translateX(8px);
  transform-origin: right;
  transition: width 0.3s ease, transform 0s 0.3s ease;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .button::before {
    width: 106%;
  }
}
@media screen and (min-width: 1920px) {
  .button::before {
    right: -2px;
  }
}
.button svg {
  width: 10px;
  margin-left: 8px;
}
@media screen and (min-width: 768px) {
  .button svg {
    width: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .button svg {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .button svg {
    width: 16px;
  }
}
@media screen and (min-width: 1920px) {
  .button svg {
    width: 18px;
    margin-left: 14px;
  }
}
@media screen and (min-width: 2560px) {
  .button svg {
    width: 25px;
    margin: 0 14px;
  }
}
.button span {
  font-weight: bold;
}
.button.blue::before {
  background-color: #1A203E;
}
.button.blue:hover {
  color: #1A203E;
}

.socialMedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: all;
}
.socialMedia a {
  color: #CB9F9F;
}
.socialMedia a.rs {
  background-color: #CB9F9F;
  color: #973D3D;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0.5rem;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0.5rem;
  pointer-events: all;
  text-decoration: none;
  transition: 0.3s ease;
}
.socialMedia a.rs:hover {
  transform: scale(1.2);
}
.socialMedia a.rs:hover i {
  transform: scale(0.86);
}
@media screen and (min-width: 1920px) {
  .socialMedia a.rs {
    width: 2.5rem;
    height: 2.5rem;
  }
  .socialMedia a.rs i {
    font-size: 1.2rem;
  }
  .socialMedia a.rs:hover {
    transform: scale(1.2);
  }
  .socialMedia a.rs:hover i {
    transform: scale(0.92);
  }
}

/*# sourceMappingURL=styles.css.map */
