@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://use.typekit.net/mlr8lpv.css");
@media (max-width: 500px) {
  .btn--big {
    padding: 15px 40px;
    font-size: 18px;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

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

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

header a {
  text-decoration: none;
}

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

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

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

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.25;
  font-display: swap;
  font-family: "trajan-pro-3", serif;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

h2 {
  font-size: 38px;
  text-transform: uppercase;
}

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: 15px 40px;
  color: #fff;
  background: #000;
  font-size: 18px;
  transition: all 0.2s ease-in-out 0s;
  margin-top: 2rem;
  display: inline-block;
  font-weight: 500;
  font-family: "Lato", sans-serif;
  border: 1px solid #000;
  border-radius: 10px;
}
.btn:hover {
  background-color: transparent;
  color: #006633;
  border: 1px solid #006633;
}
.btn--primary {
  background: #006633;
  border: 1px solid #006633;
}
.btn--white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #006633;
}
.btn--bordered {
  background-color: transparent;
  color: #006633;
  border: 1px solid #006633;
}
.btn--bordered:hover {
  background-color: #006633;
  color: white;
}
.btn--gradient {
  background: linear-gradient(310deg, #005628 40%, #2ba162 100%);
  border: none;
}
.btn--gradient:hover {
  transform: scale(1.03);
  border: none;
  color: black;
}
.btn--small {
  padding: 10px 20px;
  font-size: 16px;
}
.btn--big {
  padding: 30px 40px;
  font-size: 24px;
}

.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: #006633;
  font-weight: 700;
  padding-bottom: 40px;
  text-align: center;
  margin-bottom: 0;
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  z-index: 10;
  position: relative;
}
.heading--center {
  text-align: center;
}
.heading--left {
  text-align: left;
  margin: 0;
}
.heading__head {
  text-transform: uppercase;
  color: #006633;
  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: 24px;
  margin-top: 0;
  position: relative;
  font-family: "trajan-pro-3", serif;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
.heading__title em {
  display: inline-block;
  font-style: normal;
}
.heading__title span {
  font-style: normal;
}
.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 auto;
  max-width: 800px;
}
.heading__desc p {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}
.heading__desc p + p {
  margin-top: 20px;
}
.heading__desc em {
  font-weight: 700;
  font-style: normal;
}
.heading--column {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

.section__intro {
  max-width: 500px;
}
.section__title {
  position: relative;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #006633;
}
.section__title em {
  color: #006633;
  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--primary {
  color: #006633;
  -webkit-text-stroke-color: #006633;
}
.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(310deg, #005628 40%, #2ba162 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title--half {
  width: 50%;
}

@media (max-width: 1024px) {
  .title--section {
    display: none;
  }

  .title--section-reversed {
    display: none;
  }
}
@media (max-width: 768px) {
  .heading__title {
    font-size: 24px;
  }

  .title--half {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .heading {
    font-size: 18px;
    color: #000;
    padding: 25px 0px;
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }
  .heading--section {
    color: #006633;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
  }
  .heading__title {
    font-size: 20px;
    margin-top: 0;
    padding: 20px 0px;
    position: relative;
    text-align: center;
  }
  .heading__desc {
    text-align: center;
  }
  .heading__subtitle {
    font-size: 20px;
  }
  .heading__divider {
    border-top: 2px solid #006633;
    width: 200px;
    margin: 15px auto;
  }
}
@media (max-width: 450px) {
  .heading__title {
    font-size: 18px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__desc {
    font-size: 16px;
  }
}
.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: relative;
  margin-top: 20px;
  z-index: 100;
  cursor: pointer;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
}
.slick-dots button {
  background-color: #006633;
  cursor: pointer;
  border: 1px solid #006633;
  text-indent: -999999px;
  width: 15px;
  height: 7px;
  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: 15px;
  height: 7px;
  background-color: #006633;
  border: 1px solid #006633;
}

.contact-block__form {
  background-color: #fff;
  width: calc(75% - 20px);
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(1, 1, 1, 0.1);
  padding: 60px 5%;
}

.contact-block__illustration {
  width: 25%;
}
.contact-block__illustration.illustration-mobile {
  display: none;
}

.contact-block__illustration .split-image {
  width: 100%;
  height: 170px;
  background-size: auto 530px;
  background-repeat: no-repeat;
  background-position: center 0%;
  border-radius: 20px;
  margin-bottom: 10px;
  display: block;
}

.contact-block__illustration .split-image:nth-child(2) {
  background-position: center calc(0% - 170px);
}

.contact-block__illustration .split-image:nth-child(3) {
  background-position: center calc(0% - 340px);
  margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .contact-block__container {
    flex-direction: column-reverse;
  }

  .contact-block__form {
    width: 100%;
    margin-top: 40px;
  }

  .contact-block__illustration {
    width: 100%;
    height: 300px;
  }
  .contact-block__illustration.illustration-desktop {
    display: none;
  }
  .contact-block__illustration.illustration-mobile {
    display: block;
  }
  .contact-block__illustration .split-image {
    width: 100%;
    background-size: cover;
    background-position: center center;
    height: 300px;
  }
}
.content-block {
  position: relative;
}

.content-block__container:nth-child(odd) .content-block {
  flex-direction: row-reverse;
}
.content-block__container:nth-child(odd) .content-block__content {
  padding-left: 0;
  padding-right: 7%;
}

.content-block__illustration {
  position: relative;
  width: 40%;
  border-radius: 20px;
}
.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: 60%;
  padding: 50px 0px;
  padding-left: 10%;
}

.content-block__head {
  color: #006633;
  font-weight: 700;
  text-transform: uppercase;
}

.content-block__title {
  font-size: 24px;
  -webkit-text-stroke-color: #000;
  -webkit-text-stroke-width: 2px;
  margin: 20px 0px;
  line-height: 1.7;
}

.content-block__text p {
  font-weight: 300;
  color: #777777;
  margin-bottom: 20px;
}
.content-block__text h3, .content-block__text h4, .content-block__text h4 {
  font-family: "Lato";
  margin-bottom: 20px;
}
.content-block__text ul {
  margin-bottom: 20px;
  margin-left: 20px;
}
.content-block__text li {
  font-weight: 300;
  color: #777777;
  margin-bottom: 10px;
  list-style: disc;
}

.content-block__infos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 40px 0px 20px;
}

.content-block__item {
  position: relative;
  display: flex;
  align-items: center;
}
.content-block__item:hover .title {
  color: #006633;
}
.content-block__item:hover img {
  background-color: #777777;
}
.content-block__item img {
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: rgba(0, 86, 40, 0.3);
}
.content-block__item span {
  padding: 10px;
  height: 50px;
  width: 50px;
  border-radius: 5px;
  background-color: rgba(0, 86, 40, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
}
.content-block__item .title {
  font-family: "Lato";
  font-weight: 800;
  font-size: 18px;
  text-transform: none;
  padding-left: 20px;
  transition: all 0.3s ease-in-out;
}
.content-block__item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 1024px) {
  .content-block {
    flex-direction: column-reverse;
  }

  .content-block__illustration {
    width: 100%;
  }
  .content-block__illustration:before {
    display: block;
    padding-bottom: 60%;
    content: "";
  }

  .content-block__content {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 550px) {
  .content-block__infos {
    grid-template-columns: 1fr;
  }

  .content-block__title {
    font-size: 18px;
  }
}
.primary-header {
  position: relative;
  width: 100%;
  transition: background-color 0.5s;
  background-color: white;
}

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

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

/* Banner header */
.header-banner {
  background-color: #f6f7f9;
  padding: 10px 0;
}

.header-banner__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header-banner__block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 30px;
}
.header-banner__block:first-child {
  padding-left: 0;
}
.header-banner__block p {
  padding-left: 10px;
}
.header-banner__block img {
  height: 20px;
  max-width: 20px;
}

/* Hero Demo Content */
.hero {
  width: 100%;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero:after {
  content: "";
  background-color: rgba(1, 1, 1, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 4;
}
.hero__content {
  position: relative;
  z-index: 10;
}
.hero__title {
  font-size: 3rem;
  color: white;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
}
.hero__title em {
  color: #006633;
  font-style: normal;
  -webkit-text-stroke: 2px #006633;
}

.hero__cta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero__cta a {
  text-align: center;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

/* Hero end*/
@media (max-width: 768px) {
  .hero__title {
    font-size: 28px;
  }
}
@media (max-width: 550px) {
  .hero__title {
    font-size: 20px;
  }
}
.navbar {
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  transition: height 0.25s;
  padding: 10px 0;
  background-color: white;
  justify-content: space-between;
}
.navbar .logo img {
  height: 4rem;
  width: auto;
}

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

.nav-list .menu-item {
  position: relative;
  transition: color 0.25s;
  color: black;
  display: block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Lato";
}
.nav-list .menu-item a {
  color: black;
  font-family: "trajan-pro-3", serif;
  padding: 20px 20px;
}
.nav-list .menu-item a:hover {
  color: #006633;
}

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

.menu-item.button {
  display: inline-block;
  background: #006633;
  border-radius: 10px;
  transition: background-color 0.25s;
  margin-left: 30px;
  transition: all 0.2s ease-in-out;
}
.menu-item.button a {
  color: white;
  font-weight: 700;
  padding: 15px 25px;
  display: block;
}
.menu-item.button:before {
  display: none;
}
.menu-item.button:hover {
  transform: scale(1.03);
}

/* DROPDOWN */
.nav-list .menu-item ul {
  display: none;
  background-color: white;
}

.nav-list .menu-item-has-children {
  padding-right: 10px;
  margin-right: 10px;
}

.nav-list .menu-item-has-children > a:aft {
  content: "";
  background-image: url("../img/arrow-down.png");
  background-size: contain;
  background-position: center center;
  height: 8px;
  width: 8px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-list .menu-item-has-children:hover .sub-men {
  display: block;
}

.nav-list .sub-menu {
  position: absolute;
  bottom: -10px;
  left: 0;
  transform: translateY(100%);
  padding: 10px 20px;
  background-color: green;
  z-index: 10;
  min-width: 200px;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.2);
  border-radius: 10px;
}
.nav-list .sub-menu li {
  line-height: 1.6;
}
.nav-list .sub-menu li:before {
  display: none;
}
.nav-list .sub-menu a {
  padding: 10px 0px;
  display: block;
}

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

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

.nav-burger.active {
  position: fixed;
  right: 10%;
  top: 25px;
}

.nav-burger div {
  width: 30px;
  height: 3px;
  margin: 5px;
  background: #006633;
  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: 1270px) {
  .navbar {
    justify-content: space-between;
  }

  .navbar .nav-list {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    z-index: 99;
    background: #fff;
    padding: 100px 10% 0px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    text-align: right;
    transition: right 0.5s ease-in;
  }
  .navbar .nav-list.active {
    right: 0;
    width: 100%;
    overflow-y: scroll;
  }
  .navbar .nav-list .button {
    background-color: #006633;
    padding: 15px 0px;
  }
  .navbar .nav-list .button a {
    font-weight: 700;
    color: #fff;
    padding: 0 1rem;
    display: block;
  }

  .nav-list .menu-item {
    padding: 25px 0px;
    font-size: 16px;
    position: relative;
  }
  .nav-list .menu-item:before {
    display: none;
  }
  .nav-list .menu-item:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #006633;
    height: 1px;
  }
  .nav-list .menu-item.button:after {
    display: none;
  }
  .nav-list .menu-item.wpmenucartli:after {
    display: none;
  }

  .nav-list .nav-link {
    padding: 20px 20px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
  }

  .nav-list .button {
    text-align: center;
    margin: 1rem auto;
    background-color: #006633;
  }

  .nav-list .button .nav-link {
    color: white !important;
  }

  .nav-burger {
    display: block;
    visibility: visible;
  }

  .nav-logo.active {
    opacity: 1;
    display: block;
  }

  .wpmenucartli:after {
    display: none;
  }

  .nav-list .menu-item-has-children {
    margin-right: 0px;
  }
}
@media (max-width: 550px) {
  .nav-list .menu-item {
    padding: 20px 0px;
    font-size: 14px;
    position: relative;
  }

  .navbar .nav-list {
    padding: 60px 10% 0px;
  }
}
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--black {
  background-color: #000;
  z-index: 2;
}
.section--grey {
  background-color: #f6f7f9;
  z-index: 2;
}

.container {
  width: min(100% - 30px, 1280px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--post {
  width: min(100% - 30px, 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: 60px 0px;
  }
}
.hero-inside {
  height: 80vh;
  padding: 100px 0;
}

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

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

.hero-inside--left {
  padding-right: 5rem;
}

.hero-inside--right {
  height: 100%;
}

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

.hero-inside__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 10px;
  font-family: "Lato";
  text-transform: uppercase;
  color: #006633;
}
.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;
  width: 100%;
  height: 120px;
  display: grid;
  background-color: #f6f7f9;
  border-radius: 20px;
  margin-top: 15px;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  align-items: center;
  padding: 0px 40px;
}

.hero-inside__cta a {
  display: block;
}

.hero-card__item {
  text-align: center;
}
.hero-card__item span {
  font-weight: 900;
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
.hero-card__item .title {
  font-size: 12px;
  color: #777777;
  text-transform: uppercase;
}

.hero-inside__desc {
  margin: 2rem 0;
  font-weight: 300;
}
.hero-inside__desc p {
  margin-bottom: 20px;
}
.hero-inside__desc p:last-child {
  margin-bottom: 0;
}
.hero-inside__desc h2,
.hero-inside__desc h3,
.hero-inside__desc h4 {
  font-family: "Lato";
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: none;
}

.hero-inside__illustration {
  display: flex;
  flex-wrap: wrap;
}

.hero-inside__illustration .split-image {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("../img/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  display: block;
}
.hero-inside__illustration .split-image:after {
  content: "";
  height: 30px;
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
}

.hero-inside__illustration .split-image:nth-child(2) {
  background-position-y: -200px;
}

.hero-inside__illustration .split-image {
  margin: 15px 0;
}

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

/* HEADER */
.service-header {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.service-header:after {
  content: "";
  background-color: rgba(1, 1, 1, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.service-header__container {
  padding: 100px 0px;
}

.service-header__content {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  z-index: 1;
  padding-left: 0px;
}

.service-header__title {
  position: relative;
  color: white;
  font-family: "trajan-pro-3", serif;
  font-weight: 700;
  font-size: 3.5rem;
  padding: 40px 0 20px;
  padding-left: 200px;
  text-transform: uppercase;
  text-align: left;
}
.service-header__title:before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  height: 60px;
  width: 500px;
  background-color: #006633;
  z-index: -1;
  transform: translateY(-50%);
}

.service-header__desc {
  color: white;
  padding-left: 200px;
  text-align: left;
  max-width: 800px;
  font-size: 18px;
  font-weight: 300;
}

.service-header__cta {
  padding-left: 200px;
  position: relative;
  z-index: 10;
}

.service-header__social {
  padding-left: 200px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.service-header__social img {
  position: relative;
  height: 30px;
  transition: all 0.2s ease-in-out;
}
.service-header__social img:before {
  position: absolute;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 50%;
}
.service-header__social a {
  margin-right: 5px;
}
.service-header__social a:last-child {
  margin-right: 0;
}
.service-header__social a:hover img {
  transform: scale(0.8);
}

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

.services__item {
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(1, 1, 1, 0.16);
  padding: 50px 30px;
}
.services__item:nth-child(1) {
  background-color: rgba(0, 86, 40, 0.3);
}
.services__item:nth-child(2) {
  background-color: rgba(0, 86, 40, 0.3);
}
.services__item:nth-child(3) {
  background-color: rgba(0, 86, 40, 0.3);
}

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

.services__desc {
  margin: 15px 0 0px;
  font-weight: 300;
}

.services__illustration {
  position: relative;
  height: 250px;
  width: 100%;
  object-fit: cover;
  margin-top: 30px;
  border-radius: 20px;
  border: 5px solid white;
}

/* PROCESS */
.process__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.process__gallery {
  width: 40%;
}

.process__illustration {
  position: relative;
  width: 100%;
  height: 33.33%;
  border-radius: 20px;
}
.process__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.process__illustration + .process__illustration {
  margin-top: 20px;
}

.process__content {
  width: 60%;
  padding: 80px 8%;
}

.process__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}

.process__list {
  position: relative;
}

.process__item {
  margin: 30px 0;
}
.process__item img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
.process__item .title {
  display: grid;
  align-items: center;
  color: #006633;
  grid-template-columns: 30px 1fr;
}
.process__item .title h3 {
  font-family: "Lato";
  padding-left: 20px;
  text-transform: none;
  font-weight: 600;
}
.process__item .desc {
  margin-top: 20px;
  font-weight: 300;
}

.process__cta {
  width: 100%;
  text-align: center;
}

.process__btn {
  margin-top: 20px;
}
.process__btn img {
  max-height: 45px;
  transition: all 0.2s ease-in-out;
}
.process__btn a:hover img {
  transform: scale(1.02);
}
.process__btn a + a {
  margin-left: 10px;
}

.process__components {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/smoke.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 100% 0%;
  z-index: -99;
  opacity: 0.4;
}

.process.register .process__item .title h3 {
  font-size: 1rem;
}
.process.register .process__illustration {
  height: 100%;
}

/* REVIEWS */
.reviews__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

.reviews__video {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
  display: block;
}
.reviews__video:hover:before {
  opacity: 0;
}
.reviews__video:hover:after {
  opacity: 0;
}
.reviews__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.3);
  border-radius: 20px;
  z-index: 3;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.reviews__video:after {
  content: "";
  background-image: url("../img/icon-play.svg");
  background-size: 60px 60px;
  position: absolute;
  height: 60px;
  width: 60px;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.reviews__video img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.reviews__item {
  transition: all 0.2s ease-in-out;
}
.reviews__item:hover {
  transform: translateY(-20px);
}
.reviews__item:nth-child(2) .reviews__content {
  background-color: rgba(0, 86, 40, 0.3);
}
.reviews__item:nth-child(3) .reviews__content {
  background-color: rgba(0, 86, 40, 0.3);
}

.reviews__content {
  background-color: rgba(0, 86, 40, 0.3);
  padding: 30px;
  margin-top: 20px;
  border-radius: 20px;
}
.reviews__content .name {
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
}
.reviews__content .function {
  font-weight: 600;
  font-size: 16px;
  margin: 5px 0px;
  line-height: 1.4;
}
.reviews__content .desc {
  color: #777777;
}

.reviews__link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
}

/* GOALS */
.goals__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
}

.goals__item {
  position: relative;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(1, 1, 1, 0.16);
  padding: 50px 30px;
  transition: all 0.2s ease-in-out;
}
.goals__item:hover {
  transform: scale(1.03);
}
.goals__item:before {
  content: "";
  display: block;
  padding-bottom: 120%;
}

.goals__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background-color: rgba(1, 1, 1, 0.1);
  border-radius: 20px;
}

.goals__title {
  position: relative;
  margin-bottom: 20px;
  font-weight: 800;
  color: white;
  font-size: 1.4rem;
  hyphens: auto;
  text-shadow: 1px 1px 2px black;
  max-width: 90%;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: white;
}
.goals__title a {
  color: #2F2F2F;
}
.goals__title a:hover {
  color: #006633;
}

.goals__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* 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: linear-gradient(310deg, #005628 40%, #2ba162 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(310deg, #005628 40%, #2ba162 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;
}

/* PROGRESS */
.progress {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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

.progress__list {
  width: 100%;
  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: #f6f7f9;
  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(310deg, #005628 40%, #2ba162 100%);
  color: white;
}

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

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

.progress-content {
  width: 60%;
  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;
}

@media (max-width: 1024px) {
  .process__container {
    flex-direction: column-reverse;
  }

  .process__content {
    width: 100%;
    padding: 80px 0px;
  }

  .process__gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }

  .process__illustration {
    position: relative;
    height: 100%;
    margin-top: 0 !important;
  }
  .process__illustration:before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .reviews__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .goals__item:before {
    padding-bottom: 100%;
  }

  .hero-inside--left {
    width: 100%;
    padding-right: 0;
  }

  .hero-inside--right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .process__gallery {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .process__illustration:before {
    padding-bottom: 50%;
  }

  .goals__item:before {
    padding-bottom: 70%;
  }

  .service-header__container {
    padding: 100px 10%;
  }

  .service-header__title {
    padding-left: 0;
    font-size: 28px;
    -webkit-text-stroke-width: 2px;
  }
  .service-header__title:before {
    display: none;
    height: 15%;
    width: 70%;
  }

  .service-header__cta {
    padding-left: 0;
  }

  .service-header__social {
    padding-left: 0;
  }

  .service-header__desc {
    padding-left: 0;
  }
}
@media (max-width: 600px) {
  .reviews__list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .reviews__video {
    height: 80vh;
  }

  .goals__item:before {
    padding-bottom: 50%;
  }

  .process__title {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .hero-inside__title {
    font-size: 1.2rem;
  }

  .hero-inside__card {
    column-gap: 10px;
    padding: 0;
  }

  .hero-card__item span {
    font-size: 20px;
  }
  .hero-card__item .title {
    font-size: 10px;
  }

  .hero-inside__cta a {
    margin-top: 20px;
  }
}
.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: "Lato", sans-serif;
  display: block;
  width: 100%;
}
select:focus {
  border-color: #006633;
}

/* FORM */
.gform_title {
  display: none;
}

.gform_required_legend {
  display: none;
}

.gfield {
  margin-bottom: 5px !important;
}

legend {
  color: black !important;
  font-size: 14px !important;
}

.gform-field-label {
  color: #777777;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.gfield_label {
  color: #777777;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.gfield input {
  border: none;
  border-bottom: 2px solid #DBDBDB;
  font-size: 16px;
  font-family: "Lato";
  border-radius: 0px;
  padding: 10px 20px;
}

.gfield textarea {
  border: none;
  border-bottom: 2px solid #DBDBDB;
  font-size: 16px;
  font-family: "Lato";
  border-radius: 5px;
  padding: 10px 20px;
}

.gfield select {
  border: none;
  border-bottom: 2px solid #DBDBDB;
  font-size: 16px;
  font-family: "Lato";
  border-radius: 5px;
  padding: 10px 20px;
}

.gform_button {
  margin-top: 20px;
  border: 1px solid white;
  color: #fff;
  font-size: 14px;
  transition: all 0.2s ease-in-out 0s;
  background-color: #006633;
  font-family: "Lato", sans-serif;
  padding: 10px 40px;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-left: auto;
  border-radius: 10px;
}
.gform_button:hover {
  background-color: #006633;
  opacity: 0.8;
}

/* Page contact */
#contact label {
  display: inline-block;
  margin-bottom: 10px;
  color: black;
  font-weight: 700;
}
#contact .wpcf7-text {
  background-color: white;
  border-radius: 5px;
  padding: 10px 20px;
}
#contact .wpcf7-textarea {
  background-color: white;
  border-radius: 5px;
  min-height: 200px;
  padding: 20px;
}
#contact .wpcf7-list-item {
  margin: 0 1.5em 0 1em;
}
#contact .wpcf7-list-item input {
  border-radius: 50%;
  cursor: pointer;
}
#contact .wpcf7-checkbox {
  margin: 0px 0px 20px;
  display: block;
}
#contact .wpcf7-list-item-label {
  padding-left: 15px;
  color: #777777;
  font-weight: 400;
}

