:root {
  --max-width: 1200px;
  
  --primary-black: #000;
  --primary-grey-text: #555;
  --primary-grey-medium: #AAA;
  --primary-grey: #CCC;
  --primary-grey-ultralight: #EEE;
  --primary-white: #FFF;
  
  --primary-red: #AD003D;
  --secondary-red: #E0004F;
  --secondary-dark-blue: #064E60;
  --secondary-medium-blue: #077894;
  --secondary-light-blue: #16B8E0;
  --secondary-green: #00E000;
  --secondary-gold: #E0CF16;

  --shadow: #252a7d;
  
  font-size: 62.5%;
}

.no-transition * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/* Resets */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
}

p {
  margin: 2rem 0;
  padding: 0;
  font-size: 1.75rem;
  line-height: 2.5rem;
}

ul {
  margin: 3rem;
  padding: 0;
  font-size: 1.75rem;
  line-height: 2.5rem;
}
ul li {
  margin-bottom: 1.5rem;
}

/* Defaults */
html {
  overflow-x: hidden;
}
body {
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: 'Gudea', sans-serif;
  font-size: 1.6rem;
}

h2 {
  position: relative;
  margin: 7rem 0;
  font-size: 4rem;
  text-align: center;
}

h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0 2rem;
}

a {
  border-radius: 0.5rem;
  color: var(--secondary-dark-blue);
  font-weight: 700;
}
a:hover {
  color: var(--secondary-medium-blue);
}

a:focus {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.75rem;
}

button, a.button {
  display: inline-block;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background: var(--primary-black);
  border: 1px solid var(--secondary-red);
  color: var(--primary-white);
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-decoration: none;
  cursor: pointer;
  outline: 0 solid var(--secondary-red);
  transition: 0.2s;
}

button:hover, a.button:hover {
  background: var(--secondary-red);
}

button:focus, a.button:focus {
  background: radial-gradient(var(--primary-red) 63%, var(--secondary-red) 95%);
  box-shadow: inset 0px 2px 5px #252a7d;
}

button:focus, a.button:focus {
  outline: 0.2rem solid var(--secondary-red);
  outline-offset: 0.75rem;
}

button.simple {
  background: transparent;
  border: 0;
  color: currentColor;
}

