@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;600;900&family=PT+Sans:wght@400;700&display=swap");
/* ==========================================================================
   cover / tools
   ========================================================================== */
/* ==========================================================================
   cover / typo
   ========================================================================== */
/* ==========================================================================
   COLORS / SETTINGS
   ========================================================================== */
:root {
  --color-white: #fff;
  --color-black: #212121;
  --color-primary: #4e6aff;
  --color-secondary: tomato;
  --color-bg-primary: #ffe9ce;
  --color-bg-secondary: #3e92cc;
}

/* ==========================================================================
   FONTS / SETTINGS
   ========================================================================== */
:root {
  --font-primary: "Nunito", sans-serif;
  --font-secondary: "PT Sans", sans-serif;
  --font-size-content: clamp(1rem, 0.21vw + 0.94rem, 1.13rem);
  --font-size-h1: clamp(3.13rem, 5.21vw + 1.56rem, 6.25rem);
  --font-size-h2: clamp(2rem, 1.88vw + 1.44rem, 3.13rem);
  --font-size-h3: clamp(1.5rem, 1.15vw + 1.16rem, 2.19rem);
}

/* ==========================================================================
   DIMENSIONS / SETTINGS
   ========================================================================== */
:root {
  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --grid-gap: 30px;
}

/* ==========================================================================
   easing / settings
   ========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   RESET / GENERIC
   ========================================================================== */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
}

/* ==========================================================================
   BODY / ELEMENT
   Le body permet d'initialiser les propriétés générales de la page.
   Les éléments de la page vont hérités des propriétés inscrite dans body
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-black);
  font-family: var(--font-secondary);
  font-size: var(--font-size-content);
  line-height: 1.6;
}

/* ==========================================================================
   HEADINGS / ELEMENT
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  line-height: 1;
  font-weight: bold;
}

h1 {
  font-size: var(--font-size-h1);
  margin: 0;
  color: var(--color-primary);
  font-weight: normal;
  line-height: 1;
}
h1 span {
  font-weight: bold;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  line-height: 1;
  margin: 0;
  color: var(--color-black);
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 5px;
  text-transform: uppercase;
}

h4 {
  font-size: var(--font-size-h3);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

/* ==========================================================================
   LINKS / ELEMENTS
   Style de base de tous les liens et bouton du site
   ========================================================================== */
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
a.disabled {
  color: #e2e2e2;
}

/* ==========================================================================
   WRAPPER / ELEMENT
   ========================================================================== */
.wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 var(--spacing-xs);
  }
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/* ==========================================================================
   icons / component
   ========================================================================== */
.icon {
  fill: currentColor;
  display: inline-block;
  flex: 0 0 auto;
  height: 1em;
  vertical-align: middle;
  width: 1em;
  stroke: transparent;
}

.icon--stroke {
  fill: transparent;
  stroke: currentColor;
}

.icon--xs {
  height: 0.75em;
  width: 0.75em;
}

.icon--sm {
  height: 0.8em;
  width: 0.8em;
}

.icon--md {
  height: 1.25em;
  width: 1.25em;
}

.icon--lg {
  height: 1.75em;
  width: 1.75em;
}

.icon--xl {
  height: 7em;
  width: 7em;
}

/* ==========================================================================
   header / component
   ========================================================================== */
.header {
  position: fixed;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  top: 0;
  z-index: 10;
  transition: transform 0.3s ease-out;
}
.header-is-hidden.is-scrolling-down:not(.nav-is-active) .header {
  transform: translateY(-100%) translateY(4px);
}

