:root {
  /* colors */
  --color-white: #FFFFFF;
  --color-primary-lightest: hsl(77, 20%, 93%);
  --color-primary-light: hsl(95, 70%, 18%);
  --color-primary: hsl(95, 43%, 18%);
  --color-primary-opaque-100: hsla(95, 43%, 18%, 0);

  /* global pads */
  --page-tb-padding-1: 2.5rem; /* top-bottom-1 */
  --page-tb-padding-2: 3.5rem; /* top-bottom-2 */
  --page-lr-padding: 5rem; /* left-right */

  /* interactions */
  --time-reveal: 0.175s;
  --time-hide: 0s;

  /* easings */
  --ease-inout: ease-in-out;
  --ease-out: ease-out;
  --ease-in: ease-in;

  /* mobile and tablet portrait */
  --header-height: 100px;
}

@media (max-width: 768px) {
  /* desktop and mobile landscape */
  :root {
    --header-height: 70px;
  }
}


*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page #main, body.search #main, body.single #main {
  padding-top: var(--header-height) !important;
}

/* global */
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  color: #fff;
  text-decoration: none;
}
.section {
  --bs-gutter-x: 0;
  font-family: din-2014;
  height: auto;
}
.full-height {
  min-height: 100%;
  height: 100%;
}
.full-width {
  width: 100%;
}

.section-wrapper {
  padding: var(--page-tb-padding-1) 1rem
}
@media (min-width: 1024px) {
  .section-wrapper {
    padding: 2rem 3rem;
  }
}
:where(#section_2, #section_4, #section_6) .section-wrapper {
  padding: var(--page-tb-padding-2) 1rem
}
@media (min-width: 1024px) {
  :where(#section_2, #section_4, #section_6) .section-wrapper {
    padding: 2rem 3rem;
  }
}
.icon {
  font-size: 2.5rem;
  cursor: pointer;
}
.light-bg {
  background-color: var(--color-primary-lightest);
}
.dark-bg {
  background-color: var(--color-primary);
}

/* font-sizes */
.fs-1 {
  font-size: min(3.4vw, 4.5rem) !important;
  line-height: 1.1;
}
.fs-2 {
  font-size: min(4rem, 3.02vw) !important;
  line-height: 1;
}
.fs-3 {
  font-size: min(2.75rem, 2.075vw) !important;
  line-height: 1.2;
}
.fs-35 {
  font-size: min(1.465rem, 1.45vw) !important;
  line-height: 1;
  font-weight: 600;
}
.fs-4 {
  font-size: min(1.25rem, .95vw) !important;
}
.fs-6 {
  font-size: min(6.5rem, 4.85vw) !important;
}
.fs-body-tiny {
  font-size: min(0.95rem, .72vw);
  line-height: 1.25;
}
.fs-body-1 {
  font-size: min(1rem, .75vw);
}
.fs-body-2 {
  font-size: min(1.35rem, 1.02vw);
  line-height: 1.25;
}
.fs-huge {
  font-size: min(13rem, 9.725vw);
}
.lh-1 {
  line-height: 0.75;
}

/* underlines */
#section_1 .text-decoration-underline {
  text-decoration-thickness: min(0.3rem, 0.25vw) !important;
  text-underline-offset: min(0.375rem, .313vw);
}
:where(#section_2, #section_3, #section_6) .text-decoration-underline {
  text-decoration-thickness: min(0.15rem, 0.125vw) !important;
  text-underline-offset: min(0.2rem, .167vw);
}
#section_6 .text-decoration-underline {
  text-decoration-thickness: min(1px, 1px) !important;
  text-underline-offset: min(2px, 2px);
}
#section_6 .text-decoration-underline-xs {
  text-decoration-thickness: min(1px, 1px) !important;
  text-underline-offset: min(1px, 1px);
}


main {
  height: 100%;
}

/* section 1 */
#section_1 {
  --bs-gutter-x: 0;
  position: relative;
  height: 100%;
  color: var(--color-white)
}
#section_1:after {
  /* position: absolute; */
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0 0 0 / 0.15);
}
#section_1 .section-wrapper {
  background-image: linear-gradient(rgba(0 0 0 / 0.3), rgba(0 0 0 / 0.3)), url('../media/hero-bg-2k.jpg');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}
