@charset "UTF-8";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

main {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth !important;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  scroll-behavior: smooth !important;
}

header {
  width: 100%;
  display: block;
  position: relative;
}

header a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #FF8500;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  color: #000;
}

hr {
  display: block;
  width: 100px;
  margin: 20px 0px;
  border: 1px solid #FF8500;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("../css/fonts/HKGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "HK Grotesk";
  src: url("../css/fonts/HKGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "HK Grotesk";
  src: url("../css/fonts/HKGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "HK Grotesk";
  src: url("../css/fonts/HKGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "HK Grotesk";
  src: url("../css/fonts/HKGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
}
html {
  font-family: "HK Grotesk", sans-serif;
  line-height: 1.6;
  font-weight: 300;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.25;
  font-display: swap;
  font-family: "HK Grotesk", sans-serif;
}

p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

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

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.btn {
  padding: 12px 30px;
  color: #fff;
  background: #FF8500;
  font-size: 14px;
  transition: all 0.2s ease-in-out 0s;
  margin-top: 2rem;
  display: inline-block;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  border: 1px solid #FF8500;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  background-color: transparent;
  color: #FF8500;
  border: 1px solid #FF8500;
}
.btn:hover {
  transform: scale(1.03);
}

.button--arrow {
  position: relative;
  display: inline-flex;
  height: 50px;
  padding: 0;
  border: none;
  outline: none;
  overflow: visible;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px 15px 40px;
  background-color: transparent;
  border-radius: 30px;
  top: 0px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.button--arrow:hover {
  color: #FF8500;
  top: 3px;
  transform: translate3d(3px, 5px, 0) scale(1);
}
.button--arrow:hover.button--arrow:before {
  transform: translate3d(0px, 0px, 0) scale(1);
}
.button--arrow:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  transform: translate3d(3px, 5px, 0) scale(1);
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
}
.button--arrow:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}

.button--black {
  background-color: black;
  color: white;
}
.button--black:hover {
  color: white;
}
.button--black:before {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}

.button--primary {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: white;
}
.button--primary:hover {
  color: white;
}
.button--primary:before {
  background: #fff;
}

.btn--primary {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: white;
  border-radius: 50px;
}
.btn--primary:hover {
  color: white;
}
.btn--primary:before {
  background: #fff;
}

.button--white {
  background-color: white;
  color: black;
}
.button--white:hover {
  color: black;
}
.button--white:before {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}

.button--small {
  font-size: 14px;
  padding: 15px 20px 15px 30px;
}

.button__text, .button__icon {
  display: inline-flex;
  align-items: center;
  padding: 0;
  height: 100%;
}

.button__icon {
  padding: 0 10px;
}

.link--arrow {
  position: relative;
}
.link--arrow:before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/arrow-primary.svg");
}

.icon--service {
  max-width: autos;
  max-height: 80px;
}

.heading {
  font-size: 24px;
  color: #FFCE00;
  padding-bottom: 40px;
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  z-index: 10;
  position: relative;
}
.heading--center {
  text-align: center;
}
.heading--left {
  text-align: left;
  margin: 0;
}
.heading__head {
  text-transform: uppercase;
  color: #FF8500;
  font-size: 16px;
  max-width: 400px;
  position: relative;
  line-height: 1.4;
  margin: 0 auto;
  display: block;
}
.heading__icon {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}
.heading__title {
  font-size: 42px;
  margin-top: 0;
  position: relative;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.heading__title em {
  display: inline-block;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading__title span {
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heading__subtitle {
  font-size: 20px;
  line-height: 1.3;
  color: #2F2F2F;
  margin: 20px 0px;
  font-weight: 400;
}
.heading__desc {
  color: #000;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  margin: 20px 0px;
}
.heading__desc p {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}
.heading__desc p + p {
  margin-top: 20px;
}

.section__intro {
  max-width: 500px;
}
.section__title {
  position: relative;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 700;
  color: #FF8500;
}
.section__title em {
  color: #FF8500;
  font-style: normal;
  font-weight: 700;
  display: block;
}
.section__subtitle {
  font-size: 18px;
  line-height: 2;
  margin: 20px 0px;
  font-weight: 500;
}
.section__desc {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.section__desc p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.section__desc p + p {
  margin-top: 20px;
}
.section__desc--center {
  text-align: center;
}
.section__cta {
  padding: 20px 0px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
.section__divider {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.title--footer {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--center {
  text-align: center;
}
.title--white {
  color: #fff;
}
.title--black {
  color: #000;
}
.title--uppercase {
  text-transform: uppercase;
}
.title--gradient {
  display: inline-block;
  font-style: normal;
  vertical-align: middle;
  margin: 0 auto;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .title--section {
    display: none;
  }
  .title--section-reversed {
    display: none;
  }
}
@media (max-width: 768px) {
  .heading__title {
    font-size: 32px;
  }
}
@media (max-width: 550px) {
  .heading {
    font-size: 18px;
    color: #000;
    padding: 25px 0px;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  .heading--section {
    color: #FF8500;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
  }
  .heading__title {
    font-size: 21px;
    margin-top: 0;
    padding: 20px 0px;
    position: relative;
    text-align: center;
  }
  .heading__subtitle {
    font-size: 20px;
  }
  .heading__divider {
    border-top: 2px solid #FF8500;
    width: 200px;
    margin: 15px auto;
  }
}
@media (max-width: 450px) {
  .heading__title {
    font-size: 28px;
  }
  .section__title {
    font-size: 28px;
  }
  .section__desc {
    font-size: 16px;
  }
}
.faq__list {
  max-width: 100%;
  width: 60%;
}

.faq__item {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
.faq__item:last-child {
  margin-bottom: 0;
}

.faq__text {
  width: 35%;
  text-align: left;
}
.faq__text .title {
  color: #000;
  margin-bottom: 1rem;
}
.faq__text .desc p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq__list {
  width: 60%;
}

.faq__title, .faq__content {
  padding: 20px;
  line-height: 1.6;
}
.faq__title {
  position: relative;
  list-style: none;
  padding: 20px 30px;
  outline: 0;
  display: flex;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: color 300ms ease-in-out;
}
.faq__title span {
  color: #FF8500;
  padding-right: 20px;
  font-weight: 700;
}
[open] > .faq__title {
  color: #FF8500;
}
.faq__title::-webkit-details-marker {
  display: none;
}
.faq__title:before, .faq__title:after {
  content: "";
  position: absolute;
}
.faq__title:before {
  right: 18px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
  background: #FF8500;
}
.faq__title:after {
  right: 26px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  width: 2px;
  margin-left: -1px;
  background: #FF8500;
  transition: all 300ms ease-in-out;
}
[open] .faq__title:after {
  opacity: 0;
  transform: translateY(25%);
}
.faq__content {
  padding-top: 0;
  padding-left: 40px;
  padding-bottom: 50px;
  max-width: 1000px;
}
.faq__content p {
  font-size: 14px;
  margin-bottom: 10px;
}
.faq__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .faq__text {
    width: 100%;
    margin-bottom: 4rem;
  }
  .faq__list {
    width: 100%;
  }
}
.noscroll {
  overflow: hidden;
}

main .column.left,
main .column.right {
  background: #fcfcfc;
  display: block;
  position: relative;
  font-size: 1rem;
  width: 100%;
  min-height: 0;
  vertical-align: top;
}

@media (min-width: 641px) {
  main .column.left,
  main .column.right {
    display: inline-block;
    width: 50%;
    min-height: 100vh;
  }
  main .column.left {
    position: fixed;
  }
  main .column.right {
    margin-left: 50%;
  }
}
.video-banner {
  display: block;
}

@media (min-width: 641px) {
  .video-banner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
  }
}
.video-banner .video-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.video-banner-headline {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.25em;
  font-weight: 900;
  line-height: 1em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

@media (min-width: 641px) {
  .video-banner-headline {
    left: 2em;
    bottom: 2.75em;
    font-size: 1.5em;
    line-height: 1.5em;
  }
}
.video-banner-icon-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 2.5em;
  height: 2.5em;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1);
  -o-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
}

@media (min-width: 641px) {
  .video-banner-icon-play {
    width: 4.5em;
    height: 4.5em;
  }
}
.video-banner-icon-play:hover {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -moz-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.2);
  -o-transform: translateX(-50%) translateY(-50%) scale(1.2);
  transform: translateX(-50%) translateY(-50%) scale(1.2);
}

.content {
  display: block;
  min-height: 100vh;
  max-width: 40rem;
  margin: 2.5rem auto;
  padding: 1.5rem;
}

@media (min-width: 641px) {
  .content {
    margin: 5.75rem auto;
    padding: 2.5rem;
  }
}
.content h1,
.content h2,
.content p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5em;
  color: #0D013D;
}

.content h1 {
  font-size: 3.25em;
  font-weight: 200;
  line-height: 1em;
  margin: 0 0 0.5rem 0;
}

@media (min-width: 641px) {
  .content h1 {
    font-size: 4em;
  }
}
.content h2 {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.155em;
  margin-top: 3em;
}

/* buttons */
.content .button-group {
  margin-top: 1em;
}

.content .button {
  display: inline-block;
  padding: 1em 2em;
  min-width: 8em;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  border-radius: 1.5em;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  /* button theme - secondary is default */
  background: #f0f0f0;
  color: #2B2B2B;
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
}

/* video thumbnail grid */
.content .video-thumb-grid {
  position: relative;
  font-size: 0; /* collapse the white-space */
  width: calc(100% + 2rem);
  margin: 0 -1rem;
}

.content .video-thumb {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  /* calculate the width, gutters, and aspect ratio */
  width: calc((100% - 4rem) / 2);
  height: 0;
  padding-top: calc((100% - 4rem) / 2 * 0.5625); /* 16:9 calc */
  margin: 1rem 1rem; /* gutters */
  overflow: hidden; /* clipping */
  position: relative; /* enable positioning for inner content */
  font-size: 1rem; /* reset the font size */
  -webkit-transform: scale(1);
  transform: scale(1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-out 0.05s;
  transition: all 0.2s ease-out 0.05s;
}

.content .video-thumb:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(13, 1, 61, 0.35);
}

.content .video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  /* position inside the 16:9 container */
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /* clipping for source images that are letterboxed */
  object-fit: cover;
  object-position: 50% 50%;
  background: #2b2b2b;
}

/* Video Modal
-----------------------------------------*/
.video-modal,
.video-modal .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3000;
}

.video-modal {
  overflow: hidden;
  position: fixed;
  opacity: 0;
  -webkit-transform: translate(500%, 0%);
  transform: translate(500%, 0%);
  -webkit-transition: -webkit-transform 0s linear 0s;
  transition: transform 0s linear 0s;
  /* using flexbox for vertical centering */
  /* Flexbox display */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  /* Vertical alignment */
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.video-modal .overlay {
  z-index: 0;
  background: rgba(0, 0, 0, 0.82); /* overlay color */
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0.05s;
  transition: opacity 0.2s ease-out 0.05s;
}

.video-modal-content {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  margin: 0 auto;
  overflow-y: visible;
  background: #000;
  width: 80%;
  height: 0;
  padding-top: calc((100% - 12em) * 0.5625); /* 16:9 calc */
}

/* Scaling to fit within the current Viewport size:
   When viewport aspect ratio is greater than 16:9
   work off the height instead of the width for calc */
@media (min-aspect-ratio: 16/9) {
  .video-modal-content {
    width: 0;
    height: calc(100vh - 10em);
    padding-top: 0;
    padding-left: calc((100vh - 10em) * 1.7778); /* 16:9 calc */
  }
}
/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
  .video-modal-content {
    width: calc(100% - 1em);
    padding-top: calc((100% - 1em) * 0.5625); /* 16:9 calc */
  }
}
/* modal close button */
.close-video-modal {
  display: block;
  position: absolute;
  left: 0;
  top: -40px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

/* set the iframe element to stretch to fit its parent element */
iframe#youtube {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal:
   add class to the body to reveal */
.show-video-modal .video-modal {
  opacity: 1;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}

.show-video-modal .video-modal .overlay {
  opacity: 1;
}

.show-video-modal .video-modal-content {
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
}

.slick-track, .slick-list {
  height: 100%;
}

.slick-dots {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  text-align: center;
  width: 100%;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
}
.slick-dots button {
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  text-indent: -999999px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.45;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots .slick-active button {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #fff;
}

.contact-block {
  position: relative;
  display: flex;
  background-color: #F4F7F9;
  padding: 40px;
  border-radius: 50px;
}

.contact-block__form {
  position: relative;
  width: 60%;
  padding: 40px 40px 0px 40px;
}

.contact-block__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1;
}
.contact-block__title em {
  background: black;
  -webkit-background-clip: text;
  -webkit-text-stroke: 3px transparent;
  color: #F4F7F9;
  font-style: normal;
  padding: 0px 2px;
}

.contact-block__testi {
  width: 40%;
  max-width: 350px;
  margin-left: auto;
}

/* Slider */
.testi-slider__item {
  position: relative;
  display: block;
  background-color: #000;
  border-radius: 50px;
  margin-left: auto;
  padding: 40px 40px 80px 40px;
  background-size: cover;
  background-position: center;
}
.testi-slider__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.9);
  z-index: 0;
  border-radius: inherit;
}

.testi-slider__content {
  display: grid;
  color: white;
  position: relative;
  z-index: 2;
  height: 400px;
}

.testi-slider__logo {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.testi-slider__text {
  margin: 20px 0 40px 0;
  font-size: 14px;
}

.testi-slider__card {
  display: grid;
  grid-template-columns: 70px 1fr;
}

.testi-slider__img {
  height: 60px;
  width: 60px;
  position: relative;
  border-radius: 50%;
}
.testi-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.testi-slider__name {
  padding-left: 10px;
}
.testi-slider__name span {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  display: block;
}
.testi-slider__name p {
  line-height: 1.2;
  font-style: italic;
  font-size: 12px;
}

/* FORM */
.contact-block__form .wpcf7-text, .wpcf7-number {
  border: none;
  border-bottom: 1px solid #747474;
  padding: 10px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 0px;
  background-color: transparent;
  color: black;
  background-size: auto;
  padding-left: 0px;
  font-weight: 500;
  font-size: 14px;
  opacity: 1;
}
.contact-block__form .wpcf7-text:focus, .wpcf7-number:focus {
  border-color: #FF8500;
}
.contact-block__form .wpcf7-text:focus::placeholder, .wpcf7-number:focus::placeholder {
  color: black;
  opacity: 0.5;
  font-size: 14px;
}
.contact-block__form .wpcf7-text::placeholder, .wpcf7-number::placeholder {
  font-family: "Montserrat", sans-serif;
  color: black;
  margin-left: 10px;
  font-weight: 500;
  font-size: 14px;
}

.contact-block__form .wpcf7-textarea {
  border: none;
  border-bottom: 1px solid #747474;
  color: #000;
  border-radius: 0px;
  opacity: 1;
  padding-left: 0;
  font-weight: 500;
  font-size: 14px;
}
.contact-block__form .wpcf7-textarea:focus {
  border-color: #FF8500;
}
.contact-block__form .wpcf7-textarea:focus::placeholder {
  color: #000;
  opacity: 0.5;
  font-size: 14px;
}
.contact-block__form .wpcf7-textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-left: 10px;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .contact-block {
    flex-wrap: wrap;
  }
  .contact-block__form {
    width: 100%;
  }
  .contact-block__testi {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-block__form {
    padding: 20px;
  }
}
@media (max-width: 600px) {
  .contact-block {
    padding: 20px;
  }
  .contact-block__title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }
  .contact-block__form .wpcf7-submit {
    display: block;
    width: 100%;
  }
}
.partners {
  background-color: black;
}
.partners--home {
  padding-bottom: 80px;
}
.partners__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  grid-gap: 4rem;
}
.partners__item {
  display: grid;
  opacity: 0.9;
}
.partners__logo {
  height: 100px;
  width: 100%;
  object-fit: contain;
}
.partners__cta {
  margin-top: 80px;
  text-align: center;
}

.partners__list.partners-slider {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 0;
}
.partners__list .partners__item {
  flex: 0 0 auto;
  width: 245px;
  padding-left: 16px;
  margin: 0 0 16px;
}
.partners__list .partners__img {
  padding: 16px;
  height: 145px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.partners__list .partners__img img {
  max-height: 100%;
  transform: scale(0.75);
}

.cases-intro {
  position: relative;
  z-index: 99;
}

.cases-intro__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 10%;
}

.cases-intro__content {
  color: white;
  width: 25%;
  z-index: 100;
}

.cases-intro__title {
  font-size: 48px;
  font-weight: 700;
}

.cases-intro__text {
  margin: 25px 0;
}
.cases-intro__text p {
  font-size: 14px;
}

.cases-intro__slider {
  position: relative;
  width: 70%;
  padding-left: 10%;
}

.cases-intro-components {
  position: absolute;
  top: -200px;
  left: -250px;
  height: 500px;
  width: 800px;
  background-image: url("../img/shape-line.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 99;
}

/* SLIDER */
.slider-case__illustration {
  position: relative;
  width: 100%;
  height: 80%;
  min-height: 500px;
  border-radius: 20px;
  display: block;
}
.slider-case__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.slider-case__content {
  color: white;
  padding: 30px 10px;
}

.slider-case__title {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
}

.slider-case__button {
  font-size: 16px;
  color: white;
}
.slider-case__button:hover {
  color: #FF8500;
}

.slider-case .slick-slide {
  margin: 0 10px;
}

.slider-case .slick-list {
  margin: 0 -10px !important;
  padding-left: 0 !important;
}

.slider-case .slick-dots {
  bottom: -30px;
  left: 50%;
  width: auto;
}
.slider-case .slick-dots button {
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  text-indent: -999999px;
  width: 15px;
  height: 7px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.45;
}
.slider-case .slick-dots button:focus {
  outline: none;
}
.slider-case .slick-dots .slick-active button {
  opacity: 1;
  width: 15px;
  height: 7px;
  background-color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 1024px) {
  .cases-intro__container {
    padding: 0 10%;
  }
  .cases-intro__content {
    width: 80%;
    margin-left: auto;
    text-align: right;
    margin-bottom: 40px;
  }
  .cases-intro__slider {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 550px) {
  .cases-intro-components {
    top: -140px;
  }
}
#cases .slick-dots {
  bottom: -10%;
}
#cases .slick-dots button {
  background-color: #FF8500;
  border: 1px solid #FF8500;
}
#cases .slick-dots .slick-active button {
  background-color: #FF8500;
  border: 1px solid #FF8500;
}

.case-studies__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin-top: 2rem;
}