@media (max-width: 550px) {
  #contact .wpcf7-list-item {
    display: block;
    width: 100%;
  }

  #contact label {
    width: 100%;
  }

  #contact .wpcf7-list-item-label {
    display: inline-block;
    width: 100%;
  }
}
.footer {
  background-color: white;
  width: 100%;
}

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

.footer-infos {
  margin-top: 20px;
}
.footer-infos a {
  display: block;
  color: black;
  font-weight: 300;
}
.footer-infos a:hover {
  color: #006633;
}
.footer-infos a + a {
  margin-top: 20px;
}

.footer-social {
  margin-top: 20px;
  display: inline-block;
}
.footer-social img {
  height: 30px;
  transition: all 0.2s ease-in-out;
}
.footer-social a {
  margin-right: 5px;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a:hover img {
  transform: scale(0.8);
}

/* FOOTER MENU */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer-block {
  color: black;
}
.footer-block p {
  font-weight: 300;
}

.footer-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  font-family: "trajan-pro-3", serif;
  font-weight: 600;
}

.footer-menu {
  position: relative;
}

.footer-menu li {
  display: block;
}
.footer-menu li a {
  color: black;
  padding: 10px 0;
  display: block;
  font-weight: 300;
}
.footer-menu li a:hover {
  color: #006633;
}

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

