@charset "UTF-8";
html,
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  height: 100%;
  box-sizing: border-box;
}

.wrapper {
  width: clamp(320px, 80vw, 1200px);
  margin: 0 auto;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: black;
}

.primary-btn {
  padding: 16px 32px;
  border-radius: 16px;
  background-position: bottom right;
  background-size: 200px 200px;
  position: relative;
  background-clip: padding-box;
  border: solid 1px transparent;
  background-color: #0e0707;
  background-image: radial-gradient(rgba(103, 81, 5, 0.2), transparent);
  text-decoration: none;
  color: yellow;
  transition: all 0.3s ease-in-out;
  display: flex;
}
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  /* !importanté */
  border-radius: inherit;
  /* !importanté */
  background: linear-gradient(145deg, #FFCC00, #675105);
  transition: all 0.3s ease-in-out;
}
.primary-btn:hover {
  background-image: radial-gradient(#675105, transparent);
}
.primary-btn:hover::before {
  background: linear-gradient(345deg, #FFCC00, #675105);
}

.link {
  text-decoration: none;
  color: black;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 2rem;
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(320px, 80vw, 1200px);
  margin: 0 auto;
  padding: 1rem 0;
}
header nav .logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
header nav .logo img {
  height: 45px;
  display: block;
}
header nav .right-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
header nav .link {
  color: #FFEEAC;
  display: block;
}
header nav .link:hover {
  color: yellow;
  font-weight: 500;
}
header nav .dropdown {
  position: relative;
}
header nav .dropdown .link {
  cursor: pointer;
}
header nav .dropdown .sub-menu {
  display: none;
  position: absolute;
  background-color: #0e0707;
  width: 180px;
}
header nav .dropdown .sub-menu .link {
  padding: 1rem;
  color: yellow;
}
header nav .dropdown:hover .sub-menu {
  display: flex;
  flex-direction: column;
}
header nav .primary-btn {
  padding: 12px 24px;
}
header nav .primary-btn:hover {
  background-image: radial-gradient(#ffcc00, transparent);
}
header nav .btn-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: none;
  gap: 8px;
  flex-direction: column;
  padding: 1rem;
}
header nav .btn-menu .bar {
  height: 2px;
  width: 24px;
  border-radius: 2px;
  background-color: #FFEEAC;
  display: block;
  position: relative;
}
@media (max-width: 991px) {
  header nav .right-menu {
    display: none;
  }
  header nav .btn-menu {
    display: flex;
  }
}

@media (max-width: 991px) {
  .open-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
  }
  .open-menu nav {
    position: relative;
    flex-direction: column;
    padding: 0;
    height: 100vh;
  }
  .open-menu nav .right-menu {
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
  }
  .open-menu nav .dropdown .link {
    text-align: center;
  }
  .open-menu nav .dropdown .sub-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    border-top: thin solid rgba(255, 255, 255, 0.1);
    border-bottom: thin solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
  .open-menu nav .logo {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .open-menu nav .left-menu {
    margin-top: 6rem;
  }
  .open-menu nav .btn-menu {
    gap: 0;
    padding: 2rem;
  }
  .open-menu nav .btn-menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    transform-origin: center;
  }
  .open-menu nav .btn-menu span:last-child {
    transform: rotate(-45deg);
  }
}

.hero-section {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  min-height: 100vh;
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  z-index: 0;
}
.hero-section .bg-video {
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.hero-section .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-section .title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 10vw, 72px);
  margin-bottom: 1rem;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(145deg, #CB8A09, #FFEFB7, #FFC600);
}
.hero-section .description {
  font-size: clamp(16px, 5vw, 22px);
  margin-bottom: 2rem;
  color: white;
}
.hero-section .primary-btn {
  gap: 1rem;
  margin-bottom: 3rem;
}

.glass-card {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  position: relative;
  background: black;
  border: solid thin rgba(255, 238, 172, 0.1);
  -webkit-backdrop-filter: blur(48px);
          backdrop-filter: blur(48px);
  background: linear-gradient(45deg, #0e0707, rgba(45, 32, 32, 0.1));
  transition: all 0.3s ease-in-out;
}
.glass-card:hover {
  background: linear-gradient(135deg, #2D2020, transparent);
}

.solid-glass {
  padding: 2rem;
  background-color: #0e0707;
  border-radius: 1rem;
}
.solid-glass .title {
  margin-bottom: 1.2rem;
  font-size: 24px;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}
.section .title {
  font-weight: 200;
  color: #FFEEAC;
  margin-bottom: 1.5rem;
}
.section .title span {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(145deg, #CB8A09, #FFEFB7, #FFC600);
  font-weight: bold;
  display: block;
}
.section .text {
  color: rgba(255, 238, 172, 0.8);
  font-weight: 100;
  margin: 0;
}
.section .sec-img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .section .sec-img {
    width: 50%;
    margin: auto;
  }
}

@keyframes img-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
#introduction {
  background-image: url("../img/bg-mob_1.png");
  background-position: top center;
  background-repeat: no-repeat repeat;
  background-size: contain;
}
#introduction .sec-img {
  animation-name: img-animation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}

#features {
  position: relative;
  background-image: url("../img/welcome-bg.png");
  background-position: top right;
  background-repeat: no-repeat repeat;
  background-size: contain;
}
#features::after {
  content: "";
}
#features .text {
  min-height: 120px;
}
#features .glass-card .title {
  display: flex;
  gap: 1rem;
}
#features .glass-card i {
  background-color: rgba(54, 43, 5, 0.24);
  display: flex;
  height: 48px;
  width: 48px;
  border-radius: 100%;
  border: thin solid #362B05;
  justify-content: center;
  align-items: center;
  color: #FFEEAC;
  margin-bottom: 1rem;
}
#features .glass-card h3 {
  font-weight: 500;
  color: white;
  font-size: 24px;
}
#features .glass-card h3 span {
  font-weight: bold;
}
#features .glass-card .text {
  font-size: 15px;
}