/* Utility */
strong, .bold {
  font-weight: 700;
}
.centered {
  text-align: center;
}
.margin-tight {
  margin: 5rem 0 3rem;
}
.padding-large {
  padding: 0 10%;
}
.padding-vertical-large {
  padding-top: 3%;
  padding-bottom: 3%;
}
@media (min-width: 70rem) {
  .padding-large {
    padding: 0 25%;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
.font-size-xsm {
  font-size: 1.25rem;
}
@media (min-width: 70rem) {
  .font-size-lg {
    font-size: 3rem;
  }
}
.font-style-all-caps {
  text-transform: uppercase;
}


/* Flexbox Controls */
.flex {
  display: flex;
  flex-direction: column;
}
.flex.centered {
  justify-content: center;
}
.flex.spaced {
  justify-content: space-around;
}
@media (min-width: 70rem) {
  .flex {
    flex-direction: row;
  }
}
.flexed-item {
  flex: 1 1 auto;
  border-bottom: 1px dashed var(--primary-grey);
}
.flexed-item:last-child {
  border-bottom: 0;
}
@media (min-width: 70rem) {
  .flexed-item {
    border-bottom: 0;
    border-right: 1px dashed var(--primary-grey);
  }
  .flexed-item:last-child {
    border-right: 0;
  }
}



header {
  position: relative;
  z-index: 2;
}
header .header-background-dots {
  position: absolute;
  top: -10vw;
  left: 0;
  right: 0;
  z-index: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 70rem) {
  header .header-background-dots {
    top: -10vw;
  }
}
header .header-background-dots .st0 {
  opacity:0.2;
}
header .header-background-dots .st1 {
  fill:#00E000;
}
header .header-background-dots .st2 {
  opacity:0.3;
}
header .header-background-dots .st3 {
  fill:#16B8E0;
}
header .fixed-background {
  background: transparent;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: 0.2s;
}
header h1 {
  position: relative;
  z-index: 2;
  padding: 7vh 0 6%;
  text-align: center;
} 
@media (min-width: 70rem) {
  header h1 {
    padding: 5% 38%;
  } 
}
header h1 a {
  border-radius: 0.5rem;
  display: block;
  outline: 0 solid var(--secondary-red);
  transition: 0.2s;
}
header a:focus {
  outline: 0.2rem solid var(--secondary-red);
  outline-offset: 1rem;
}
header .header-logo {
  width: 275px;
}
header .header-logo .st0 { 
  fill:#E0004F; 
}
header .header-logo .st1{
  fill:#00E000;
}
header .header-logo .st2{
  fill:#16B8E0;
}
nav {
  position: absolute;
  z-index: 3;
  /* mix-blend-mode: difference; */
}
nav.primary {
  top: 0;
  left: 1rem;
  right: auto;
}
@media (min-width: 70rem) {
  nav.primary {
    top: 25%;
    left: 0;
  }
}

nav.secondary {
  top: 0;
  left: auto;
  right: 1rem;
}
@media (min-width: 70rem) {
  nav.secondary {
    top: 25%;
    left: auto;
    right: 0;
  }
}

button.circle, a.button.circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 7.5rem;
  height: 7.5rem;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  border: 1px solid var(--primary-grey-ultralight);
  color: var(--primary-black);
  cursor: pointer;
  backdrop-filter: saturate(180%) blur(10px);
  transform: scale(0.85);
}
@media (min-width: 70rem) {
  button.circle, a.button.circle {
    width: 8.5rem;
    height: 8.5rem;
    transform: scale(1);
  }
}
button.circle:hover, a.button.circle:hover  {
  background: var(--primary-grey-ultralight);
}
button.circle:focus, button.active, a.button.circle:focus {
  background: radial-gradient(var(--primary-grey-ultralight) 80%, var(--primary-grey-medium) 95%);
  box-shadow: inset 0px 1px 3px var(--primary-grey-text);
  outline: 0.2rem solid var(--secondary-red);
  outline-offset: 0.75rem;
}
button.circle span.bar, a.button.circle span.bar {
  position: relative;
  width: 3rem;
  height: 0.2rem;
  margin: 0.1rem 0;
  background: var(--primary-black);
  transform: rotate(0deg);
  transform-origin: 0 0;
  transition: 0.2s;
}
@media (min-width: 70rem) {
  button.circle span.bar, a.button.circle span.bar {
    width: 4rem;
  }
}
button.circle span.bar.bar-1 {
  top: 0;
  left: 0;
}
button.circle span.bar.bar-2 {
  top: 0;
  right: 0;
}
button.circle.active span.bar-1 {
  /* left: 0.2rem; */
  transform: rotate(29deg);
}
@media (min-width: 70rem) {
  button.circle.active span.bar-1 {
    transform: rotate(22deg);
  }

}
button.circle.active span.bar.bar-2 {
  /* right: 0.2rem; */
  transform: rotate(-29deg);
}
@media (min-width: 70rem) {
  button.circle.active span.bar.bar-2 {
    transform: rotate(-22deg);
  }
}
button.circle span.bar:before,
a.button.circle span.bar:before,
button.circle span.bar:after,
a.button.circle span.bar:after {
  content: "";
  position: absolute;
  top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--primary-black);
  border-radius: 50%;
  transition: 0.2s;
}
button.circle span.bar:before, a.button.circle span.bar:before {
  left: -0.3rem;
}
button.circle span.bar:after, a.button.circle span.bar:after {
  right: -0.3rem;
}

a.button.circle.donate {
  gap: 0.4rem;
}
a.button.circle span.bar.vertical {
  position: absolute;
  top: 1.4rem;
  left: 3.7rem;
  width: 2.4rem;
  height: 0.15rem;
  transform: rotate(90deg);
}
@media (min-width: 70rem) {
  a.button.circle span.bar.vertical {
    top: 1.6rem;
    left: 4.3rem;
    width: 2.9rem;
    height: 0.3rem;
  }
}
a.button.circle span.bar.vertical:before,
a.button.circle span.bar.vertical:after {
  top: -0.1rem;
  width: 0.5rem;
  height: 0.5rem;
}

a.button.circle span.donate-letter {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}
@media (min-width: 70rem) {
  a.button.circle span.donate-letter {
    font-size: 2.8rem;
  }
}
nav div {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  display: none;
  width: 24rem;
  background: white;
  border: 1px solid var(--primary-grey);
  border-radius: 1rem;
  opacity: 0;
  transition: 0.2s;
}
nav.visible div {
  display: block;
  opacity: 1;
}


