@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  position: relative;
  font-size: 62.5%;
  font-display: swap;
  color: black;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 1.6rem;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

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

header a {
  text-decoration: none;
}

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

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

html {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  font-weight: 300;
  font-display: swap;
}

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

p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 25px;
  color: #252525;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, 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;
}

.heading {
  font-size: 24px;
  color: #30A145;
  padding-bottom: 40px;
  margin-bottom: 0;
  width: 100%;
  max-width: 600px;
  z-index: 10;
  position: relative;
}
.heading .btn {
  margin-top: 2rem;
}
.heading--center {
  text-align: center;
  margin: 0 auto;
}
.heading--white > * {
  color: #fff !important;
}
.heading--white > * p {
  color: #fff;
}
.heading--white > *.heading__head {
  background-color: #fff;
  color: #252525 !important;
}
.heading__head {
  background-color: #252525;
  color: #fff;
  display: inline-block;
  border-radius: 50px;
  padding: 5px 30px;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.heading__title {
  font-size: 4rem;
  margin-top: 0;
  position: relative;
  font-family: "Outfit";
  line-height: 40px;
  font-weight: 400;
  max-width: 600px;
  color: #252525;
}
.heading__desc {
  color: #252525;
  line-height: 1.7;
  font-size: 1.6rem;
  font-weight: 200;
  max-width: 600px;
  margin-top: 2rem;
}
.heading__desc p {
  line-height: 1.7;
  font-size: 1.8rem;
  font-weight: 200;
  font-weight: #252525;
}
.heading__desc p + p {
  margin-top: 20px;
}
.heading__divider {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #707070;
}

.heading--btn {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.heading--btn .heading__title {
  max-width: 800px;
}
.heading--btn .btn {
  display: inline-block;
  margin-top: 0;
}

.title--footer {
  color: #30A145;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--center {
  text-align: center;
}
.title--white {
  color: #fff;
}
.title--black {
  color: #252525;
}
.title--uppercase {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .heading__title {
    font-size: 5rem;
    line-height: 40px;
  }

  .heading__desc {
    font-size: 1.7rem;
  }
}
.btn {
  padding: 1.2rem 3rem;
  color: #fff;
  background: #AEC948;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out 0s;
  display: inline-block;
  text-align: center;
  font-weight: 400;
  line-height: 20px;
  border-radius: 10px;
  border: none;
  align-self: baseline;
  transition: all 0.2s ease-in-out 0s;
}
.btn:hover {
  background-color: #252525;
  color: #fff;
}
.btn--black {
  background-color: #252525;
}
.btn--black:hover {
  background-color: #AEC948;
  color: #fff;
}

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

.cta {
  margin-top: 2rem;
}

#hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  max-height: 800px;
  height: calc(100vh - 4rem);
  width: calc(100% - 4rem);
  margin: 2rem auto 0 auto;
  border-radius: 30px;
}

.hero__container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 5;
  border-radius: 30px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 30px;
}
.hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.5);
  border-radius: 30px;
}
.hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero__content {
  color: white;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: end;
  text-align: left;
  padding: 10rem 0;
  max-width: calc(1520 / 1680 * 100%);
  margin: 0 auto;
  z-index: 2;
}

.hero__text {
  max-width: 700px;
}

.hero__title {
  font-size: 6rem;
  color: #fff;
  font-weight: 300;
  line-height: 60px;
}

.hero__desc {
  font-size: 2rem;
  font-weight: 200;
  color: #fff;
  line-height: 35px;
  margin: 2rem 0;
}

.hero__logo {
  height: 20rem;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9;
  max-width: 100%;
}

.hero__buttons {
  margin-top: 3rem;
}
.hero__buttons a:first-child {
  background-color: #30A145;
  margin-right: 1rem;
}
.hero__buttons a:first-child:hover {
  background-color: #AEC948;
}

@media (max-width: 1024px) {
  #hero {
    height: 60vh;
  }

  .hero__title {
    font-size: 6rem;
  }
  .hero__title em {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
    margin-top: 0;
  }
  #hero .container {
    width: 100%;
    border-radius: 0;
  }

  .hero__content {
    padding: 12vw 7vw;
  }

  .hero__title {
    margin-bottom: 4rem;
    line-height: 1.2;
  }

  .hero__logo {
    height: 12rem;
  }

  .hero__button {
    bottom: 5rem;
    font-size: 3rem;
    line-height: 0.7;
  }

  .hero__services {
    display: none;
  }

  .hero__bg {
    border-radius: 0;
  }

  .hero__cta {
    flex-direction: column;
  }
  .hero__cta a {
    display: block;
    margin-left: 0 !important;
    align-self: baseline;
  }
}
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: #AEC948;
  line-height: 1.5;
}

code {
  background: #ECEFF1;
}

.faq__title {
  margin-bottom: 20px;
}

.faq__desc {
  max-width: 400px;
}

.faq__cta {
  text-align: center;
  margin-top: 4rem;
}
.faq__cta a + a {
  margin-left: 1rem;
}