.case-studies__item {
  position: relative;
  background: linear-gradient(328deg, #ff8500 20%, #ffce00 100%);
  border-radius: 25px;
  padding: 6rem 2rem 2rem 2rem;
}

.case-studies__logo {
  position: absolute;
  top: -2rem;
  left: 2rem;
  height: 6rem;
  width: 6rem;
  background-color: #fff;
  border-radius: 50%;
  padding: 1rem;
  border: 4px solid #F4F7F9;
}
.case-studies__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.case-studies__perks {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.case-studies__perks li {
  font-size: 0.8rem;
  text-align: center;
  padding: 0 0.2rem;
  width: 32%;
  color: #fff;
  border-right: 1px solid #fff;
  line-height: 1.2;
}
.case-studies__perks li:last-child {
  border: none;
}
.case-studies__perks li span {
  font-size: 1.6rem;
  font-weight: 700;
  max-width: 100%;
  display: block;
  margin-bottom: 0.2rem;
}

.case-studies__text {
  color: #fff;
}

.case-studies__link a {
  border: 1px solid #fff;
  color: white;
  padding: 0.5rem 2rem;
  margin-top: 2rem;
  display: inline-block;
}
.case-studies__link a:hover {
  background-color: #fff;
  color: #FF8500;
}

@media (max-width: 1024px) {
  .case-studies__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .case-carousel__item {
    grid-template-columns: 1fr !important;
  }
  .case-carousel__illustration {
    height: 21rem !important;
    border-radius: 0px 0px 20px 20px !important;
  }
  .case-carousel__illustration img {
    border-radius: 0px 0px 20px 20px !important;
  }
}
#reviews .wp-gr {
  text-align: center !important;
}

#reviews .heading__container {
  margin-bottom: 2rem;
}
#reviews .heading__container .heading {
  padding-bottom: 20px;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reviews__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  background-color: #F4F7F9;
}

.reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.reviews__header > img {
  height: auto;
  width: 10rem;
  object-fit: contain;
}

.intro {
  padding-left: 0;
}

.name {
  color: #000;
  font-weight: 700;
}

.date {
  color: #747474;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.4rem;
}

.rate img {
  height: 1rem;
  width: 1rem;
  object-fit: contain;
}

.reviews__content {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .reviews__list {
    grid-template-columns: 1fr;
  }
  .reviews__item {
    max-width: 700px;
    margin: 0 auto;
  }
}
.features-inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.features-nav {
  width: 40%;
}

.features-nav__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.features-nav__link {
  position: relative;
  display: block;
  padding: 1rem 0rem;
  color: #fff;
  font-weight: 300;
  cursor: pointer;
  border-radius: 10px;
  font-size: 2.4rem;
  opacity: 0.5;
}
.features-nav__link:hover {
  color: white;
}

.features-nav__link.active {
  color: #fff;
  opacity: 1;
}
.features-nav__link.active:hover {
  color: #fff !important;
}

/* CONTENT */
.features-content {
  display: flex;
  align-items: start;
}

.features-content__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.features-content__block {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  max-width: 600px;
}

.features-content__block.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.features-content__text {
  color: white;
}
.features-content__text p {
  font-size: 16px;
}
.features-content__text p + p {
  margin-top: 1rem;
}
.features-content__text ul {
  list-style: disc;
  margin-left: 1rem;
}
.features-content__text li {
  margin: 1rem 0;
  line-height: 1.5;
}

/* BACKGROUND */
.features-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/shape-4.svg");
  background-size: auto 120%;
  background-repeat: no-repeat;
  background-position: 180% 10%;
  filter: blur(50px);
  opacity: 1;
  z-index: -1;
}

@media (max-width: 1024px) {
  .features-inner {
    flex-direction: column;
  }
  .features-nav {
    width: 100%;
  }
  .features-content {
    width: 100%;
  }
  .features-nav__link {
    padding: 0;
    font-weight: 400;
    font-size: 1.8rem;
  }
  .features-bg {
    background-size: auto 60%;
    background-position: 150% 80%;
  }
}
.people__illustration {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 18/7;
}
.people__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.people__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: -5rem;
  align-items: flex-end;
}
.people__inner > * {
  color: #fff;
}

.people__text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 0rem 2rem 7rem 2rem;
}

.people__head {
  font-size: 24px;
}

.people__title {
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
}

.people__content {
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.people__desc {
  font-size: 18px;
}

@media (max-width: 1024px) {
  .people__inner {
    grid-template-columns: 1fr;
  }
  .people__illustration {
    aspect-ratio: 12/7;
  }
  .people__text {
    padding: 0rem 2rem 3rem 2rem;
  }
  .people__title {
    font-size: 3.2rem;
  }
  .people__content {
    padding: 0 2rem;
  }
}
/* Résultats */
.results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}

.results__item {
  position: relative;
  padding: 35px;
  border-radius: 48px;
  text-align: center;
  background-color: #F4F7F9;
}

.results__illustration {
  height: 200px;
  position: relative;
  border-radius: 48px;
}
.results__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.results__card {
  position: relative;
  text-align: center;
  background-color: white;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 25px;
  margin-top: -50%;
  margin-bottom: 20px;
}
.results__card span {
  display: inline;
  border-radius: 25px;
  font-size: 48px;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.results__title {
  color: #747474;
  font-weight: 400;
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .results__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 550px) {
  .results__card span {
    font-size: 30px;
  }
}
.gallery {
  position: relative;
  display: grid;
  width: 90%;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  min-height: 280px;
}
.gallery:before {
  content: "";
  display: block;
  padding-bottom: 65%;
}

.gallery__illustration {
  position: relative;
  border-radius: 20px;
}
.gallery__illustration:nth-child(1) {
  z-index: 3;
  grid-area: 1/1/12/8;
}
.gallery__illustration:nth-child(2) {
  grid-area: 2/8/11/11;
}

.gallery__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.gallery-components {
  position: absolute;
  top: -6rem;
  right: -10rem;
  height: 35rem;
  width: 55rem;
  background-image: url("../img/shape-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  transform: scaleX(-1) rotate(10deg);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 40px;
    width: 100%;
  }
  .gallery:before {
    padding-bottom: 0;
  }
  .gallery__illustration {
    height: 200px;
  }
}
.primary-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: background-color 0.5s;
}
.primary-header.active .logo-white {
  display: none;
}
.primary-header.active .logo-primary {
  display: block;
}

