/* 
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
main {
  overflow: visible;
}
main .container {
  overflow: visible !important;
}
main .content {
  padding-top: 3rem;
}

.dark-long-read.single main .content .entry-tag a, .dark-long-read.single .layout .content .entry-tag a {
  color: #86bc25;
}

#scrolly-container {
  position: relative;
}
#scrolly-container .section-container {
  margin-bottom: 50vh;
  position: relative;
  z-index: 1;
}
#scrolly-container .section-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #191919;
  border-top: 1px solid #86bc25;
  z-index: -1;
}
#scrolly-container .section-container:first-of-type {
  margin-bottom: -100vh;
  padding-bottom: 50vh;
}
#scrolly-container .section-container:first-of-type:before {
  border-top: none;
}
#scrolly-container .section-container:first-of-type .scrolly-content {
  padding-bottom: 50vh;
}
#scrolly-container .sticky-container-position {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  margin-bottom: -50vh;
}
#scrolly-container .sticky-container {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
#scrolly-container .sticky-container .sticky-item {
  width: 100%;
  height: 100%;
  max-height: 55%;
  max-width: 75%;
  position: relative;
}
@media (min-width: 1441px) {
  #scrolly-container .sticky-container .sticky-item {
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item {
    max-width: 85vw;
  }
}
#scrolly-container .sticky-container .sticky-item .stat {
  position: absolute;
  text-align: center;
  font-weight: 700;
  opacity: 0;
}
#scrolly-container .sticky-container .sticky-item .sticky-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#scrolly-container .sticky-container .sticky-item .label {
  position: absolute;
  bottom: calc(100% + 1.5rem);
  left: 0;
  width: 75%;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition-delay: 0s;
}
@media (max-width: 1024px) {
  #scrolly-container .sticky-container .sticky-item .label {
    font-size: 2rem;
    width: 80%;
  }
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .label {
    font-size: 1.8rem;
    width: 100%;
  }
}
#scrolly-container .sticky-container .sticky-item .label.active {
  opacity: 1;
  transition-delay: 0.5s;
}
#scrolly-container .sticky-container .sticky-item .label[data-section="5"], #scrolly-container .sticky-container .sticky-item .label[data-section="6"], #scrolly-container .sticky-container .sticky-item .label[data-section="7"] {
  width: 100%;
}
#scrolly-container .sticky-container .sticky-item .legend {
  position: absolute;
  z-index: 4;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: 700;
  bottom: calc(var(--bottom-position) * 1%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  transition-delay: 0s;
  margin-bottom: 2.5rem;
  padding-bottom: 0.2rem;
}
@media (max-width: 1024px) {
  #scrolly-container .sticky-container .sticky-item .legend {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .legend {
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}
#scrolly-container .sticky-container .sticky-item .legend.invisible {
  opacity: 0;
}
#scrolly-container .sticky-container .sticky-item .legend .legend-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#scrolly-container .sticky-container .sticky-item .legend .legend-lines:before {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  height: calc(50% + 2.5rem);
  width: 2rem;
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .legend .legend-lines:before {
    height: calc(50% + 1.5rem);
  }
}
#scrolly-container .sticky-container .sticky-item .legend .legend-lines:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #191919;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  transition: opacity 0.2s ease-in-out;
  transition-delay: calc(var(--stat-delay) * 0.016s + 0.15s);
}
#scrolly-container .sticky-container .sticky-item .legend .legend-text {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: opacity 0.2s ease-in-out;
  transition-delay: calc(var(--stat-delay) * 0.016s + 0.2s);
  line-height: 1.2;
  font-size: 3.2rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  #scrolly-container .sticky-container .sticky-item .legend .legend-text {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .legend .legend-text {
    font-size: 2rem;
  }
}
#scrolly-container .sticky-container .sticky-item .legend .legend-text:after {
  content: "%";
  vertical-align: 1px;
  font-size: 0.6em;
  font-weight: 400;
}
#scrolly-container .sticky-container .sticky-item .legend .legend-text .legend-text-in {
  font-size: 0.8em;
  font-weight: 400;
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=from-point] {
  left: 2rem;
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=from-point] .legend-lines:before {
  right: 100%;
  border-left: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
  border-top-left-radius: 20px;
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=from-point] .legend-text:before {
  content: "TODAY";
  font-size: 1.6rem;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  position: absolute;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .legend[data-type=from-point] .legend-text:before {
    font-size: 1.2rem;
    margin-left: 0.5rem;
  }
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=to-point] {
  right: 2rem;
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=to-point] .legend-lines:before {
  left: 100%;
  border-right: 1px solid #f5f5f5;
  border-top: 1px solid #f5f5f5;
  border-top-right-radius: 20px;
}
#scrolly-container .sticky-container .sticky-item .legend[data-type=to-point] .legend-text:before {
  content: "IN 5 YEARS";
  font-size: 1.6rem;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  position: absolute;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  #scrolly-container .sticky-container .sticky-item .legend[data-type=to-point] .legend-text:before {
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
}
#scrolly-container .scrolly-content {
  position: relative;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}
#scrolly-container .scrolly-content .scrolly-item {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#scrolly-container .scrolly-content .scrolly-item .item-content {
  font-size: 2rem;
  padding: 1.4rem 2.4rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  border-radius: 12px;
  display: inline-block;
  color: #191919 !important;
  overflow: hidden;
  max-width: 40rem;
  text-align: center;
  border: 1px solid #191919;
  box-shadow: 0 0 30px 0 rgba(25, 25, 25, 0.2);
}
#scrolly-container .scrolly-content .scrolly-item .item-content b {
  font-weight: 700;
}
@media (max-width: 1024px) {
  #scrolly-container .scrolly-content .scrolly-item .item-content {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #scrolly-container .scrolly-content .scrolly-item .item-content {
    font-size: 1.6rem;
  }
}
#scrolly-container .scrolly-content .scrolly-item .item-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  z-index: -1;
  backdrop-filter: blur(10px);
}
#scrolly-container ~ .group-deloitte {
  background-color: #cde0a2;
  color: #191919;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
}
#scrolly-container ~ .group-deloitte > * {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#scrolly-container ~ .group-deloitte p {
  font-size: 1.8rem;
  text-align: left;
  color: #191919;
}
#scrolly-container ~ .group-deloitte p.cta-deloitte {
  font-weight: 700;
  margin: 0;
  margin-top: 3rem;
}
#scrolly-container ~ .group-deloitte p.cta-deloitte a {
  margin: 0;
  border: 1px solid #191919;
  background-color: #191919;
  color: #cde0a2;
  padding: 1rem 2rem;
  border-radius: 2.4rem;
  font-weight: 700;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  font-family: "sofia-pro";
  transition: all 0.2s ease-in-out;
}
#scrolly-container ~ .group-deloitte p.cta-deloitte a:hover {
  background-color: #cde0a2;
  color: #191919;
  border-color: #191919;
}
#scrolly-container ~ .group-deloitte h2 {
  color: #191919;
}
#scrolly-container ~ .group-deloitte ~ .bottom-image-deloitte {
  margin-top: 4rem;
}

#scrolly-container .section-container .sticky-item .sticky-fill .stat.column {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  transition-delay: 0s;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .dot-chart {
  position: absolute;
  z-index: 5;
  bottom: calc(var(--stat-position) * 1%);
  transform: translate(-50%, 50%) scale(0);
  transition: transform 0.8s ease-in-out;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background-color: #86bc25;
  border: 1px solid white;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .dot-chart.from-point {
  left: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .dot-chart.to-point {
  left: 100%;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .dot-chart.animate-in {
  transform: translate(-50%, 50%) scale(1);
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .dot-chart.instant {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .line-chart {
  position: absolute;
  left: 0;
  bottom: calc(var(--from-point) * 1%);
  width: 0%;
  height: 3px;
  background-color: #86bc25;
  transform-origin: left center;
  transform: translate(0, 50%) rotate(calc(var(--line-angle) * 1deg));
  transition: transform 1.2s ease-in-out, width 1.5s ease-in-out;
  z-index: -1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .line-chart.animate-in {
  width: 100%;
  transition: transform 0.8s ease-in-out, width 1.6s ease-in-out;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .line-chart.animate-in.animate {
  width: calc(var(--line-length) * 1px);
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .line-chart.instant {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.line .line-chart.instant.animate-in {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie {
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0s;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 80vw;
  max-width: 42rem;
  border-radius: 50%;
  border: 1px solid #191919;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  line-height: 1;
  border-radius: 50%;
  background-color: #191919;
  color: white;
  font-weight: 700;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number {
    font-size: 8rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115%;
  height: 115%;
  background-color: #191919;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--donut-color);
  transition: border 0.2s ease-in-out;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin-top: -2rem;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text {
    margin-top: -1rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom {
  position: absolute;
  font-size: 0.2em;
  white-space: nowrap;
  font-weight: 600;
  line-height: 0;
  text-align: center;
  width: 100%;
  left: 0;
  right: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top.left, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom.left {
  right: initial;
  text-align: left;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top.right, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom.right {
  left: initial;
  text-align: right;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top.stat-number-text-top, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom.stat-number-text-top {
  top: 0;
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top.stat-number-text-top, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom.stat-number-text-top {
    top: 0;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-top.stat-number-text-bottom, #scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-bottom.stat-number-text-bottom {
  bottom: -0.8em;
  transform: translateY(100%);
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .stat-number .stat-number-text .stat-number-text-in {
  font-size: 0.8em;
  font-weight: 400;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .donut {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 50%;
  background-color: var(--donut-color);
  transition: background-color 0.2s ease-in-out;
  clip-path: polygon(50% 50%, 50% 0%, 50% 0%);
  --donut-percentage: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.pie .pie-chart .donut-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--donut-color);
  transition: background-color 0.2s ease-in-out;
  opacity: 0.2;
  border-radius: 50%;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column {
  height: 100%;
  width: calc(33.33% - 0.5rem);
  z-index: 4;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 1;
  overflow: hidden;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column[data-section="7"] {
  width: calc(50% - 0.25rem) !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column[data-section="7"].bar-2 {
  left: calc(50% + 0.25rem);
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.2rem;
}
@media (max-width: 1024px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.5rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend.invisible {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-lines:before {
  content: "";
  position: absolute;
  bottom: -2rem;
  top: initial;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #f5f5f5;
  height: var(--show-before, 0rem);
  transition: height 0.21s ease-in-out;
  transition-delay: calc(var(--stat-delay) * 0.016s);
}
@media (max-width: 1024px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-lines:before {
    bottom: -1.5rem;
  }
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-lines:before {
    bottom: -1rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-lines:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #191919;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  opacity: var(--show-after, 0);
  transition: opacity 0.2s ease-in-out;
  transition-delay: calc(var(--stat-delay) * 0.016s + 0.15s);
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .legend .legend-text {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  line-height: 1;
  transition: opacity 0.2s ease-in-out;
  transition-delay: calc(var(--stat-delay) * 0.016s + 0.2s);
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-1 {
  left: 0;
  bottom: 0;
  z-index: 3;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-1 .column-line {
  background-color: #86bc25;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-1-b {
  left: 0;
  bottom: 0;
  z-index: 2;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-1-b .column-line {
  background-color: #cde0a2;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-1-c {
  left: 0;
  bottom: 0;
  z-index: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-2 {
  left: calc(33.33% + 0.25rem);
  bottom: 0;
  z-index: 2;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-2 .column-line {
  background-color: #897dc8;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-3 {
  left: calc(66.66% + 0.5rem);
  bottom: 0;
  z-index: 2;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.bar-3 .column-line {
  background-color: #e67661;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column .column-line {
  border-top: 1px solid #191919;
  left: 0;
  width: 0%;
  height: 0%;
  position: relative;
  bottom: 0;
  display: block;
  transition: height 0.015s ease-in-out calc(var(--data-index) * 0.015s), width 0.2s ease-in-out calc(var(--data-index) * 0.015s);
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.instant .column-line {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.instant .legend {
  opacity: 1 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.instant .legend .legend-lines:before, #scrolly-container .section-container .sticky-item .sticky-fill .stat.column.instant .legend .legend-lines:after {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.instant .legend .legend-text {
  transition: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .column-line {
  opacity: 1;
  height: 1%;
  width: 100%;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .legend {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .legend .legend-lines {
  --show-before: 2rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .legend .legend-lines:after {
  --show-after: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .legend .legend-text {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill .stat.column.active .legend.invisible {
  opacity: 0 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill .y-axis {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#scrolly-container .section-container .sticky-item .sticky-fill .y-axis:before {
  content: "100";
  position: absolute;
  top: 0;
  right: calc(100% + 1rem);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-align: right;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .y-axis:before {
    font-size: 0.8rem;
    right: calc(100% + 0.5rem);
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .y-axis:after {
  content: "0";
  position: absolute;
  bottom: 0;
  right: calc(100% + 1rem);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-align: right;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .y-axis:after {
    font-size: 0.8rem;
    right: calc(100% + 0.5rem);
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .y-axis .y-axis-span {
  position: absolute;
  right: 0;
  font-weight: 700;
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
  opacity: 0.2;
}
#scrolly-container .section-container .sticky-item .sticky-fill.pie .y-axis {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.pie .stat.line, #scrolly-container .section-container .sticky-item .sticky-fill.pie .stat.columns {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .y-axis, #scrolly-container .section-container .sticky-item .sticky-fill.columns .y-axis {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .stat.pie, #scrolly-container .section-container .sticky-item .sticky-fill.columns .stat.pie {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .legend, #scrolly-container .section-container .sticky-item .sticky-fill.columns .legend {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill.columns .stat-number-text {
  display: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill.columns .bottom-legend-lines {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend {
    font-size: 1.4rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend .bottom-legend-label {
  font-size: inherit;
  font-weight: 700;
}
#scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend-lines {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 1;
}
@media (max-width: 768px) {
  #scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend-lines {
    font-size: 1.6rem;
  }
}
#scrolly-container .section-container .sticky-item .sticky-fill .bottom-legend-lines .bottom-legend-label {
  font-size: inherit;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line {
  transition-delay: 0.2s;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .bottom-legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .legend[data-label="2"][data-section="1"] .legend-text:after, #scrolly-container .section-container .sticky-item .sticky-fill.line .legend[data-label="1"][data-section="2"] .legend-text:after {
  content: "%";
  font-size: 0.6em;
  font-weight: 400;
  vertical-align: 1px;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line .stat {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="2"][data-section="1"] .stat[data-label="2"], #scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="2"][data-section="1"] .bottom-legend-lines .bottom-legend-label[data-label="2"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="3"][data-section="1"] .stat[data-label="3"], #scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="3"][data-section="1"] .bottom-legend-lines .bottom-legend-label[data-label="3"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="1"][data-section="2"] .stat.line, #scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="1"][data-section="2"] .bottom-legend-lines .bottom-legend-label[data-label="1"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill.line[data-label="1"][data-section="2"].no-legend .bottom-legend-lines {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill.pie {
  transition-delay: 0.6s;
}
#scrolly-container .section-container .sticky-item .sticky-fill.pie .stat.pie {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].columns .stat.line {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].columns .stat.columns.bar-1, #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].columns .stat.columns.bar-1-b {
  opacity: 1;
  clip-path: circle(150% at 0% 45%);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].columns .stat.line .legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].line .stat.columns.bar-1, #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].line .stat.columns.bar-1-b {
  opacity: 1 !important;
  clip-path: circle(0% at 0% 45%);
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].line .stat.columns.bar-2, #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].line .stat.columns.bar-3 {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"].line .stat.line .legend {
  opacity: 1;
  transition-delay: 0.2s;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"] .stat.line[data-label="3"] .dot-chart, #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"] .stat.line[data-label="3"] .line-chart {
  background-color: #e67661;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"] .legend[data-section="1"][data-label="3"] .legend-text:after {
  display: none !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"][data-label="2"] ~ .label:not([data-label="2"]), #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"][data-label="3"] ~ .label:not([data-label="2"]) {
  opacity: 0 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"][data-label="2"] ~ .label[data-label="2"], #scrolly-container .section-container .sticky-item .sticky-fill[data-section="1"][data-label="3"] ~ .label[data-label="2"] {
  opacity: 1 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .stat {
  width: 100% !important;
  pointer-events: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .stat.bar-1 .column-line {
  background-color: #e67661 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .stat.bar-1-b .column-line {
  background-color: #e7ac9e !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .stat.bar-1-c .column-line {
  background-color: #edc5bb !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .bottom-legend {
  display: block !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-type=bar-1] {
  left: 25% !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-type=bar-1] .legend-text:before {
  display: block !important;
  content: "Organisations";
  font-size: 0.5em;
  font-weight: 400;
  position: absolute;
  left: 50%;
  text-align: center;
  top: initial;
  bottom: 100%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-type=bar-1-b] .legend-text:after {
  display: block !important;
  content: "Leaders";
  font-size: 0.5em;
  font-weight: 400;
  position: absolute;
  left: 50%;
  text-align: center;
  top: initial;
  bottom: 100%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-type=bar-1-c] {
  left: 75% !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-type=bar-1-c] .legend-text:after {
  display: block !important;
  content: "HR leaders";
  font-size: 0.5em;
  font-weight: 400;
  position: absolute;
  left: 50%;
  text-align: center;
  top: initial;
  bottom: 100%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-section="3"] {
  pointer-events: all;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .legend[data-section="3"] .legend-lines:before {
  display: none !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .long-line {
  position: absolute;
  width: 3px;
  height: 0%;
  bottom: var(--show-before, 0%);
  background-color: #f5f5f5;
  border-left: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: translateX(-50%);
  transition: height 0.2s ease-in-out;
  transition-delay: calc(var(--bottom-position) * 0.016s + 0.15s);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .long-line.bar-1 {
  left: 25%;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .long-line.bar-1-b {
  left: 50%;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .long-line.bar-1-c {
  left: 75%;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="3"] .long-line.active {
  height: calc(25% - var(--show-before, 0%) + 2rem);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="4"].pie .bottom-legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="4"].columns .stat.pie {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="4"].intro:not(.pie) .y-axis {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="4"].intro:not(.pie) + .label {
  opacity: 1 !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] {
  width: 100% !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1] {
  margin-bottom: 0;
  bottom: initial;
  top: 29%;
  transform: translateX(-100%);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1] .legend-text:before {
  content: "Already in place";
  text-transform: uppercase;
  position: absolute;
  left: 100%;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  max-width: 14rem;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  font-size: 0.4em;
  margin-left: 0.5rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1] .legend-lines:before {
  display: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1-b] {
  margin-bottom: 0;
  bottom: 74%;
  transform: translateX(-100%);
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1-b] .legend-lines:before {
  display: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1-b] .legend-text:before {
  content: "expect to implement soon";
  text-transform: uppercase;
  position: absolute;
  left: 100%;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  max-width: 14rem;
  background-color: rgba(25, 25, 25, 0.8);
  color: white;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  font-size: 0.4em;
  margin-left: 0.5rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"] .legend[data-type=bar-1-b] .legend-text:after {
  content: "%";
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .stat.columns[data-label="1"].bar-1-b .column-line {
  background-color: #897dc8;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"].columns .bottom-legend {
  gap: 0.5rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="1"] .stat.columns[data-label="1"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="1"] .stat.columns[data-label="2"] {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="1"] .bottom-legend {
  grid-template-columns: 1fr !important;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="1"] .bottom-legend .bottom-legend-label:not([data-stat="73,bar-1"]) {
  display: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="2"] .stat.columns[data-label="2"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="2"] .stat.columns[data-label="1"] {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="5"][data-label="2"] .bottom-legend .bottom-legend-label[data-stat="73,bar-1"] {
  display: none;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].line .stat.line {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].line .stat.pie {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].line .legend .legend-text:after {
  content: "%";
  vertical-align: 1px;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].line .bottom-legend-lines {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].line .bottom-legend-lines .bottom-legend-label {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].pie .stat.pie {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="6"].pie .stat.line {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].columns .stat.columns {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].columns .stat.pie {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].columns .bottom-legend {
  grid-template-columns: 1fr 1fr !important;
  gap: 0.5rem;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].pie .stat.pie {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].pie .stat.columns {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].pie .bottom-legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="7"].pie .y-axis {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].pie .stat.pie {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].pie .stat.line {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].pie .bottom-legend {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line .stat.line {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line .stat.line .legend .legend-text:after {
  content: "%";
  vertical-align: 1px;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line .stat.pie {
  opacity: 0;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="1"] .stat.line[data-label="1"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="1"] .bottom-legend-lines {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="1"] .bottom-legend-lines .bottom-legend-label[data-label="1"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="2"] .stat.line[data-label="2"] {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="2"] .dot-chart, #scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="2"] .line-chart {
  background-color: #e67661;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="2"] .bottom-legend-lines {
  opacity: 1;
}
#scrolly-container .section-container .sticky-item .sticky-fill[data-section="8"].line[data-label="2"] .bottom-legend-lines .bottom-legend-label[data-label="2"] {
  opacity: 1;
}

.preview-internal {
  display: none !important;
}

#scroll-back-up-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(25, 25, 25, 0.9);
  color: white;
  appearance: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(25, 25, 25, 0.3);
}
#scroll-back-up-button.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
#scroll-back-up-button:hover {
  background-color: rgba(134, 188, 37, 0.9);
  box-shadow: 0 6px 25px rgba(25, 25, 25, 0.4);
}
#scroll-back-up-button:hover .scroll-arrow {
  transform: translateY(-2px);
}
#scroll-back-up-button .progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
#scroll-back-up-button .progress-circle .progress-bg {
  stroke: rgba(255, 255, 255, 0.2);
}
#scroll-back-up-button .progress-circle .progress-bar {
  stroke: #86bc25;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s ease-out;
}
#scroll-back-up-button .scroll-arrow {
  width: 24px;
  height: 24px;
  color: white;
  transition: transform 0.2s ease-in-out;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #scroll-back-up-button {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  #scroll-back-up-button .scroll-arrow {
    width: 20px;
    height: 20px;
  }
}

@keyframes scroll-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
#scroll-down-animation {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
  visibility: visible;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  background-color: rgba(245, 245, 245, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 245, 245, 0.5);
  color: #191919;
}
#scroll-down-animation.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
#scroll-down-animation .mouse {
  width: 28px;
  height: 48px;
  border: 2px solid #f5f5f5;
  border-radius: 14px;
  position: relative;
}
@media (max-width: 768px) {
  #scroll-down-animation .mouse {
    width: 20px;
    height: 36px;
    border-radius: 5px;
    border-width: 1px;
  }
}
#scroll-down-animation .scroller {
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background-color: #f5f5f5;
  position: absolute;
  left: 50%;
  margin-left: -2px;
  top: 8px;
  animation: scroll-animation 1.5s ease-in-out infinite;
}
@media (max-width: 768px) {
  #scroll-down-animation .scroller {
    width: 2px;
    height: 8px;
    border-radius: 1px;
    top: 6px;
    margin-left: -1px;
  }
}
#scroll-down-animation .scroll-down-animation-text span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #f5f5f5;
  line-height: 1;
}
@media (min-width: 769px) {
  #scroll-down-animation:hover {
    background-color: rgba(245, 245, 245, 0.2);
  }
}