#section_1 .section-wrapper.full-height {
  min-height: calc(100vh - var(--header-height));
}
#section_1 .title-copy {
  max-width: 30ch;
}
#section_1 .scroll-down {
  display: flex;
  gap: 1rem;
}
#section_1 .scroll-down .content {
  display: flex;
  flex-direction: column;
  max-width: 13.35rem;
  cursor: pointer;
}
#section_1 .scroll-down .content img {
  box-shadow: rgba(0, 0, 0, 0.09) 0px 7px 15px, rgba(0, 0, 0, 0.13) 0px 4px 4px;
  transition: 0.08s ease box-shadow;
}
#section_1 .scroll-down .content .sustainability-report-cta-copy {
  transition: 0.08s ease text-shadow;
}
#section_1 .scroll-down .content:hover img {
  box-shadow: rgba(0, 0, 0, 0.21) 0px 10px 20px, rgba(0, 0, 0, 0.25) 0px 6px 6px;
}
#section_1 .scroll-down .content:hover .sustainability-report-cta-copy {
  text-shadow: 1px 1px 1px #051607
}
#section_1 .sustainability-report-cta-copy {
  text-transform: uppercase;
  line-height: 1;
  text-align: end;
  margin-block: 0.675rem 0;
}
#section_1 .scroll-down-icon {
  width: 2rem;
  cursor: pointer;
}


/* section 2 */
#section_2 {
  color: var(--color-primary)
}
#section_2.full-height, #section_2 .full-height {
  height: auto;
}
#section_2 .pane:first-child {
  position: relative;
}
#section_2 .title-copy {
  position: relative;
  max-width: 50ch;
}
#section_2 .graph {
  padding-bottom: 110px;
}
#section_2 .graph > img {
  display: block;
  width: 100%;
  height: auto;
}
.timeline-container .title {
  position: relative;
  max-width: 14ch;
  padding-bottom: 1.5rem
}
.timeline-container .title:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  left: 0;
  bottom: 0;
}
.timeline-container .item-container {
  margin-top: 1.5rem;
}
.timeline-container .item {
  position: relative;
  border-bottom: 1px solid var(--color-primary-opaque-100);
  transition: var(--time-reveal) var(--ease-out) border-bottom;
  cursor: pointer;
}
.timeline-container .item:hover {
  border-bottom: 1px solid var(--color-primary);
  transition: var(--time-reveal) var(--ease-in) border-bottom;
}

.timeline-container .item:not(:first-child) {
  padding-top: 0.75rem;
}
.timeline-container .item:not(:last-child) {
  padding-bottom: 0.75rem;
}
.item-trigger {
  position: relative;
  text-align: right;
  transition: calc(var(--time-reveal) * 0.125) var(--ease-inout) width;
  width: 100%;
}
.item:hover .item-trigger {
  width: 0;
  transition: var(--time-reveal) var(--ease-inout) width;
}
.sub-item {
  position: absolute;
  max-width: 15ch;
  bottom: 0;
  padding-top: 0.75rem;
  transform: translate(0, 100%);
}
.item:last-child .sub-item {
  max-width: 16.3rem;
}
.item .sub-title {
  white-space: pre;
  margin-bottom: 0;
  opacity: 0;
  transition: var(--time-reveal) var(--ease-out) opacity;
}
.item:hover .sub-title {
  opacity: 1;
  transition: var(--time-reveal) var(--ease-in) calc(var(--time-reveal) * 0.5) opacity;
}
.item .sub-copy {
  color: var(--color-primary-light);
  opacity: 0;
  transition: var(--time-reveal) var(--ease-out) opacity;
}
.item:hover .sub-copy {
  opacity: 1;
  transition: var(--time-reveal) var(--ease-in) calc(var(--time-reveal) * 0.5) opacity;
}
.item .sub-img {
  opacity: 0;
  max-width: 6rem;
  height: auto;
}
.item:hover .sub-img {
  opacity: 1;
  transition: var(--time-reveal) var(--ease-in) calc(var(--time-reveal) * 1) opacity;
}
.item:nth-child(3) .sub-img {
  max-width: 6rem;
}
.item:nth-child(4) .sub-img {
  max-width: 6rem;
}
.item:nth-child(5) .sub-img {
  max-width: 6rem;
}
.item:nth-child(6) .sub-img {
  max-width: 7.5rem;
}
.item:nth-child(7) .sub-img {
  max-width: 4.5rem;
}
.item:last-child .sub-img {
  max-width: 4.5rem;
}
@media (min-width: 1024px) {
  .item:nth-child(3) .sub-img {
    max-width: 7.5rem;
  }
  .item:nth-child(4) .sub-img {
    max-width: 7.5rem;
  }
  .item:nth-child(5) .sub-img {
    max-width: 7.5rem;
  }
  .item:nth-child(6) .sub-img {
    max-width: 8.65rem;
  }
  .item:nth-child(7) .sub-img {
    max-width: 6rem;
  }
  .item:last-child .sub-img {
    max-width: 6rem;
  }
}