.praticals__list {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.praticals__list ul {
  list-style: initial !important;
  margin: 10px 0px;
  margin-left: 2rem;
}
.praticals__list ol {
  list-style: decimal !important;
}
.praticals__list li {
  line-height: 30px;
  position: relative;
  font-size: 1.4rem;
}
.praticals__list em {
  font-style: normal;
  color: #AEC948;
}

.praticals__text {
  width: 50%;
  padding: 0px 0px;
}

.praticals__item {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  margin-bottom: 0px;
  background-color: #F7F6F9;
  margin: 2rem 0;
  border-radius: 30px;
}
.praticals__title, .praticals__content {
  padding: 0.8rem 2rem;
}
.praticals__title p, .praticals__content p {
  font-size: 1.4rem;
}
.praticals__title {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Metropolis";
  list-style: none;
  outline: 0;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  transition: color 300ms ease-in-out;
  padding-left: 0;
  line-height: 1.4;
  padding: 2rem 5rem;
  color: #252525;
}
.praticals__title span {
  margin-right: 4rem;
  background-color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  transition: all 0.2s ease-in-out 0s;
}
.praticals__title:after {
  content: "";
  height: 2.6rem;
  width: 2.6rem;
  background-image: url("../img/icon-sun.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.2s ease-in-out 0s;
  margin-left: auto;
}
[open] > .praticals__title span {
  background-color: #AEC948;
  color: #fff;
}
[open] > .praticals__title:after {
  opacity: 0.5;
}
.praticals__title:hover {
  color: #AEC948;
}
.praticals__title::-webkit-details-marker {
  display: none;
}
.praticals__title:before, .praticals__title:after {
  content: "";
  position: absolute;
}
.praticals__title:before {
  right: 22px;
  top: 50%;
  height: 3px;
  margin-top: -1.5px;
  width: 20px;
  background: #252525;
  border-radius: 5px;
}
.praticals__title:after {
  right: 31px;
  top: 50%;
  height: 20px;
  margin-top: -10px;
  width: 3px;
  margin-left: -1.5px;
  background: #252525;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}
[open] .praticals__title:after {
  opacity: 0;
  transform: translateY(25%);
}
.praticals__heading {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 300px;
}
.praticals__desc {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0px;
}
.praticals__content {
  padding-bottom: 4rem;
  padding-top: 0;
  max-width: 90%;
  padding-left: 13rem;
}
.praticals__content p + p {
  margin-top: 15px;
}
.praticals__cta {
  text-align: center;
  margin-top: 50px;
}
.praticals__cta + a {
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .faq__content {
    width: 100%;
    padding: 4rem 0;
    margin-top: 0;
  }

  .faq__desc {
    margin: 0 auto;
  }

  .praticals__list {
    width: 100%;
  }

  .praticals__text {
    width: 100%;
  }

  .faq__cta {
    text-align: left;
    margin-top: 1rem;
  }
  .faq__cta .btn {
    margin-left: 0;
    margin-top: 1rem;
  }

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

  #faq .component {
    height: 40%;
  }

  .faq__illustration {
    margin-top: 4rem;
  }
}
@media (max-width: 1024px) {
  #faq .container {
    flex-direction: column-reverse;
  }

  .faq__illustration {
    height: 60rem;
    width: 100%;
  }

  .praticals__text {
    padding: 0px 5%;
  }

  .praticals__title {
    font-size: 1.9rem;
  }

  .praticals__number {
    margin-right: 2rem;
  }

  .praticals__content {
    line-height: 1.6;
  }
}
@media (max-width: 550px) {
  .praticals__title {
    font-size: 1.6rem;
  }

  .faq__illustration {
    height: 40rem;
    width: 100%;
  }
}
#perks {
  position: relative;
  background: linear-gradient(180deg, #faece2 0%, #fadfcc 100%);
  padding: 10rem 0;
  z-index: 1;
  overflow: hidden;
}

.perks__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.perks__item {
  position: relative;
}
.perks__item:before {
  content: "";
  display: block;
  padding-bottom: 150%;
}
.perks__item.active .perks__content {
  background-color: rgba(48, 161, 69, 0.9);
  border-right: none;
}
.perks__item.active .perks__title {
  color: #fff;
}
.perks__item.active .perks__desc {
  color: #fff;
  max-height: 200px;
  opacity: 1;
}
.perks__item.active .icon-black {
  display: none;
}
.perks__item.active .icon-white {
  display: block;
}

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

.perks__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #F7F6F9;
  padding: 2vw;
  display: flex;
  align-items: end;
  border-right: 1px solid #707070;
  transition: all 0.2s ease-in-out 0s;
}

.perks__icon {
  height: 5rem;
  margin-bottom: 1.5rem;
}
.perks__icon.icon-black {
  display: block;
}
.perks__icon.icon-white {
  display: none;
}

.perks__title {
  color: #252525;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 2rem;
}

.perks__text {
  margin-top: 1rem;
}

