@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
/** FONTS **/
/** COLORS **/
/** RESPONSIVE BREAKPOINTS **/
/** TIMING / EASING **/
/** BREAKPOINTS MEDIA **/
/**
 * EXAMPLE:
 * input: @include media('xs') {...}
 * output: @media (min-width: 576px) {...}
 */
/**
 * EXAMPLE:
 * input: @include media-down('xs') {...}
 * output: @media (max-width: 576px) {...}
 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@media (prefers-reduced-motion: no-preference) {
  section > .container > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  section.is-revealed > .container > * {
    opacity: 1;
    transform: translateY(0);
  }
  section.is-revealed > .container > *:nth-child(1) {
    transition-delay: 0.05s;
  }
  section.is-revealed > .container > *:nth-child(2) {
    transition-delay: 0.1s;
  }
  section.is-revealed > .container > *:nth-child(3) {
    transition-delay: 0.2s;
  }
}
/**
	* Normalize base on:
	* ! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize
	* and:
	* https://mattbrictson.com/blog/css-normalize-and-reset
	*
	*/
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
:root {
  line-height: 1.5;
  color-scheme: light only;
}

*,
::before,
::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 3px solid #fedc7b !important;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: "Instrument Sans", sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: normal;
  line-height: 1.15;
  /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%;
  /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
  /* 3. Use a more readable tab size (opinionated). */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  /* Additional font settings */
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

/*
Sections
========
*/
body {
  margin: 0;
  /* Remove the margin in all browsers. */
  background-color: #fbfbfb;
  color: #252525;
}

main {
  display: block;
}

/*
Text elements margins
========
*/
h1,
h2,
h3,
h4,
h5,
figure,
p,
ol,
ul,
blockquote {
  margin: 0;
  color: inherit;
}

/*
links
=====
*/
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/*
Lists in menu
========
*/
nav ol,
nav ul {
  list-style: none;
  padding-inline: 0;
}