.primary-header .logo-primary {
  display: none;
}

header.active {
  background-color: #fff;
  box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.1);
}
header.active .nav-link {
  color: #747474;
}

header.active .logo,
header.active .menu-item {
  color: #313131;
}

header.active .menu-item a:hover {
  color: #808080;
}

.nav-burger {
  display: none;
  visibility: hidden;
}

.screen-darken {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  position: fixed;
}

/* Hero Demo Content */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero__title {
  font-size: 80px;
  color: black;
  font-weight: 700;
  max-width: 900px;
  line-height: 1;
}
.hero__title span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px black;
  -webkit-background-clip: text;
}
.hero__main {
  font-size: 20px;
  font-weight: 400;
  color: #FF8500;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  max-width: 600px;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__cta {
  margin-top: 40px;
}
.hero__cta a + a {
  margin-left: 30px;
}

.hero-components {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url("../img/shape-2.svg"), url("../img/shape-1.svg");
  background-position: 0% 100%, 100% 50%;
  background-size: 50%, 40%;
  background-repeat: no-repeat;
  filter: blur(50px);
}

.demo-content {
  width: 100%;
  height: 200vh;
  background-color: #fff;
}

/* Hero end*/
/* MENU BURGER */
.nav-burger {
  position: relative;
  text-align: right;
  display: none;
  z-index: 1022;
  cursor: pointer;
}

.nav-burger div {
  width: 30px;
  height: 3px;
  margin: 5px;
  background: #FF8500;
  transition: all 0.5s ease-in;
}

.nav-burger.active .line1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-burger.active .line2 {
  opacity: 0;
}

.nav-burger.active .line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
/* MOBILE MENU */
.action--close {
  position: fixed;
  z-index: 100;
  top: 40px;
  right: 20px;
}

.nav-back {
  display: none;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}

.no-scroll {
  overflow: hidden;
}

.nav-logo {
  opacity: 0;
  display: none;
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(1, 1, 1, 0.1);
  transition: right 0.5s ease-in-out;
  background-color: white;
  padding: 20px 0px;
}
.nav-logo.active {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.5s;
}
.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-item.button.button--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .navbar {
    justify-content: space-between;
  }
  .navbar .nav-list {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    background: #fff;
    padding: 100px 0px 0px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    transition: right 0.5s ease-in;
  }
  .navbar .nav-list.active {
    right: 0;
    width: 100%;
  }
  .navbar .nav-list .button {
    background-color: transparent;
  }
  .navbar .nav-list .button a {
    font-weight: 700;
    color: #000;
  }
  .nav-list .nav-item {
    border-bottom: 1px solid #eaebf0;
  }
  .nav-list .nav-link {
    padding: 1.8rem 2.7rem;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
  }
  .nav-list .button {
    display: block !important;
    width: 95%;
    text-align: center;
    margin: 0.4rem auto;
  }
  .nav-list .button:nth-child(1) {
    margin-top: 20px;
  }
  .nav-list .button.button--mobile {
    display: block;
    background: #000;
  }
  .nav-list .button .nav-link {
    color: white !important;
  }
  .nav-burger {
    display: block;
    visibility: visible;
  }
  .nav-logo.active {
    opacity: 1;
    display: block;
  }
  .nav-back.active {
    display: block;
    opacity: 1;
    z-index: 99;
    position: absolute;
    left: 10%;
    top: 40px;
    transform: rotate(180deg);
    cursor: pointer;
  }
  .nav-back.active img {
    height: auto;
    width: 50px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }
  .hero-components {
    height: 70vh;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__cta a {
    display: block;
    max-width: 300px;
    margin-left: 0 !important;
  }
  .hero__cta a + a {
    margin-top: 20px;
  }
}
@media (max-width: 550px) {
  .hero__content {
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__cta a {
    margin: 0 auto;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .hero {
    height: 100vh;
  }
}
.navbar {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  transition: height 0.25s;
  padding: 20px 0;
}
.navbar .logo img {
  height: 3rem;
  width: auto;
}

.nav-list {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10%;
  float: right;
  width: 100%;
}

.nav-white .nav-link {
  color: white;
}
.nav-white .nav-link:hover {
  color: black;
}

.nav-white .nav-item.button {
  background: white;
}
.nav-white .nav-item.button .nav-link {
  color: #FF8500;
}

.active .nav-white .nav-item.button {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}
.active .nav-white .nav-item.button .nav-link {
  color: #fff;
}

.nav-link {
  letter-spacing: 3px;
  transition: color 0.25s;
  color: black;
  display: block;
  padding: 1.3rem 1.2rem;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #FF8500;
}
.nav-link:hover > body {
  background-color: black;
}

.nav-item.button {
  display: inline-block;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 2rem;
  transition: background-color 0.25s;
  margin-left: auto;
  transition: all 0.2s ease-in-out;
}
.nav-item.button a {
  color: white;
  font-weight: 700;
  padding: 15px 40px;
}
.nav-item.button:hover {
  transform: scale(1.03);
}

/* STICKY MENU */
header.active .nav-link {
  color: black;
}
header.active .nav-link:hover {
  color: #FF8500;
}
header.active .nav-item.button .nav-link {
  color: white !important;
}

/* MEGA MENU */
.mega-menu {
  display: none;
  position: fixed;
  right: 5%;
  background-color: white;
  min-width: 1300px;
  border-radius: 0 0 20px 20px;
}

.mega-menu__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 10px;
  padding: 20px;
}

.mega-menu__block {
  padding: 30px 15px;
  border-radius: 20px;
}
.mega-menu__block:nth-child(even) {
  background-color: #F4F7F9;
}

.mega-menu__title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
  padding-left: 15px;
}

.mega-menu__link {
  color: black;
  display: grid;
  grid-template-columns: 30px 1fr;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 0.9rem;
}
.mega-menu__link:hover {
  background-color: rgba(1, 38, 53, 0.1);
}

.mega-menu__link img {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 1;
}

.mega-menu__link span {
  line-height: 15px;
}

.mega-menu__footer {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  padding: 20px 40px;
  color: white;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-menu__footer p {
  font-size: 16px;
}

.mega-drop-down:hover .mega-menu {
  display: block;
}

.link {
  color: #000;
  font-weight: 600;
  font-size: 16px;
}
.link:hover {
  color: #FF8500;
}

.link--white {
  color: white;
}
.link--white:hover {
  color: #000;
}

@media (max-width: 1300px) {
  .mega-menu {
    min-width: 1024px;
    right: 0;
  }
}
@media (max-width: 1024px) {
  .mega-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    min-width: 100%;
    background: #fff;
    padding: 0;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    transition: right 0.5s ease-in;
    box-shadow: none;
  }
  .mega-menu.active {
    right: 0;
    width: 100%;
    overflow-y: scroll;
    display: block;
  }
  .mega-menu__container {
    box-shadow: none;
    grid-template-columns: 1fr;
    padding: 0;
    padding: 100px 5% 200px;
  }
  .mega-menu__block {
    border-right: none;
  }
  .mega-menu__link {
    line-height: 2;
    display: block;
    font-size: 1rem;
    padding: 5px 15px !important;
  }
  .mega-menu__footer {
    display: none;
  }
  .navbar .nav-list .button {
    margin-top: 40px;
  }
  .navbar .nav-list .button:last-child {
    margin-top: 10px;
  }
  .nav-white .nav-link {
    color: black;
  }
  .nav-white .nav-link:hover {
    color: black;
  }
  .nav-white .nav-item.button {
    background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  }
  .nav-white .nav-item.button:last-child {
    background: black;
  }
  .nav-white .nav-item.button .nav-link {
    color: #FF8500;
  }
  .active .nav-white .nav-item.button {
    background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  }
  .active .nav-white .nav-item.button:last-child {
    background: black;
  }
  .active .nav-white .nav-item.button .nav-link {
    color: #000;
  }
}
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--black {
  background-color: #000;
  z-index: 2;
}
.section--grey {
  background-color: #F4F7F9;
  z-index: 2;
}

.container {
  width: 82.1428571429%;
  margin: 0 auto;
  position: relative;
  height: 100%;
  z-index: 2;
  max-width: 1440px;
}
.container--post {
  width: min(100% - 15px, 1080px);
}

.column {
  display: flex;
  flex-wrap: wrap;
}
.column--free {
  display: flex;
}
.column--spaced {
  justify-content: space-between;
}
.column--centered {
  align-items: center;
}
.column--reversed {
  flex-direction: row-reverse;
}
.column--equal {
  align-items: stretch;
}
.column--centered-w {
  justify-content: center;
}
.column--half {
  width: 45%;
}
.column--third {
  width: 30%;
}
.column--fourth {
  width: 23%;
}

.list--inline li {
  display: inline-block;
}

.breadcrumbs {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}
.hero-inside {
  padding: 100px 0;
}

.hero-inside__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-inside--left, .hero-inside--right {
  width: 50%;
}

.hero-inside--right {
  height: 70vh;
}

.hero-inside__content {
  padding: 5rem 0;
  padding-right: 2rem;
}

.hero-inside__head {
  color: #FF8500;
  font-size: 18px;
}
.hero-inside__head p {
  font-size: 18px;
}