.perks__desc {
  font-weight: 300;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

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

@media (max-width: 1024px) {
  .perks__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .perks__item img {
    height: 7rem;
  }

  .perks__components {
    display: none;
  }

  .perks__text p {
    font-size: 1.7rem;
  }
}
#banner {
  position: relative;
  height: 35vw;
  max-height: 70rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  margin-top: 10rem;
  border-radius: 30px;
}

.banner__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  z-index: 1;
}
.banner__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.banner__illustration:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.2);
  border-radius: 30px;
}

.banner__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  padding: 6rem 6vw;
}

.banner__text {
  max-width: 800px;
}

.banner__title {
  color: #fff;
  font-weight: 200;
  font-size: 5rem;
  line-height: 50px;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  #banner {
    position: relative;
    height: 60vh;
  }
}
@media (max-width: 550px) {
  #banner {
    position: relative;
    height: 50vh;
  }

  #banner .component {
    height: 40vw;
  }
}
.about {
  padding: 2rem;
}
.about__container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
}
.about__title {
  font-weight: 900;
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 40px;
}
.about__content {
  width: 45%;
}
.about__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
}
.about__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
}
.about__content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about__illustration {
  position: relative;
  flex: 0 0 50%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 45rem;
}
.about__illustration:before {
  content: "";
  padding-bottom: 70%;
  display: block;
}
.about__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

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

  .about__content {
    width: 100%;
  }

  .about__illustration {
    height: 25rem;
    width: 100%;
  }
}
#content .container {
  display: flex;
  flex-direction: row;
}

.content__text {
  width: 50%;
  padding: 4rem 0;
  padding-right: 10%;
}

.content__desc {
  margin-bottom: 4rem;
}
.content__desc p {
  font-weight: 300;
  font-size: 1.6rem;
}
.content__desc p + p {
  margin-top: 2rem;
}

.content__gallery {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.content__image {
  position: relative;
  border-radius: 30px;
}

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

.content__image:first-child {
  grid-row: span 2;
}

.contact-block {
  display: flex;
  flex-direction: row;
  background-color: #F7F6F9;
  border-radius: 30px;
  padding: 1rem;
}

.contact__infos {
  margin: 3rem 0;
}

.contact__item {
  display: flex;
  flex-direction: row;
  align-items: start;
}
.contact__item + .contact__item {
  margin-top: 4rem;
}
.contact__item img {
  height: 3rem;
  width: 2rem;
  object-fit: contain;
  margin-right: 2rem;
  padding-top: 0rem;
}
.contact__item p {
  color: #fff;
  font-weight: 200;
  font-size: 1.8rem;
}
.contact__item p:first-child {
  font-weight: 500;
  font-size: 1.8rem;
}
.contact__item a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 200;
}
.contact__item a:hover {
  color: #AEC948;
}

.contact__content {
  position: relative;
  width: 35%;
  border-radius: 30px;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  background-size: cover;
}
.contact__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: rgba(37, 37, 37, 0.9);
  border-radius: 30px;
}
.contact__content > * {
  z-index: 2;
}

.contact__title {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.contact__desc {
  color: #fff;
}

.contact__form {
  position: relative;
  width: 60%;
  padding: 6rem 0;
  padding-left: 10%;
}

.contact-phone {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.contact-phone__item {
  background-color: #F7F6F9;
  border-radius: 30px;
  padding: 4rem 5rem;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.contact-phone__item .icon {
  height: 6rem;
  width: 6rem;
  padding: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #AEC948;
  margin-right: 2rem;
}
.contact-phone__item .icon img {
  height: 90%;
  width: 90%;
}
.contact-phone__item .title {
  font-size: 2.4rem;
  font-weight: 600;
}
.contact-phone__item .link {
  font-size: 2rem;
  color: #252525;
}
.contact-phone__item .link:hover {
  color: #AEC948;
}

.social__list {
  display: flex;
  flex-direction: row;
  margin-top: auto;
}

.social__item {
  background-color: #AEC948;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social__item:hover {
  background-color: #30A145;
}
.social__item img {
  width: 90%;
  height: auto;
  object-fit: contain;
}
.social__item + .social__item {
  margin-left: 1rem;
}

#page-header {
  position: relative;
  width: calc(100% - 4rem);
  border-radius: 30px;
  margin: 2rem auto 0;
}

.page-header__container {
  position: relative;
  max-width: calc(1520 / 1680 * 100%);
  margin: 0 auto;
  z-index: 2;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}
.page-header__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-color: rgba(1, 1, 1, 0.6);
  border-radius: 30px;
}
.page-header__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.page-header__content {
  padding-top: 24rem;
  padding-bottom: 6rem;
}

.page-header__title {
  color: #fff;
  font-size: 7rem;
  font-weight: 200;
}

.page-header__desc {
  color: #fff;
  max-width: 750px;
  font-size: 2rem;
  line-height: 35px;
  font-weight: 200;
}

#fleet {
  margin-top: 10rem;
}