.footer-copyright__title {
  color: black;
  font-weight: 300;
  font-size: 14px;
}

.footer-legals__menu {
  color: black;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.footer-legals__item > a {
  color: black;
}
.footer-legals__item > a:hover {
  color: #006633;
}

/* 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-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .footer-top div {
    text-align: center;
  }
}
@media (max-width: 550px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-top div {
    text-align: center;
  }
}
@media (max-width: 550px) {
  .footer-copyright {
    justify-content: center;
  }

  .footer-copyright__title {
    margin-bottom: 10px;
  }
}
.contact-header {
  padding: 0px 0px 100px;
}

.contact-steps {
  position: relative;
  width: 35%;
}

.contact-form {
  position: relative;
  width: 60%;
  border-radius: 20px;
  margin-top: -227px;
  background-color: #f6f7f9;
}

.contact-form__header {
  background-color: #fff;
  padding: 30px 60px;
  border-radius: 20px 20px 0px 0px;
  display: inline-flex;
}
.contact-form__header img {
  background-color: rgba(0, 86, 40, 0.3);
  padding: 10px;
  border-radius: 5px;
  height: 70px;
  width: auto;
}
.contact-form__header .title {
  padding-left: 40px;
  font-weight: 300;
}
.contact-form__header .title em {
  font-weight: 700;
  font-style: normal;
}

.contact-form__container {
  padding: 60px 60px;
  border-radius: 0px 0px 20px 20px;
}

/* STEPS */
.steps__title {
  font-size: 24px;
  color: #006633;
  margin-bottom: 10px;
}

.steps__desc {
  color: #777777;
  font-weight: 300;
}

.steps__list {
  position: relative;
  margin-top: 50px;
}
.steps__list:before {
  position: absolute;
  top: 5px;
  left: 10px;
  content: "";
  height: 75%;
  border: 1px dotted rgba(1, 1, 1, 0.2);
  z-index: 0;
}

.steps__item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
}
.steps__item:last-child {
  margin-bottom: 0;
}
.steps__item:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #006633;
}
.steps__item:after {
  content: "";
  position: absolute;
  display: block;
  left: 5px;
  top: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.steps__item .title {
  font-family: "trajan-pro-3", serif;
  text-transform: none;
  color: #000;
  margin-bottom: 10px;
}
.steps__item .title span {
  padding-right: 10px;
}
.steps__item .text {
  color: #777777;
  font-weight: 300;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .contact .container {
    flex-direction: row-reverse;
  }

  .contact-steps {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-form {
    width: 100%;
    margin-top: 80px;
    box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.2);
  }
}
@media (max-width: 550px) {
  .contact-header {
    padding: 0px;
  }

  .contact-form__container {
    padding: 60px 5%;
  }

  .contact-form__header {
    display: inline-block;
    text-align: center;
  }

  .contact-form__header .title {
    padding-left: 0;
    margin-top: 20px;
  }

  .steps__title {
    font-size: 18px;
  }
}
/* PRODUCT */
.woocommerce div.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

/* CONTENT */
.woocommerce div.product div.summary {
  padding: 0px;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #006633;
}

.woocommerce div.product .product_title {
  font-family: "Arkitech";
  text-transform: uppercase;
}

.woocommerce-product-details__short-description {
  color: #777777;
  margin: 20px 0px;
}
.woocommerce-product-details__short-description p {
  font-weight: 300;
  margin-bottom: 10px;
}
.woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.product__tag {
  position: relative;
  display: inline-block;
  color: white;
  padding: 3px 15px 3px 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  z-index: 10;
  margin-bottom: 20px;
}
.product__tag.performance {
  background-color: #f57542;
}
.product__tag.sante {
  background-color: #7dd45d;
}

.tagged_as {
  display: none;
}

.product__calories ul {
  display: inline-flex;
  background-color: #F8F8F8;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 15px 20px;
}
.product__calories ul span {
  font-size: 14px;
  font-weight: 600;
  color: #777777;
}
.product__calories ul li {
  font-size: 14px;
  font-weight: 300;
  color: #777777;
  padding-left: 15px;
}
.product__calories ul li:first-child {
  border-right: 2px solid #777777;
  padding-left: 0;
  padding-right: 15px;
}

/* GALLERY */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  display: block;
  height: 100%;
  border-radius: 20px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div:first-child {
  grid-row: 1/5;
  grid-column: 1/span 2;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.1);
  display: block !important;
  border-radius: 20px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div {
  width: 100% !important;
  overflow: hidden;
  position: relative;
  display: none !important;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.1);
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div:before {
  padding-bottom: 100%;
  content: "";
  display: block;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div:hover img {
  transform: scale(1.03);
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div a {
  height: 100%;
  display: block;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper div img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
}

/* VARIATIONS */
.woocommerce div.product form.cart .variations {
  margin: 0em 0px 2em;
}
.woocommerce div.product form.cart .variations tr {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.woocommerce div.product form.cart .variations tr:last-child {
  margin-bottom: 0px;
}
.woocommerce div.product form.cart .variations .label {
  display: block;
  width: 100%;
}
.woocommerce div.product form.cart .variations .value label {
  border: 1px solid #777777;
  padding: 5px 10px;
  border-radius: 5px;
  color: #777777;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
}
.woocommerce div.product form.cart .variations .value label:hover {
  border: 1px solid #006633;
  color: #006633;
}
.woocommerce div.product form.cart .variations .value label:active, .woocommerce div.product form.cart .variations .value label :focus {
  border: 1px solid #006633;
  color: #006633;
}
.woocommerce div.product form.cart .variations input {
  display: none;
}
.woocommerce div.product form.cart .variations input[type=radio]:checked + label {
  color: #006633;
  border: 1px solid #006633;
  font-weight: 700;
}
.woocommerce div.product form.cart .variations .value {
  display: flex;
  flex-wrap: wrap;
}
.woocommerce div.product form.cart .variations .value div:last-child {
  padding-right: 0;
}
.woocommerce div.product form.cart .variations .value div {
  padding-right: 15px;
  margin-bottom: 5px;
}

.woocommerce div.product form.cart .reset_variations {
  margin-left: 30px;
}

/* ADD TO CART */
.woocommerce div.product form.cart div.quantity {
  float: none;
  display: inline-block;
  border: 1px solid #006633;
  padding: 10px 20px;
  border-radius: 10px;
}
.woocommerce div.product form.cart div.quantity input {
  background: none;
  border: none;
  font-size: 20px;
  color: #777777;
  cursor: pointer;
}

.woocommerce .quantity .qty {
  border: none;
}

.variations_button {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.price .woocommerce-Price-amount {
  font-weight: 700;
  font-size: 32px;
}

.woocommerce div.product form.cart .button {
  background-color: #006633;
  text-transform: uppercase;
  border: 1px solid #006633;
  padding: 15px 40px 15px 60px;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
  display: block;
  margin-right: 10px;
}
.woocommerce div.product form.cart .button:hover {
  opacity: 0.8;
}
.woocommerce div.product form.cart .button:before {
  content: "";
  background-image: url("../img/icon-cart.svg");
  height: 20px;
  width: 20px;
  background-size: 20px 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

/* TABS */
.woocommerce-tabs {
  width: 50%;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 20px 40px;
  max-width: 1000px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}
.woocommerce div.product .woocommerce-tabs .panel p {
  font-weight: 300;
  font-size: 16px;
}
.woocommerce div.product .woocommerce-tabs .panel .readmore {
  cursor: pointer;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  padding: 10px 2em;
  background-color: #f6f7f9;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #006633;
}

/* REASSURANCE */
.product-infos {
  width: 100%;
  align-items: flex-start;
}

.product-insurance {
  width: 100%;
  padding: 40px 0px 40px 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  row-gap: 10px;
}

.product-insurance__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
}

.product-insurance__icon {
  background-color: #f6f7f9;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.product-insurance__icon img {
  height: 25px;
  max-width: 25px;
}

/* BANNER */
.product-banner {
  padding-bottom: 100px;
}

.product-banner__container {
  display: flex;
  flex-wrap: wrap;
  background-color: #f6f7f9;
  padding: 60px 5%;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.product-banner__infos {
  width: 60%;
  padding-right: 10%;
}

.product-banner__title {
  font-family: "Lato";
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #006633;
}

.product-banner__method {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 40%;
  column-gap: 30px;
  row-gap: 30px;
}

.product-banner__item {
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  height: 80px;
  margin-right: 10px;
  text-align: center;
}
.product-banner__item img {
  height: 100%;
  object-fit: contain;
}

/* TRUST */
.trust-product {
  background-color: #f6f7f9;
  padding: 60px 0px;
}

.trust-product__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.trust-product__item {
  background-color: white;
  text-align: center;
  position: relative;
  align-items: center;
  transition: all 0.2s ease-in-out;
  padding: 40px 20px;
}
.trust-product__item:hover {
  background-color: rgba(0, 86, 40, 0.3);
}
.trust-product__item:hover img {
  transform: scale(1.1);
}

.trust-product__item .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  padding: 20px;
}

.trust-product__item img {
  height: 40px;
  text-align: center;
  width: 40px;
  object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
  transition: all 0.2s ease-in-out;
}

.trust-product__item .text {
  color: #777777;
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
}

.trust-product__item span {
  text-transform: uppercase;
  font-size: 16px;
  color: black;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .woocommerce-product-gallery {
    width: 100% !important;
  }

  .woocommerce div.product div.summary {
    width: 100%;
    padding: 40px 0px;
  }

  .product-infos {
    flex-direction: column-reverse;
  }

  .product-insurance {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-insurance__item {
    max-width: 200px;
  }

  .woocommerce-tabs {
    width: 100%;
    margin-top: 50px;
  }

  .product-banner__infos {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .product-banner__method {
    width: 100%;
  }

  .trust-product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    width: 100%;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
    display: none;
  }

  .woocommerce-variation-add-to-cart .quantity {
    display: block;
  }
  .woocommerce-variation-add-to-cart .button {
    display: block;
    width: 100%;
    margin-left: 0 !important;
    margin-top: 20px !important;
  }

  .trust-product__list {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .product_title {
    font-size: 18pxé;
  }

  .product-banner__container {
    padding: 60px 10%;
  }

  .product-banner__item {
    padding: 15%;
  }

  .product-banner__method {
    grid-template-columns: 1fr 1fr;
  }

  .product-insurance {
    grid-template-columns: 1fr;
  }

  .product-insurance__item {
    margin: 0 auto;
  }

  .woocommerce div.product form.cart .variations .value label {
    border: 1px solid #777777;
    padding: 0px 10px;
    border-radius: 5px;
    color: #777777;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
  }
}
.blog-intro__list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  height: 600px;
}

.blog-intro__item {
  border-radius: 20px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.blog-intro__item:hover:after {
  opacity: 0.3;
}
.blog-intro__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  border-radius: 20px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.blog-intro__item:nth-child(1) {
  grid-area: 1/1/6/5;
}
.blog-intro__item:nth-child(2) {
  grid-area: 1/5/4/9;
  background-color: rgba(0, 86, 40, 0.3);
  background-image: none !important;
}
.blog-intro__item:nth-child(2) .blog-intro__content {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  max-width: 100%;
  display: inline-grid;
  background-color: transparent;
}
.blog-intro__item:nth-child(2) .blog-intro__text {
  display: block;
}
.blog-intro__item:nth-child(2) .blog-intro__cta {
  display: block;
}
.blog-intro__item:nth-child(2) .blog-intro__title {
  margin: 15px 0;
}
.blog-intro__item:nth-child(3) {
  grid-area: 4/5/6/8;
}
.blog-intro__item:nth-child(4) {
  grid-area: 1/9/4/11;
}
.blog-intro__item:nth-child(4) .blog-intro__content {
  display: none;
}
.blog-intro__item:nth-child(5) {
  grid-area: 4/8/6/11;
  background-color: rgba(0, 86, 40, 0.3);
  display: grid;
}
.blog-intro__item:nth-child(5) .blog-intro__cta {
  display: block;
  text-align: left;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 500;
}

.blog-intro__heading {
  width: 100%;
}

.blog-intro__title {
  font-size: 16px;
  -webkit-text-stroke: 1px black;
  color: black;
}

.blog-intro__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  display: none;
}

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

.blog-intro__infos {
  display: inline-block;
  margin-bottom: 30px;
}
.blog-intro__infos p {
  padding-right: 10px;
  display: inline-block;
}
.blog-intro__infos span {
  font-size: 12px;
  padding-left: 10px;
  display: inline-block;
}

.blog-intro__content {
  background-color: #fff;
  display: block;
  color: black;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px 20px 0px 0px;
  max-width: 300px;
  z-index: 2;
}

.blog-intro__cta {
  color: black;
  font-weight: 600;
  margin-top: auto;
  text-align: right;
  display: none;
}
.blog-intro__cta i {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  color: black;
  margin-left: 10px;
}

.blog-intro__taxonomies {
  padding: 20px;
}
.blog-intro__taxonomies li {
  background-color: white;
  border-radius: 5px;
  color: black;
  display: inline-block;
  padding: 10px 15px;
  margin: 5px 0px;
  margin-right: 5px;
  font-weight: 600;
}

/* ------- */
.blog-header {
  position: relative;
  height: 60vh;
  background-color: #006633;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.blog-header:after {
  content: "";
  background-color: rgba(1, 1, 1, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.blog-header__content {
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 1000px;
  z-index: 1;
  padding-left: 0px;
}
.blog-header__content p {
  font-size: 16px;
  color: #777777;
  line-height: 1.8;
}

.blog-header__title {
  position: relative;
  color: white;
  font-weight: 700;
  font-size: 3.5rem;
  padding: 40px 0 20px;
  padding-left: 200px;
  font-family: "trajan-pro-3", serif;
  text-transform: uppercase;
  text-align: left;
}
.blog-header__title:before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  height: 60px;
  width: 500px;
  background-color: #006633;
  z-index: -1;
  transform: translateY(-50%);
}

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

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

.blog__card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: rgba(0, 86, 40, 0.3);
  border-radius: 20px;
  margin-left: 30px;
}
.blog__card.card--green {
  background-color: rgba(0, 86, 40, 0.3);
}
.blog__card.card--red {
  background-color: rgba(0, 86, 40, 0.3);
}

.blog__illustration {
  position: relative;
  width: calc(50% - 30px);
  border-radius: 20px;
}
.blog__illustration img {
  position: absolute;
  top: -20px;
  left: -30px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
  border-radius: 20px;
}
.blog__illustration:hover img {
  transform: scale(1.02);
}
.blog__illustration:before {
  content: "";
  display: block;
  padding-bottom: calc(100% - 0px);
}

.blog__content {
  position: relative;
  width: 50%;
  padding: 25px 5%;
}

.blog__taxonomy {
  color: #006633;
}

.blog__desc {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #777777;
  font-weight: 300;
  margin: 15px 0px;
}

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

.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: #777777;
  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(200px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
}

.blog-footer__card {
  background-color: white;
  border-radius: 10px;
}
.blog-footer__card:hover .blog-footer__illustration img {
  transform: scale(1.03);
}
.blog-footer__card:hover .blog-footer__title {
  color: #006633;
}

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

.blog-footer__illustration img {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
}

.blog-footer__content {
  position: relative;
  padding: 40px;
}

.blog-footer__taxonomy {
  color: black;
  font-weight: 700;
  background-color: #c3edff;
  padding: 10px 20px;
  border-radius: 5px;
  position: absolute;
  top: -20px;
  left: 40px;
}
.blog-footer__taxonomy.green {
  background-color: #ddf7d7;
}
.blog-footer__taxonomy.red {
  background-color: #f7ded7;
}

.blog-footer__title {
  font-weight: 500;
  font-size: 24px;
  margin: 15px 0px 25px;
  font-family: "Lato";
  text-transform: none;
  transition: all 0.2s ease-in-out;
}

.blog-footer__date {
  font-size: 14px;
  color: #777777;
  margin-bottom: 15px;
}

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

/* FILTER */
#search-filter-form-150 {
  margin-bottom: 80px;
}
#search-filter-form-150.searchandfilter ul li li {
  display: inline-block;
  margin: 0px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #777777;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  margin: 15px 20px;
}
#search-filter-form-150.searchandfilter ul li li:hover {
  color: #006633;
}
#search-filter-form-150.searchandfilter ul li li.sf-option-active {
  color: #006633;
}
#search-filter-form-150.searchandfilter ul li li:first-child {
  background: linear-gradient(310deg, #005628 40%, #2ba162 100%);
  padding: 15px 35px !important;
  color: white;
  cursor: pointer;
  border: 1px solid white;
  transition: all 0.2s ease-in-out;
}
#search-filter-form-150.searchandfilter ul li li:first-child:hover {
  background: transparent;
  border: 1px solid #006633;
  color: #006633;
}
#search-filter-form-150.searchandfilter ul {
  text-align: center;
}
#search-filter-form-150.searchandfilter .sf-input-radio {
  display: none;
  cursor: pointer;
}
#search-filter-form-150.searchandfilter .sf-label-radio {
  padding: 0px !important;
  cursor: pointer;
}
#search-filter-form-150 .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-150 .sf-input-text::placeholder {
  color: #777777;
  opacity: 0.6;
  font-weight: 300 !important;
}
#search-filter-form-150 .sf-field-search {
  position: relative;
  margin-top: -30px !important;
  margin-bottom: 30px !important;
}
#search-filter-form-150 .sf-field-search input {
  padding-left: 60px !important;
}
#search-filter-form-150 .sf-field-search label {
  position: relative;
}
#search-filter-form-150 .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-intro__list {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .blog-intro__content {
    background-color: rgba(1, 1, 1, 0.5);
    color: white;
    height: 100%;
    border-radius: 20px;
  }

  .blog-intro__title {
    color: white;
    -webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 1px;
  }

  .blog-intro__item {
    grid-area: auto !important;
  }

  .blog__list {
    gap: 40px;
  }

  .blog__illustration:before {
    padding-bottom: 130%;
  }

  .blog-header__title {
    font-size: 5vw;
    padding-left: 10%;
  }
}
@media (max-width: 768px) {
  .blog__list {
    grid-template-columns: 1fr;
    height: auto;
    row-gap: 80px;
  }

  .blog__illustration:before {
    padding-bottom: 100%;
  }

  .blog-header {
    height: 40vh;
    justify-content: center;
    padding: 0 10%;
  }

  .blog-header__container {
    padding: 100px 10%;
  }

  .blog-header__title {
    padding-left: 0;
    font-size: 28px;
    text-align: center;
    -webkit-text-stroke-width: 2px;
  }
  .blog-header__title:before {
    display: none;
    height: 25%;
    width: 70%;
  }

  .blog-header__cta {
    padding-left: 0;
  }

  .blog-header__desc {
    padding-left: 0;
  }
}
@media (max-width: 550px) {
  .blog__illustration:before {
    padding-bottom: 130%;
  }

  .blog-intro__list {
    grid-template-columns: 1fr;
  }

  .blog-intro__title {
    font-size: 14px;
    line-height: 1.7;
  }

  .blog-intro__item:nth-child(2) .blog-intro__title {
    color: black;
    -webkit-text-stroke-color: black;
  }

  .blog-intro__item:nth-child(2) .blog-intro__infos {
    color: black;
  }

  .blog__card {
    margin-left: 0;
  }

  .blog__illustration {
    width: 100%;
  }
  .blog__illustration:before {
    padding-bottom: 0;
  }
  .blog__illustration img {
    position: relative;
    top: auto;
    left: auto;
    margin: 20px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }

  .blog__content {
    width: 100%;
  }
}
.conditions__generales {
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
.conditions__generales h1, .conditions__generales h2, .conditions__generales h3, .conditions__generales h4, .conditions__generales h5 {
  font-weight: 700;
}
.conditions__generales h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.conditions__generales h3 {
  font-size: 18px;
  margin: 20px 0px;
}
.conditions__generales p, .conditions__generales div {
  font-size: 16px;
  font-weight: 300;
  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: #e0a333;
}

.conditions__generales li:before {
  content: "-";
  font-size: 16px;
  color: #e0a333;
  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: #e0a333;
  font-weight: 600;
}
.wsp-container ul {
  margin-left: 50px;
}
.wsp-container li {
  margin: 10px 0px;
  display: block;
}
.wsp-container li a {
  color: #e0a333;
}
.wsp-container li a:hover {
  color: #006633;
}

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

.sitemap__title {
  font-size: 32px;
  font-weight: 600;
  color: #e0a333;
  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: #e0a333;
  font-size: 32px;
  font-weight: 300;
  transition: all 0.2s ease-in-out 0s;
}
.sitemap .menu__list a:hover {
  color: #e0a333;
}

.post-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 70px;
  row-gap: 70px;
}
.post-header {
  position: relative;
  height: 50vh;
  width: 100%;
}

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

