:root {
  --primary-blue: #041049;
  --teal: #01E0FF;
  --focus: #54C1FF;
  --hot-pink: #E73BF6;
  --link-pink: #FF0A7F;
  --purple: #7409EC;
  --purple-dark: #470394;
  --white: #ffffff;
  --primary-background: #ffffff;
  --background-grey: #E1E1E1;
  --border-grey: #D9D9D9;
  --body-color: #000000;
  --translate-pos-x: "0px";
  --translate-pos-y: "0px";
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.visuallyhidden {
  visibility: hidden;
  line-height: 0;
  position: absolute;
}

section {
  position: relative;
  width: 100%;
}

.section-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section-lines:before, .section-lines:after {
  display: inline-block;
  position: absolute;
  height: 100%;
  top: 0;
  width: 20%;
  border: solid rgba(231, 59, 246, 0.2);
  border-width: 0px 1px;
  pointer-events: none;
}
.section-lines:before {
  left: 20%;
  z-index: 1;
}
.section-lines:after {
  right: 20%;
}
@media (min-width: 600px) {
  .section-lines:before, .section-lines:after {
    content: "";
  }
}

.container {
  position: relative;
  height: 100%;
  padding: 32px 16px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.content-image {
  position: relative;
  z-index: 3;
  transition: transform 0.8s ease-in-out;
}
.content-image img {
  display: block;
  width: 100%;
  height: auto;
}
.content-image#strategy-image-1 {
  transform: translateY(-80px);
  max-width: 530px;
}
.content-image#strategy-image-1.in-view {
  transform: translateY(-100px);
}
@media (min-width: 600px) {
  .content-image#strategy-image-1.in-view {
    transform: translateY(-180px);
  }
}
.content-image#strategy-image-2 {
  max-width: 520px;
  margin-left: auto;
}
@media (min-width: 600px) {
  .content-image#strategy-image-2 {
    margin-bottom: -260px;
  }
}
@media (min-width: 600px) {
  .content-image#strategy-image-2.in-view {
    transform: translateY(-20px);
  }
}
.content-image#vision-image-1 {
  max-width: 400px;
  margin-top: -120px;
  grid-area: image1;
}
@media (min-width: 1200px) {
  .content-image#vision-image-1 {
    margin-top: 0;
  }
}
@media (min-width: 600px) {
  .content-image#vision-image-1.in-view {
    transform: translateY(-80px);
  }
}
.content-image#vision-image-2 {
  max-width: 370px;
  grid-area: image2;
}
@media (min-width: 600px) {
  .content-image#vision-image-2.in-view {
    transform: translateY(-30px);
  }
}

.strategy-title {
  display: inline-block;
  color: var(--purple-dark);
  margin: -30px 0 60px 0;
  width: 100%;
}
@media (min-width: 1200px) {
  .strategy-title {
    position: absolute;
    padding-left: 630px;
    margin: 100px 0 80px;
    top: 0px;
  }
}

nav#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  z-index: 20;
  transition: all 0.4s;
  padding: 12px 18px;
  min-height: 60px;
  background: var(--primary-blue);
}
nav#main-nav .logo {
  width: 150px;
}
@media (min-width: 1200px) {
  nav#main-nav .logo {
    width: 250px;
  }
}
nav#main-nav #mobile-nav-btn {
  --bar-w: 24px;
  --bar-h: 2px;
  position: relative;
  width: var(--bar-w);
  height: calc(var(--bar-w) * 3 / 5);
}
nav#main-nav #mobile-nav-btn span {
  position: absolute;
  right: 0;
  width: var(--bar-w);
  height: var(--bar-h);
  background-color: var(--white);
  rotate: 0deg;
}
nav#main-nav #mobile-nav-btn span:nth-child(1) {
  top: 0;
  width: 100%;
}
nav#main-nav #mobile-nav-btn span:nth-child(2) {
  top: 50%;
  width: 80%;
}
nav#main-nav #mobile-nav-btn span:nth-child(3) {
  top: 100%;
  width: 60%;
}
@media (min-width: 1200px) {
  nav#main-nav #mobile-nav-btn {
    position: absolute;
    display: none;
  }
}
nav#main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 24px;
  margin: 0;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--primary-blue);
  height: calc(100% - 60px);
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
nav#main-nav ul li {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  padding: 0;
}
nav#main-nav ul li a {
  display: inline-block;
  color: var(--white);
  font-family: inherit;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  nav#main-nav ul li a {
    font-size: 1rem;
  }
}
nav#main-nav ul li a:hover {
  color: var(--hot-pink);
}
nav#main-nav ul li a.btn {
  padding: 0;
  text-align: center;
  color: var(--teal);
  background-color: #0B032A;
  padding: 16px 32px;
  border-radius: 24px;
}
@media (max-width: 899px) {
  nav#main-nav ul li a.btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }
}
@media (min-width: 1200px) {
  nav#main-nav {
    padding: 18px 64px;
    background: transparent;
  }
  nav#main-nav ul {
    position: unset;
    gap: 60px;
    flex-direction: row;
    justify-content: end;
    height: auto;
    background: none;
    align-items: center;
    transform: none;
  }
}

