/* scss/settings/_breakpoints.scss */ /* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.frame {
  margin-bottom: 6.25rem;
}

.seoText {
  margin-top: 6.25rem;
}

.frame-space-after-none {
  margin-bottom: 0;
}

.frame-space-after-small {
  margin-bottom: 3.125rem;
}

.frame-space-after-medium {
  margin-bottom: 6.25rem;
}

.frame-space-after-large {
  margin-bottom: 9.375rem;
}

body {
  scroll-behavior: smooth;
}

.no-transitions,
.no-transitions * {
  transition: none !important;
  animation: none !important;
}

/* scss/utilities/_functions.scss */
/*
    .cssClass {
        font-size: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(20), rem-calc(50));
        margin-bottom: fluid-type(rem-calc(360), rem-calc(1280), rem-calc(10), rem-calc(20));
    }

*/
/* scss/utilities/_mixins.scss */ /* xsmall = 10 (1 - 11)
small = 13 - (12-14)
default = 16 (15-18)
medium = 20 (18-26)
large = 32 (26-36)
xlarge = 40 (36 <) */
/* ---------- headers ---------- */
/* ---------- medium fonts: 20 (18-26) ---------- */
/* ---------- default fonts: 16 (15-18) ---------- */
/* ---------- small fonts: 13 - (12-14) ---------- */
/* ---------- xsmall fonts: 10 (1 - 11) ---------- */
/* ---------- button fonts ---------- */
.m-fullimage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
@media only screen and (min-width: 1440px) {
  .m-fullimage {
    margin-left: 0;
    margin-right: 0;
  }
}
.m-fullimage .frame {
  margin-bottom: 0;
}
.m-fullimage__img {
  overflow: hidden;
  position: relative;
  z-index: 0;
  grid-column: 1/span 2;
  grid-row: 1;
}
.m-fullimage__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  object-fit: cover;
}
.m-fullimage__img::after {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='3839.166' height='1335.135' viewBox='0 0 3839.166 1335.135'%3E%3Cpath id='Facette_transluzent_rot' d='M0,190V1525.135H-3839.166V190l1919.583,146.455Z' transform='translate(3839.166 -190)' fill='%23ff0027' opacity='0.7'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 146% auto;
  height: 7.5rem;
}
.m-fullimage.frame-facette .m-fullimage__img::after {
  content: "";
}
.m-fullimage__content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3.125rem;
  grid-column: 1/span 2;
  grid-row: 2;
}
@media only screen and (min-width: 768px) {
  .m-fullimage__img img {
    aspect-ratio: 3/2;
  }
}
@media only screen and (min-width: 992px) {
  .m-fullimage {
    margin-bottom: 9.375rem;
    grid-template-columns: 1fr 40%;
  }
  .m-fullimage__img {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .m-fullimage__content {
    color: #FFF;
    text-shadow: 0 3px 3px rgba(0, 0, 0, 0.6);
    padding: 0 0 0 6.25rem;
    grid-column: 1;
    grid-row: 1/span 2;
    align-self: center;
  }
}
@media only screen and (min-width: 1200px) {
  .m-fullimage h2, .m-fullimage h3, .m-fullimage h2style, .m-fullimage h3style {
    font-size: clamp(2.25rem, -2.125rem + 0.0583333333 * 100vw, 3.125rem);
  }
  .m-fullimage__img img {
    aspect-ratio: 20/9;
  }
}

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