html {
  --primary: #1d3c6b;
  --primary-dark: #0d192b;
  --primary-text: #5a5e63;
  --light-text: #787cad;
  --dark-text: #242424;
  --on-dark-text: white;
  --dark-border: #aca8d4;
  --light-border: #e0e0e0;
  --background: #eef3f7;
  --bright-background: white;
  --soft-highlight: #f5f5f5;
  --link: black;
  --font-size-xxxl: 3rem;
  --font-size-xxl: 2.25rem;
  --font-size-xl: 1.5rem;
  --font-size-lg: 1.2rem;
  --font-size-md: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-xs: 0.75rem;
  --line-height-xxxl: 2.5;
  --line-height-xxl: 2;
  --line-height-xl: 1.75;
  --line-height-lg: 1.5;
  --line-height-md: 1.25;
  --line-height-sm: 1;
  --line-height-xs: 0.875;
  --space-size-xxxl: 5rem;
  --space-size-xxl: 4rem;
  --space-size-xl: 3rem;
  --space-size-lg: 2rem;
  --space-size-md: 1.5rem;
  --space-size-sm: 1rem;
  --space-size-xs: 0.5rem;
  --large-border-radius: 10px;
  --medium-border-radius: 5px;
  --small-border-radius: 3px;
}

/* Source: https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
  padding: 0;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 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 body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  background: var(--background);
}

p {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

pre code {
  display: block;
  padding: 0.5rem;
  text-wrap: wrap;
}

ul, ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

code {
  vertical-align: bottom;
}

body {
  position: relative;
}

a {
  color: var(--link);
  text-underline-offset: 0.2ex;
  transition: text-decoration-thickness 200ms ease;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}

.dark {
  background: var(--primary);
}
.dark, .dark a {
  color: var(--on-dark-text);
}

main > section {
  margin-top: 6em;
  margin-bottom: 6em;
}

html {
  font-family: "Sarabun", sans-serif;
  -webkit-font-smoothing: antialiased;
}

p, li {
  color: var(--primary-text);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-lg);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5rem;
  line-height: 1.5rem;
}
h1 + p, h1 + ul, h1 + ol, h1 + blockquote, h1 + table, h2 + p, h2 + ul, h2 + ol, h2 + blockquote, h2 + table, h3 + p, h3 + ul, h3 + ol, h3 + blockquote, h3 + table, h4 + p, h4 + ul, h4 + ol, h4 + blockquote, h4 + table, h5 + p, h5 + ul, h5 + ol, h5 + blockquote, h5 + table, h6 + p, h6 + ul, h6 + ol, h6 + blockquote, h6 + table {
  margin-top: 0.5rem;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--primary);
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: underline;
}

h1, .u-step-1 {
  font-size: var(--font-size-xxxl);
  line-height: var(--line-height-xl);
  margin-bottom: var(--space-size-xl);
}

h2, .u-step-2 {
  font-size: var(--font-size-xxl);
  line-height: var(--line-height-lg);
  margin-bottom: var(--space-size-sm);
}

h3, .u-step-3 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-md);
}

h4, .u-step-4 {
  font-size: var(--font-size-lg);
}

h5, .u-step-5 {
  font-size: var(--font-size-md);
}

h6, .u-step-6 {
  font-size: var(--font-size-sm);
}

.dropdown > button.focus-rotate svg {
  transition: transform 250ms ease;
}
.dropdown:focus-within:not(.dropdown-js) > .dropdown-menu, .dropdown.dropdown-js.is-active > .dropdown-menu {
  visibility: visible;
  max-height: none;
}
.dropdown:focus-within:not(.dropdown-js) > button.focus-rotate svg, .dropdown.dropdown-js.is-active > button.focus-rotate svg {
  transform: rotate(90deg);
}

.dropdown-menu {
  visibility: hidden;
  max-height: 0;
}

.wrapper {
  margin-inline: auto;
  padding-inline: 1rem;
  max-width: 80rem;
  margin-top: 0;
}

.v-center {
  display: flex;
  align-items: center;
}

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

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.tight-container {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.icon {
  width: 1.4rem;
  height: 1.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0;
  border-radius: 20em;
  transition: background 100ms ease-out;
}
.icon svg {
  transition: opacity 300ms ease-out;
  padding: 0.3rem;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.icon:hover {
  background: rgba(0, 0, 0, 0.2);
}
.icon:hover svg {
  opacity: 1;
}

.dark .icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.highlight-video {
  object-fit: cover;
  object-position: center;
  height: 500px;
  width: 100%;
}

.card {
  background: var(--bright-background);
  position: relative;
  border-radius: var(--small-border-radius);
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card .media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.card .media img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform 250ms ease;
}
.card:hover .media img {
  transform: scale(1.1);
}
.card .text {
  padding: 1rem;
}
.card .text h3 {
  margin-top: 0;
}
.card .text h3 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: 1rem;
  row-gap: 1rem;
}

footer.main {
  padding-bottom: 0.5rem;
}
footer.main a {
  text-decoration: none;
  opacity: 0.8;
}
footer.main a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer.main .top {
  padding: 2rem 0;
}
footer.main .top h4 {
  margin-bottom: 1rem;
}
footer.main .top nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
footer.main .top nav a {
  display: block;
}
footer.main .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  font-size: var(--font-size-sm);
}
footer.main .bottom nav {
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
footer.main .bottom .socials {
  display: flex;
  justify-content: end;
  column-gap: 0.5rem;
}
footer.main .bottom .socials .icon {
  width: 2rem;
  height: 2rem;
}
footer.main .bottom .socials .icon svg {
  stroke: var(--on-dark-text);
}

.split-with-image {
  display: flex;
  flex-wrap: wrap;
  background: var(--bright-background);
  border-radius: var(--small-border-radius);
}
.split-with-image .col {
  flex-basis: 315px;
  flex-grow: 1;
}
.split-with-image .col.img-cover:first-child img {
  border-top-left-radius: var(--small-border-radius);
  border-bottom-left-radius: var(--small-border-radius);
}
.split-with-image .col.img-cover:last-child img {
  border-top-right-radius: var(--small-border-radius);
  border-bottom-right-radius: var(--small-border-radius);
}
.split-with-image .content {
  padding: 2rem;
}
.split-with-image .img-cover picture {
  height: 100%;
}
.split-with-image .img-cover img {
  object-fit: cover;
  object-position: center;
  min-height: 400px;
  height: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}
.split-with-image.reverse .img-cover {
  order: 2;
}

.button {
  background: var(--primary);
  color: var(--on-dark-text);
  text-decoration: none;
  border: 0;
  border-radius: var(--small-border-radius);
  padding: var(--space-size-sm) var(--space-size-sm);
  cursor: pointer;
  transition: background 200ms ease-out;
  font-size: var(--font-size-md);
  font-weight: bold;
  display: inline-block;
}
.button:hover {
  background: var(--primary-dark);
}
.button.push-top {
  margin-top: var(--space-size-sm);
}

.stats {
  container-type: inline-size;
  container-name: stats-container;
}
.stats dl {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--primary);
  color: var(--on-dark-text);
  border: 1px solid #333;
  width: 100%;
  padding: var(--space-size-sm) var(--space-size-lg);
  border-radius: var(--large-border-radius);
  margin-top: 4rem;
}
.stats dl .stat {
  display: flex;
  flex-direction: column-reverse;
  flex-grow: 1;
  padding: var(--space-size-lg) 0;
}
.stats dl dt {
  text-align: center;
}
.stats dl dd {
  margin-left: 0;
  font-size: var(--font-size-xxxl);
  text-align: center;
  line-height: var(--line-height-sm);
}

@container stats-container (min-width: 450px) {
  .stats dl {
    grid-template-columns: repeat(2, 1fr);
  }
}
@container stats-container (min-width: 900px) {
  .stats dl {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.full-image-container {
  padding-top: var(--space-size-xs);
  position: relative;
  color: var(--on-dark-text);
  min-height: 600px;
  max-height: 1000px;
}
.full-image-container .full-image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.full-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, black 80%);
  z-index: 1;
}
.full-image-container .wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
}

.events {
  background: var(--bright-background);
  margin-top: -50px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--small-border-radius);
  padding: var(--space-size-md) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  row-gap: 2em;
}
.events .event {
  text-align: center;
  border-right: 1px solid var(--light-border);
  padding: 0 var(--space-size-sm);
}
.events .event:last-child {
  border-right: 0;
}
.events .event time {
  font-size: var(--font-size-lg);
  color: var(--primary);
}
.events .event h3 {
  margin-top: var(--space-size-xs);
}
.events .event p {
  color: var(--light-text);
  font-size: var(--font-size-md);
}

nav.main-desktop {
  font-size: 1.2rem;
  display: flex;
  column-gap: 1rem;
  align-items: center;
}
nav.main-desktop a,
nav.main-desktop button {
  text-decoration: none;
  text-underline-offset: 0.3ex;
  border: 0;
  background: none;
  cursor: pointer;
}
nav.main-desktop a:hover,
nav.main-desktop button:hover span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--primary);
}
nav.main-desktop .dropdown > button svg {
  height: 0.8em;
  position: relative;
  top: 3px;
  transition: transform 250ms ease;
}
nav.main-desktop .dropdown .dropdown-menu {
  transform: rotateX(-90deg);
  transform-origin: top center;
  opacity: 0.3;
  transition: transform 250ms ease, opacity 250ms ease;
}
nav.main-desktop .dropdown:focus-within:not(.dropdown-js) > button svg, nav.main-desktop .dropdown.dropdown-js.is-active > button svg {
  transform: rotate(90deg);
}
nav.main-desktop .dropdown:focus-within:not(.dropdown-js) > .dropdown-menu, nav.main-desktop .dropdown.dropdown-js.is-active > .dropdown-menu {
  transform: rotateX(0);
  opacity: 1;
}
nav.main-desktop .dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
}
nav.main-desktop .dropdown-content {
  display: grid;
  border-top: 2px solid var(--light-border);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 24px 30px 4px;
  border-bottom-left-radius: var(--small-border-radius);
  border-bottom-right-radius: var(--small-border-radius);
  padding: var(--space-size-md);
  margin-top: 1.5rem;
  background: var(--bright-background);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1em;
}
nav.main-desktop .dropdown-content header {
  color: var(--light-text);
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}
nav.main-desktop .dropdown-content section.highlight {
  padding: var(--space-size-md);
  padding-right: var(--space-size-lg);
  text-align: center;
}
nav.main-desktop .dropdown-content section.highlight .media {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  border-radius: var(--small-border-radius);
}
nav.main-desktop .dropdown-content section.highlight .media img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform 250ms ease;
}
nav.main-desktop .dropdown-content section.highlight a:hover img {
  transform: scale(1.1);
}
nav.main-desktop .dropdown-content ul {
  list-style: none;
  padding: 0;
}
nav.main-desktop .dropdown-content ul li {
  margin: var(--space-size-xs) 0;
}
nav.main-desktop .dropdown-content ul a {
  text-decoration: none;
  color: var(--dark-text);
  opacity: 0.8;
  font-weight: bold;
}
nav.main-desktop .dropdown-content ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

.main-mobile > button.mobile-menu-button {
  text-decoration: none;
  text-underline-offset: 0.3ex;
  border: 0;
  background: none;
  cursor: pointer;
  outline: 1px solid rgba(255, 255, 255, 0);
  transition: outline 200ms ease;
  display: flex;
}
.main-mobile > button.mobile-menu-button svg {
  width: 2em;
}
.main-mobile > button.mobile-menu-button:hover {
  outline: 1px solid var(--primary);
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button {
  width: 100%;
  border: 0;
  background: var(--bright-background);
  font-size: var(--font-size-lg);
  font-weight: bold;
  padding: var(--space-size-sm);
  cursor: pointer;
  text-align: left;
  border-top: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button svg {
  width: 1rem;
  margin-right: var(--space-size-sm);
}
.main-mobile .mobile-dropdown-content .dropdown-menu-button:hover {
  background: var(--background);
}
.main-mobile:focus-within:not(.dropdown-js) .mobile-menu, .main-mobile.dropdown-js.is-active .mobile-menu {
  transform: translateX(0);
}
.main-mobile .mobile-menu {
  position: absolute;
  top: 86px;
  right: 0;
  background: var(--bright-background);
  z-index: 200;
  max-width: 400px;
  width: 100%;
  transform: translateX(2000px);
  transition: transform 200ms ease;
}
.main-mobile .mobile-menu .inner-mobile-menu {
  border-top: 1px solid var(--light-border);
  padding: var(--space-size-sm);
  font-size: var(--font-size-lg);
}
.main-mobile .mobile-menu .inner-mobile-menu header {
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin-bottom: 0;
  margin-top: var(--space-size-md);
}
.main-mobile .mobile-menu .inner-mobile-menu ul {
  margin: 0;
}

header.top {
  background: var(--bright-background);
  z-index: 100;
  position: relative;
}
header.top nav.sub {
  display: none;
  font-size: var(--font-size-md);
  padding: 0.25rem;
}
@media screen and (min-width: 760px) {
  header.top nav.sub {
    display: block;
  }
}
header.top nav.sub .wrapper {
  display: flex;
  column-gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}
header.top nav.sub a {
  text-decoration: none;
  opacity: 0.8;
}
header.top nav.sub a:hover {
  text-decoration: underline;
  opacity: 1;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: var(--space-size-sm);
  padding-bottom: var(--space-size-sm);
  container-type: inline-size;
  container-name: logo-bar-container;
}
.logo-bar nav.main-desktop {
  display: none;
}
.logo-bar nav.main-mobile {
  display: block;
}
.logo-bar h1 {
  margin: 0;
  padding: 0;
  line-height: 1rem;
}
.logo-bar h1 img {
  height: 100%;
  max-height: 55px;
}
@media screen and (min-width: 760px) {
  .logo-bar nav.main-desktop {
    display: flex;
  }
  .logo-bar nav.main-mobile {
    display: none;
  }
}
@media screen and (min-width: 760px) {
  .logo-bar {
    padding-top: var(--space-size-lg);
    padding-bottom: var(--space-size-lg);
  }
}

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