.header__toggle {
  --bar-height: 6px;
  --bar-width: 40px;
  --bar-spacing: 8px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.header__toggle span {
  background: var(--color-black);
  border-radius: 3px;
  height: var(--bar-height);
  width: var(--bar-width);
  position: absolute;
  transition: 0.3s all ease-out;
  top: calc(50% - var(--bar-height) / 2);
  left: calc(50% - var(--bar-width) / 2);
}
.header__toggle span:nth-child(1) {
  top: calc(50% - var(--bar-height) / 2 - var(--bar-height) - var(--bar-spacing));
}
.header__toggle span:nth-child(3) {
  top: calc(50% - var(--bar-height) / 2 + var(--bar-height) + var(--bar-spacing));
}
.nav-is-active .header__toggle span {
  top: calc(50% - var(--bar-height) / 2);
}
.nav-is-active .header__toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-is-active .header__toggle span:nth-child(2) {
  transform: scaleX(0);
}
.nav-is-active .header__toggle span:nth-child(3) {
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.nav-primary {
  background: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 9;
}
.nav-is-active .nav-primary {
  transform: translateY(0);
}
.nav-primary ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  transition: transform 0.5s ease-out;
}
.nav-primary ul a {
  display: block;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .nav-primary {
    display: block;
    background: unset;
    position: static;
    height: auto;
    width: auto;
    padding-top: 0;
    transform: translateY(0);
    z-index: 2;
    overflow-y: visible;
  }
  .nav-primary ul {
    flex-direction: row;
    transform: translateY(0);
  }
}

.nav-is-active body {
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .nav-is-active body {
    overflow: visible;
  }
}

.header .wrapper {
  margin: 24px auto;
  width: 100%;
  padding: 8px 16px;
  background-color: var(--color-white);
  width: 100%;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header a {
  color: var(--color-black);
}
.header nav a {
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 4px;
}
@media screen and (min-width: 1024px) {
  .header nav a {
    text-transform: none;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: normal;
  }
}
.header .nav li:has(div) div {
  transform: translateY(-150%);
  padding: 54px 24px;
  display: none;
  position: absolute;
  top: 100%;
  left: -24px;
  background-color: var(--color-primary);
  z-index: -11;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header .nav li:has(div) div ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .header .nav li:has(div) div {
    display: block;
  }
}
.header .nav li:has(div):hover div {
  transform: translateY(0);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo h1 {
  font-size: 1.25rem;
  font-weight: 400;
}
.logo svg {
  font-size: 4rem;
}

/* ==========================================================================
   hero / 
   ========================================================================== */
.hero {
  height: 70vh;
  position: relative;
  color: var(--color-white);
}
.hero .wrapper {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .hero {
    height: unset;
  }
  .hero .wrapper {
    padding: 0;
  }
}

.hero__media {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .hero__media img {
    -o-object-position: right;
       object-position: right;
  }
}
@media screen and (max-width: 768px) {
  .hero__media {
    position: relative;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 45%;
}
.hero__content .button {
  align-self: start;
}
@media screen and (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    color: var(--color-black);
    padding: 0 var(--spacing-xs);
  }
}

/* ==========================================================================
button / 
========================================================================== */
.button {
  border-radius: 25px;
  border: 4px solid var(--color-primary);
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ==========================================================================
   section / 
   ========================================================================== */
.section {
  padding: 125px 0;
}
.section.section--no-pb {
  padding-bottom: 0;
}

.section__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.section__header p {
  max-width: 58%;
  text-align: right;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section__header p {
    max-width: unset;
    text-align: left;
  }
}

/* ==========================================================================
   footer / 
   ========================================================================== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 24px 0;
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}
.footer .nav__brand {
  color: var(--color-white);
}

.footer__nav {
  position: relative;
  width: 100%;
}
.footer__nav::before {
  width: 100%;
  height: 1px;
  position: absolute;
  top: -25px;
  left: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.footer__nav a {
  aspect-ratio: 1/1;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.copyright {
  margin: 0;
}

.excerpt {
  text-align: center;
}

.faq {
  padding: 100px 0;
}
.faq .icon {
  fill: var(--color-primary);
}

.faq h2 {
  text-align: center;
  padding-bottom: 60px;
}

.faq-item {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  margin: 40px 0 80px;
}
.faq-item .faq-item-header {
  border-radius: 16px;
  padding: 16px 8px;
  background-color: var(--color-primary);
}
.faq-item .faq-item-header h4 {
  position: relative;
  margin: 0;
  width: 100%;
}
.faq-item .icon {
  transform: rotate(90deg);
  transition: transform 0.3s ease-out;
  font-size: clamp(1.25rem, 2.08vw + 0.63rem, 2.5rem);
}

.faq-item-content {
  overflow: hidden;
  max-height: 0px;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.submenu-is-active .icon {
  transform: rotate(-90deg);
}
.submenu-is-active .faq-item-content {
  opacity: 1;
}

.dropdown-container .section-title {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 32px;
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .card {
    aspect-ratio: unset;
  }
}
.card .icon {
  font-size: 4em;
}
.card:nth-child(3n+1) {
  background-color: skyblue;
}
.card:nth-child(3n+2) {
  background-color: crimson;
}
.card:nth-child(3n) {
  background-color: lightgreen;
}

/* ==========================================================================
video / component
========================================================================== */
.video {
  background-color: var(--color-black);
  text-align: center;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  cursor: pointer;
  --size: 200px;
}
.video img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.video .icon {
  opacity: 0;
  position: absolute;
  height: calc(var(--size) / 2.5);
  width: calc(var(--size) / 2.5);
  top: 50%;
  left: 50%;
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: opacity, transform;
  transform-origin: 0 0;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.is-video-ready .video .icon {
  opacity: 1;
}
.video .circle {
  opacity: 0;
  position: absolute;
  background-color: var(--color-secondary);
  height: var(--size);
  width: var(--size);
  top: calc(50% - var(--size) / 2);
  left: calc(50% - var(--size) / 2);
  transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: opacity, transform;
  border-radius: 100%;
  z-index: 2;
}
.is-video-ready .video .circle {
  opacity: 1;
}
.video:hover .icon {
  transform: scale(0.8) translate(-50%, -50%);
}
.video:hover .circle {
  transform: scale(0.8);
}

.video__media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* ==========================================================================
   carousel / component
   ========================================================================== */
.swiper-pagination {
  padding: 10px;
}

.swiper-pagination-bullets {
  --swiper-pagination-color: var(--color-black);
  --swiper-pagination-bullet-size: 16px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  display: flex;
  justify-content: center;
  position: static;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-size);
  height: var(--swiper-pagination-bullet-size);
  background-color: var(--swiper-pagination-color);
  opacity: 0.5;
  border-radius: 16px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.swiper-slide:hover img {
  transform: scale(1.15);
}

.slide__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}

.swiper-slide img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
}

.slide__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}

p.error {
  color: var(--color-error);
}

input.error, textarea.error {
  border-color: var(--color-error);
}

.wrapper > h1 {
  padding-top: 100px;
  margin-bottom: 50px;
}

section.response {
  padding: 100px 0;
}
section.response div {
  margin-bottom: 100px;
}

form {
  padding: 50px 0;
}
form > * + * {
  margin-top: 20px;
}
form * {
  outline: none;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  fieldset {
    grid-template-columns: 1fr 1fr;
  }
}
fieldset input, fieldset textarea {
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  width: 100%;
  background-color: transparent;
  border: 4px var(--color-secondary) solid;
  font-family: var(--font-secondary);
  font-size: var(--font-size-p);
  color: var(--color-black);
}
fieldset input::-moz-placeholder, fieldset textarea::-moz-placeholder {
  font-family: var(--font-secondary);
  font-size: var(--font-size-p);
  color: var(--color-black);
}
fieldset input::placeholder, fieldset textarea::placeholder {
  font-family: var(--font-secondary);
  font-size: var(--font-size-p);
  color: var(--color-black);
}

#message-container {
  grid-column: 1/-1;
}
#message-container textarea {
  height: 150px;
  resize: vertical;
}

.info {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

#submit {
  cursor: pointer;
  position: relative;
  padding: 0 40px;
  border-radius: 16px;
  border: 4px solid var(--color-secondary);
  overflow: hidden;
  display: inline-block;
  background-color: transparent;
  align-self: center;
}
#submit > * {
  cursor: pointer;
  font-family: var(--font-primary);
  background-color: transparent;
  border: 0;
  color: var(--color-secondary);
  font-size: var(--font-size-btn);
  font-weight: 700;
  letter-spacing: unset;
  transition: color 0.3s ease-out;
}

/* ==========================================================================
    ACCESSIBILITY / UTILITIES
   ========================================================================== */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.u-hidden {
  display: none !important;
}

/* ==========================================================================
   spacing / utilities
   ========================================================================== */
.u-mb-4 {
  margin-bottom: 4rem !important;
}

.u-mbn-4 {
  margin-bottom: -4rem !important;
}
/*# sourceMappingURL=main.css.map */
