/* Text utility */
/* Container utility */
/* Mobile utility */
/* link hover utility */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* COLORS */
/* FONTS */
/* FONTS */
/* FONT SIZES */
/* FONT WEIGHTS */
/* CONTAINERS - ESPACEMENTS - BREAKPOINTS */
/* HEADER */
.padding-horizontal, .container, .container-full, .container-lg, .container-sm {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .padding-horizontal, .container, .container-full, .container-lg, .container-sm {
    padding-left: calc(2.5rem / 2);
    padding-right: calc(2.5rem / 2);
  }
}
@media screen and (max-width: 580px) {
  .padding-horizontal, .container, .container-full, .container-lg, .container-sm {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.padding-right {
  padding-right: calc((100vw - (83.75rem)) / 2);
}
@media screen and (max-width: 92.5rem) {
  .padding-right {
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .padding-right {
    padding-right: calc(2.5rem / 2);
  }
}
@media screen and (max-width: 580px) {
  .padding-right {
    padding-right: 2.5rem;
  }
}

.padding-left {
  padding-left: calc((100vw - (83.75rem)) / 2);
}
@media screen and (max-width: 92.5rem) {
  .padding-left {
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .padding-left {
    padding-left: calc(2.5rem / 2);
  }
}
@media screen and (max-width: 580px) {
  .padding-left {
    padding-left: 2.5rem;
  }
}

/* CONTAINER LARGEUR */
.container, .container-full, .container-lg, .container-sm {
  width: 100%;
  margin: auto;
}
.container-sm {
  max-width: calc(69.75rem + 2.5rem * 2);
}
@media screen and (max-width: 1024px) {
  .container-sm {
    max-width: 960px;
  }
}
.container-lg {
  max-width: calc(83.75rem + 2.5rem * 2);
}
@media screen and (max-width: 1024px) {
  .container-lg {
    max-width: 960px;
  }
}
.container-full {
  max-width: 100%;
}

/* CONTAINER HAUTEUR */
.section-top {
  padding-top: 5rem;
}
@media screen and (max-width: 991px) {
  .section-top {
    padding-top: 2.5rem;
  }
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  .section {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .section {
    padding-bottom: 2.5rem;
  }
}
.section.padding-top-sm {
  padding-top: 3.75rem;
}
.section.padding-bot-sm {
  padding-bottom: 3.75rem;
}
.section.padding-top-md {
  padding-top: 5rem;
}
.section.padding-bot-md {
  padding-bottom: 5rem;
}
.section.padding-top-lg {
  padding-top: 6.25rem;
}
.section.padding-bot-lg {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 991px) {
  .section.padding-top-mb-sm {
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 991px) {
  .section.padding-bot-mb-sm {
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 991px) {
  .section.padding-top-mb-md {
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .section.padding-bot-mb-md {
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .section.padding-top-mb-lg {
    padding-top: 3.75rem;
  }
}
@media screen and (max-width: 991px) {
  .section.padding-bot-mb-lg {
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 991px) {
  .section.no-padding-top {
    padding-top: 0;
  }
  .section.no-padding-bottom {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .section.no-padding-top-mb {
    padding-top: 0;
  }
  .section.no-padding-bottom-mb {
    padding-bottom: 0;
  }
}

/* Backgroud classes */
.bg-black {
  background: #2D2D2D;
}

.bg-white {
  background: #ffffff;
}

.bg-yellow {
  background: #FBBC34;
}

.bg-gray-dark {
  background: #242424;
}

.bg-gray-light {
  background: #FAFAFA;
}

.bg-primary {
  background: #2D2D2D;
}

.bg-secondary {
  background: #ffffff;
}

/* AFFICHAGE MOBILE */
.mobile {
  display: none;
}
@media screen and (max-width: 580px) {
  .mobile {
    display: block;
  }
}

.no-mobile {
  display: block;
}
@media screen and (max-width: 580px) {
  .no-mobile {
    display: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

h1,
h2,
h3 {
  font-family: "Figtree", sans-serif;
}

p {
  font-size: 1rem;
  line-height: 1.6em;
}
p > a:not(.btn) {
  text-decoration: underline;
}
p.tag {
  font-weight: 600;
  color: #2D2D2D;
  background-color: #E1BEFF;
  padding: 0.625rem 0.9375rem;
  border-radius: 10px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.625rem;
}
p.tag.text-align-center {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}

ul li,
ol li {
  font-size: 1rem;
  line-height: 1.6;
}

a,
button {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

.f--8 {
  line-height: 1.2;
}
.f--8 {
  font-size: 8px;
}
@media screen and (min-width: 569px) {
  .f--8 {
    font-size: calc(8px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--8 {
    font-size: 0.5rem;
  }
}

.f--10, p.tag {
  line-height: 1.2;
}
.f--10, p.tag {
  font-size: 10px;
}
@media screen and (min-width: 569px) {
  .f--10, p.tag {
    font-size: calc(10px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--10, p.tag {
    font-size: 0.625rem;
  }
}

.f--12 {
  line-height: 1.2;
}
.f--12 {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .f--12 {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--12 {
    font-size: 0.75rem;
  }
}

.f--13 {
  line-height: 1.2;
}
.f--13 {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .f--13 {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--13 {
    font-size: 0.8125rem;
  }
}

.f--14 {
  line-height: 1.2;
}
.f--14 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .f--14 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--14 {
    font-size: 0.875rem;
  }
}

.f--15 {
  line-height: 1.2;
}
.f--15 {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .f--15 {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--15 {
    font-size: 0.9375rem;
  }
}

.f--16 {
  line-height: 1.2;
}
.f--16 {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .f--16 {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--16 {
    font-size: 1rem;
  }
}

.f--18, .tbi__item p strong, .tbi__item p, p.mea, .textFormat h5 {
  line-height: 1.2;
}
.f--18, .tbi__item p strong, .tbi__item p, p.mea, .textFormat h5 {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .f--18, .tbi__item p strong, .tbi__item p, p.mea, .textFormat h5 {
    font-size: calc(16px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--18, .tbi__item p strong, .tbi__item p, p.mea, .textFormat h5 {
    font-size: 1.125rem;
  }
}

.f--20, .tbi__item h4, p.xl-txt .btn, .textFormat h4 {
  line-height: 1.2;
}
.f--20, .tbi__item h4, p.xl-txt .btn, .textFormat h4 {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .f--20, .tbi__item h4, p.xl-txt .btn, .textFormat h4 {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--20, .tbi__item h4, p.xl-txt .btn, .textFormat h4 {
    font-size: 1.25rem;
  }
}

.f--24, p.lg-txt, .textFormat h3 {
  line-height: 1.2;
}
.f--24, p.lg-txt, .textFormat h3 {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .f--24, p.lg-txt, .textFormat h3 {
    font-size: calc(20px + 4 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--24, p.lg-txt, .textFormat h3 {
    font-size: 1.5rem;
  }
}

.f--28 {
  line-height: 1.2;
}
.f--28 {
  font-size: 27px;
}
@media screen and (min-width: 569px) {
  .f--28 {
    font-size: calc(27px + 1 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--28 {
    font-size: 1.75rem;
  }
}

.f--30 {
  line-height: 1.2;
}
.f--30 {
  font-size: 30px;
}
@media screen and (min-width: 569px) {
  .f--30 {
    font-size: calc(30px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--30 {
    font-size: 1.875rem;
  }
}

.f--32, .tbi h2, p.xl-txt, .textFormat h2 {
  line-height: 1.2;
}
.f--32, .tbi h2, p.xl-txt, .textFormat h2 {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .f--32, .tbi h2, p.xl-txt, .textFormat h2 {
    font-size: calc(32px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--32, .tbi h2, p.xl-txt, .textFormat h2 {
    font-size: 2rem;
  }
}

.f--40 {
  line-height: 1.2;
}
.f--40 {
  font-size: 40px;
}
@media screen and (min-width: 569px) {
  .f--40 {
    font-size: calc(40px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--40 {
    font-size: 2.5rem;
  }
}

.f--42 {
  line-height: 1.2;
}
.f--42 {
  font-size: 32px;
}
@media screen and (min-width: 569px) {
  .f--42 {
    font-size: calc(32px + 10 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--42 {
    font-size: 2.625rem;
  }
}

.f--50 {
  line-height: 1.2;
}
.f--50 {
  font-size: 50px;
}
@media screen and (min-width: 569px) {
  .f--50 {
    font-size: calc(50px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--50 {
    font-size: 3.125rem;
  }
}

.f--60 {
  line-height: 1.2;
}
.f--60 {
  font-size: 60px;
}
@media screen and (min-width: 569px) {
  .f--60 {
    font-size: calc(60px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--60 {
    font-size: 3.75rem;
  }
}

.f--82 {
  line-height: 1.2;
}
.f--82 {
  font-size: 60px;
}
@media screen and (min-width: 569px) {
  .f--82 {
    font-size: calc(60px + 22 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .f--82 {
    font-size: 5.125rem;
  }
}

/* FORMAT WYSIWIG */
.textFormat h2,
.textFormat h3,
.textFormat h3,
.textFormat h4,
.textFormat h5 {
  margin-top: 1.875rem;
  color: #216562;
}
.textFormat h2 {
  font-weight: 500;
}
.textFormat h3 {
  font-weight: 500;
}
.textFormat p {
  margin-top: 1.875rem;
}
.textFormat p > a:not(.btn), .textFormat li > a:not(.btn), .textFormat h2 > a:not(.btn), .textFormat h3 > a:not(.btn), .textFormat h4 > a:not(.btn), .textFormat h5 > a:not(.btn), .textFormat h6 > a:not(.btn) {
  text-decoration: underline;
}
.textFormat p + ul,
.textFormat p + ol,
.textFormat h2 + p,
.textFormat h3 + p,
.textFormat h4 + p,
.textFormat h5 + p {
  margin-top: 1.25rem;
}
.textFormat b,
.textFormat strong {
  font-weight: 700;
}
.textFormat .media-embed-resized.align-left,
.textFormat .image_resized.align-left {
  margin-right: 1.875rem;
}
.textFormat .media-embed-resized.align-left img,
.textFormat .image_resized.align-left img {
  margin-bottom: 0.5rem;
}
.textFormat .media-embed-resized.align-right,
.textFormat .image_resized.align-right {
  margin-left: 1.875rem;
}
.textFormat .media-embed-resized.align-right img,
.textFormat .image_resized.align-right img {
  margin-bottom: 0.5rem;
}
.textFormat i,
.textFormat em {
  font-style: italic;
}
.textFormat p > a:not(.btn),
.textFormat li > a:not(.btn) {
  text-decoration: underline;
  color: #76BD22;
}
.textFormat .btn {
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 35px;
  transition: all 0.3s ease;
}
.textFormat .btn:before {
  content: "";
  position: absolute;
  left: -100px;
  top: 53%;
  transform: translateY(-50%);
  width: 13px;
  height: 12px;
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-arrow-left.svg") !important;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: all 0.3s ease;
}
.textFormat .btn:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 53%;
  transform: translateY(-50%);
  width: 13px;
  height: 12px;
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-arrow-right.svg") !important;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.textFormat .btn.btn--download.btn--green:before {
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-download-left.svg") !important;
}
.textFormat .btn.btn--download.btn--green:after {
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-download-right.svg") !important;
}
.textFormat .btn.btn--download.btn--green-light:before {
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-download-left.svg") !important;
}
.textFormat .btn.btn--download.btn--green-light:after {
  background-image: url("/themes/custom/minimal_theme/assets/images/svg/btn-download-black.svg") !important;
}
.textFormat .btn:hover {
  background-color: #2D2D2D;
  color: #ffffff;
  padding-left: 35px;
}
.textFormat .btn:hover:before {
  left: 10px;
  opacity: 1;
}
.textFormat .btn:hover:after {
  right: -100px;
  opacity: 0;
}
.textFormat ul,
.textFormat ol {
  margin-top: 1.875rem;
  list-style: none;
  margin-left: 1.875rem;
}
.textFormat ul li,
.textFormat ol li {
  margin-bottom: 0.9375rem;
  line-height: 1.2;
  position: relative;
}
.textFormat ul li::before,
.textFormat ol li::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  left: -1.25rem;
  top: 0.625rem;
  background: #216562;
  border-radius: 100%;
}
.textFormat ul li:last-child,
.textFormat ol li:last-child {
  padding-bottom: 0;
}
.textFormat ol {
  list-style: decimal;
}
.textFormat ol li:before {
  display: none;
}
.textFormat img {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.textFormat *:first-child {
  margin-top: 0;
}

p.xl-txt {
  font-weight: 500;
  font-weight: 500 !important;
  margin-bottom: 1.25rem;
}
p.xl-txt .btn {
  font-weight: 500;
}

p.lg-txt {
  font-weight: 500;
  margin-bottom: 1.25rem;
}

p.mea {
  background-color: #E1BEFF;
  padding: 1.875rem;
  border-radius: 25px;
  color: #216562 !important;
  font-weight: 500;
  max-width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

.tbi {
  background-color: #F6F6F6;
}
.tbi .paragraph--type--text-and-background-image {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.tbi__wrapper {
  position: relative;
  z-index: 2;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .tbi__wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    height: unset;
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
.tbi__container {
  max-width: 48.625rem;
  display: flex;
  gap: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .tbi__container {
    flex-direction: column;
  }
}
.tbi__left {
  max-width: 19.6875rem;
  flex: 0 0 auto;
}
.tbi__right .links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.tbi__right .links .field--name-field-tb-lien-1 {
  flex: 1;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn {
  overflow: hidden;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn .svg-first {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: all 0.3s ease;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn span {
  position: relative;
  left: -10px;
  transition: all 0.3s ease;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn .svg-second {
  position: relative;
  left: -10px;
  transition: all 0.3s ease;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn:hover {
  background-color: #2D2D2D;
  color: #ffffff;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn:hover .svg-first {
  left: 0;
  opacity: 1;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn:hover span {
  left: 0;
}
.tbi__right .links .field--name-field-tb-lien-1 .btn:hover .svg-second {
  left: 100px;
  opacity: 0;
}
.tbi__right .links .field--name-field-tb-lien-1 a {
  width: 100%;
  justify-content: center;
}
.tbi__item h4 {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.tbi__item p {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.tbi__item p strong {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.tbi__backimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tbi__backimg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .tbi__backimg:before {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.tbi__backimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tbi h2 {
  font-weight: 500;
  color: #ffffff;
}

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