.hero-inside__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}
.hero-inside__title em {
  display: inline;
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px black;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-inside__card {
  position: relative;
  height: 100%;
  display: grid;
}
.hero-inside__card:before {
  content: "";
  background-color: #F4F7F9;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80%;
  border-radius: 20px;
  max-width: 500px;
  background-image: url("../img/shape-line.svg");
  background-position: center center;
  background-size: cover;
}

.hero-inside__desc {
  margin: 2rem 0;
}

.hero-inside__logos {
  background: linear-gradient(328deg, #ff8500 20%, #ffce00 100%);
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  margin-top: 3rem;
  border-radius: 15px;
}
.hero-inside__logos .logos {
  display: flex;
}
.hero-inside__logos .logos img {
  height: 50px;
  object-fit: contain;
  margin-left: 1rem;
}
.hero-inside__logos span {
  color: #fff;
  margin-right: 1rem;
  font-weight: 400;
  font-size: 1rem;
}
.hero-inside__logos.logos-white {
  background: #F4F7F9;
  display: inline-flex;
  margin-top: 0;
}
.hero-inside__logos.logos-white span {
  color: #000;
}
.hero-inside__logos.logos-white img {
  height: 40px;
}

.hero-circle {
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 10px solid white;
}

.hero-circle-1 {
  position: absolute;
  top: 5%;
  left: 0;
  height: 250px;
  width: 250px;
}

.hero-circle-2 {
  position: absolute;
  right: 5%;
  top: 6%;
  height: 200px;
  width: 200px;
}

.hero-circle-4 {
  position: absolute;
  bottom: 15%;
  left: 5%;
  height: 220px;
  width: 220px;
}

.hero-circle-3 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  height: 350px;
  width: 350px;
}

.hero-flag {
  position: absolute;
  background-color: white;
  bottom: 10%;
  left: 0;
  padding: 4rem 3%;
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  max-width: 200px;
  text-align: center;
}
.hero-flag span {
  font-size: 18px;
}
.hero-flag em {
  display: block;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  font-style: normal;
  vertical-align: middle;
  margin: 0.5rem auto;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-circle img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-inside__illustration {
  position: relative;
  width: 80%;
  height: 100%;
  margin-left: auto;
  border-radius: 20px;
}
.hero-inside__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* HERO MAIN */
.hero-main {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main__content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-main__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.hero-main__title em {
  font-style: normal;
}

.hero-main__desc {
  line-height: 1.8;
  max-width: 800px;
  font-size: 16px;
  margin: 30px auto;
}

.hero-main a {
  margin-right: 2rem;
  margin-bottom: 1rem;
}

/* NAV INSIDE */
.nav-inside {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 10px 40px;
  border-radius: 50px;
  margin-bottom: 4rem;
}

.nav-inside__link {
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  padding: 15px 25px;
  display: block;
  transition: all 0.2s ease-in-out;
}
.nav-inside__link:hover {
  color: white;
  transform: translateY(0px) scale(1.05);
}

.nav-light .nav-inside {
  background: none;
  padding: 0;
  justify-content: flex-start;
  margin: 2rem 0;
}

.nav-light .nav-inside__link {
  color: #fff;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

/* SERVICES */
.services__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  column-gap: 20px;
  row-gap: 20px;
}

.services__item {
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(1, 1, 1, 0.16);
  padding: 25px;
}
.services__item:hover .services__title a {
  color: #FF8500;
}

.services__item__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.services__icon {
  background-color: #2F2F2F;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.services__icon img {
  height: 100%;
  width: 100%;
}

.services__text {
  margin: 25px 0;
}

.services__title {
  margin-bottom: 20px;
  font-weight: 600;
}
.services__title a {
  color: #2F2F2F;
}
.services__title a:hover {
  color: #FF8500;
}

.services__cta {
  color: #000;
  margin-bottom: 20px;
  display: block;
}
.services__cta:hover {
  color: #FF8500;
}

.services--last {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: white;
}
.services--last .services__icon {
  background-color: white;
}
.services--last .services__cta {
  color: white;
}
.services--last .services__cta:hover {
  color: black;
}

.services-components {
  position: absolute;
  top: -200px;
  left: -250px;
  height: 500px;
  width: 800px;
  background-image: url("../img/shape-line.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -99;
}

/* TECH LIST */
.tech {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.tech__list {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.tech__title {
  background-color: #fff;
  position: absolute;
  padding: 5px 20px;
  color: #2F2F2F;
  font-size: 18px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.tech__item {
  text-align: center;
}

.tech__logo {
  height: 50px;
  width: auto;
}

/* CONTENT CARD */
.content-card {
  background-color: white;
}

.content-card__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  height: 600px;
}
.content-card__list .block-1 {
  grid-area: 1/1/4/4;
  background: radial-gradient(circle, rgb(227, 16, 89) 50%, rgb(255, 133, 0) 100%);
}
.content-card__list .block-2 {
  grid-area: 1/4/5/7;
}
.content-card__list .block-3 {
  grid-area: 4/1/5/3;
  background-color: black;
}
.content-card__list .block-4 {
  grid-area: 4/3/5/4;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  width: 100%;
}
.content-card__list .block-4 img {
  padding: 30px;
  object-fit: contain;
  transform: rotate(45deg);
}
.content-card__list .block-4:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.block--illustration img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}

.content-card__block {
  position: relative;
  border-radius: 20px;
}

.content-card__text {
  padding: 40px;
  color: white;
  height: 100%;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.content-card__title {
  font-size: 36px;
  line-height: 1.2;
}

/* CONTENT BLOCK */
.content-block {
  position: relative;
  margin: 80px 0;
}
.content-block:before {
  content: "";
  position: absolute;
  background-color: #F4F7F9;
  height: 100%;
  width: 80%;
  top: 0;
  right: 0;
  border-radius: 20px 0px 0px 20px;
}
.content-block:nth-child(even) {
  margin: 0px 0px 80px 0px;
}
.content-block:nth-child(odd) .content-block__container {
  flex-direction: row-reverse;
}
.content-block:nth-child(odd) .content-block__content {
  padding-left: 0;
}
.content-block:nth-child(odd):before {
  right: auto;
  left: 0;
  border-radius: 0px 20px 20px 0px;
}

.content-block__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.content-block__illustration {
  position: relative;
  height: 400px;
  width: 40%;
  background-color: #fff;
  border-radius: 20px;
  border: 10px solid white;
}
.content-block__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.content-block__content {
  position: relative;
  width: 50%;
}

.content-block__title {
  font-size: 28px;
  font-weight: 600;
}

.content-block__desc {
  margin: 25px 0;
}
.content-block__desc p {
  margin-bottom: 15px;
}
.content-block__desc p:last-child {
  margin-bottom: 0;
}
.content-block__desc li {
  position: relative;
  margin: 10px 0px;
  padding-left: 30px;
  display: block;
  font-size: 14px;
  line-height: 1.7;
}
.content-block__desc li:before {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-image: url("../img/arrow-primary.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* PROGRESS */
.progress {
  display: grid;
  grid-template-columns: 450px 1fr;
}

.progress-sidebar {
  background-color: white;
  padding: 60px 5%;
  border-radius: 20px;
}

.progress__list {
  position: relative;
}

.progress__list::before {
  position: absolute;
  top: 0;
  left: 20px;
  content: "";
  height: 100%;
  border: 1px dotted rgba(1, 1, 1, 0.2);
  z-index: 0;
}

.progress__item {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 10px 0;
}

.progress__link {
  width: 100%;
  text-align: left;
  color: black;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.progress__link span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: #F4F7F9;
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  font-weight: 600;
}

.progress__link p {
  display: inline-block;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
}

.progress__link.active span {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: white;
}

.progress__link.active p {
  color: #FF8500;
}

.progress__link:hover, .progress__link:active {
  background: white;
  color: #FF8500;
}

.progress-content {
  padding: 20px 10%;
  margin-top: 1px;
  font-size: 14px;
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
}

.progress__block {
  display: none;
  visibility: hidden;
  position: relative;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
}

.progress__block-active {
  display: block;
  visibility: visible;
  position: relative;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
}

.progress__title {
  font-size: 32px;
  font-weight: 600;
}

.progress__text {
  margin: 25px 0;
}

.progress__text p {
  margin: 15px 0;
  font-size: 14px;
}

.progress-desktop {
  display: block;
}

.progress-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .hero-inside {
    height: auto;
  }
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inside--left {
    width: 100%;
  }
  .hero-inside--right {
    width: 100%;
    height: auto;
  }
  .hero-inside__illustration {
    width: 100%;
    height: 30rem;
  }
  .hero-inside__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-right: 0;
  }
  .hero-inside__card {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 50px 0;
  }
  .hero-inside__card div {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  .hero-inside__card:before {
    width: 100%;
    max-width: 100%;
  }
  .content-card__title {
    font-size: 28px;
  }
  .content-card__list .block-1 {
    grid-area: 1/1/3/8;
  }
  .content-card__list .block-2 {
    grid-area: 3/1/6/3;
  }
  .content-card__list .block-3 {
    grid-area: 3/3/6/5;
  }
  .content-card__list .block-4 {
    grid-area: 3/5/6/8;
  }
  .progress-sidebar {
    max-width: 400px;
  }
  .content-block {
    margin: 0 !important;
    padding: 50px 0px !important;
  }
  .content-block:before {
    display: none;
  }
  .content-block__container {
    width: 90%;
    margin: 0 auto;
    background-color: #F4F7F9;
    padding: 80px 7%;
    border-radius: 20px;
  }
  .content-block__illustration {
    width: 100%;
  }
  .content-block__content {
    width: 100%;
    margin: 40px auto 0px;
    padding-left: 0;
  }
  .content-block:nth-child(odd) .content-block__container {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-circle:before {
    content: "";
    padding-bottom: 100%;
    display: block;
  }
  .hero-flag {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .hero-main__title {
    font-size: 2.7rem;
  }
  .hero-inside__illustration {
    width: 100%;
    height: 20rem;
  }
  .services__list {
    grid-template-columns: 1fr;
  }
  .services__item {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-inside__card {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 10%;
  }
  .hero-flag {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content-card__list {
    grid-template-columns: auto;
    grid-template-rows: auto;
    height: auto;
  }
  .content-card__list .block-2 {
    display: none;
  }
  .content-card__list .block-3 {
    display: none;
  }
  .content-card__list .block-4 {
    display: none;
  }
  .content-card__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .block--illustration {
    grid-column: auto;
  }
  .progress {
    grid-template-columns: 1fr;
  }
  .progress-sidebar {
    width: 100%;
    max-width: 100%;
  }
  .progress__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .progress__list:before {
    display: none;
  }
  .progress__target {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .progress-content {
    padding: 40px 10%;
  }
  .progress__link {
    display: grid;
    grid-template-columns: 40px 1fr;
  }
  .progress__link p {
    line-height: 1.2;
    font-size: 16px;
  }
  .progress-desktop {
    display: none;
  }
  .progress-mobile {
    display: block;
  }
}
@media (max-width: 600px) {
  .progress__list {
    grid-template-columns: 1fr;
  }
  .hero-inside {
    padding: 100px 0px 30px;
  }
  .hero-inside__title {
    font-size: 3.5rem;
  }
  .hero-flag span {
    font-size: 14px;
  }
  .hero-flag em {
    font-size: 1.5rem;
  }
  .nav-inside {
    background: transparent;
  }
  .nav-inside__item {
    width: 100%;
    text-align: center;
    background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
    border-radius: 20px;
  }
  .nav-inside__item + .nav-inside__item {
    margin-top: 20px;
  }
  .nav-light .nav-inside__item {
    background: none;
  }
  .nav-light .nav-inside__item + .nav-inside__item {
    margin-top: 0;
  }
  .content-block__illustration {
    height: 250px;
  }
  .content-card__text {
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  .hero-main__title {
    font-size: 2.3rem;
  }
}
.contact__input {
  width: 48%;
}

input:focus, textarea:focus {
  outline: none;
}

select {
  border: none;
  border: 2px solid #DBDBDB;
  padding: 15px 20px;
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  display: block;
  width: 100%;
}
select:focus {
  border-color: #FF8500;
}

.wpcf7-text, .wpcf7-number {
  width: 100%;
  position: relative;
  border: 2px solid #DBDBDB;
  padding: 10px 20px;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 50px;
  background-color: transparent;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 12px;
  color: black;
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: 20px center;
  padding-left: 50px;
}
.wpcf7-text:focus, .wpcf7-number:focus {
  border-color: #FF8500;
}
.wpcf7-text:focus::placeholder, .wpcf7-number:focus::placeholder {
  color: #DBDBDB;
}
.wpcf7-text::placeholder, .wpcf7-number::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #DBDBDB;
  margin-left: 10px;
  font-weight: 500;
  font-size: 12px;
}
.wpcf7-text.icon-name, .wpcf7-number.icon-name {
  background-image: url("../img/icon-name.svg");
}
.wpcf7-text.icon-phone, .wpcf7-number.icon-phone {
  background-image: url("../img/icon-phone.svg");
}
.wpcf7-text.icon-company, .wpcf7-number.icon-company {
  background-image: url("../img/icon-name.svg");
}
.wpcf7-text.icon-email, .wpcf7-number.icon-email {
  background-image: url("../img/icon-email.svg");
}

.wpcf7-response-output {
  font-size: 14px;
  padding: 20px !important;
  border-radius: 10px;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
}

.wpcf7-radio {
  margin-bottom: 20px;
  display: block;
  margin-top: 10px;
}
.wpcf7-radio label {
  font-weight: 400;
  display: flex;
  align-items: center;
}
.wpcf7-radio .wpcf7-list-item-label {
  padding-left: 10px;
}
.wpcf7-radio input[type=radio]:after {
  width: 17px;
  height: 17px;
  border-radius: 17px;
  position: relative;
  background-color: white;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid black;
  cursor: pointer;
  top: -1px;
  left: -2px;
}
.wpcf7-radio input[type=radio]:checked:after {
  width: 17px;
  height: 17px;
  border-radius: 17px;
  position: relative;
  background-color: white;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 4px solid #FF8500;
  cursor: pointer;
  top: -1px;
  left: -2px;
}

.wpcf7-submit {
  margin-top: 20px;
  border: 1px solid white;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease-in-out 0s;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  font-family: "Montserrat", sans-serif;
  padding: 10px 40px;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-left: auto;
}
.wpcf7-submit:hover {
  color: white;
  transform: scale(1.05);
}

.wpcf7-textarea {
  width: 100%;
  border: 2px solid #DBDBDB;
  padding: 10px 20px;
  font-family: "Montserrat", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  color: #000;
  font-weight: 400;
  border-radius: 20px;
  background-color: transparent;
  -webkit-appearance: none;
  resize: vertical;
  height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.wpcf7-textarea:focus {
  border-color: #FF8500;
}
.wpcf7-textarea:focus::placeholder {
  color: #000;
}
.wpcf7-textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-left: 10px;
  font-weight: 600;
  font-size: 12px;
}

.wpcf7-file {
  color: transparent;
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../img/icon-clip.svg");
}

.wpcf7-file::-webkit-file-upload-button {
  visibility: hidden;
}

.wpcf7-file::before {
  content: "Ajouter un fichier";
  color: black;
  display: inline-block;
  padding: 5px 8px;
  padding-left: 30px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}

.wpcf7-file:active {
  outline: 0;
}

.wpcf7-file:hover::before {
  color: #FF8500;
}

/* Columns */
.one-half,
.one-third {
  position: relative;
  margin-right: 4%;
  float: left;
}

.one-half {
  width: 48%;
}

.one-third {
  width: 30.66%;
}

.last {
  margin-right: 0 !important;
  clear: right;
}

@media only screen and (max-width: 767px) {
  .one-half, .one-third {
    width: 100%;
    margin-right: 0;
  }
}
.footer {
  background-color: black;
}

.footer__title {
  color: white;
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 700;
}
.footer__title em {
  font-style: normal;
  color: #FF8500;
  display: table-caption;
}

.footer__cta {
  color: white;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid white;
  padding: 10px 0;
}
.footer__cta:hover {
  color: #FF8500;
  border-bottom: 1px solid #FF8500;
  padding: 10px 0 15px;
}

/* FOOTER TOP */
.footer-top {
  display: grid;
  grid-template-columns: 50% auto;
  padding: 100px 0;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  row-gap: 80px;
  column-gap: 10%;
}

.footer-menu__block {
  color: white;
}

.footer-menu__title {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.footer-menu__title:after {
  content: "";
  height: 1px;
  width: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}
.footer-menu__title a {
  color: white;
}
.footer-menu__title a:hover {
  color: #FF8500;
}

.footer-menu__link {
  color: white;
  display: block;
  font-size: 14px;
  padding: 10px 0;
}
.footer-menu__link:hover {
  color: #FF8500;
  padding: 10px;
}

/* FOOTER CONTACT */
.footer-bottom {
  border-top: 0.5px solid rgba(247, 247, 247, 0.3);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 70% 30%;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 40px;
}

.footer-contact__item > a {
  color: white;
  font-size: 14px;
  display: block;
  margin: 10px 0;
  line-height: 1.6;
}
.footer-contact__item > a span {
  display: block;
}
.footer-contact__item > a:hover {
  color: #FF8500;
}

.footer-contact__item {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.footer-contact__title {
  font-size: 36px;
  font-weight: 700;
}

/* FOOTER SOCIAL */
.footer-social {
  display: grid;
  grid-template-rows: repeat(2, 50%);
  grid-template-columns: repeat(4, 25%);
}

.footer-social__menu {
  grid-column: 3/5;
  grid-row: 2/2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: flex-end;
  display: none;
}

.footer-social__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: black;
  height: 40px;
  width: 50px;
  z-index: 3;
}
.footer-social__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background-image: url("../img/social-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.footer-social__item img {
  height: 20px;
  width: auto;
}
.footer-social__item:hover:before {
  opacity: 0;
}

/* FOOTER COPYRIGHT */
.footer-copyright {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-copyright__title {
  color: white;
}
.footer-copyright__title a {
  color: white;
}
.footer-copyright__title a:hover {
  color: #FF8500;
}

.footer-legals__menu {
  color: white;
}

.footer-legals__item {
  display: inline-block;
}
.footer-legals__item + .footer-legals__item {
  margin-left: 20px;
}

.footer-legals__item > a {
  color: white;
  font-size: 14px;
}
.footer-legals__item > a:hover {
  color: #FF8500;
}

/* COOKIES */
#cookie-law-info-bar {
  padding: 40px 30px !important;
  border-radius: 10px;
}

.cli-wrapper h5 {
  font-size: 20px;
  font-weight: 700;
}

.cli-bar-message {
  margin: 20px 0px;
  font-size: 14px;
  line-height: 1.7;
}

.unclickable > a {
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-contact__item {
    text-align: center;
  }
  .footer-contact {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-content {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
  }
  .footer__title {
    text-align: center;
  }
  .footer__title em {
    display: block;
  }
  .footer-menu {
    width: 100%;
    text-align: center;
  }
  .footer-menu__title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-copyright {
    display: block;
    text-align: center;
  }
  .footer-copyright__title {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .footer-menu {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .footer-contact {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.contact {
  padding-top: 150px;
}

.contact-left__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-left {
  width: 45%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  height: 700px;
}
.contact-left .block-1 {
  grid-area: 1/1/4/7;
  background: linear-gradient(135deg, rgb(36, 85, 126) 10%, rgb(0, 0, 0) 100%);
}
.contact-left .block-2 {
  grid-area: 4/1/5/5;
}
.contact-left .block-3 {
  grid-area: 4/5/5/7;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  width: 100%;
}
.contact-left .block-3 img {
  padding: 30px;
  object-fit: contain;
  transform: rotate(45deg);
}
.contact-left .block-3:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.block--illustration img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}

.contact-left__block {
  position: relative;
  border-radius: 20px;
}

.contact-left__text {
  padding: 40px;
  color: white;
  height: 100%;
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.contact-left__title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

.contact-left__desc {
  font-size: 16px;
}

/* FORM */
.contact-form {
  width: 50%;
  padding: 40px 0;
}

.contact-form__title {
  font-weight: 700;
  line-height: 1;
}

.contact-form__text {
  margin: 30px 0;
}

.contact-form__subtitle {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

/* TESTIMONIALS */
.stories__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stories__illustration {
  position: relative;
  height: 300px;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  border: 10px solid white;
}
.stories__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.stories__content {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 50px;
  column-gap: 10px;
}

.stories__name {
  background-color: white;
  border-radius: 10px;
  padding: 10px 0px 10px 30px;
  font-weight: 500;
}
.stories__name span {
  color: #FF8500;
  display: block;
  margin-bottom: 5px;
}

.stories__title {
  font-size: 14px;
  color: #747474;
}

.stories__button {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 10px;
  display: flex;
  height: auto;
  width: 50px;
  padding: 12px;
}

/* REFERENCES */
.references__container {
  box-shadow: 0px 0px 20px rgba(1, 1, 1, 0.16);
  padding: 50px 10%;
  border-radius: 40px;
}

.references__list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 3rem;
}

.references__item {
  display: grid;
}

.references__logo {
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-height: 60px;
  min-height: 60px;
}

@media (max-width: 1024px) {
  .contact-left__container {
    flex-direction: column-reverse;
  }
  .contact-left {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-left__title {
    margin-bottom: 30px;
  }
  .contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-left {
    height: auto;
  }
  .contact-left .block-1 {
    grid-area: 1/1/6/7;
  }
  .contact-left .block-2 {
    grid-area: 6/1/20/7;
  }
  .contact-left .block-3 {
    display: none;
  }
  .references__list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem;
  }
  .stories__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stories__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }
  .stories__illustration {
    height: 200px;
  }
  .contact-left__text {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .references__list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 3rem;
  }
  .stories__illustration {
    height: 200px;
  }
}
@media (max-width: 550px) {
  .contact-left__title {
    font-size: 24px;
  }
}
@-moz-keyframes rocket-movement {
  100% {
    -moz-transform: translate(1200px, -600px);
  }
}
@-webkit-keyframes rocket-movement {
  100% {
    -webkit-transform: translate(1200px, -600px);
  }
}
@keyframes rocket-movement {
  100% {
    transform: translate(1200px, -600px);
  }
}
@-moz-keyframes spin-earth {
  100% {
    -moz-transform: rotate(-360deg);
    transition: transform 20s;
  }
}
@-webkit-keyframes spin-earth {
  100% {
    -webkit-transform: rotate(-360deg);
    transition: transform 20s;
  }
}
@keyframes spin-earth {
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    transition: transform 20s;
  }
}
@-moz-keyframes move-astronaut {
  100% {
    -moz-transform: translate(-160px, -160px);
  }
}
@-webkit-keyframes move-astronaut {
  100% {
    -webkit-transform: translate(-160px, -160px);
  }
}
@keyframes move-astronaut {
  100% {
    -webkit-transform: translate(-160px, -160px);
    transform: translate(-160px, -160px);
  }
}
@-moz-keyframes rotate-astronaut {
  100% {
    -moz-transform: rotate(-720deg);
  }
}
@-webkit-keyframes rotate-astronaut {
  100% {
    -webkit-transform: rotate(-720deg);
  }
}
@keyframes rotate-astronaut {
  100% {
    -webkit-transform: rotate(-720deg);
    transform: rotate(-720deg);
  }
}
@-moz-keyframes glow-star {
  40% {
    -moz-opacity: 0.3;
  }
  90%, 100% {
    -moz-opacity: 1;
    -moz-transform: scale(1.2);
  }
}
@-webkit-keyframes glow-star {
  40% {
    -webkit-opacity: 0.3;
  }
  90%, 100% {
    -webkit-opacity: 1;
    -webkit-transform: scale(1.2);
  }
}
@keyframes glow-star {
  40% {
    -webkit-opacity: 0.3;
    opacity: 0.3;
  }
  90%, 100% {
    -webkit-opacity: 1;
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    border-radius: 999999px;
  }
}
.spin-earth-on-hover {
  transition: ease 200s !important;
  transform: rotate(-3600deg) !important;
}

.error-title {
  font-size: 10rem;
  color: white;
  font-weight: 700;
}

.error-desc {
  font-size: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  color: white;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bg-purple {
  background: url("../img/bg_purple.png");
  background-repeat: repeat-x;
  background-size: cover;
  background-position: left top;
  height: 100%;
}

.btn-request {
  padding: 10px 25px;
  border: 1px solid #FFCB39;
  border-radius: 100px;
  font-weight: 400;
}

.btn-request:hover {
  background-color: #FFCB39;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
}

.btn-go-home {
  position: relative;
  z-index: 200;
  margin: 30px auto;
  padding: 10px 15px;
  border: 1px solid #FF8500;
  border-radius: 100px;
  font-weight: 400;
  color: white;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.btn-go-home:hover {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: #fff;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
}

.central-body {
  text-align: center;
}

.objects img {
  z-index: 90;
  pointer-events: none;
}

.object_rocket {
  z-index: 95;
  position: absolute;
  transform: translateX(-50px);
  top: 75%;
  pointer-events: none;
  animation: rocket-movement 200s linear infinite both running;
}

.object_earth {
  position: absolute;
  top: 20%;
  left: 15%;
  z-index: 90;
  /*    animation: spin-earth 100s infinite linear both;*/
}

.object_moon {
  position: absolute;
  top: 12%;
  left: 25%;
  /*
      transform: rotate(0deg);
      transition: transform ease-in 99999999999s;
  */
}

.object_astronaut {
  animation: rotate-astronaut 200s infinite linear both alternate;
}

.box_astronaut {
  z-index: 110 !important;
  position: absolute;
  top: 60%;
  right: 20%;
  will-change: transform;
  animation: move-astronaut 50s infinite linear both alternate;
}

.image-404 {
  position: relative;
  z-index: 100;
  pointer-events: none;
}

.stars {
  height: 100vh;
  background: url("../img/overlay_stars.svg");
  background-repeat: repeat;
  background-size: contain;
  background-position: left top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.glowing_stars .star {
  position: absolute;
  border-radius: 100%;
  background-color: #fff;
  width: 3px;
  height: 3px;
  opacity: 0.3;
  will-change: opacity;
}

.glowing_stars .star:nth-child(1) {
  top: 80%;
  left: 25%;
  animation: glow-star 2s infinite ease-in-out alternate 1s;
}

.glowing_stars .star:nth-child(2) {
  top: 20%;
  left: 40%;
  animation: glow-star 2s infinite ease-in-out alternate 3s;
}

.glowing_stars .star:nth-child(3) {
  top: 25%;
  left: 25%;
  animation: glow-star 2s infinite ease-in-out alternate 5s;
}

.glowing_stars .star:nth-child(4) {
  top: 75%;
  left: 80%;
  animation: glow-star 2s infinite ease-in-out alternate 7s;
}

.glowing_stars .star:nth-child(5) {
  top: 90%;
  left: 50%;
  animation: glow-star 2s infinite ease-in-out alternate 9s;
}

@media only screen and (max-width: 600px) {
  .navbar-links {
    display: none;
  }
  .custom-navbar {
    text-align: center;
  }
  .brand-logo img {
    width: 120px;
  }
  .box_astronaut {
    top: 70%;
  }
  .central-body {
    padding-top: 25%;
  }
}
.blog-header {
  position: relative;
  padding-top: 100px;
}

.blog-header__bg {
  position: relative;
  background: linear-gradient(280deg, rgb(255, 133, 0) 10%, rgb(255, 206, 0) 100%);
  text-align: center;
  border-radius: 30px;
}
.blog-header__bg:after {
  content: "";
  display: block;
  background-image: url("../img/logo-lwa.svg");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.blog-header__title {
  color: white;
  font-weight: 700;
  font-size: 64px;
  padding: 40px 0;
}

.blog-header__search {
  position: relative;
  height: 60px;
  width: 600px;
  background-color: red;
  margin: -20px auto 0px;
  border-radius: 10px;
}

.blog-header__content {
  position: relative;
  padding: 40px 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.blog-header__content p {
  font-size: 16px;
  color: #747474;
  line-height: 1.8;
}

/* BLOG CARD */
.blog__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 70px;
  row-gap: 70px;
}

.blog__list .blog__card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.blog__list .blog__card:first-child {
  grid-column: 1/-1;
  align-items: center;
}
.blog__list .blog__card:first-child .blog__illustration {
  width: 40%;
  min-height: 400px;
}
.blog__list .blog__card:first-child .blog__content {
  width: 60%;
  padding: 40px 10%;
}
.blog__list .blog__card:first-child .blog__title {
  font-size: 32px;
}
.blog__list .blog__card:first-child .blog__desc {
  -webkit-line-clamp: 3;
}

.blog__card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.blog__illustration {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.blog__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
}
.blog__illustration:hover img {
  transform: scale(1.02);
}

.blog__content {
  padding: 25px 0;
  max-width: 100%;
}

.blog__taxonomy {
  color: #FF8500;
}

.blog__desc {
  font-size: 14px;
  color: #747474;
}

.blog__title {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0px;
}
.blog__title a {
  color: #000;
}
.blog__title a:hover {
  color: #FF8500;
}

.blog__infos {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
}
.blog__infos img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
}

.blog__author {
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog__name {
  font-weight: 600;
  font-size: 16px;
  display: block;
}

.blog__date {
  color: #747474;
  width: 100%;
}

/* BLOG FOOTER */
.blog-footer__heading {
  display: grid;
  grid-template-columns: 40% 50%;
  column-gap: 40px;
  margin-bottom: 50px;
}

.blog-footer__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  column-gap: 30px;
}

.blog-footer__card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

.blog-footer__illustration {
  height: 200px;
  border-radius: 10px;
  display: block;
}

.blog-footer__illustration img {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-footer__content {
  padding: 20px;
}

.blog-footer__taxonomy {
  color: #FF8500;
}

.blog-footer__title {
  font-weight: 600;
  font-size: 18px;
  margin: 15px 0px;
}

.blog-footer__desc {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #747474;
  margin-bottom: 15px;
}

.blog-footer__cta {
  margin-top: 80px;
  text-align: center;
}

/* FILTER */
#search-filter-form-376.searchandfilter ul li li {
  display: inline-block;
  margin: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  color: #747474;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
#search-filter-form-376.searchandfilter ul li li:hover {
  color: #FF8500;
}
#search-filter-form-376.searchandfilter ul li li.sf-option-active {
  color: #FF8500;
}
#search-filter-form-376.searchandfilter ul li li:first-child {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  padding: 10px 35px !important;
  color: white;
  cursor: pointer;
  border: 1px solid white;
  transition: all 0.2s ease-in-out;
}
#search-filter-form-376.searchandfilter ul li li:first-child:hover {
  background: transparent;
  border: 1px solid #FF8500;
  color: #FF8500;
}
#search-filter-form-376.searchandfilter ul {
  text-align: center;
}
#search-filter-form-376.searchandfilter .sf-input-radio {
  display: none;
  cursor: pointer;
}
#search-filter-form-376.searchandfilter .sf-label-radio {
  padding: 0px !important;
  cursor: pointer;
  font-size: 18px;
}
#search-filter-form-376 .sf-input-text {
  padding: 20px 40px;
  width: 500px;
  border: none;
  box-shadow: 0px 3px 20px rgba(1, 1, 1, 0.16);
  border-radius: 10px;
}
#search-filter-form-376 .sf-input-text::placeholder {
  color: #747474;
  opacity: 0.6;
  font-weight: 300 !important;
}
#search-filter-form-376 .sf-field-search {
  position: relative;
  margin-top: -30px !important;
  margin-bottom: 30px !important;
}
#search-filter-form-376 .sf-field-search input {
  padding-left: 60px !important;
}
#search-filter-form-376 .sf-field-search label {
  position: relative;
}
#search-filter-form-376 .sf-field-search label:after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/search.svg");
}

@media (max-width: 1024px) {
  .blog {
    padding-top: 40px;
  }
  .blog__list .blog__card:first-child .blog__illustration {
    width: 100%;
    min-height: 400px;
  }
  .blog__list .blog__card:first-child .blog__content {
    width: 100%;
    padding: 40px 0;
  }
  .blog__list .blog__card:first-child {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  #search-filter-form-376 .sf-input-text {
    padding: 20px 40px;
    width: 300px;
  }
  .blog__list .blog__card:first-child .blog__illustration {
    min-height: 200px;
  }
  .blog__list .blog__card:first-child .blog__title {
    font-size: 18px;
  }
}
.case-header {
  position: relative;
  margin-top: 10rem;
  margin-bottom: 4rem;
}

.case-header__container {
  max-width: 1000px;
}

.case-header__title {
  font-size: 48px;
  line-height: 1;
  margin: 20px 0px;
}

.case-header__menu {
  margin-top: 4rem;
}

.case-header__item {
  margin-left: 20px;
}
.case-header__item:first-child {
  margin-left: 0;
}

.case-header__item a {
  border: 1px solid black;
  border-radius: 30px;
  padding: 15px 25px;
  color: black;
}
.case-header__item a:hover {
  color: white;
  background-color: black;
}

.case-header__item .active {
  color: white;
  background-color: black;
}

/* CASE ITEM */
.case__list {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.case-item {
  position: relative;
  grid-column: span 1;
}
.case-item:nth-child(3n) {
  width: 100%;
  grid-column: span 2;
}
.case-item:nth-child(3n) .case-item__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.case-item:nth-child(3n) .case-item__illustration {
  width: 50%;
}
.case-item:nth-child(3n) .case-item__illustration:after {
  padding-bottom: 70%;
}
.case-item:nth-child(3n) .case-item__title {
  font-size: 36px;
}
.case-item:nth-child(3n) .case-item__content {
  width: 45%;
}

.case-item__wrapper {
  position: relative;
  display: block;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
}
.case-item__wrapper:hover .case-item__illustration img {
  transform: scale(1.03);
}

.case-item__illustration {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.case-item__illustration:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.case-item__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.5s ease-in-out;
}

.case-item__content {
  padding: 25px 0;
  color: white;
}

.case-item__title {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* CAROUSEL */
.case-carousel__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.case-carousel__item {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 20px;
}

.case-carousel__content {
  padding: 5rem 4rem 5rem 3rem;
}

.case-carousel__title {
  font-weight: 700;
  max-width: 400px;
  margin: 1rem 0;
  font-size: 2rem;
}

.case-carousel__illustration {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 0px 20px 20px 0px;
}
.case-carousel__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0px 20px 20px 0px;
}

.case-carousel__link {
  margin-top: 2rem;
}
.case-carousel__link a {
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

/* FILTER */
#search-filter-form-384.searchandfilter ul li ul {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
#search-filter-form-384.searchandfilter ul li li {
  border-radius: 20px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 1px solid #DEDEDE;
  display: flex;
  justify-content: center;
  align-items: center;
}
#search-filter-form-384.searchandfilter ul li li:hover {
  color: white;
  background-color: black;
  border: 1px solid black;
}
#search-filter-form-384.searchandfilter ul li li.sf-option-active {
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  color: white;
  border: 1px solid white;
}
#search-filter-form-384.searchandfilter ul li li:first-child {
  background: #000;
  color: white;
  cursor: pointer;
  border: 1px solid black;
  transition: all 0.2s ease-in-out;
}
#search-filter-form-384.searchandfilter ul li li:first-child:hover {
  background: transparent;
  border: 1px solid #DEDEDE;
  color: #000;
}
#search-filter-form-384.searchandfilter ul {
  text-align: center;
}
#search-filter-form-384.searchandfilter .sf-input-radio {
  display: none;
  cursor: pointer;
}
#search-filter-form-384.searchandfilter .sf-label-radio {
  padding: 15px 3% !important;
  cursor: pointer;
}
#search-filter-form-384 .sf-input-text {
  padding: 15px 40px;
  width: 500px;
  border: none;
  box-shadow: 0px 3px 20px rgba(1, 1, 1, 0.16);
  border-radius: 10px;
}
#search-filter-form-384 .sf-input-text::placeholder {
  color: #747474;
  opacity: 0.6;
  font-weight: 300 !important;
}
#search-filter-form-384 .sf-field-search {
  position: relative;
  margin-top: -30px !important;
  margin-bottom: 30px !important;
}