/* #section_3 */
#section_3.section {
  height: 100vh;
  color: #fff;
}
#section_3 .section-wrapper {
  opacity: 0;
  gap: 3rem;
}
#section_3 .section-wrapper.active {
  opacity: 1;
}
#section_3 .title-copy {
  max-width: 23ch
}
#section_3 .section-wrapper .pane:last-child {
  position: relative;
}
#section_3 .desktop {
  display: block;
}
#section_3 .mobile {
  display: none;
}

/* section_4 */
#section_4 {
  color: var(--color-primary);
}
#section_4 .section-wrapper {
  gap: 3rem;
}
#section_4 .title-copy {
  max-width: 61ch;
}
#section_4 .pane.d-grid {
  position: relative;
  grid-template-columns: 1fr auto;
  justify-items: center;
}
#section_4 svg {
  width: 54%;
}
#section_4 .cta {
  position: absolute;
  right: 0;
  bottom: 0;
  gap: 1rem;
}
#section_4 .cta .copy {
  max-width: 28ch;
  line-height: 1.05;
  color: var(--color-primary);
  text-underline-offset: 0.15rem;
}
#section_4 .cta .copy:hover {
  text-decoration: underline;
}
#section_4 .cta .copy a {
  color: var(--color-primary);
}
#section_4 .angle-right-icon {
  width: 1.5rem;
  padding: 0.125rem;
}

/* #section_5 */
#section_5 {
  color: #fff;
}
#section_5 .section-wrapper {
  position: relative;
}
#section_5 .section-wrapper {
  background-image: linear-gradient(rgba(0 0 0 / 0.1), rgba(0 0 0 / 0.1)), url('../media/attributes-of-purposeful-design.jpg');
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-size: cover;
}
#section_5 .section-wrapper.full-height {
  min-height: 100vh;
}
#section_5 figure {
  position: absolute;
  height: 80%;
  top: 49.1125%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
#section_5 svg {
  height: 100%;
}
#section_5 .title-copy:first-child {
  line-height: 1
}
#section_5 .title-copy:first-child h1 {
  max-width: 19ch;
}
#section_5 .title-copy:first-child h3 {
  max-width: 32vw;
}
#section_5 .title-copy:last-child {
  max-width: 28ch;
  align-self: end
}