.post-header__illustration {
  position: relative;
  height: 100%;
  width: 100%;
}
.post-header__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

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

.post-title {
  text-align: center;
  margin: 80px 0px;
}
.post-title span {
  display: inline-block;
  background-color: rgba(0, 86, 40, 0.3);
  padding: 10px 25px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.post-title span.green {
  background-color: rgba(0, 86, 40, 0.3);
}
.post-title span.red {
  background-color: rgba(0, 86, 40, 0.3);
}
.post-title .title {
  font-size: 64px;
  font-weight: 700;
  color: #006633;
}

.post-illustration {
  position: relative;
  width: 100%;
  border-radius: 20px;
  min-height: 400px;
  max-height: 700px;
}
.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;
  font-family: "Lato";
  text-transform: none;
}
.post-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0px;
  font-family: "Lato";
  text-transform: none;
}
.post-content p {
  font-size: 16px;
  margin: 20px 0px;
  font-weight: 300;
  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: 15px;
  width: 15px;
  background-image: url("../img/arrow-primary.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.post-content img {
  margin: 40px 0px;
}

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

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

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

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

.prices--left {
  width: 28%;
  position: relative;
}

.prices--right {
  width: 68%;
  padding-top: 40px;
}
.prices--right .heading__desc {
  margin: 20px 0;
}

.prices__sidebar {
  background-color: rgba(0, 159, 227, 0.2);
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

.prices__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.prices__item {
  position: relative;
  background-color: #f6f7f9;
  padding: 60px 15%;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
}
.prices__item .btn {
  display: block;
  text-align: center;
  margin-top: auto;
}
.prices__item:nth-child(2n) {
  background-color: rgba(0, 159, 227, 0.2);
  color: white;
}
.prices__item:nth-child(2n) .prices__rows .item:before {
  background-color: white;
  background-image: url("../img/icon-check.png");
}

.prices__title {
  font-size: 20px;
  font-weight: 700;
  color: black;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: black;
  margin-bottom: 10px;
}

.prices__subtitle {
  margin-bottom: 10px;
  color: #777777;
}

.prices__amount {
  color: #006633;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
}
.prices__amount em {
  margin-left: 10px;
  font-style: normal;
  color: #777777;
  font-size: 16px;
  font-weight: 400;
}

.prices__rows {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
}

.prices__rows .item {
  position: relative;
  border-radius: 50px;
  margin: 15px 0px;
  line-height: 1.2;
  font-size: 16px;
  padding-left: 40px;
  color: #777777;
}
.prices__rows .item:before {
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #2F2F2F;
  background-image: url("../img/icon-check-white.png");
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-position: center center;
}

.prices__flag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #006633;
  padding: 10px 30px;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
}

.prices__remote {
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #006633;
  color: #006633;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

/* SIDEBAR */
.prices__sidebar {
  padding: 40px;
}

.sidebar__logo {
  height: 60px;
  width: 60px;
}
.sidebar__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.sidebar__title {
  font-family: "Lato";
  font-size: 32px;
  font-weight: 700;
  text-transform: none;
}
.sidebar__title em {
  font-weight: 400;
  font-style: normal;
  display: block;
}

.sidebar__desc {
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
  color: #777777;
}

.sidebar__content {
  padding-top: 40px;
}

.sidebar__content .btn {
  background-color: white;
  border: 1px solid white;
  color: black;
}
.sidebar__content .btn:hover {
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
}

.sidebar__card {
  background-color: #000;
  border: 5px solid white;
  border-radius: 10px;
  margin-top: 80px;
  padding: 20px 30px;
}
.sidebar__card .quote {
  color: white;
  font-size: 14px;
  font-weight: 300;
}
.sidebar__card .author {
  color: white;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 20px;
  margin-top: 10px;
}
.sidebar__card .illustration {
  position: relative;
  height: 50px;
  width: 50px;
  border-radius: 5px;
}
.sidebar__card .illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sidebar__card .text p:last-child {
  font-size: 12px;
}

@media (max-width: 1024px) {
  .prices {
    flex-direction: column-reverse;
  }

  .prices--left {
    width: 100%;
    margin-top: 50px;
  }

  .prices--right {
    width: 100%;
    margin-top: 0px;
  }

  .sidebar__card {
    margin-top: 30px;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .prices__list {
    grid-template-columns: 1fr;
  }

  .prices__title {
    font-size: 18px;
  }
}
.results__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
  margin-top: 20px;
}

.results__item {
  position: relative;
}

.results__illustration {
  position: relative;
  display: block;
  border-radius: 20px;
  cursor: pointer;
}
.results__illustration:before {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.results__illustration:hover .results-before, .results__illustration:hover .title-before {
  opacity: 0;
}
.results__illustration:hover .results-after, .results__illustration:hover .title-after {
  opacity: 1;
}
.results__illustration span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-shadow: 1px 1px 2px black;
  font-size: 24px;
}
.results__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;
}
.results__illustration .results-before, .results__illustration .title-before {
  display: block;
  opacity: 1;
}
.results__illustration .results-after, .results__illustration .title-after {
  opacity: 0;
}

.results__content {
  padding: 30px 10%;
  margin-top: 20px;
  border-radius: 20px;
  background-color: #f6f7f9;
}

.results__title {
  color: #006633;
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato";
  margin-bottom: 10px;
  text-transform: none;
}

.results__infos {
  padding-left: 0px;
}
.results__infos li {
  margin-bottom: 10px;
  display: flex;
  line-height: 1.4;
}
.results__infos li:last-child {
  margin-bottom: 0px;
}
.results__infos li:before {
  content: "";
  background-image: url("../img/arrow-primary.svg");
  color: #006633;
  display: inline-block;
  padding-right: 20px;
  height: 10px;
  width: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 6px;
}

/* SLIDER */
.contact-slider {
  padding: 0px 0px 100px;
}

.results-slider__container {
  padding-left: 120px;
}

.results-slider {
  position: relative;
  width: 65%;
}
.results-slider .results__content {
  padding: 10px 20px;
  border-radius: 10px;
}
.results-slider .results__title {
  font-size: 18px;
  margin-bottom: 0;
}
.results-slider .results__illustration {
  border-radius: 10px;
}
.results-slider .slick-dots {
  bottom: -10%;
}
.results-slider .slick-dots button {
  background-color: #006633;
}

.results-slider__content {
  width: 30%;
}

.results-slider__title {
  font-size: 24px;
  -webkit-text-stroke-color: black;
  -webkit-text-stroke-width: 2px;
  margin-bottom: 20px;
}

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

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

/* TEMOIGNAGES */
.testimonials__list {
  position: relative;
  column-gap: 20px;
  column-count: 3;
}

.testimonials__item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.testimonials__content {
  background-color: white;
  padding: 30px 12%;
  border-radius: 10px;
}

.testimonials__header {
  display: flex;
  align-items: center;
}
.testimonials__header img {
  height: 60px;
  width: 60px;
  object-fit: cover;
}

.testimonials__title {
  padding-left: 20px;
}
.testimonials__title .name {
  font-weight: 700;
}
.testimonials__title .date {
  font-weight: 0;
  font-size: 14px;
  color: #777777;
}

.testimonials__text {
  padding: 25px 0;
}
.testimonials__text p {
  color: #777777;
  font-weight: 300;
}

/* AVANTAGES */
.reasons {
  background-color: #F8F8F8;
}

.reasons__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reasons__item {
  position: relative;
}

.reasons__icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reasons__icon img {
  height: 40px;
  max-width: 100%;
}

.reasons__content {
  padding: 40px 10%;
  text-align: center;
}

.reasons__title {
  font-family: "Lato";
  text-transform: none;
  font-weight: 700;
  margin-bottom: 15px;
  color: #006633;
  font-size: 24px;
}

.reasons__desc {
  font-size: 16px;
  font-weight: 300;
  color: #777777;
}

/* CIBLES */
.target__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.target__item {
  position: relative;
  border-radius: 20px;
}
.target__item:nth-child(2) .target__illustration {
  background-color: rgba(0, 86, 40, 0.3);
}
.target__item:nth-child(3) .target__illustration {
  background-color: rgba(0, 86, 40, 0.3);
}

.target__illustration {
  position: relative;
  height: 250px;
  width: 100%;
  background-color: rgba(0, 86, 40, 0.3);
  padding: 15px;
  border-radius: 10px;
}

.target__image {
  position: absolute;
  top: 15px;
  left: 15px;
  object-fit: cover;
  height: calc(100% - 30px);
  width: calc(100% - 30px);
  border-radius: 10px;
}

.target__content {
  padding: 25px 20px;
}

.target__title {
  font-family: "Lato";
  text-transform: none;
  font-weight: 700;
  margin-bottom: 20px;
}

.target__text p {
  font-weight: 300;
  color: #777777;
}

@media (max-width: 1024px) {
  .results__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .results-slider__content {
    width: 100%;
  }

  .results-slider__container {
    padding: 0px 10%;
  }

  .results-slider {
    width: 100%;
    margin-top: 50px;
  }

  .testimonials__list {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .testimonials__list {
    column-count: 1;
  }

  .results__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .reasons__list {
    grid-template-columns: 1fr;
  }

  .results__list {
    grid-template-columns: 1fr;
  }

  .target__list {
    grid-template-columns: 1fr;
  }
}
.intro__container {
  background-color: #f6f7f9;
  border-radius: 20px;
  padding: 100px 10%;
  position: relative;
  margin-top: 50px;
}

.intro__illustration {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 60%;
  height: 600px;
  border-radius: 20px;
}
.intro__illustration video {
  height: 100%;
  width: auto;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
}

.intro__content {
  position: relative;
  width: 60%;
  text-align: right;
  margin-left: auto;
}

.intro__text {
  margin: 30px 0px;
}
.intro__text p {
  font-weight: 300;
  margin-bottom: 20px;
}
.intro__text p:last-child {
  margin-bottom: 0;
}
.intro__text h3 {
  margin-bottom: 30px;
}

.intro__title {
  font-size: 24px;
  -webkit-text-stroke: 2px #000;
}
.intro__title em {
  color: #006633;
  font-style: normal;
  -webkit-text-stroke: 2px #006633;
}

.intro__cta span {
  font-weight: 700;
  font-size: 20px;
  display: block;
}

.intro__components {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/smoke.png");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 100% -20%;
  z-index: -99;
  opacity: 0.4;
}

/* TRUST */
.trust__container {
  width: 100%;
}

.trust__content {
  width: 60%;
  padding-right: 10%;
}

.trust__illustration {
  position: relative;
  width: 40%;
  max-width: 600px;
  border-radius: 40px;
}
.trust__illustration:before {
  content: "";
  display: block;
  padding-bottom: 120%;
}
.trust__illustration img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: inherit;
}

.trust__list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 80px;
}
.trust__list:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #777777;
  top: 0;
  left: 50%;
  opacity: 0.3;
}
.trust__list:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #777777;
  top: 50%;
  left: 0;
  opacity: 0.3;
}