@media (max-width: 768px) {
  #search-filter-form-384.searchandfilter ul li ul {
    grid-template-columns: repeat(3, 1fr);
  }
  #search-filter-form-384.searchandfilter .sf-label-radio {
    font-size: 12px;
    padding: 10px 3% !important;
  }
  .case-header__menu {
    margin-top: 2rem;
  }
  .case-header__title {
    font-size: 28px;
    line-height: 1.4;
  }
}
@media (max-width: 550px) {
  .case__list {
    grid-template-columns: 1fr;
  }
  .case-item {
    grid-column: 1/span 2;
  }
  .case-item:nth-child(3n) .case-item__illustration {
    width: 100%;
  }
  .case-item:nth-child(3n) .case-item__content {
    width: 100%;
  }
  .case-item:nth-child(3n) .case-item__title {
    font-size: 24px;
  }
}
/* Hero */
.case-hero {
  position: relative;
}

.case-hero__container {
  display: flex;
  flex-wrap: wrap;
  padding-top: 10rem;
  align-items: flex-end;
}

.case-hero__content {
  position: relative;
  width: 50%;
  color: white;
  padding-bottom: 3rem;
}

.case-hero__text {
  margin-bottom: 6rem;
}

.case-hero__desc {
  font-size: 18px;
}

