/* Core Styles */
@font-face {
  font-family: "SourceSansPro";
  src: url("../fonts/SourceSansPro-Regular.woff2") format("woff2"), url("SourceSansPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SourceSansPro";
  src: url("../fonts/SourceSansPro-Light.woff2") format("woff2"), url("SourceSansPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SourceSansPro";
  src: url("../fonts/SourceSansPro-Semibold.woff2") format("woff2"), url("SourceSansPro-Semibold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SourceSansPro";
  src: url("../fonts/SourceSansPro-Bold.woff2") format("woff2"), url("SourceSansPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SourceSerif";
  src: url("../fonts/SourceSerif4-Regular.woff2") format("woff2"), url("SourceSerif4-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SourceSerif";
  src: url("../fonts/SourceSerif4-Bold.woff2") format("woff2"), url("SourceSerif4-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "SpecialElite";
  src: url("../fonts/SpecialElite-Regular.woff2") format("woff2"), url("SpecialElite-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "VT323";
  src: url("../fonts/VT323-Regular.woff2") format("woff2"), url("VT323-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}
*,
::after,
::before {
  box-sizing: border-box;
}
:root {
  --h1font: 2.25rem;
  --h2font: 2.25rem;
  --h3font: 2.25rem;
  --h4font: 1.125rem;
  --h5font: 1.125rem;
  --body: 1.125rem;
  --intro: 1.5rem;
  --link: 1rem;
  --container-padding: 50px;
  --content-start: 180px;
}
@media screen and (max-width: 1400px) {
  :root {
    --h1font: 2rem;
    --h2font: 2rem;
    --h3font: 2rem;
    --body: 1rem;
    --link: 0.875rem;
    --container-padding: 30px;
    --content-start: 120px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --content-start: 180px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --h1font: 1.5rem;
    --h2font: 1.5rem;
    --h3font: 1.5rem;
    --h4font: 0.875rem;
    --h5font: 12px;
    --body: 0.875rem;
    --intro: 1rem;
    --link: 0.75rem;
    --container-padding: 20px;
  }
}
html * {
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: var(--body);
  line-height: 1.3;
  color: #FFFFFF;
  font-family: "SourceSansPro", sans-serif, Arial;
  background-color: #3098ed;
  font-weight: normal;
}
a {
  text-decoration: none;
  color: inherit;
}
::selection {
  color: #FFFFFF;
  background: #9747FF;
}
.content-wrapper {
  margin: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
/* Third Party Styles */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: flex;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  background-color: white;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .hamburger {
    width: 25px;
    height: 25px;
    border-radius: 0;
  }
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 840px) {
  .hamburger-box {
    width: 25px;
  }
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 20px;
  height: 2px;
  background-color: #9747FF;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
@media screen and (max-width: 840px) {
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 25px;
  }
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}
/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #9747FF;
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  background-color: #9747FF;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #9747FF;
}
/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}
/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}
/* Shared Styles */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 0;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  text-decoration: none;
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * 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;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
button,
input,
optgroup,
select,
textarea {
  font-weight: normal;
  font-family: "SourceSansPro", sans-serif, Arial;
}
h1,
.h1 {
  font-size: var(--h1font);
  font-weight: normal;
}
h2,
.h2 {
  font-size: var(--h2font);
  font-weight: normal;
}
h3,
.h3 {
  font-size: var(--h3font);
  font-weight: normal;
}
h4,
.h4 {
  font-size: var(--h4font);
  font-weight: normal;
}
h5,
.h5 {
  font-size: var(--h5font);
  font-weight: normal;
}
p {
  margin: 20px 0 0;
  font-size: var(--body);
}
p:first-child {
  margin-top: 0;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}
.no-wrap {
  white-space: nowrap;
}
@media screen and (max-width: 840px) {
  .tablet-hide {
    display: none !important;
  }
}
.tablet-show {
  display: none !important;
}
@media screen and (max-width: 840px) {
  .tablet-show {
    display: block !important;
  }
}
.overflow-hidden {
  overflow: hidden;
}
a:hover {
  text-decoration: underline;
}
.mCSB_scrollTools {
  width: 5px;
  background-color: rgba(0, 0, 0, 0.05);
}
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #9747FF;
}
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}
.mouse-scroll {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .mouse-scroll {
    bottom: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .mouse-scroll {
    bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .mouse-scroll {
    left: 50vw;
  }
}
.mouse-scroll p {
  margin-top: 0;
  margin-left: 20px;
  font-weight: 500;
  font-size: var(--intro);
  letter-spacing: -0.2px;
  display: none;
}
@media screen and (max-width: 1400px) {
  .mouse-scroll p {
    font-size: var(--body);
    margin-left: 10px;
  }
}
.mouse-scroll .icon-scroll {
  width: 28px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 25px;
  position: relative;
  display: block;
  left: 0;
}
@media screen and (max-width: 1400px) {
  .mouse-scroll .icon-scroll {
    height: 35px;
    width: 20px;
  }
}
.mouse-scroll .icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  margin-left: -4px;
  top: 8px;
  left: 50%;
  position: absolute;
  border-radius: 4px;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: scroll;
  animation-direction: alternate;
}
@media screen and (max-width: 1400px) {
  .mouse-scroll .icon-scroll:before {
    width: 6px;
    height: 6px;
    top: 6px;
    margin-left: -3px;
    animation-name: scroll-md;
  }
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(22px);
  }
}
@keyframes scroll-md {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(14px);
  }
}
[section-index="0"] .mouse-scroll {
  display: none;
}
[section-index="1"] .mouse-scroll p {
  display: block;
}
.img-responsive {
  display: block;
  max-width: 100%;
}
.btn {
  background: #9747FF;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
.btn:hover {
  background: #FFFFFF;
  color: #9747FF;
  text-decoration: none;
}
.btn:hover:after {
  filter: none;
}
.slick-arrow {
  background: #FFFFFF;
  border: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1400px) {
  .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.slick-arrow:hover:not(.slick-disabled) {
  background: #9747FF;
  cursor: pointer;
}
.slick-arrow:hover:not(.slick-disabled):before {
  filter: brightness(0) invert(1);
}
.slick-arrow:before {
  content: '';
  background: url("../images/icons/arrow-left.svg") no-repeat;
  background-size: contain;
  width: 15px;
  height: 30px;
  display: block;
  margin-left: -5px;
}
@media screen and (max-width: 1400px) {
  .slick-arrow:before {
    width: 10px;
    height: 15px;
  }
}
.slick-arrow.slick-next:before {
  transform: rotate(180deg);
  margin-left: 0;
}
.slick-arrow.slick-disabled {
  opacity: 0.5;
}
.download-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .download-container {
    flex-wrap: wrap;
  }
}
.download-container > p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .download-container > p {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 840px) {
  .download-container > p {
    margin-bottom: 10px;
  }
}
.download-container .btn {
  height: max-content;
  text-wrap: nowrap;
}
.btn-download {
  background: #9747FF;
  color: #FFFFFF;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  height: max-content;
  text-align: left;
}
.btn-download.open,
.btn-download:hover {
  background: #FFFFFF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.btn-download.open:after,
.btn-download:hover:after {
  filter: none;
}
.btn-download.open p,
.btn-download:hover p {
  color: #9747FF;
}
.btn-download.open a,
.btn-download:hover a {
  color: #2D184D;
}
.btn-download.open {
  border-radius: 20px 20px 0 0;
}
.btn-download.open a {
  opacity: 1;
}
.btn-download.open div {
  top: 100%;
  border-radius: 0 0 20px 20px;
}
.btn-download > div {
  position: absolute;
  width: 100%;
  left: 0;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  padding: 0 15px 10px;
  display: none;
  z-index: 1;
}
.btn-download * {
  font-size: 14px;
  font-size: 0.875rem;
}
.btn-download a {
  padding-top: 5px;
  margin-top: 5px;
  border-top: solid 1px #9747FF;
  opacity: 0;
  display: block;
  text-decoration: none;
}
.btn-download p {
  position: relative;
  z-index: 2;
  padding: 10px 15px 10px 15px;
  padding-right: 20px;
}
.row {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -10px;
}
[class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}
.col,
.flex-grow {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}
@media screen and (min-width: 641px) {
  .col-12 {
    width: 100%;
  }
  .col-11 {
    width: 91.66666667%;
  }
  .col-10 {
    width: 83.33333333%;
  }
  .col-9 {
    width: 75%;
  }
  .col-8 {
    width: 66.66666667%;
  }
  .col-7 {
    width: 58.33333333%;
  }
  .col-6 {
    width: 50%;
  }
  .col-5 {
    width: 41.66666667%;
  }
  .col-4 {
    width: 33.33333333%;
  }
  .col-3 {
    width: 25%;
  }
  .col-2 {
    width: 16.66666667%;
  }
  .col-1 {
    width: 8.33333333%;
  }
}
@media screen and (min-width: 841px) {
  .col-md {
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
}
@media screen and (min-width: 1025px) {
  .col-lg {
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
}
@media screen and (max-width: 640px) {
  .row {
    flex-direction: column;
    margin: 0;
  }
  .row .col-4 {
    margin-top: 20px;
  }
  [class*=col-] {
    width: 100%;
    padding: 0;
  }
}
/* components Styles */
.main-header {
  position: fixed;
  padding-top: var(--container-padding);
  pointer-events: none;
  width: 100%;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .main-header {
    background-color: white;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
  }
}
.main-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 840px) {
  .main-header__wrapper {
    align-items: center;
  }
}
.main-header__logo {
  pointer-events: all;
  display: block;
}
.main-header__logo img {
  max-width: 100%;
  vertical-align: inherit;
}
@media screen and (max-width: 1400px) {
  .main-header__logo img {
    height: 60px;
  }
}
@media screen and (max-width: 840px) {
  .main-header__logo img {
    height: auto;
    vertical-align: middle;
  }
}
.main-header .hamburger {
  pointer-events: all;
  z-index: 1;
}
.navigation-active .main-header .hamburger .hamburger-inner,
.navigation-active .main-header .hamburger .hamburger-inner::before,
.navigation-active .main-header .hamburger .hamburger-inner::after {
  width: 20px;
}
.main-footer {
  position: relative;
}
main:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease, background 0.5s ease;
}
main.slider-open::before {
  background: #3098ed;
  opacity: 0.8;
  z-index: 2;
}
.stories-slider.slick-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1720px;
  margin: auto;
  position: fixed;
  width: 100%;
  opacity: 0;
  z-index: -1;
  top: 5%;
  left: 0;
  right: 0;
  padding: 0px 20px;
}
@media screen and (max-height: 700px) and (min-width: 1200px) {
  .stories-slider.slick-slider {
    top: 20px;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider {
    top: 60px;
  }
}
.stories-slider.slick-slider.show {
  opacity: 1;
  z-index: 2;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider.show .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.stories-slider.slick-slider.show .slick-arrow.slick-prev {
  margin-left: 0;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider.show .slick-arrow.slick-prev {
    left: 20px;
  }
}
.stories-slider.slick-slider.show .slick-arrow.slick-next {
  margin-right: 0;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider.show .slick-arrow.slick-next {
    right: 20px;
  }
}
.stories-slider.slick-slider.show .slick-list {
  margin-top: 0;
}
.stories-slider.slick-slider .slick-arrow.slick-prev {
  margin-left: -200px;
}
.stories-slider.slick-slider .slick-arrow.slick-next {
  margin-right: -200px;
}
.stories-slider.slick-slider .slick-list {
  width: calc(100% - 320px);
  margin-top: 200px;
  transition: margin 0.2s ease;
  overflow: visible;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .slick-list {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 1024px) {
  .stories-slider.slick-slider .slick-list {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .slick-list {
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .slick-list {
    max-width: 370px;
    margin: auto;
    width: 100%;
  }
}
.stories-slider.slick-slider .slick-slide {
  color: #2D184D;
  padding: 70px 75px 50px 140px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .slick-slide {
    padding-left: 110px;
  }
}
@media screen and (max-height: 700px) and (min-width: 1200px) {
  .stories-slider.slick-slider .slick-slide {
    padding: 50px 75px 20px 110px;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .slick-slide {
    padding: 60px 40px 60px 80px;
    margin: 0 100px;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .slick-slide {
    padding: 40px 30px 60px 40px;
    margin: 0;
  }
}
.stories-slider.slick-slider .slick-slide:before,
.stories-slider.slick-slider .slick-slide:after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .slick-slide:before,
  .stories-slider.slick-slider .slick-slide:after {
    display: none;
  }
}
.stories-slider.slick-slider .story-beginnings .body .title,
.stories-slider.slick-slider .story-breaking-new-ground .body .title,
.stories-slider.slick-slider .story-temasek-trust .body .title,
.stories-slider.slick-slider .story-temasek-bond .body .title,
.stories-slider.slick-slider .story-sustainability-at-the-core .body .title,
.stories-slider.slick-slider .story-the-purpose-conversation .body .title {
  font-family: "SourceSerif", sans-serif;
  font-weight: 700;
}
.stories-slider.slick-slider .story-a-sleepy-start .body .title,
.stories-slider.slick-slider .story-the-covid19-pandemic .body .title {
  font-family: "SpecialElite", sans-serif;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-a-sleepy-start .body .title,
  .stories-slider.slick-slider .story-the-covid19-pandemic .body .title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .story-a-sleepy-start .body .title,
  .stories-slider.slick-slider .story-the-covid19-pandemic .body .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.stories-slider.slick-slider .story-tiger-airways .body .title,
.stories-slider.slick-slider .story-developing-mandai .body .title {
  font-family: "VT323", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-tiger-airways .body .title,
  .stories-slider.slick-slider .story-developing-mandai .body .title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-tiger-airways .body .title,
  .stories-slider.slick-slider .story-developing-mandai .body .title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.stories-slider.slick-slider .story-sustainability-at-the-core {
  background-image: url("../images/backgrounds/sustainability-at-the-core.png");
}
.stories-slider.slick-slider .story-temasek-trust .body .title {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-temasek-trust .body .title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .story-temasek-trust .body .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.stories-slider.slick-slider .story-beginnings {
  background-image: url("../images/backgrounds/beginnings.png");
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-beginnings {
    background-image: url("../images/backgrounds/beginnings-m.png");
  }
}
.stories-slider.slick-slider .story-a-sleepy-start {
  background-image: url("../images/backgrounds/a-sleepy-start.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-a-sleepy-start {
    background-image: url("../images/backgrounds/a-sleepy-start-m.png");
  }
}
.stories-slider.slick-slider .story-tiger-airways {
  background-image: url("../images/backgrounds/tiger-airways.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-tiger-airways {
    background-image: url("../images/backgrounds/tiger-airways-m.png");
    overflow: hidden;
  }
}
.stories-slider.slick-slider .story-breaking-new-ground {
  background-image: url("../images/backgrounds/expansion-into-asia.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-breaking-new-ground {
    background-image: url("../images/backgrounds/expansion-into-asia-m.png");
  }
}
.stories-slider.slick-slider .story-breaking-new-ground:before {
  width: 140px;
  height: 180px;
  background-image: url("../images/backgrounds/accents/stamp.png");
  left: -50px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-breaking-new-ground:before {
    width: 112px;
    height: 144px;
  }
}
.stories-slider.slick-slider .story-breaking-new-ground:after {
  width: 280px;
  height: 120px;
  background-image: url("../images/backgrounds/accents/chop.png");
  top: 80px;
  right: 160px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-breaking-new-ground:after {
    top: 50px;
    width: 224px;
    height: 96px;
  }
}
.stories-slider.slick-slider .story-temasek-bond {
  background-image: url("../images/backgrounds/temasek-bond.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-temasek-bond {
    background-image: url("../images/backgrounds/temasek-bond-m.png");
  }
}
.stories-slider.slick-slider .story-temasek-bond:before {
  width: 140px;
  height: 200px;
  background-image: url("../images/backgrounds/accents/medal.png");
  left: -50px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .story-temasek-bond:before {
    width: 112px;
    height: 160px;
  }
}
.stories-slider.slick-slider .story-temasek-trust {
  background-image: url("../images/backgrounds/temasek-trust.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-temasek-trust {
    background-image: url("../images/backgrounds/temasek-trust-m.png");
  }
}
.stories-slider.slick-slider .story-developing-mandai {
  background-image: url("../images/backgrounds/developing-mandai.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-developing-mandai {
    background-image: url("../images/backgrounds/developing-mandai-m.png");
  }
}
.stories-slider.slick-slider .story-sustainability-at-the-core {
  background-image: url("../images/backgrounds/sustainability-at-the-core.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-sustainability-at-the-core {
    background-image: url("../images/backgrounds/sustainability-at-the-core-m.png");
  }
}
.stories-slider.slick-slider .story-sustainability-at-the-core:before {
  width: 100px;
  height: 270px;
  background-image: url("../images/backgrounds/accents/clips.png");
  left: -50px;
  top: 130px;
}
@media screen and (max-width: 1024px) {
  .stories-slider.slick-slider .story-sustainability-at-the-core:before {
    top: 100px;
    height: 200px;
  }
}
.stories-slider.slick-slider .story-the-covid19-pandemic {
  background-image: url("../images/backgrounds/the-covid19-pandemic.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-the-covid19-pandemic {
    background-image: url("../images/backgrounds/the-covid19-pandemic-m.png");
  }
}
.stories-slider.slick-slider .story-the-covid19-pandemic:before {
  width: 110px;
  height: 340px;
  background-image: url("../images/backgrounds/accents/clip.png");
  left: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .stories-slider.slick-slider .story-the-covid19-pandemic:before {
    height: 280px;
  }
}
.stories-slider.slick-slider .story-the-purpose-conversation {
  background-image: url("../images/backgrounds/the-purpose-conversation.png");
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .story-the-purpose-conversation {
    background-image: url("../images/backgrounds/the-purpose-conversation-m.png");
  }
}
.stories-slider.slick-slider .series {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(151, 71, 255, 0.2);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .stories-slider.slick-slider .series {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .series {
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
}
.stories-slider.slick-slider .series p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .series p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.stories-slider.slick-slider .series .close {
  position: relative;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .series .close {
    width: 10px;
    height: 10px;
  }
}
.stories-slider.slick-slider .series .close:before,
.stories-slider.slick-slider .series .close:after {
  content: '';
  display: block;
  width: 27px;
  height: 2px;
  border-radius: 2PX;
  background: #9747FF;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .series .close:before,
  .stories-slider.slick-slider .series .close:after {
    width: 15px;
  }
}
.stories-slider.slick-slider .series .close:before {
  transform: rotate(45deg);
}
.stories-slider.slick-slider .series .close:after {
  transform: rotate(-45deg);
}
.stories-slider.slick-slider .body {
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .body {
    max-height: 70vh;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .body {
    max-height: 60vh;
  }
}
.stories-slider.slick-slider .body .title {
  font-size: 33px;
  font-size: 2.0625rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .body .title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .body .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.stories-slider.slick-slider .body .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .body .flex {
    flex-wrap: wrap;
  }
}
.stories-slider.slick-slider .body .flex .media-container {
  width: 34.7826087%;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .body .flex .media-container {
    width: 50%;
    padding-right: 20px;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .body .flex .media-container {
    width: 100%;
    padding-right: 0;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 600px) {
  .stories-slider.slick-slider .body .flex .media-container {
    padding-bottom: 30px;
  }
}
.stories-slider.slick-slider .body .flex .media-container__image {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .body .flex .media-container__image {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .stories-slider.slick-slider .body .flex .media-container__image {
    margin-bottom: 20px;
  }
}
.stories-slider.slick-slider .body .flex .media-container__image-caption:hover span {
  cursor: pointer;
  background: #9747FF;
  color: #FFFFFF;
}
.stories-slider.slick-slider .body .flex .media-container__image-caption:hover span:after {
  content: '';
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 5px 7px 5px 0;
  border-color: transparent #FFFFFF transparent transparent;
  transform: rotate(0deg);
  position: absolute;
  top: 5px;
  left: 26px;
  opacity: 1;
}
.stories-slider.slick-slider .body .flex .media-container__image-caption:hover p {
  opacity: 1;
  padding: 10px;
  height: auto;
}
.stories-slider.slick-slider .body .flex .media-container__image-caption span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "SourceSerif", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
.stories-slider.slick-slider .body .flex .media-container__image-caption span::after {
  opacity: 0;
  transition: opacity 1s ease;
}
.stories-slider.slick-slider .body .flex .media-container__image-caption p {
  font-size: 12px;
  font-size: 0.75rem;
  background: #FFFFFF;
  border-radius: 5px;
  position: absolute;
  top: 7px;
  margin: 0;
  width: calc(100% - 53px);
  transform: translate(2.5%, 0);
  opacity: 0;
  transition: opacity 0.2s ease;
  overflow: hidden;
  height: 0;
  left: 35px;
}
.stories-slider.slick-slider .body .flex .media-container img {
  width: 100%;
}
.stories-slider.slick-slider .body .flex .media-container .download-container > p {
  padding-right: 10px;
}
.stories-slider.slick-slider .body .flex .writeup-container {
  width: 65.2173913%;
  padding-left: 50px;
  padding-bottom: 40px;
  height: 45vh;
  max-height: 420px;
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .body .flex .writeup-container {
    padding-left: 25px;
    font-size: 16px;
    font-size: 1rem;
    max-height: 350px;
  }
}
@media screen and (max-width: 1024px) {
  .stories-slider.slick-slider .body .flex .writeup-container {
    max-height: 320px;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .body .flex .writeup-container {
    width: 100%;
    padding-left: 0;
    max-height: none;
    height: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .stories-slider.slick-slider .body .flex .writeup-container p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 840px) {
  .stories-slider.slick-slider .body .flex .writeup-container p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.nav-aside {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  color: #2D184D;
  pointer-events: all;
  width: 400px;
  transform: translateX(100%);
  transition: transform 0.5s;
}
@media screen and (max-width: 1400px) {
  .nav-aside {
    width: 350px;
  }
}
.navigation-active .nav-aside {
  transform: translateX(0);
}
.nav-aside__wrapper {
  padding: var(--container-padding);
  position: relative;
  height: 100dvh;
}
.nav-aside button {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  font-size: var(--link);
}
.nav-aside .navigation {
  margin: 30px 0 30px;
  overflow: auto;
  max-height: calc(100dvh - 350px);
}
@media (max-height: 800px) {
  .nav-aside .navigation {
    max-height: calc(100dvh - 300px);
  }
}
@media screen and (max-width: 1400px) {
  .nav-aside .navigation {
    margin: 20px 0;
    max-height: calc(100dvh - 230px);
  }
}
.nav-aside .navigation::-webkit-scrollbar {
  width: 0px;
}
.nav-aside .navigation > ul {
  list-style: none;
  border-top: 1px solid rgba(151, 71, 255, 0.2);
}
.nav-aside .navigation > ul > li {
  border-bottom: 1px solid rgba(151, 71, 255, 0.2);
  position: relative;
}
.nav-aside .navigation > ul > li.is-active button::after {
  transform: scale3d(-1, -1, 1);
}
.nav-aside .navigation > ul button {
  padding: 30px 30px 30px 0;
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
}
@media screen and (max-width: 1400px) {
  .nav-aside .navigation > ul button {
    padding: 20px 20px 20px 0;
  }
}
.nav-aside .navigation > ul button::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  background-image: url("/images/icons/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  right: 0;
  transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale3d(1, 1, 1);
  transform-origin: 85% 50%;
}
.nav-aside .sub-navigation {
  list-style: none;
  display: none;
}
.nav-aside .sub-navigation li {
  display: flex;
  gap: 0 20px;
  margin-bottom: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .nav-aside .sub-navigation li {
    margin-bottom: 20px;
    gap: 0 12px;
  }
}
.nav-aside .sub-navigation p {
  font-size: var(--link);
  font-weight: 700;
}
.nav-aside .sub-navigation a,
.nav-aside .sub-navigation span {
  font-size: var(--link);
  text-decoration: underline;
  margin-top: 5px;
}
.nav-aside .sub-navigation figure {
  flex: 0 0 80px;
}
@media screen and (max-width: 1400px) {
  .nav-aside .sub-navigation figure {
    flex: 0 0 60px;
  }
}
.nav-aside .sub-navigation figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 80px;
}
.nav-aside .sub-navigation__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-aside footer {
  position: absolute;
  right: var(--container-padding);
  left: var(--container-padding);
  bottom: var(--container-padding);
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-height: 800px) {
  .nav-aside footer {
    bottom: 20px;
  }
}
.nav-aside footer .download-container {
  flex-wrap: wrap;
}
.nav-aside footer .download-container > p {
  font-weight: 700;
  line-height: 1.1;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 15px;
  width: 100%;
}
.nav-aside footer .btn-external {
  display: inline-block;
  text-decoration: underline;
  margin-top: 30px;
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .nav-aside footer .btn-external {
    margin-top: 20px;
  }
}
.nav-aside footer .btn-external::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/images/icons/external.svg");
  background-repeat: no-repeat;
  background-position: left;
  margin-left: 10px;
}
.homepage[section-index="22"] .active-section {
  z-index: 3;
}
.homepage[section-index="22"] .active-section .journey-end-modal {
  pointer-events: all;
}
.t50-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(48, 152, 237, 0.8);
  top: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.5s 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.journey-end-modal {
  z-index: 1;
  background-color: white;
  max-width: 600px;
  color: #2D184D;
  border-radius: 15px;
  position: relative;
  width: 90%;
}
.journey-end-modal__wrapper {
  padding: var(--container-padding);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.journey-end-modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: calc(var(--container-padding) - 20px);
  top: 20px;
  border: 0;
  background: none;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .journey-end-modal__close {
    width: 10px;
    height: 10px;
    right: 20px;
  }
}
.journey-end-modal__close:before,
.journey-end-modal__close:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2PX;
  background: #9747FF;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .journey-end-modal__close:before,
  .journey-end-modal__close:after {
    width: 15px;
  }
}
.journey-end-modal__close:before {
  transform: rotate(45deg);
}
.journey-end-modal__close:after {
  transform: rotate(-45deg);
}
.journey-end-modal h4 {
  font-weight: 700;
  font-size: var(--intro);
  padding-right: 20px;
}
.journey-end-modal .btn-download {
  margin-top: 20px;
}
.area-location {
  width: 450px;
  border-radius: 15px;
  color: #2D184D;
  top: var(--content-start);
  left: var(--container-padding);
  position: fixed;
  opacity: 0.3;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  background: transparent;
  overflow: hidden;
  transform: translateX(calc(-100% - var(--container-padding)));
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
}
@media screen and (max-width: 1400px) {
  .area-location {
    width: 400px;
  }
}
@media screen and (max-width: 840px) {
  .area-location {
    top: auto;
    bottom: var(--container-padding);
    width: 450px;
    align-items: flex-end;
  }
}
@media screen and (max-width: 600px) {
  .area-location {
    width: calc(100% - 2 * var(--container-padding));
  }
}
.area-location__wrapper {
  padding: var(--container-padding);
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  background: #FFFFFF;
  border-radius: 15px;
}
.area-location__header {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(151, 71, 255, 0.2);
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .area-location__header {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.area-location__title {
  font-size: var(--intro);
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .area-location__title {
    font-size: var(--body);
  }
}
.area-location__title::before {
  content: url('/images/icons/pin.svg');
  width: 40px;
  display: inline-block;
  margin-right: 20px;
  flex: 0 0 40px;
}
@media screen and (max-width: 1400px) {
  .area-location__title::before {
    flex: 0 0 30px;
    width: 30px;
  }
}
@media screen and (max-width: 600px) {
  .area-location__title::before {
    flex: 0 0 25px;
    width: 25px;
    margin-right: 10px;
  }
}
.area-location__button {
  border-radius: 30px;
  color: #FFFFFF;
  background-color: #9747FF;
  border: 0;
  padding: 10px 20px;
  font-size: var(--link);
  font-weight: 500;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  align-self: flex-start;
}
.area-location__button:hover {
  background-color: #FFFFFF;
  color: #9747FF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
/*.cookieConsent{
    display: none;
}

.cc-window {
    display: none !important;
}
*/
.cc-window {
  display: block;
  position: fixed;
  bottom: 30px;
  left: var(--container-padding);
  z-index: 100;
  transition: all 1s;
  max-width: 270px;
  overflow: hidden;
  line-height: 1.3;
  box-sizing: content-box;
  padding: 20px;
  background: white;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  color: #2D184D;
  font-size: 0.875rem;
  /* this happens when it's not shown */
  /* shows in the top-right corner when it's a dropdown */
}
@media screen and (max-width: 767px) {
  .cc-window {
    top: initial;
    max-width: calc(100% - 20px);
    padding: 10px 40px 10px 10px;
    bottom: 10px;
    left: 10px;
    box-sizing: border-box;
  }
  #cc-mobile-dialog.cc-window {
    background: none;
    box-shadow: none;
  }
}
.cc-window a {
  font-size: 0.875rem;
}
.cc-window * {
  position: relative;
  z-index: 1;
}
.cc-window .cc-message {
  font-size: 0.875rem;
}
.cc-window .learn-more {
  margin-top: 0;
  display: block;
}
.cc-window .cc-link {
  text-decoration: underline;
}
.cc-window .cc-btn {
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}
.cc-window .cc-title {
  color: #9747FF;
  margin-bottom: 10px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
}
.cc-window .cc-title::after {
  content: url(/images/icons/cookie.svg);
  margin-left: 10px;
  display: inline-block;
}
.cc-window .cc-turn-on {
  display: none;
  /* invisible by default */
}
.cc-window.cc-no-cookies .cc-turn-off {
  display: none;
  /* invisible when opted-out */
}
.cc-window.cc-no-cookies .cc-turn-on {
  display: inline;
  /* invisible when opted-in */
}
.cc-window .cc-close {
  display: none;
}
.cc-window.cc-invisible {
  opacity: 0;
  z-index: -1 !important;
}
.cc-window .cc-dropdown-message {
  display: none;
  /* invisible by default, visible when shows as dropdown */
}
.cc-window.cc-dropdown {
  bottom: auto;
  top: 59px;
  right: 0;
  left: auto;
  padding: 25px;
  width: auto;
  z-index: 999999;
}
.cc-window.cc-dropdown .inner {
  padding: 0;
  border: none;
}
.cc-window.cc-dropdown .inner::after {
  content: none;
}
.cc-window.cc-dropdown::before {
  right: -2220px;
  background-color: #eeeeee;
  opacity: 1;
}
.cc-window.cc-dropdown .cc-btn:after {
  background-image: url(/assets/icons/cookies-solid.svg);
}
.cc-window.cc-dropdown .cc-message {
  display: none;
  /* invisible when shows as dropdown */
}
.cc-window.cc-dropdown .cc-dropdown-message {
  display: inline;
  /* visible when shows as dropdown */
  margin-bottom: 5px;
}
.cc-window.cc-dropdown .cc-close {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .cc-window.cc-dropdown .cc-close {
    display: none;
    /* popup-dt has no close */
  }
}
.cc-window .cc-close {
  position: absolute;
  right: 10px;
  top: 10px;
  margin: 10px;
  width: 15px;
  height: 15px;
  display: block;
  cursor: pointer;
}
.cc-window .cc-close:before,
.cc-window .cc-close:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2PX;
  background: #9747FF;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .cc-window .cc-close:before,
  .cc-window .cc-close:after {
    width: 15px;
  }
}
.cc-window .cc-close:before {
  transform: rotate(45deg);
}
.cc-window .cc-close:after {
  transform: rotate(-45deg);
}
.tools .cookieConsent {
  display: none;
}
.tools .cookieConsent.show {
  display: block;
}
.no-cookies .tools .cookieConsent,
.allow-cookies .tools .cookieConsent {
  display: block;
}
.cc-dropdown-li {
  display: none;
  overflow: hidden;
}
.cc-dropdown-li:after {
  display: none;
}
.cc-dropdown-li .cc-window.cc-dropdown {
  position: relative;
  top: auto;
}
.cc-dropdown-li .cc-window.cc-dropdown.cc-invisible {
  height: 0;
  min-height: 0;
  opacity: 0;
  margin: -25px 0;
}
@media screen and (max-width: 767px) {
  .cc-dropdown-li {
    display: block;
  }
  .cc-dropdown-li.cc-collapsed {
    min-height: 0;
    height: 0;
  }
}
/* pages Styles */
.homepage {
  position: relative;
  overflow: hidden;
}
.homepage .section-slide {
  height: 100vh;
  position: relative;
  z-index: 1;
}
.homepage .section-slide h1 {
  position: relative;
  color: white;
}
.homepage .section-slide .content-wrapper {
  padding-top: 200px;
  overflow: hidden;
}
.homepage .active-section .introduction {
  opacity: 1;
  transform: translate(-50%, 0%);
}
.homepage .active-section .area-location {
  transform: translateX(0);
  opacity: 1;
}
.homepage .active-section .leaves-media,
.homepage .active-section .t50-overlay {
  opacity: 1;
}
.homepage .active-section .bottle-with-cta {
  opacity: 1;
  transform: translate(0);
  transition: opacity 0.3s, transform 0.3s;
}
.homepage .leaves-media.fadeout {
  animation: fadeOut 0.5s both linear;
}
.homepage .leaves-media {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.5s;
  opacity: 0;
}
.homepage .leaves-media__video {
  max-width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
}
.homepage .introduction {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  text-align: center;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -100%);
  top: 3vw;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}
@media screen and (max-width: 1400px) {
  .homepage .introduction {
    top: var(--container-padding);
  }
}
@media screen and (max-width: 1200px) {
  .homepage .introduction {
    max-width: 850px;
  }
}
@media screen and (max-width: 840px) {
  .homepage .introduction {
    top: 100px;
    padding: var(--container-padding);
  }
}
@media screen and (max-width: 600px) {
  .homepage .introduction {
    top: 60px;
  }
}
@media screen and (max-width: 400px) {
  .homepage .introduction {
    top: 40px;
  }
}
.homepage .introduction h1 {
  font-weight: 700;
}
.homepage .introduction p {
  margin-top: 20px;
}
.homepage .introduction .download-container .btn-download {
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 1400px) {
  .homepage .introduction .download-container .btn-download {
    margin-top: 20px;
  }
}
.homepage .bottle-with-cta {
  position: fixed;
  bottom: 5%;
  right: 5%;
  opacity: 0;
  transform: translate(100px, 0px);
  pointer-events: all;
}
.homepage .bottle-with-cta a {
  display: flex;
  align-items: flex-end;
}
.homepage .bottle-with-cta a:hover {
  text-decoration: none;
}
.homepage .bottle-with-cta a:hover .btn-download {
  text-decoration: none;
  box-shadow: none;
  color: white;
}
.homepage .bottle-with-cta img {
  margin-right: -44px;
  position: relative;
  z-index: 1;
}
.homepage .bottle-with-cta .btn-download {
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px 17px 10px 50px;
  margin: 0;
  position: relative;
}
.homepage .bottle-with-cta .btn-download:before {
  content: "";
  height: calc(100% + 4px);
  width: 40px;
  position: absolute;
  left: 0;
  background-color: #3098ed;
  top: -2px;
  left: -3px;
  transform: skewX(27deg);
}
.homepage .t50-map {
  position: fixed;
  height: 100%;
  width: 80%;
  left: 10%;
  top: 0;
  pointer-events: none;
  will-change: transform, width;
}
.homepage .t50-map img,
.homepage .t50-map picture,
.homepage .t50-map object,
.homepage .t50-map svg {
  will-change: transform, width;
}
.homepage .t50-map.render {
  width: 80.1%;
}
@media screen and (max-width: 1200px) {
  .homepage .t50-map {
    width: 90%;
    left: 5%;
  }
  .homepage .t50-map.render {
    width: 90%;
  }
}
@media screen and (max-width: 840px) {
  .homepage .t50-map {
    width: 100%;
    left: 0;
  }
  .homepage .t50-map.render {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .homepage .t50-map {
    width: 960px;
  }
  .homepage .t50-map.render {
    width: 960px;
  }
}
.homepage .t50-map__wrapper {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  will-change: transform, opacity;
  transition: transform 0.5s linear, opacity 0.5s linear;
}
.homepage .t50-map__wrapper .clickable-area,
.homepage .t50-map__wrapper .clickable-area svg,
.homepage .t50-map__wrapper .full-map,
.homepage .t50-map__wrapper img,
.homepage .t50-map__wrapper > svg,
.homepage .t50-map__wrapper .animation-stories,
.homepage .t50-map__wrapper object,
.homepage .t50-map__wrapper video {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  object-fit: cover;
}
.homepage .t50-map .clickable-area {
  pointer-events: all;
  opacity: 0;
  display: none;
}
.homepage .t50-map .clickable-area .area-map-link {
  cursor: pointer;
}
.homepage .t50-map .t50-map__wrapper {
  transform: translate(10%, 10%) scale(0.85);
}
.homepage[section-index="0"] .t50-map .t50-map__wrapper {
  transform: translate(0%, 12%) scale(0.2);
  opacity: 0;
}
@media screen and (max-width: 840px) {
  .homepage[section-index="0"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 75%) scale(0.2);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="0"] .t50-map .t50-map__wrapper {
    transform: translate(-28%, 20%) scale(0.25);
  }
}
.homepage[section-index="1"] .t50-map .t50-map__wrapper {
  transform: translate(0%, 18%) scale(0.5);
  opacity: 1;
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 2%) scale(0.4);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 22%) scale(0.4);
  }
}
@media screen and (max-width: 1400px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 20%) scale(0.55);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 31%) scale(0.6);
  }
}
@media screen and (max-width: 1200px) and (orientation: portrait) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 49%) scale(0.8);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 105%) scale(1);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(-28%, 40%) scale(0.45);
  }
}
@media screen and (max-width: 400px) {
  .homepage[section-index="1"] .t50-map .t50-map__wrapper {
    transform: translate(-30%, 30%) scale(0.4);
  }
}
.homepage[section-index="2"] main {
  pointer-events: none;
}
.homepage[section-index="2"] .t50-map .clickable-area {
  display: block;
}
.homepage[section-index="2"] .t50-map .t50-map__wrapper {
  transform: translate(0%, 5%);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="2"] .t50-map .t50-map__wrapper {
    transform: translate(0%, -9%) scale(0.7);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="2"] .t50-map .t50-map__wrapper {
    transform: translate(0%, 20%);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="2"] .t50-map .t50-map__wrapper {
    transform: translate(15%, 70%) scale(2);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="2"] .t50-map .t50-map__wrapper {
    transform: translate(-11.5%, 22%) scale(1.2);
  }
}
.homepage[section-index="3"] .t50-map .t50-map__wrapper {
  transform: translate(50%, 85%) scale(2.7);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="3"] .t50-map .t50-map__wrapper {
    transform: translate(35%, 47%) scale(2);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="3"] .t50-map .t50-map__wrapper {
    transform: translate(60%, 85%) scale(2.7);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="3"] .t50-map .t50-map__wrapper {
    transform: translate(60%, 75%) scale(2.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="3"] .t50-map .t50-map__wrapper {
    transform: translate(54%, 136%) scale(3.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="3"] .t50-map .t50-map__wrapper {
    transform: translate(-5%, 40%) scale(1.58);
  }
}
.homepage[section-index="4"] .t50-map .t50-map__wrapper {
  transform: translate(10%, 18%) scale(1.7);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="4"] .t50-map .t50-map__wrapper {
    transform: translate(10%, 23%) scale(1.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="4"] .t50-map .t50-map__wrapper {
    transform: translate(30%, 70%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="4"] .t50-map .t50-map__wrapper {
    transform: translate(-9.2%, 18%) scale(1.4);
  }
}
.homepage[section-index="5"] .t50-map .t50-map__wrapper {
  transform: translate(70%, 7.2%) scale(3.5);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="5"] .t50-map .t50-map__wrapper {
    transform: translate(45%, 0%) scale(2.5);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="5"] .t50-map .t50-map__wrapper {
    transform: translate(80%, 7.2%) scale(3.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="5"] .t50-map .t50-map__wrapper {
    transform: translate(70%, 15%) scale(3);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="5"] .t50-map .t50-map__wrapper {
    transform: translate(66%, 60%) scale(4);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="5"] .t50-map .t50-map__wrapper {
    transform: translate(4%, -6%) scale(1.9);
  }
}
.homepage[section-index="6"] .t50-map .t50-map__wrapper {
  transform: translate(30%, -40%) scale(1.8);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="6"] .t50-map .t50-map__wrapper {
    transform: translate(10%, -33%) scale(1.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="6"] .t50-map .t50-map__wrapper {
    transform: translate(30%, -20%) scale(1.8);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="6"] .t50-map .t50-map__wrapper {
    transform: translate(35%, 40%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="6"] .t50-map .t50-map__wrapper {
    transform: translate(-6%, 2%) scale(1.4);
  }
}
.homepage[section-index="7"] .t50-map .t50-map__wrapper {
  transform: translate(90%, -121%) scale(4);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="7"] .t50-map .t50-map__wrapper {
    transform: translate(60%, -101%) scale(3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="7"] .t50-map .t50-map__wrapper {
    transform: translate(95%, -121%) scale(4);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="7"] .t50-map .t50-map__wrapper {
    transform: translate(72%, -65%) scale(3);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="7"] .t50-map .t50-map__wrapper {
    transform: translate(64%, -56%) scale(4);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="7"] .t50-map .t50-map__wrapper {
    transform: translate(2%, -72%) scale(1.84);
  }
}
.homepage[section-index="8"] .t50-map .t50-map__wrapper {
  transform: translate(10%, -40%) scale(1.8);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="8"] .t50-map .t50-map__wrapper {
    transform: translate(10%, -40%) scale(1.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="8"] .t50-map .t50-map__wrapper {
    transform: translate(10%, -20%) scale(1.8);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="8"] .t50-map .t50-map__wrapper {
    transform: translate(15%, 40%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="8"] .t50-map .t50-map__wrapper {
    transform: translate(-16%, -6%) scale(1.3);
  }
}
.homepage[section-index="9"] .t50-map .t50-map__wrapper {
  transform: translate(39.5%, -125%) scale(4);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="9"] .t50-map .t50-map__wrapper {
    transform: translate(20.5%, -125%) scale(3.5);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="9"] .t50-map .t50-map__wrapper {
    transform: translate(47.5%, -125%) scale(4);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="9"] .t50-map .t50-map__wrapper {
    transform: translate(45%, -85%) scale(3.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="9"] .t50-map .t50-map__wrapper {
    transform: translate(30%, -70%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="9"] .t50-map .t50-map__wrapper {
    transform: translate(-16%, -74%) scale(1.9);
  }
}
.homepage[section-index="10"] .t50-map .t50-map__wrapper {
  transform: translate(-20%, -40%) scale(1.9);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="10"] .t50-map .t50-map__wrapper {
    transform: translate(-20%, -40%) scale(1.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="10"] .t50-map .t50-map__wrapper {
    transform: translate(-20%, -20%) scale(1.9);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="10"] .t50-map .t50-map__wrapper {
    transform: translate(-16%, 40%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="10"] .t50-map .t50-map__wrapper {
    transform: translate(-39%, 1%) scale(1.3);
  }
}
.homepage[section-index="11"] .t50-map .t50-map__wrapper {
  transform: translate(-30%, -92%) scale(3.5);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="11"] .t50-map .t50-map__wrapper {
    transform: translate(-28%, -92%) scale(3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="11"] .t50-map .t50-map__wrapper {
    transform: translate(-25%, -92%) scale(3.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="11"] .t50-map .t50-map__wrapper {
    transform: translate(-21%, -97%) scale(4);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="11"] .t50-map .t50-map__wrapper {
    transform: translate(-48%, -80%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="11"] .t50-map .t50-map__wrapper {
    transform: translate(-49.3%, -68%) scale(1.9);
  }
}
.homepage[section-index="12"] .t50-map .t50-map__wrapper {
  transform: translate(-10%, -8%) scale(1.75);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="12"] .t50-map .t50-map__wrapper {
    transform: translate(-20%, -25%) scale(1.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="12"] .t50-map .t50-map__wrapper {
    transform: translate(-10%, 15%) scale(1.75);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="12"] .t50-map .t50-map__wrapper {
    transform: translate(-18%, 67%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="12"] .t50-map .t50-map__wrapper {
    transform: translate(-35%, 17%) scale(1.3);
  }
}
.homepage[section-index="13"] .t50-map .t50-map__wrapper {
  transform: translate(-11%, -8%) scale(2.9);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="13"] .t50-map .t50-map__wrapper {
    transform: translate(-11%, -14%) scale(2.3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="13"] .t50-map .t50-map__wrapper {
    transform: translate(-3%, -8%) scale(2.9);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="13"] .t50-map .t50-map__wrapper {
    transform: translate(5%, 5%) scale(3.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="13"] .t50-map .t50-map__wrapper {
    transform: translate(-30%, 25%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="13"] .t50-map .t50-map__wrapper {
    transform: translate(-36.5%, -14%) scale(1.84);
  }
}
.homepage[section-index="14"] .t50-map .t50-map__wrapper {
  transform: translate(-10%, 42%) scale(1.75);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="14"] .t50-map .t50-map__wrapper {
    transform: translate(-10%, 16%) scale(1.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="14"] .t50-map .t50-map__wrapper {
    transform: translate(-18%, 106%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="14"] .t50-map .t50-map__wrapper {
    transform: translate(-39%, 32%) scale(1.4);
  }
}
.homepage[section-index="15"] .t50-map .t50-map__wrapper {
  transform: translate(-25%, 75%) scale(2.8);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="15"] .t50-map .t50-map__wrapper {
    transform: translate(-25%, 52%) scale(2.3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="15"] .t50-map .t50-map__wrapper {
    transform: translate(-15%, 75%) scale(2.8);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="15"] .t50-map .t50-map__wrapper {
    transform: translate(-9%, 94%) scale(3);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="15"] .t50-map .t50-map__wrapper {
    transform: translate(-43%, 168%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="15"] .t50-map .t50-map__wrapper {
    transform: translate(-44.3%, 41%) scale(1.86);
  }
}
.homepage[section-index="16"] .t50-map .t50-map__wrapper {
  transform: translate(-25%, 35%) scale(1.75);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="16"] .t50-map .t50-map__wrapper {
    transform: translate(-25%, 16%) scale(1.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="16"] .t50-map .t50-map__wrapper {
    transform: translate(-37%, 106%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="16"] .t50-map .t50-map__wrapper {
    transform: translate(-45%, 13%) scale(1);
  }
}
.homepage[section-index="17"] .t50-map .t50-map__wrapper {
  transform: translate(-67%, 82%) scale(3.2);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="17"] .t50-map .t50-map__wrapper {
    transform: translate(-67%, 60%) scale(2.8);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="17"] .t50-map .t50-map__wrapper {
    transform: translate(-58%, 82%) scale(3.2);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="17"] .t50-map .t50-map__wrapper {
    transform: translate(-65%, 118%) scale(4);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="17"] .t50-map .t50-map__wrapper {
    transform: translate(-98%, 150%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="17"] .t50-map .t50-map__wrapper {
    transform: translate(-72%, 26%) scale(1.8);
  }
}
.homepage[section-index="18"] .t50-map .t50-map__wrapper {
  transform: translate(-35%, 0%) scale(1.75);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="18"] .t50-map .t50-map__wrapper {
    transform: translate(-35%, 10%) scale(1.5);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="18"] .t50-map .t50-map__wrapper {
    transform: translate(-50%, 73%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="18"] .t50-map .t50-map__wrapper {
    transform: translate(-49%, 1%) scale(1);
  }
}
.homepage[section-index="19"] .t50-map .t50-map__wrapper {
  transform: translate(-90%, 20%) scale(3.8);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="19"] .t50-map .t50-map__wrapper {
    transform: translate(-76%, 0%) scale(2.7);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="19"] .t50-map .t50-map__wrapper {
    transform: translate(-80%, 20%) scale(3.8);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="19"] .t50-map .t50-map__wrapper {
    transform: translate(-75%, 20%) scale(3.8);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="19"] .t50-map .t50-map__wrapper {
    transform: translate(-116%, 65%) scale(4.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="19"] .t50-map .t50-map__wrapper {
    transform: translate(-78%, -11%) scale(1.9);
  }
}
.homepage[section-index="20"] .t50-map .t50-map__wrapper {
  transform: translate(-35%, -30%) scale(1.75);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="20"] .t50-map .t50-map__wrapper {
    transform: translate(-35%, -30%) scale(1.5);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="20"] .t50-map .t50-map__wrapper {
    transform: translate(-35%, -10%) scale(1.75);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="20"] .t50-map .t50-map__wrapper {
    transform: translate(-60%, 41%) scale(2.5);
  }
}
@media screen and (max-width: 600px) {
  .homepage[section-index="20"] .t50-map .t50-map__wrapper {
    transform: translate(-54%, -14%) scale(1);
  }
}
.homepage[section-index="21"] .t50-map .t50-map__wrapper {
  transform: translate(-73%, -85%) scale(3.3);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="21"] .t50-map .t50-map__wrapper {
    transform: translate(-73%, -106%) scale(3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="21"] .t50-map .t50-map__wrapper {
    transform: translate(-65%, -85%) scale(3.3);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="21"] .t50-map .t50-map__wrapper {
    transform: translate(-58%, -75%) scale(3.3);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="21"] .t50-map .t50-map__wrapper {
    transform: translate(-74%, -64%) scale(1.8);
  }
}
.homepage[section-index="22"] .t50-map .t50-map__wrapper {
  transform: translate(-73%, -85%) scale(3.3);
}
@media screen and (min-width: 1921px) {
  .homepage[section-index="22"] .t50-map .t50-map__wrapper {
    transform: translate(-73%, -106%) scale(3);
  }
}
@media screen and (max-width: 1600px) {
  .homepage[section-index="22"] .t50-map .t50-map__wrapper {
    transform: translate(-65%, -85%) scale(3.3);
  }
}
@media screen and (max-width: 1200px) {
  .homepage[section-index="22"] .t50-map .t50-map__wrapper {
    transform: translate(-58%, -75%) scale(3.3);
  }
}
@media screen and (max-width: 840px) {
  .homepage[section-index="22"] .t50-map .t50-map__wrapper {
    transform: translate(-74%, -64%) scale(1.8);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.siteservices section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  text-align: center;
}
.siteservices img {
  max-width: 100%;
}
.siteservices img.purple-logo {
  width: 250px;
}
@media screen and (max-width: 1400px) {
  .siteservices img.purple-logo {
    width: 200px;
  }
}
.siteservices .error-discription {
  padding: 15px;
  margin-top: 50px;
}
@media screen and (max-width: 600px) {
  .siteservices .error-discription {
    margin-top: 40px;
    padding: 0;
  }
}
.siteservices .error-discription h3 {
  margin-bottom: 0;
}
.siteservices .error-discription p {
  font-weight: 500;
  color: white;
}
.siteservices .error-discription a {
  border-radius: 30px;
  color: #FFFFFF;
  background-color: #9747FF;
  border: 0;
  padding: 10px 20px;
  font-size: var(--link);
  font-weight: 500;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 5px;
}
.siteservices .error-discription a:hover {
  background-color: #FFFFFF;
  color: #9747FF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.siteservices .error-image {
  margin: 100px auto 0;
}

/*# sourceMappingURL=main.css.map */