/* #section_6 */
#section_6 {
  display: flex;
  position: relative;
  color: var(--color-primary);
  background-color: #f2eee7;
  overflow: hidden;
}
#section_6 .full-height {
  align-self: end;
  min-height: 100vh;
  height: fit-content;
  width: 100%;
}
#section_6 .sr-bg {
  position: absolute;
  width: 79.5vw;
  height: 100%;
  top: 0;
  right: -1.5vw;
  pointer-events: none;
}
#section_6 #SR_bg {
  height: 100%;
}
.mid-grad-ring {
  width: 73.240px;
  height: 73.240px;
  border-radius: 50%;
  background-image: conic-gradient(from 270deg, #ff4400 20%, #7426b4 40%, #0092f4 55%, #34bbec 65%, #73be2d, #dfc202 85%, #f88e31, #ff4800)
}
#section_6 .title-copy {
  align-self: end;
}
#section_6 .sr-2025-anchor {
  color: var(--color-primary)
}
#section_6 #read_our_sustainability_report_2025 {
  width: auto;
  margin-block-end: 4rem;
}
#section_6 #read_our_sustainability_report_2025 #trigger {
  cursor: pointer;
  fill-opacity: 0;
}
#section_6 :where(.title, .s-report, .s-plan) {
  color: var(--color-primary);
}
#section_6 .pane {
  padding-block-end: 2rem;
}
#section_6 .reports-root-cta {
  margin-block: 0;
  text-transform: uppercase;
  cursor: pointer;
}
#section_6 .reports-ctas {
  max-height: 0;
  overflow: hidden;
  margin-block-start: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.25s ease max-height, 0.25s ease opacity, 0.25s ease transform, 0.25s ease margin-block-start;
}
#section_6 .reports-ctas.visible {
  opacity: 1;
  transform: translateY(0);
  margin-block-start: 2rem;
}
#section_6 .cta:last-child {
  margin-block-start: .25rem;
}
#section_6 :where(.s-report, .s-plan) {
  text-decoration: underline;
}
#section_6 .scroll-up {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: end;
  height: fit-content;
  gap: 1vw;
}
#section_6 .scroll-up .scroll-up-cta {
  margin-bottom: 0;
  cursor: pointer;
  text-transform: uppercase;
}
#section_6 .scroll-up-icon {
  /* width: 2rem; */
  width: 1.75vw;
  cursor: pointer;
}

@media (max-width: 1399px) {

  :root {
    --page-tb-padding-1: 2rem;
    --page-tb-padding-2: 3rem;
    --page-lr-padding: 4rem;
  }

}

/* Tablets: Landscape */
@media screen and (min-width: 744px) and (max-width: 1366px) and (orientation: landscape) {
  #section_6 .sr-bg {
    width: 65vw;
    height: auto;
    top: 8vh;
    right: 0;
  }
  #section_6 #SR_bg {
    width: 100%;
    overflow: visible;
  }
  #section_6 #read_our_sustainability_report_2025 {
    margin-block-end: 3rem;
  }
  #section_6 .pane {
    padding-block-end: 1rem;
  }
  #section_6 .reports-ctas.visible {
    margin-block-start: 1rem;
  }
  #section_6 .fs-4 {
    font-size: 1rem !important
  }
}

/* Tablets: Portrait */
@media screen and (min-width: 744px) and (max-width: 1366px) and (orientation: portrait) {
  #section_3.section {
    height: 100%;
  }
  #section_3 .section-wrapper.full-height {
    height: auto;
    min-height: auto;
  }
  #section_3 .desktop {
    display: none;
  }
  #section_3 .mobile {
    display: block;
  }

  /* section 5 */
  #section_5 .wrapper {
    gap: 2rem;
    height: fit-content;
    max-height: 100vh;
    display: grid !important;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 1fr;
    width: 100%;
    justify-items: center;
  }
  #section_5 figure {
    display: flex;
    position: absolute;
    height: auto;
    width: 75%;
    top: 50%;
    left: unset;
    transform: translateY(-50%);
  }
  #section_5 svg {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  #section_5 .title-copy:first-child {
    justify-self: start;
  }
  #section_5 .title-copy:last-child {
    justify-self: end;
  }
  #section_5 .title-copy:first-child h3 {
    max-width: 37vw;
  }

  /* section 6 */
  #section_6 {
    flex-direction: column;
  }
  #section_6.full-height {
    min-height: auto;
    height: auto
  }
  #section_6 .section-wrapper.full-height {
    flex-direction: column;
    min-height: unset;
  }
  #section_6 .sr-bg {
    position: relative;
    width: 100%;
    inset: unset;
    display: flex;
    padding-block: 6rem;
    justify-content: center;
  }
  #section_6 #SR_bg {
    width: 90%;
    overflow: visible;
  }
  #section_6 .pane.title-copy {
    align-self: start;
    width: 100%;
  }
  #section_6 .fs-4 {
    font-size: 1rem !important
  }
}