.case-hero__flag {
  display: inline-block;
  background-color: #fff;
  color: black;
  padding: 10px 25px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.case-hero__title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  margin: 1rem 0;
}

.case-hero__illustration {
  width: 45%;
  position: relative;
  margin-left: auto;
}
.case-hero__illustration:before {
  content: "";
  display: block;
  padding-bottom: 110%;
}
.case-hero__illustration img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-radius: 20px 20px 0px 0px;
  object-fit: cover;
}

.case-hero__caracs {
  display: grid;
  grid-template-columns: repeat(3, auto);
}

.case-hero__infos span {
  display: block;
}
.case-hero__infos .title {
  margin-bottom: 10px;
}
.case-hero__infos .text {
  font-weight: 600;
  font-size: 18px;
}

/* Introduction */
.case-intro__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}

.case-intro__content {
  position: relative;
  width: 50%;
}

.case-intro__steps {
  width: 40%;
}

.case-intro__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 3rem;
}

.case-intro__text p {
  margin-bottom: 20px;
  color: #747474;
  font-size: 16px;
  font-weight: 300;
}
.case-intro__text p:last-child {
  margin-bottom: 0;
}

.case-steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-steps__icon {
  background-color: #F4F7F9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  height: 50px;
  width: 50px;
  margin-bottom: 20px;
}
.case-steps__icon img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