nav ul {
  visibility: hidden;
  margin: 0;
  list-style: none;
  overflow: hidden;
  transition: 0.2s;
}
nav ul.visible {
  visibility: visible;
}
nav ul li {
  position: relative;
  margin: 0.5rem 0.5rem;
  padding: 0;
}
nav ul li a {
  display: block;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  text-decoration: none;
}
nav ul li a:hover {
  background: var(--primary-grey-ultralight);
}
nav ul li a:focus {
  outline-offset: -0.3rem;
}


main {
  padding: 0 2rem;
}
@media (min-width: 70rem) {
  main {
    padding: 0;
  }
}

main .sub-text {
  padding: 0rem 1rem 4rem;
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (min-width: 70rem) {
  main .sub-text {
    padding: 1rem 18rem;
    font-size: 2rem;
    line-height: 3.2rem;
  }
  main .sub-text:last-of-type {
    margin-bottom: 7rem;
  }
}
main .donate-button-container {
  padding: 4rem 2rem 4rem;
  text-align: center;
}

main .donate-button-container .donate-button img {
  max-width: 20rem;
}

footer {
  position: relative;
  margin: 10rem 0 0;
  padding: 0;
  border-top: 1px solid var(--primary-red);
  text-align: center;
}
@media (min-width: 70rem) {
  footer {
    margin: 10rem 0 0;
  }
}
@media (min-width: 76rem) {
  footer:before {
    content: " ";
    position: absolute;
    top: 23px;
    left: -62px;
    width: 71px;
    background: var(--primary-white);
    border-top: 1px solid var(--primary-red);
    transform: rotate(-41deg);
  }
  footer:after {
    content: " ";
    position: absolute;
    top: 23px;
    right: -62px;
    width: 71px;
    background: var(--primary-white);
    border-top: 1px solid var(--primary-red);
    transform: rotate(41deg);
  }
}
footer p {
  position: relative;
  top: -25px;
  display: inline-block;
  margin: 0;
  padding: 1rem 4rem;
  background: var(--primary-white);
  border-top: 1px solid var(--primary-red);
  color: var(--primary-grey-text);
}
footer p:before {
  content: " ";
  position: absolute;
  top: 7px;
  left: -21px;
  width: 37px;
  height: 37px;
  background: var(--primary-white);
  border-top: 1px solid var(--primary-red);
  transform: rotate(-41deg);
}
footer p:after {
  content: " ";
  position: absolute;
  top: 7px;
  right: -21px;
  width: 37px;
  height: 37px;
  background: var(--primary-white);
  border-top: 1px solid var(--primary-red);
  transform: rotate(41deg);
}
@media (min-width: 15rem) {
}

/* Custom Components */
h2.site-subtitle {
  margin: 0;
  padding: 4% 0;
  font-size: 3rem;
  line-height: 4rem;
}
@media (min-width: 70rem) {
  h2.site-subtitle {
    margin: 0 0 5rem;
    padding: 0;
    font-size: 4rem;
    line-height: 6rem;
  }
}
h2 strong.underline, h2 strong.overline {
  display: inline-block;
  position: relative;
}

h2 strong.underline:before {
  content: " ";
  position: absolute;
  bottom: 1rem;
  width: 100%;
  height: 4px;
  background: var(--primary-black);
}
@media (min-width: 70rem) {
  h2 strong.underline:before {
    bottom: 0rem;
    height: 6px;
  }
}

h2 strong {
  position: relative;
}

h2 .strikethrough-animation {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--primary-black);
}
h2 .strikethrough-animation.below {
  top: 100%;
}
h2 .strikethrough-animation.above {
  top: -5%;
}
@media (min-width: 70rem) {
  h2 .strikethrough-animation {
    display: inline-block;
  }
  h2 .strikethrough-animation.below {
    animation: strikeBelow 0.85s ease;
  }
  h2 .strikethrough-animation.above {
    animation: strikeAbove 0.85s ease;
  }
}

@keyframes strikeBelow {
  0% {
    top: 50%;
    width: 0%;
  }
  50% {
    top: 50%;
    width: 100%;
  }
  100% {
    top: 100%;
    width: 100%;
  }
}
@keyframes strikeAbove {
  0% {
    top: 50%;
    width: 0%;
  }
  50% {
    top: 50%;
    width: 100%;
  }
  100% {
    top: -5%;
    width: 100%;
  }
}