.trust__item {
  text-align: center;
}
.trust__item img {
  height: 45px;
  max-width: 100%;
}
.trust__item span {
  font-size: 50px;
  font-weight: 700;
  display: block;
  padding: 20px 0;
}

.trust__title {
  color: #777777;
  font-size: 16px;
  font-family: "Lato";
  font-weight: 500;
  text-transform: none;
}

.trust__components {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: -25% 0%;
  z-index: -99;
  opacity: 0.4;
}

/* GALLERY */
#adminmenu li.wp-menu-separator {
  background-color: white;
}

.products-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
}
.gallery__item:nth-child(2), .gallery__item:nth-child(4) {
  margin-top: 100px;
}
.gallery__item:nth-child(6), .gallery__item:nth-child(8), .gallery__item:nth-child(10) {
  margin-top: -100px;
}
.gallery__item:before {
  content: "";
  display: block;
}
.gallery__item:hover.gallery__item img {
  transform: scale(1.05);
}
.gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: all 0.2s ease-in-out;
}

/* BANNER */
.banner {
  position: relative;
  background-color: #f6f7f9;
  padding: 40px;
  border-radius: 20px;
}

.banner__content {
  position: relative;
  width: 55%;
  padding: 40px;
}

.banner__title {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.4;
  -webkit-text-stroke: 2px black;
}

