/* reset */
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: hsl(0 0% 100%);
  font-family: 'Josefin Sans', system-ui, sans-serif;
  color: hsl(230 7% 23%);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: hsl(230 13% 9%);
  font-weight: 700;
}

h1 {
  font-size: 2.0736rem;
}

h2 {
  font-size: 1.728rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: .9rem;
}

ol,
ul,
menu {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  line-height: inherit;
  appearance: none;
}

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

a {
  color: rgba(72, 39, 236, 0);
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video,
svg {
  display: inline-block;
  max-width: 100%;
}

@media (min-width: 64rem) {
  body {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 3.051rem;
  }

  h2 {
    font-size: 2.44rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5625rem;
  }
}

/* variables */
:root {
  /* colors */
  --vq4-color-primary-hsl: 250, 84%, 54%;
  --vq4-color-bg-hsl: 0, 0%, 100%;
  --vq4-color-contrast-high-hsl: 230, 7%, 23%;
  --vq4-color-contrast-higher-hsl: 230, 13%, 9%;
  --vq4-color-accent-hsl: 342, 89%, 48%;
  --vq4-color-warning-hsl: 35, 79%, 66%;
  --vq4-color-contrast-medium-hsl: 225, 4%, 47%;
  --vq4-color-bg-dark-hsl: 240, 4%, 95%;
  --vq4-color-bg-light-hsl: 0, 0%, 100%;
  --vq4-color-white-hsl: 0, 0%, 100%;
  --vq4-color-primary-darker-hsl: 250, 84%, 38%;
  --vq4-color-primary-light-hsl: 250, 84%, 60%;
  --vq4-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --vq4-space-2xs: 0.375rem;
  --vq4-space-sm: 0.75rem;
  --vq4-space-md: 1.25rem;
  --vq4-space-lg: 2rem;
  --vq4-space-xl: 3.25rem;
  --vq4-space-xs: 0.5rem;

  /* typography */
  --vq4-text-sm: 0.833rem;
  --vq4-text-md: 1.5rem;
}

@media(min-width: 64rem) {
  :root {
    /* spacing */
    --vq4-space-2xs: 0.5625rem;
    --vq4-space-sm: 1.125rem;
    --vq4-space-md: 2rem;
    --vq4-space-lg: 3.125rem;
    --vq4-space-xl: 5.125rem;
    --vq4-space-xs: 0.75rem;

    /* typography */
    --vq4-text-sm: 1rem;
    --vq4-text-md: 1.75rem;
  }
}

/* icons */
.vq4-icon {
  height: var(--vq4-size, 1em);
  width: var(--vq4-size, 1em);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.vq4-icon--sm {
  --vq4-size: 24px;
}

/* component */
:root {
  --v-timeline-marker-size: 16px;
  --v-timeline-track-width: 2px;
  --v-timeline-triangle-size: 12px;
  --v-timeline-sections-gap: var(--vq4-space-lg);
  --v-timeline-items-gap: var(--vq4-space-sm);
}

/* cover */
.cover {
  position: relative;
  min-height: 60vh;
  width: 100%;
  transform-style: inherit;
  z-index: -1;
}

.cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: url(assets/alcmene.jpg) center right;
  background-size: cover;
  transform: translateZ(-1px) scale(1.5);
  min-height: 100%;
  z-index: -2;
}

.cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #000;
  opacity: .5;
  background-size: cover;
  transform: translateZ(-1px) scale(1.5);
  min-height: 100%;
  z-index: 0;
}

.cover h3 {
  position: absolute;
  bottom: -2em;
  left: 20px;
  color: #fff;
  z-index: 1;
}

/* timeline */
.v-timeline {
  position: relative;
  padding: var(--vq4-space-lg) 0;
}

.v-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - var(--v-timeline-track-width) / 2);
  height: 100%;
  width: var(--v-timeline-track-width);
  background-color: hsla(var(--vq4-color-contrast-higher-hsl), 0.1);
}

.v-timeline__section {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(50% + var(--v-timeline-marker-size) / 2);
}

.v-timeline__section:not(:last-of-type) {
  margin-bottom: var(--v-timeline-sections-gap);
}

