:root {
  --blue:#0073cf;
  --red:red;
  --dred:darken(var(--red),15%);
  --green:#59b556;
  --gray:#404041;
  --font:"Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bebas:"Bebas Neue", "Impact", "Arial Narrow Bold", "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif ;
}

html, body {
  min-height: 100%;
  height: auto;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font: 400 16px var(--font);
  background: black;
}

img {
  max-width: 100%;
}

a, button {
  border-radius: 0;
  cursor: pointer;
}

button {
  all: unset;
  cursor: pointer;
  padding: 0.5em 1em;
  background: var(--blue);
  color: white;
  border-radius: 0;
  font-family: inherit;
}

sup {
  line-height: 1em;
  vertical-align: super;
  display: inline-block;
  position: static;
}

input {
  border-radius: 0;
}

iframe {
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

* ::-moz-selection {
  color: #fff;
  background-color: var(--red);
}
* ::-moz-selection * {
  color: #fff;
}
* ::-moz-selection {
  color: #fff;
  background-color: var(--red);
}
* ::selection {
  color: #fff;
  background-color: var(--red);
}
* ::-moz-selection * {
  color: #fff;
}
* ::selection * {
  color: #fff;
}

.container {
  max-width: 1200px;
  width: 100% !important;
}

p {
  font: 400 clamp(16px, 1.71875vw, 22px)/1em var(--font);
  color: white;
  text-align: center;
}

.header {
  display: block;
  width: 100%;
}

.content {
  background: white;
  padding: clamp(35px, 3.90625vw, 50px) clamp(28px, 3.125vw, 40px);
}
.content h1 {
  font: 500 clamp(24.5px, 2.734375vw, 35px) var(--font);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-wrap: balance;
  text-align: center;
}
.content h1 strong {
  letter-spacing: 0;
  display: block;
  font: 400 clamp(61.6px, 6.875vw, 88px)/1em var(--bebas);
  color: var(--gray);
}
.content h1 strong span {
  color: var(--green);
}
.content .propositions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 3.125vw, 40px);
}
.content .propositions .prop {
  flex: 1 1 calc(33.333% - clamp(28px, 3.125vw, 40px));
  max-width: clamp(294px, 32.8125vw, 420px);
  min-width: 250px;
  box-sizing: border-box;
  border-radius: clamp(21px, 2.34375vw, 30px);
  padding: clamp(28px, 3.125vw, 40px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.content .propositions .prop div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(24.5px, 2.734375vw, 35px);
}
.content .propositions .prop div h2 {
  flex: 1;
  color: var(--green);
  font: 400 clamp(49px, 5.46875vw, 70px)/1em var(--bebas);
  margin: 0;
}
.content .propositions .prop div img {
  max-width: clamp(84px, 9.375vw, 120px);
  max-height: clamp(70px, 7.8125vw, 100px);
  max-width: 30%;
}
.content .propositions .prop p {
  font: 400 clamp(16px, 1.484375vw, 19px) var(--font);
  color: var(--gray);
  margin: 0;
}

footer {
  background: var(--gray);
  padding: clamp(35px, 3.90625vw, 50px);
  text-align: center;
}
footer h2 {
  color: white;
  font: 500 clamp(24.5px, 2.734375vw, 35px) var(--font);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.15em;
}
footer h2 strong {
  display: block;
  font: 400 clamp(45.5px, 5.078125vw, 65px)/1em var(--bebas);
  letter-spacing: 0;
}
footer h2 strong span {
  color: var(--green);
}
footer img {
  display: block;
  max-width: 400px;
  margin: 0 auto clamp(35px, 3.90625vw, 50px) auto;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
footer .dates {
  color: white;
  font: 500 clamp(21.7px, 2.421875vw, 31px) var(--font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
footer .dates span {
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
}
footer .disclaimer {
  color: #bdbdbd;
  font-size: 13px;
}

@media (max-width: 767px) {
  .content h1 strong {
    font-size: 50px;
  }
}/*# sourceMappingURL=style.css.map */