h2 strong.overline:before {
  content: " ";
  position: absolute;
  top: 1rem;
  width: 100%;
  height: 4px;
  background: var(--primary-black);
}
@media (min-width: 70rem) {
  h2 strong.overline:before {
    top: 0rem;
    height: 6px;
  }
}

.illustration {
  fill: var(--primary-grey-medium);
}

.email-illustration {
  width: 20rem;
  height: 20rem;
  margin: 0 auto;
  fill: var(--secondary-dark-blue);
}


.divider-container {
  position: relative;
  margin: 4rem 20px;
}
.divider-container:before {
  content: " ";
  position: absolute;
  top: -7px;
  left: -1px;
  right: 0;
  width: 22px;
  margin: 0 auto;
  border-top: 1px solid var(--primary-red);
  transform: rotate(-41deg);
}
.divider-container:after {
  content: " ";
  position: absolute;
  top: -7px;
  left: -1px;
  right: 0;
  width: 22px;
  margin: 0 auto;
  border-top: 1px solid var(--primary-red);
  transform: rotate(41deg);
}
.divider-container hr {
  position: relative;
  width: 50%;
  margin: 0;
  border: 0;
  overflow: visible;
}
.divider-container hr.right {
  margin: -16px -8px 0 auto;
  border-top: 1px solid var(--primary-red);
}
.divider-container hr.right:after {
  content: " ";
  position: absolute;
  top: -3.5px;
  right: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-red);
  border-radius: 50%;
}
.divider-container hr.left {
  margin: 0 auto 0 -8px;
  border-bottom: 1px solid var(--primary-red);
}
.divider-container hr.left:before {
  content: " ";
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-red);
  border-radius: 50%;
}

.cta-card {
  display: flex;
  gap: 0rem;
  padding: 2rem 2rem;
}
@media (min-width: 70rem) {
  .cta-card {
    flex: 0 1 50%;
    gap: 1rem;
  }
}
@media (min-width: 70rem) {
  .cta-card:nth-child(1) {
    padding: 2rem 4rem 4rem 0;
  }
  .cta-card:nth-child(2) {
    padding: 2rem 0 4rem 4rem;
  }
}
.cta-card .illustration-container {
  position: relative;
  flex: 0 0 16rem;
}
@media (min-width: 70rem) {
  .cta-card .illustration-container {
    flex: 0 0 14rem;
  }
}
.cta-card:nth-child(1) .illustration-container {
  margin-left: -12rem;
}
@media (min-width: 70rem) {
  .cta-card:nth-child(1) .illustration-container {
    margin-left: -6rem;
  }
}
.cta-card:nth-child(2) .illustration-container {
  order: 0;
  margin-left: -12rem;
  margin-right: 0;
}
.cta-card:nth-child(2) .copy {
  order: 1;
}
@media (min-width: 70rem) {
  .cta-card:nth-child(2) .illustration-container {
    order: 1;
    margin-right: -6rem;
    margin-left: 0;
  }
  .cta-card:nth-child(2) .copy {
    order: 0;
  }
}

.cta-card .chain-illustration .side-link{fill:none;stroke:var(--primary-grey-medium);stroke-miterlimit:1;}
.cta-card .chain-illustration .st1{fill:none;stroke:var(--secondary-light-blue);stroke-width:1.5959;stroke-miterlimit:10;}
.cta-card .chain-illustration .st2{fill:none;stroke:var(--secondary-light-blue);stroke-width:0.532;stroke-miterlimit:10;}
.cta-card .chain-illustration .st3{fill:none;stroke:var(--secondary-light-blue);stroke-width:0.7448;stroke-miterlimit:10;}
.cta-card .chain-illustration circle{fill:var(--secondary-light-blue);}

