@font-face {
  font-family: "Expose";
  src: url("/fonts/Expose_Complete/Fonts/OTF/Expose-Regular.otf")
    format("opentype");

  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Tanker";
  src: url("/fonts/Tanker_Complete/Fonts/OTF/Tanker-Regular.otf")
    format("opentype");

  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Chillax";
  src: url("/fonts/Chillax_Complete/Fonts/OTF/Chillax-Semibold.otf")
    format("opentype");

  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Chillax-Regular";
  src: url("/fonts/Chillax_Complete/Fonts/OTF/Chillax-Regular.otf")
    format("opentype");

  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

:root {
  --primary: #53a790;
  --secondary: #fc9700;
  --ternary: #a43951;
  --text: #050315;
  --text-light: #ffffff;
  --inner-padding: 1em;
  --base-radius: 0.5em;
  --auto-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  box-sizing: border-box;
  text-align: center;
  scroll-behavior: smooth;
}

* {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

hr {
  border: none;
  border-radius: var(--base-radius);
  background-color: #e2e2e2;
  padding: calc(0.1 * var(--inner-padding));
  width: 100%;
}

ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.2em;

  li {
    padding: 0.1 * var(--inner-padding);
  }
}

nav {
  width: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(0.05 * var(--inner-padding)) calc(2.3 * var(--inner-padding));
  overflow: hidden;
  color: var(--text);
  font-size: 1.7em;

  z-index: 1;
  position: fixed;
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(8.4px);
  -webkit-backdrop-filter: blur(8.4px);

  ul {
    gap: var(--inner-padding);

    li {
      width: -moz-available;

      a {
        display: block;
        color: var(--text);
        font-size: 1em;
      }

      a:hover {
        color: var(--text);
      }
    }
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Chillax";
  margin: 0;
  font-size: 2em;
}

span,
p,
blockquote {
  font-family: "Chillax-Regular";
  font-size: 1.4em;
  line-height: 1.3em;
  margin: 0.2em 0;
  padding: 0.2em 0;
}

a {
  font-family: "Chillax-Regular";
  text-decoration: none;
  color: var(--text-light);
  margin: 0;
  display: inline-block;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2em;
}

a:hover {
  color: white;
  letter-spacing: 0.09em;
}

button {
  border: none;
}

section {
  padding: calc(2.1 * var(--inner-padding)) 0;
}

details {
  position: relative;
  background-color: white;
  padding: calc(1.4 * var(--inner-padding)) var(--inner-padding);
  box-shadow: 5px 5px 15px #efefef;
  border-radius: var(--base-radius);
  max-height: 3em;
  overflow: hidden;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  p {
    font-size: 1em;
    opacity: 0;
  }

  h3 {
    font-size: 1.7em;
  }
}

details[open] {
  background-color: var(--primary);
  max-height: 9em;
  color: white;
}

details::details-content {
  opacity: 0;
  transition:
    opacity 500ms,
    content-visibility 500ms cubic-bezier(0.4, 0, 0.2, 1);
  content-visibility: hidden;
}

details[open]::details-content {
  opacity: 1;
  content-visibility: visible;
}

summary {
  list-style: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;

  svg {
    width: 3.2em;
  }
}

/* Remove default disclosure triangle */
summary::details-marker {
  display: none;
}

details[open] summary svg {
  transform: rotate(90deg);
  color: white;
}

details[open] p {
  padding: 1em 0;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  font-size: 1.3em;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

footer {
  color: var(--text);
  padding: 1.5em;

  h1,
  h3,
  h5 {
    font-size: 1.8em;
  }

  a,
  p {
    font-size: 1em;
  }

  #FAQ.col {
    width: 93%;
  }

  #newsletter {
    width: 80%;
    padding: calc(1.5 * var(--inner-padding));
    color: black;
    box-shadow: none;
    gap: 1em;

    .cta {
      width: 30%;
      font-size: 1.2em;
    }
  }

  #heading {
    box {
      col {
        width: 50%;
      }
    }
  }

  #infos {
    h5 {
      font-size: 1.8em;
    }

    ul {
      padding-left: 0;
      width: 100%;

      a {
        font-size: 0.9em;
        font-family: "Tanker";
      }
    }
  }

  #copyright {
    padding: 0 2em;

    p {
      font-size: 0.9em;
    }

    ul {
      padding-left: 0;
    }
  }
}

/* End of tag config */

/* Start of utility config */
.box {
  display: flex;
  flex-wrap: nowrap;
  padding: 1em;
  width: auto;
  gap: 0.7em;
  position: relative;
}

.justify-start {
  justify-content: start;
}

.justify-end {
  justify-content: end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.items-end {
  align-items: end;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.text-justify {
  text-align: justify;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.col {
  display: flex;
  flex-direction: column;
}

.cta {
  padding: var(--inner-padding) 0;
  background-color: var(--secondary);
  border-radius: var(--base-radius);
  color: black;
  width: calc(0.8 * var(--auto-width));
  text-align: center;
}

.badge {
  background-color: var(--primary);
  color: white;
  padding: calc(0.8 * var(--inner-padding)) 3.5em;
  border-radius: var(--base-radius);
  cursor: pointer;
}

.active,
:hover.badge {
  background-color: var(--primary);
  color: white;
}

.cta:hover {
  background-color: var(--ternary);
  color: white;
}

.span-title {
  padding: calc(0.8 * var(--inner-padding));
  width: 30%;
  backdrop-filter: blur(1.5em);
  -webkit-backdrop-filter: blur(1.5em);
  color: black;
  border-radius: var(--base-radius);
}

header {
  padding: 0;
  width: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  h2,
  h3,
  h4 {
    font-size: calc(2.2 * var(--inner-padding));
  }
}

.box-img {
  position: relative;
  width: 100%;
  height: auto;

  img {
    width: 100%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--base-radius);
  }
}

.card {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 27%;
  height: fit-content;
  gap: 1.2em;
  padding: 1em;
  box-shadow: 5px 5px 15px #efefef;

  .box-img {
    padding: 1em 0;
    height: 30em;

    img {
      width: 100%;
      height: 100%;
    }
  }

  .card-body,
  .card-footer {
    width: 100%;
    padding: 0;
  }

  h3 {
    font-size: calc(1.7 * var(--inner-padding));
  }

  p {
    font-size: calc(1 * var(--inner-padding));
  }

  .box {
    padding: 0;
  }

  hr {
    background-color: transparent;
    border-top: 2px dotted #6f6f6f;
  }

  .highlight {
    color: var(--primary);
    margin: 0;
    font-weight: bolder;
    font-size: 1.3em;
  }

  span {
    font-size: 0.8em;
    color: #6f6f6f;
    margin: 0;
  }
}