.scroll-down #main-nav {
  transform: translate3d(0, -100%, 0);
}

.scroll-up #main-nav {
  transform: none;
  background-color: var(--primary-blue);
}

.scroll-down #home-btn,
.scroll-up #home-btn {
  transform: none;
}

body.menu-open {
  overflow: hidden;
}

.menu-open nav#main-nav ul {
  transform: none;
}

#home-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: var(--purple);
  color: var(--white);
  padding: 12px;
  border-radius: 50%;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 70.7363px #E73BF6;
  box-shadow: 0px 0px 70.7363px #E73BF6;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(120px);
  transition: transform 0.4s ease-in-out;
  font-size: 1px;
  line-height: 1;
}
#home-btn span {
  position: absolute;
  color: transparent;
}
#home-btn svg {
  width: 20px;
  height: 20px;
  rotate: 90deg;
}
@media (min-width: 600px) {
  #home-btn {
    width: 60px;
    height: 60px;
  }
  #home-btn svg {
    width: 40px;
    height: 40px;
  }
}

.nav-button:focus,
.nav-item:focus {
  outline: 1px dashed var(--white);
  outline-offset: 3px;
}

#home-btn:focus {
  outline: 1px dashed var(--focus);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 1rem + 5vw, 6.25rem);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.04em;
}
h1.sub {
  display: inline-block;
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  margin-bottom: 18px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 4px;
  letter-spacing: normal;
}
h1.gradient {
  background: linear-gradient(to right, var(--hot-pink) 6.05%, var(--teal) 74.38%);
  -webkit-background: -webkit-linear-gradient(to right, var(--hot-pink) 6.05%, var(--teal) 74.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

h1.smaller {
  font-size: clamp(3rem, 1rem + 5vw, 5.125rem);
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 1.3;
}

a, p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

p {
  line-height: 2;
  margin: 0;
  font-size: 1.2rem;
}
p.large {
  font-size: 1.375rem;
}

.large-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: clamp(2.375rem, 1rem + 1vw, 3.875rem);
  line-height: 1.3;
}

.header-section {
  /* The image used */
  background: var(--primary-blue);
  background-image: url("/assets/images/header-gradient.png");
  color: var(--teal);
  min-height: 800px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.header-section::before {
  content: "";
  display: inline-block;
  background: url("/assets/images/noise.png");
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .header-section {
    height: 100vh;
  }
}
@media (max-width: 599px) {
  .header-section {
    background-image: url("../assets/images/mobile-gradient.png");
  }
  .header-section .container {
    min-height: 800px;
  }
}

.header-content {
  position: absolute;
  top: 200px;
}
@media (min-width: 1200px) {
  .header-content {
    top: 50%;
  }
}

.img-stars {
  position: absolute;
  animation: rotation 12s infinite linear;
}
.img-stars#img-stars-1 {
  width: 600px;
  left: 80%;
  bottom: 10%;
  animation-duration: 10s;
}
@media (max-width: 599px) {
  .img-stars#img-stars-1 {
    width: 100%;
    left: 0px;
    bottom: 0;
  }
}
.img-stars#img-stars-2 {
  width: 400px;
  left: calc(50% - 200px);
  top: 25%;
  animation-direction: reverse;
}
@media (max-width: 599px) {
  .img-stars#img-stars-2 {
    display: none;
  }
}
.img-stars#img-stars-3 {
  width: 600px;
  transform: rotate(45deg);
  left: -250px;
  top: 100px;
  animation-duration: 14s;
}
@media (max-width: 899px) {
  .img-stars#img-stars-3 {
    display: none;
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}
#our-vision {
  padding-bottom: 100px;
}