/*
Images
========
*/
img {
  display: block;
  max-inline-size: 100%;
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: 700;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: "Instrument Sans", sans-serif, ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=button],
[type=reset],
[type=submit],
::-webkit-file-upload-button {
  -webkit-appearance: button;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[hidden] {
  display: none !important;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search],
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Other things
===========
*/
address {
  font-style: normal;
}

/* Containers */
.container,
.container-fluid {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
}

.container {
  padding-inline: 16px;
}

.content__title {
  font-family: "Instrument Sans", sans-serif;
  color: #252525;
  font-weight: 600;
}
.content__title--1 {
  font-size: 2.25rem;
  line-height: 2.75rem;
}
@media (min-width: 992px) {
  .content__title--1 {
    font-size: 3rem;
    line-height: 3.75rem;
  }
}
.content__title--3 {
  font-size: 1.875rem;
  line-height: 2.375rem;
}
.content__title--4 {
  font-size: 1.5rem;
  line-height: 2rem;
}
.content__text {
  font-family: "Satoshi-Regular", sans-serif;
  font-weight: 400;
}
.content__text--large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.content__text--medium {
  font-size: 1rem;
  line-height: 1.5rem;
}
.content__text--small {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.header {
  padding: 24px 0;
  background-color: rgba(248, 248, 249, 0.8);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.header__brand {
  display: block;
  flex-shrink: 0;
}
.header__logo {
  max-width: 120px;
  display: block;
}
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem 16px;
}
@media (max-width: 991.98px) {
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: rgba(248, 248, 249, 0.8);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
  }
  .header__nav.is-open {
    display: flex;
  }
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    padding: 0;
  }
}
.header__nav a {
  font-family: "Satoshi-Regular", sans-serif;
  color: #252525;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__nav a:hover {
  color: #294ACF;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background-color: #294ACF;
  color: #ffffff;
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 200px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.header__cta:hover {
  background-color: #2c2586;
}
.header__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded=true] .header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #252525;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  overflow: hidden;
  background-color: #ffffff;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .hero {
    padding: 0;
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}
.hero__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__title-highlight {
  color: #93784B;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 3.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .hero__meta {
    margin-bottom: 5rem;
  }
}
.hero__meta-icon {
  flex-shrink: 0;
}
.hero__meta-text {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
  min-width: 180px;
}
.hero__meta-details {
  display: flex;
  flex-direction: column;
}
.hero__date {
  font-weight: 600;
  font-size: 1.5rem;
  color: #252525;
}
.hero__location {
  font-size: 1rem;
  color: #252525;
  font-weight: 500;
}
.hero__text {
  line-height: 1.5;
  color: #252525;
  margin: 0;
  flex: 1 1 260px;
  min-width: 220px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__cta, .hero__cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero__cta {
  background-color: #294ACF;
  color: #ffffff;
  border: 1px solid #294ACF;
}
.hero__cta:hover {
  background-color: #2c2586;
  border-color: #2c2586;
}
.hero__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero__cta-outline {
  background-color: transparent;
  color: #252525;
  border: 1px solid #DADBE2;
}
.hero__cta-outline:hover {
  border-color: #294ACF;
  color: #294ACF;
}
.hero__gallery {
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  .hero__gallery {
    display: block;
  }
}
@media (min-width: 992px) {
  .hero__gallery-swiper {
    height: 620px;
    overflow: hidden;
  }
}
.hero__gallery-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.hero__gallery-slide {
  position: relative;
}
@media (min-width: 992px) {
  .hero__gallery-slide {
    height: 200px;
  }
}
.hero__gallery-img {
  display: block;
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 992px) {
  .hero__gallery-img {
    position: absolute;
    top: 50%;
    right: 0;
    height: 200px;
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  .hero__gallery-slide--variant-1 .hero__gallery-img {
    width: 70%;
    height: 260px;
    transform: translateY(-50%) rotate(3deg);
  }
}
@media (min-width: 992px) {
  .hero__gallery-slide--variant-2 .hero__gallery-img {
    width: 100%;
    height: 360px;
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  .hero__gallery-slide--variant-3 .hero__gallery-img {
    width: 60%;
    height: 260px;
    transform: translateY(-50%) rotate(-3deg);
  }
}

.steps {
  padding: 3rem 0;
  background-color: #080A18;
}
@media (min-width: 992px) {
  .steps {
    padding: 5rem 0;
  }
}
.steps__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .steps__inner {
    grid-template-columns: 5fr 6fr;
    gap: 7rem;
    align-items: start;
  }
}
.steps__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem;
}
@media (min-width: 992px) {
  .steps__title {
    font-size: 2.5rem;
    margin: 0 0 5rem;
  }
}
.steps__gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  background-color: #191919;
  max-height: 320px;
}
@media (min-width: 992px) {
  .steps__gallery {
    aspect-ratio: 4/3;
  }
}
.steps__gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.steps__gallery-img.is-active {
  opacity: 1;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .steps__list {
    gap: 2.5rem;
  }
}
.steps__item {
  display: flex;
  gap: 0.75rem;
  cursor: pointer;
  outline: none;
}
@media (min-width: 992px) {
  .steps__item {
    gap: 1rem;
  }
}
.steps__number {
  flex-shrink: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #747474;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .steps__number {
    font-size: 1.5rem;
  }
}
.steps__item-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #DADBE2;
  margin: 0 0 0.375rem;
  transition: color 0.2s ease;
}
@media (min-width: 992px) {
  .steps__item-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
  }
}
.steps__item-text {
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #ffffff;
  margin: 0;
}
.steps__item.is-active .steps__number {
  color: #DCBE8C;
}
.steps__item.is-active .steps__item-title {
  color: #ffffff;
}

.audience {
  padding: 3rem 0;
  background-color: #080A18;
}
@media (min-width: 992px) {
  .audience {
    padding: 5rem 0;
  }
}
.audience__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1200px) {
  .audience__row {
    grid-template-columns: 5fr 6fr;
    gap: 7rem;
    margin-bottom: 3.5rem;
  }
}
.audience__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .audience__title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
  }
}
.audience__text {
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}
.audience__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.audience__item {
  display: flex;
  gap: 1rem;
}
.audience__item-icon {
  flex-shrink: 0;
  color: #DCBE8C;
}
.audience__item-title {
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.2;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem;
}
.audience__item-text {
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}
.audience__cta-wrap {
  display: flex;
  justify-content: center;
}
.audience__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #294ACF;
  color: #ffffff;
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.9375rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.audience__cta:hover {
  background-color: #2c2586;
}
.audience__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.startups {
  padding: 3rem 0;
  background-color: rgba(248, 248, 249, 0.8);
}
@media (min-width: 992px) {
  .startups {
    padding: 3.75rem 0;
  }
}
.startups__intro {
  text-align: center;
  max-width: 632px;
  margin: 0 auto 2.5rem;
}
.startups__title {
  font-size: 2rem;
  font-weight: 600;
  color: #252525;
  margin: 0 0 1rem;
}
.startups__subtitle {
  color: #4b4b4b;
  margin: 0;
}
.startups__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .startups__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.startups__card {
  background-color: #ffffff;
  border: 1px solid #DADBE2;
  border-radius: 8px;
  padding: 1.5rem;
}
.startups__card-logo {
  display: block;
  max-width: 130px;
  max-height: 36px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.5rem;
}
.startups__card-name {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #252525;
  margin: 0 0 0.75rem;
}
.startups__card-presenter {
  display: flex;
  flex-direction: column;
}
.startups__card-presenter-label {
  font-size: 0.75rem;
  color: #747474;
}
.startups__card-presenter-name {
  color: #252525;
  font-weight: 500;
}

