@charset "UTF-8";
/* ==================================================
   IMPORTS
   ================================================== */
/* ================================
   Modern CSS Reset
   ================================ */
/* Box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Smooth text rendering */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Set core body defaults */
body {
  line-height: 1.5;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove built-in form typography styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Reset lists */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Anchor defaults */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* ================================
   WYSIWYG CONTENT
   ================================ */
.wysiwyg {
  --text-color: #111;
  --heading-color: #000;
  --muted-color: #666;
  --max-width: 70ch;
  --spacing: 1.25em;
  color: var(--text-color);
  line-height: 1.6;
}

/* --------- Titres --------- */
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  color: var(--heading-color);
  line-height: 1.2;
  margin: 2.5em 0 0.8em;
  font-weight: 600;
}

.wysiwyg h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.wysiwyg h2 {
  font-size: 2rem;
}

.wysiwyg h3 {
  font-size: 1.5rem;
}

.wysiwyg h4 {
  font-size: 1.25rem;
}

.wysiwyg h5 {
  font-size: 1.1rem;
}

.wysiwyg h6 {
  font-size: 1rem;
}

/* --------- Paragraphes --------- */
.wysiwyg p {
  max-width: var(--max-width);
  margin-bottom: var(--spacing);
}

/* --------- Liens --------- */
.wysiwyg a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* --------- Listes --------- */
.wysiwyg ul,
.wysiwyg ol {
  max-width: var(--max-width);
  margin: var(--spacing) 0 var(--spacing) 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg li {
  margin-bottom: 0.4em;
}

/* --------- Citations --------- */
.wysiwyg blockquote {
  border-left: 3px solid currentColor;
  padding-left: 1em;
  margin: 2em 0;
  color: var(--muted-color);
  font-style: italic;
  max-width: var(--max-width);
}

/* --------- Images --------- */
.wysiwyg img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
}

/* --------- Séparateurs --------- */
.wysiwyg hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 3em 0;
}

/* --------- Code --------- */
.wysiwyg pre {
  background: #f6f6f6;
  padding: 1em;
  overflow-x: auto;
  margin: 2em 0;
}

.wysiwyg code {
  font-family: monospace;
  font-size: 0.9em;
}

/* ==================================================
   VARIABLES
   ================================================== */
:root {
  --color-text: #111;
  --color-inv: #014B43;
  --color-inv2: #24403C;
  --color-bg: #f9f9f9;
  --color-bg2: #efefef;
  --color-muted: #666;
  --font-base: "Work Sans", sans-serif;
  --container-width: 1200px;
  --container-padding: 1.5rem;
}

/* ==================================================
   BASES
   ================================================== */
html, body {
  background: #014B43;
}

#wpadminbar {
  display: none;
}

body {
  position: relative;
  font-family: var(--font-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==================================================
   NAVIGATION
   ================================================== */
nav.top {
  position: fixed;
  top: 0;
  left: 0;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-bg);
  background: var(--color-inv);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
nav.top.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
nav.top a.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 5px;
}
nav.top a.site-logo img {
  width: 100%;
  max-width: 200px;
  height: 40px;
}
nav.top .menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav.top .menu li {
  padding: 10px;
}
nav.top .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: 10px;
}
nav.top .menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-bg);
  margin: 5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav.top .menu-toggle.is-active span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}
nav.top .menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
nav.top .menu-toggle.is-active span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}
@media (max-width: 800px) {
  nav.top .menu-toggle {
    display: block;
  }
  nav.top .menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--color-bg);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  nav.top .menu.is-open {
    right: 0;
  }
  nav.top .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  nav.top .menu li {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(1, 75, 67, 0.1);
    color: #014B43;
  }
  nav.top .menu li a {
    display: block;
    width: 100%;
    font-size: 18px;
  }
  nav.top a.site-logo img {
    max-width: 150px;
    height: 30px;
  }
}

/* ==================================================
   STRUCTURE
   ================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ==================================================
   ÉTATS
   ================================================== */
.smooth {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition: opacity 1s ease-out, transform 1s ease-out, -webkit-transform 1s ease-out;
}
.smooth.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.smooth.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.smooth.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.smooth.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.smooth.delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.smooth.delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.smooth.delay-6 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.smooth.delay-8 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.smooth.delay-10 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.smooth.delay-12 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.is-active {
  /* volontairement vide */
}