@media (max-width: 1199px) {
  :root {
    --page-tb-padding-1: 1.5rem;
    --page-tb-padding-2: 2.5rem;
    --page-lr-padding: 3.5rem;
  }

  /* global */
  .icon {
    font-size: 1.25rem;
  }

  .fs-35 {
    line-height: 1.2
  }

  /* section_2 */
  .timeline-container .item:not(:last-child) {
    padding-bottom: 0.5rem;
  }
  .timeline-container .item:not(:first-child) {
    padding-top: 0.5rem;
  }
  .sub-item {
    padding-top: .5rem;
  }
  #section_2 .graph {
    width: 100%;
  }

  /* section_3 */
  #section_3 .pane:last-child {
    display: flex;
    height: 100%;
  }

  /* section_4 */
  #section_4 .pane.d-grid {
    height: 100%;
    align-items: center;
  }
  #section_4 svg {
    width: 75%;
  }

  #section_2.full-height, #section_2 .full-height {
    width: 100%;
    height: auto;
  }
  #section_2 .graph {
    max-width: 110%;
  }
  #section_6 .scroll-up {
    gap: 0.5rem;
  }
}

@media (max-width: 1024px) {
  .fs-35 {
    font-size: 1rem !important;
    line-height: 1.2
  }
}


/* Mobile Tablet */
@media (max-width: 743px) {
  :root {
    --page-tb-padding-1: 1rem;
    --page-tb-padding-2: 2rem;
    --page-lr-padding: 2rem;
  }
  html, body {
    min-height: 100lvh;
    min-height: -webkit-fill-available;
  }
  main {
    min-width: 100vw;
    width: 100%;
    min-height: 100lvh;
    height: auto;
    overflow-x: clip;
  }
  .icon {
    font-size: 2rem;
  }
  .full-height {
    min-height: 100lvh;
    height: 100lvh;
  }
  #section_2.full-height, #section_2 .full-height {
    min-height: 1000px;
  }


  /* font-sizes */
  .fs-1 {
    font-size: 2.25rem !important;
    line-height: 1.1;
  }
  .fs-2 {
    font-size: 1.75rem !important;
    line-height: 1;
  }
  .fs-3 {
    font-size: 1.25rem !important;
    line-height: 1.2;
  }
  .fs-35 {
    font-size: 1rem !important;
    line-height: 1.2
  }
  .fs-4 {
    font-size: 0.75rem !important;
  }
  .fs-6 {
    font-size: min(6.5rem, 4.85vw) !important;
  }
  .fs-body-tiny {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .fs-body-1 {
    font-size: 0.65rem;
  }
  .fs-body-2 {
    font-size: 0.85rem;
    line-height: 1.25;
  }
  .fs-huge {
    font-size: 6rem;
  }

  /* section_1 */
  #section_1 .section-wrapper {
    background-position-x: 1.75%;
    padding-bottom: 3rem;
  }
  #section_1 .section-wrapper .wrapper {
    flex-direction: column;
    justify-content: end !important;
    align-items: end;
    gap: 1rem;
    max-height: 100svh;
    height: 100svh;
    /* margin-bottom: 7rem; */
  }
  #section_1 .title-copy {
    max-width: 15ch;
    margin-bottom: 0;
    align-self: flex-start;
  }
  #section_1 .scroll-down {
    margin-top: 3rem;
  }

  /* section_2 */
  #section_2 .section-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column-reverse !important;
  }
  .timeline-container .title {
    align-self: end;
    padding-bottom: 0.125rem;
  }
  .timeline-container .item-container {
    margin-top: 0.125rem;
  }
  .timeline-container .item:not(:last-child) {
    padding-bottom: 0.125rem;
  }
  .timeline-container .item:not(:first-child) {
    padding-top: 0.125rem;
  }
  .sub-item {
    max-width: 22ch;
    padding-top: 0.25rem;
  }
  .item:last-child .sub-item {
    max-width: 14.75rem;
  }
  .item .sub-copy {
    line-height: 1.15;
  }

  #section_2 .pane:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #section_2 .graph {
    width: 100%;
  }

  /* section_3 */
  #section_3 .full-height, #section_3.full-height {
    min-height: 920px;
  }
  #section_3 .pane:last-child {
    margin-block: auto;
  }
  #section_3 .desktop {
    display: none;
  }
  #section_3 .mobile {
    display: block;
  }

  /* section_4 */
  #section_4 .title-copy {
    max-width: 26ch;
  }
  #section_4 .pane.d-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin-block: auto;
  }
  #section_4 svg {
    margin-block: auto;
    width: 100%;
  }
  #section_4 .cta {
    gap: 0.5rem;
  }
  #section_4 .angle-right-icon {
    width: 1rem;
    padding: 0.075rem;
  }

  /* section 5 */
  #section_5.full-height, #section_5 .full-height {
    min-height: 100vh;
    height: 100%;
  }
  #section_5 .wrapper {
    align-self: center;
    flex-direction: column;
    height: 100%;
    gap: 1rem;
  }
  #section_5 figure {
    display: flex;
    position: absolute;
    height: auto;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #section_5 svg {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  #section_5 .title-copy:first-child h3 {
    max-width: 37ch;
  }

  /* section 6 */
  #section_6 {
    flex-direction: column;
  }
  #section_6.full-height, #section_6 .full-height {
    min-height: auto;
    height: auto;
  }
  #section_6 .section-wrapper {
    align-items: flex-end;
    flex-wrap: wrap;
    height: auto !important;
    min-height: auto !important;
  }

  #section_6,
  #section_6 .full-height {
    height: auto !important;
    min-height: auto !important;
  }
  #section_6 .sr-bg {
    position: relative;
    width: 100%;
    inset: unset;
    display: flex;
    padding-block: 6rem;
    justify-content: center;
  }
  #section_6 #SR_bg {
    width: 90%;
    overflow: visible;
  }
  #section_6 #SR_bg {
    height: auto;
    overflow: visible;
  }
  #section_6 .title-copy {
    align-self: auto;
    padding-bottom: 3rem;
  }
  #section_6 .pane:last-child {
    flex-direction: column;
  }
  #section_6 #read_our_sustainability_report_2025 {
    margin-block-end: 3rem;
  }
  #section_6 .pane:first-child {
    padding-block-end: 0;
  }
    #section_6 .pane:last-child {
    padding-block-end: 1rem;
  }
  #section_6 .reports-ctas.visible {
    margin-block-start: 1rem;
  }
  #section_6 .text-decoration-underline {
    text-decoration-thickness: 1px !important;
    text-underline-offset: 1px;
  }
  #section_6 .scroll-up {
    gap: 0.5rem;
    align-self: start;
    margin-block-start: 3rem;
  }
  #section_6 .scroll-up-icon {
    width: 1.175rem;
    margin-bottom: 1px;
  }
}

/* Mobile Landscape */
@media screen and (max-height: 500px) and (orientation: landscape) {
  #section_3 .desktop {
    display: block;
  }
  #section_3 .mobile {
    display: none;
  }
  #section_3.section, #section_4.section {
    height: auto;
  }
}

@media (max-aspect-ratio: 768/1024) {
  #section_5 figure {
    width: 65%;
  }
}

@media (max-aspect-ratio: 356/780) {
  #section_5 figure {
    width: 70%;
  }
}

@media (min-aspect-ratio: 21/10.5) {
  .timeline-container .title {
    padding-bottom: 1rem;
  }
  .timeline-container .item-container {
    margin-top: 1rem;
  }
  .timeline-container .item:not(:last-child) {
    padding-bottom: .5rem;
  }
  .timeline-container .item:not(:first-child) {
    padding-top: .5rem;
  }
  .sub-item {
    padding-top: .5rem;
  }

  #section_4 svg {
    width: 49%;
  }
}