.v-timeline__section.left {
  flex-direction: row-reverse;
}

.v-timeline__section.left .v-timeline__marker {
  margin-right: 0;
  margin-left: var(--vq4-space-2xs);
}

.v-timeline__section .v-timeline__date {
  top: 50%;
}

.v-timeline__section.left .v-timeline__date {
  right: calc(-1 * (var(--v-timeline-triangle-size) + var(--vq4-space-2xs)) - var(--v-timeline-marker-size));
  -webkit-transform: translateX(100%) translateY(-50%);
  transform: translateX(100%) translateY(-50%);
}

.v-timeline__section.right {
  margin-left: auto;
}

.v-timeline__section.right .v-timeline__date {
  left: calc(-1 * (var(--v-timeline-triangle-size) + var(--vq4-space-2xs)) - var(--v-timeline-marker-size));
  -webkit-transform: translateX(-100%) translateY(-50%);
  transform: translateX(-100%) translateY(-50%);
}

.v-timeline__section--is-hidden {
  opacity: 0;
}

.v-timeline__marker {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  height: var(--v-timeline-marker-size);
  width: var(--v-timeline-marker-size);
  border-radius: 50%;
  margin-right: var(--vq4-space-2xs);
}

.v-timeline__item {
  position: relative;
  flex-grow: 1;
}

.v-timeline__item:not(:last-child) {
  margin-bottom: var(--v-timeline-items-gap);
}

.v-timeline__item:not(:first-child) .v-timeline__date {
  display: none;
}

.v-timeline__item:not(:first-child)::before {
  display: none;
}

.v-timeline__section .v-timeline__item::before {
  content: "";
  position: absolute;
  top: 49%;
  height: var(--v-timeline-track-width);
  width: 10em;
  background-color: hsla(var(--vq4-color-contrast-higher-hsl), 0.1);
}

.v-timeline__section.left .v-timeline__item::before {
  right: -5px;
}

.v-timeline__section.right .v-timeline__item::before {
  left: -5px;
}