.banner__text p {
  font-size: 16px;
  font-weight: 300;
}

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

/* */
.referral {
  display: grid;
}
.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 {
  margin-bottom: 20px;
}

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

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

@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, #0d0d0d 20%, #009fe3 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 */
.blog-card {
  display: grid;
  grid-template-columns: auto 3fr 1fr;
  column-gap: 40px;
  padding: 5rem 0;
  border-bottom: 1px solid #c8c8c8;
}
.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: #006633;
}

.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(310deg, #005628 40%, #2ba162 100%);
}
.blog-card__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* 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(310deg, #005628 40%, #2ba162 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 0.8;
  font-size: 7rem;
  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: #006633;
  font-style: normal;
}

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

@media (max-width: 1280px) {
  .intro__illustration {
    position: relative;
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .services__list {
    grid-template-columns: 1fr 1fr;
  }

  .services__illustration {
    display: block;
  }

  .intro__container {
    flex-direction: column-reverse;
  }

  .intro__content {
    width: 100%;
    text-align: center;
  }

  .intro__illustration {
    width: 100%;
    margin-top: 40px;
    display: block;
    max-height: 90vh;
    max-width: 100%;
    top: auto;
    left: auto;
  }
  .intro__illustration video {
    max-width: 100%;
  }

  .trust__container {
    flex-direction: column-reverse;
  }

  .trust__content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 80px;
  }
  .trust__content .heading {
    margin: 0 auto;
    text-align: center;
  }
  .trust__content .heading__title {
    text-align: center;
  }

  .trust__illustration {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
  }
  .trust__illustration:before {
    padding-bottom: 70%;
  }

  .banner {
    flex-direction: column-reverse;
    padding: 0;
  }

  .banner__content {
    width: 100%;
  }

  .banner__illustration {
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0px 0px;
  }
}
@media (max-width: 768px) {
  .services__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .intro__container {
    padding: 50px 7%;
  }

  .intro__title {
    font-size: 16px;
    line-height: 1.7;
  }

  .intro__text h3 {
    font-size: 16px;
  }

  .trust__item span {
    font-size: 30px;
  }

  .banner__title {
    font-size: 18px;
  }

  .products-gallery {
    grid-template-columns: 1fr;
  }
}
.error {
  background-color: rgba(0, 86, 40, 0.3);
}