.fleet__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  padding-bottom: 6rem;
}

.fleet__item {
  position: relative;
}
.fleet__item:before {
  content: "";
  padding-bottom: 130%;
  display: block;
}

.fleet__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.fleet__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.fleet__illustration:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.3);
}

.fleet__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 2vw;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fleet__title {
  font-weight: 300;
}

.fleet__desc {
  color: #fff;
}

.fleet__number {
  color: #fff;
  background-color: rgba(1, 1, 1, 0.3);
  align-self: end;
  font-size: 2rem;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
}

.values__list {
  background-color: #F7F6F9;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
  padding: 5rem;
}

.values__item {
  text-align: center;
}

.values__icon {
  position: relative;
  background-color: #AEC948;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  width: 6rem;
  border-radius: 20px;
  padding: 1rem;
  margin: 0 auto;
}
.values__icon img {
  height: 90%;
  width: 90%;
}

.values__title {
  font-size: 2.6rem;
  margin: 1.5rem 0;
}

.values__desc {
  line-height: 25px;
}

/* timeline.scss */
* {
  box-sizing: border-box;
}

#timeline {
  position: relative;
  width: calc(100% - 4rem);
  margin: 0 auto;
  border-radius: 30px;
  margin-top: 10rem;
  height: 80rem;
}

.timeline__container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10rem;
  z-index: 2;
  height: 100%;
  background-color: rgba(1, 1, 1, 0.7);
  border-radius: 30px;
}

.timeline__content {
  position: relative;
  width: 35%;
  z-index: 10;
}

.timeline__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 300;
}

.timeline__desc {
  color: #fff;
  margin-top: 1rem;
}

.timeline-bg {
  position: absolute !important;
  background-color: #0f172a;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  z-index: 0;
}
.timeline-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background-color: rgba(1, 1, 1, 0.6);
  border-radius: 30px;
}

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

.timeline {
  width: 60%;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.timeline-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 450px;
  margin-left: 6rem;
  margin-top: 5rem;
}

.timeline-content__text .title {
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.timeline-content__text .content {
  color: #fff;
  line-height: 25px;
}

/* DATE */
.timeline-date {
  position: relative;
  z-index: 10;
  text-align: right;
  width: 100%;
}
.timeline-date:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: white;
}
.timeline-date .slick-list {
  overflow: visible;
  display: flex;
  align-items: end;
  justify-content: end;
}
.timeline-date .slick-track {
  display: flex !important;
  flex-direction: column;
  max-width: 100%;
  transform: none !important;
  overflow: visible;
  height: 60%;
  margin-top: auto;
}
.timeline-date .slick-slide {
  display: none !important;
  overflow: visible;
  opacity: 0.6;
}
.timeline-date .slick-slide.slick-active {
  display: block !important;
}
.timeline-date .slick-slide.slick-current {
  font-size: 3rem;
  opacity: 1;
}

.timeline-date__item {
  position: relative;
  color: #fff;
  text-align: right;
  width: 100% !important;
}
.timeline-date__item span {
  position: relative;
  width: 100%;
  padding-right: 6rem;
}
.timeline-date__item span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  display: block;
  height: 2rem;
  width: 2rem;
  background-color: #fff;
  border-radius: 50%;
}

.timeline__arrows {
  position: absolute;
  top: 10rem;
  left: 47%;
  transform: translateX(100%);
  display: flex;
  align-items: center;
  color: white;
  z-index: 10;
}
.timeline__arrows .slick-prev:before {
  background-image: url("../img/arrow-white.svg");
}
.timeline__arrows .slick-next:before {
  background-image: url("../img/arrow-white.svg");
}

#trust {
  margin-top: 10rem;
}

#trust .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.trust__content {
  position: relative;
  width: calc(65% - 1rem);
  padding: 8rem 10% 8rem 6rem;
  border-radius: 30px;
  background: linear-gradient(45deg, #252525 0%, rgba(38, 37, 37, 0.85) 100%);
}

.trust__title {
  color: #fff;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.trust__desc {
  color: #fff;
}

.trust__list {
  margin: 2rem 0;
}

.trust__item {
  color: #fff;
  padding: 1rem 0;
  font-weight: 400;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.trust__item:before {
  content: "";
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  margin-right: 2rem;
  background-image: url("../img/icon-meyers.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

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

#map {
  height: 50rem;
  width: calc(100% - 4rem);
  border-radius: 30px;
  margin: 0 auto;
  margin-top: 10rem;
}

#benefits .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.benefits__content {
  width: 35%;
}

.benefits__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 55%;
}

.benefits__item {
  position: relative;
  background-color: #F7F6F9;
  border-radius: 30px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.benefits__text {
  margin-top: 2rem;
}

.benefits__icon {
  position: relative;
  height: 6.5rem;
  width: 6.5rem;
  background-color: #252525;
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits__icon img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.benefits__title {
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 2rem;
}

#breadcrumbs {
  padding: 2rem 0 3rem;
}
#breadcrumbs + .section {
  padding-top: 0;
}