.v-timeline[data-animation=on] .v-timeline__marker {
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.v-timeline[data-animation=on] .v-timeline__item {
  opacity: 0;
  transition: opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s, -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.v-timeline[data-animation=on] .v-timeline__section.left .v-timeline__item {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

.v-timeline[data-animation=on] .v-timeline__section.right .v-timeline__item {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
}

.v-timeline[data-animation=on] .v-timeline__section--animate .v-timeline__item {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
  opacity: 1;
}

.v-timeline[data-animation=on] .v-timeline__section--animate .v-timeline__marker {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.v-timeline--icons {
  --v-timeline-marker-size: 3em;
}

.v-timeline__date {
  position: absolute;
  top: 0;
  white-space: nowrap;
}

.v-timeline__date-value {
  color: hsl(var(--vq4-color-contrast-medium-hsl));
  font-size: var(--vq4-text-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.v-timeline__date-value sup {
  font-size: var(--vq4-text-sm);
}

/* utility classes */
.vq4-margin-top-md {
  margin-top: var(--vq4-space-md);
}

.vq4-margin-top-xl {
  margin-top: var(--vq4-space-xl);
}

.vq4-text-component {
  display: flex;
  align-items: baseline;
}

.vq4-text-component :where(h1, h2, h3, h4) {
  display: inline-block;
  line-height: var(--vq4-heading-line-height, 1.2);
  margin-top: calc(var(--vq4-space-md) * var(--vq4-space-multiplier, 1));
  margin-bottom: calc(var(--vq4-space-sm) * var(--vq4-space-multiplier, 1));
  padding-bottom: 6em;
}

.vq4-text-component :where(h1, h2, h3, h4)::before {
  content: '';
  margin: auto;
  display: block;
  width: 3.5em;
  height: 3.5em;
}

#t1 {
  margin-bottom: calc(var(--vq4-space-sm) * var(--vq4-space-multiplier, -1.5));
}

/* icons */
#t1::before {
  background: url(assets/1.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t2::before {
  background: url(assets/2.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t3::before {
  background: url(assets/3.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t4::before {
  background: url(assets/4.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t5::before {
  background: url(assets/5.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t6::before {
  background: url(assets/6.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t7::before {
  background: url(assets/7.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

#t8::before {
  background: url(assets/8.png) center right;
  background-size: contain;
  background-repeat: no-repeat;
}

.vq4-text-component.vq4-line-height-xs {
  --vq4-heading-line-height: 1;
  --vq4-body-line-height: 1.1;
}

.vq4-text-component.vq4-line-height-sm {
  --vq4-heading-line-height: 1.1;
  --vq4-body-line-height: 1.2;
}

.vq4-text-component.vq4-line-height-md {
  --vq4-heading-line-height: 1.15;
  --vq4-body-line-height: 1.4;
}

.vq4-text-component.vq4-line-height-lg {
  --vq4-heading-line-height: 1.22;
  --vq4-body-line-height: 1.58;
}

.vq4-text-component.vq4-line-height-xl {
  --vq4-heading-line-height: 1.3;
  --vq4-body-line-height: 1.72;
}

.vq4-margin-bottom-sm {
  margin-bottom: var(--vq4-space-sm);
}

.vq4-shadow-xs {
  box-shadow: 0 0.1px 0.3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
}

.vq4-radius-md {
  border-radius: 0.25em;
}

.vq4-padding-md {
  padding: var(--vq4-space-md);
}

.vq4-bg {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-bg-hsl), var(--vq4-bg-o, 1));
}

.vq4-color-white {
  --vq4-color-o: 1;
  color: hsla(var(--vq4-color-white-hsl), var(--vq4-color-o, 1));
}

.vq4-border {
  --vq4-border-o: 1;
  border: var(--vq4-border-width, 1px) var(--vq4-border-style, solid) hsla(var(--vq4-color-contrast-lower-hsl), var(--vq4-border-o, 1));
}

.vq4-bg-warning {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-warning-hsl), var(--vq4-bg-o, 1));
}

.vq4-bg-primary {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-primary-hsl), var(--vq4-bg-o, 1));
}

.vq4-bg-contrast-high {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-contrast-high-hsl), var(--vq4-bg-o, 1));
}

.vq4-bg-accent {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-accent-hsl), var(--vq4-bg-o, 1));
}

.vq4-max-width-adaptive-lg {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 48rem;
  }
}

@media(min-width: 64rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 64rem;
  }
}

@media(min-width: 80rem) {
  .vq4-max-width-adaptive-lg {
    max-width: 80rem;
  }
}

.vq4-container {
  width: calc(100% - 2*var(--vq4-space-md));
  margin-left: auto;
  margin-right: auto;
}

.vq4-text-center {
  text-align: center;
}

.vq4-margin-bottom-lg {
  margin-bottom: var(--vq4-space-lg);
}

.vq4-bg-dark {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-bg-dark-hsl), var(--vq4-bg-o, 1));
}

.vq4-padding-y-xl {
  padding-top: var(--vq4-space-xl);
  padding-bottom: var(--vq4-space-xl);
}

.vq4-overflow-hidden {
  overflow: hidden;
}

.vq4-z-index-1 {
  z-index: 1;
}

.vq4-position-relative {
  position: relative;
}

.vq4-bg-light {
  --vq4-bg-o: 1;
  background-color: hsla(var(--vq4-color-bg-light-hsl), var(--vq4-bg-o, 1));
}

.vq4-border-3 {
  --vq4-border-width: 3px;
}

.vq4-border-bg-dark {
  --vq4-border-o: 1;
  border-color: hsla(var(--vq4-color-bg-dark-hsl), var(--vq4-border-o, 1));
}

/* credits */

.credits hr {
  margin: calc(var(--vq4-space-md) * var(--vq4-space-multiplier, 1)) auto;
  background: hsl(var(--vq4-color-contrast-lower-hsl));
  height: 1px;
}

.credits a::after {
  content: '';
  margin: auto;
  display: block;
  width: 7em;
  height: 3em;
  background: url(assets/rect-transp-black.svg) center right;
  background-size: contain;
  background-repeat: no-repeat;
  filter: contrast(0.1);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.credits a:hover:after {
  filter: contrast(1);
}