.error__container {
  background-color: white;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 50px 5%;
  box-shadow: 0px 0px 30px rgba(1, 1, 1, 0.1);
}

.error__container img {
  width: 300px;
  height: auto;
}

.error__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #006633;
  margin-top: 20px;
}

.error__text {
  font-size: 20px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 20px;
}

ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  background-color: white;
  padding: 15px;
  box-shadow: 0px 3px 10px rgba(1, 1, 1, 0.1);
  border-radius: 20px;
  margin: 0 1.5% 2em 0;
  width: 23.5%;
}
ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
  transform: scale(1.03);
}

ul.products {
  flex-wrap: wrap;
}

ul.products li.product {
  display: flex;
  flex-direction: column;
}

ul.products li.product a {
  overflow: hidden;
  border-radius: 20px;
}
ul.products li.product a.added_to_cart {
  margin: 10px auto 0;
  border-radius: 0;
  text-align: center;
}

ul.products li.product .woocommerce-loop-category__title,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h3 {
  font-family: "Lato";
  color: #000;
  text-transform: none;
  font-size: 20px;
  font-size: 1em;
  padding: 0.5em 0;
}

ul.products li.product a img {
  border-radius: 20px;
  height: 200px;
  width: 100%;
  transition: all 0.2s ease-in-out;
  object-fit: cover;
  margin-bottom: 0;
}

.product .product__content {
  padding: 10px 4% 10px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}
.product .product__content .woocommerce-LoopProduct-link {
  width: 100%;
}

.woocommerce-loop-product__title {
  color: #006633 !important;
  font-weight: 700;
}

ul.products li.product .price {
  color: #006633;
  font-size: 16px;
}

ul.products li.product .price .woocommerce-Price-amount {
  color: #006633;
  font-size: 20px;
  font-weight: 700;
}

span.onsale {
  background-color: #006633;
  padding: 10px;
  border-radius: 10px;
  min-height: auto;
  min-width: auto;
  line-height: 1;
}

ul.products li.product .button {
  background-color: #006633;
  color: white;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 30px;
  font-weight: 400;
  margin: 1em auto 0;
}
ul.products li.product .button:hover {
  background-color: #777777;
}

.product .products {
  width: 100%;
  padding: 100px 0;
}

.product .product__cat {
  position: absolute;
  top: 35px;
  right: 0;
  display: inline-block;
  color: white;
  padding: 3px 15px 3px 15px;
  border-radius: 6px 0px 0px 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  z-index: 10;
}
.product .product__cat.performance {
  background-color: #f57542;
}
.product .product__cat.sante {
  background-color: #7dd45d;
}

.product__values {
  margin-bottom: 10px;
}

.product__values p {
  color: black !important;
  font-size: 13px;
  opacity: 0.6;
}

.products-slider li.product {
  margin: 10px 15px !important;
}

.woocommerce-products-header {
  background-color: #f6f7f9;
  padding: 25px 40px;
  margin: 20px 0px;
  border-radius: 10px;
}

.woocommerce-products-header__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #006633;
}

.woocommerce-products-header__desc p + p {
  margin-top: 20px;
}

/* MAIN */
.woocommerce-shop {
  margin-top: 50px;
}

.woocommerce-shop__sidebar {
  width: 25%;
}

.woocommerce-shop__sidebar form > ul > li {
  background-color: #f6f7f9;
  margin: 20px 0px;
  padding: 20px 10%;
  border-radius: 10px;
}

.woocommerce-shop__main {
  width: 70%;
}

/* CATEGORIES */
.wc-product-categories-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.wc-product-categories-list li {
  padding-right: 20px;
  margin-top: 20px;
}
.wc-product-categories-list li:last-child {
  padding-right: 0px;
}

.wc-product-categories-list a {
  color: #000;
  border: 1px solid #777777;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 400;
  display: block;
  transition: all 0.2s ease-in-out;
}
.wc-product-categories-list a:hover {
  color: #006633;
  border: 1px solid #006633;
}

/* FILTRE */
.searchandfilter ul li ul {
  height: auto;
}

.searchandfilter ul li ul.active {
  display: none;
}

.searchandfilter ul li li {
  display: grid;
  grid-template-columns: 13px 1fr;
  text-align: left;
}

