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

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

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

.list {
  position: relative;
  overflow: hidden;
  padding: 1em;
}
.list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../assets/images/arrow-down.webp);
  background-size: 1250px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 1300px) {
  .list::before {
    background-size: 100% auto;
  }
}
@media (max-width: 640px) {
  .list::before {
    background-size: contain;
  }
}
.list__content {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .list__content {
    font-size: 1.2rem;
  }
}
.list.reveal-active::before {
  animation: backgroundShaker 2s ease-in-out infinite;
  will-change: background-position;
}

.description {
  background: linear-gradient(to right, #2C3B50, #0B1120);
  padding: 1em 15%;
}
@media (max-width: 1100px) {
  .description {
    padding: 1em 5%;
  }
}
.description__title {
  text-transform: uppercase;
  font-size: 1.8rem;
}
@media (max-width: 640px) {
  .description__title {
    font-size: 1.5rem;
  }
}
.description__content {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .description__content {
    font-size: 1.2rem;
  }
}

.conclusion {
  padding: 1em 15%;
  background: linear-gradient(to right, #415D89, #F1F5F9);
}
@media (max-width: 1100px) {
  .conclusion {
    padding: 1em 5%;
  }
}
.conclusion__title {
  color: #0B1120;
  text-transform: uppercase;
}
.conclusion__content {
  color: #0B1120;
  font-size: 1.4rem;
}
@media (max-width: 640px) {
  .conclusion__content {
    font-size: 1.1rem;
  }
}

.contact {
  padding: 1em 15%;
}
@media (max-width: 1100px) {
  .contact {
    padding: 1em 5%;
  }
}
.contact__title {
  font-size: 2rem;
  font-weight: normal;
}
@media (max-width: 640px) {
  .contact__title {
    font-size: 1.7rem;
  }
}
.contact__content {
  font-size: 1.5rem;
}
@media (max-width: 640px) {
  .contact__content {
    font-size: 1.2rem;
  }
}
.contact__cta {
  display: inline-block;
  background-color: #0a637d;
  padding: 8px 15px;
  margin-top: 0.5em;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: underline;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 640px) {
  .contact__cta {
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
  }
}
.contact__cta:hover {
  transform: scale(1.05);
  background-color: rgb(6.2222222222, 61.6, 77.7777777778);
}/*# sourceMappingURL=approche.css.map */