/* Libre Baskerville - Variable Font*/
@font-face {
  font-display: swap;
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400 700;
  src: url(../assets/fonts/LibreBaskerville-VariableFont_wght.woff2) format("woff2");
}
/* Libre Baskerville - Variable Font Italic*/
@font-face {
  font-display: swap;
  font-family: "Libre Baskerville";
  font-style: italic;
  font-weight: 400 700;
  src: url(../assets/fonts/LibreBaskerville-Italic-VariableFont_wght.woff2) format("woff2");
}
/* Tex Gyre Terms - regular */
@font-face {
  font-display: swap;
  font-family: "Tex Gyre Terms";
  font-style: normal;
  font-weight: normal;
  src: url(../assets/fonts/texgyretermes-regular.woff2) format("woff2");
}
/* Tex Gyre Terms - italic */
@font-face {
  font-display: swap;
  font-family: "Tex Gyre Terms";
  font-style: italic;
  font-weight: normal;
  src: url(../assets/fonts/texgyretermes-italic.woff2) format("woff2");
}
/* Tex Gyre Terms - bold */
@font-face {
  font-display: swap;
  font-family: "Tex Gyre Terms";
  font-style: normal;
  font-weight: bold;
  src: url(../assets/fonts/texgyretermes-bold.woff2) format("woff2");
}
/* Tex Gyre Terms - bold-italic */
@font-face {
  font-display: swap;
  font-family: "Tex Gyre Terms";
  font-style: italic;
  font-weight: bold;
  src: url(../assets/fonts/texgyretermes-bolditalic.woff2) format("woff2");
}
@keyframes slideToLeft {
  0% {
    transform: translate(40%, 60px) rotate(5deg);
    opacity: 0.6;
  }
  40% {
    transform: translate(100%, 280px) rotate(100deg);
    opacity: 0;
  }
  60% {
    transform: translate(-200%, 280px) rotate(-100deg);
    opacity: 0;
  }
  100% {
    transform: translate(-140%, 60px) rotate(-5deg);
    opacity: 0.6;
  }
}
@keyframes slideToRight {
  0% {
    transform: translate(-140%, 60px) rotate(-5deg);
    opacity: 0.6;
  }
  40% {
    transform: translate(-200%, 280px) rotate(-100deg);
    opacity: 0;
  }
  60% {
    transform: translate(100%, 280px) rotate(100deg);
    opacity: 0;
  }
  100% {
    transform: translate(40%, 60px) rotate(5deg);
    opacity: 0.6;
  }
}
@keyframes backgroundShaker {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
body {
  margin: 0;
  overflow-x: hidden;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Tex Gyre Terms", sans-serif;
  background-color: #0B1120;
  text-align: center;
}

h1, h2, h3, h4, h5 {
  font-family: "Libre Baskerville", sans-serif;
}

h1, h2, h3, h4, h5, p {
  cursor: default;
}

a {
  text-decoration: none;
  cursor: pointer;
}

strong {
  color: inherit;
}

header {
  background-color: #0B1120;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 1147px) {
  header {
    height: 60px;
    padding: 0 15px;
  }
}
header .top {
  display: flex;
  align-items: center;
}
@media (max-width: 1147px) {
  header .top {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
header .logo img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 1147px) {
  header .logo img {
    height: 50px;
  }
}
header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1147px) {
  header .burger {
    display: block;
  }
}
header .burger span {
  margin: 0.2rem 0;
  display: block;
  height: 3px;
  width: 100%;
  background: #F1F5F9;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
header .burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .burger.open span:nth-child(2) {
  opacity: 0;
}
header .burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
header .inside {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media (max-width: 1147px) {
  header .inside {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    align-items: center;
    padding: 0;
    background-color: #2C3B50;
  }
  header .inside.open {
    max-height: 300px;
    padding: 20px 0;
  }
}
header .inside__link {
  font-family: "Libre Baskerville", sans-serif;
  color: #F1F5F9;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  background: none;
  border: none;
}
header .inside__link:hover {
  color: rgb(133.9, 168.5, 203.1);
}
header .inside__btn {
  background-color: #F1F5F9;
  padding: 5px 20px;
  color: #0B1120;
  border-radius: 8px;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: bold;
  transition: all 0.3s;
}
header .inside__btn:hover {
  scale: 1.1;
}

footer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  padding: 2rem;
}
footer .left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .left__text {
  text-align: left;
}
footer .left__text--title {
  font-size: 1.5rem;
}
footer .left__adress {
  display: flex;
  flex-direction: column;
  align-items: end;
  text-align: end;
}
footer .left__adress--icon {
  fill: #415D89;
  height: 50px;
}
footer .right {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
footer .right__link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
footer .right__link--icon {
  fill: #415D89;
  height: 50px;
}
footer .right__link--ML {
  padding-bottom: 15px;
}
footer .right__adress {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}
footer .right__adress--icon {
  fill: #415D89;
  height: 50px;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  footer .left, footer .right {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .left__text, footer .left__adress, footer .right__text, footer .right__adress {
    align-items: center;
    text-align: center;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal__content {
  background: #F1F5F9;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  height: 95%;
  max-height: 600px;
  position: relative;
  margin-top: 40px;
}
.modal__content h2, .modal__content p, .modal__content label, .modal__content input, .modal__content textarea {
  color: #0B1120;
  font-size: 1em;
}
.modal__close {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
  color: #0B1120;
}
.modal__form {
  display: flex;
  flex-direction: column;
}
.modal__form--group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-top: 5px;
}
.modal__form--group input, .modal__form--group textarea {
  display: block;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  border: 1px solid #0B1120;
  border-radius: 5px;
  padding: 5px;
  font-size: 1.2em;
  font-family: "Tex Gyre Terms", serif;
}
.modal__form--group textarea {
  height: 200px;
  resize: none;
  overflow-y: auto;
}
.modal__form--submit {
  background-color: #0a637d;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  margin: 25px auto;
  font-size: 1.1em;
  font-family: "Libre Baskerville", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.modal__form--submit:hover {
  transform: scale(1.05);
  background-color: rgb(6.2222222222, 61.6, 77.7777777778);
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

#status-modal .modal__content {
  background: #F1F5F9;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  height: 95%;
  max-height: 250px;
  position: relative;
  margin-top: 40px;
}
#status-modal .modal__content h2, #status-modal .modal__content p, #status-modal .modal__content label, #status-modal .modal__content input, #status-modal .modal__content textarea {
  color: #0B1120;
  font-size: 1.1em;
}

.reveal {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.reveal-left {
  transform: translateX(-500px);
}

.reveal-right {
  transform: translateX(500px);
}

.reveal-up {
  transform: translateY(100px);
}

.reveal-scale {
  transform: scale(0.5);
}

.reveal-flip {
  transform: rotateY(-90deg);
  backface-visibility: hidden;
  will-change: transform;
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) rotate(0) !important;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

@media (max-width: 1100px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  .delay-1, .delay-2, .delay-3 {
    transition-delay: 0s !important;
  }
}
* {
  color: #F1F5F9;
  box-sizing: border-box;
}

.title {
  font-size: 2.5rem;
  font-weight: 400;
  padding: 0 1rem;
}
@media (max-width: 640px) {
  .title {
    font-size: 2rem;
  }
}
.title__mini {
  font-weight: normal;
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .title__mini {
    font-size: 1.2rem;
  }
}

.intro {
  padding: 2em 15%;
  background: linear-gradient(to right, #2C3B50, #0B1120);
}
@media (max-width: 1100px) {
  .intro {
    padding: 2em 5%;
  }
}
.intro__content {
  font-size: 1.6rem;
}
@media (max-width: 640px) {
  .intro__content {
    font-size: 1.2rem;
  }
}

.mission {
  padding: 3em 15%;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media (max-width: 1100px) {
  .mission {
    flex-direction: column;
    align-items: center;
    padding: 2em 5%;
  }
}
.mission__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  width: 350px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  background-color: rgb(12.3046511628, 19.0162790698, 35.7953488372);
}
@media (max-width: 400px) {
  .mission__card {
    width: 100%;
    height: auto;
    gap: 1.5em;
  }
}
.mission__card--icon {
  height: 80px;
  fill: #F1F5F9;
}
.mission__card--title {
  font-size: 1.5rem;
  font-weight: normal;
}
@media (max-width: 640px) {
  .mission__card--title {
    font-size: 1.3rem;
  }
}
.mission__card--content {
  font-size: 1.4rem;
}
@media (max-width: 640px) {
  .mission__card--content {
    font-size: 1.1rem;
  }
}

.first, .second, .third {
  padding: 3em 15%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .first, .second, .third {
    padding: 2.5em 5%;
  }
}
.first__header, .second__header, .third__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .first__header, .second__header, .third__header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.first__header--icon, .second__header--icon, .third__header--icon {
  height: 70px;
}
.first__header--title, .second__header--title, .third__header--title {
  font-size: 2rem;
}
@media (max-width: 640px) {
  .first__header--title, .second__header--title, .third__header--title {
    font-size: 1.6rem;
  }
}
.first__content, .second__content, .third__content {
  text-align: start;
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .first__content, .second__content, .third__content {
    font-size: 1.2rem;
  }
}
.first__conclusion, .second__conclusion, .third__conclusion {
  display: flex;
  justify-content: space-between;
  gap: 4em;
  text-align: start;
}
@media (max-width: 1100px) {
  .first__conclusion, .second__conclusion, .third__conclusion {
    flex-direction: column;
    gap: 2em;
  }
}
.first__conclusion--problem, .first__conclusion--solution, .second__conclusion--problem, .second__conclusion--solution, .third__conclusion--problem, .third__conclusion--solution {
  width: 100%;
  margin: 1em 0;
}
.first__conclusion--title, .second__conclusion--title, .third__conclusion--title {
  font-size: 1.7rem;
  font-weight: normal;
}
@media (max-width: 640px) {
  .first__conclusion--title, .second__conclusion--title, .third__conclusion--title {
    font-size: 1.4rem;
  }
}
.first__conclusion ul, .second__conclusion ul, .third__conclusion ul {
  margin: 0;
  padding: 0;
}
.first__conclusion--list, .second__conclusion--list, .third__conclusion--list {
  margin-left: 0.8em;
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .first__conclusion--list, .second__conclusion--list, .third__conclusion--list {
    font-size: 1.2rem;
  }
}
.first__conclusion--content, .second__conclusion--content, .third__conclusion--content {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .first__conclusion--content, .second__conclusion--content, .third__conclusion--content {
    font-size: 1.2rem;
  }
}

.first {
  background: linear-gradient(to top right, rgba(241, 245, 249, 0.85), rgba(65, 93, 137, 0.85)), url("../assets/images/eolienne-arbre2.webp");
  background-position: center;
  background-size: cover;
}
@media (max-width: 640px) {
  .first {
    background: linear-gradient(to top right, #F1F5F9, #415D89);
  }
}
.first__header--icon {
  fill: #0B1120;
}
.first__header--title {
  color: #0B1120;
}
.first__content {
  color: #0B1120;
}
.first__conclusion--title {
  color: #0B1120;
}
.first__conclusion--list {
  color: #0B1120;
}
.first__conclusion--content {
  color: #0B1120;
}

.second {
  background-image: url("../assets/images/avion1.webp");
}
@media (max-width: 640px) {
  .second {
    background-image: none;
    background-color: #0B1120;
  }
}
.second__header--icon {
  fill: #F1F5F9;
}

.third {
  background: linear-gradient(to top right, rgba(241, 245, 249, 0.85), rgba(65, 93, 137, 0.85)), url("../assets/images/pion2.webp");
  background-position: center;
  background-size: cover;
}
@media (max-width: 640px) {
  .third {
    background: linear-gradient(to top right, #F1F5F9, #415D89);
  }
}
.third__header--icon {
  fill: #2C3B50;
}
.third__header--title {
  color: #2C3B50;
}
.third__content {
  color: #0B1120;
}
.third__subtitle {
  color: #2C3B50;
  font-size: 1.5rem;
  margin: 2em 0;
}
@media (max-width: 640px) {
  .third__subtitle {
    font-size: 1.2rem;
  }
}

.contact {
  background: linear-gradient(to right, #2C3B50, #0B1120);
  padding: 3em 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5em;
}
@media (max-width: 1100px) {
  .contact {
    flex-direction: column;
    padding: 2.5em 5%;
    gap: 2em;
  }
}
.contact__info {
  text-align: start;
  max-width: 50vw;
}
@media (max-width: 1100px) {
  .contact__info {
    max-width: 100%;
    text-align: center;
  }
}
.contact__info--title {
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .contact__info--title {
    font-size: 1.5rem;
  }
}
.contact__info--content {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .contact__info--content {
    font-size: 1.2rem;
  }
}
.contact__cta {
  display: inline-block;
  background-color: #0a637d;
  padding: 12px 25px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1100px) {
  .contact__cta {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .contact__cta {
    font-size: 1.2rem;
  }
}
.contact__cta:hover {
  transform: scale(1.05);
  background-color: rgb(6.2222222222, 61.6, 77.7777777778);
}/*# sourceMappingURL=experitses.css.map */