:root {
  --bg: #FFFFFF;
  --bg-2: #fff2e3a5;
  --accent: #F03A3F;
  --text: #000000; }

.theme-dark {
  --bg: #0F0F12;
  --bg-2: #1A1A1Fa5;
  --accent: #F03A3F;
  --text: #F5F5F5; }

.hidden {
  display: none; }

.mt-40 {
  margin-top: 40px; }

.mt-20 {
  margin-bottom: 20px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-20 {
  margin-bottom: 20px; }

.separator {
  width: 100%;
  border-bottom: 1px var(--text) solid; }

.accent {
  color: var(--accent); }

html {
  font-size: 16px;
  font-family: "Geist", sans-serif; }

.important {
  font-size: 2rem;
  font-weight: 700; }

h1, h2, h3, h4, h5 {
  margin: 10px 0; }

p {
  margin: 0; }

h5 {
  font-size: 16px; }
  @media (min-width: 600px) {
    h5 {
      font-size: 1.5rem; } }

h4 {
  font-size: 1.5rem; }
  @media (min-width: 600px) {
    h4 {
      font-size: 2rem; } }

h3 {
  font-size: 2rem;
  text-transform: uppercase; }
  @media (min-width: 900px) {
    h3 {
      font-size: 2.5rem; } }

h2 {
  font-size: 2.5rem;
  text-transform: uppercase; }
  @media (min-width: 900px) {
    h2 {
      font-size: 3rem; } }

h1 {
  font-size: 3rem;
  text-transform: uppercase; }
  @media (min-width: 900px) {
    h1 {
      font-size: 4rem; } }

header {
  z-index: 20;
  position: sticky;
  top: 0;
  background: var(--bg-2);
  backdrop-filter: blur(4px); }
  header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 100%;
    transition: all .3s ease-in-out; }
    header .navbar .logo {
      display: flex;
      align-items: center;
      gap: 5px; }
      header .navbar .logo img {
        height: 60px;
        width: auto;
        box-sizing: border-box; }
      header .navbar .logo a {
        padding: 0; }
    header .navbar .title {
      display: none; }
      @media (min-width: 900px) {
        header .navbar .title {
          display: block; } }
    header .navbar .nav-list {
      list-style: none;
      display: flex;
      flex-direction: row;
      gap: 1rem;
      margin: 0;
      padding: 0; }
    header .navbar ul {
      list-style: none;
      display: flex;
      padding: 0;
      flex-direction: column; }
    header .navbar li {
      display: flex;
      transition: all .4s ease-in-out;
      align-items: center;
      justify-content: center;
      opacity: 100%; }
  header a {
    padding: 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 1.5rem; }
    @media (min-width: 900px) {
      header a {
        font-size: 2rem; } }

footer {
  background: var(--bg-2); }
  footer .columns {
    padding: 60px 0px;
    width: 100%;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 100px; }
    @media (min-width: 900px) {
      footer .columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 0px; } }
    footer .columns .column {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px; }
    footer .columns img {
      width: 50%; }
    footer .columns .link:hover .link-img {
      --link-img: var(--accent); }
    footer .columns .link-img {
      width: 16px;
      --link-img: var(--text); }

header,
footer,
.component {
  padding: 0 15px;
  width: calc(100% - 30px); }
  @media (min-width: 600px) {
    header,
    footer,
    .component {
      padding: 0 20px;
      width: calc(100% - 40px); } }
  @media (min-width: 900px) {
    header,
    footer,
    .component {
      padding: 0 40px;
      width: calc(100% - 80px); } }

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.component-basic, .bloc, .faq {
  background-color: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  border-top: 1px solid var(--text);
  align-items: center; }

.highlight {
  padding: 40px 0; }

@media (min-width: 1100px) {
  .bloc {
    flex-direction: row; } }
@media (min-width: 1100px) {
  .bloc.reverse {
    flex-direction: row-reverse; } }
.bloc img {
  width: 100%;
  object-fit: contain; }
  @media (min-width: 1100px) {
    .bloc img {
      width: 50%; } }
.bloc .text {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
  display: flex;
  gap: 20px;
  flex-direction: column; }

.faq {
  width: 80%;
  border-radius: 15px;
  border: 1px var(--text) solid;
  gap: 0;
  padding: 20px 0; }
  .faq .pair {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer; }
    .faq .pair::after {
      content: " ";
      display: block;
      border-bottom: 1px var(--text) solid;
      width: 50%; }
    .faq .pair:last-of-type::after {
      border: 0; }
  .faq .link {
    margin-top: 10px; }
  .faq .question {
    margin: 10px 0; }
  .faq .response {
    padding-bottom: 5px; }

.contact {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px; }

.contact-main {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px; }
  .contact-main .step {
    display: flex;
    flex-direction: column;
    gap: 10px; }

.btn {
  padding: 10px 20px;
  background-color: var(--accent);
  text-transform: uppercase;
  border-radius: 1rem;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none; }
  .btn:hover {
    opacity: 80%; }

.link {
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none; }
  .link:hover {
    color: var(--accent); }

input[type="text"], textarea {
  border-radius: 15px;
  padding: 8px;
  border: 1px var(--text) solid;
  min-width: 200px;
  opacity: 100%; }
  @media (min-width: 900px) {
    input[type="text"], textarea {
      min-width: 300px; } }

input[name="other"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1; }

textarea {
  min-height: 100px; }

.check {
  --borderWidth: 7px;
  --height: 24px;
  --width: 12px;
  display: inline-block;
  transform: rotate(45deg);
  height: var(--height);
  width: var(--width);
  border-bottom: var(--borderWidth) solid var(--text);
  border-right: var(--borderWidth) solid var(--text); }

img {
  max-width: 100%; }

.image {
  max-width: 50%;
  width: 100%; }

.rounded {
  border-radius: 15px; }

.toggle {
  font-size: 1rem;
  border: 0.125em solid var(--text);
  border-radius: 2em;
  cursor: pointer;
  display: block;
  height: 2em;
  position: relative;
  width: 3.75em; }
  @media (min-width: 900px) {
    .toggle {
      font-size: 1.2rem; } }

.toggle span {
  background-color: var(--text);
  border-radius: 2em;
  display: block;
  height: 1.5em;
  left: .25em;
  overflow: hidden;
  position: absolute;
  top: .25em;
  text-indent: -9999px;
  transition: left .25s;
  width: 1.5em;
  z-index: 2; }

.toggle::before,
.toggle::after {
  content: '';
  display: block;
  border-radius: 1em;
  position: absolute;
  z-index: 1; }

.toggle::after {
  box-shadow: 0.25em 0.25em var(--text);
  height: 1.125em;
  right: .9em;
  top: .125em;
  width: 1.125em; }

.toggle::before {
  background-color: var(--text);
  height: .625em;
  outline: 0.25em dotted var(--text);
  outline-offset: .125em;
  left: .7em;
  top: .7em;
  width: .625em; }

input:checked ~ .toggle span {
  left: 2em; }

body {
  background-color: var(--bg);
  color: var(--text);
  margin: 0; }

/*# sourceMappingURL=style.css.map */