.section {
  position: relative;
  padding-top: 10rem;
}
.section--black {
  background-color: #252525;
  width: calc(100% - 4rem);
  margin: 0 auto;
  border-radius: 30px;
  padding: 6rem;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1380px;
  /* largeur idéale pour les écrans larges */
  margin: 0 auto;
  padding-inline: 1.5rem;
  /* évite que le texte touche les bords */
  position: relative;
  z-index: 2;
}

.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: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }
}
/* FORM */
.form__title {
  color: #AEC948;
  margin-bottom: 2rem;
  font-size: 4rem;
  line-height: 0.8;
}

#gform .gform__desc {
  margin-bottom: 2rem;
}

#gform .gform__desc p {
  color: #fff;
  font-weight: 200;
  font-size: 2rem;
}

#gform .gform_title {
  font-size: 3.6rem;
}

#gform .gform_required_legend {
  display: none;
}

#gform_confirmation_message_1 {
  margin-bottom: 40px;
}

.gform_heading {
  margin-bottom: 2rem !important;
}

#gform .gform_fields {
  gap: 1rem;
  column-gap: 3rem;
}

#gform .gform-field-label {
  color: #252525;
  opacity: 1;
  font-size: 1.6rem;
  font-weight: 700;
}

#gform .gfield_label {
  color: #252525;
  opacity: 1;
  font-size: 1.6rem;
  font-weight: 400;
}

#gform input {
  width: 100%;
  border: none;
  padding: 1rem 1rem;
  font-family: "Outfit", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #252525;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(1, 1, 1, 0.1);
}
#gform input::placeholder {
  color: #252525;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform select {
  width: 100%;
  border: none;
  font-family: "Outfit", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #252525;
  border-radius: 5px;
}
#gform select::placeholder {
  color: #252525;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform textarea {
  width: 100%;
  border: none;
  padding: 1rem;
  font-family: "Outfit", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #252525;
  border-radius: 10px;
}
#gform textarea::placeholder {
  color: #252525;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform .gfield-choice-input {
  border: 1px solid rgba(1, 1, 1, 0.2) !important;
  padding: 0;
  margin: 0;
  cursor: default;
  box-sizing: border-box;
  margin: 2px;
  padding: initial;
  border: initial;
}

#gform .gform_button {
  width: auto;
  color: #fff;
  line-height: 1;
  border: none;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out 0s;
  background: #AEC948;
  font-family: "Outfit", sans-serif;
  padding: 1.2rem 3rem;
  display: block;
  cursor: pointer;
  border-radius: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-left: auto;
}
#gform .gform_button:hover {
  background: #252525;
}

#gform .gf_progressbar_percentage {
  background: #30A145;
}

#gform .gf_progressbar_title {
  color: #AEC948;
  font-size: 2rem;
  text-align: center;
}

#input_1_10 {
  display: block;
  width: 100%;
  margin: 10px 0px;
}

#input_1_10 label {
  max-width: 100%;
}

#input_1_10.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gform_heading {
  display: none;
}

#gform .gchoice {
  vertical-align: middle;
}
#gform .gchoice .gform-field-label {
  text-transform: none;
  color: rgba(1, 1, 1, 0.5);
  font-weight: 500;
  letter-spacing: normal;
}

#gform .gfield_checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.gchoice:first-child {
  margin-left: 0px;
}

#gform .gform_confirmation_message {
  font-size: 2rem;
  color: #AEC948;
  line-height: 1.7;
  margin-bottom: 10rem;
  margin-top: 5rem;
}

#booking .gfield_description.instruction {
  display: none;
}

#gform .gsection_title {
  font-size: 4rem;
  color: #AEC948;
  line-height: 0.7;
  margin-bottom: 1rem;
}

#gform .gfield--type-product {
  padding: 2rem;
  background-color: #fff;
  border-radius: 5px;
}
#gform .gfield--type-product .gfield_label_product {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #30A145;
  text-transform: none;
  line-height: 1.2;
}
#gform .gfield--type-product .ginput_quantity_label {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-transform: none;
}
#gform .gfield--type-product .ginput_product_price_wrapper {
  text-transform: none;
}
#gform .gfield--type-product .ginput_product_price_label {
  text-transform: none;
}
#gform .gfield--type-product .ginput_quantity {
  margin: 0.5rem 0;
}
#gform .gfield--type-product input {
  width: auto;
  align-self: baseline;
  background-color: #30A145 !important;
}

#gform .gfield--type-total {
  padding: 2rem;
  background-color: white;
  margin-top: 2rem;
}
#gform .gfield--type-total input {
  background-color: #30A145 !important;
}

#gform .gfield--type-section {
  margin-bottom: 2rem;
}

#gform .gfield_total label {
  font-weight: 900;
}

#gform .gform_page_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
#gform .gform_page_footer input {
  width: 100%;
}

#booking #gform .gfield input {
  background-color: #fff;
}

