main {
  contain: layout
}

.hero-container {
  min-height: 50vh;
}

.process-line {
  width: 10px;
  height: 90vh;
  margin: 10px 12vw;
  background-color: var(--secondary);
  border-radius: 25px;
}

.process-line div {
  max-height: 100%;
  width: 100%;
  height: 0;
  background-color: var(--primary);
  border-radius: 25px;
}


.process-container {
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 5vh;
  bottom: 5vh;
}

#text-container {
  background-color: var(--primary);
  border-radius: 25px;
  padding: 25px;
}

.card-wrapper {
  margin: 100vh 10px;
}

.process-card {
  background-color: var(--secondary);
  border-radius: 25px;
  padding: 20px;
  width: 80%;
  translate: 200%;
  transition: translate 1s;
}

.hidden {
  visibility: collapse;
  opacity: 0;
}

.show {
  visibility: visible;
  opacity: 1;
  ;
  transition: 1s ease;
}

.showcard {
  translate: 0%;
}

.process-cta {
  width: 100%;
  color: white;
  display: block;
}

/* #FAQ-intro {
  background-color: var(--secondary);
  border-radius: 25px;
  padding:1em;
  margin:10px;
}

#FAQ-questions-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap:10px;
}
 */


/* .FAQ-question{
  padding:1em;
  background-color: var(--primary);
  border-radius: 25px;
} */

.scrollFurther {
  position: fixed;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 20px;
}

#scrollFurtherBlob {
  margin: 20px;
  width: max-content;
  color: var(--invert);
  border-radius: 100px;
  padding: 0px 10px;
  transition: 0.7s;
  background-color: var(--text);
}

.FAQ-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}


.FAQ-container div {
  padding: 1em;
  border-radius: 25px;
}

#FAQ-intro {
  background-color: var(--secondary);
}

.FAQ-question {
  transition: 0.2s;
  font-size: 0.9rem;
  background-color: var(--primary);
}

.FAQ-question span {
  transition: 0.2s;
}

.FAQ-question:hover {
  box-shadow: 0 0 20px var(--primary);
}

.FAQ-question:hover span {
  scale: 150%;
}

/* .FAQ-q-head:active + .FAQ-q-body{
  display: block;
} */
/* Need to work on this maybe add a js function to expand it fully */

.FAQ-q-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.FAQ-q-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


@media only screen and (max-width: 600px) {

  .process-line {
    width: 40px;
    margin-left: 1vh;
  }

  .process-card {
    width: 90%;
  }

}