.our-vision__header {
  position: relative;
  background: var(--primary-blue);
  color: var(--white);
  padding: 32px 0;
  background-image: url("/assets/images/vision-bg.jpg");
  color: var(--teal);
  min-height: 800px;
  height: 100vh;
  /* Create the parallax scrolling effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 599px) {
  .our-vision__header {
    min-height: 700px;
    background-image: url("../assets/images/mobile-gradient.png");
    height: auto;
  }
}
.our-vision__header::before {
  content: "";
  display: inline-block;
  background: url("/assets/images/noise.png");
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.our-vision__header h1.gradient {
  margin-bottom: 32px;
}
.our-vision__header .stars-container {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 599px) {
  .our-vision__header .stars-container {
    display: none;
  }
}
.our-vision__header .img-stars {
  position: absolute;
  opacity: 0.6;
}
.our-vision__header .img-stars#vision-stars-1 {
  width: 600px;
  left: 80%;
  bottom: 10%;
}
@media (max-width: 599px) {
  .our-vision__header .img-stars#vision-stars-1 {
    width: 100%;
    left: 0px;
    bottom: 30%;
  }
}
.our-vision__header .img-stars#vision-stars-2 {
  width: 600px;
  left: calc(50% - 300px);
  top: 20%;
}
@media (max-width: 599px) {
  .our-vision__header .img-stars#vision-stars-2 {
    display: none;
  }
}
.our-vision__header .img-stars#vision-stars-3 {
  width: 600px;
  transform: rotate(45deg);
  left: -250px;
  top: 100px;
}
@media (max-width: 899px) {
  .our-vision__header .img-stars#vision-stars-3 {
    display: none;
  }
}
.our-vision__content {
  z-index: 1;
}
.our-vision__copy {
  display: inline-block;
  margin: 40px 0;
  width: 100%;
  grid-area: copy;
}
@media (min-width: 1200px) {
  .our-vision__copy {
    max-width: 450px;
    margin: 0;
  }
}
.our-vision__copy p + p {
  margin-top: 18px;
}
@media (min-width: 1200px) {
  .our-vision__copy p + p {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .our-vision__body {
    display: grid;
    gap: 80px;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "copy image1";
  }
}
@media (min-width: 1200px) {
  .our-vision__header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .our-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-top: 0;
  }
}
.our-goals__title {
  width: 100%;
  max-width: 540px;
}
.our-goals__images {
  position: relative;
  display: none;
  align-items: center;
}
@media (min-width: 900px) {
  .our-goals__images {
    display: flex;
    height: 100vh;
  }
}
.our-goals__images-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.our-goals__images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.our-goals__content {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .our-goals__content {
    padding-left: 150px;
  }
}
.our-goals__content::before, .our-goals__content::after {
  position: sticky;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(to bottom, white, transparent);
}
@media (min-width: 1200px) {
  .our-goals__content::before, .our-goals__content::after {
    content: "";
  }
}
.our-goals__content::before {
  top: 0;
}
.our-goals__content::after {
  bottom: 0;
  background: linear-gradient(to top, white, transparent);
}
.our-goals__wrapper .goal + .goal {
  margin-top: 40px;
}
.our-goals__wrapper .goal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 900px) {
  .our-goals__wrapper .goal {
    height: 100vh;
  }
}
.our-goals__wrapper .goal img {
  margin-bottom: 18px;
}
.our-goals__wrapper .goal h2 {
  margin-bottom: 18px;
  line-height: 1.2;
}
@media (min-width: 900px) {
  .our-goals__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 1;
  }
}
.our-goals .goal-progress {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  top: 40%;
  right: -40px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .our-goals .goal-progress {
    right: -20%;
  }
}
.our-goals .goal-progress-dot {
  display: block;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  font-size: 1px;
  line-height: 1;
  background-color: #d9d9d9;
  transition: 0.25s ease-in-out;
  color: transparent;
}
.our-goals .goal-progress-dot.active {
  background-color: #e80c76;
}
.our-goals .goal-progress-dot:focus {
  outline: 1px dashed var(--focus);
  outline-offset: 2px;
}

#our-priorities {
  background: var(--primary-blue);
  color: var(--white);
  position: relative;
  background-image: url("../assets/images/header-gradient.png");
  padding: 100px 0;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (max-width: 599px) {
  #our-priorities {
    background-image: url("../assets/images/mobile-gradient.png");
  }
}
#our-priorities::before {
  content: "";
  display: inline-block;
  background: url("/assets/images/noise.png");
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#our-priorities::after {
  display: none;
}
#our-priorities .stars-container {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#our-priorities .img-stars {
  position: absolute;
  opacity: 0.6;
}
#our-priorities .img-stars#priorities-stars-1 {
  width: 500px;
  left: 60%;
  bottom: 0;
}
@media (max-width: 599px) {
  #our-priorities .img-stars#priorities-stars-1 {
    display: none;
  }
}
#our-priorities .img-stars#priorities-stars-2 {
  width: 600px;
  left: calc(40% - 300px);
  top: 10%;
}
@media (max-width: 599px) {
  #our-priorities .img-stars#priorities-stars-2 {
    display: none;
  }
}

.priorities-grid {
  --item-gap: 24px;
  padding: 100px 0 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--item-gap);
}

.priority-item {
  position: relative;
  width: 100%;
  min-height: 290px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 18px;
  border-radius: 20px;
  border: 2px solid var(--white);
  gap: 16px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.action-plan-item:focus-within,
.priority-item:focus-within {
  border-style: dashed;
}

.action-plan-item {
  position: relative;
  width: 100%;
  min-height: 290px;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--white);
}

.action-plan-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 18px;
  gap: 18px;
  color: var(---white);
  text-decoration: none;
  line-height: 1.3;
  outline: none;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .action-plan-link:focus > .priority-title, .action-plan-link:hover > .priority-title {
    color: var(--link-pink);
  }
  .action-plan-link:focus > .action-plan-icon, .action-plan-link:hover > .action-plan-icon {
    transform: translateY(16px);
    color: var(--link-pink);
  }
}

.action-plan-icon {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease-in-out;
}
.action-plan-icon svg {
  width: 100%;
  height: 100%;
}

.priority-img {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.priority-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4));
  z-index: 2;
}
@media (min-width: 1200px) {
  .priority-img {
    opacity: 0;
  }
}

.priority-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.2;
  width: 80%;
  min-height: 80px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.priority-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.priority-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  font-size: 1px;
  line-height: 1;
}
@media (min-width: 1200px) {
  .priority-link:focus ~ .priority-img, .priority-link:hover ~ .priority-img {
    opacity: 1;
    scale: 1.1;
  }
  .priority-link:focus ~ .priority-number, .priority-link:hover ~ .priority-number {
    transform: translateY(16px);
    color: var(--link-pink);
  }
  .priority-link:focus ~ .priority-title, .priority-link:hover ~ .priority-title {
    color: var(--link-pink);
  }
}

.strategy-wrapper {
  display: flex;
  justify-content: center;
}
.strategy-wrapper .strategy-btn {
  padding: 0;
  text-align: center;
  color: var(--teal);
  background-color: #0B032A;
  padding: 24px 32px;
  border-radius: 32px;
  width: 80%;
  max-width: 300px;
  font-size: 1.2rem;
  text-decoration: none;
}
.strategy-wrapper .strategy-btn:focus {
  outline: 1px dashed var(--white);
  outline-offset: 3px;
}

#main-slider-actions {
  justify-content: center;
}
@media (min-width: 1200px) {
  #main-slider-actions {
    display: none;
  }
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 32px;
  padding: 0 0 60px 0;
}
@media (min-width: 1200px) {
  .programs-grid {
    padding: 100px 0;
  }
}

.programs-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border-grey);
  gap: 16px;
  color: var(--body-color);
  text-decoration: none;
}

.programs-item:hover {
  border-color: var(--purple);
  -webkit-box-shadow: 0px 10 20px 0px rgba(116, 9, 236, 0.9);
  box-shadow: 0px 0px 20px 0px rgba(116, 9, 236, 0.1);
}

.programs-item:focus {
  border-color: var(--purple);
  outline: 1px dashed var(--focus);
  outline-offset: 2px;
}

.programs-item > img {
  width: 100px;
  height: 100px;
}

.program-title {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .program-title {
    min-height: 100px;
  }
}

.program-tag {
  display: none;
  background: var(--primary-blue);
  color: var(--teal);
  border-radius: 32px;
  padding: 12px 24px;
}
@media (max-width: 899px) {
  .program-tag {
    display: inline-block;
  }
}

.drawer {
  display: none;
}

.drawer__close {
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--body-color);
  z-index: 21;
}
.drawer__close svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 899px) {
  .drawer__close {
    left: 18px;
    color: var(--body-color);
  }
}
@media (max-width: 899px) {
  .drawer__close {
    left: 12px;
    top: 12px;
    width: 24px;
    height: 24px;
  }
}

.drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
  will-change: opacity;
  background-color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.drawer__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: calc(100% - 78px);
  max-width: 1200px;
  z-index: 9999;
  transition: transform 0.3s;
  will-change: transform;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  -webkit-transform: translateX(103%);
  transform: translateX(103%); /* extra 3% because of box-shadow */
  -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
  box-shadow: 0 2px 6px #777;
}
@media (max-width: 899px) {
  .drawer__wrapper {
    width: 100%;
  }
}