#booking #gform select {
  background-color: #fff;
}

#booking #gform textarea {
  background-color: #fff;
}

#booking #gform .gform_button {
  width: auto;
  color: #fff;
  line-height: 1;
  border: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  background: #AEC948;
  font-family: "Metropolis", sans-serif;
  padding: 10px 20px;
  display: block;
  cursor: pointer;
  letter-spacing: 0.1em;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#booking #gform .gform_button:hover {
  background-color: #F7F6F9;
  color: #AEC948;
}

#gform.jobs-form__form .gfield_label {
  color: #fff;
}

#gform .ginput_container_fileupload input {
  max-width: 400px;
  padding: 0;
}

@media (max-width: 768px) {
  #gform .gform_page_footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.footer {
  background: #fff;
  position: relative;
  margin: 0 auto;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  margin-top: 4rem;
  max-width: calc(1520 / 1680 * 100%);
  margin: 0 auto;
  z-index: 2;
}

.footer__title {
  font-size: 4.8rem;
  color: #252525;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding: 10rem 0;
}

.footer__logo {
  height: 10rem;
  margin-bottom: 7rem;
}
.footer__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer__part {
  position: relative;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
.footer__part p {
  font-size: 2rem;
}
.footer__part span {
  display: block;
}
.footer__part a {
  font-size: 2rem;
}

.footer__links a {
  color: #252525;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 0.7rem 0;
  display: block;
}
.footer__links a:hover {
  color: #AEC948;
}

/* MENU */
.footer__list {
  display: flex;
  flex-direction: column;
}

.footer__list li {
  text-align: left;
}

.footer__list a {
  font-size: 2.4rem;
  color: #252525;
  font-weight: 300;
  padding: 1rem 0;
  display: block;
}
.footer__list a:hover {
  color: #AEC948;
}

/* SOCIAL */
.footer-social {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 5rem auto;
}
.footer-social a {
  height: 6.5rem;
  width: 6.5rem;
  display: block;
  background-image: url("../img/social-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  transform: scale(1.04);
}
.footer-social a + a {
  margin-left: 3rem;
}
.footer-social a img {
  position: relative;
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}

/* COPYRIGHT */
.footer__copyright {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 1;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  padding: 5rem 0;
}
.footer__copyright p {
  font-size: 1.8rem;
  opacity: 1;
  color: #252525;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 300;
}
.footer__copyright p a {
  opacity: 1;
  line-height: 1;
  color: #fff;
  margin-left: 1rem;
  font-weight: 300;
  cursor: pointer;
}
.footer__copyright p a:hover {
  color: #30A145;
}

@media (max-width: 1024px) {
  .footer {
    width: 100%;
    border-radius: 0px;
  }

  .footer__main {
    flex-direction: column;
  }

  .footer__part {
    max-width: 100%;
    text-align: center !important;
  }
  .footer__part + .footer__part {
    margin-top: 2rem;
  }

  .footer__title {
    font-size: 5rem;
  }

  .footer__copyright .container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    padding: 0rem 5rem;
  }

  .footer__copyright > * {
    width: 100%;
    margin: 5px 0px;
    margin-left: 0;
    padding-left: 0;
    line-height: 1.4;
    flex-direction: column;
  }
  .footer__copyright > *:before {
    display: none;
  }

  .menu--footer li {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .menu--footer li:last-child {
    margin-bottom: 0px;
  }

  .footer__contact li {
    justify-content: center;
  }

  .footer__copyright > *:before {
    display: none;
  }
}
.slick-track,
.slick-list {
  height: 100%;
  width: 100%;
}

.slick-arrow {
  display: inline-block !important;
  transition: all 0.2s ease-in-out 0s;
}
.slick-arrow:hover {
  opacity: 0.5;
}

.slick-next {
  position: relative;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-next:before {
  content: "";
  background-image: url("../img/icon-arrow.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}

.slick-prev {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-prev:before {
  content: "";
  background-image: url("../img/icon-arrow.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  transform: rotate(180deg);
}

.slick-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
  margin-top: 0;
}
.slick-dots button {
  background-color: #707070;
  cursor: pointer;
  border: 1px solid #707070;
  text-indent: -999999px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots .slick-active button {
  width: 10px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: none;
  background-image: url("../img/icon-dot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.menu {
  position: relative;
  width: 100%;
  z-index: 99;
}

.menu--container {
  padding: 4rem 0;
  max-width: calc(1480/1680 * 100%);
  margin: 0 auto;
}

.menu--logo {
  height: auto;
  width: 120px;
}
.menu--logo a {
  height: 100%;
  width: 100%;
  display: inline-block;
}
.menu--logo img {
  height: 100%;
  width: 100%;
  text-align: center;
  object-fit: contain;
  margin-right: auto;
}

.menu--button a {
  font-weight: 500;
  line-height: 1;
  font-size: 2rem;
  color: #fff;
  text-transform: none;
  padding: 1.2rem 3rem;
  display: inline-block;
  background-color: #AEC948;
  border-radius: 10px;
}
.menu--button a:hover {
  color: #fff;
  background-color: #30A145;
}

.menu__list {
  width: 100%;
  display: inline-block;
  padding: 0rem 4rem;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.15);
}
.menu__list li {
  position: relative;
  display: inline-block;
}
.menu__list li + li {
  margin-left: 4.5vw;
}
.menu__list a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  line-height: 1;
  font-size: 2rem;
  padding: 1.2rem 2rem;
}
.menu__list a:hover, .menu__list a:active, .menu__list a.active {
  color: #AEC948;
}

.menu__list .current-menu-item a {
  color: #AEC948;
}

.menu__list .menu--button.current-menu-item a:before {
  display: none;
}

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

/* MOBILE MENU */
.button--mobile {
  display: none;
}

/* MENU BURGER */
.menu--burger {
  position: fixed;
  text-align: right;
  display: none;
  z-index: 1022;
  right: 2.5rem;
  cursor: pointer;
  margin-left: 2rem;
  background-color: rgba(109, 15, 6, 0.8);
  border-radius: 5px;
}
.menu--burger .line1 {
  background-color: #30A145;
}
.menu--burger .line2 {
  background-color: #30A145;
}
.menu--burger .line3 {
  background-color: #30A145;
}

.menu--burger div {
  width: 3rem;
  height: 0.3rem;
  margin: 10px;
  transition: all 0.5s ease-in;
  border-radius: 1px;
}

.menu--burger.active div {
  background: #30A145;
  margin: 4px;
}

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

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

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

.menu--burger {
  display: none;
}

.action--close {
  position: fixed;
  z-index: 100;
  top: 40px;
  right: 20px;
}

/* TOP BAR */
.top-bar {
  background-color: #AEC948;
  padding: 1.2rem 4rem;
}

.top-bar__content {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  line-height: 1.4;
}
.top-bar__content > * {
  font-size: 1.6rem;
  letter-spacing: 0.7px;
  line-height: 1.4;
}
.top-bar__content em {
  font-style: normal;
  font-weight: 700;
}

.top-bar__btn {
  color: #EBD58C;
  margin-left: 2rem;
  border-bottom: 1px solid #EBD58C;
}
.top-bar__btn:hover {
  color: white;
  border-bottom: 1px solid white;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header {
    height: 100px;
  }

  .menu {
    height: 100%;
  }

  .mobile.menu--logo {
    display: inline;
    height: auto;
    margin-right: 0;
    width: 180px;
    position: relative;
  }
  .mobile.menu--button {
    display: inline;
    margin-right: 0;
    margin-left: 0;
  }
  .mobile.menu--button a {
    font-size: 4rem;
  }

  .menu--button {
    display: none;
  }

  .menu--logo {
    margin-right: auto;
    position: fixed;
    height: auto;
  }

  .menu--container {
    padding: 20px 0;
  }

  .menu--header {
    display: flex;
    position: fixed;
    left: 0;
    top: -120%;
    width: 100%;
    background: #AEC948;
    padding: 80px calc(150/1680 * 100%) 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: top 1s ease-in;
    z-index: 99;
    overflow-y: scroll;
  }

  .menu__list a {
    color: #30A145;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
  }

  .menu--header .menu__list > li {
    opacity: 1;
    display: block;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 0;
  }
  .menu--header .menu__list > li a {
    padding: 2rem 0;
    width: 100%;
    display: block;
  }

  .menu--header.active {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .menu--burger {
    display: block;
  }

  .menu__list {
    margin-right: 0;
    padding: 3rem;
  }

  .menu__list .menu-item-has-children {
    padding-right: 0;
  }
  .menu__list .menu-item-has-children:after {
    display: none;
  }
  .menu__list .menu-item-has-children .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    gap: 1rem;
    visibility: visible;
    position: relative;
    transform: none;
    min-width: auto;
    left: auto;
    top: 0;
    margin-top: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li {
    display: block;
    padding: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li a {
    font-weight: 400;
    color: #252525;
    font-size: 14px;
  }

  .menu__list .current-menu-item a:before {
    bottom: 15px;
    right: 0;
    left: auto;
    width: 50px;
  }
}
@media (max-width: 1024px) {
  .menu--logo {
    width: 80px;
  }
  .menu--logo a {
    display: block;
    width: 100%;
  }
  .menu--logo img {
    width: 100%;
  }

  .burger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu--header {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .menu--container {
    padding: 15px 2.5rem;
    max-width: 100%;
  }

  .menu--button {
    margin-left: 0;
    margin-right: 1rem;
  }
  .menu--button a {
    font-size: 12px;
  }

  .top-bar__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 550px) {
  .menu--logo {
    width: 80px;
  }

  .menu-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .menu__list a {
    font-weight: 600;
  }

  .menu--burger {
    margin-left: 1rem;
  }
}
.jobs__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.jobs__item {
  position: relative;
  background-color: #F7F6F9;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  padding: 1rem;
}

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

.jobs__content {
  width: 62%;
  padding: 4rem;
}
.jobs__content .btn {
  margin-left: auto;
}

.jobs__text {
  display: flex;
  flex-direction: column;
}

.jobs__title {
  font-size: 2.8rem;
  color: #30A145;
  margin-bottom: 1.5rem;
}

.jobs__desc {
  max-width: 80%;
}
.jobs__desc h4 {
  margin-bottom: 1.5rem;
}

.jobs__infos {
  max-width: 520px;
  margin: 4rem 0;
}

.jobs__infos .infos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.jobs__infos .infos + .infos {
  margin-top: 1.5rem;
}
.jobs__infos .infos:before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.infos--location:before {
  background-image: url("../img/icon-position.svg");
}

.infos--experience:before {
  background-image: url("../img/icon-work.svg");
}

.infos--language:before {
  background-image: url("../img/icon-language.svg");
}

.infos--licence:before {
  background-image: url("../img/icon-licence.svg");
}

/* JOBS FORM */
#jobs-form {
  position: relative;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding-top: 6rem;
  margin-top: 10rem;
}

.jobs-form__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 60%;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.jobs-form__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.jobs-form__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 1, 1, 0.2);
  border-radius: 30px;
}

.jobs-form__form {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #252525;
  border-radius: 30px;
  padding: 6rem 10rem;
}
.jobs-form__form > * {
  color: #fff;
}

/* JOBS INTRO */
#jobs-intro {
  margin-top: 10rem;
}

.jobs-intro__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.jobs-intro__content {
  position: relative;
  width: 31%;
}

.jobs-intro__list {
  position: relative;
  width: 64%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.jobs-intro__illustration {
  position: relative;
  border-radius: 30px;
}
.jobs-intro__illustration:before {
  content: "";
  padding-bottom: 60%;
  display: block;
}
.jobs-intro__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.jobs-intro__text {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
}

.jobs-intro__location {
  background-color: #AEC948;
  color: #fff;
  border-radius: 50px;
  display: inline-block;
  align-self: self-start;
  padding: 0rem 2rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.jobs-intro__title {
  margin-bottom: 1rem;
}

.jobs-intro__desc {
  position: relative;
  max-height: 6.5rem;
  overflow: hidden;
}
.jobs-intro__desc p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 200;
  line-height: 20px;
}
.jobs-intro__desc:before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6.5rem;
  content: "";
  opacity: 1;
  visibility: visible;
  background: linear-gradient(0deg, #252525 0%, rgba(37, 37, 37, 0) 60%);
  transition: all 0.3s ease-in-out;
}

.jobs-intro__link {
  color: #fff;
  border-bottom: 1px solid #fff;
  align-self: start;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.5rem;
}
.jobs-intro__link:hover {
  color: #AEC948;
  border-bottom: 1px solid #AEC948;
}

#services {
  position: relative;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.services__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4rem;
}
.services__item:nth-child(2) {
  flex-direction: row-reverse;
}
.services__item:last-child {
  margin-bottom: 0;
}

.services__content {
  width: calc(60% - 2rem);
  padding: 6rem;
  background-color: #F7F6F9;
  border-radius: 30px;
}

.services__text {
  max-width: 80%;
}

.services__title {
  color: #fff;
}

.services__desc {
  margin: 3rem 0;
}
.services__desc p + p {
  margin-top: 1.5rem;
}

.services__illustration {
  position: relative;
  width: 40%;
  z-index: 0;
  border-radius: 30px;
}

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

/* SERVICES INTRO */
.services-intro__list {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.services-intro__item {
  position: relative;
  height: 64rem;
}
.services-intro__item:first-child .services-intro__text {
  color: #fff;
  max-width: 70%;
}

.services-intro__bg {
  position: relative;
  height: 100%;
  border-radius: 30px;
}
.services-intro__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.3);
  border-radius: 30px;
}
.services-intro__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.services-intro__content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: flex;
  align-items: end;
  padding: 4rem;
}
.services-intro__content:hover .services-intro__desc {
  max-height: 200px;
  opacity: 1;
}

.services-intro__text {
  color: #fff;
}

.services-intro__title {
  font-weight: 300;
  font-size: 3.8rem;
  line-height: 40px;
  margin-bottom: 2rem;
}

.services-intro__desc {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 25px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

@media (max-width: 1024px) {
  .services__item {
    flex-direction: column;
    align-items: baseline;
  }
  .services__item:nth-child(even) {
    flex-direction: column;
  }

  .services__content {
    width: 100%;
    padding: 0;
  }

  .services__illustration {
    width: 100%;
    margin-top: 4rem;
    max-height: 50rem;
  }
}
#page-content {
  margin-bottom: 10rem;
}

.post-text h2 {
  font-size: 2.4rem;
  font-weight: 300 !important;
  margin-bottom: 2rem;
}
.post-text h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.post-text ul {
  list-style-type: disc;
  margin: 2rem 0;
  margin-left: 2rem;
}

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