#benefits {
  background: linear-gradient(45deg, rgba(14, 7, 7, 0.5), rgba(45, 32, 32, 0.5));
}
#benefits .solid-glass {
  padding-bottom: 0;
  background-color: black;
}
#benefits .solid-glass * {
  transition: all 0.3s ease-in-out;
}
#benefits .solid-glass .title {
  font-weight: bold;
  position: relative;
}
#benefits .solid-glass .text {
  color: white;
  font-weight: 500;
}
#benefits .solid-glass img {
  display: block;
  margin: auto;
  height: 250px;
}
#benefits .solid-glass:hover {
  box-shadow: 0 0 2rem rgba(203, 138, 9, 0.24);
}
#benefits .solid-glass:hover .title {
  color: #CB8A09;
}

#process {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: clamp(320px, 100vw, 450px);
  position: relative;
}
#process canvas {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  opacity: 0.5;
}
#process .process {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
#process .process .bullet-points {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  counter-reset: section;
}
#process .process .bullet-points li {
  flex-grow: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
#process .process .bullet-points li::before {
  counter-increment: section;
  content: counter(section);
  font-weight: 800;
  font-size: 4rem;
  color: rgba(255, 238, 172, 0.1);
  transition: all 0.3s ease-in-out;
}
#process .process .bullet-points li div {
  display: flex;
  flex-direction: column;
}
#process .process .bullet-points li:hover h4 {
  color: #CB8A09;
}
#process .process .bullet-points li:hover::before {
  color: #CB8A09;
}
#process .process .bullet-points h4 {
  font-size: 18px;
  font-weight: bold;
  color: #FFEEAC;
  transition: all 0.3s ease-in-out;
}
#process .process .bullet-points span {
  color: #FFEEAC;
  font-weight: 100;
}

footer {
  background-color: #0e0707;
  border-top: thin solid #161212;
  padding: 50px 0 0;
  color: #ffeeac;
}
footer .footer-logo {
  display: block;
  height: 40px;
  margin: auto;
}
footer .footer-note {
  border-top: thin solid #161212;
  font-size: 14px;
  padding: 2rem 0;
  font-weight: 200;
  margin-top: 3rem;
}
footer .footer-note .row {
  text-align: center;
}
footer .footer-note .link {
  color: #ffeeac;
}
footer .footer-note .link:hover {
  color: #ffeeac;
  text-decoration: underline;
}

.form-control:focus {
  border-color: yellow;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 0, 0.25);
}

.login-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.login-wrapper video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.login-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
}
.login-wrapper form {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 450px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 1rem;
  background: linear-gradient(45deg, rgba(14, 7, 7, 0.8), rgba(45, 32, 32, 0.8));
  border: thin solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.login-wrapper form .form {
  flex-grow: 1;
}
.login-wrapper form img {
  display: block;
  height: 40px;
  margin-bottom: 2rem;
}
.login-wrapper form .title {
  font-weight: 200;
  color: #FFEEAC;
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 1.8;
  color: white;
}
.login-wrapper form .title span {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(145deg, #CB8A09, #FFEFB7, #FFC600);
  font-weight: bold;
  display: block;
  font-size: 24px;
}
.login-wrapper form .form-floating button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1rem;
  border: none;
  outline: none;
  background-color: transparent;
}
.login-wrapper form .form-floating button i {
  font-size: 20px;
}
.login-wrapper form .form-floating button.show-password i::before {
  content: "\f341";
}
@media (max-width: 519px) {
  .login-wrapper {
    overflow: auto;
  }
  .login-wrapper form {
    width: calc(100% - 48px);
    padding: 1rem;
  }
}

.accordion-item {
  background-color: transparent;
  color: #FFEEAC;
  border-color: #CB8A09;
}

.accordion-button {
  background-color: transparent;
  color: #CB8A09;
}
.accordion-button::after {
  color: #CB8A09;
  content: "\f282";
  font-family: bootstrap-icons !important;
  background-image: none;
}

.accordion-button:not(.collapsed) {
  background-color: #CB8A09;
  color: #0e0707;
  border-color: yellow;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 0, 0.25);
}
.accordion-button:not(.collapsed)::after {
  color: #0e0707;
  content: "\f286";
  font-family: bootstrap-icons !important;
  background-image: none;
}

embed {
  height: 100vh;
}

.link-pdf {
  color: #FFEEAC;
}/*# sourceMappingURL=style.css.map */