/* Content */
.case-content {
  padding-top: 0;
}

.case-content__block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.case-content__block:nth-child(even) {
  flex-direction: row-reverse;
}

.case-content__illustration {
  position: relative;
  width: 40%;
  border-radius: 20px;
}
.case-content__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.case-content__text {
  position: relative;
  width: 60%;
  padding: 80px 10%;
}
.case-content__text span {
  padding: 10px 25px;
  border-radius: 10px;
  color: white;
  font-size: 12px;
  margin-bottom: 20px;
  display: inline-block;
}

.case-content__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.case-content__components {
  position: absolute;
  top: 0%;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/shape-4.svg");
  background-size: auto 40%;
  background-repeat: no-repeat;
  background-position: -20% -40%;
  filter: blur(50px);
  z-index: -99;
}

.case-content__components-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/shape-4.svg");
  background-size: auto 40%;
  background-repeat: no-repeat;
  background-position: 120% 130%;
  filter: blur(50px);
  z-index: -99;
}

/* Banner */
.case-banner {
  position: relative;
}
.case-banner:before {
  position: absolute;
  display: block;
  content: "";
  height: 50%;
  width: 100%;
  background-color: #F4F7F9;
  z-index: -999;
  bottom: 0;
}

.case-banner__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
}

.case-banner__content {
  position: relative;
  grid-column: span 2;
  border-radius: 20px;
  padding: 60px 10%;
  color: white;
  z-index: 2;
}

.case-banner__title {
  margin-bottom: 20px;
}

.case-banner__text p {
  margin-bottom: 20px;
  font-size: 16px;
}
.case-banner__text p:last-child {
  margin-bottom: 0;
}

.case-banner__illustration {
  position: relative;
  border-radius: 20px;
}
.case-banner__illustration:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.case-banner__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Résultats */
.case-results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}

.case-results__item {
  position: relative;
  padding: 35px;
  border-radius: 48px;
  text-align: center;
  background-color: #F4F7F9;
}

