html body {
  margin: auto;
  padding-inline: 1em;
  font-size: clamp(2.2em, 3.1vw, 3.5em);
  line-height: 0.75em;
}
html body header {
  /* max-width: clamp(35em, 60em, 70%);
  */
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  padding-block: 1em;
  gap: 0.5em;
}
html body header div {
  flex: 1 1 0;
  width: 0;
}
html body header div img {
  margin-left: auto;
  margin-right: auto;
}
html body header div a img {
  width: 4.5em;
  height: 4.5em;
}
html body header div {
  flex-basis: auto;
}
html body header div {
  flex-basis: 1;
}
html body .nav {
  z-index: 5;
  margin-bottom: 10px;
  display: flex;
  background-color: #CCCCCC;
  justify-content: space-around;
}
html body .nav a {
  scroll-behavior: smooth;
  text-decoration: none;
  color: white;
}
html body h1,
html body h2 {
  color: var(--accent);
}
html body h1 {
  font-size: 1.7em;
  padding-bottom: 0.5em;
}
html body h2 {
  font-size: 1.2em;
  padding-bottom: 1em;
}
html body p {
  text-indent: 2em;
  padding-bottom: 1.2em;
  text-align: justify;
}
html .intro {
  display: flex;
}
@media (min-width: 1024px) {
  html .intro {
    flex-direction: row;
  }
}
@media (max-width: 1024px) {
  html .intro {
    flex-direction: column;
  }
}
html .intro div {
  flex: 1;
  margin-left: 20px;
}
html .grey {
  display: flex;
  flex-direction: column;
  background-color: #CCCCCC;
}
html .grey div {
  text-align: center;
}
html .timeline {
  display: flex;
}
html .timeline div {
  flex: 1;
  margin-left: 20px;
}
@media (min-width: 600px) {
  html .timeline img {
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 30vw;
  }
}
@media (max-width: 600px) {
  html .timeline img {
    margin: 0;
    margin-bottom: 5%;
  }
}
html .reasons {
  margin-top: 30px;
  font-size: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
html .reasons div strong {
  line-height: normal;
}
html .reasons .reasons_outer {
  text-align: center;
  display: flex;
  flex-direction: column;
}
html .reasons .reasons_outer .reasons_inner {
  justify-content: space-between;
  padding-top: 0.1vw;
  padding-left: 0vw;
  padding-right: 0vw;
  padding-bottom: 0.1vw;
  display: flex;
  flex-direction: row;
  font-size: 0.6em;
}
@media (max-width: 680px) {
  html .reasons .reasons_outer .reasons_inner {
    flex-direction: column;
  }
}
html .reasons .reasons_outer .reasons_inner div {
  width: 100vw;
}
@media (max-width: 680px) {
  html .reasons .reasons_outer .reasons_inner div {
    width: 80vw;
    padding-top: 0.5em;
  }
}
@media (min-width: 680px) {
  html .reasons .reasons_outer .reasons_inner div {
    padding: 2em;
  }
}
html .testimonials {
  background-color: #CCCCCC;
  display: flex;
  flex-direction: row;
}
html .testimonials div {
  margin: 2%;
  color: green;
  flex-direction: row;
  flex: 1;
  display: flex;
  font-size: 20px;
  width: 40%;
  /*
  margin-top: 10%;
  margin-left: 10%;
  margin-bottom: 10%;
  */
  background-color: #CCCCCC;
}
@media (max-width: 650px) {
  html .testimonials div {
    flex-direction: column;
  }
}
html .testimonials div div {
  background-color: white;
  margin-left: 20px;
  flex-direction: row;
  padding-left: 1vw;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 0px;
}
@media (max-width: 650px) {
  html .testimonials div div {
    flex-direction: column;
    width: 80vw;
  }
}
html .testimonials div div div {
  float: right;
  margin-left: 20px;
  flex-grow: 2;
  flex-direction: column;
  font-size: 9;
  color: rgb(0, 0, 0);
}
html .testimonials div div div img {
  aspect-ratio: 346/350;
  width: 10vw;
  height: auto;
  float: left;
}
@media (max-width: 650px) {
  html .testimonials div div div {
    width: 70vw;
  }
}
html .testimonials div div div h2 {
  padding: 0px;
}
html .testimonials div div div p {
  font-size: 15px;
  text-align: left;
}
html .class_options {
  text-align: center;
  display: flex;
}
html .class_options h1 {
  margin-top: 10px;
}
html .faq h1 {
  text-align: center;
}
html .faq div {
  padding: 30px;
  text-align: left;
  width: 60%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border: 0.3px solid rgb(196, 196, 196);
}
@media (max-width: 680px) {
  html .faq div {
    width: 100%;
  }
}
html .faq div p {
  font-size: 16px;
}

/*********** Inspired by: https://codepen.io/Schepp/pen/WNbQByE *************/
@keyframes tonext {
  0%, 100% {
    left: 0;
  }
  25%, 75% {
    left: 100%;
  }
}
@keyframes tostart {
  0%, 100% {
    left: 0;
  }
  25%, 75% {
    left: 100%;
  }
}
@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}
* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel {
  z-index: 0;
  position: relative;
  padding-top: 30%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  perspective: 100px;
}

.carousel__viewport {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel__slide {
  z-index: 0;
  position: relative;
  flex: 0 0 100%;
  /* was 100% */
  width: auto;
  counter-increment: item;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel__slide:nth-child(even) {
  background-image: url("../Header/header2.jpg");
}

.carousel__slide:nth-child(odd) {
  background-image: url("../Header/header1.jpg");
}

.carousel__slide:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -40%, 70px);
  color: #fff;
  font-size: 2em;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 40s;
    animation-iteration-count: infinite;
  }
  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}
/*
.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}
*/
.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}

.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 40s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
  margin-top: 14%;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  outline: 0;
}

.carousel::before,
.carousel__prev {
  left: -1rem;
}

.carousel::after,
.carousel__next {
  right: -1rem;
}

/*
.carousel::after {

  content: '';
  z-index: 1;
  background-color: #333;
  background-size: .75rem .75rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}

.carousel::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}

.carousel::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}
*//*# sourceMappingURL=style.css.map */