.searchandfilter h4 {
  color: #006633;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #777777;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
.searchandfilter h4:after {
  content: "";
  position: absolute;
  right: 0;
}

.searchandfilter label {
  font-weight: 300;
}

@media (max-width: 1024px) {
  .woocommerce-shop__sidebar {
    width: 100%;
  }

  .searchandfilter ul li li {
    display: inline-block;
    padding-right: 15px;
  }
  .searchandfilter ul li li:last-child {
    padding-right: 0px;
  }

  .woocommerce-shop__main {
    width: 100%;
    margin-top: 50px;
  }

  .searchandfilter ul li ul {
    height: 80px;
  }
}
@media (max-width: 550px) {
  .wc-product-categories-list li {
    padding-right: 10px;
    margin-top: 10px;
  }

  .wc-product-categories-list a {
    padding: 8px 16px;
    font-size: 12px;
  }
}
.cart-wrapper {
  background-color: #F8F8F8;
}

.woocommerce-cart-form {
  background-color: white;
  border-radius: 5px 0px 0px 5px;
}
.woocommerce-cart-form table.shop_table {
  border-radius: 0px;
  border: none;
}

.woocommerce-cart-form__cart-item .product-name a {
  color: black;
}

.woocommerce-cart-form__contents {
  padding: 100px 10% 10px 15%;
}

.cart__container {
  display: grid;
  grid-template-columns: 55% 45%;
  border-radius: 10px;
}

.cart-collaterals {
  background-color: rgba(0, 86, 40, 0.3);
  padding: 100px 20% 100px 10%;
}

.cart_totals {
  width: 100% !important;
}

.cart_totals h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.cart_totals .woocommerce-Price-amount {
  font-size: 18px;
}

.wc-proceed-to-checkout .checkout-button {
  background-color: #006633 !important;
}

.woocommerce-cart table.cart input {
  padding: 2px 5px;
}

.woocommerce-cart table.cart .input-text {
  font-size: 18px;
}

.product-quantity .minus {
  display: none;
}

.product-quantity .plus {
  display: none;
}

.woocommerce table.shop_table th {
  border: none;
}

.woocommerce table.shop_table th {
  font-size: 14px;
  text-transform: uppercase;
  color: #777777;
  font-weight: 400;
}

.woocommerce table.shop_table td {
  padding: 20px 12px;
  font-size: 16px;
}

.product-thumbnail {
  position: relative;
  min-width: 40px;
  max-width: 80px;
}
.product-thumbnail img {
  width: 100% !important;
  object-fit: contain;
}

.product-remove {
  position: absolute;
  top: 0;
  right: 0;
}

.woocommerce a.remove {
  color: #006633 !important;
}
.woocommerce a.remove:hover {
  background-color: #006633 !important;
}

/* PAYMENTS */
.payments__title {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.payments__item {
  background-color: white;
  border-radius: 5px;
  padding: 5px 10px;
  width: 50px;
  margin-right: 10px;
  text-align: center;
}
.payments__item:last-child {
  margin-right: 0px;
}

.payments__item img {
  height: 20px;
  object-fit: contain;
}

.payments__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* CONFIANCE */
.shop-trust {
  padding: 10px 10% 50px 15%;
}

.shop-trust__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0px 20px;
}

.shop-trust__item {
  text-align: center;
  padding: 50px 0px;
  border-right: 1px solid #777777;
}
.shop-trust__item p {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: black;
  text-transform: uppercase;
}
.shop-trust__item:last-child {
  border-right: none;
}

.shop-trust__item img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 10px;
  opacity: 0.5;
}

.shop-trust .help {
  background-color: #f6f7f9;
  padding: 30px 40px;
  border-radius: 5px;
}
.shop-trust .help .title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Lato";
  margin-bottom: 20px;
}
.shop-trust .help a {
  display: inline-block;
  margin-right: 30px;
  color: black;
  font-weight: 300;
  transition: all 0.2s ease-in-out;
}
.shop-trust .help a:hover {
  color: #006633;
}
.shop-trust .help a i {
  color: #006633;
  margin-right: 10px;
}
.shop-trust .help a:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .cart__container {
    grid-template-columns: 1fr;
  }

  .cart-collaterals {
    padding: 10%;
  }

  .woocommerce-cart-form__contents {
    padding: 10%;
  }
}
@media (max-width: 768px) {
  .shop-trust__list {
    grid-template-columns: 1fr;
  }

  .shop-trust__item {
    border-right: none;
  }
}
.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: white;
}
.woocommerce-checkout input {
  font-family: "Lato";
  font-size: 16px;
  border: 1px solid #aaa;
}
.woocommerce-checkout select {
  font-family: "Lato";
  font-size: 16px;
  padding: 10px 12px !important;
  border: 1px solid #aaa;
}
.woocommerce-checkout textarea {
  font-family: "Lato";
  font-size: 16px;
  border: 1px solid #aaa;
}

.checkout-form {
  width: 55%;
  padding: 100px 5% 50px 5%;
}
.checkout-form h3 {
  font-size: 18px;
  margin-bottom: 30px;
}

.checkout-review {
  width: 45%;
  background-color: white;
  padding: 100px 5% 100px 5%;
  background-color: rgba(0, 86, 40, 0.3);
}
.checkout-review h3 {
  margin-bottom: 30px;
  font-size: 18px;
}
.checkout-review .button {
  background-color: #006633 !important;
}

#customer_details {
  background-color: white;
}

#customer_details div {
  float: none;
  width: 100%;
}

#customer_details input {
  padding: 10px 14px;
}

#customer_details .input-text {
  font-size: 16px;
  font-weight: 300;
  color: #777777;
  border-radius: 5px;
  -webkit-appearance: none;
  background-color: transparent;
}

#customer_details .input-text:focus {
  outline: none;
}

.woocommerce-additional-fields {
  margin-top: 40px;
}
.woocommerce-additional-fields h3 {
  font-size: 18px;
}
.woocommerce-additional-fields textarea {
  font-family: "Lato";
  padding: 10px 12px;
}

.woocommerce-checkout-payment {
  background-color: transparent !important;
}

.woocommerce-NoticeGroup-checkout {
  width: 100%;
}

.woocommerce-order {
  background-color: transparent;
  padding: 60px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.woocommerce-order-details {
  margin-top: 40px;
  background-color: white;
  padding: 50px 5%;
}

.woocommerce-column__title {
  margin-bottom: 20px;
}

.woocommerce-customer-details address {
  line-height: 1.5;
}

.woocommerce-order-details__title {
  margin-bottom: 20px;
  font-size: 18px;
}

#ship-to-different-address {
  font-family: "Lato";
  margin-top: 20px;
  font-size: 18px;
}

.woocommerce-order-infos {
  background-color: white;
  padding: 50px 5%;
  margin-bottom: 40px;
}
.woocommerce-order-infos .woocommerce-notice {
  text-align: center;
  margin-bottom: 30px;
}

/* THANK YOU */
.thanks-message {
  background-color: rgba(0, 86, 40, 0.3);
  padding: 50px 5%;
  text-align: center;
  margin-bottom: 50px;
  border: 2px solid #006633;
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: 50px;
}

.thanks-message__illustration {
  position: relative;
  width: 100%;
  height: 100%;
}
.thanks-message__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.thanks-message__container {
  padding: 40px 0px;
  text-align: left;
}

.thanks-message__title {
  font-size: 28px;
  font-weight: 700;
  color: #006633;
  text-transform: uppercase;
}

.thanks-message__text {
  max-width: 600px;
  margin: 20px auto 0px;
}
.thanks-message__text p {
  font-weight: 300;
}

.thanks-cta a {
  margin-right: 20px;
}
.thanks-cta a:last-child {
  margin-right: 0px;
}

.thanks-block__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  margin-bottom: 40px;
}

.thanks-block__item {
  background-color: white;
  text-align: center;
  position: relative;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.thanks-block__item:before {
  position: relative;
  display: block;
  padding-bottom: 100%;
  content: "";
}
.thanks-block__item:hover {
  background-color: rgba(0, 86, 40, 0.3);
}
.thanks-block__item:hover img {
  transform: scale(1.1);
}

.thanks-block__item a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}

.thanks-block__item img {
  height: 40px;
  text-align: center;
  width: 40px;
  object-fit: contain;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 20px;
  display: block;
  transition: all 0.2s ease-in-out;
}

.thanks-block__item span {
  text-transform: uppercase;
  font-size: 16px;
  color: black;
  font-weight: 400;
}

/* TEMOIGNAGES */
.testimonials-slider__list {
  position: relative;
  background-color: white;
}
.testimonials-slider__list .slick-arrow {
  position: absolute;
}
.testimonials-slider__list .slick-next {
  bottom: 50%;
  right: 20px;
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 10px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  transform: translateY(50%);
  color: transparent;
  background: transparent;
  outline: none;
}
.testimonials-slider__list .slick-next:before {
  content: "";
  background-image: url("../img/icon-arrow.png");
  height: 30px;
  width: 30px;
  background-size: 30px 30px;
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.testimonials-slider__list .slick-prev {
  bottom: 50%;
  left: 20px;
  z-index: 10;
  width: 50px;
  height: 50px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  padding: 10px;
  transform: translateY(50%);
  color: transparent;
  background: transparent;
  outline: none;
}
.testimonials-slider__list .slick-prev:before {
  content: "";
  background-image: url("../img/icon-arrow.png");
  height: 30px;
  width: 30px;
  background-size: 30px 30px;
  transform: rotate(180deg);
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials-slider__item {
  display: inline-block;
  width: 100%;
}

.testimonials-slider__content {
  background-color: white;
  padding: 50px 12%;
  border-radius: 10px;
}

.testimonials-slider__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-slider__header img {
  height: 80px;
  width: 80px;
  object-fit: cover;
}

.testimonials-slider__title {
  padding-left: 20px;
}
.testimonials-slider__title .name {
  font-weight: 700;
  color: #006633;
  font-size: 20px;
}
.testimonials-slider__title .date {
  font-weight: 0;
  font-size: 14px;
  color: #777777;
}

.testimonials-slider__text {
  padding: 25px 0;
  text-align: center;
}
.testimonials-slider__text p {
  color: #777777;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials-slider__text a {
  margin-top: 20px;
  display: block;
}

@media (max-width: 1024px) {
  .checkout-form {
    width: 100%;
  }

  .checkout-review {
    width: 100%;
    margin-top: 50px;
  }
}
.featured-product {
  background-color: white;
}

.featured-product__item {
  width: calc(25% - 40px);
  background-color: white;
  text-align: center;
  margin-right: 40px;
  padding: 40px 20px;
  box-shadow: 0px 0px 10px rgba(1, 1, 1, 0.1);
  border-radius: 5px;
}

.featured-product__item img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.featured-product__title {
  font-size: 16px;
  font-family: "Lato";
  color: black;
}

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