@font-face {
  font-family: "Alpha";
  src: url("fonts/akbalthom_alpha-webfont.eot");
  src: url("fonts/akbalthom_alpha-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/akbalthom_alpha-webfont.woff") format("woff"), url("fonts/akbalthom_alpha-webfont.ttf") format("truetype"), url("fonts/akbalthom_alpha-webfont.svg#akbalthom_alpharegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
:root {
  --c-black: #000000;
  --c-type: #484848;
  --c-white: #ffffff;
  --c-purple: #362580;
  --c-yellow: #FFA90E;
  --c-orange: #FF7438;
  --c-grey: #E3DDD2;
  --c-blue: #471DDC;
  --c-green: #30C695;
  --c-cream: #e3ddd2;
  --size-1: 4.5rem;
  --size-2: 2.5rem;
  --size-3: 2rem;
  --size-4: 1.5rem;
  --size-5: 1.25rem;
  --size-6: 1rem;
  --size-7: 0.8rem;
  --size-8: 0.7rem;
  --font-body: Alpha;
  --font-heading: Alpha;
  --max-width: 1250px ;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.text-black {
  color: #000000 !important;
}

.text-type {
  color: #484848 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-purple {
  color: #362580 !important;
}

.text-yellow {
  color: #FFA90E !important;
}

.text-orange {
  color: #FF7438 !important;
}

.text-grey {
  color: #E3DDD2 !important;
}

.text-blue {
  color: #471DDC !important;
}

.text-green {
  color: #30C695 !important;
}

.text-cream {
  color: #e3ddd2 !important;
}

.fill-black {
  background-color: #000000 !important;
}

.fill-type {
  background-color: #484848 !important;
}

.fill-white {
  background-color: #ffffff !important;
}

.fill-purple {
  background-color: #362580 !important;
}

.fill-yellow {
  background-color: #FFA90E !important;
}

.fill-orange {
  background-color: #FF7438 !important;
}

.fill-grey {
  background-color: #E3DDD2 !important;
}

.fill-blue {
  background-color: #471DDC !important;
}

.fill-green {
  background-color: #30C695 !important;
}

.fill-cream {
  background-color: #e3ddd2 !important;
}

.text-size-1 {
  font-size: 4.5rem;
}

.text-size-2 {
  font-size: 2.5rem;
}

.text-size-3 {
  font-size: 2rem;
}

.text-size-4 {
  font-size: 1.5rem;
}

.text-size-5 {
  font-size: 1.25rem;
}

.text-size-6 {
  font-size: 1rem;
}

.text-size-7 {
  font-size: 0.8rem;
}

.text-size-8 {
  font-size: 0.7rem;
}

.text-style-heading {
  line-height: 110%;
}

.text-style-heading {
  font-family: "Alpha";
}

.text-style-body {
  font-family: "Alpha";
}

.text-align-centered {
  text-align: center;
}

.text-align-justified {
  text-align: justify;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.is-lead {
  font-size: 20px;
}
@media screen and (min-width: 768px), print {
  .is-lead {
    font-size: 30px;
    text-align: center;
  }
}

.column-layout > p + p {
  margin-top: 40px;
}

@media screen and (min-width: 1024px) {
  .column-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 64px;
    max-width: 2000px;
  }
  .column-layout > p {
    grid-column: 3/11;
  }
}
.is-capitalized {
  text-transform: capitalize;
}

.is-lowercase {
  text-transform: lowercase;
}

.is-uppercase {
  text-transform: uppercase;
}

.is-italic {
  font-style: italic;
}

.is-style-normal {
  font-style: normal;
}

.is-underlined {
  text-decoration: underline;
}

.text-weight-300 {
  font-weight: 300;
}

.text-weight-500 {
  font-weight: 500;
}

.text-weight-900 {
  font-weight: 900;
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-7 {
  margin: 104px !important;
}

.mt-7 {
  margin-top: 104px !important;
}

.mr-7 {
  margin-right: 104px !important;
}

.mb-7 {
  margin-bottom: 104px !important;
}

.ml-7 {
  margin-left: 104px !important;
}

.mx-7 {
  margin-left: 104px !important;
  margin-right: 104px !important;
}

.my-7 {
  margin-top: 104px !important;
  margin-bottom: 104px !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.m-wide {
  margin: 100px !important;
}

.mt-wide {
  margin-top: 100px !important;
}

.mr-wide {
  margin-right: 100px !important;
}

.mb-wide {
  margin-bottom: 100px !important;
}

.ml-wide {
  margin-left: 100px !important;
}

.mx-wide {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.my-wide {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-7 {
  padding: 104px !important;
}

.pt-7 {
  padding-top: 104px !important;
}

.pr-7 {
  padding-right: 104px !important;
}

.pb-7 {
  padding-bottom: 104px !important;
}

.pl-7 {
  padding-left: 104px !important;
}

.px-7 {
  padding-left: 104px !important;
  padding-right: 104px !important;
}

.py-7 {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.p-wide {
  padding: 100px !important;
}

.pt-wide {
  padding-top: 100px !important;
}

.pr-wide {
  padding-right: 100px !important;
}

.pb-wide {
  padding-bottom: 100px !important;
}

.pl-wide {
  padding-left: 100px !important;
}

.px-wide {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.py-wide {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

#showMenu:checked ~ ul {
  max-height: 5000px;
  padding-top: 60px;
}

#showMenu:checked ~ #showMenuButton:before {
  transform: translateY(17px) rotate(45deg);
}

#showMenu:checked ~ #showMenuButton span {
  opacity: 0;
}

#showMenu:checked ~ #showMenuButton:after {
  transform: translateY(-16px) rotate(-45deg);
}

#showMenuButton {
  --bar-height: 5px;
  --bar-colour: var(--c-yellow);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#showMenuButton span {
  display: block;
  width: 100%;
  height: var(--bar-height);
  background-color: var(--bar-colour);
  transition: all 0.5s;
  border-radius: var(--bar-height);
}
#showMenuButton:after, #showMenuButton:before {
  content: "";
  width: 100%;
  height: var(--bar-height);
  background-color: var(--bar-colour);
  transition: all 0.5s;
  border-radius: var(--bar-height);
}

@media screen and (min-width: 1024px) {
  #showMenuButton {
    display: none;
  }
}
.menu > * + * {
  margin-top: 32px;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2rem;
  height: 100vh;
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  left: 0;
  top: 100%;
  background-color: rgba(54, 37, 128, 0.95);
  max-height: 0;
  overflow: hidden;
  transition: all 1s;
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .menu {
    position: relative;
    max-height: initial;
    height: auto;
    display: flex;
    gap: 64px;
    font-size: 1.6rem;
    background-color: transparent;
  }
  .menu > * + * {
    margin-top: 0;
  }
}

.menu li a {
  color: var(--c-grey);
  text-decoration: none;
  text-align: center;
  display: block;
}
.menu li a:hover {
  color: var(--c-green);
}

.image {
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/10;
}

.image img {
  width: 100%;
  object-fit: contain;
}

.wrapper_scroll {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 0;
}

.essay_intro {
  display: flex;
  gap: 32px;
  flex-direction: column;
}

.essay_intro .intro {
  flex: 570px 0 0;
}

.essay_follow {
  background-color: grey;
  min-height: 200px;
}

.essay_content p {
  margin: 0;
}
.essay_content p + p {
  margin-top: 10px;
}

@media only screen and (min-width: 600px) {
  .wrapper {
    padding: 104px 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .essay_intro {
    flex-direction: row;
    gap: 64px;
  }
  .wrapper_scroll {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    flex-direction: row;
    gap: 0;
    /*-ms-overflow-style: none;
    	scrollbar-width: none;*/
  }
  .wrapper_scroll::-webkit-scrollbar {
    display: none;
  }
  .wrapper_scroll > div {
    flex: 1 0 100%;
    scroll-snap-align: start;
  }
  .image {
    flex: 1 0 0;
  }
}
@media only screen and (min-width: 1800px) {
  .essay_intro {
    flex-direction: row;
    gap: 64px;
    padding: 0 130px;
  }
}
.gallery {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: 32px;
  transition: opacity 1s;
  z-index: 100;
  position: absolute;
}
.gallery .panel-nav-button {
  opacity: 0.2;
}
.gallery .panel-nav-button.active {
  opacity: 1;
}
@media screen and (min-width: 1536px) {
  .gallery {
    padding: 32px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.gallery_close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #472bdc;
  border: 3px solid white;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  padding: 0;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
}
.gallery_close svg {
  width: 20px;
  height: 20px;
}

p[data-title] {
  flex: 1;
  display: flex;
  align-items: center;
}

.gallery.active {
  opacity: 1;
  visibility: visible;
  position: fixed;
}

.gallery__main {
  grid-column: 1/5;
  display: flex;
  justify-content: center;
  position: relative;
}
.gallery__main img {
  width: 100%;
  height: calc(100vh - 32px);
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .gallery__main img {
    height: calc(100vh - 64px);
  }
}
@media screen and (min-width: 1536px) {
  .gallery__main {
    grid-column: 1/11;
  }
}
.gallery__main .panel-nav-button {
  position: absolute;
  top: calc(50% - 20px);
  right: 25px;
}
.gallery__main .panel-nav-button--left {
  left: 25px;
}

.gallery__support {
  grid-column: 5/7;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1536px) {
  .gallery__support {
    grid-column: 11/13;
  }
}
.gallery__support .panel-nav-button--down, .gallery__support .panel-nav-button--up {
  width: 25px;
  height: 25px;
  right: 50%;
  transform: translate(50%, 0);
  bottom: -10px;
  position: absolute;
}
.gallery__support .panel-nav-button--down svg, .gallery__support .panel-nav-button--up svg {
  transform: rotate(180deg) translateY(0);
  width: 8px;
  height: 8px;
}
.gallery__support .panel-nav-button--up {
  top: 50px;
}
.gallery__support .panel-nav-button--up svg {
  transform: rotate(0) translateY(0);
}

.gallery__track {
  flex: 1;
  overflow-y: auto;
  position: relative;
  margin-top: 16px;
}

.gallery_thumbnails {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 1535px) {
  .gallery_thumbnails {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gallery_thumbnails img {
  aspect-ratio: 275/183;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.gallery__intro {
  display: flex;
  gap: 10px;
}

.gallery__headshot {
  border-radius: 100%;
  width: 45px;
  height: 45px;
  border: 3px solid #30c695;
}

.gallery_thumbnails li {
  aspect-ratio: 16/9;
}

.gallery_thumbnails li:hover {
  outline: 1px solid #30c695;
  outline-offset: -1px;
  cursor: pointer;
}

.gallery_thumbnails li.active {
  outline: 4px solid #30c695;
  outline-offset: -4px;
}

.gallery .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  gap: 10px;
}
.gallery .overlay svg {
  width: 125px;
  height: 129px;
}
.gallery .overlay span {
  display: block;
}

@media screen and (min-width: 320px) and (orientation: portrait) {
  .gallery.active .overlay {
    visibility: visible;
    opacity: 1;
    z-index: 10;
  }
}
.essay p {
  line-height: 180%;
}

.essays__section {
  background: var(--c-cream) url(images/bg-pattern.svg);
  background-attachment: fixed;
  background-size: 476px;
}

.essay__container {
  min-height: 100vh;
  min-width: 100%;
  padding: 0 16px 32px 16px;
  color: var(--c-purple);
  font-size: 1.2rem;
}
@media screen and (min-width: 768px), print {
  .essay__container {
    padding-left: 34px;
    padding-right: 34px;
  }
}

.essay__information > p + p {
  margin-top: 10px;
}

.essay__hero {
  position: relative;
}
@media screen and (max-width: 1279px) {
  .essay__hero {
    margin-top: 16px;
  }
}
.essay__hero img {
  aspect-ratio: 557/403;
}

img[data-gallery] {
  cursor: pointer;
}

.column {
  margin-bottom: 2rem;
  position: relative;
}
.column:last-of-type {
  margin-bottom: 0;
}
.column img {
  aspect-ratio: 3/2;
}
.column img.portrait {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
}
.column img + p {
  margin-top: 20px;
}
.column > p + p {
  margin-top: 20px;
}
.column .gallery-button {
  right: 10px;
}
.column__image-wrapper {
  position: relative;
}
.column__image-wrapper .gallery-button {
  right: 10px;
}
.column--split div:first-of-type {
  margin-bottom: 2rem;
}

.scrollToRight {
  display: none;
}

.essay__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
}

.essay__pullout {
  color: var(--c-orange);
  font-size: 2rem;
  line-height: 180%;
}

.essays_nav {
  top: 88px;
  padding: 10px 16px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .essays_nav {
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    justify-content: center;
  }
}

.essays_nav.active {
  position: fixed;
  top: 0;
  z-index: 1;
}

.essays__section.active .essay__container {
  padding-top: 60px;
}

.essays_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .essays_nav ul {
    width: 1080px;
    gap: 10px;
  }
}

.essays_nav ul li {
  cursor: pointer;
  text-align: center;
}
.essays_nav ul li img {
  border-radius: 100%;
  height: 30px;
  width: 30px;
  opacity: 0.5;
  transition: opacity 0.4s;
}
@media screen and (min-width: 639px) {
  .essays_nav ul li img {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .essays_nav ul li img {
    width: 80px;
    height: 80px;
  }
}
.essays_nav ul li span {
  display: none;
}
@media screen and (min-width: 1024px) {
  .essays_nav ul li span {
    display: block;
  }
}
@media (hover: hover) {
  .essays_nav ul li:hover {
    color: var(--c-purple);
  }
  .essays_nav ul li:hover img {
    border: 2px solid var(--c-green);
    opacity: 1;
  }
}
.essays_nav ul li.active {
  color: var(--c-purple);
}
.essays_nav ul li.active img {
  border: 4px solid var(--c-green);
  opacity: 1;
}

.essay img {
  width: 100%;
}

.gallery-button {
  background-color: var(--c-blue);
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19.89 19.86'%3E%3Cpath d='m7.53,5.72l-3.14-3.14h2.07c.36,0,.67-.12.92-.37.25-.25.37-.56.37-.92,0-.37-.12-.67-.37-.92C7.14.12,6.83,0,6.47,0H1.29C.93,0,.62.12.37.37.12.62,0,.93,0,1.29v5.17c0,.36.12.67.37.92.25.25.56.37.92.37.37,0,.67-.12.92-.37.25-.25.37-.56.37-.92v-2.07l3.1,3.11c.24.24.54.35.91.35s.67-.12.91-.35c.26-.26.39-.56.39-.91s-.12-.64-.36-.87Z' style='fill: %23fff;'/%3E%3Cpath d='m12.36,5.72l3.14-3.14h-2.07c-.36,0-.67-.12-.92-.37-.25-.25-.37-.56-.37-.92,0-.37.12-.67.37-.92C12.75.12,13.06,0,13.42,0h5.17c.37,0,.67.12.92.37.25.25.37.56.37.92v5.17c0,.36-.12.67-.37.92-.25.25-.56.37-.92.37-.37,0-.67-.12-.92-.37-.25-.25-.37-.56-.37-.92v-2.07s-3.1,3.11-3.1,3.11c-.24.24-.54.35-.91.35s-.67-.12-.91-.35c-.26-.26-.39-.56-.39-.91s.12-.64.36-.87Z' style='fill: %23fff;'/%3E%3Cpath d='m12.36,14.13l3.14,3.14h-2.07c-.36,0-.67.12-.92.37-.25.25-.37.56-.37.92,0,.37.12.67.37.92.25.25.56.37.92.37h5.17c.37,0,.67-.12.92-.37.25-.25.37-.56.37-.92v-5.17c0-.36-.12-.67-.37-.92-.25-.25-.56-.37-.92-.37-.37,0-.67.12-.92.37-.25.25-.37.56-.37.92v2.07s-3.1-3.11-3.1-3.11c-.24-.24-.54-.35-.91-.35s-.67.12-.91.35c-.26.26-.39.56-.39.91s.12.64.36.87Z' style='fill: %23fff;'/%3E%3Cpath d='m7.53,14.13l-3.14,3.14h2.07c.36,0,.67.12.92.37.25.25.37.56.37.92,0,.37-.12.67-.37.92-.25.25-.56.37-.92.37H1.29c-.37,0-.67-.12-.92-.37C.12,19.24,0,18.93,0,18.56v-5.17c0-.36.12-.67.37-.92.25-.25.56-.37.92-.37.37,0,.67.12.92.37.25.25.37.56.37.92v2.07s3.1-3.11,3.1-3.11c.24-.24.54-.35.91-.35s.67.12.91.35c.26.26.39.56.39.91s-.12.64-.36.87Z' style='fill: %23fff;'/%3E%3C/svg%3E");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 2px solid var(--c-white);
  cursor: pointer;
  padding: 0;
  pointer-events: none;
}

@media only screen and (max-width: 1000px) {
  .essays_nav.active {
    background-color: var(--c-cream);
  }
  .essay__intro {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 1000px) {
  .essays__section {
    overflow: hidden;
    position: relative;
  }
  .essay__container {
    min-width: 100vw;
    flex: 0 0 calc(100vw + 575px * var(--cols) + 288px * var(--cols-single) + 120px);
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0;
  }
  .essays__wrapper {
    display: flex;
    height: 100vh;
  }
  .essay {
    display: flex;
    height: 100%;
  }
  .essay__intro {
    flex: 0 0 100vw;
    column-gap: 64px;
    padding: 64px 32px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    position: relative;
  }
  .essay__information {
    grid-column: 2/6;
  }
  .essay__hero {
    grid-column: 6/12;
  }
  .scrollToRight {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(50% - 72px);
    right: 32px;
    text-transform: uppercase;
    font-size: 80%;
    align-items: flex-end;
  }
  .scrollToRight img {
    margin-top: 15px;
    width: 56px;
    height: auto;
  }
  .essay__content {
    display: flex;
    padding: 60px 0;
    flex: 1 1 calc(575px * var(--cols) + 288px * var(--cols-single));
  }
  .essay__content > .column {
    flex: 0 0 575px;
  }
  .essay__content > .column--single {
    flex: 0 0 288px;
  }
  .column {
    padding: 0 30px;
  }
  .column .gallery-button {
    right: 40px;
  }
  .column__image-wrapper .gallery-button {
    right: 10px;
  }
  .column--split {
    display: flex;
    gap: 30px;
  }
  .column--split > * {
    flex: 0 0 calc(50% - 15px);
    align-self: flex-start;
  }
}
.home-animation {
  height: 100vh;
  display: grid;
  overflow: hidden;
}
.home-animation .social-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 16px;
  top: 98px;
  display: flex;
  gap: 25px;
  flex-direction: column;
  z-index: 1;
}
.home-animation .social-menu li img {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px), print {
  .home-animation .social-menu {
    top: calc(50% - 150px + 32px);
  }
}

.home-animation .layer {
  grid-area: 1/1/2/2;
  color: white;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.layer--bkg img, .layer--bkg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .layer__text {
  opacity: 0;
}

.layer__text {
  padding: 0 32px;
}

.home .layer__text {
  padding: 0 64px;
}

.layer__text p {
  text-align: center;
}

.home .home-animation .text {
  opacity: 0;
}

.layer__logo {
  opacity: 0;
}
.layer__logo img {
  width: 260px;
  display: block;
}
@media screen and (min-width: 768px), print {
  .layer__logo img {
    width: 360px;
  }
}

.jagged {
  height: 190px;
  background-image: url(images/jagged_2.svg);
  background-position: center bottom;
  background-size: 100%;
  width: 100%;
  background-repeat: repeat-x;
  background-size: 1920px 190px;
  position: absolute;
  bottom: 0;
  opacity: 0;
}
.jagged--blue {
  background-image: url(images/jagged_blue_2.svg);
}
@media screen and (max-device-width: 950px) and (orientation: landscape) {
  .jagged {
    display: none;
  }
}

@keyframes fog {
  0% {
    background-position: -100% bottom;
  }
  100% {
    background-position: 0 bottom;
  }
}
.messages-wall .home-animation .layer__fog {
  background-image: url(images/fog.png);
  opacity: 0.75;
  background-size: cover;
  animation-name: fog;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.messages-wall .home-animation .layer__title {
  opacity: 0;
}
.messages-wall .home-animation .layer__paragraph {
  opacity: 0;
}

html, body {
  min-height: 100%;
}

html.gallery-active, html.gallery-active body {
  overflow: hidden;
}
html.gallery-active .wrapper_scroll, html.gallery-active body .wrapper_scroll {
  overflow: hidden;
}

.no-js {
  width: 100%;
  position: absolute;
  z-index: 10000;
  top: 88px;
}
@media screen and (min-width: 1280px) {
  .no-js {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 60px;
  }
}
.no-js__inner {
  padding: 16px 32px;
  background-color: var(--c-green);
  font-size: 1.5rem;
  color: var(--c-purple);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media screen and (min-width: 1280px) {
  .no-js__inner {
    max-width: 1200px;
    grid-column: 3/11;
    margin: auto;
  }
}
.no-js svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.no-js a {
  color: var(--c-purple);
  text-decoration: none;
}
.no-js a:hover {
  text-decoration: underline;
}

body {
  min-height: 100vh;
  font-family: "Kantumruy Pro", "Khmer Sangam MN", sans-serif;
  line-height: 1.8;
  -webkit-tap-highlight-color: transparent;
}
@supports (-moz-appearance: none) {
  body {
    word-break: break-all;
  }
}
body.messages {
  display: flex;
  flex-direction: column;
}
body.messages .layer__text {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 100px 60px;
}
body.messages header {
  position: relative;
}
body.messages #home {
  background-image: url(images/about.webp);
  background-size: cover;
  background-position: center center;
  flex: 1 0 auto;
  height: auto;
}
@media screen and (max-device-width: 950px) and (orientation: landscape) {
  body.messages #home {
    flex-basis: 100vh;
  }
}

.numeric {
  font-family: "Space Grotesk";
}

header {
  background-color: rgba(54, 37, 128, 0.95);
  min-height: 88px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-grey);
  position: absolute;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  header {
    padding: 0 32px;
  }
}
header .logo {
  width: 190px;
}

.essays {
  background: var(--c-cream) url(images/bg-pattern.svg);
  background-size: 476px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}
.essays__panel {
  scroll-snap-align: start;
  height: 100vh;
  flex: 100vw 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section {
  background: var(--c-cream) url(images/bg-pattern.svg);
  background-size: 476px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px), print {
  .section {
    padding: 0 32px;
  }
}
.section--full {
  padding-left: 0;
  padding-right: 0;
}
.section--blue {
  background-color: var(--c-blue);
  color: var(--c-grey);
}
.section--green {
  background-color: var(--c-green);
  color: var(--c-purple);
}
.section--purple {
  background-color: var(--c-purple);
  background-image: none;
}
.section--fill {
  height: 100vh;
}
@media screen and (max-device-width: 950px) and (orientation: landscape) {
  .section--fill {
    height: auto;
  }
}
.section > .title + p {
  max-width: 900px;
  color: var(--c-purple);
  text-align: center;
}

button.title, a.title {
  cursor: pointer;
}
button.title:hover span:before, a.title:hover span:before {
  transform: rotate(-2deg);
}

.title {
  display: block;
  text-align: center;
  color: var(--c-purple);
  background: transparent;
  border: 0;
  max-width: 100%;
  line-height: 2;
}
.title + * {
  margin-top: 3rem;
}
.title--size-1 {
  font-size: 26px;
}
@media screen and (min-width: 768px), print {
  .title--size-1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .title--size-1 {
    font-size: 60px;
  }
}
.title--size-2 {
  font-size: 26px;
}
@media screen and (min-width: 768px), print {
  .title--size-2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .title--size-2 {
    font-size: 50px;
  }
}
.title--size-3 {
  font-size: 22px;
}
@media screen and (min-width: 1280px) {
  .title--size-3 {
    font-size: 32px;
  }
}
.title span {
  position: relative;
  display: inline-block;
  transform: translateY(-1px);
  max-width: 90vw;
  white-space: nowrap;
}
.title span:nth-of-type(1) {
  z-index: 3;
}
.title span:nth-of-type(2) {
  z-index: 2;
}
.title span:nth-of-type(3) {
  z-index: 1;
}
.title span:after {
  position: absolute;
  top: -7px;
  left: -10px;
  content: "";
  display: block;
  background-color: var(--c-green);
  width: calc(100% + 20px);
  height: calc(100% + 10px);
  z-index: -1;
  transform: rotate(2deg);
  transition: transform 0.2s;
}
.title--purple {
  color: var(--c-white);
}
.title--purple span:after {
  background-color: var(--c-purple);
}

.panels {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width: 1280px) {
  .panels {
    flex-direction: row;
  }
}
.panels .panel {
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .panels .panel {
    flex: 33.33% 1 1;
  }
}
.panels .panel__inner {
  flex: 1;
}

.video-panels {
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .video-panels {
    gap: 64px;
    grid-template-columns: repeat(3, minmax(0, 575px));
  }
}

.video-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-panel a {
  width: 100%;
  position: relative;
}
.video-panel a:before {
  content: "";
  border-radius: 100%;
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  border: 4px solid var(--c-white);
  transition: transform 0.3s;
  background: var(--c-blue) url('data:image/svg+xml,<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 33.04 36.71"><path d="m2.98.26l29.04,16.36c.96.54,1.3,1.76.76,2.72-.18.32-.44.58-.76.76L2.98,36.45c-.96.54-2.18.2-2.72-.76-.17-.3-.26-.64-.26-.98V2C0,.9.9,0,2,0c.34,0,.68.09.98.26Z" style="fill: %23fff;"/></svg>');
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
}
.video-panel a:hover:before {
  transform: translateY(-4px);
}
.video-panel img {
  width: 100%;
  height: auto;
}

.panel {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.panel__inner {
  padding: 64px 32px 200px 32px;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .panel__inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .panel:before {
    content: "";
    display: block;
    aspect-ratio: 16/5;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom;
    transform: translateY(2px);
  }
}
.panel__title {
  font-size: 2rem;
  margin-bottom: 16px;
}
.panel__logo {
  display: block;
  margin: 32px auto 64px auto;
  max-width: 260px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .panel__logo {
    margin: 64px auto 128px auto;
  }
}
.panel--blue .panel__inner {
  background-color: var(--c-blue);
  background-image: url(images/blue-bkg.webp);
  color: var(--c-grey);
}
.panel--blue:before {
  background-image: url(images/blue-jagged.svg);
}
.panel--orange .panel__inner {
  background-color: var(--c-orange);
  background-image: url(images/orange-bkg.webp);
  color: var(--c-purple);
}
.panel--orange:before {
  background-image: url(images/orange-jagged.svg);
}
.panel--yellow .panel__inner {
  background-color: var(--c-yellow);
  background-image: url(images/yellow-bkg.webp);
  color: var(--c-purple);
}
.panel--yellow:before {
  background-image: url(images/yellow-jagged.svg);
}

.message-wall {
  display: grid;
  max-width: 2000px;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .message-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1536px) {
  .message-wall {
    gap: 64px;
  }
}

.message {
  background-color: var(--c-white);
  color: var(--c-purple);
  padding: 32px;
  box-shadow: 10px 10px 0px 3px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.message:before, .message:after {
  content: "";
  display: block;
  width: 27px;
  height: 22px;
  background-color: var(--c-orange);
  mask-image: url(images/quote.svg);
  -webkit-mask-image: url(images/quote.svg);
}
.message mark {
  background-color: var(--c-orange);
  padding: 0.2rem 0.3rem;
}
.message:before {
  margin-bottom: 0.5rem;
}
.message:after {
  transform: rotate(180deg);
  align-self: flex-end;
}
.message figcaption {
  margin-top: 1rem;
  display: block;
}
.message--yellow:before, .message--yellow:after {
  background-color: var(--c-yellow);
}
.message--yellow mark {
  background-color: var(--c-yellow);
}
.message--green:before, .message--green:after {
  background-color: var(--c-green);
}
.message--green mark {
  background-color: var(--c-green);
}
.message.hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.full-width-video {
  display: position;
}
.full-width-video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.full-width-video__media video {
  min-width: 100%;
  min-height: 100%;
}
.full-width-video__content {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 64px;
  z-index: 1;
}
.full-width-video__content p {
  max-width: 1100px;
  position: relative;
}
.full-width-video__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -3;
}

footer.section {
  color: var(--c-grey);
  align-items: flex-start;
  position: relative;
}
footer.section #moveToTop {
  top: 3rem;
  position: absolute;
  right: 32px;
}
@media screen and (min-width: 1024px) {
  footer.section {
    align-items: center;
  }
  footer.section br {
    display: none;
  }
}
footer.section .social-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
  margin-top: 2rem;
}
footer.section .social-menu li img {
  width: 30px;
  height: 30px;
}
footer.section .sign-off {
  width: 100%;
  margin-top: 2rem;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 1024px) {
  footer.section .sign-off {
    width: auto;
    display: flex;
    gap: 10px;
    align-items: center;
  }
}
footer.section .maker {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer.section .maker span {
  flex: 0 0 auto;
}
footer.section .maker img {
  display: block;
  width: 65px;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .footer-menu {
    gap: 32px;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .footer-menu > li + li {
    margin-top: 10px;
  }
}
.footer-menu li a {
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
}
.footer-menu li a:hover {
  color: var(--c-green);
}

.panel-nav-button {
  background-color: var(--c-blue);
  display: block;
  position: fixed;
  z-index: 9;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid var(--c-white);
  opacity: 1;
  visibility: visible;
  padding: 0;
  cursor: pointer;
}
.panel-nav-button.hidden {
  visibility: hidden;
  opacity: 0;
}
.panel-nav-button svg {
  width: 20px;
  height: 20px;
  transform-origin: center center;
}
.panel-nav-button--up {
  right: 70px;
}
.panel-nav-button--up svg {
  transform: translateY(2px);
}
.panel-nav-button--down svg {
  transform: rotate(180deg) translateY(-4px);
}
.panel-nav-button--left svg {
  transform: rotate(-90deg) translateY(-2px) translateX(-3px);
}
.panel-nav-button--right svg {
  transform: rotate(90deg) translateY(-2px) translateX(2px);
}

.about__content p {
  color: var(--c-purple);
  text-align: center;
  max-width: 900px;
}
.about__content a {
  color: currentColor;
  text-decoration: underline;
}
.about__content a:hover {
  text-decoration: none;
}
.about__content p + p {
  margin-top: 20px;
}
.about__content img + p {
  margin-top: 40px;
}
.about__content p + img {
  margin-top: 80px;
}

#mc_embed_shell {
  position: relative;
  width: 100%;
  /*#mce-responses {
  	text-align: center;

  	#mce-error-response {
  		background-color: rgba(255, 2, 1, 1.00);
  		padding: 5px 0;
  	}

  	#mce-success-response {
  		padding-top: 10px;
  		font-size: 1.5rem;
  		font-weight: bold;
  	}
  }*/
}
#mc_embed_shell .mc__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px), print {
  #mc_embed_shell .mc__fields {
    flex-direction: row;
    justify-content: center;
  }
}
#mc_embed_shell input[type=text], #mc_embed_shell input[type=email] {
  padding: 2px 30px;
  width: 100%;
  line-height: 32px;
  border: 0;
  background-color: var(--c-cream);
}
#mc_embed_shell input[type=submit] {
  background-color: var(--c-green);
  color: var(--c-purple);
  border: 0;
  padding: 5px 30px;
  align-self: center;
  line-height: 32px;
  font-size: 18px;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  #mc_embed_shell input[type=submit] {
    align-self: flex-start;
  }
}

#mc_embed_signup div.mce_inline_error {
  display: none !important;
}

#mc_embed_shell input[type=text], #mc_embed_shell input[type=email] {
  border: 3px solid var(--c-cream);
  background-color: var(--c-cream);
}

#mc_embed_signup div#mce-success-response {
  color: var(--c-white);
  font-size: 23px;
  text-align: center;
  padding-bottom: 8px;
}

#mc_embed_signup input.mce_inline_error {
  border-color: red !important;
}

#mc_embed_signup div#mce-error-response {
  color: red;
  font-size: 23px;
  text-align: center;
  padding-top: 8px;
}

.terms {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  display: flex;
  gap: 64px;
  transition: opacity 1s;
  z-index: 100;
}
.terms.active {
  opacity: 1;
  visibility: visible;
}
.terms__inner {
  padding: 64px;
  overflow-y: scroll;
}
.terms h4 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
.terms p + p {
  margin-top: 1rem;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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