.drawer__content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  flex-grow: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 899px) {
  .drawer__content {
    padding: 80px 32px;
  }
}
@media (max-width: 599px) {
  .drawer__content {
    padding: 24px;
  }
}

.drawer__title {
  font-size: 2.625rem;
  margin-bottom: 36px;
}
@media (max-width: 899px) {
  .drawer__title {
    display: none;
  }
}

.drawer__number {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--link-pink);
  margin-bottom: 24px;
  line-height: 1;
  font-size: 5rem;
}

.drawer__subheading {
  font-size: clamp(1.5rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.drawer__carousel {
  position: relative;
  overflow: hidden;
}
@media (max-width: 899px) {
  .drawer__carousel {
    overflow-y: auto;
  }
}

.drawer__carousel-container {
  width: 100%;
  display: flex;
  margin: 0;
  padding: 0;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scroll-snap-type: x mandatory;
}
.drawer__carousel-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.drawer__grid {
  display: grid;
  flex: 1 0 100%;
  scroll-snap-align: start;
}
@media (min-width: 900px) {
  .drawer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 75px;
  }
}
@media (max-width: 899px) {
  .drawer__grid {
    grid-template-rows: 500px 1fr;
    gap: 32px;
  }
}
@media (max-width: 599px) {
  .drawer__grid {
    grid-template-rows: 200px 1fr;
    gap: 12px;
  }
}

.drawer__image-wrapper {
  position: relative;
}

.drawer__image {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.drawer__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 899px) {
  .drawer__body {
    justify-content: flex-start;
  }
}

.drawer__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
}
.drawer__actions a {
  text-decoration: underline;
  cursor: pointer;
}
.drawer__actions a.hide {
  visibility: hidden;
}
.drawer__actions a span.desktop-only {
  display: none;
}
@media (min-width: 1200px) {
  .drawer__actions a span.desktop-only {
    display: inline;
  }
}
@media (max-width: 899px) {
  .drawer__actions {
    margin-top: 18px;
  }
}

