@charset "UTF-8";
/* Font-size */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
* a,
* a:hover,
* a:focus,
* a:active {
  text-decoration: none;
}
* h1 {
  display: inline-block;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  text-shadow: 1px 1px 2px #000;
  line-height: clamp(2.6rem, -0.543rem + 8.381vw, 7rem);
  font-style: italic;
  margin-bottom: clamp(0.5rem, 0.143rem + 0.952vw, 1rem);
}
* h1 .line1 {
  font-size: clamp(2.6rem, -0.543rem + 8.381vw, 7rem);
}
* h1 .line2 {
  font-size: clamp(2.25rem, -0.5rem + 7.333vw, 6.1rem);
}
* h1 span {
  display: block;
}
* h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 0.429rem + 2.857vw, 3rem);
  font-family: "Oswald", sans-serif;
}
* h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 1.329rem + 0.19vw, 1.5rem);
  font-weight: 600;
}
* h4 {
  color: #ffffff;
  font-size: clamp(1.1rem, 0.886rem + 0.571vw, 1.4rem);
  font-weight: 400;
}
* p {
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-weight: 200;
  text-align: justify;
}
* .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(10rem, 8.214rem + 4.762vw, 12.5rem);
  border-radius: 0.5rem;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
* .yellow {
  color: #f0cb1a;
  text-shadow: #f0cb1a 2px 2px 6px;
  font-style: italic;
  margin-right: 0.2rem;
}
* .yellow-text {
  color: #f0cb1a;
  text-shadow: #f0cb1a 2px 2px 6px;
  font-weight: 500;
}
* .section-separator {
  width: clamp(5rem, -0.357rem + 14.286vw, 12.5rem);
  height: 2px;
  margin: 40px auto;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 203, 26, 0.15) 35%, #f0cb1a 50%, rgba(240, 203, 26, 0.15) 65%, transparent 100%);
  background-size: 200% 100%;
  animation: separatorFlow 3s ease-in-out infinite;
  /* ✨ LE FONDU */
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}
@keyframes separatorFlow {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  background-color: #000;
  font-family: "Barlow", sans-serif;
}
body .skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
body .hero-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
body .hero-wrapper header {
  display: flex;
  width: 100%;
  padding: 1rem 4rem 1rem 1rem;
}
body .hero-wrapper header .img-header img {
  width: clamp(11.25rem, 9.911rem + 3.571vw, 13.125rem);
  display: block;
}
body .hero-wrapper header .menu {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  gap: clamp(1.5rem, -0.286rem + 4.762vw, 4rem);
}
body .hero-wrapper header .menu .a-menu {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
  color: #ffffff;
  text-shadow: 1px 1px 2px #000;
  position: relative;
  transition: color 0.25s ease;
}
body .hero-wrapper header .menu .a-menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #f0cb1a;
  transition: width 0.25s ease;
}
body .hero-wrapper header .menu .a-menu:hover {
  color: #f0cb1a;
}
body .hero-wrapper header .menu .a-menu:hover::after {
  width: 100%;
}
@media (max-width: 800px) {
  body .hero-wrapper header {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  body .hero-wrapper header .menu {
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
}
body .hero-wrapper .hero {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  margin-top: clamp(1rem, -3.286rem + 11.429vw, 7rem);
  padding-left: clamp(0rem, -4.286rem + 11.429vw, 6rem);
  padding-right: 1rem;
}
body .hero-wrapper .hero .h4-title {
  width: clamp(15rem, 2.857rem + 32.381vw, 32rem);
}
@media (max-width: 800px) {
  body .hero-wrapper .hero {
    align-self: center;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  body .hero-wrapper .h4-title {
    width: 90%;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
  }
}
body .hero-wrapper .btn-holder {
  display: flex;
  justify-content: flex-start;
  gap: clamp(1rem, -3.286rem + 11.429vw, 7rem);
  width: clamp(18rem, 8rem + 26.667vw, 32rem);
  max-width: 100%;
  margin-top: clamp(3rem, 1.571rem + 3.81vw, 5rem);
  margin-bottom: clamp(6rem, 3.857rem + 5.714vw, 9rem);
  overflow: visible;
}
body .hero-wrapper .btn-holder .appel-btn {
  background-image: linear-gradient(135deg, #ffcc00 0%, #ffcc00 100%);
  color: #000;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  border: none;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
body .hero-wrapper .btn-holder .appel-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}
body .hero-wrapper .btn-holder .offres-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(240, 204, 26, 0.2588235294);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
}
body .hero-wrapper .btn-holder .offres-btn:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 1294px) {
  body .hero-wrapper .btn-holder {
    align-items: center;
    justify-content: center;
    width: 40%;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  body .hero-wrapper .btn-holder {
    align-items: center;
    justify-content: center;
    width: 80%;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}
body .hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/fond-1-480.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.4);
  transform: scale(1.08);
  transform-origin: center top;
  z-index: -2;
}
@media (max-width: 800px) {
  body .hero-wrapper::before {
    background-size: cover;
    background-position: center top;
    transform: scale(1);
  }
}
body .hero-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.18) 80%, rgba(0, 0, 0, 0.45) 90%, #000 100%);
  z-index: -1;
}
body .hero-wrapper > * {
  position: relative;
  z-index: 1;
}
body main {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
  margin-top: clamp(0.2rem, -0.371rem + 1.524vw, 1rem);
  padding-left: clamp(0rem, -4.286rem + 11.429vw, 6rem);
  padding-right: clamp(0rem, -4.286rem + 11.429vw, 6rem);
}
body main .presentation {
  margin-top: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
body main .presentation h2 {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
body main .presentation .support-items-presentation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, -0.429rem + 3.81vw, 3rem);
  width: 100%;
  max-width: 62rem;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
body main .presentation .item-presentation {
  padding: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
  border-radius: 1rem;
  text-align: justify;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}
body main .presentation .item-presentation h3 {
  margin-bottom: 0.75rem;
}
body main .presentation .item-presentation p {
  line-height: 1.5;
}
body main .presentation {
  /* ===== DESKTOP ===== */
}
body main .presentation .item-presentation:nth-child(1),
body main .presentation .item-presentation:nth-child(4) {
  background: rgba(17, 17, 17, 0.7176470588);
  border: 1px solid rgba(240, 204, 26, 0.2588235294);
  backdrop-filter: blur(4px);
}
body main .presentation .item-presentation:nth-child(1):hover,
body main .presentation .item-presentation:nth-child(4):hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
body main .presentation .item-presentation:nth-child(2),
body main .presentation .item-presentation:nth-child(3) {
  background-image: linear-gradient(135deg, rgba(255, 204, 0, 0.9647058824) 0%, rgba(255, 204, 0, 0.8431372549) 100%);
  color: #000;
  border: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85), 0 10px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
}
body main .presentation .item-presentation:nth-child(2) h3,
body main .presentation .item-presentation:nth-child(2) p,
body main .presentation .item-presentation:nth-child(3) h3,
body main .presentation .item-presentation:nth-child(3) p {
  color: #000;
}
body main .presentation .item-presentation:nth-child(2):hover,
body main .presentation .item-presentation:nth-child(3):hover {
  transform: translateY(-1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}
@media (max-width: 800px) {
  body main {
    align-self: center;
    align-items: center;
    width: 100%;
    padding-inline: 1rem;
  }
  body main .presentation {
    align-items: center;
    width: 100%;
  }
  body main .presentation h2 {
    text-align: center;
  }
  body main .presentation p {
    line-height: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  }
  body main .presentation .support-items-presentation {
    grid-template-columns: 1fr;
    width: 100%;
  }
  body main .presentation {
    /* ===== MOBILE ===== */
  }
  body main .presentation .item-presentation:nth-child(1),
  body main .presentation .item-presentation:nth-child(3) {
    background: #111111;
    border: 1px solid rgba(240, 204, 26, 0.2588235294);
  }
  body main .presentation .item-presentation:nth-child(1) h3,
  body main .presentation .item-presentation:nth-child(1) p,
  body main .presentation .item-presentation:nth-child(3) h3,
  body main .presentation .item-presentation:nth-child(3) p {
    color: #ffffff;
  }
  body main .presentation .item-presentation:nth-child(2),
  body main .presentation .item-presentation:nth-child(4) {
    background-image: linear-gradient(135deg, #ffcc00 0%, #ffcc00 100%);
    border: none;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85), 0 10px 18px rgba(0, 0, 0, 0.22);
  }
  body main .presentation .item-presentation:nth-child(2) h3,
  body main .presentation .item-presentation:nth-child(2) p,
  body main .presentation .item-presentation:nth-child(4) h3,
  body main .presentation .item-presentation:nth-child(4) p {
    color: #000;
  }
}
body main .presentation-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-right: clamp(0rem, -4.286rem + 11.429vw, 6rem);
  padding-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  padding-left: clamp(0rem, -4.286rem + 11.429vw, 6rem);
}
body main .presentation-2 h2 {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  align-self: flex-start;
}
body main .presentation-2 p {
  line-height: clamp(1.2rem, 0.271rem + 2.476vw, 2.5rem);
  text-align: center;
  width: 80%;
}
@media (max-width: 800px) {
  body main .presentation-2 h2 {
    align-self: center;
  }
}
body main .presentation-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/fond-2-480.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(0.35);
  transform: scale(1.05);
  transform-origin: center;
  z-index: -2;
}
body main .presentation-2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.45) 10%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.18) 82%, rgba(0, 0, 0, 0.45) 90%, #000 100%);
  z-index: -1;
}
body main .methode {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
body main .methode h2 {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
body main .methode .support-items-methode {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 0.271rem + 2.476vw, 2.5rem);
  width: 100%;
  margin-inline: auto;
}
body main .methode .item-methode {
  border-radius: 1rem;
  text-align: justify;
  min-width: clamp(16.25rem, 12.679rem + 9.524vw, 21.25rem);
  background-color: rgba(17, 17, 17, 0.7176470588);
  padding: clamp(1rem, 0.286rem + 1.905vw, 2rem) clamp(2rem, 1.286rem + 1.905vw, 3rem);
  border: 0.5px solid rgba(255, 204, 0, 0.2549019608);
  backdrop-filter: blur(4px);
}
body main .methode .item-methode .numero-methode {
  color: #f0cb1a;
  font-size: clamp(1.5rem, 0.429rem + 2.857vw, 3rem);
  font-family: "Oswald", sans-serif;
  text-shadow: #f0cb1a 2px 2px 6px;
  font-style: italic;
  font-weight: 900;
  margin-right: 0.2rem;
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
}
body main .methode .item-methode h3 {
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
  margin-left: clamp(2rem, 0.571rem + 3.81vw, 4rem);
}
body main .methode .item-methode p {
  line-height: 1.5;
  width: 75%;
  margin-left: clamp(2rem, 0.571rem + 3.81vw, 4rem);
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
}
body main .methode .item-methode li {
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  margin-left: clamp(4rem, 1.143rem + 7.619vw, 8rem);
  font-weight: 100;
  line-height: clamp(1.3rem, 0.8rem + 1.333vw, 2rem);
}
body main .methode .item-methode li::marker {
  color: #f0cb1a;
}
@media (max-width: 800px) {
  body main .methode h2 {
    text-align: center;
  }
  body main .methode .support-items-methode {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
body main .offres {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
body main .offres h2 {
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
body main .offres .support-items-offres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 0.271rem + 2.476vw, 2.5rem);
  width: 100%;
  margin-inline: auto;
  align-items: start;
}
body main .offres .item-offres {
  border-radius: 1rem;
  text-align: justify;
  min-width: clamp(16.25rem, 12.679rem + 9.524vw, 21.25rem);
  padding: clamp(1rem, 0.286rem + 1.905vw, 2rem) clamp(2rem, 1.286rem + 1.905vw, 3rem);
  background: rgba(17, 17, 17, 0.7176470588);
  border: 1px solid rgba(240, 204, 26, 0.4588235294);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
body main .offres .item-offres .preferee {
  color: #f0cb1a;
  text-align: end;
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.4rem, 1.329rem + 0.19vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
}
body main .offres .item-offres h3 {
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
}
body main .offres .item-offres h4 {
  text-align: center;
  margin-top: clamp(1rem, 0.286rem + 1.905vw, 2rem);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.1rem, 0.886rem + 0.571vw, 1.4rem);
  font-weight: 600;
}
body main .offres .item-offres li {
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  margin-left: clamp(2rem, 0.571rem + 3.81vw, 4rem);
  font-weight: 100;
  line-height: clamp(1.3rem, 0.8rem + 1.333vw, 2rem);
}
body main .offres .item-offres li::marker {
  color: #f0cb1a;
}
body main .offres .item-offres .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(1rem, 0.286rem + 1.905vw, 2rem);
  margin-bottom: clamp(1rem, 0.286rem + 1.905vw, 2rem);
}
body main .offres .item-offres .appel-btn {
  background-image: linear-gradient(135deg, #ffcc00 0%, #ffcc00 100%);
  color: #000;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  border: none;
  border-radius: 12px;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85), 0 10px 18px rgba(0, 0, 0, 0.22);
}
body main .offres .item-offres .appel-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}
body main .offres .item-offres .offres-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(240, 204, 26, 0.2588235294);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
}
body main .offres .item-offres .offres-btn:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
body main .offres .item-offres:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
body main .offres #preferee-yellow {
  background-image: linear-gradient(135deg, rgba(255, 204, 0, 0.9647058824) 0%, rgba(255, 204, 0, 0.8431372549) 100%);
  color: #000;
  border: none;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85), 0 10px 18px rgba(0, 0, 0, 0.22);
}
body main .offres #preferee-yellow h3, body main .offres #preferee-yellow li, body main .offres #preferee-yellow h4 {
  color: #000;
}
body main .offres #preferee-yellow li::marker {
  color: #ffffff;
}
body main .offres #preferee-yellow .preferee {
  color: #ffffff;
}
body main .offres #preferee-yellow:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}
@media (max-width: 800px) {
  body main .offres h2 {
    text-align: center;
  }
  body main .offres .support-items-offres {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
body .temoignages {
  display: flex;
  flex-direction: column;
}
body .temoignages .slider {
  position: relative;
  max-width: 640px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(240, 204, 26, 0.4588235294);
}
body .temoignages .slider:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.45), 0 0 24px rgba(255, 204, 0, 0.35), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
body .temoignages .slides {
  position: relative;
  width: 100%;
  height: auto;
}
body .temoignages .slide {
  width: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}
body .temoignages .slide.active {
  display: block;
}
body .temoignages button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #f0cb1a;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 0.5rem;
}
body .temoignages .prev {
  left: 10px;
}
body .temoignages .next {
  right: 10px;
}
@media (max-width: 800px) {
  body .temoignages h2 {
    text-align: center;
  }
}
body .faq {
  margin-bottom: clamp(2rem, 0.571rem + 3.81vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .faq h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
@media (min-width: 768px) {
  body .faq h2 {
    text-align: left;
    align-self: flex-start;
    width: 100%;
    max-width: 62rem;
  }
}
body .faq .faq-intro {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-weight: 500;
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  max-width: 42rem;
}
body .faq .faq-list {
  width: 100%;
  max-width: 62rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body .faq .faq-item {
  background: rgba(17, 17, 17, 0.7176470588);
  border: 1px solid rgba(240, 204, 26, 0.4588235294);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body .faq .faq-item:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.25), 0 0 24px rgba(255, 204, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
body .faq .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: clamp(1rem, 0.714rem + 0.762vw, 1.4rem) clamp(1.2rem, 0.629rem + 1.524vw, 2rem);
  font-size: clamp(1rem, 0.857rem + 0.381vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
}
body .faq .faq-icon {
  flex-shrink: 0;
  color: #f0cb1a;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
body .faq .faq-item.active .faq-icon {
  transform: rotate(45deg);
}
body .faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
body .faq .faq-answer p {
  padding: 0 clamp(1.2rem, 0.629rem + 1.524vw, 2rem) clamp(1.2rem, 0.857rem + 0.914vw, 1.68rem);
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  line-height: 1.7;
  opacity: 0.95;
}
@media (max-width: 768px) {
  body .faq .faq-question {
    align-items: start;
  }
  body .faq .faq-icon {
    margin-top: 0.1rem;
  }
}
body .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .contact-form h2 {
  text-align: center;
  margin-bottom: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
}
body .contact-form .contact-intro {
  text-align: center;
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-weight: 500;
  max-width: 46rem;
  line-height: 1.7;
}
body .contact-form .contact-card {
  width: 100%;
  max-width: 62rem;
  padding: clamp(1.2rem, 0.629rem + 1.524vw, 2rem);
}
body .contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 0.643rem + 0.952vw, 1.5rem);
}
body .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body .contact-form .form-group label {
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-weight: 600;
}
body .contact-form .form-group input,
body .contact-form .form-group select,
body .contact-form .form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: rgba(17, 17, 17, 0.7176470588);
  border: 1px solid rgba(240, 204, 26, 0.4588235294);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-family: "Barlow", sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
body .contact-form .form-group input::-moz-placeholder, body .contact-form .form-group textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
}
body .contact-form .form-group input::placeholder,
body .contact-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
}
body .contact-form .form-group input:focus,
body .contact-form .form-group select:focus,
body .contact-form .form-group textarea:focus {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.35), 0 0 24px rgba(255, 204, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.25);
  background: rgba(17, 17, 17, 0.7176470588);
  backdrop-filter: blur(4px);
}
body .contact-form .form-group textarea {
  resize: vertical;
  min-height: 10rem;
}
body .contact-form .form-group select option {
  background: #111;
  color: #ffffff;
}
body .contact-form .form-group select:focus {
  outline: none;
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
}
body .contact-form .full-width {
  grid-column: 1/-1;
}
body .contact-form .form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
body .contact-form .form-rgpd, body .contact-form .form-consent {
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  line-height: 1.5;
  color: #ffffff;
}
body .contact-form .form-rgpd a, body .contact-form .form-consent a {
  color: #ffffff;
  font-weight: 500;
}
body .contact-form .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
body .contact-form .appel-btn {
  background-image: linear-gradient(135deg, rgba(255, 204, 0, 0.9647058824) 0%, rgba(255, 204, 0, 0.8431372549) 100%);
  color: #000;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  border: none;
  border-radius: 12px;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.85), 0 10px 18px rgba(0, 0, 0, 0.22);
}
body .contact-form .appel-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.6), inset 0 -1px 2px rgba(255, 255, 255, 0.4);
}
body .contact-form .secondary-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(240, 204, 26, 0.2588235294);
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
body .contact-form .secondary-btn:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.35), 0 0 24px rgba(255, 204, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  body .contact-form h2 {
    text-align: left;
    align-self: flex-start;
    width: 100%;
    max-width: 62rem;
  }
  body .contact-form .contact-intro {
    text-align: center;
    width: 100%;
    max-width: 62rem;
  }
}
@media (max-width: 767px) {
  body .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
  body .contact-form .form-actions {
    flex-direction: column;
  }
  body .contact-form .form-actions .btn {
    width: 100%;
  }
}
body .site-footer {
  padding: clamp(0.5rem, 0.143rem + 0.952vw, 1rem) 0 1rem;
  backdrop-filter: blur(4px);
}
body .site-footer .footer-inner {
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 0.786rem + 1.905vw, 2.5rem);
  align-items: start;
}
body .site-footer .footer-brand {
  padding-top: clamp(0rem, -0.643rem + 1.714vw, 0.9rem);
}
body .site-footer .footer-brand h3 {
  margin-bottom: 0.8rem;
  color: #f0cb1a;
  font-size: clamp(1.1rem, 0.957rem + 0.381vw, 1.3rem);
}
body .site-footer .footer-brand .a-footer {
  color: #ffffff;
  font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
  font-weight: 500;
}
body .site-footer .footer-brand p {
  color: #ffffff;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 20rem;
}
body .site-footer .footer-links,
body .site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
body .site-footer .footer-links a,
body .site-footer .footer-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
}
body .site-footer .footer-links a:hover,
body .site-footer .footer-contact a:hover {
  color: #f0cb1a;
  transform: translateX(3px);
}
body .site-footer .instagram-link {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  body .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  body .site-footer .footer-brand {
    grid-column: 1/-1;
    text-align: center;
  }
  body .site-footer .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  body .site-footer .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body .site-footer .footer-brand,
  body .site-footer .footer-links,
  body .site-footer .footer-contact {
    align-items: center;
  }
  body .site-footer .footer-links a:hover,
  body .site-footer .footer-contact a:hover {
    transform: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/Logo_GUSARK.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}/*# sourceMappingURL=style.css.map */