.cta-card .castle-illustration .st0 {
  fill: none;
  stroke: var(--secondary-light-blue);
  stroke-width: 1.5;
  stroke-miterlimit: 10;
  /* stroke-dasharray: 1000;
  stroke-dashoffset: 1000; */
  /* animation: castleSt0Dash 5s ease 2s 1 normal forwards; */
}
@keyframes castleSt0Dash {
  to {
    stroke-dashoffset: 0;
  }
}
.cta-card .castle-illustration .st1 {
  fill: none;
  stroke: var(--primary-grey-medium);
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  /* stroke-dasharray: 1000;
  stroke-dashoffset: 1000; */
  /* animation: castleSt1Dash 5s ease 1.5s 1 normal forwards; */
}
@keyframes castleSt1Dash {
  to {
    stroke-dashoffset: 0;
  }
}
.cta-card .castle-illustration .st2 {
  fill: none; 
  stroke: var(--primary-grey-medium);
  stroke-miterlimit: 10;
  /* stroke-dasharray: 1000;
  stroke-dashoffset: 1000; */
  /* animation: castleSt2Dash 5s ease 1.5s 1 normal forwards; */
}
@keyframes castleSt2Dash {
  to {
    stroke-dashoffset: 0;
  }
}
.cta-card .castle-illustration .st3 { 
  fill: none;
  stroke: var(--primary-grey-medium);
  stroke-width: 0.75;
  stroke-miterlimit: 10;
  /* stroke-dasharray: 1000;
  stroke-dashoffset: 1000; */
  /* animation: castleSt3Dash 5s ease 1.5s 1 normal forwards; */
}
@keyframes castleSt3Dash {
  to {
    stroke-dashoffset: 0;
  }
}
.cta-card .illustration-container .circle {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--secondary-light-blue);
  border-radius: 50%;
  opacity: 0;
}

.cta-card .illustration-container .circle1 {
  top: 12px;
  left: 13px;
  /* animation: circle1 0.5s ease 0.5s normal forwards; */
}
.cta-card .illustration-container .circle2 {
  top: 12px;
  left: 42px;
  /* animation: circle2 0.5s ease 0.6s normal forwards; */
}
.cta-card .illustration-container .circle3 {
  top: 144px;
  left: 28px;
  /* animation: circle3 0.5s ease 0.7s normal forwards; */
}

@keyframes circle1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circle2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circle3 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.headshot-container, .image-text-container {
  align-items: center;
  padding: 0 0 5rem;
}

.headshot, .circle-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20rem;
  margin: 0 4rem 0 0;
  border: 0;
  transition: 0.2s;
}

@media (min-width: 70rem) {
  .headshot:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 0;
    width: 5px;
    height: 26rem;
    border-left: 5px solid var(--primary-grey);
  }
}
.headshot img, .circle-image-container img {
  position: relative;
  z-index: 1;
  width: 20rem;
  height: 20rem;
  border: 6px solid var(--primary-grey);
  border-radius: 50%;
  transition: 0.2s;
}
.circle-image-container.large img {
  width: 24rem;
  height: 24rem;
}

.headshot-container:nth-child(2) .headshot img {
  border-color: var(--secondary-green);
}
.headshot-container:nth-child(3) .headshot img {
  border-color: var(--secondary-light-blue);
}
.headshot-container:nth-child(4) .headshot img {
  border-color: var(--secondary-red);
}
.headshot-container:last-child .headshot:before {
  border: 0;
}
.headshot-container, .image-text-container p {
  padding: 0 10%;
}
@media (min-width: 70rem) {
  .headshot-container, .image-text-container p {
    padding: 0;
  }
}

a.circle-image-container {
  color: var(--secondary-red);
  outline-offset: 0rem;
  border-radius: 50%;
}
a.circle-image-container:hover img {
  border-color: var(--secondary-red);
  box-shadow: inset 0px 2px 5px #252a7d;
}
a.circle-image-container:focus {
  border-radius: 50%;
  border-color: var(--secondary-red);
  outline-offset: 0.75rem;
}

.partners-container {
  gap: 4rem;
  margin: 0 0 7rem;
}

.about-container {
  position: relative;
}
.about-container .dot-ring-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (min-width: 70rem) {
  .about-container .dot-ring-container {
    display: block;
  }
}
.about-container .copy {
  position: relative;
  z-index: 1;
}

.about-container .dot-ring-container .dot-ring {
  fill: var(--primary-grey);
}
.about-container .dot-ring-container .dot-ring .st0 {
  position: relative;
  z-index: 1;
  fill:var(--primary-grey-ultralight);
}
.about-container .dot-ring-container .dot-ring .st1 {
  position: relative;
  z-index: 0;
  fill:none;
  stroke:var(--primary-grey);
  stroke-width:0.5;
  stroke-miterlimit:10;
}