.drawer__pagination {
  display: flex;
  gap: 12px;
}
.drawer__pagination .pagination-btn {
  background-color: var(--background-grey);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 1px;
  line-height: 1;
  cursor: pointer;
}
.drawer__pagination .pagination-btn.active {
  background-color: var(--link-pink);
}
@media (max-width: 599px) {
  .drawer__pagination .pagination-btn {
    width: 14px;
    height: 14px;
  }
}

.draw-nav-btn {
  color: var(--body-color);
}

.drawer__close:focus,
.draw-nav-btn:focus,
.pagination-btn:focus {
  outline: 1px dashed var(--focus);
  outline-offset: 3px;
}

.drawer.is-active {
  display: block;
}

.drawer.is-visible .drawer__wrapper {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer.is-visible .drawer__overlay {
  opacity: 0.8;
}

footer {
  background: var(--primary-blue);
  color: var(--white);
}
footer .footer-logo {
  width: 100%;
  max-width: 275px;
  grid-area: logo;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  padding: 32px 0;
}
@media (min-width: 900px) {
  footer .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "logo acknowledgement" "links acknowledgement";
  }
}
footer .footer-acknowledgement {
  grid-area: acknowledgement;
}
footer .footer-acknowledgement h2 {
  margin-bottom: 24px;
}
footer .footer-links {
  grid-area: links;
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
footer .footer-links a {
  color: var(--white);
}
footer .footer-links a:focus {
  outline: 1px dashed var(--white);
  outline-offset: 3px;
}

/*# sourceMappingURL=output.css.map */