.case-results__illustration {
  height: 200px;
  position: relative;
  border-radius: 48px;
}
.case-results__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.case-results__card {
  position: relative;
  text-align: center;
  background-color: white;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 25px;
  margin-top: -50%;
  margin-bottom: 20px;
}
.case-results__card span {
  display: inline;
  border-radius: 25px;
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.case-results__title {
  color: #747474;
  font-weight: 400;
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .case-hero__container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .case-hero__content {
    width: 65%;
    padding-left: 5%;
  }
  .case-hero__text {
    margin-bottom: 4rem;
  }
  .case-hero__illustration {
    width: 35%;
  }
  .case-banner__container {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 20px;
    grid-auto-flow: row;
    max-width: 800px;
  }
  .case-banner__content {
    grid-column: auto;
  }
  .case-banner__illustration {
    grid-column: auto;
    height: 300px;
    grid-row: 1;
  }
  .case-content__text {
    width: 100%;
  }
  .case-content__illustration {
    width: 100%;
    max-width: 700px;
    height: 300px;
  }
  .case-results__list {
    grid-template-columns: 1fr;
    row-gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }
  .case-intro__content {
    width: 100%;
  }
  .case-intro__steps {
    width: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .case-hero__caracs {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .case-hero__illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .case-hero__illustration:after {
    content: "";
    display: block;
    background-color: rgba(1, 1, 1, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .case-hero__illustration img {
    border-radius: 0px;
  }
  .case-hero__illustration:before {
    display: none;
  }
  .case-hero__content {
    width: 100%;
    padding-left: 0;
    z-index: 10;
  }
}
@media (max-width: 550px) {
  .case-steps__list {
    grid-template-columns: 1fr 1fr;
  }
  .case-steps__item {
    text-align: center;
  }
  .case-steps__icon {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .case-content__text {
    padding: 80px 0;
  }
  .case-results__card span {
    font-size: 30px;
  }
}
.conditions__generales {
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
.conditions__generales h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.conditions__generales h3 {
  font-size: 18px;
  margin: 20px 0px;
}
.conditions__generales p {
  font-size: 14px;
  margin: 20px 0px;
  line-height: 1.7;
}
.conditions__generales ul {
  margin-left: 30px;
}
.conditions__generales ol {
  margin-left: 30px;
}
.conditions__generales li {
  margin: 10px 0px;
  display: block;
  line-height: 1.7;
}
.conditions__generales li:before  {
  content: "-";
  font-size: 16px;
  color: #FFCE00;
}

.conditions__generales li:before {
  content: "-";
  font-size: 16px;
  color: #FFCE00;
  margin-right: 5px;
}

.wsp-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.wsp-container h2 {
  margin: 20px 0px;
  text-transform: uppercase;
  font-size: 24px;
  color: #FFCE00;
  font-weight: 600;
}
.wsp-container ul {
  margin-left: 50px;
}
.wsp-container li {
  margin: 10px 0px;
  display: block;
}
.wsp-container li a {
  color: #FFCE00;
}
.wsp-container li a:hover {
  color: #FF8500;
}

.sub-service__header {
  padding-top: 80px;
}

.sitemap__title {
  font-size: 32px;
  font-weight: 600;
  color: #FFCE00;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.sitemap .menu__list {
  display: block !important;
  max-width: 400px;
  margin: 80px auto;
  text-align: center;
  position: relative;
  right: 0;
  width: 100%;
  padding: 0;
  background: none;
  height: auto;
}
.sitemap .menu__list li {
  display: block;
  text-align: center;
  margin-top: 0px;
  opacity: 1;
}
.sitemap .menu__list li + li {
  margin-top: 20px;
  margin-left: 0px;
}
.sitemap .menu__list a {
  color: #FFCE00;
  font-size: 32px;
  font-weight: 300;
  transition: all 0.2s ease-in-out 0s;
}
.sitemap .menu__list a:hover {
  color: #FFCE00;
}

/* Partenaires */
.about-partners {
  position: relative;
  margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.about-partners__list {
  display: grid;
  padding: 20px 0;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.about-partners__title {
  background-color: #fff;
  position: absolute;
  padding: 5px 20px;
  color: #747474;
  font-size: 22px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.about-partners__title em {
  color: #FF8500;
  font-style: normal;
}

.about-partners__item {
  margin: 0 auto;
  align-items: center;
  display: flex;
}

.about-partners__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-partners__icon img {
  height: auto;
  width: 100px;
  max-width: 100%;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}
.about-partners__icon img:hover {
  opacity: 1;
}

/* Services */
.about-services {
  position: relative;
  margin: 80px 0px;
}
.about-services:before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background-color: #F4F7F9;
  width: 80%;
  height: 100%;
  z-index: -1;
  border-radius: 0px 0px 50% 0px;
}

.about-services__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
}

.about-services__card {
  background-color: white;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.1);
  padding: 10%;
  border-radius: 10px;
}
.about-services__card .title {
  margin-top: 20px;
}

.about-services__wrapper {
  color: black;
}
.about-services__wrapper:hover .about-services__heading .title {
  color: #FF8500;
}

.about-services__content {
  padding-left: 20%;
}

.about-services__heading .title {
  transition: all 0.2s ease-in-out;
}

.about-services__desc {
  margin: 20px 0px;
}

.about-services__title {
  font-size: 42px;
  font-weight: 700;
}

.about-services__text {
  margin-top: 20px;
}

.about-services__icon {
  background-color: #F4F7F9;
  height: 50px;
  width: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-services__icon img {
  height: 25px;
  width: 25px;
}

/* Contenu */
.about-content {
  position: relative;
  background-color: #F4F7F9;
}

.about-content__bg {
  position: relative;
  background-color: transparent;
}
.about-content__bg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 600px;
  width: 250px;
  display: block;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 0px 0px 100px 100px;
  opacity: 0.9;
  transform: rotate(50deg);
}

.about-content .column--reversed .about-content__text {
  padding-left: 0;
  padding-right: 5%;
}

.about-content__illustration {
  position: relative;
  width: 45%;
  border-radius: 20px;
}
.about-content__illustration:before {
  display: block;
  content: "";
  padding-bottom: 100%;
}
.about-content__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.about-content__text {
  position: relative;
  width: 50%;
  padding: 80px 0px;
  padding-left: 5%;
}

.about-content__head {
  color: #FF8500;
  margin-bottom: 15px;
  display: block;
}

.about-content__title {
  font-weight: 700;
}

.about-content__desc {
  margin: 20px 0px;
}
.about-content__desc p {
  font-size: 16px;
}

/* Résultats */
.about-results__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
}

.about-results__item {
  position: relative;
  padding: 10%;
  border-radius: 48px;
  text-align: center;
  background-color: #F4F7F9;
}

.about-results__illustration {
  height: 200px;
  position: relative;
  border-radius: 48px;
}
.about-results__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.about-results__card {
  position: relative;
  text-align: center;
  display: inline-flex;
  border-radius: 25px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
}
.about-results__card span {
  display: inline;
  border-radius: 25px;
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-results__title {
  color: #747474;
  font-weight: 400;
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .about-services:before {
    width: 100%;
    border-radius: 0;
  }
  .blog-footer__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
    max-width: 800px;
    margin: 0 auto;
  }
  .blog-footer__card {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .blog-footer__content {
    padding: 20px 10%;
  }
  .blog-footer__illustration {
    width: 200px;
  }
  .blog-footer__title {
    font-size: 28px;
  }
  .blog-footer__heading {
    grid-template-columns: 1fr;
  }
  .about-partners__list {
    margin-top: 30px;
  }
  .about-partners__title {
    text-align: center;
  }
  .about-services__container {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    width: 80%;
  }
  .about-services__content {
    grid-row: 1;
    padding: 0 10%;
    margin-bottom: 60px;
  }
  .about-services__list {
    padding: 0 10%;
  }
  .about-content .container {
    flex-direction: column-reverse;
    max-width: 800px;
  }
  .about-content__text {
    width: 100%;
  }
  .about-content__illustration {
    width: 100%;
  }
  .about-results__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .about-services__container {
    width: 100%;
  }
  .about-partners__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-footer__card {
    grid-template-columns: 1fr;
  }
  .blog-footer__illustration {
    width: 100%;
    height: 250px;
  }
  .blog-footer__title {
    font-size: 24px;
  }
  .blog-footer__content {
    padding: 40px 5%;
  }
}
@media (max-width: 600px) {
  .about-services__list {
    grid-template-columns: 1fr;
  }
  .about-results__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 500px) {
  .about-partners__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .blog-footer__title {
    font-size: 20px;
  }
}
.post-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 70px;
  row-gap: 70px;
}

.post-header {
  position: relative;
  height: 45vh;
  width: 100%;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}
.post-header:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-image: url("../img/icon-lwa.svg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.post-header__container {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.post-header__content {
  color: white;
  width: 70%;
  position: relative;
  z-index: 2;
}

.post-header__title {
  font-size: 2.5rem;
  max-width: 90%;
  margin-top: 20px;
  line-height: 1;
}

.post-header__infos {
  position: relative;
  z-index: 99;
  width: 30%;
}

.post-author {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
}
.post-author img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
}

.post-author__content {
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.post-author__name {
  font-weight: 600;
  font-size: 16px;
  display: block;
  color: white;
}

.post-author__date {
  color: #fff;
  width: 100%;
}

.post-share {
  position: relative;
}

.post-share__item a {
  color: white;
}

/* CONTENT */
.post-container {
  margin-top: -50px;
}

.post-illustration {
  position: relative;
  width: 100%;
  border-radius: 20px;
}
.post-illustration:before {
  content: "";
  display: block;
  padding-bottom: 60%;
}
.post-illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.post-illustration:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -20%;
  right: -45%;
  height: 100%;
  width: 80%;
  background-image: url("../img/shape-line.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.post-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5 {
  margin-bottom: 40px;
}
.post-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.post-content h3 {
  font-size: 18px;
  margin: 20px 0px;
}
.post-content p {
  font-size: 14px;
  margin: 20px 0px;
  line-height: 1.7;
}
.post-content ul {
  margin-left: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.post-content ul ul {
  margin: 10px 0px;
  margin-left: 40px;
}
.post-content ul ul li {
  padding-left: 15px;
}
.post-content ul ul li:before {
  content: "•";
  top: 0;
  background: none;
  font-size: 20px;
  line-height: 1;
}
.post-content ol {
  margin-left: 30px;
}
.post-content li {
  position: relative;
  margin: 10px 0px;
  padding-left: 30px;
  display: block;
  font-size: 14px;
  line-height: 1.7;
}
.post-content li:before {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-image: url("../img/arrow-primary.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.post-content img {
  margin: 40px 0px;
}

.post-summary {
  padding: 80px 0 40px;
}

/* SOMMAIRE */
#ez-toc-container {
  padding: 20px 40px;
  margin: 0 auto;
}

.ez-toc-title {
  color: #FF8500;
  font-size: 32px !important;
  font-weight: 700 !important;
}

.ez-toc-list li:before {
  display: none;
}

@media (max-width: 768px) {
  .post-header__container {
    display: block;
  }
  .post-header__infos {
    width: 100%;
  }
  .post-header__content {
    width: 100%;
    padding-top: 60px;
  }
  .post-header__title {
    font-size: 1.5rem;
    line-height: 1;
  }
  #ez-toc-container {
    width: 100% !important;
  }
}
@media (max-width: 550px) {
  .post-header {
    height: auto;
  }
  .post-header__content {
    padding: 100px 0px;
    text-align: center;
  }
  .post-header__infos {
    display: none;
  }
  .post-content {
    text-align: left;
  }
  .post-content ul {
    margin-left: 0;
  }
  .post-content ul ul {
    margin-left: 0px;
  }
}
.jobs-hero {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #F4F7F9;
}

.jobs-hero__content {
  position: relative;
  padding: 80px 0 50px;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.jobs-hero__desc {
  margin: 20px 0;
}

.jobs-hero__title {
  font-weight: 800;
  font-size: 48px;
  font-style: normal;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jobs-hero__components {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.jobs-hero__item {
  position: absolute;
  border-radius: 50%;
  border: 6px solid white;
}
.jobs-hero__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
}

.jobs-hero__item-1 {
  height: 120px;
  width: 120px;
  top: 21%;
  left: 6%;
}

.jobs-hero__item-2 {
  height: 200px;
  width: 200px;
  bottom: 17%;
  left: 11%;
}

.jobs-hero__item-3 {
  height: 70px;
  width: 70px;
  top: 19%;
  left: 23%;
}

.jobs-hero__item-4 {
  height: 100px;
  width: 100px;
  right: 20%;
  bottom: 15%;
}

.jobs-hero__item-5 {
  height: 200px;
  width: 200px;
  right: 10%;
  top: 18%;
}

.jobs-hero__item-6 {
  height: 120px;
  width: 120px;
  right: 5%;
  bottom: 15%;
}

.certifications__container {
  position: relative;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  border-radius: 20px;
  padding: 50px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.certifications__title {
  color: white;
  width: 35%;
  font-size: 28px;
  font-weight: 700;
}
.certifications__list {
  position: relative;
  display: flex;
  justify-content: center;
  width: 65%;
  z-index: 2;
}
.certifications__item {
  width: 90px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 20px;
}
.certifications__item + .certifications__item {
  margin-left: 20px;
}
.certifications__item:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.certifications-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../img/shape-3.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
}

.logo-certifications {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.issues {
  position: relative;
  background-color: #F4F7F9;
}
.issues-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/shape-4.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 150% 50%;
  filter: blur(50px);
}
.issues__heading {
  width: 30%;
}
.issues__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}
.issues__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  width: 65%;
}
.issues__item {
  position: relative;
  border-radius: 30px;
  background-color: white;
  padding: 40px;
  height: auto;
  flex: 1 0 48%;
}
.issues__item:hover .issues__title {
  color: #FF8500;
}
.issues .link {
  margin-top: 20px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 400;
}
.issues__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

.referral {
  display: grid;
  overflow: hidden;
}
.referral-heading {
  max-width: 80%;
}
.referral-content {
  position: relative;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.referral__item {
  padding: 20px 20px;
}
.referral__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.referral__text p {
  text-align: justify;
  hyphens: auto;
}

.referral-components {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/shape-2.svg");
  background-size: auto 70%;
  background-repeat: no-repeat;
  background-position: 0% 20%;
  filter: blur(50px);
  z-index: -99;
  display: none;
}

.referral-shape {
  position: absolute;
  top: 0;
  right: -300px;
  height: 500px;
  width: 800px;
  background-image: url("../img/shape-line.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -99;
  display: none;
}

@media screen and (min-width: 1024px) {
  .referral {
    grid-auto-flow: column;
    align-items: center;
  }
}
@keyframes AnimateBG {
  0% {
    background-position: 150% 50%;
    background-size: auto 140%;
  }
  50% {
    background-position: 50% 50%;
    background-size: auto 200%;
  }
  100% {
    background-position: 150% 50%;
    background-size: auto 140%;
  }
}
.cls-1 {
  fill: none;
  stroke: url(#linear-gradient);
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 8px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.services-intro {
  position: relative;
  z-index: 10;
  padding-bottom: 100px;
}
.services-intro__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-top: -5rem;
}
.services-intro__heading {
  width: 60%;
}
.services-intro__title {
  font-size: 8em;
  font-weight: 700;
}
.services-intro__desc {
  font-size: 16px;
}
.services-intro__desc p + p {
  margin-top: 20px;
}
.services-intro__menu {
  width: 40%;
  text-align: right;
}
.services-intro__link {
  color: black;
  position: relative;
  border: 1px solid black;
  padding: 20px 20px;
  border-radius: 20px;
  margin: 10px;
  display: inline-block;
}
.services-intro__link:hover .services-intro__bg {
  opacity: 1;
}
.services-intro__link:hover .cls-1 {
  animation: dash 1s linear;
  animation-fill-mode: forwards;
}
.services-intro__link:hover {
  border: 1px solid white;
}

.services-intro__bg {
  position: absolute;
  height: auto;
  width: 110%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 4rem;
  padding: 40px 0;
}
.services-cards .card {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 1.5rem;
  top: 0;
  border-radius: 2rem;
  transition: all 0.2s ease-in-out;
}
.services-cards .card:hover {
  top: 5px;
}
.services-cards .card:hover.card:before {
  transform: translate3d(5px, 5px, 0) scale(1);
}
.services-cards .card:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(30deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  transform: translate3d(10px, 10px, 0) scale(1);
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
}
.services-cards .card:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  border-radius: inherit;
}
.services-cards .card__title {
  color: white;
  font-weight: 600;
  display: inline-flex;
  height: 100%;
  align-items: end;
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}

.partners {
  background-color: black;
}
.partners--home {
  padding-bottom: 80px;
}
.partners__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  grid-gap: 4rem;
}
.partners__item {
  display: grid;
  opacity: 0.9;
}
.partners__logo {
  height: 100px;
  width: 100%;
  object-fit: contain;
}
.partners__cta {
  margin-top: 80px;
  text-align: center;
}

/* BLOG INTRO */
.blog-intro__heading {
  width: 100%;
}

.blog-intro__title {
  font-size: 100px;
  font-weight: 800;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: white;
}

.blog-intro__list {
  position: relative;
  width: 100%;
}

.blog-card {
  display: grid;
  grid-template-columns: auto 3fr 2fr;
  column-gap: 40px;
  padding: 5rem 0;
  border-bottom: 1px solid rgb(200, 200, 200);
}
.blog-card:hover .blog-card__desc {
  max-height: 300px; /* Adjust according to your content */
  transition: max-height 0.5s ease-in;
}
.blog-card:hover .blog-card__illustration {
  display: block;
  opacity: 1;
}
.blog-card__icon {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.blog-card__icon img {
  width: 100px;
  height: 100px;
}

.blog-card__content {
  line-height: 24px;
  padding-right: 10%;
}

.blog-card__title {
  font-weight: 600;
  font-size: 2.8rem;
  max-width: 800px;
  margin-bottom: 20px;
  margin-top: 15px;
  line-height: 1.2;
}
.blog-card__title a {
  color: #000;
}
.blog-card__title a:hover {
  color: #FF8500;
}

.blog-card__desc {
  font-size: 18px;
  max-height: 0;
  transition: max-height 0.5s ease-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.blog-card__illustration {
  position: relative;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.blog-card__illustration:before {
  content: "";
  height: 50px;
  width: 50px;
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
}
.blog-card__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog-intro__cta {
  margin-top: 4rem;
  text-align: center;
}

/* ABOUT INTRO */
.about-intro {
  position: relative;
}

.about-intro__container {
  background-size: 80% auto;
  background-repeat: no-repeat;
  background-position: right center;
}

.about-intro__content {
  max-width: 40%;
  padding: 150px 0;
}

.about-intro__title {
  font-style: normal;
  display: table;
  background: linear-gradient(328deg, rgb(255, 133, 0) 20%, rgb(255, 206, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 0.8;
  font-size: 5rem;
  padding: 30px 0;
}

.about-intro__link {
  color: white;
  padding: 10px 0px;
  font-size: 4rem;
  font-weight: 700;
  display: inline-block;
  margin: 10px 0px;
}
.about-intro__link:hover {
  color: white;
}
.about-intro__link:hover:after {
  transform: translateY(5px);
}
.about-intro__link:after {
  content: "";
  height: 4px;
  width: 100%;
  display: block;
  background-color: white;
  transition: all 0.2s ease-in-out;
}

.about-intro__quote {
  margin-top: 50px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote__title {
  color: white;
  font-size: 3rem;
  text-align: center;
  font-size: 700;
  margin-top: 50px;
}
.quote__title em {
  color: #FF8500;
  font-style: normal;
}

.quote__author {
  color: #FF8500;
  font-size: 24px;
  margin-top: 15px;
  display: block;
}

@media (max-width: 1250px) {
  .referral {
    grid-auto-flow: row;
  }
  .referral-content {
    margin-top: 50px;
    column-gap: 80px;
    row-gap: 40px;
  }
  .referral__item {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .certifications__title {
    width: 100%;
    font-size: 36px;
    margin-bottom: 20px;
  }
  .certifications__list {
    width: 100%;
  }
  .issues__heading {
    width: 100%;
  }
  .issues__heading .heading__title {
    text-align: center;
  }
  .issues__heading .heading__title em {
    display: block;
  }
  .issues__list {
    width: 100%;
  }
  .services-intro__heading {
    width: 100%;
  }
  .services-intro__menu {
    display: none;
  }
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card__title {
    font-size: 2rem;
  }
  .blog-card__icon img {
    height: 50px;
    width: 50px;
  }
  .referral-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
#breadcrumbs {
  line-height: 1.3;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .about-intro__content {
    max-width: 60%;
  }
  .referral-content {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .partners__list {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  .slider-case__illustration {
    min-height: 350px;
  }
  .blog-intro__title {
    font-size: 64px;
  }
  .blog-card {
    padding: 2rem 0;
    grid-template-columns: auto 1fr;
  }
  .blog-card__title {
    font-size: 1.4rem;
  }
  .blog-card__illustration {
    grid-row: 2/2;
  }
  .blog-card__illustration:before {
    display: none;
  }
  .certifications__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    row-gap: 30px;
    column-gap: 30px;
  }
  .certifications__item {
    margin-left: 0 !important;
    width: auto;
  }
  .certifications-bg {
    display: none;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
  .services-intro__header {
    margin-top: 5rem;
  }
  .services-intro__title {
    font-size: 4em;
    margin-bottom: 20px;
  }
  .about-intro__container {
    background-size: 100% auto;
  }
  .about-intro__content {
    margin: 0 auto;
    font-size: 4rem;
    max-width: 100%;
  }
  .about-intro__title {
    font-size: 3rem;
    display: block;
  }
  .about-intro__link {
    font-size: 3rem;
  }
}
@media (max-width: 650px) {
  .referral-content {
    grid-template-columns: 1fr;
  }
  .referral-heading {
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .certifications__container {
    padding: 50px 10%;
  }
  .certifications__title {
    font-size: 28px;
  }
  .quote__title {
    font-size: 2rem;
  }
  .about-intro__content {
    padding: 60px 0px;
    text-align: center;
  }
  .about-intro__title {
    text-align: center;
  }
}
@media (max-width: 550px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card__icon img {
    transform: rotate(180deg);
  }
}

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