/** Shopify CDN: Minification failed

Line 82:34 Expected ":"

**/
.presentation-scroll {
  display: flex;
  justify-content: center;
}

.summary {
  margin: 0;
  display: flex;
  height: calc(100vh - 115px); /* minus header height */
  padding: 0 4rem;
  max-width: 1280px;
  width: 100%;
}

.summary-chapters {
  flex-basis: 30%;
  height: calc(100vh - 115px); /* minus header height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.summary-chapter {
  font-family: var(--font-accent-family) !important;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  margin: 1rem 0;
  line-height: initial;
  position: relative;
  width: 100%;
}

.summary-chapter__index {
  font-family: var(--font-heading-family) !important;
  font-size: 4rem;
  line-height: 1;
}

.summary-chapter__title {
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: max-content;
  position: relative;
}

.summary-chapter__title::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  width: 10px;
  background-color: black;
  transition: width 0.75s;
}

.summary-chapter:hover .summary-chapter__title::after,
.summary-chapter.active .summary-chapter__title::after {
  width: 100%;
}

.summary-description {
  font-family: Archivo;
  flex-basis: 70%;
  height: calc(100vh - 115px); /* minus header height */
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;

  /* Hide scrollbar visually but keep scroll working */
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     IE/Edge
}

.summary-description::-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.summary-description__slide {
  height: calc(100vh - 115px); /* minus header height */
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.summary-description__content {
  width: 670px;
  position: relative;
  z-index: 1;
}

.summary-description__content h3 {
  font-size: 9rem;
  text-transform: uppercase;
  line-height: 80%;
  position: relative;
  margin: 0;
  margin-bottom: 1rem;
}

.summary-description__slide.active .summary-description__content h3 {
  animation: slideIn 1s ease-out forwards;
}

.summary-description__slide.active .img-1 {
  animation: slideIn 1.2s ease-out forwards;
}

.summary-description__slide.active .img-2 {
  animation: slideIn 1.4s ease-out forwards;
}

.summary-description__slide.active .img-3 {
  animation: slideIn 1.6s ease-out forwards;
}

.summary-description__content p {
  width: 350px;
  margin: 0;
  font-size: 13px;
}

.description {
  display: flex;
  gap: 1rem;
}

a .link--underlined {
  text-decoration: underline;
}

a:hover .link--underlined {
  color: #792b3b;
}

.decor {
  position: fixed;
  opacity: 0.6;
}

.decor-1 {
  width: 150px;
  transform: scaleX(-1);
}

.decor-2 {
  height: 100vh;
  left: 50%;
  transform: translateX(-50%);
}

.img {
  border-radius: 2px;
  position: absolute;
}

.img-1 {
  top: -175px;
}

.summary-description__slide.one-picture .img-1 {
  top: 100px;
}

.summary-description__slide.two-pictures .img-1 {
  top: -150px;
}

.img-2 {
  bottom: -75px;
}

.summary-description__slide.two-pictures .img-2 {
  bottom: -100px;
}

.img-3 {
  bottom: -150px;
}

@keyframes slideIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1160px) {
  .summary-chapters {
    display: none;
  }

  .summary {
    display: block;
    padding: 2rem;
  }

  .summary-description__slide {
    display: initial;
  }

  .summary-description__content {
    position: initial;
    width: 100%;
    margin-bottom: 1rem;
  }

  .summary-description__content h3 {
    font-size: 5rem;
    animation: none !important;
    margin-top: 1rem;
  }

  .summary-description__content p {
    font-size: 14px;
  }

  .description {
    flex-wrap: wrap;
  }

  .link--underlined {
    color: #792b3b;
  }

  .img-1,
  .img-2,
  .img-3 {
    position: initial;
    animation: none !important;
  }

  .decor {
    display: none;
  }
}