@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=fallback");
@font-face {
  font-family: 'AGaramondPro';
  src: url("/squelettes/ec/v2/assets/css/fonts/AGaramondPro-Regular.woff2") format("woff2"), url("/squelettes/ec/v2/assets/css/fonts/AGaramondPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback; }

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; }

*, *:after, *:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden; }

body {
  line-height: 1;
  font-family: 'Lato', sans-serif;
  font-weight: normal;
  color: #2f3134; }

main {
  scroll-behavior: smooth;
  overflow: hidden scroll;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit; }
  main::-webkit-scrollbar {
    width: 10px; }
  main::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px; }
  main::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px; }
  main::-webkit-scrollbar-thumb:hover {
    background: #555; }
  main html:not(.mobile) main {
    background: none; }

h1 sup, h1 sub, .h1 sup, .h1 sub {
  font-size: 35%; }

h1 sup, .h1 sup {
  top: -1em; }

h2.h1 {
  font-size: xx-large !important;
  margin-bottom: 35px !important; }

.flex {
  display: flex; }

.grid {
  display: -ms-grid;
  display: grid; }

.maxWidth {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto; }

p {
  line-height: 1.2; }

a.button, a.red-button, .red-button-like {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 10px 0 10px 0;
  transition: all 400ms ease;
  margin: 5px 0; }
  a.button.red, a.red-button, .red-button-like {
    background: #da1a32;
    color: white; }
    a.button.red:hover, a.red-button:hover, .red-button-like:hover {
      background: #ac1528; }
  a.button.glow, a.glow.red-button, .glow.red-button-like {
    filter: drop-shadow(0 0 6px #e83f54); }

.component__backtop {
  position: fixed;
  z-index: 10;
  bottom: 25px;
  left: 0;
  width: 100%;
  pointer-events: none; }
  .component__backtop > div {
    position: relative; }
    .component__backtop > div > div {
      width: 70px;
      height: 70px;
      display: inline-block;
      background: #da1a32;
      border-radius: 15px 0 15px 0;
      position: relative;
      cursor: pointer;
      pointer-events: fill;
      transition: all 300ms cubic-bezier(0, 1.06, 0.82, 1.39);
      transform: translateX(-70px) translateY(100px); }
      .component__backtop > div > div svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      .component__backtop > div > div:hover, .component__backtop > div > div:active {
        background: #ac1528; }
  .component__backtop--visible > div > div {
    transform: translateX(-70px) translateY(0px); }

.component__transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999991;
  transition: all 350ms ease; }
  .component__transition--leave {
    transition-duration: 350ms;
    opacity: 0;
    pointer-events: none; }