.what-we-do-container {
  position: relative;
}
.what-we-do-container .connecting-dots-container {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin-top: -25%;
}
@media (min-width: 70rem) {
  .what-we-do-container .connecting-dots-container {
    display: block;
  }
}
.what-we-do-container .connecting-dots-container .connecting-dots-illustration .st0{
  fill:none;
  stroke:var(--primary-grey);
  stroke-width:0.5;
  stroke-miterlimit:10;
}
.what-we-do-container .connecting-dots-container .connecting-dots-illustration circle {
  fill: var(--primary-grey);
}
.what-we-do-container .connecting-dots-container .connecting-dots-illustration circle.blue {
  fill: var(--secondary-light-blue);
}
.what-we-do-container .copy {
  position: relative;
  z-index: 1;
}

.industry-mission {
  position: relative;
}
.industry-mission .puzzle-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 70rem) {
  .industry-mission .puzzle-container {
    display: block;
  }
}
.industry-mission .puzzle-container .puzzle-illustration .st0 {
  fill:none;
  stroke:var(--primary-grey);
  stroke-width:0.5;
  stroke-miterlimit:10;
}
.industry-mission .puzzle-container .puzzle-illustration circle {
  fill: var(--primary-grey);
}

.industry-mission .puzzle-container .puzzle-illustration .blue  {
  fill: var(--secondary-light-blue);
}
.industry-mission .puzzle-container .puzzle-illustration .st0.blue {
  fill: none;
  stroke:var(--secondary-light-blue);
}

.industry-mission .copy {
  position: relative;
  z-index: 1;
}

/* Logo Animation */
.header-logo-container a {
  position: relative;
  max-width: 275px;
  margin: 0 auto;
}

.header-logo-container a .animated-heart-container {
  position: relative;
  display: block;
  width: 99px;
  height: 100px;
  margin: 0 auto;
  transform: translateX(9px);
  transform-origin: 86% 40%;
  transition: 0.2s;
}

.header-logo-container a .animated-heart-container * {
  display: block;
}

.header-logo-container a .left-heart-square {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 2.7rem;
  height: 3.5rem;
  border-radius: 3px;
  background: var(--primary-black);
  transform: rotate(45deg) scaleY(1);
  transform-origin: top;
}

.header-logo-container.animated a .left-heart-square {
  animation: leftHeartSlide 0.75s ease 0s 1 normal forwards;
}

@keyframes leftHeartSlide {
  0% {
    opacity: 0;
    transform: rotate(45deg) scaleY(0);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scaleY(1);
  }
}

.header-logo-container a .right-heart-square {
  position: absolute;
  top: 11px;
  left: 17px;
  width: 2.7rem;
  height: 6.1rem;
  border-radius: 3px;
  background: var(--primary-black);
  transform: rotate(45deg) scaleY(1);
  transform-origin: bottom;
}

.header-logo-container.animated a .right-heart-square {
  animation: rightHeartSlide 1s ease 0s 1 normal forwards;
}