.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ==================================================
   RÉUTILISABLES
   ================================================== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-muted);
}

.flow > * + * {
  margin-top: 1em;
}

/* ==================================================
   POPINS
   ================================================== */
#popinvideo,
#popinimage, #popinMore {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(1, 75, 67, 0.85);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#popinvideo.is-open,
#popinimage.is-open, #popinMore.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#popinvideo .close,
#popinimage .close, #popinMore .close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10000;
  font-size: 32px;
  color: var(--color-inv);
  cursor: pointer;
}

#popinvideo iframe {
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
  background: #014B43;
  border-radius: 8px;
}

#popinimage img {
  max-width: 90vw;
  max-height: 90vh;
}

#popinMore {
  background: var(--color-inv);
  color: var(--color-bg);
  overflow: scroll;
}
#popinMore p {
  max-width: 800px;
  max-height: 90vh;
  font-size: 26px;
  padding: 100px 20px;
}
@media screen and (max-width: 800px) {
  #popinMore p {
    font-size: 16px;
  }
}

.openvideo {
  position: relative;
  cursor: pointer;
}

/* ==================================================
   WYSIWYG
   ================================================== */
.wysiwyg {
  /* le vrai style est dans wysiwyg.scss */
}

/* ==================================================
   COMPOSANTS - TOGGLE BUTTON
   ================================================== */
.toggleBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.toggleBtn span {
  font-size: 13px;
  opacity: 0.8;
}
.toggleBtn input {
  display: none;
}
.toggleBtn label {
  position: relative;
  width: 78px;
  height: 38px;
  border-radius: 40px;
  cursor: pointer;
}

.tg1.visible {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.tg1 {
  margin-bottom: 60px;
}
.tg1 label {
  background: var(--color-inv);
  -webkit-box-shadow: inset 3px 3px 6px rgb(35.082, 62.368, 58.47), inset -3px -3px 6px rgb(36.918, 65.632, 61.53);
          box-shadow: inset 3px 3px 6px rgb(35.082, 62.368, 58.47), inset -3px -3px 6px rgb(36.918, 65.632, 61.53);
}
.tg1 label::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  background: var(--color-bg2);
}
.tg1 input:checked + label::after {
  -webkit-transform: translateX(38px);
          transform: translateX(38px);
}

