details {
  /*width: 50%;*/
  /*margin: 0 auto;*/
  background: var(--secondary);
  margin-bottom: .5rem;
  box-shadow: 0 .1rem 1rem -.5rem rgba(0,0,0,.4);
  border-radius: 0px;
  overflow: hidden;
  color: black;
}

summary {
  padding: 1rem;
  display: block;
  background: var(--bs-secondary);
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
  color: white;
}

summary:before {
  content: '';
  border-width: .4rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  transform: rotate(0);
  transform-origin: .2rem 50%;
  transition: .25s transform ease;
}

/* THE MAGIC 🧙‍♀️ */

details[open] > summary:before {
  transform: rotate(90deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details > ul {
  padding-bottom: 1rem;
  margin-bottom: 0;
}

.faq {
  border-top: 1px solid white;
  padding: 1rem;
}

.gslide-image {
  border-radius: 8px;
}

#sec-main_view {
  /*width: 100vw;*/
  height: 100vh;
}

.main_view {
  width: 100vw;
  height: 100vh;
}

.pointer {
  cursor: pointer;
}

.link-secondary {
  color: var(--secondary);
  text-decoration: underline;
}