@keyframes rightHeartSlide {
  0% {
    opacity: 0;
    transform: rotate(45deg) scaleY(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: rotate(45deg) scaleY(0);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scaleY(1);
  }
}

.header-logo-container a .top-left-data-edge {
  position: absolute;
  top: 7px;
  left: 22px;
  width: 0.3rem;
  height: 1.9rem;
  background: var(--primary-black);
  transform: rotate(-45deg);
}

.header-logo-container.animated a .top-left-data-edge {
  transform: rotate(-45deg) scale(0);
  animation: leftDataEdgeSlide 0.75s ease 0.75s 1 normal forwards;
}

@keyframes leftDataEdgeSlide {
  0% {
    opacity: 0;
    transform: rotate(-45deg) scaleY(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: rotate(-45deg) scaleY(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-45deg) scaleY(1);
  }
}

.header-logo-container a .top-right-data-edge {
  position: absolute;
  top: 28px;
  left: 80px;
  width: 0.3rem;
  height: 1.9rem;
  background: var(--primary-black);
  transform: rotate(45deg);
}

.header-logo-container.animated a .top-right-data-edge {
  transform: rotate(45deg) scale(0);
  animation: rightDataEdgeSlide 0.75s ease 0.8s 1 normal forwards;
}

@keyframes rightDataEdgeSlide {
  0% {
    opacity: 0;
    transform: rotate(45deg) scaleY(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: rotate(45deg) scaleY(0);
  }
  100% {
    opacity: 1;
    transform: rotate(45deg) scaleY(1);
  }
}

.header-logo-container a .bottom-center-data-edge {
  position: absolute;
  top: 72px;
  left: 39px;
  width: 0.3rem;
  height: 1.9rem;
  background: var(--primary-black);
}

.header-logo-container.animated a .bottom-center-data-edge {
  transform: scale(0);
  animation: bottomDataEdgeSlide 0.75s ease 0.8s 1 normal forwards;
}

@keyframes bottomDataEdgeSlide {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.header-logo-container a .top-left-circle {
  position: absolute;
  top: 0px;
  left:  7px;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--secondary-green);
  border-radius: 50%;
}

.header-logo-container.animated a .top-left-circle {
  transform: scale(0);
  animation: topLeftCircleScale 0.75s ease 1.2s 1 normal forwards;
}

@keyframes topLeftCircleScale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.header-logo-container a .top-right-circle {
  position: absolute;
  top: 21px;
  left: 89px;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--secondary-light-blue);
  border-radius: 50%;
}

.header-logo-container.animated a .top-right-circle {
  transform: scale(0);
  animation: topRightCircleScale 0.75s ease 1.35s 1 normal forwards;
}

@keyframes topRightCircleScale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.header-logo-container a .bottom-center-circle {
  position: absolute;
  top: 94px;
  left: 36px;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--secondary-red);
  border-radius: 50%;
}

.header-logo-container.animated a .bottom-center-circle {
  transform: scale(0);
  animation: bottomCenterCircleScale 0.75s ease 1.5s 1 normal forwards;
}

@keyframes bottomCenterCircleScale {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 1;
  }
  20% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fixed Header */
.fixed-header header {
  background: var(--primary-white);
}

.fixed-header .fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 10rem;
  background: var(--primary-white);
  border-bottom: 1px solid var(--primary-grey-ultralight);
  opacity: 1;
}

.fixed-header .header-logo-container a .animated-heart-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: scale(0.8);
}
.fixed-header header .header-logo {
  margin-top: 37%;
}
.fixed-header nav {
  position: fixed;
  top: 0;
  left: 1rem;
}
.fixed-header nav button.circle {
  transform: scale()
}
@media (min-width: 70rem) {
  .fixed-header nav {
    left: 50%;
    transform: translateX(-600px);
  }
}
.fixed-header nav.secondary {
  left: auto;
  right: 1rem;
}
@media (min-width: 70rem) {
  .fixed-header nav.secondary {
    right: 50%;
    transform: translateX(600px);
  }
}

/* Data Lake animation */
.process-graphic-wrapper {
  position: sticky;
  z-index: 0;
  top: 12vh;
}

.our-process-text {
  position: relative;
  margin-top: 2rem;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  border-top: 1px solid var(--primary-grey);
}

.data-lake .group-to-circle .circle-line  {
  fill:none;
  stroke:var(--secondary-dark-blue);
  stroke-width:0.4500448;
  stroke-miterlimit:10;
}

.data-lake .lake * {
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 50%;
  fill: transparent;
  stroke: var(--secondary-dark-blue);
  transition: transform 0.75s, fill 0.2s, stroke 0.2s;
}
.data-lake .lake.grey * {
  stroke: var(--primary-grey);
}


.data-lake .group-to-circle .circle-line {
  stroke: var(--secondary-dark-blue);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.data-lake .group-to-circle .circle-line.play {
  animation: connect-lines 5s ease forwards;
}

.data-lake .grouped .grouped-left-lines .st2, 
.data-lake .grouped .grouped-middle-lines .st2, 
.data-lake .grouped .grouped-right-lines .st2 {
  stroke: var(--secondary-dark-blue);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.data-lake .grouped .grouped-left-lines .st2.play, 
.data-lake .grouped .grouped-middle-lines .st2.play,
.data-lake .grouped .grouped-right-lines .st2.play {
  animation: connect-lines 10s ease forwards;
}
.data-lake .grouped .grouped-left-lines .st2.play.retract, 
.data-lake .grouped .grouped-middle-lines .st2.play.retract,
.data-lake .grouped .grouped-right-lines .st2.play.retract {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: retract-lines 5s ease reverse;
}

@keyframes connect-lines {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes retract-lines {
  from {
    stroke-dashoffset: -1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.data-lake.rotate {
  animation: rotate-lake 60s ease infinite;
}

@keyframes rotate-lake {
  to {
    transform: rotate(360deg);
  }
}