.tg2.visible {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.tg2 {
  margin-top: 20px;
  overflow: visible;
}
.tg2 label {
  background: var(--color-inv);
  -webkit-box-shadow: inset 3px 3px 6px rgb(35.082, 62.368, 58.47), inset -3px -3px 6px rgb(36.918, 65.632, 61.53);
          box-shadow: inset 3px 3px 6px rgb(35.082, 62.368, 58.47), inset -3px -3px 6px rgb(36.918, 65.632, 61.53);
  overflow: visible;
}
.tg2 label::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  top: 7px;
  left: 10px;
  background-image: url("../img/plane.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.tg2 input:checked + label::after {
  -webkit-transform: translateX(38px);
          transform: translateX(38px);
}

/* ==================================================
   COMPOSANTS - FORMULAIRE
   ================================================== */
.wpcf7 {
  width: 100%;
}
.wpcf7 .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wpcf7 .hidden-fields-container {
  display: none;
}
.wpcf7 #submitBtn {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  display: none;
}
.wpcf7 .screen-reader-response {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  background: var(--color-inv2);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.wpcf7:has(.wpcf7-form.invalid) .screen-reader-response,
.wpcf7:has(.wpcf7-form.sent) .screen-reader-response,
.wpcf7:has(.wpcf7-form.failed) .screen-reader-response,
.wpcf7:has(.wpcf7-form.spam) .screen-reader-response {
  opacity: 1;
  pointer-events: auto;
}

.wpcf7:has(.wpcf7-form.sent) .screen-reader-response {
  background: rgba(0, 200, 100, 0.1);
  color: green;
}

.wpcf7:has(.wpcf7-form.invalid) .screen-reader-response,
.wpcf7:has(.wpcf7-form.failed) .screen-reader-response {
  background: rgba(200, 0, 0, 0.1);
  color: red;
}

.formulaire {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 500px;
  gap: 20px;
}

.inputForm {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 40px;
}
.inputForm:has(textarea) {
  height: 152px;
}
.inputForm input,
.inputForm textarea,
.inputForm .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.inputForm .wpcf7-form-control-wrap input,
.inputForm .wpcf7-form-control-wrap textarea {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: #f9f9f9;
  background: var(--color-inv);
  border: 1px solid #dadada;
  border-radius: 40px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.inputForm .wpcf7-form-control-wrap textarea {
  padding-top: 20px;
  resize: none;
}
.inputForm label {
  position: absolute;
  top: 50%;
  left: 20px;
  z-index: 3;
  padding: 0 5px;
  color: #fff;
  background: var(--color-inv);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.inputForm .wpcf7-form-control-wrap:has(input:not(:-moz-placeholder)) ~ label, .inputForm .wpcf7-form-control-wrap:has(textarea:not(:-moz-placeholder)) ~ label {
  top: 0;
  font-size: 12px;
  color: var(--color-bg);
}
.inputForm .wpcf7-form-control-wrap:has(input:not(:-ms-input-placeholder)) ~ label, .inputForm .wpcf7-form-control-wrap:has(textarea:not(:-ms-input-placeholder)) ~ label {
  top: 0;
  font-size: 12px;
  color: var(--color-bg);
}
.inputForm .wpcf7-form-control-wrap:has(input:focus) ~ label,
.inputForm .wpcf7-form-control-wrap:has(input:not(:placeholder-shown)) ~ label,
.inputForm .wpcf7-form-control-wrap:has(textarea:focus) ~ label,
.inputForm .wpcf7-form-control-wrap:has(textarea:not(:placeholder-shown)) ~ label {
  top: 0;
  font-size: 12px;
  color: var(--color-bg);
}
.inputForm .wpcf7-form-control-wrap:has(input:focus) input,
.inputForm .wpcf7-form-control-wrap:has(textarea:focus) textarea {
  border-color: var(--color-bg);
}

/* ==================================================
   ANIMATIONS
   ================================================== */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(106, 92, 255, 0.7);
            box-shadow: 0 0 0 0 rgba(106, 92, 255, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 14px rgba(106, 92, 255, 0);
            box-shadow: 0 0 0 14px rgba(106, 92, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(106, 92, 255, 0.7);
            box-shadow: 0 0 0 0 rgba(106, 92, 255, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 14px rgba(106, 92, 255, 0);
            box-shadow: 0 0 0 14px rgba(106, 92, 255, 0);
  }
}
/* ==================================================
   HEADER SMOKE
   ================================================== */
.smoke-header {
  position: relative;
  height: 90vh;
  padding: 10% 0;
  --x1: 50%;
  --y1: 50%;
  --x2: 30%;
  --y2: 60%;
  --x3: 70%;
  --y3: 40%;
  background: radial-gradient(circle at var(--x1) var(--y1), #333 0%, transparent 60%), radial-gradient(circle at var(--x2) var(--y2), #222 0%, transparent 55%), radial-gradient(circle at var(--x3) var(--y3), #000 0%, transparent 50%), -webkit-gradient(linear, left top, left bottom, from(var(--color-inv)), to(var(--color-inv)));
  background: radial-gradient(circle at var(--x1) var(--y1), #333 0%, transparent 60%), radial-gradient(circle at var(--x2) var(--y2), #222 0%, transparent 55%), radial-gradient(circle at var(--x3) var(--y3), #000 0%, transparent 50%), linear-gradient(var(--color-inv), var(--color-inv));
  background-blend-mode: screen;
  overflow: hidden;
}

/* ==================================================
   HEADER
   ================================================== */
header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 90vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 100px 0px;
  color: var(--color-inv);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-inv);
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.1;
  -webkit-animation: breathe 8s ease-in-out infinite;
          animation: breathe 8s ease-in-out infinite;
}
header svg {
  position: absolute;
  z-index: -1;
  max-height: 70vh;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.1;
}
header .titre,
header .skills {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .titre {
  padding-right: 20px;
  font-size: 150px;
  line-height: 120px;
  text-align: right;
}
header .skills {
  padding-left: 20px;
}
header .skills .skillLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
header .skills .skillLine .skillTitle {
  padding-left: 20px;
  color: var(--color-bg);
}
header .skills .skillLine .skillBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.3);
}
header .skills .skillLine .skillBar .innerBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 5px;
  padding-right: 5px;
  background: var(--color-inv);
  border-radius: 20px;
}
header .skills .skillLine .skillBar .innerBar i {
  color: c;
}
@media screen and (max-width: 1000px) {
  header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .titre {
    font-size: 60px;
    line-height: 60px;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .skills .skillLine .skillBar {
    width: 100px;
  }
}

/* ==================================================
   footer
   ================================================== */
footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-inv);
  padding: 100px 20px;
  text-align: center;
  color: #f9f9f9;
}
footer img {
  width: 200px;
}
footer p {
  padding-top: 20px;
  font-size: 12px;
}

/* ==================================================
   PAGE HOME
   ================================================== */
main.home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.home #wd,
main.home #gd {
  opacity: 0.8;
}
main.home .herome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: var(--color-inv);
  font-weight: 900;
}
main.home .herome::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.2;
  -webkit-animation: breathe 8s ease-in-out infinite;
          animation: breathe 8s ease-in-out infinite;
}
@media screen and (max-width: 800px) {
  main.home .herome {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
main.home .herome-droite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
main.home .herome-droite img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  main.home .herome-droite {
    display: none;
  }
}
main.home .herome-gauche {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 10%;
}
main.home .heromeP1 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: clamp(60px, 8vw, 160px);
  line-height: 1;
  text-align: left;
  color: #fff;
}
main.home .heromeP2 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: clamp(40px, 5vw, 100px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
main.home .center {
  padding-left: clamp(0px, 4vw, 100px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  opacity: 0.6;
}
main.home .center canvas {
  will-change: transform;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
main.home .center canvas:hover {
  opacity: 1 !important;
}
main.home .center .blob-canvas {
  -webkit-animation: colorShift 5s ease-in-out infinite;
          animation: colorShift 5s ease-in-out infinite;
}
main.home .center img {
  max-height: 200px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  will-change: transform;
  cursor: pointer;
}
main.home .center img:hover {
  opacity: 1;
}

.homeP1,
.homeP2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .homeP1 > div,
  .homeP2 > div {
    width: 100%;
  }
  .homeP1 > div.homeSp2:nth-child(3),
  .homeP2 > div.homeSp2:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .homeP1 > div.homeSp2:nth-child(1),
  .homeP2 > div.homeSp2:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .homeP1 > div.homeSp2:nth-child(2),
  .homeP2 > div.homeSp2:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .homeP1 > div.homeSp2:nth-child(4),
  .homeP2 > div.homeSp2:nth-child(4) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.homeSp1,
.homeSp2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  min-height: 40vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.homeSp1 svg,
.homeSp2 svg {
  max-height: 80%;
}
.homeSp1 h2,
.homeSp2 h2 {
  position: absolute;
  margin: 0 auto;
  font-size: 40px;
}

.homeP1 {
  background: var(--color-bg);
}

.homeP2 {
  padding: 40px;
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  color: var(--color-bg);
  background: var(--color-bg);
}
@media screen and (max-width: 800px) {
  .homeP2 {
    padding: 40px 0;
  }
}

.homeSp1 {
  color: var(--color-inv);
}
.homeSp1:first-child {
  background: var(--color-bg2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.homeSp1:first-child .text-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 200px;
}
.homeSp1:first-child p {
  position: absolute;
  margin: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 700px;
  padding: 60px 20px 20px;
  text-align: center;
  width: 100%;
}
.homeSp1:first-child p a {
  background: var(--color-inv);
  color: var(--color-bg);
  padding: 3px 10px;
  border-radius: 10px;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.homeSp1:first-child p a:hover {
  background: #444444;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.homeSp1:first-child p.init, .homeSp1:first-child p.secondary {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0s;
  transition: opacity 0.3s ease, visibility 0s 0s;
}
.homeSp1:first-child p.secondary {
  opacity: 0;
  visibility: hidden;
}
.homeSp1:first-child .toggleBtn {
  margin-top: 40px;
}
.homeSp1:first-child:has(.tg1 input:checked) p.init {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.homeSp1:first-child:has(.tg1 input:checked) p.secondary {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease 0.35s, visibility 0s 0.35s;
  transition: opacity 0.3s ease 0.35s, visibility 0s 0.35s;
}
.homeSp1:nth-child(2) {
  background: var(--color-bg);
}
.homeSp1:nth-child(2) > div {
  max-width: 500px;
  padding: 60px 20px;
}
.homeSp1:nth-child(2) > div p {
  padding: 0px 0 10px;
}
.homeSp1:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-bg);
}
.homeSp1:nth-child(3) > span {
  padding-top: 60px;
}
.homeSp1:nth-child(3) > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 540px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.homeSp1:nth-child(3) > div img {
  margin: 20px;
  width: 40px;
  height: 40px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
}
.homeSp1:nth-child(3) > div img:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.homeSp1:nth-child(4) {
  z-index: 3;
  padding: 60px 20px;
  background: var(--color-bg2);
  box-shadow: 0px 0px 28px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 28px 10px rgba(0, 0, 0, 0.1);
}
.homeSp1:nth-child(4) .wpcf7 {
  padding-top: 30px;
}
.homeSp1 > span {
  font-size: 28px;
  font-weight: 900;
}

.homeSp2 > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  min-height: 40vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 400px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  >a{
    display: flex;
    justify-content: center;
    flex-direction: center;
    text-align: center;
  }
}
.homeSp2 > div:hover {
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.homeSp2 svg {
  -webkit-transition: 5s ease;
  transition: 5s ease;
}
.homeSp2:hover svg {
  opacity: 0.2;
  -webkit-transition: 2s ease;
  transition: 2s ease;
}
.homeSp2:first-child {
  background: var(--color-inv2);
}
.homeSp2:nth-child(2) {
  background: var(--color-inv);
}
.homeSp2:nth-child(3) {
  background: var(--color-inv);
}
.homeSp2:nth-child(4) {
  z-index: 3;
  background: var(--color-inv);
  box-shadow: 0px 0px 28px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 0px 28px 10px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   PAGE BOOK
   ================================================== */
section.book {
  position: relative;
  width: 100%;
  color: var(--color-inv);
}
section.book .book-head {
  background: var(--color-bg2);
}
section.book .book-head .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  section.book .book-head .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.book .book-head .wrapper .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  min-height: 70vh;
  padding: 4%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  section.book .book-head .wrapper .hero {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    min-height: 300px;
  }
}
section.book .book-head .wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  section.book .book-head .wrapper .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
section.book .book-head .wrapper .content .content-wrapper {
  min-width: 360px;
  max-width: 600px;
}
section.book .book-head .wrapper .content .content-wrapper h2 {
  padding-bottom: 10px;
  font-size: 40px;
}
section.book .book-head .wrapper .content .content-wrapper h3 {
  padding-bottom: 10px;
  font-size: 22px;
  line-height: 26px;
}
section.book .book-head .wrapper .content .content-wrapper p {
  font-size: 16px;
}
section.book .book-head .wrapper .content .content-wrapper > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 80px;
  margin-top: 30px;
  height: 100px;
}
section.book .book-head .wrapper .content .content-wrapper > span > svg {
  fill: #014B43;
}
section.book .book-foot {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10vh 0;
}
section.book .book-foot .book-swiper {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: none;
  padding: 60px 0;
}
section.book .book-foot .book-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide {
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  opacity: 0.3;
  width: clamp(280px, 70%, 900px);
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide .img-wrap {
  position: relative;
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide .img-wrap .overvideo {
  position: absolute;
  z-index: 111;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(1, 75, 67, 0.2);
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide .img-wrap .overvideo i {
  color: #fff;
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide .img-wrap {
  width: 100%;
}
section.book .book-foot .book-swiper .swiper-wrapper .swiper-slide .img-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
}
section.book .book-foot .book-swiper .swiper-pagination {
  bottom: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  width: 100% !important;
  z-index: 10;
}
section.book .book-foot .book-swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-bg);
  opacity: 0.3;
}
section.book .book-foot .book-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
section.book .book-foot .book-swiper .swiper-button-prev,
section.book .book-foot .book-swiper .swiper-button-next {
  color:#fff;
  opacity: 0.3;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
@media screen and (max-width: 800px) {
  section.book .book-foot .book-swiper .swiper-button-prev,
  section.book .book-foot .book-swiper .swiper-button-next {
    display: none !important;
  }
}

@-webkit-keyframes colorShift {
  0%, 100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

@keyframes colorShift {
  0%, 100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
@-webkit-keyframes breathe {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@keyframes breathe {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}