section .FAQ {
  width: 100%;
  margin: 5%;
  display: flex;
}

.list_FAQ {
  width: 50%;
  justify-content: center;
  align-items: center;
}

.dropdown {
  transition: all 300ms;
  display: flex;
  flex-direction: column;
  min-height: 100px;
  background-color: #010101;
  overflow: hidden;
  position: relative;
  inset-inline: auto;
  width: 100%;
  color: white;
}
.dropdown input:where(:checked) ~ .list {
  opacity: 1;
  transform: translateY(-3rem) scale(1);
  transition: all 500ms ease;
  margin-top: 32px;
  padding-top: 4px;
  margin-bottom: -32px;
}
.dropdown input:where(:not(:checked)) ~ .list {
  opacity: 0;
  transform: translateY(3rem);
  margin-top: -100%;
  user-select: none;
  height: 0px;
  max-height: 0px;
  min-height: 0px;
  pointer-events: none;
  transition: all 500ms ease-out;
}
.trigger {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 600;
  color: inherit;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: row;
  gap: 1rem;
  padding: 1rem;
  height: max-content;
  position: relative;
  z-index: 99;
  border-radius: inherit;
  background-color: #000;
  color: white;
  background: linear-gradient(45deg, #fdfeff 10%, #4e5550 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.3s ease;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.dropdown input:where(:checked) + .trigger {
  margin-bottom: 1rem;
}
.dropdown input:where(:checked) + .trigger:before {
  rotate: 90deg;
  transition-delay: 0ms;
}

.trigger:before,
.trigger::after {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trigger:before {
  content: "›";
  rotate: -90deg;
  width: 17px;
  height: 17px;
  color: white;
  border-radius: 2px;
  font-size: 26px;
  transition: all 350ms ease;
  transition-delay: 85ms;
}

.list {
  height: 100%;
  max-height: 20rem;
  width: calc(100% - calc(var(--w-scrollbar) / 2));
  display: grid;
  grid-auto-flow: row;
  overflow: hidden auto;
  gap: 2rem;
  padding: 0 1rem;
  margin-right: -8px;
  --w-scrollbar: 19px;
}

.listitem {
  height: 100%;
  width: calc(100% + calc(calc(var(--w-scrollbar) / 2) + var (--w-scrollbar)));
  list-style: none;
}
.article {
  padding: 1rem;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: justify;
  width: 100%;
  display: inline-block;
  background-color: #000;
  color: #a7a7a7;
}

.text-FAQ {
  position: absolute;
  right: 0;
  width: 50%;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;

  transition: filter 0.3s ease;
}

.text-FAQ-info {
  transform: translateY(30%);
  font-weight: 800;
  font-size: 70px;
  background: linear-gradient(45deg, #494d52 10%, #ffffff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-FAQ-info .text-faq {
  font-weight: 700;
  font-size: 19px;
  color: #ccc;
  text-transform: lowercase;
}