.pricing {
  padding: 3.75rem 0;
  background-color: #ffffff;
}
.pricing__inner {
  text-align: center;
}
.pricing__intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.pricing__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2.5rem;
}
@media (min-width: 992px) {
  .pricing__title {
    font-size: 3rem;
  }
}
.pricing__title-highlight {
  color: #93784B;
}
.pricing__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}
.pricing__location {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #252525;
}
.pricing__text {
  font-family: "Satoshi-Regular", sans-serif;
  margin: 0 0 0.5rem;
}
.pricing__text:last-child {
  margin-bottom: 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 992px) {
  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pricing__card {
  position: relative;
  border-radius: 12px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .pricing__card {
    padding: 3.75rem 1.5rem;
  }
}
.pricing__card--active {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 32px rgba(41, 74, 207, 0.0509803922);
  border: 1px solid #BFC9F1;
}
.pricing__card--sold-out::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #DADBE2;
  border-radius: 12px;
}
.pricing__card--upcoming, .pricing__card--sold-out {
  opacity: 0.5;
  border: 1px solid #BCBFCA;
}
.pricing__card-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing__card--sold-out .pricing__card-content {
  filter: blur(2px);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.pricing__card-label {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #252525;
  margin: 0;
}
.pricing__card--upcoming .pricing__card-label, .pricing__card--sold-out .pricing__card-label {
  color: #747474;
  font-weight: 500;
}
.pricing__card-price {
  display: inline-block;
  align-self: center;
  background-color: #DCBE8C;
  color: #252525;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.25rem 0.75rem;
}
.pricing__card-deadline {
  font-family: "Satoshi-Regular", sans-serif;
  color: #252525;
  margin: 0;
}
.pricing__card-deadline strong {
  font-weight: 600;
}
.pricing__card--upcoming .pricing__card-deadline, .pricing__card--sold-out .pricing__card-deadline {
  color: #747474;
}
.pricing__card-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #525667;
  color: #DADBE2;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.pricing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background-color: #294ACF;
  color: #ffffff;
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.9375rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.pricing__cta:hover {
  background-color: #2c2586;
}
.pricing__cta-icon {
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.testimonials {
  padding: 3rem 0;
  background-color: #080A18;
  overflow: hidden;
}
@media (min-width: 992px) {
  .testimonials {
    padding: 5rem 0;
  }
}
.testimonials__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  .testimonials__title {
    margin: 0 0 3.75rem;
  }
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 1.5rem;
}
.testimonials__quote {
  font-family: "Satoshi-Regular", sans-serif;
  color: #ffffff;
  margin: 0;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonials__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__avatar--placeholder {
  background-color: #ffffff;
}
.testimonials__name {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
.testimonials__role {
  font-family: "Satoshi-Regular", sans-serif;
  font-size: 0.875rem;
  color: #747474;
}
.testimonials__carousel {
  position: relative;
  overflow: hidden;
}
.testimonials__swiper {
  overflow: visible;
}
.testimonials__slide {
  height: auto;
  display: flex;
}
.testimonials__slide .testimonials__card {
  width: 100%;
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonials__pagination {
  position: static !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: background-color 0.2s ease;
}
.testimonials__pagination .swiper-pagination-bullet-active {
  background-color: #DCBE8C;
}

.partners {
  padding: 2rem 0;
  background: radial-gradient(35.56% 73.14% at 100.66% 50%, #F4EBDC 0%, #FFFFFF 100%);
}
@media (min-width: 992px) {
  .partners {
    padding: 3.75rem 0;
  }
}
.partners__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1200px) {
  .partners__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
  }
}
.partners__content, .partners__logos {
  min-width: 0;
}
.partners__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
@media (min-width: 992px) {
  .partners__title {
    font-size: 2.625rem;
  }
}
.partners__text {
  line-height: 1.5;
  margin: 0;
}
.partners__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .partners__logos {
    padding: 0 3rem;
  }
}
.partners__logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1/1;
  border-bottom: 1px solid var(--secondary-100, #DADBE2);
  max-height: 180px;
}
.partners__logo-cell--main {
  grid-column: 1/-1;
  aspect-ratio: 2/1;
  padding: 1rem;
}
.partners__logo-cell--col-left {
  border-right: 1px solid var(--secondary-100, #DADBE2);
}
.partners__logo-cell--last-row {
  border-bottom: none;
}
.partners__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__logo {
  display: block;
  max-width: 150px;
  width: auto;
  height: auto;
  padding: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.calendar {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .calendar {
    padding: 2.5rem 0;
  }
}
.calendar__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #252525;
  text-align: center;
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  .calendar__title {
    font-size: 2.25rem;
    margin: 0 0 2.5rem;
  }
}
.calendar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .calendar__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .calendar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.calendar__card {
  position: relative;
  border: 1px solid #DADBE2;
  border-radius: 8px;
  padding: 1rem;
}
.calendar__card--next {
  border-color: #DCBE8C;
}
.calendar__card--past {
  opacity: 0.5;
}
.calendar__badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  background-color: #DCBE8C;
  color: #252525;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  white-space: nowrap;
  z-index: 999;
}
.calendar__city {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.calendar__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.calendar__date-icon {
  flex-shrink: 0;
}
.calendar__text {
  font-size: 0.875rem;
  margin: 0;
}
.calendar__carousel {
  position: relative;
  margin: 0 -16px;
  padding: 14px 16px 0;
  overflow-x: hidden;
}
.calendar__swiper {
  overflow: visible;
}
.calendar__slide {
  height: auto;
  display: flex;
}
.calendar__slide .calendar__card {
  width: 100%;
}

.faq {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .faq {
    padding: 2.5rem 0;
  }
}
.faq__title {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  .faq__title {
    font-size: 2.25rem;
    margin: 0 0 3.75rem;
  }
}
.faq__list {
  max-width: 1046px;
  margin: 0 auto;
  border-top: 1px solid #DCBE8C;
}
.faq__item {
  border-bottom: 1px solid #DCBE8C;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: none;
  border: 0;
  padding: 2.25rem 1rem;
  cursor: pointer;
  text-align: left;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #252525;
}
@media (min-width: 992px) {
  .faq__question {
    font-size: 1.125rem;
  }
}
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #93784B;
  transform: translate(-50%, -50%);
}
.faq__icon::before {
  width: 100%;
  height: 2px;
}
.faq__icon::after {
  width: 2px;
  height: 100%;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1rem;
  transition: grid-template-rows 0.4s ease;
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer-inner {
  overflow: hidden;
}
.faq__answer-text {
  margin: 0 0 1.25rem;
}

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 3rem 0;
  background-color: #080A18;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cta-banner {
    min-height: 528px;
  }
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 775px;
  text-align: center;
}
.cta-banner__title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .cta-banner__title {
    font-size: 3rem;
  }
}
.cta-banner__text {
  font-size: 0.875rem;
  color: #ffffff;
  margin: 0 0 2.5rem;
}
@media (min-width: 992px) {
  .cta-banner__text {
    font-size: 1.125rem;
  }
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cta-banner__cta, .cta-banner__cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  padding: 1.125rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cta-banner__cta {
  background-color: #294ACF;
  color: #ffffff;
  border: 1px solid #294ACF;
}
.cta-banner__cta:hover {
  background-color: #2c2586;
  border-color: #2c2586;
}
.cta-banner__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cta-banner__cta-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid #ffffff;
}
.cta-banner__cta-outline:hover {
  border-color: #DADBE2;
}

.media-patrons {
  padding: 3rem 0;
  background-color: rgba(248, 248, 249, 0.8);
}
@media (min-width: 992px) {
  .media-patrons {
    padding: 5rem 0;
  }
}
.media-patrons__intro {
  max-width: 834px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.media-patrons__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .media-patrons__title {
    font-size: 2.25rem;
  }
}
.media-patrons__text {
  margin: 0;
  margin-bottom: 2.5rem;
}
.media-patrons__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}
.media-patrons__logo-link {
  display: block;
}
.media-patrons__logo {
  display: block;
  max-width: 150px;
  max-height: 123px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.website__footer {
  background-color: #080A18;
  padding-block: 2rem;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-decoration: none;
  flex-shrink: 0;
}
.footer__logo {
  display: block;
  max-width: 130px;
  height: auto;
}
.footer__company-name {
  font-size: 0.875rem;
  color: #747474;
}
.footer__nav {
  flex-shrink: 0;
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav-list a {
  color: #DADBE2;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__nav-list a:hover {
  color: #ffffff;
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background-color: #294ACF;
  color: #ffffff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.footer__cta:hover {
  background-color: #2c2586;
}
.footer__cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}