@charset "UTF-8";
/* FERMYON SHINY VENEER
=======================
For the benefit of browser-based experiences, websites and application user 
interfaces. This Sass file should be compiled to a CSS stylesheet and served 
after a base framework such as Bulma, Bootstrap or similar base grid system.

to generate to css:
https://sass-lang.com/install 

then run:
sass --watch static/sass/style.scss static/css/style.css --style compressed


TABLE OF CONTENTS
================= */
/* FERMYON SHINY VENEER
=======================
For the benefit of browser-based experiences, websites and application user 
interfaces. This Sass file should be compiled to a CSS stylesheet and served 
after a base framework such as Bulma, Bootstrap or similar base grid system.

to generate to css:
https://sass-lang.com/install 

then run:
sass --watch static/sass/styles.scss static/css/style.css --style compressed


TABLE OF CONTENTS
=================
0.1. Brand Colors
0.2. Variables and Mixins
0.3. Global Layout
0.4. Typography
*/
/* 1.
   Brand Colors
*/
.is-primary, .has-text-primary {
  color: #0D203F !important;
}

.is-link, .has-text-link {
  color: #0a68a1 !important;
}

.is-info, .has-text-info {
  color: #a180d9 !important;
}

.is-success, .has-text-success {
  color: #18907b !important;
}

.is-warning, .has-text-warning {
  color: #EF946C !important;
}

.is-danger, .has-text-danger {
  color: #c64b16 !important;
}

.is-dark, .has-text-dark {
  color: #213762 !important;
}

.is-light, .has-text-light {
  color: #b69cc0 !important;
}

.button.is-primary, .tag.is-primary, .message.is-primary {
  background-color: #18d1a5;
  color: white !important;
}
.button.is-secondary, .tag.is-secondary, .message.is-secondary {
  background-color: #315292;
  color: white !important;
}
.button.is-link, .tag.is-link, .message.is-link {
  background-color: #0a68a1 !important;
  color: white !important;
}
.button.is-info, .tag.is-info, .message.is-info {
  background-color: #a180d9 !important;
  color: white !important;
}
.button.is-success, .tag.is-success, .message.is-success {
  background-color: #18907b !important;
  color: white !important;
}
.button.is-warning, .tag.is-warning, .message.is-warning {
  background-color: #EF946C !important;
  color: white !important;
}
.button.is-danger, .tag.is-danger, .message.is-danger {
  background-color: #c64b16 !important;
  color: white !important;
}
.button.is-dark, .tag.is-dark, .message.is-dark {
  background-color: #213762;
  color: white !important;
}
.button.is-light, .tag.is-light, .message.is-light {
  background-color: #b69cc0;
  color: #0D203F !important;
}

.content .is-active, .content .is-current {
  color: white;
  background-color: #213762;
}

/* 2.
   Variables and Mixins
*/
/* 3.
   Global Base
*/
html {
  height: 100%;
  background-color: transparent;
}

body,
main {
  min-height: 100vh;
  position: relative;
}

body {
  background: #f7f4f8;
  min-height: 100vh;
}

main {
  padding: 5.75rem 0 0;
  min-height: 100vh;
  margin-bottom: -12rem;
  z-index: 100;
}

#topbar.navbar {
  background: #f7f4f8;
  padding-left: 5vw;
  padding-right: 5vw;
  border-bottom: 2px solid rgba(255, 255, 255, 0.98);
  will-change: transform;
  transition: transform 200ms linear;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1000;
}
#topbar.navbar .navbar-burger {
  width: 5.25rem;
  height: 5.25rem;
}
#topbar.navbar.is-wide {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}
#topbar.navbar .dark-mode {
  position: absolute;
  right: 0;
  top: 2rem;
  display: inline-block;
  width: 1.5rem;
  line-height: 1.5;
  fill: #345995;
}
#topbar.navbar.headroom--pinned {
  margin: 0;
  transform: translateY(0%);
}
#topbar.navbar.headroom--unpinned {
  transform: translateY(-100%);
}
@keyframes halfSpin {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(180deg);
    opacity: 1;
  }
  38% {
    opacity: 0.75;
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
    opacity: 1;
  }
  88% {
    opacity: 0.75;
  }
  100% {
    transform: rotate(360deg);
  }
}
#topbar.navbar .logo {
  display: inline-block;
  margin-top: 0;
  fill: #0D203F;
  position: relative;
  margin-top: 0.35em;
}
#topbar.navbar .logo svg {
  max-height: 1.25rem;
  max-width: 10.625rem;
  cursor: pointer;
  position: relative;
  z-index: 500;
  fill: #0D203F;
}
#topbar.navbar .logo:hover .spin-back {
  background-color: white;
}
#topbar.navbar .logo .spin-front {
  width: 1.133rem;
  height: 1.133rem;
  display: inline-block;
  position: absolute;
  top: 1.25rem;
  right: 1.9125rem;
  border-radius: 50%;
  z-index: 600;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .logo .spin-front em {
  width: 0.425rem;
  height: 0.425rem;
  display: inline-block;
  top: 0rem;
  right: 0.05rem;
  background: #28FFCC;
  position: absolute;
  z-index: 700;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .logo .spin-back {
  width: 1.125rem;
  height: 1.125rem;
  display: inline-block;
  position: absolute;
  top: 1.295rem;
  right: 1.875rem;
  border-radius: 50%;
  z-index: 400;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar:hover .logo .spin-front {
  animation: 4s ease infinite halfSpin;
}
#topbar.navbar .logo-project {
  font-weight: bold;
  margin: 2rem 0 0 1.3335rem;
  font-size: 1.125rem;
}
#topbar.navbar .logo-project a {
  color: #213762;
}
#topbar.navbar .logo-project .tag {
  margin: -0.5rem 0 0 0.67rem;
  position: relative;
}
#topbar.navbar a.navbar-item {
  line-height: 3;
  background: transparent;
  font-weight: 700;
}
#topbar.navbar .navbar-menu a {
  margin-left: 2vw;
  position: relative;
  color: #0D203F;
  letter-spacing: 0.025em;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .navbar-menu a em {
  position: absolute;
  left: 45%;
  right: 45%;
  bottom: -0.15rem;
  height: 0.333rem;
  opacity: 0;
  background-color: #34E8BD;
  display: inline-block;
  -webkit-border-radius: 1rem 1rem 1rem 1rem;
  -moz-border-radius: 1rem 1rem 1rem 1rem;
  border-radius: 1rem 1rem 1rem 1rem;
  transition: all 0.3s ease-in-out;
  content: " ";
}
#topbar.navbar .navbar-menu a:hover em {
  left: 25%;
  right: 25%;
  opacity: 1;
}
#topbar.navbar .navbar-menu .button {
  color: #15ba93;
  border-color: #34E8BD;
  margin: 1rem 0 0 2.5rem;
  transition: all 0.3s ease-in-out;
}
#topbar.navbar .navbar-menu .button:hover {
  color: #119878;
  background-color: white !important;
}

.menu-wrap {
  padding: 0 2.5vw;
  width: 17rem;
  background: #f7f4f8;
}
@media screen and (min-width: 1024px) {
  .menu-wrap.is-fixed-desktop {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 17.5vw;
    background: #f7f4f8;
  }
}
@media screen and (max-width: 1023px) {
  .menu-wrap.is-fixed-desktop {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .menu-wrap.is-sticky {
    position: sticky;
    left: 2.5vw;
    top: 0;
    width: 15rem;
    padding-left: 0.67rem;
    bottom: 0;
    display: inline-block;
    vertical-align: top;
    max-height: 100vh;
    overflow-y: auto;
    background: #f7f4f8;
  }
}

aside.menu {
  font-size: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  overflow-y: scroll;
  padding-top: 6.5rem;
  min-width: 13rem;
  width: 14.5vw;
  border-right: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
aside.menu:hover {
  border-right: 2px solid #ECE5EE;
}
aside.menu .menu-label {
  padding-left: 1.333vw;
  margin: 1.75rem 1.333vw 1rem 0;
}
aside.menu ul {
  margin-bottom: 2.5rem;
}
aside.menu a {
  padding: 0.6rem 1.25vw;
  margin-bottom: 0rem;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  -webkit-border-radius: 2rem 2rem 2rem 2rem;
  -moz-border-radius: 2rem 2rem 2rem 2rem;
  border-radius: 2rem 2rem 2rem 2rem;
}
aside.menu a:hover {
  background-color: #ECE5EE;
  color: #213762;
}
aside.menu a.button {
  line-height: 2.25;
  margin-top: 1.25rem;
  padding: 0 1.333vw;
  font-size: 1.125rem;
  background: transparent;
  border: 2px solid #34E8BD;
}
aside.menu a.button svg {
  margin-right: 0.25rem;
  margin-bottom: -1px;
}
aside.menu a.button svg, aside.menu a.button path {
  transition: all 0.3s ease-in-out;
}
aside.menu a.button:hover {
  background-color: #34E8BD;
  color: white;
}
aside.menu a.button:hover svg, aside.menu a.button:hover path {
  fill: white;
}

.menu-wrap + article.content {
  padding-left: 18.5vw;
}

.page-wrap {
  position: relative;
}

.is-fullwidth {
  width: 100vw;
  max-width: 100vw !important;
}

hr {
  background-color: rgba(100, 100, 100, 0.1);
}

hr.page-break {
  position: relative;
  text-align: center;
  height: 4rem;
  background: transparent;
}
hr.page-break:after {
  position: relative;
  width: 12.5%;
  display: inline-block;
  margin: 2.5rem 0 3.5rem;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}

.documentation .content {
  padding-top: 8.5rem;
  margin-bottom: 5rem;
}
.documentation .content h1 {
  position: relative;
  padding-bottom: 2.67rem;
  margin: -1.5rem 0 5rem;
}
.documentation .content h1:after {
  position: absolute;
  width: 25%;
  margin: 2rem 0 0;
  display: inline-block;
  margin: 2.5rem 0 0;
  bottom: 0;
  left: 0;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}
.documentation .content blockquote p {
  font-size: 1rem;
  line-height: 1.4;
}
.documentation .content .footer-nav {
  border-top: none;
}
.documentation .content.content-docs-wide section {
  max-width: 90vw !important;
  margin-left: 5vw;
  margin-right: 5vw;
}
.documentation .content.content-docs-wide section .content ul, .documentation .content.content-docs-wide section .content ol, .documentation .content.content-docs-wide section .content dl, .documentation .content.content-docs-wide section .content p, .documentation .content.content-docs-wide section .content blockquote {
  max-width: 100%;
}
.documentation footer {
  padding-left: 2.5vw !important;
  padding-right: 2.5vw !important;
}
.documentation footer .footer-nav {
  padding: 0 0.75rem;
  margin: 0;
  border-top: none;
}

.content section {
  margin-left: auto;
  margin-right: auto;
  max-width: 48.5rem;
}
.content section .box {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 1.67rem 2rem;
}
.content section table {
  background-color: white;
  min-width: 100%;
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-collapse: collapse;
  border-radius: 0.333em;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
}
.content section table th, .content section table td {
  padding: 0.67vw 2vw;
  border-bottom: 1px solid #BEA7E5;
  line-height: 1.5;
}
.content section table th {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0D203F;
  background-color: #F9F7EE;
  line-height: 1.75;
  border-bottom: 1px solid #BEA7E5;
}
.content section table td {
  font-size: 1rem;
  border-bottom-color: #ECE5EE;
}
.content section table tr:last-of-type td {
  border: none;
}

footer {
  background: white;
  margin: 0 auto 0;
  padding: 1.25rem 0 0;
  min-height: 12rem;
  border-top: 1px solid #BEA7E5;
  position: relative;
  z-index: 1400;
  /* top row of links */
  /* bottom row of smaller links */
}
footer ul,
footer p {
  margin: 2rem 0 4rem;
}
footer p.lead {
  font-size: 1.25rem;
  max-width: 67%;
  line-height: 1.33;
  margin: -2.5rem 0 0;
  color: #0A455A;
}
footer h4 {
  margin: 3rem 0 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #EF946C;
}
footer li {
  line-height: 2;
  list-style: none;
  font-size: 1.125rem;
}
footer img {
  max-height: 3rem;
  margin-top: 0;
}
footer.is-shallow {
  min-height: 6.5rem;
}
footer.is-shallow img {
  max-height: 2.5rem;
}
footer .footer-nav {
  border-top: 1px solid #D9DBE8;
}
footer .footer-nav .navbar {
  padding: 0;
  background: transparent;
}
footer .footer-nav .navbar .navbar-item {
  padding: 0 4rem 0 0;
  font-size: 1rem;
  line-height: 1.33;
  color: #BEA7E5;
}
footer .footer-nav .navbar .navbar-item a {
  color: #b1b5d0;
  transition: all 0.3s ease-in-out;
}
footer .footer-nav .navbar .navbar-item a:hover {
  color: #585f91;
}
footer .footer-nav .navbar .navbar-item:last-of-type {
  padding-right: 0;
}
footer .footer-nav p {
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  html {
    background: #f7f4f8;
    color: #0D203F;
  }
}
@media (prefers-color-scheme: dark) {
  html {
    background: #0D203F;
    color: white;
  }
}
html.dark-theme > body {
  background: #0D203F;
  color: white;
}
html.dark-theme > body #topbar.navbar {
  background: #0D203F;
  border-color: #0A455A;
}
html.dark-theme > body #topbar.navbar .logo svg, html.dark-theme > body #topbar.navbar .logo path {
  fill: white !important;
}
html.dark-theme > body #topbar.navbar .logo-project a {
  color: #34E8BD;
}
html.dark-theme > body #topbar.navbar .logo-project a .tag {
  background-color: #213762;
  color: #BEA7E5 !important;
}
html.dark-theme > body #topbar.navbar .navbar-burger {
  color: #BEA7E5;
  height: 5.75rem;
}
html.dark-theme > body #topbar.navbar .navbar-menu a {
  color: #34E8BD;
}
html.dark-theme > body #topbar.navbar .navbar-menu .button {
  border: 3px solid #34E8BD;
}
html.dark-theme > body #topbar.navbar .navbar-menu .button:hover {
  background: #34E8BD !important;
  color: #0D203F;
}
html.dark-theme > body #topbar.navbar .dark-mode svg {
  fill: #34E8BD;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
html.dark-theme > body .menu-wrap {
  background: #0D203F;
  scrollbar-color: #525776, #09152a;
}
html.dark-theme > body aside.menu:hover {
  border-right: 2px solid #321a59;
}
html.dark-theme > body aside.menu a {
  color: white;
}
html.dark-theme > body aside.menu a:hover {
  color: #34E8BD;
  background-color: #213762;
}
html.dark-theme > body aside.menu a.button svg, html.dark-theme > body aside.menu a.button path {
  fill: white !important;
}
html.dark-theme > body .card {
  background: linear-gradient(0, #112b54, #0D203F 100%);
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.5), 0 0 0 1px rgba(10, 10, 10, 0.52);
  outline: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}
html.dark-theme > body .card figure.image {
  border-bottom: 1px solid rgba(255, 255, 255, 0.333);
}
html.dark-theme > body .card p {
  color: white;
}
html.dark-theme > body .content .box {
  background-color: #213762;
  color: white;
}
html.dark-theme > body .content section table {
  background-color: #213762;
}
html.dark-theme > body .content blockquote {
  background-color: transparent;
}
html.dark-theme > body .content blockquote p {
  background-color: #1b2c4f;
  border-color: #243c6c;
  color: white;
}
html.dark-theme > body .content blockquote > blockquote p,
html.dark-theme > body .content aside p {
  background-color: #243c6c;
  border-color: #2b477f;
  color: white;
}
html.dark-theme > body footer {
  background: #0D203F;
  border-color: #0A455A;
  color: white;
}
html.dark-theme > body footer h4 {
  color: white;
}
html.dark-theme > body footer .footer-nav {
  border-color: #06101f;
}
html.dark-theme > body footer p, html.dark-theme > body footer li, html.dark-theme > body footer a {
  color: #34E8BD;
}

/* 4.
   Typography
*/
body {
  font-family: Sen, Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 16pt;
  color: #0D203F;
}

.content {
  /* Code Styling */
  /* highlight.js css */
}
.content h1, .content h2, .content h3 {
  font-weight: bold;
  display: block;
}
.content ul, .content ol, .content dl, .content p, .content blockquote {
  margin: 1.67rem 0;
  font-size: 1rem;
  max-width: 800px;
}
.content.size-16 ul, .content.size-16 ol, .content.size-16 dl, .content.size-16 p, .content.size-16 blockquote {
  font-size: 1rem;
}
.content.size-18 ul, .content.size-18 ol, .content.size-18 dl, .content.size-18 p, .content.size-18 blockquote {
  font-size: 1.125rem;
}
.content.size-20 ul, .content.size-20 ol, .content.size-20 dl, .content.size-20 p, .content.size-20 blockquote {
  font-size: 1.25rem;
}
.content ul li {
  list-style: disc;
  list-style-position: outside;
  line-height: 1.636;
  margin: 0 0.5rem 0 1.25rem;
  padding-left: 0.5rem;
}
.content ul.pagination-list {
  margin: 0;
}
.content ul.pagination-list li {
  list-style: none;
  margin: 0;
}
.content ul.is-disc li {
  list-style: disc;
  list-style-position: outside;
}
.content ol li {
  list-style-position: outside;
  line-height: 1.636;
  margin: 0 0.5rem 0 1.25rem;
  padding-left: 0.5rem;
}
.content blockquote > blockquote,
.content aside {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.content blockquote > blockquote p,
.content aside p {
  line-height: 1.8;
  border: 1px solid #D9DBE8;
  font-size: 1.2rem;
  background: #F9F7EE;
  padding: 1.25rem 1.5rem !important;
  margin: 2.5em auto 5rem !important;
  text-align: left;
  border-radius: 0.667rem;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  color: #0D203F;
}
.content blockquote > blockquote a,
.content aside a {
  color: #0E8FDD;
}
.content blockquote {
  padding: 0rem 0 !important;
  margin: 0 !important;
  border-left: none;
}
.content blockquote p {
  color: #081f24;
  color: #345995;
  font-size: 1.1rem !important;
  line-height: 2;
  padding-right: 0 !important;
  border-left: 4px solid #D9DBE8;
  background: #f4f0f5;
  padding: 0.65rem 5% 0.65rem 2rem !important;
  margin: 1rem auto 1rem !important;
  text-align: left;
}
.content blockquote a {
  color: #0E8FDD;
}
.content iframe {
  margin: 2rem 0;
}
.content pre,
.content code {
  margin-bottom: 2rem !important;
}
.content pre code {
  margin-bottom: 0 !important;
}
.content h1 code, .content h2 code, .content h3 code, .content h4 code, .content h5 code {
  font-weight: bold;
  font-size: 1em !important;
}
.content pre,
.content code {
  margin-bottom: 2rem !important;
}
.content pre code {
  margin-bottom: 0 !important;
}
.content h1 code, .content h2 code, .content h3 code, .content h4 code, .content h5 code {
  font-weight: bold;
  font-size: 1em !important;
}
.content strong {
  color: #0D203F;
}
.content a {
  color: #0a68a1;
  border-radius: 0.333em;
  position: relative;
}
.content a:after {
  position: absolute;
  text-align: center;
  background: #0E8FDD;
  height: 0.125rem;
  content: " ";
  display: inline-block;
  opacity: 0;
  bottom: -0.2rem;
  left: 33%;
  right: 33%;
  transition: all 0.3s ease-in-out;
}
.content a:hover {
  background: rgba(255, 255, 255, 0.67);
  color: #0E8FDD;
}
.content a:hover:after {
  opacity: 1;
  left: 5%;
  right: 5%;
}
.content a:hover img + :after {
  display: none !important;
  margin-top: -4rem;
}
.content hr.page-break {
  text-align: left;
  height: 4rem;
  background: transparent;
}
.content hr.page-break:after {
  position: relative;
  width: 12.5%;
  margin: 1.5rem 0 2.5rem;
  height: 0.33rem;
}
.content .copy {
  padding: 0.5rem 1rem;
  position: relative;
  border-radius: 1rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.content .copy img {
  width: 1em;
}
.content .copy .button {
  position: absolute;
  padding: 0;
  line-height: 1;
  top: 0.01rem;
  right: 0.67rem;
  border: none;
  opacity: 0;
  background: transparent;
}
.content .copy:hover {
  background: rgba(100, 100, 100, 0.17);
}
.content .copy:hover .button {
  opacity: 1;
}
.content .copy-button {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.content .copy-button:after {
  content: "Copied";
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: absolute;
  top: 0rem;
  right: 25%;
  top: 75%;
  transform: perspective(1px) translateY(-50%);
  z-index: 860;
  background: rgba(100, 100, 100, 0.75);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0;
  color: white;
}
.content .copy-button:active {
  opacity: 0.8;
}
.content .copy-button:active:after {
  top: 50%;
  opacity: 1;
}
.content .card p {
  margin: 0;
  line-height: 1.25;
  color: #0D203F;
}
.content .card p.title {
  margin-bottom: 0.5rem;
}
.content .card p em {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  font-style: normal;
  opacity: 0.333;
  display: inline-block;
  padding: 0 0.2rem 0 0;
}
.content .card.card-color {
  border-radius: 0.33rem;
  overflow: hidden;
}
.content .card.card-color figure.image {
  border: 5px solid transparent;
  transition: all 0.3s ease-in-out;
}
.content .card.card-color figure.image:hover {
  border-color: white;
}
.content .card.card-color .card-content {
  padding: 0.5rem 0.5rem 1rem;
}
.content .card.card-color .card-content p {
  margin: 0 0 -0.333rem;
  letter-spacing: -0.02em;
}
.content h1 code,
.content h2 code,
.content h3 code,
.content h4 code,
.content h5 code,
.content p code,
.content li code,
.content td code,
.content th code,
.content dd code {
  border-radius: 0.33rem !important;
  background: #e9e1eb;
  color: #345995;
}
.content pre,
.content code {
  margin-left: 0;
  border-radius: 0.67rem;
  background-color: #0D203F;
  background-image: linear-gradient(135deg, #0D203F 0%, #10274d 100%);
  color: white;
  font-size: 0.925rem;
  color: #BEA7E5;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}
.content pre a,
.content code a {
  color: #0E8FDD;
}
.content pre > code,
.content code > code {
  background-color: transparent !important;
  background-image: none !important;
}
.content pre code.hljs,
.content code code.hljs {
  padding: 0 !important;
}
.content pre code.hljs .hljs-meta,
.content code code.hljs .hljs-meta {
  color: #34E8BD;
}
.content pre {
  margin: 1.333rem 0;
  max-width: 100%;
  position: relative;
}
.content code {
  border-radius: 0 !important;
}
.content .hljs {
  background-color: transparent !important;
}
.content pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
.content code.hljs {
  padding: 3px 5px;
}
.content .hljs {
  color: #abb2bf;
  background: #282c34;
}
.content .hljs-comment, .content .hljs-quote {
  color: #5c6370;
  font-style: italic;
}
.content .hljs-doctag, .content .hljs-formula, .content .hljs-keyword {
  color: #c678dd;
}
.content .hljs-deletion, .content .hljs-name, .content .hljs-section, .content .hljs-selector-tag, .content .hljs-subst {
  color: #e06c75;
}
.content .hljs-literal {
  color: #56b6c2;
}
.content .hljs-addition, .content .hljs-attribute, .content .hljs-meta .hljs-string, .content .hljs-regexp, .content .hljs-string {
  color: #98c379;
}
.content .hljs-attr, .content .hljs-number, .content .hljs-selector-attr, .content .hljs-selector-class, .content .hljs-selector-pseudo, .content .hljs-template-variable, .content .hljs-type, .content .hljs-variable {
  color: #d19a66;
}
.content .hljs-bullet, .content .hljs-link, .content .hljs-meta, .content .hljs-selector-id, .content .hljs-symbol, .content .hljs-title {
  color: #61aeee;
}
.content .hljs-built_in, .content .hljs-class .hljs-title, .content .hljs-title.class_ {
  color: #e6c07b;
}
.content .hljs-emphasis {
  font-style: italic;
}
.content .hljs-strong {
  font-weight: 700;
}
.content .hljs-link {
  text-decoration: underline;
}

html.dark-theme > body {
  background: #0D203F;
  color: white;
}
html.dark-theme > body h1, html.dark-theme > body h2, html.dark-theme > body h3, html.dark-theme > body h4, html.dark-theme > body p, html.dark-theme > body li {
  color: white;
}
html.dark-theme > body .content a,
html.dark-theme > body article a {
  color: #34E8BD;
}
html.dark-theme > body .content strong,
html.dark-theme > body article strong {
  color: #ECE5EE;
}

html.dark-theme > body h1, html.dark-theme > body h2, html.dark-theme > body h3, html.dark-theme > body h4, html.dark-theme > body h5, html.dark-theme > body p, html.dark-theme > body li {
  color: white;
}
html.dark-theme > body pre {
  background: linear-gradient(0, #173564 15%, #233e68 100%);
}
html.dark-theme > body pre code {
  color: #DBC8E2;
}
html.dark-theme > body .content h1 code, html.dark-theme > body .content h2 code, html.dark-theme > body .content h3 code, html.dark-theme > body .content h4 code, html.dark-theme > body .content h5 code, html.dark-theme > body .content p code, html.dark-theme > body .content li code, html.dark-theme > body .content th code, html.dark-theme > body .content td code, html.dark-theme > body .content dd code {
  background-color: #213762;
  color: #ECE5EE;
}
html.dark-theme > body .content .hljs {
  color: #D2C3D7;
}
html.dark-theme > body .content .hljs-comment,
html.dark-theme > body .content .hljs-quote {
  color: #AFAFAC;
}
html.dark-theme > body .content a:hover {
  background: #1b2c4f !important;
}
html.dark-theme > body .content .table thead {
  background-color: #525776;
}
html.dark-theme > body .content .table thead th {
  background-color: #525776;
  border-color: #040b15;
  color: #070c16;
}
html.dark-theme > body .content .table td {
  border-color: #040b15;
  color: #ECE5EE;
}
html.dark-theme > body .content .table.is-striped tbody tr:not(.is-selected):nth-child(2n) {
  background-color: #213762;
}
html.dark-theme > body .content .pagination-link, html.dark-theme > body .content .pagination-next, html.dark-theme > body .content .pagination-previous {
  border-color: #040b15;
}

/* 
   Responsive Media Queries
*/
@media screen and (max-width: 1023px) {
  #topbar.navbar .logo {
    width: 3rem;
    height: 3rem;
    background: url(../image/avatar.png) no-repeat 0 0;
    background-size: contain;
  }
  #topbar.navbar .logo svg,
#topbar.navbar .logo span {
    display: none !important;
  }
  #topbar.navbar .logo-project {
    margin-left: 0.5rem;
  }
  #topbar.navbar .navbar-menu.is-pulled-right {
    text-align: right;
  }
  #topbar.navbar .navbar-menu.is-pulled-right a {
    float: right;
  }
  .menu-wrap {
    z-index: 1400;
    width: 100vw;
    display: none;
  }
  .menu-wrap.is-active {
    display: block !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
  }
  .menu-wrap aside.menu {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 8rem;
  }
  article.content section,
footer {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  main.is-fullwidth {
    max-width: 90vw !important;
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .menu-wrap + article.content {
    padding-left: 0;
    max-width: 85vw !important;
  }
  footer.is-shallow .footer-nav {
    max-width: 90vw;
    padding-left: 5vw;
    padding-right: 5vw;
    border-color: transparent !important;
  }
  footer.is-shallow .footer-nav .navbar-item {
    display: inline-block;
  }
}
/* 
    npm package 'fermyon-styleguide':
    =================================
    0.1. Brand Colors
    0.2. Variables and Mixins
    0.3. Global Layout

1.1. Website Base
1.2. Homepage Animation
1.3. Section Layouts
1.4. Third Party Elements
1.5. Media Queries (for devices)
1.6. Dark Mode
*/
.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}

@media (prefers-color-scheme: light) {
  :root,
html,
body > #topbar.navbar {
    background-color: #0E092D;
    color-scheme: light;
  }
}
html {
  background-color: #0E092D;
}
html body,
html main {
  background-color: #FCF5FF;
}

html #topbar.navbar {
  background-color: #0E092D !important;
}
html #topbar.navbar .navbar-wrapper {
  background-color: #FCF5FF !important;
}
html .navbar-burger {
  color: #0E092D;
}

@media (prefers-color-scheme: dark) {
  :root,
html,
body > #topbar.navbar {
    background-color: #FCF5FF;
    color-scheme: dark;
  }
}
html.dark-theme {
  background-color: #FCF5FF;
}
html.dark-theme body,
html.dark-theme main {
  background-color: #0E092D;
}

html.dark-theme > body {
  background: #0E092D !important;
  color: white;
}
html.dark-theme > body .announcement-banner {
  background: #FCF5FF !important;
}
html.dark-theme > body .announcement-banner a {
  color: #0D203F;
}
html.dark-theme > body .announcement-banner a:after {
  background: linear-gradient(90deg, rgba(168, 124, 230, 0.5) 0%, rgba(168, 124, 230, 0.75) 100%);
}
html.dark-theme > body .announcement-banner .stars li {
  background: radial-gradient(ellipse at center, rgba(128, 147, 241, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
html.dark-theme > body #topbar.navbar {
  background-color: #FCF5FF !important;
}
html.dark-theme > body #topbar.navbar .navbar-wrapper {
  background-color: #0E092D !important;
}
html.dark-theme > body .navbar-burger {
  color: #E7D3F2;
}
html.dark-theme > body .navbar-burger:before {
  background: rgba(255, 255, 255, 0.13);
}
html.dark-theme > body .navbar-burger.is-active {
  color: #0E092D;
}
html.dark-theme > body .navbar-dropdown {
  background-color: #110b38;
}
html.dark-theme > body .navbar-menu.is-active {
  background: #0E092D;
}
html.dark-theme > body #topbar.navbar a.navbar-item,
html.dark-theme > body #topbar.navbar .navbar-menu a {
  color: white;
}
html.dark-theme > body #topbar.navbar a.navbar-item:hover:after,
html.dark-theme > body #topbar.navbar .navbar-menu a:hover:after {
  background: linear-gradient(90deg, #34E8BD 20%, #C5FFF1 100%);
}
html.dark-theme > body #topbar.navbar .navbar-start:after {
  background-image: linear-gradient(90deg, #34E8BD 20%, #C5FFF1 100%) !important;
}
html.dark-theme > body #topbar.navbar .navbar-end:after {
  background: #8967C2 !important;
  opacity: 0.25;
}
html.dark-theme > body #topbar.navbar a.dark-mode.navbar-item svg, html.dark-theme > body #topbar.navbar a.dark-mode.navbar-item path {
  fill: #E7D3F2 !important;
}
html.dark-theme > body #topbar.navbar .navbar-ctas.navbar-ctas-secondary a.navbar-item {
  color: #C5FFF1;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown:before {
  background-image: linear-gradient(90deg, #34E8BD 20%, #C5FFF1 100%) !important;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown a.dropdown-item:hover {
  background-color: #0c0827;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown hr.divider {
  background-color: #213762;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects .dropdown-wrap {
  width: 43.33rem;
  display: inline-block;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects section {
  border-right: 2px solid #0E092D;
  background-color: #180f4d;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects .tag-type {
  background: rgba(200, 200, 200, 0.175);
  color: #dcbfec;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects a i:after {
  background-color: #E7D3F2;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects a .title {
  color: white;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects a .title .is-blue {
  color: #5e76ed;
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects a .title .tag {
  color: #E7D3F2;
  background-color: rgba(33, 55, 98, 0.33);
}
html.dark-theme > body #topbar.navbar .navbar-dropdown#dropdown-projects a.projects-github svg {
  fill: #A87CE6 !important;
  float: left;
}
html.dark-theme > body #topbar.navbar a.button.navbar-item em {
  color: #C5FFF1;
  background: rgba(33, 55, 98, 0.2);
}
html.dark-theme > body #topbar.navbar a.button.navbar-item.is-secondary {
  color: #E7D3F2 !important;
  border: 2px solid rgba(168, 124, 230, 0.67);
}
html.dark-theme > body #topbar.navbar a.button.navbar-item.is-secondary:hover {
  background: #0D203F !important;
  color: white !important;
}
html.dark-theme > body .product-submenu a {
  color: white;
}
html.dark-theme > body .product-submenu a:hover {
  background-image: linear-gradient(90deg, rgba(168, 124, 230, 0.22) 0%, rgba(168, 124, 230, 0.1) 100%);
}
html.dark-theme > body .homepage #intro h1 {
  color: #E7D3F2;
}
html.dark-theme > body .homepage #intro h2 {
  color: white;
}
html.dark-theme > body .homepage #intro .intro-text .intro-bg-wrap {
  background-color: transparent;
}
html.dark-theme > body .homepage #intro a.button.is-primary {
  color: #0E092D !important;
}
html.dark-theme > body .homepage #intro a.button.is-ghost {
  color: white !important;
}
html.dark-theme > body .homepage #intro:before {
  background: #FCF5FF !important;
}
html.dark-theme > body #cloud-story {
  box-shadow: 19px 44px rgba(14, 9, 45, 0.2);
}
html.dark-theme > body .cta-landing-top {
  box-shadow: 0 0 84px rgba(14, 9, 45, 0.6);
}
html.dark-theme > body .cta-landing-bottom a.button.is-outline {
  color: #0E092D !important;
}
html.dark-theme > body #why-fermyon {
  background: linear-gradient(180deg, #0E092D 80%, #A87CE6 100%);
}
html.dark-theme > body #why-fermyon h2 {
  color: #E7D3F2;
}
html.dark-theme > body #why-fermyon .values-size .second-wave {
  background: url("../image/bg-size-image-dark.jpg") no-repeat 0 0;
  opacity: 1;
  box-shadow: 0px 0px 250px rgba(0, 0, 0, 0.33);
}
html.dark-theme > body #why-fermyon .values-size .wave-label {
  color: #E7D3F2;
}
html.dark-theme > body #why-fermyon .values-size .quote-values p {
  color: #8093F1 !important;
}
html.dark-theme > body #why-fermyon .projects-title p strong {
  color: white;
}
html.dark-theme > body #why-fermyon .values-language-row {
  background: url(../image/value-wasi-languages-dark.png) no-repeat center 0;
}
html.dark-theme > body #cta {
  text-align: center;
  background: linear-gradient(180deg, transparent -0.02%, rgba(167, 123, 230, 0.67) 100%);
}
html.dark-theme > body #projects {
  background: linear-gradient(0, #04090c, #0A191F 100%);
  border-top-color: #0A191F;
}
html.dark-theme > body #projects:after {
  background: #04090c;
}
html.dark-theme > body #projects h2.has-text-white,
html.dark-theme > body #projects p.lead {
  color: #BEA7E5 !important;
}
html.dark-theme > body #projects .card {
  background: linear-gradient(0, #112b54, #0D203F 100%);
}
html.dark-theme > body #projects .card h3 a {
  color: white;
}
html.dark-theme > body #projects .card p {
  color: #BEA7E5;
}
html.dark-theme > body #projects .card p a {
  color: #ECE5EE;
}
html.dark-theme > body #projects .card .button {
  border-color: #BEA7E5;
  background-color: #0D203F;
  color: #ECE5EE;
}
html.dark-theme > body #projects .card figure {
  border-color: #112b54;
  background: #445e87;
}
html.dark-theme > body .feature-page .page h1, html.dark-theme > body .feature-page .page h2, html.dark-theme > body .feature-page .page h3 {
  color: #E7D3F2;
}
html.dark-theme > body .feature-page .feature-list-links dd a {
  color: white;
}
html.dark-theme > body .feature-grid .feature-grid-item h5,
html.dark-theme > body .feature-grid .feature-grid-item p {
  color: #E7D3F2;
}
html.dark-theme > body .feature-grid .feature-grid-item h5 a,
html.dark-theme > body .feature-grid .feature-grid-item p a {
  color: #1de5b6;
  background-color: rgba(7, 5, 24, 0.8);
}
html.dark-theme > body .feature-grid .feature-grid-item h5 code,
html.dark-theme > body .feature-grid .feature-grid-item p code {
  color: white;
}
html.dark-theme > body .feature-grid .feature-grid-item img {
  background-color: black;
}
html.dark-theme > body #features-and-examples {
  border-bottom: 1px solid rgba(168, 124, 230, 0.15);
}
html.dark-theme > body #features-and-examples ul.list-features li a {
  color: #E7D3F2;
}
html.dark-theme > body #features-and-examples ul.list-features li a .tag.tag-new {
  background-color: #34E8BD;
}
html.dark-theme > body #features-and-examples ul.list-features li a:hover {
  background: rgba(32, 38, 68, 0.825) !important;
  color: white;
}
html.dark-theme > body #news {
  padding-top: 0 !important;
}
html.dark-theme > body #news .box {
  border: 1px solid #0D203F;
  background: #0f254a;
}
html.dark-theme > body #news .box h1,
html.dark-theme > body #news .box h2,
html.dark-theme > body #news .box h3,
html.dark-theme > body #news .box h4,
html.dark-theme > body #news .box p {
  color: white;
}
html.dark-theme > body #news .box h1 a,
html.dark-theme > body #news .box h2 a,
html.dark-theme > body #news .box h3 a,
html.dark-theme > body #news .box h4 a,
html.dark-theme > body #news .box p a {
  color: #34E8BD;
}
html.dark-theme > body #news .box.news-sticky {
  border-color: transparent;
  outline: none;
  background-color: #09152a;
}
html.dark-theme > body #news .box.news-sticky h3 {
  color: #34E8BD;
}
html.dark-theme > body #community {
  background: linear-gradient(0, #173564 15%, #233e68 100%);
}
html.dark-theme > body #community .tile.is-child {
  background: #0f254a;
  border: none;
}
html.dark-theme > body #community .tile.is-child.community-intro {
  background-color: #ECE5EE;
  color: #0D203F;
  border: 1px solid #BEA7E5;
}
html.dark-theme > body #community .tile.is-child.community-intro p {
  color: #0D203F;
}
html.dark-theme > body #community .tile article p.title {
  color: #BEA7E5;
  font-weight: bold;
}
html.dark-theme > body #community .tile article p.subtitle {
  color: white;
}
html.dark-theme > body #community .tile article a p.title:hover {
  color: #34E8BD;
}
html.dark-theme > body #community .tile article .twitter-tweet {
  border: 1px solid rgba(255, 255, 255, 0.075);
  color: white;
  background: rgba(0, 0, 0, 0.2);
}
html.dark-theme > body #community .tile article .twitter-tweet .r-1cvl2hr {
  color: #34E8BD;
}
html.dark-theme > body #community .tile article .twitter-tweet section {
  border: 1px solid white;
  background-color: #ECE5EE;
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.5);
}
html.dark-theme > body #community .tile article .twitter-tweet section span,
html.dark-theme > body #community .tile article .twitter-tweet section p {
  color: white !important;
}
html.dark-theme > body #community .tile article .twitter-tweet aside span {
  color: white;
}
html.dark-theme > body #community .tile article .twitter-tweet aside span.twitter-name {
  font-weight: bold;
}
html.dark-theme > body #community .tile article .twitter-tweet a {
  color: #74c5f6;
}
html.dark-theme > body #community .tile article .twitter-tweet a:hover {
  color: #34E8BD;
}
html.dark-theme > body #community .tile article .twitter-tweet p {
  color: white;
}
html.dark-theme > body #community .tile article .twitter-tweet p a {
  color: #74c5f6;
}
html.dark-theme > body .modal {
  color: white;
}
html.dark-theme > body .modal a {
  color: #34E8BD;
}
html.dark-theme > body .modal-background {
  background: black;
  opacity: 0.75;
}
html.dark-theme > body .modal-close {
  background-color: #34E8BD;
}
html.dark-theme > body .modal-close:before, html.dark-theme > body .modal-close:after {
  background-color: #0D203F;
}
html.dark-theme > body .read-more {
  border-top: 2px solid #a180d9;
}
html.dark-theme > body .read-more a {
  background: #112b54;
}
html.dark-theme > body #cta {
  background: linear-gradient(180deg, #0E092D -0.02%, #A77BE6 100%);
}
html.dark-theme > body #cta h4 {
  color: #E7D3F2;
}
html.dark-theme > body #cta .box {
  background: white;
}
html.dark-theme > body #cta p a {
  color: #34E8BD;
}
html.dark-theme > body #cta .button {
  color: #0D203F !important;
}
html.dark-theme > body .title,
html.dark-theme > body h1 {
  color: #E7D3F2;
}
html.dark-theme > body .blog .title,
html.dark-theme > body .blog h1,
html.dark-theme > body .page .title,
html.dark-theme > body .page h1,
html.dark-theme > body .content.blog .title,
html.dark-theme > body .content.blog h1 {
  color: #E7D3F2;
}
html.dark-theme > body .blog h3,
html.dark-theme > body .page h3,
html.dark-theme > body .content.blog h3 {
  color: #C5FFF1;
}
html.dark-theme > body .blog li,
html.dark-theme > body .blog p,
html.dark-theme > body .page li,
html.dark-theme > body .page p,
html.dark-theme > body .content.blog li,
html.dark-theme > body .content.blog p {
  font-size: 1.25rem;
}
html.dark-theme > body .blog p a,
html.dark-theme > body .page p a,
html.dark-theme > body .content.blog p a {
  color: #4bebc4;
  background-color: rgba(82, 87, 118, 0.125);
  border-radius: 0.5rem;
}
html.dark-theme > body .blog p a:hover,
html.dark-theme > body .page p a:hover,
html.dark-theme > body .content.blog p a:hover {
  background-color: rgba(75, 79, 107, 0.125);
}
html.dark-theme > body .blog strong,
html.dark-theme > body .page strong,
html.dark-theme > body .content.blog strong {
  color: #ECE5EE;
}
html.dark-theme > body .blog code,
html.dark-theme > body .page code,
html.dark-theme > body .content.blog code {
  color: #BEA7E5;
  background: rgba(23, 53, 100, 0.5) !important;
}
html.dark-theme > body .blog pre,
html.dark-theme > body .page pre,
html.dark-theme > body .content.blog pre {
  background: linear-gradient(0, #122a4f 15%, #1d3355 100%) !important;
}
html.dark-theme > body .blog pre code,
html.dark-theme > body .page pre code,
html.dark-theme > body .content.blog pre code {
  background: transparent !important;
}
html.dark-theme > body .blog article h1.title a,
html.dark-theme > body .page article h1.title a,
html.dark-theme > body .content.blog article h1.title a {
  color: #E7D3F2;
  background-color: rgba(4, 3, 13, 0.75);
}
html.dark-theme > body .blog article h1.title a:hover,
html.dark-theme > body .page article h1.title a:hover,
html.dark-theme > body .content.blog article h1.title a:hover {
  background-color: rgba(12, 8, 39, 0.5);
}
html.dark-theme > body .blog article a,
html.dark-theme > body .page article a,
html.dark-theme > body .content.blog article a {
  color: #4bebc4;
  border-radius: 0.5rem;
}
html.dark-theme > body .blog blockquote p,
html.dark-theme > body .page blockquote p,
html.dark-theme > body .content.blog blockquote p {
  background-color: #0D203F !important;
  color: white !important;
}
html.dark-theme > body .page.page-news section.news-item {
  background: transparent;
}
html.dark-theme > body .page.page-news section.news-item a {
  color: #0E092D;
  background-color: #180f4d;
}
html.dark-theme > body .page.page-news section.news-item span {
  color: #E7D3F2;
}
html.dark-theme > body .page.page-news section.news-item span.date {
  color: #E7D3F2;
}
html.dark-theme > body .page.page-news section.news-item span.url {
  color: #E7D3F2;
}
html.dark-theme > body .page.page-news section.news-item a::after {
  background-color: rgba(255, 255, 255, 0.125);
}
html.dark-theme > body .page.page-news h3 {
  color: #A87CE6 !important;
}
html.dark-theme > body .page .card.press-release.is-outlined.is-purple {
  background: url("../image/bg-cloud-story.jpg") no-repeat right 0;
  border: none !important;
  outline: none !important;
}
html.dark-theme > body .page .card.press-release.is-outlined.is-purple .card-content a {
  color: #C5FFF1 !important;
}
html.dark-theme > body .page .card.press-release.is-outlined.is-purple .card-content a span.date {
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  color: #E7D3F2;
}
html.dark-theme > body .page .card.press-release.is-outlined.is-purple .card-content .title {
  color: white !important;
}
html.dark-theme > body .page .card.is-bright {
  outline: 2px solid #A87CE6;
}
html.dark-theme > body .page .card.is-bright .card-header {
  color: #0E092D;
}
html.dark-theme > body .page .card.is-bright .card-content {
  color: white;
}
html.dark-theme > body .page .card.is-bright .card-content p,
html.dark-theme > body .page .card.is-bright .card-content ul,
html.dark-theme > body .page .card.is-bright .card-content li {
  font-size: 1rem;
  color: white;
}
html.dark-theme > body .page .card.is-bright .card-content .button {
  background-color: #34E8BD;
}
html.dark-theme > body .page .card.is-bright .card-content .button a {
  color: #0E092D !important;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-header {
  color: #0E092D;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-header .card-header-title h1,
html.dark-theme > body .page .card.is-bright.is-solid .card-header .card-header-title h2,
html.dark-theme > body .page .card.is-bright.is-solid .card-header .card-header-title h3,
html.dark-theme > body .page .card.is-bright.is-solid .card-header .card-header-title h4,
html.dark-theme > body .page .card.is-bright.is-solid .card-header .card-header-title p {
  color: #0E092D;
}
html.dark-theme > body .page .card.is-bright.is-solid p {
  color: #0E092D !important;
}
html.dark-theme > body .page .card.is-bright.is-solid p.has-text-white {
  color: white !important;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-content {
  color: #0E092D;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-content a,
html.dark-theme > body .page .card.is-bright.is-solid .card-content p > a {
  color: #116455;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-content a:hover,
html.dark-theme > body .page .card.is-bright.is-solid .card-content p > a:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
}
html.dark-theme > body .page .card.is-bright.is-solid .card-content.has-text-white > a, html.dark-theme > body .page .card.is-bright.is-solid .card-content.has-text-white p > a {
  color: #34E8BD !important;
}
html.dark-theme > body .page .card.is-bright.is-solid.is-purple {
  background: url("../image/gradient-spin-right-1.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
html.dark-theme > body .page .card.is-bright.is-solid.is-blue {
  background: url("../image/gradient-spin-right-2.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
html.dark-theme > body .page .card.is-bright.is-solid.is-green {
  background: url("../image/gradient-spin-right-3.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
html.dark-theme > body .page .card.is-outlined.is-purple {
  background: url("../image/gradient-spin-left-2.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #E7D3F2;
}
html.dark-theme > body .page .card.is-outlined.is-blue {
  background: url("../image/gradient-spin-left-1.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #8093F1;
}
html.dark-theme > body .page .card.is-outlined.is-green {
  background: url("../image/gradient-spin-left-3.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #C5FFF1;
}
html.dark-theme > body .page-pricing h1 {
  color: #E7D3F2 !important;
}
html.dark-theme > body .page-pricing table.pricing-table td {
  background-color: #312E54;
}
html.dark-theme > body .page-pricing table.pricing-table td.bordered {
  border-left: 1px solid #211E21 !important;
  border-bottom: 1px solid rgba(166, 123, 229, 0.35) !important;
}
html.dark-theme > body .page-pricing table.pricing-table td.bordered.bordered-end {
  border-bottom: none !important;
}
html.dark-theme > body .page-pricing table.pricing-table td p a {
  color: white !important;
}
html.dark-theme > body .page-pricing table.pricing-table td.pricing-sidebar {
  background: #141037;
}
html.dark-theme > body .page-pricing table.pricing-table td .pricing-title-pill {
  background: #0E092D;
  color: #A87CE6;
}
html.dark-theme > body .page-pricing table.pricing-table td.pricing-labels {
  color: #cca2e3 !important;
}
html.dark-theme > body .page-pricing .accordion button {
  color: white;
}
html.dark-theme > body .page-pricing .accordion button .icon::before, html.dark-theme > body .page-pricing .accordion button .icon::after {
  background-color: white;
}
html.dark-theme > body .box {
  background: #0f254a;
}
html.dark-theme > body table {
  background: #112b54;
  margin-bottom: 2.5rem !important;
}
html.dark-theme > body table th,
html.dark-theme > body table td {
  border-bottom: 1px solid #0D203F;
  color: white;
  font-size: 0.925rem;
}
html.dark-theme > body table th a,
html.dark-theme > body table td a {
  color: #34E8BD;
}
html.dark-theme > body table th {
  background-color: #0a1931;
  border-bottom: 1px solid #0D203F;
}
html.dark-theme > body table td {
  border-bottom-color: #0D203F;
}
html.dark-theme > body article.blog.content h1 a.anchor-link,
html.dark-theme > body article.blog.content h2 a.anchor-link,
html.dark-theme > body article.blog.content h3 a.anchor-link,
html.dark-theme > body article.blog.content h4 a.anchor-link,
html.dark-theme > body article.blog.content h5 a.anchor-link {
  fill: white;
  margin-left: 0.5rem;
  opacity: 0.5;
  display: inline-block;
  opacity: 0;
}
html.dark-theme > body article.blog.content h1:hover a.anchor-link,
html.dark-theme > body article.blog.content h2:hover a.anchor-link,
html.dark-theme > body article.blog.content h3:hover a.anchor-link,
html.dark-theme > body article.blog.content h4:hover a.anchor-link,
html.dark-theme > body article.blog.content h5:hover a.anchor-link {
  opacity: 1;
}
html.dark-theme > body article.blog blockquote p {
  background: #846bae;
  color: #0D203F;
  border-color: #BEA7E5;
  color: white;
  font-size: 1.25rem !important;
}
html.dark-theme > body article.blog blockquote blockquote p {
  background: #79659b !important;
}
html.dark-theme > body article.blog blockquote blockquote p a {
  background: #7d7290 !important;
  color: white;
  font-weight: bold;
}
html.dark-theme > body .hero-intro .navbar-menu .navbar-item {
  color: white;
}
html.dark-theme > body .hero-intro .navbar-menu .navbar-item:hover, html.dark-theme > body .hero-intro .navbar-menu .navbar-item:active {
  color: #0D203F;
}
html.dark-theme > body .event-page-wrap #events-menu a {
  color: white;
}
html.dark-theme > body .event-page-wrap #events-menu a:hover {
  background-image: linear-gradient(90deg, rgba(168, 124, 230, 0.22) 0%, rgba(168, 124, 230, 0.1) 100%);
}
html.dark-theme > body .event-page-wrap #event-intro-kubecon24 {
  background: url(/static/image/kubecon-bg-transparent.png) no-repeat center top, url(/static/image/kubecon-bg.jpg) repeat-x center bottom !important;
}
html.dark-theme > body .event-page-wrap #event-intro-kubecon24:before {
  background: url(/static/image/kubecon-header.jpg) no-repeat center top !important;
  background-size: cover !important;
}
html.dark-theme > body .event-page-wrap #kubecon-announcement {
  background: linear-gradient(180deg, #384687 0%, rgba(56, 70, 135, 0) 100%);
}
html.dark-theme > body .event-page-wrap #kubecon-announcement .buttons a.button {
  color: white !important;
}
html.dark-theme > body .event-page-wrap #events-list .tag,
html.dark-theme > body .event-page-wrap #events-list .card-header-title {
  background: white;
}
html.dark-theme > body .event-page-wrap #events-list .card h2,
html.dark-theme > body .event-page-wrap #events-list .card p {
  color: white !important;
}
html.dark-theme > body .event-page-wrap h4 {
  color: #C5FFF1 !important;
}
html.dark-theme > body #rtcWindow .rtc-chat section a {
  color: white !important;
  font-weight: bold;
}
html.dark-theme > body .about-page .about-team-list .about-team-item .card {
  background: linear-gradient(0, #173564 15%, #233e68 100%);
}
html.dark-theme > body .about-page .about-team-list .about-team-item .image {
  border-color: #0D203F;
}
html.dark-theme > body .about-page .about-team-list .about-team-item .card-content .about-team-body::after {
  border-left: 2px solid rgba(30, 30, 30, 0.2);
}
html.dark-theme > body .about-page .about-team-list .about-team-item .card-content p {
  color: white;
}
html.dark-theme > body .about-page .about-team-list .about-team-item .card-content a {
  color: #4bebc4;
  background-color: #112b54;
  border-radius: 0.5rem;
}
html.dark-theme > body .about-page .about-team-list .about-team-item .card-content a:hover {
  background-color: #0a1830;
}
html.dark-theme > body aside.menu {
  left: 5vw;
}
html.dark-theme > body aside.menu a {
  color: white;
}
html.dark-theme > body .blog-wrap:after {
  border-radius: 68.4375rem;
  background: rgba(230, 210, 241, 0.2);
  opacity: 0.2;
}
html.dark-theme > body .blog nav.blog-categories.tag-list a {
  color: white !important;
}
html.dark-theme > body .blog.blog-listing article .blog-summary .truncate p, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate ul, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate li, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate ol, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate dl, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate h2, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate h3, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate h4, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate a, html.dark-theme > body .blog.blog-listing article .blog-summary .truncate blockquote {
  color: white !important;
}
html.dark-theme > body .blog.blog-listing article .blog-summary .truncate::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #0e092d 50%);
}
html.dark-theme > body .blog.blog-post a.blog-back img {
  opacity: 0.67;
}
html.dark-theme > body .blog.blog-post a.blog-link h1 {
  color: #E7D3F2;
}
html.dark-theme > body .blog.blog-post a.blog-link h2 {
  color: #E7D3F2;
}
html.dark-theme > body .blog.blog-post a.blog-link h3 {
  color: #C5FFF1;
}
html.dark-theme > body .blog.blog-post a.blog-link:hover h1 {
  color: white;
}
html.dark-theme > body .blog.blog-post .blog-meta span.tag {
  background-color: #39255c;
}
html.dark-theme > body .blog.blog-post .blog-meta span.taga {
  color: #E7D3F2 !important;
}
html.dark-theme > body .blog.blog-post .blog-meta span.tag:hover {
  background-color: #39255c !important;
}
html.dark-theme > body .blog.blog-post .blog-meta span.date,
html.dark-theme > body .blog.blog-post .blog-meta span.date a,
html.dark-theme > body .blog.blog-post .blog-meta span.tag,
html.dark-theme > body .blog.blog-post .blog-meta span.tag a {
  color: #E7D3F2 !important;
}
html.dark-theme > body .blog.blog-post .blog-meta .blog-meta-avatar .tag {
  background-color: #39255c;
  color: #E7D3F2 !important;
}
html.dark-theme > body .blog-sidebar .box,
html.dark-theme > body .blog-sidebar .blog-cta-link li a {
  background: #132e5b;
  color: white;
}
html.dark-theme > body .blog-sidebar .box p,
html.dark-theme > body .blog-sidebar .blog-cta-link li a p {
  color: white;
}
html.dark-theme > body .content.blog .blog-cta-text-link h2 a {
  color: #E7D3F2;
  background: transparent !important;
}
html.dark-theme > body .content.blog .blog-cta-text-link h2 a:hover {
  background: transparent !important;
}
html.dark-theme > body #project-intro h1 {
  color: #E7D3F2;
}
html.dark-theme > body #project-intro .buttons .button.is-primary {
  color: #0E092D !important;
}
html.dark-theme > body #project-intro .buttons .button.is-ghost {
  color: white;
}
html.dark-theme > body #project-highlights h1 {
  color: white;
}
html.dark-theme > body #project-highlights h2 {
  color: #C5FFF1;
}
html.dark-theme > body #project-highlights h1 a, html.dark-theme > body #project-highlights h2 a, html.dark-theme > body #project-highlights p a {
  color: #34E8BD;
}
html.dark-theme > body .platform-page #platform-intro {
  background: transparent none;
}
html.dark-theme > body .platform-page #platform-intro p a {
  color: #34E8BD;
}
html.dark-theme > body .platform-page #platform-intro a.button.is-link {
  color: #34E8BD !important;
}
html.dark-theme > body footer form input.is-rounded {
  background: #0E092D;
  color: white;
}
html.dark-theme > body footer form input.is-rounded::placeholder {
  color: rgba(255, 255, 255, 0.825);
}
html.dark-theme > body footer .footer-links-wrap h3 {
  color: #a889dc !important;
}
html.dark-theme > body footer .footer-links-wrap a {
  color: white !important;
}
html.dark-theme > body footer .footer-links-wrap .footer-social h2 {
  color: #E7D3F2;
}
html.dark-theme > body footer .footer-links-wrap .footer-social a {
  background-image: linear-gradient(90deg, #cca2e3 0%, #b171d5 100%) !important;
  color: #0E092D !important;
}
html.dark-theme > body footer .footer-links-wrap .footer-social a.button {
  background-color: #16c69c !important;
  border: 1px solid rgba(231, 211, 242, 0.5) !important;
}
html.dark-theme > body footer .footer-links-wrap .footer-social a.button::after {
  background-color: #14af8a !important;
}

.announcement-banner {
  background: #0E092D;
  z-index: 1111;
  overflow: hidden;
  transition: opacity;
  text-align: center;
  opacity: 1;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block !important;
  max-height: 3.75rem;
}
.announcement-banner .column {
  padding: 0 !important;
}
.announcement-banner:hover {
  background: #110b38;
}
.announcement-banner a {
  display: inline-block;
  padding: 0.75rem 0;
  line-height: 2;
  margin: 0 auto;
  width: 100%;
  color: white;
}
.announcement-banner a span {
  position: relative;
  z-index: 1211;
  line-height: 3.5;
}
.announcement-banner a:after {
  width: 80vw;
  left: 50%;
  top: 1.425em;
  position: absolute;
  margin-left: -40vw;
  background: linear-gradient(90deg, rgba(33, 55, 98, 0.5) 0%, #213762 100%);
  display: block;
  content: " ";
  height: 2rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 920;
  opacity: 0.2;
}
.announcement-banner a:hover:after {
  opacity: 1;
}
.announcement-banner .stars {
  width: 100%;
  height: 4rem;
  position: relative;
  background: transparent;
  background-size: 100%;
  background-position: 0px 15px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.announcement-banner .stars li {
  background: radial-gradient(ellipse at center, rgb(230, 234, 237) 0%, rgba(21, 118, 151, 0) 100%);
  list-style-type: none;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
}
.announcement-banner .stars li.small {
  width: 5px;
  height: 5px;
}
.announcement-banner .stars li:nth-child(1) {
  top: 46%;
  left: 5%;
}
.announcement-banner .stars li:nth-child(2) {
  top: 51%;
  left: 9%;
}
.announcement-banner .stars li:nth-child(3) {
  top: 68%;
  left: 10%;
}
.announcement-banner .stars li:nth-child(4) {
  left: 17.4%;
  bottom: 31%;
}
.announcement-banner .stars li:nth-child(5) {
  left: 18.3%;
  top: 68%;
}
.announcement-banner .stars li:nth-child(6) {
  left: 21%;
  bottom: 38%;
}
.announcement-banner .stars li:nth-child(7) {
  left: 83%;
  top: 62%;
}
.announcement-banner .stars li:nth-child(8) {
  left: 89%;
  top: 63%;
}
.announcement-banner .stars li:nth-child(9) {
  left: 77%;
  top: 17%;
}
.announcement-banner .stars li:nth-child(10) {
  left: 33%;
  top: 17%;
}
.announcement-banner .stars li:nth-child(11) {
  top: 45%;
  left: 29%;
}
.announcement-banner .stars li:nth-child(12) {
  left: 34%;
  top: 50%;
}
.announcement-banner .stars li:nth-child(13) {
  left: 75.4%;
  top: 50.3%;
}
.announcement-banner .stars li:nth-child(14) {
  left: 69.8%;
  top: 51%;
}
.announcement-banner .stars li:nth-child(15) {
  top: 58%;
  left: 33.5%;
}
.announcement-banner .stars li:nth-child(16) {
  left: 93.6%;
  bottom: 33%;
}
.announcement-banner .stars li:nth-child(17) {
  left: 90%;
  top: 28.5%;
}
.announcement-banner .stars li:nth-child(18) {
  left: 92%;
  top: 6%;
}
.announcement-banner .stars li:nth-child(19) {
  left: 87%;
  top: 78%;
}
.announcement-banner .stars li:nth-child(20) {
  left: 43.2%;
  top: 21%;
}

#topbar.navbar {
  border: none;
  padding: 0;
  min-height: 97px;
}
#topbar.navbar .navbar-wrapper {
  border-radius: 1.5rem 1.5rem 0 0 !important;
  margin: 0.25rem 0.25rem 0;
  position: relative;
  width: 100%;
  display: block;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  display: flex;
  flex-direction: row;
}
#topbar.navbar .navbar-item {
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-weight: 500;
  margin-left: 0;
  letter-spacing: 0.015rem;
  padding: 0 !important;
  line-height: 1.5 !important;
  display: inline-flex;
}
#topbar.navbar .navbar-item .logo {
  margin-top: 0;
}
#topbar.navbar .navbar-item .logo .spin-front, #topbar.navbar .navbar-item .logo .spin-back {
  display: none;
}
#topbar.navbar .navbar-item .logo > svg {
  max-height: 1rem;
  max-width: 8.25rem;
}
#topbar.navbar a.dark-mode.navbar-item {
  position: absolute !important;
  top: 0.667rem !important;
  right: 0.125rem !important;
  margin: 0 !important;
  opacity: 0.925;
}
#topbar.navbar a.dark-mode.navbar-item svg {
  max-width: 1.5rem;
  fill: #8967C2 !important;
}
#topbar.navbar a.dark-mode.navbar-item:after {
  display: none;
}
#topbar.navbar a.button.navbar-item {
  margin-top: 3rem;
  margin-left: 0.425rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  min-width: 7rem;
  padding: 0.25rem 2rem 0.25rem 0.925rem !important;
  border: none;
  flex-direction: row;
  align-items: center;
  transition: opacity 0.2s ease-in-out;
}
#topbar.navbar a.button.navbar-item img {
  margin: 0 0.5rem 0 0;
  max-width: 1.25rem;
}
#topbar.navbar a.button.navbar-item em {
  color: #A87CE6;
  font-style: normal;
  margin: 0 -0.225rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  padding: 0.125rem 0.33rem !important;
  font-size: 0.825rem;
  background: rgba(0, 0, 0, 0.125);
  border-radius: 0.5rem;
}
#topbar.navbar a.button.navbar-item:hover {
  opacity: 0.84;
}
#topbar.navbar a.button.navbar-item.is-primary {
  color: #0E092D !important;
  background: #34E8BD url(/static/image/icon/icon-arrow-sm.svg) no-repeat 94% 50% !important;
  min-width: 13.5rem;
  font-weight: 500;
  text-align: left;
}
#topbar.navbar a.button.navbar-item.is-primary em {
  color: rgba(14, 9, 45, 0.825) !important;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.125);
}
#topbar.navbar a.button.navbar-item.is-primary:hover {
  background-color: #34E8BD !important;
}
#topbar.navbar a.button.navbar-item.is-secondary {
  color: #345995 !important;
  background: transparent;
  border: 2px solid rgba(168, 124, 230, 0.5);
  padding-right: 1.125rem !important;
}
#topbar.navbar a.button.navbar-item.is-secondary em {
  background: rgba(137, 103, 194, 0.2);
}
#topbar.navbar a.button.navbar-item.is-secondary:hover {
  background-color: transparent;
  color: #345995;
}
#topbar.navbar .navbar-start,
#topbar.navbar .navbar-end {
  position: relative;
  display: flex;
  vertical-align: bottom;
  min-height: 4.5rem;
}
#topbar.navbar .navbar-start:after,
#topbar.navbar .navbar-end:after {
  left: 0;
  right: 0;
  bottom: 0;
  content: " ";
  display: block;
  position: absolute;
  height: 6px;
  border-radius: 1rem;
  background-color: #E7D3F2;
  transition: opacity 0.5s ease-in-out;
}
#topbar.navbar .navbar-start {
  margin-top: 2.075rem;
  flex-direction: row;
  justify-content: space-between;
}
#topbar.navbar .navbar-start:after {
  background-image: linear-gradient(90deg, #8093F1 25%, #A87CE6 100%);
}
#topbar.navbar .navbar-start:hover:after {
  opacity: 0.333;
}
#topbar.navbar .navbar-end {
  flex-grow: 1;
}
#topbar.navbar .navbar-end:after {
  left: 1.5rem;
  right: 0;
}
#topbar.navbar .navbar-menu {
  align-content: space-between;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 33rem;
  margin-left: 2.25vw;
  margin-top: -2px;
}
#topbar.navbar .navbar-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
  display: flex;
  color: #384687;
  margin-left: 2.5vw;
}
#topbar.navbar .navbar-menu a.navbar-item-hover {
  position: relative;
}
#topbar.navbar .navbar-menu a.navbar-item-hover:after {
  left: -3rem;
  right: 3rem;
  bottom: -25px;
  content: " ";
  display: block;
  position: absolute;
  height: 6px;
  border-radius: 1rem;
  background: linear-gradient(90deg, #8093F1 25%, #A87CE6 100%);
  opacity: 0;
  transition: all 0.225s ease-in-out;
}
#topbar.navbar .navbar-menu a.navbar-item-hover:hover:after {
  left: -1px;
  right: -1px;
  opacity: 1;
  background: linear-gradient(90deg, #8093F1 25%, #A87CE6 100%);
}
#topbar.navbar .navbar-menu a small.caret {
  position: absolute;
  margin-left: 0;
  right: -0.5rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown {
  margin-left: 1rem;
  border-radius: 1rem;
  padding: 1.5rem 0.67rem 0.5rem;
  min-height: 12rem;
  vertical-align: baseline;
  flex-direction: column;
  vertical-align: baseline;
  display: flex;
  border: 1px solid rgba(137, 103, 194, 0.333);
  margin-top: -0.75rem;
  margin-left: 0.825rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown:before {
  left: 12px;
  right: 12px;
  top: 9px;
  content: " ";
  display: block;
  position: absolute;
  height: 6px;
  border-radius: 1rem;
  background: linear-gradient(90deg, #8093F1 25%, #A87CE6 100%);
  opacity: 1;
  transition: all 0.225s ease-in-out;
  z-index: 800;
}
#topbar.navbar .navbar-menu .navbar-dropdown:hover:before {
  background: linear-gradient(90deg, #A87CE6 5%, #8093F1 82%);
}
#topbar.navbar .navbar-menu .navbar-dropdown a.dropdown-item {
  margin: 0;
  padding: 0.67rem 2rem 0.67rem 1rem;
  border-radius: 0.67rem;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  display: flex;
}
#topbar.navbar .navbar-menu .navbar-dropdown a.dropdown-item:after {
  display: none;
}
#topbar.navbar .navbar-menu .navbar-dropdown a.dropdown-item:hover {
  background-color: rgba(197, 255, 241, 0.5);
}
#topbar.navbar .navbar-menu .navbar-dropdown a.dropdown-item:hover:after {
  display: none;
}
#topbar.navbar .navbar-menu .navbar-dropdown hr {
  margin: 0.5rem 0;
}
#topbar.navbar .navbar-menu .navbar-dropdown p.subtitle {
  margin: 1.125rem 1rem 1.125rem !important;
  padding: 0 !important;
  color: #8967C2;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  font-size: 0.8125rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-developer {
  display: flex;
  flex-direction: column;
  vertical-align: bottom;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects .dropdown-wrap {
  width: 43.33rem;
  display: inline-block;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section {
  width: 24.5em;
  background-color: #FDF8FF;
  border-right: 2px solid white;
  display: inline-table !important;
  min-height: 18rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section .tag-type {
  background: rgba(200, 200, 200, 0.175);
  border-radius: 1rem;
  margin: 1rem 0 2rem 1rem;
  display: inline-block !important;
  max-width: 6.5rem;
  line-height: 1.925;
  color: #2f1e97;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a {
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  position: relative;
  display: block;
  max-width: 24rem !important;
  margin-bottom: 1rem;
  min-height: 5rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a i {
  display: block;
  width: 4rem;
  text-align: center;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a i:after {
  content: " ";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  position: absolute;
  background: #E7D3F2;
  top: 0.333rem;
  left: 0.25rem;
  z-index: 285;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a i img {
  margin: 0.5rem auto !important;
  max-width: auto !important;
  max-height: 3rem !important;
  display: inline-block !important;
  position: relative;
  z-index: 320;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a .title {
  font-size: 1rem !important;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  color: #0E092D;
  display: flex;
  margin: 0 1rem 0.75rem 3.5rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a .title .is-blue {
  color: #3b58e9;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a .title .tag {
  color: #8967C2;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  font-size: 0.75rem;
  padding: 0.1rem 0.3rem;
  margin: 0.12rem 0 0 1.5rem;
  line-height: 1;
  height: 1rem;
  display: inline-block;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a .title .external-icon {
  margin-left: 0.5rem;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a .description {
  display: inline-block !important;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  font-size: 0.75rem;
  max-width: 19rem !important;
  letter-spacing: 0;
  margin-left: 3.5rem;
  white-space: normal;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a.projects-github {
  line-height: 1;
  display: block;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-projects section a.projects-github svg {
  fill: #A87CE6 !important;
  float: left;
}
#topbar.navbar .navbar-menu .navbar-dropdown#dropdown-features a {
  font-weight: 600;
}
#topbar.navbar .navbar-ctas.navbar-ctas-secondary {
  position: absolute;
  top: 0.67rem;
  right: 2.5rem;
  display: flex;
  flex-direction: row;
  min-width: 15rem;
  align-items: end;
  justify-content: end;
}
#topbar.navbar .navbar-ctas.navbar-ctas-secondary a.navbar-item {
  font-size: 0.8215rem;
  margin: 0 0 0 1.25rem;
  padding: 0;
  line-height: 1;
  color: #345995;
  font-weight: 500;
}
#topbar.navbar.headroom--not-top.headroom--pinned {
  height: 75px;
  min-height: 75px;
}
#topbar.navbar.headroom--not-top.headroom--pinned .navbar-start {
  margin-top: 0;
}
#topbar.navbar.headroom--not-top.headroom--pinned a.button.navbar-item {
  margin-top: 0.875rem;
}
#topbar.navbar.headroom--not-top.headroom--pinned .navbar-ctas-secondary {
  margin-top: -3rem;
}
#topbar.navbar.headroom--not-top.headroom--pinned a.dark-mode.navbar-item {
  top: -3rem !important;
}

.navbar-burger {
  left: auto;
  right: 1.25rem;
  top: 1rem;
  position: fixed;
  padding: 2.5rem;
  height: 3.25rem !important;
  color: #0E092D;
  z-index: 1320;
}
.navbar-burger:before {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 2rem;
  content: " ";
  display: block;
  border: 1px solid rgba(14, 9, 45, 0.125);
  right: 1rem;
  top: 1rem;
  background: rgba(255, 255, 255, 0.67);
}
.navbar-burger.is-active {
  display: flex;
}
.navbar-burger span {
  left: calc(50% - 5px);
}

.announcement-banner + #topbar.navbar {
  top: 46px;
}

.announcement-banner + #topbar.navbar + main {
  padding-top: 7.25rem !important;
}

#fermyonMenu {
  display: none;
  position: fixed;
  z-index: 1240;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 9, 45, 0.95);
  padding: 1rem;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
#fermyonMenu:before {
  background: rgba(14, 9, 45, 0.95);
  position: fixed;
  top: 0;
  height: 1rem;
  left: 0;
  right: 0;
  content: " ";
  display: block;
  z-index: 1527;
}
#fermyonMenu:after {
  background: rgba(14, 9, 45, 0.95);
  position: fixed;
  top: 100vh;
  margin-top: -1rem;
  height: 1rem;
  left: 0;
  right: 0;
  content: " ";
  display: block;
  z-index: 1525;
}
#fermyonMenu.is-active {
  display: block;
}
#fermyonMenu span.tag,
#fermyonMenu a {
  padding: 0.333rem 5vw 0.333rem 15vw;
  display: block;
}
#fermyonMenu a {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 1.33rem;
  color: #0E092D;
}
#fermyonMenu nav {
  background: #FCF5FF;
  height: calc(100vh - 2rem);
  min-width: 100%;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow-y: scroll;
}
#fermyonMenu nav section {
  border-bottom: 1px solid rgba(168, 124, 230, 0.5);
  margin: 0 auto;
  position: relative;
  padding-top: 3.67rem;
  padding-bottom: 0.67rem;
}
#fermyonMenu nav section:last-of-type {
  border: none;
  padding-bottom: 1rem !important;
}
#fermyonMenu nav section span.tag {
  position: absolute;
  font-size: 0.925rem;
  padding-top: 0;
  top: 0.67rem;
  margin-bottom: 0.67rem;
  background: transparent;
  line-height: 1.75;
}
#fermyonMenu nav section em {
  font-size: 1.125rem;
  position: absolute;
  left: 3vw;
  top: 0.67rem;
  color: #8093F1;
}
#fermyonMenu .dark-mode {
  position: absolute;
  top: 1.25rem;
  right: 6rem;
  padding: 1.5rem 0.5rem;
  transform: rotate(0deg);
  opacity: 0.75;
  transition: all 0.3s ease-in-out;
}
#fermyonMenu .dark-mode:hover {
  background: transparent;
  opacity: 1;
}
#fermyonMenu .dark-mode svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

html.dark-theme > body #fermyonMenu .dark-mode {
  transform: rotate(180deg);
  top: 0.625rem;
}

#fermyonMenu.is-active + header.navbar {
  z-index: 1202;
}
#fermyonMenu.is-active + header.navbar .navbar-wrapper {
  z-index: 1211;
}
#fermyonMenu.is-active + header.navbar .navbar-wrapper .navbar-burger {
  position: fixed;
  z-index: 1342;
}

footer {
  position: relative;
  background-color: transparent !important;
  border: none !important;
}
footer .columns {
  max-width: 82rem;
}
footer .footer-wrap {
  padding: 0;
}
footer a.button {
  border: none !important;
  display: inline-block;
  padding: 0 !important;
  width: 100%;
  line-height: 3.2rem !important;
  height: 3.2rem !important;
  border-radius: 2rem !important;
  background-image: linear-gradient(90deg, #e2c9ef 0%, #E7D3F2 100%) !important;
  z-index: 320;
  opacity: 1;
  border: 1px solid #b171d5 !important;
  margin: 1.33rem 0 4rem !important;
  transition: all 0.3s ease-in-out;
}
footer a.button::after {
  background-color: #14af8a !important;
  opacity: 1;
  z-index: 322 !important;
  right: 3px;
  top: 3px;
  content: "→";
  display: inline-block;
  width: 2.75rem;
  line-height: 2.75;
  height: 2.75rem;
  position: absolute;
  border-radius: 3rem;
}
footer .footer-links-wrap {
  padding-top: 4rem;
  font-size: 1rem;
}
footer .footer-links-wrap h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  margin-bottom: 0.925rem;
  color: #0E092D !important;
  font-size: 1.25rem;
}
footer .footer-links-wrap a {
  display: block;
  line-height: 2.25;
  color: #384687 !important;
}
footer .footer-links-wrap a:hover {
  color: #345995;
}
footer .footer-links-wrap .footer-social {
  padding-top: 0;
}
footer .footer-links-wrap .footer-social h2 {
  font-size: 1.33rem;
  line-height: 1.425;
  color: #0E092D;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.05rem;
  font-weight: 500;
  margin: 0.5rem 0 1.5rem;
}
footer .footer-links-wrap .footer-social a[class^=footer] {
  width: 2.67rem;
  height: 2.67rem;
  padding: 0.5rem;
  border-radius: 3rem;
  display: inline-block;
  margin-right: 1rem;
  background-color: #213762;
  background: linear-gradient(180deg, #A87CE6 0%, #cca2e3 100%);
  transition: all 0.3s ease-in-out;
}
footer .footer-links-wrap .footer-social a[class^=footer] img {
  max-width: 1.67rem;
  margin: 0 auto;
}
footer .footer-links-wrap .footer-social a[class^=footer]:hover {
  opacity: 0.75;
}
footer .footer-links-wrap .footer-social p {
  margin: 2rem 0 0;
}
footer img.footer-badge {
  max-height: auto !important;
  margin: -2rem 0 1rem 0.75rem;
  box-shadow: 0px 2px 7px rgba(15, 10, 46, 0.67);
  border-radius: 4px 24px 24px 4px;
}
footer img.footer-logo {
  position: absolute;
  right: 0;
  bottom: 1rem;
  max-height: 5rem;
  z-index: 120;
}
footer .footer-status {
  border: 1px solid #c1c4da;
  padding: 0.2rem 1rem 0.2rem 1.825rem;
  border-radius: 2rem;
  position: relative;
}
@-webkit-keyframes pulse {
  70% {
    box-shadow: 0 0 0 3px rgba(52, 232, 189, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 232, 189, 0.2);
  }
}
footer .footer-status:before {
  display: inline-block;
  position: absolute;
  left: 0.75rem;
  top: 0.636rem;
  background-color: #1FBCA0;
  content: " ";
  height: 8px;
  width: 8px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  -webkit-animation: pulse 3s infinite;
}
footer .footer-nav {
  border-top: 1px solid rgba(217, 219, 232, 0.33);
}
footer .footer-nav .navbar {
  padding: 0 0.75rem;
}
footer .footer-nav .navbar .navbar-item {
  padding-right: 1.75rem;
}
footer .footer-nav .navbar .navbar-item a {
  color: #6e749a;
}

@keyframes squish {
  0% {
    width: 0px;
    margin: 0 12px;
    border-left: 2px solid #5168ae;
  }
  19% {
    border-left: 2px solid transparent;
  }
  38% {
    width: 26px;
    margin-left: 0;
  }
  57% {
    border-left: 2px solid transparent;
  }
  76% {
    width: 0px;
    margin: 0 12px;
    border-left: 2px solid #5168ae;
  }
}
.ripple-animation {
  min-width: 654px;
}
.ripple-animation span {
  display: block;
  position: absolute;
  z-index: 175;
  width: 26px;
  height: 26px;
  display: inline-block;
  transform: rotate(45deg);
}
.ripple-animation span img {
  width: 1px;
  height: 26px;
  margin: 0 12px;
  border-left: 2px solid #5168ae;
  display: inline-block;
  animation-name: squish;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 2s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}
.ripple-animation .r1 {
  top: 0.5vw;
}
.ripple-animation .r2 {
  top: 4.5vw;
}
.ripple-animation .r3 {
  top: 8.5vw;
}
.ripple-animation .r4 {
  top: 12.5vw;
}
.ripple-animation .r5 {
  top: 16.5vw;
}
.ripple-animation .r6 {
  top: 20.5vw;
}
.ripple-animation .r7 {
  top: 24.5vw;
}
.ripple-animation .r8 {
  top: 28.5vw;
}
.ripple-animation .r9 {
  top: 32.5vw;
}
.ripple-animation .r10 {
  top: 36.5vw;
}
.ripple-animation .r11 {
  top: 40.5vw;
}
.ripple-animation .r12 {
  top: 44.5vw;
}
.ripple-animation .c1 {
  left: -0.75vw;
}
.ripple-animation .c2 {
  left: 3.25vw;
}
.ripple-animation .c3 {
  left: 7.25vw;
}
.ripple-animation .c4 {
  left: 11.25vw;
}
.ripple-animation .c5 {
  left: 15.25vw;
}
.ripple-animation .c6 {
  left: 19.25vw;
}
.ripple-animation .c7 {
  left: 23.25vw;
}
.ripple-animation .c8 {
  left: 27.25vw;
}
.ripple-animation .c9 {
  left: 31.25vw;
}
.ripple-animation .c10 {
  left: 35.25vw;
}
.ripple-animation .s1 img {
  animation-delay: 1.2s;
}
.ripple-animation .s2 img {
  animation-delay: 1.6s;
}
.ripple-animation .s3 img {
  animation-delay: 2s;
}
.ripple-animation .s4 img {
  animation-delay: 2.4s;
}
.ripple-animation .s5 img {
  animation-delay: 2.8s;
}
.ripple-animation .s6 img {
  animation-delay: 3.2s;
}
.ripple-animation .s7 img {
  animation-delay: 3.6s;
}
.ripple-animation .s8 img {
  animation-delay: 4s;
}
.ripple-animation .s9 img {
  animation-delay: 4.4s;
}
.ripple-animation .s10 img {
  animation-delay: 4.8s;
}
.ripple-animation .s11 img {
  animation-delay: 5.2s;
}
.ripple-animation .s12 img {
  animation-delay: 5.6s;
}
.ripple-animation .s13 img {
  animation-delay: 6s;
}
.ripple-animation .s14 img {
  animation-delay: 6.4s;
}
.ripple-animation .s15 img {
  animation-delay: 6.8s;
}
.ripple-animation .s16 img {
  animation-delay: 7.2s;
}
.ripple-animation .s17 img {
  animation-delay: 7.6s;
}
.ripple-animation .s18 img {
  animation-delay: 8s;
}
.ripple-animation .s19 img {
  animation-delay: 8.4s;
}
.ripple-animation .s20 img {
  animation-delay: 8.8s;
}

@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}
.homepage {
  min-height: 100vh;
}
.homepage #intro {
  min-height: 74vh;
}
.homepage #intro::before {
  width: 0.25rem;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  background: #0E092D;
  content: " ";
  display: block;
  z-index: 1950;
}
.homepage #intro .intro-text {
  position: relative;
  height: 74vh;
  min-height: 620px;
}
.homepage #intro .intro-text .intro-bg-wrap {
  background-color: transparent;
  position: absolute;
  top: -10rem;
  bottom: 0;
  right: 0;
  width: 2050px;
  min-height: 74vh;
  display: block;
  content: " ";
  z-index: 111;
  margin-right: 2rem;
  border-radius: 0 0 7rem 0;
  background-size: cover;
  overflow: hidden;
}
.homepage #intro .intro-text .intro-bg-wrap:after {
  width: 1300px;
  height: 1300px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -650px;
  top: 35vh;
  position: absolute;
  background: rgba(168, 124, 230, 0.95);
  z-index: -10;
  border-radius: 50%;
  filter: blur(433.3333333333px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1);
  opacity: 0.67;
}
.homepage #intro .intro-text .intro-bg-wrap:after {
  right: -80vh;
  left: auto;
  z-index: 120;
  width: 148vh;
  height: 148vh;
  filter: blur(600px) !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
@-moz-document url-prefix() {
  .homepage #intro .intro-text .intro-bg-wrap:after {
    background: rgba(168, 124, 230, 0.1825);
    width: 148vh;
    height: 111vh;
  }
  .homepage #intro .intro-text .intro-bg-wrap .intro-bg-wrap-inner {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
  }
  .homepage #intro .intro-text .intro-bg-wrap .intro-bg-wrap-inner:after {
    width: 2000px;
    height: 2000px;
    display: block;
    content: "";
    left: 50%;
    margin-left: -1000px;
    top: 55vh;
    position: absolute;
    background: rgba(168, 124, 230, 0.075);
    z-index: -10;
    border-radius: 50%;
    filter: blur(666.6666666667px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: scale(1.5);
    opacity: 0.67;
  }
  .homepage #intro .intro-text .intro-bg-wrap .intro-bg-wrap-inner:after {
    right: -74vh;
    left: auto;
    width: 148vh;
    height: 148vh;
    filter: blur(600px);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
  }
}
.homepage #intro section {
  position: relative;
  padding: 0;
  z-index: 252;
  max-width: 58.5vw;
  padding-top: 5rem;
  top: 50%;
  transform: translateY(-50%);
}
.homepage #intro h1, .homepage #intro h2 {
  font-family: "Space Grotesk", sans-serif;
  max-width: 55vw;
}
.homepage #intro h1 {
  color: #0E092D;
  font-weight: 400;
  font-size: 3.333rem;
  letter-spacing: 0.05rem;
  line-height: 1.25;
}
.homepage #intro h2 {
  color: #6843a6;
  font-size: 1.25rem;
  margin: 3.33rem 0;
}
@media screen and (min-width: 872px) and (max-width: 1440px) {
  .homepage #intro h1 {
    font-size: 3.25vw;
  }
  .homepage #intro h2 {
    font-size: 1.5vw;
  }
}
.homepage #intro a.button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  height: 3rem;
  letter-spacing: 0.15rem;
}
.homepage #intro a.button:hover {
  box-shadow: 0 0.5rem 2rem rgba(33, 55, 98, 0.75);
}
.homepage #intro a.button.is-ghost, .homepage #intro a.button.is-ghost:hover {
  color: #345995 !important;
  box-shadow: none;
  background: transparent;
  opacity: 0.88;
}
@media screen and (min-width: 1140px) {
  .homepage #intro h1 {
    width: 45vw;
    max-width: 47rem;
  }
  .homepage #intro h2 {
    width: 42vw;
    max-width: 38rem;
  }
}
.homepage #intro .intro-shapes {
  position: relative;
  min-height: 74vh;
  border-radius: 0 0 0 7rem;
}
.homepage #intro .intro-shapes .intro-shapes-wrap {
  position: absolute;
  top: 5.25rem;
  bottom: 0;
  right: 0;
  min-width: 400%;
  left: 0;
  min-height: calc(74vh - 5.25rem);
  display: block;
  content: " ";
  z-index: 11;
  background: rgba(231, 211, 242, 0.8);
  border-radius: 2rem 2rem 0 7rem;
  overflow: hidden;
}
.homepage #intro .intro-shapes .intro-shapes-wrap:after {
  width: 1300px;
  height: 1300px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -650px;
  top: 120px;
  position: absolute;
  background: #8093F1;
  z-index: -10;
  border-radius: 50%;
  filter: blur(433.3333333333px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
.homepage #intro .intro-shapes .intro-shapes-wrap:after {
  left: -24.6666666667vh;
  top: 37vh;
}
.homepage #intro .intro-shapes .ripple-animation {
  position: absolute;
  left: 0;
  top: 5.25rem;
  bottom: 0;
  width: auto;
  min-width: 200%;
  min-height: calc(74vh - 5.25rem);
  border-radius: 2rem 2rem 0 7rem;
  z-index: 152;
  overflow: hidden;
}
.homepage #intro .intro-shapes .ripple-animation svg {
  width: 1000px !important;
  height: 1000px !important;
}

.press-logos {
  background-color: transparent;
  border: none;
  max-width: 72rem;
}
.press-logos .projects-title h3 {
  color: #E7D3F2 !important;
}
.press-logos .column {
  margin: -5rem auto 8.25rem;
}

.projects-title h3 {
  color: #A87CE6 !important;
  text-transform: uppercase;
  letter-spacing: 0.275rem;
  font-size: 1rem;
  position: relative;
  padding-top: 3.5rem;
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  margin: 0 auto 2.25rem;
  font-weight: 500;
  line-height: 1.2;
}
.projects-title h3 em {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin: 0 0 1rem -1em;
  font-style: normal;
  line-height: 1.825;
  display: block;
  padding: 0 0 0 0.25rem;
}
.projects-title h3 em:after {
  width: 2rem;
  height: 2rem;
  display: block;
  content: "";
  left: 50%;
  margin-left: -1rem;
  top: 0;
  position: absolute;
  background: #A87CE6;
  z-index: -10;
  border-radius: 50%;
  filter: blur(12px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1);
  opacity: 0.67;
}
.projects-title h3 em:after {
  margin: 0 0 1rem -0.8em;
  opacity: 0.333;
}
.projects-title h3 code {
  border: 1px solid #A87CE6;
  color: #A87CE6;
  letter-spacing: 0.033rem;
  text-transform: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 1rem;
  background-color: transparent;
  padding: 0.35rem 0.85rem;
  margin-right: 0.5rem;
}
.projects-title h3 code:hover {
  background-color: rgba(14, 9, 45, 0.83);
}
.projects-title h2 {
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02rem;
  margin-bottom: 1.75rem;
}
.projects-title p {
  max-width: 44rem;
  margin: 0 auto 4rem;
  line-height: 1.75;
  font-size: 1.125rem;
}

#spin-story {
  height: 3300px;
  padding-top: 8.5rem;
  position: relative;
}
#spin-story:after {
  width: 915px;
  height: 915px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -457.5px;
  top: 120px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  z-index: -10;
  border-radius: 50%;
  filter: blur(305px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
#spin-story .container:after {
  width: 615px;
  height: 615px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -307.5px;
  top: 270px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  z-index: -10;
  border-radius: 50%;
  filter: blur(375px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
#spin-story .container:after {
  z-index: -5;
}
#spin-story .spin-github {
  max-width: 20rem;
  margin: 2rem auto 10rem;
  padding: 0.2rem 0.75rem 0.33rem;
  position: relative;
  border: none;
  outline: none;
  background: rgba(128, 147, 241, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0px 0px 28px rgba(14, 9, 45, 0.2);
}
#spin-story .spin-github .card-content {
  position: relative;
  z-index: 134;
  background: transparent;
}
#spin-story .spin-github .card-content svg {
  max-height: 32px;
  margin: 5px 1rem -6px 0;
  position: relative;
}
#spin-story .spin-sticky-cards {
  height: 720px;
  margin: 0 auto 2rem;
}
#spin-story .spin-sticky-cards.spin-sticky-cards-right {
  height: calc(2160px + 4rem);
}
#spin-story .spin-sticky-cards .card-wrap {
  position: relative;
}
#spin-story .spin-sticky-cards .card {
  height: 360px;
  border: 2px solid #34E8BD;
  border-radius: 1rem;
  position: sticky;
  top: 33vh;
}
#spin-story .spin-sticky-cards .card .card-content {
  padding: 3.67rem 2rem 0;
}
#spin-story .spin-sticky-cards .card h4 {
  font-size: 2.67rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.075rem;
  line-height: 1.3;
  margin: 2.5rem 0;
}
#spin-story .spin-sticky-cards .card.card-left {
  margin-right: 1rem;
}
#spin-story .spin-sticky-cards .card.card-left code.bubble {
  padding: 0.3rem 0.375rem 0.375rem 0.5rem;
  color: white;
  background: transparent;
  border-radius: 100%;
  border: 2px solid white;
  margin-right: 0.33rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  display: inline-block;
  min-width: 2.75rem;
  text-align: center;
  letter-spacing: 0.075rem;
}
#spin-story .spin-sticky-cards .card.card-left code.bubble-command {
  padding: 0.3rem 1.25rem 0.375rem;
  border-radius: 3rem;
}
#spin-story .spin-sticky-cards-1 .card-left {
  border-color: #8093F1;
  background: url("../image/gradient-spin-left-1.jpg") no-repeat 0 0;
}
#spin-story .spin-sticky-cards-1 .card-left h4 {
  color: #8093F1;
}
#spin-story .spin-sticky-cards-2 .card-left {
  border-color: #E7D3F2;
  background: url("../image/gradient-spin-left-2.jpg") no-repeat 0 0;
}
#spin-story .spin-sticky-cards-2 .card-left h4 {
  color: #E7D3F2;
}
#spin-story .spin-sticky-cards-3 .card-left {
  border-color: #C5FFF1;
  background: url("../image/gradient-spin-left-3.jpg") no-repeat 0 0;
}
#spin-story .spin-sticky-cards-3 .card-left h4 {
  color: #C5FFF1;
}
#spin-story .spin-sticky-cards-right .card {
  border: none;
  background: transparent;
}
#spin-story .spin-sticky-cards-right .card em {
  background-color: white;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 322;
}
#spin-story .spin-sticky-cards-right .card em:nth-child(2) {
  left: 51px;
}
#spin-story .spin-sticky-cards-right .card em:nth-child(3) {
  left: 78px;
}
#spin-story .spin-sticky-cards-right .card-content {
  opacity: 0;
  max-height: 360px;
  height: 50vh;
  border-radius: 1.2rem;
  z-index: 200;
  left: 0;
  right: 0;
  position: absolute;
  transition: opacity ease-in-out 0.25s;
  padding-top: 4rem;
}
#spin-story .spin-sticky-cards-right .card-content pre {
  color: #150d42;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  padding: 0;
  background: transparent;
  font-size: 1rem;
  line-height: 20px;
}
#spin-story .spin-sticky-cards-right .card-content pre .typing-container {
  display: inline-flex;
  white-space: normal;
  line-height: 1;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-comment {
  color: #281a82;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-keyword,
#spin-story .spin-sticky-cards-right .card-content pre .hljs-string,
#spin-story .spin-sticky-cards-right .card-content pre .hljs-number {
  color: #6f28d4;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-type,
#spin-story .spin-sticky-cards-right .card-content pre .hljs-built_in,
#spin-story .spin-sticky-cards-right .card-content pre .hljs-meta {
  color: #1839da;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-title,
#spin-story .spin-sticky-cards-right .card-content pre .function_ {
  color: #424556;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-type {
  color: #9c49c9;
}
#spin-story .spin-sticky-cards-right .card-content pre .hljs-common {
  color: #0E092D;
}
#spin-story .spin-sticky-cards-right .card-content pre span.code-prompt {
  color: #4762eb;
  font-weight: bold;
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-1 {
  opacity: 1;
  background: url("../image/gradient-spin-right-1.jpg") no-repeat 0 0;
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-2 {
  background: url("../image/gradient-spin-right-2.jpg") no-repeat 0 0;
  padding-left: 4.5rem;
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-2 aside pre {
  position: absolute;
  left: 27px;
  width: 2.5rem;
  color: rgba(14, 9, 45, 0.33);
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-3 {
  background: url("../image/gradient-spin-right-3.jpg") no-repeat 0 0;
  padding-top: 8rem;
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-3 nav {
  background: rgba(255, 255, 255, 0.5);
  left: 2.5rem;
  right: 2.5rem;
  top: 3.825rem;
  position: absolute;
  line-height: 1.75;
  padding-left: 1rem;
  border-radius: 1.25rem;
  font-size: 0.925rem;
  letter-spacing: 0.05rem;
  color: #4e38d7;
}
#spin-story .spin-sticky-cards-right .card-content.spin-sticky-cards-3 h1 {
  font-size: 2.67rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #0E092D;
  padding: 0.333rem 1.5rem;
  line-height: 1;
}

body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-2, body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 {
  opacity: 0;
  z-index: 200;
}
body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-1 {
  z-index: 311;
}
body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-1 .typed-out {
  display: inline-block;
  overflow: hidden;
  border-right: 0.15em solid orange;
  white-space: nowrap;
  width: 0;
  animation: typing 1s steps(20, end) forwards;
}
body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-1 .delay-opacity {
  opacity: 1;
  transition: opacity 0s;
  transition-delay: 1.1s;
}
body.spin-one #spin-story .spin-sticky-cards-right .spin-sticky-cards-1 .move-caret {
  position: absolute;
  display: inline-block;
  transform: translateY(-5.5rem);
  animation: scroll-caret 2s steps(2, end) forwards;
  animation-delay: 1.2s;
  font-weight: 500;
  color: #8446dc;
}

body.spin-two #spin-story .spin-sticky-cards-right .spin-sticky-cards-1, body.spin-two #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 {
  opacity: 0;
  z-index: 200;
}
body.spin-two #spin-story .spin-sticky-cards-right .spin-sticky-cards-2 {
  z-index: 312;
  opacity: 1;
}
body.spin-two #spin-story .spin-sticky-cards-right .spin-sticky-cards-2 .typed-out {
  display: inline-block;
  overflow: hidden;
  border-right: 0.15em solid orange;
  white-space: nowrap;
  width: 0;
  animation: typing 3s steps(20, end) forwards;
}

body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-1, body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-2 {
  opacity: 0;
  z-index: 200;
}
body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 {
  z-index: 313;
  opacity: 1;
}
body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 .typed-out {
  display: inline-block;
  overflow: hidden;
  border-right: 0.15em solid orange;
  white-space: nowrap;
  width: 0;
  animation: typing 2s steps(20, end) forwards;
}
body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 .delay-opacity {
  opacity: 1;
  transition: opacity 0s;
  transition-delay: 0.5s;
}
body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 .lds-dual-ring {
  display: inline-block;
  width: 12px;
  height: 12px;
}
body.spin-three #spin-story .spin-sticky-cards-right .spin-sticky-cards-3 .lds-dual-ring:after {
  content: " ";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #A87CE6;
  border-color: #A87CE6 transparent #A87CE6 transparent;
  animation: lds-dual-ring 0.5s linear forwards;
}

#features-and-examples {
  margin: 0 auto;
  border-bottom: 1px solid rgba(168, 124, 230, 0.25);
}
#features-and-examples ul.list-features li a {
  color: #384687;
  font-size: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
  background: transparent;
  border-radius: 2rem;
  padding: 0.5rem 1rem 0.5rem 4rem;
  display: inline-block;
  margin: 0 0 0.25rem -1.2rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
#features-and-examples ul.list-features li a .tag.tag-new {
  background-color: #34E8BD;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  margin: 0 0 0 1rem;
  top: -3px;
  position: relative;
  border-radius: 2rem;
}
#features-and-examples ul.list-features li a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  z-index: 120;
  transition: all 0.3s ease-in-out;
}
#features-and-examples ul.list-features li a img.active {
  opacity: 0;
  z-index: 125;
}
#features-and-examples ul.list-features li a:hover {
  background: #A87CE6 !important;
  color: white;
}
#features-and-examples ul.list-features li a:hover img.active {
  opacity: 1;
}
#features-and-examples ul.list-features li a:hover img.inactive {
  opacity: 0;
}
#features-and-examples .card-list h3 {
  padding-left: 0.5rem;
}
#features-and-examples .card-list h3 a {
  color: #A87CE6;
}
#features-and-examples .card-list h3 a:hover {
  color: white;
}

#cloud-story {
  min-height: 1632px;
  padding-top: 7.5rem;
  box-shadow: 0px 19px 44px rgba(14, 9, 45, 0.22);
  background: linear-gradient(180deg, transparent -0.02%, #A77BE6 100%);
  z-index: 202;
  position: relative;
}
#cloud-story .cloud-ui {
  position: relative;
  margin-bottom: 10rem;
}
@media screen and (min-width: 769px) and (max-width: 871px) {
  #cloud-story .cloud-ui {
    max-width: 100% !important;
    background-size: 100% auto !important;
  }
  #cloud-story .cloud-ui .cloud-ui-wrap {
    width: 690px !important;
    height: 460px !important;
    margin: 0 auto !important;
  }
}
#cloud-story .cloud-ui .tour {
  position: absolute;
  background: linear-gradient(275.02deg, #af93df 15%, #E7D3F2 88%);
  box-shadow: 0px 0px 20px #0E092D;
  border-radius: 0px 11.8421px 11.8421px 11.8421px;
  display: inline-block;
  z-index: 435;
  color: #0E092D;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  padding: 0.3rem 0.75rem;
  left: 50%;
  transition: all 0.3s ease-in-out;
}
#cloud-story .cloud-ui .tour:after {
  width: 13px;
  height: 13px;
  position: absolute;
  z-index: 425;
  display: block;
  content: " ";
  border-top: 1px solid #BEA7E5;
  border-left: 1px solid #BEA7E5;
  top: -3px;
  left: -3px;
}
#cloud-story .cloud-ui .tour.tour-right {
  border-radius: 11.8421px 0px 11.8421px 11.8421px;
}
#cloud-story .cloud-ui .tour.tour-right:after {
  border-right: 1px solid #BEA7E5;
  border-left: none;
  top: -3px;
  right: -3px;
  left: auto;
}
#cloud-story .cloud-ui .tour.tour-one {
  margin-left: 154px;
  top: 388px;
}
#cloud-story .cloud-ui .tour.tour-two {
  margin-left: -20px;
  top: 539px;
}
#cloud-story .cloud-ui .tour.tour-three {
  margin-left: -410px;
  top: 242px;
}
#cloud-story .cloud-ui:hover .tour {
  margin-left: -16px;
}
#cloud-story .cloud-ui:hover .tour.tour-one {
  margin-left: 150px;
}
#cloud-story .cloud-ui:hover .tour.tour-three {
  margin-left: -413px;
}
#cloud-story .cloud-ui .cloud-ui-wrap {
  border-radius: 1rem;
  background: url("../image/screenshot-cloud-ui.jpg") no-repeat top center;
  background-size: cover;
  max-width: 1040px;
  height: 675px;
  margin: 2rem auto;
  box-shadow: 0 0 84px rgba(14, 9, 45, 0.6);
  position: relative;
  z-index: 421;
  transition: all 0.3s ease-in-out;
}

.quote-values {
  max-width: 21rem;
  margin-top: 2rem;
  margin-left: -2rem;
  border-radius: 0px 36px 0px 0;
  overflow: hidden;
  position: relative;
  padding: 1rem 1.5rem 0 2rem;
}
.quote-values p {
  font-size: 0.825rem;
  color: #345995 !important;
  line-height: 1.636;
  margin: 0.67rem 0;
}
.quote-values:after {
  content: " ";
  display: block;
  position: absolute;
  width: 870px;
  height: 870px;
  top: -560px;
  left: -120px;
  opacity: 0.25;
  background: url("../image/glow-purple.svg") no-repeat 0 0;
}

#why-fermyon {
  position: relative;
  min-height: 2000px;
  background: linear-gradient(180deg, #FCF5FF 80%, #A87CE6 100%);
  border-bottom: none;
}
#why-fermyon h1, #why-fermyon h2, #why-fermyon h3 {
  color: #0E092D;
}
#why-fermyon .bg-pattern {
  min-height: 4rem;
  background: url("../image/tile-purple-dots.png") repeat 0 bottom;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 121;
}
#why-fermyon .bg-pattern.bg-pattern-top {
  top: 124px;
}
#why-fermyon .bg-pattern.bg-pattern-bottom {
  bottom: -2.5rem;
}
#why-fermyon .cta-landing-top {
  background: white;
  border-radius: 1.33rem;
  box-shadow: 0 0 84px rgba(14, 9, 45, 0.22);
  width: 46rem;
  padding: 1.5rem 3rem;
  text-align: left;
  position: relative;
  margin-left: 23rem;
  z-index: 252;
  margin: -7.75rem auto 0;
}
#why-fermyon .cta-landing-top h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  max-width: 44rem;
  margin: 0 auto 2rem;
  line-height: 1.3;
}
#why-fermyon .cta-landing-top .buttons {
  margin: 4rem 0 2rem auto;
  font-size: 2rem;
  max-width: 18rem;
  text-align: center;
}
#why-fermyon .cta-landing-top .buttons .arrows {
  display: block;
  position: absolute;
  right: 42.5%;
  width: 100%;
  text-align: right;
  height: 3rem;
}
#why-fermyon .cta-landing-top .buttons .arrows em {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin-right: 2rem;
  background: url("../image/arrow-green.svg") no-repeat 0 0;
}
#why-fermyon .cta-landing-top .buttons .arrows em:nth-child(1) {
  opacity: 0.2;
}
#why-fermyon .cta-landing-top .buttons .arrows em:nth-child(2) {
  opacity: 0.4;
}
#why-fermyon .cta-landing-top .buttons .arrows em:nth-child(3) {
  opacity: 0.6;
}
#why-fermyon .cta-landing-top .buttons .arrows em:nth-child(4) {
  opacity: 0.8;
}
#why-fermyon .cta-landing-top a.button {
  margin: 0 auto;
  height: 3rem;
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
}
#why-fermyon .cta-landing-top a.button:hover {
  box-shadow: 0 0.5rem 2rem rgba(33, 55, 98, 0.125);
}
#why-fermyon .cta-landing-top .is-ghost {
  color: rgba(14, 9, 45, 0.5);
  font-size: 1.125rem;
  font-family: "Space Grotesk", sans-serif;
  transition: all 0.3s ease-in-out;
}
#why-fermyon .values-size {
  padding-top: 12rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 211;
}
#why-fermyon .values-size .projects-title h3 {
  text-align: left;
}
#why-fermyon .values-size .projects-title p {
  letter-spacing: 0.05rem;
}
#why-fermyon .values-size .projects-title p strong {
  color: #8967C2;
}
#why-fermyon .values-size h2 {
  font-size: 2.75rem;
  line-height: 1.4;
}
#why-fermyon .values-size .wave-label {
  text-align: right;
  letter-spacing: 0.05rem;
  font-size: 0.925rem;
  color: #8093F1;
}
#why-fermyon .values-size .second-wave {
  background: url("../image/bg-size-image-light.jpg") no-repeat 0 0;
  width: 917px;
  height: 917px;
  z-index: 25;
  right: 72.5%;
  top: 250px;
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow: 0px 0px 250px rgba(0, 0, 0, 0.33);
}
#why-fermyon .values-size .second-wave .wave-label-big {
  position: absolute;
  right: 4.75%;
  top: -20px;
  width: 295px;
  height: 178px;
  background: url("../image/value-size-label-big.png") no-repeat right bottom;
}
#why-fermyon .values-size .next-wave {
  background: url("../image/value-size-label-small.png") no-repeat right top;
  width: 148px;
  height: 168px;
  z-index: 27;
  right: 57.5%;
  top: 412px;
  position: absolute;
  display: block;
}
#why-fermyon .values-size .next-wave .wave-label {
  margin-top: -55px;
}
#why-fermyon .values-size .next-wave::after {
  position: absolute;
  content: " ";
  display: block;
  width: 144px;
  height: 144px;
  background: url("../image/glow-green.svg") no-repeat 0 0;
  top: -40px;
  left: -48px;
}
#why-fermyon .values-cold-start {
  position: relative;
  z-index: 455;
}
#why-fermyon .values-cold-start section {
  min-height: 34rem;
  background: url("../image/values-cold-start.jpg") no-repeat 0 0;
  background-size: 100%;
  border-radius: 1rem;
  max-width: 62rem;
  margin: 0 auto;
}
#why-fermyon .values-cold-start section .scale {
  max-width: 53rem;
  padding: 1rem 7%;
  min-height: 30rem;
  margin-top: 1rem;
  position: relative;
  left: 50%;
  margin-left: -27rem;
}
#why-fermyon .values-cold-start section .scale .fermyon-time:before {
  display: inline-block;
  position: relative;
  transition: --num 0.4s linear;
  counter-set: num var(--num);
  content: counter(num);
}
#why-fermyon .values-cold-start section .scale .lamda-time:before {
  display: inline-block;
  position: relative;
  transition: --num 2s linear;
  counter-set: num var(--num);
  content: counter(num);
}
#why-fermyon .values-cold-start section .scale .timing {
  font-size: 9pt;
  font-family: "Space Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid #E7D3F2;
  border-radius: 1rem;
  padding: 0 0.7rem 0.15rem;
  margin-left: -1.25rem;
  position: absolute;
  left: 0%;
  bottom: 0;
}
#why-fermyon .values-cold-start section .scale .timing:after {
  display: block;
  content: "";
  bottom: 2rem;
  left: 1.5rem;
  top: -20rem;
  width: 1px;
  min-height: 100px;
  position: absolute;
  z-index: 102;
  border-left: 2px dotted rgba(255, 255, 255, 0.5);
}
#why-fermyon .values-cold-start section .scale .timing.timing-1 {
  left: calc(1 * 20%);
}
#why-fermyon .values-cold-start section .scale .timing.timing-2 {
  left: calc(2 * 20%);
}
#why-fermyon .values-cold-start section .scale .timing.timing-3 {
  left: calc(3 * 20%);
}
#why-fermyon .values-cold-start section .scale .timing.timing-4 {
  left: calc(4 * 20%);
}
#why-fermyon .values-cold-start section .scale .timing.timing-5 {
  left: calc(5 * 20%);
}
#why-fermyon .values-cold-start section .source {
  bottom: 2rem;
  position: absolute;
  left: 50%;
  margin-left: 18.75rem;
  font-size: 0.825rem;
  letter-spacing: 0.01rem;
  color: #A87CE6;
}
#why-fermyon .values-cold-start section .source a {
  color: #A87CE6;
}
#why-fermyon .values-cold-start section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  line-height: 0.975;
  position: absolute;
  left: 50%;
  top: 5rem;
  z-index: 425;
  opacity: 0;
}
#why-fermyon .values-cold-start section h1 + h1 {
  top: 14.75rem;
}
#why-fermyon .values-cold-start section aside {
  position: absolute;
  top: 3.333rem;
  left: 1.75rem;
  line-height: 1.5;
  right: 0;
  z-index: 520;
}
#why-fermyon .values-cold-start section aside h2 {
  font-size: 6rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  z-index: 422;
  color: #0E092D;
  margin-bottom: 1rem;
}
#why-fermyon .values-cold-start section aside h2 em {
  font-style: normal;
  font-size: 0.67em;
}
#why-fermyon .values-cold-start section aside small {
  display: block;
  font-size: 1rem;
  padding-left: 0.5rem;
  color: white;
}
#why-fermyon .values-cold-start section aside:nth-child(2) {
  top: 15rem;
}
#why-fermyon .values-cold-start section aside .bar {
  height: 2.6rem;
  border-radius: 2.6rem;
  display: block;
  margin: -1.2rem 0 0 0.1rem;
  position: relative;
  z-index: 600;
  overflow: hidden;
}
#why-fermyon .values-cold-start section aside .bar em {
  background: url(../image/tile-white-dots.png) repeat 0 0;
  background-size: 13px;
  width: 0%;
  height: 2.6rem;
  display: block;
  opacity: 0.67;
  overflow: hidden;
  position: relative;
}
#why-fermyon .values-cold-start section aside .bar.bar-spin {
  width: 20%;
}
#why-fermyon .values-cold-start section aside .bar.bar-spin em {
  background: linear-gradient(-90deg, #58DBBB 12.37%, #ABEDDD 91.92%, #abeddd 95%, rgba(171, 237, 221, 0) 95.5%), url(../image/tile-white-dots.png) repeat 0 0/13px;
  opacity: 1;
}
#why-fermyon .values-cold-start section aside .bar.bar-spin em:after {
  left: 0.5rem;
  right: auto;
  background-color: transparent;
}
#why-fermyon .values-cold-start section aside .bar.bar-spin:before {
  display: none;
}
#why-fermyon .values-cold-start section aside .bar.bar-lamda {
  width: 100%;
}
#why-fermyon .values-cold-start section aside .bar:before {
  content: "Waiting";
  display: inline-block;
  position: absolute;
  left: 1rem;
  top: 0.65rem;
  background-color: #E7D3F2;
  line-height: 1;
  padding: 0.233rem 0.67rem;
  border-radius: 1rem;
  color: #0E092D;
  letter-spacing: -0.05rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}
#why-fermyon .values-cold-start section aside .bar em:after {
  content: "Executing";
  display: inline-block;
  background: white;
  position: absolute;
  left: 41rem;
  padding: 1rem;
  width: 11rem;
  top: 0;
  line-height: 1;
  color: #0E092D;
  letter-spacing: -0.05rem;
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}
#why-fermyon .values-cold-start.animate h1 {
  opacity: 1;
}
#why-fermyon .values-cold-start.animate h1.spin-caption {
  transition: opacity 0.25s 0.25s;
}
#why-fermyon .values-cold-start.animate h1.lamda-caption {
  transition: opacity 0.5s 1s;
}
#why-fermyon .values-cold-start.animate .bar-spin em {
  animation: spin-bar 0.4s linear forwards;
}
#why-fermyon .values-cold-start.animate .bar-lamda em {
  animation: lamda-bar 2s linear forwards;
}
#why-fermyon .values-cold-start.animate .fermyon-time:before {
  --num: 52;
  content: "52" !important;
}
#why-fermyon .values-cold-start.animate .lamda-time:before {
  --num: 250;
  content: "250" !important;
}
#why-fermyon .values-features {
  padding-top: 8.25rem;
}
#why-fermyon .values-features img {
  margin: 0 auto 3rem;
}
#why-fermyon .values-features h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 2.25rem;
  margin: 0 auto 1.67rem;
}
#why-fermyon .values-features p {
  font-size: 1rem;
  margin: 0 auto 1rem;
  line-height: 1.75;
  max-width: 34rem;
  letter-spacing: 0.05rem;
}
#why-fermyon .values-features.values-trio .column {
  position: relative;
}
#why-fermyon .values-features.values-trio .column h2, #why-fermyon .values-features.values-trio .column p {
  max-width: 18rem;
}
#why-fermyon .values-features.values-trio .column:after {
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  content: " ";
  display: block;
  background: linear-gradient(90deg, #5168AE 0%, rgba(168, 124, 230, 0) 100%);
}
#why-fermyon .values-features.values-trio .column:first-of-type:after {
  display: none;
}
#why-fermyon .values-features .values-language-row {
  background: url(../image/value-wasi-languages-light.png) no-repeat center 0;
  min-height: 60px;
  text-indent: -999rem;
  margin: 4rem auto;
}

.cta-landing-bottom {
  background: white;
  border-radius: 1.33rem;
  box-shadow: 0 0 84px rgba(14, 9, 45, 0.6);
  width: 46rem;
  margin: 8rem auto;
  padding: 1.5rem 3rem;
  text-align: center;
}
.cta-landing-bottom h1 {
  color: #0E092D !important;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.25rem;
  max-width: 44rem;
  margin: 0 auto 2rem;
  line-height: 1.3;
}
.cta-landing-bottom p {
  color: #0E092D !important;
  margin: 0 auto 3rem;
}
.cta-landing-bottom .buttons {
  margin: 0 auto 1rem;
  font-size: 2rem;
  text-align: center;
  max-width: 28rem;
}
.cta-landing-bottom a.button {
  margin: 0 auto;
  height: 3rem;
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
}
.cta-landing-bottom a.button:hover {
  box-shadow: 0 0.5rem 2rem rgba(33, 55, 98, 0.125);
}
.cta-landing-bottom a.button.is-outline {
  background: white;
  border-color: #34E8BD;
  color: #345995;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes scroll-caret {
  from {
    transform: translateY(-2.5rem);
  }
  to {
    transform: translateY(0);
  }
}
.delay-opacity {
  opacity: 0;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  99% {
    transform: rotate(360deg);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes lamda-bar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.product-submenu {
  text-align: left;
  padding: 3.67rem 0 1.67rem;
  text-align: left;
  justify-content: space-between;
  margin: 0 0 0 -1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.product-submenu a {
  margin: 0 1.333rem 0 0;
  padding: 0.5rem 1rem;
  font-size: 0.925rem;
  color: #0E092D;
  border-radius: 1rem;
  display: inline-flex;
}
.product-submenu a:hover {
  background-image: linear-gradient(90deg, rgba(168, 124, 230, 0.22) 0%, rgba(168, 124, 230, 0.07) 100%);
}
.product-submenu a .tag-new {
  border-radius: 1rem;
  background-color: #34E8BD;
  color: #0E092D;
  font-size: 0.75rem;
  letter-spacing: 0.025rem;
  margin-left: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}

#project-intro {
  overflow: hidden;
  z-index: 10;
}
#project-intro:after {
  width: 915px;
  height: 915px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -457.5px;
  top: 10rem;
  position: absolute;
  background: rgba(128, 147, 241, 0.35);
  z-index: -10;
  border-radius: 50%;
  filter: blur(305px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
#project-intro .columns {
  margin: 10vh 0 10vh 0;
}
#project-intro .spin-intro-img {
  margin-top: 1rem;
  min-height: 52vh;
  position: relative;
}
#project-intro .spin-intro-img img {
  min-width: 142.5%;
  max-width: auto;
  position: absolute;
  left: -2.5vw;
  top: -3rem;
}
#project-intro .cloud-intro-img {
  margin-top: 1rem;
  min-height: 52vh;
  position: relative;
}
#project-intro .cloud-intro-img img {
  min-width: 142.5%;
  max-width: auto;
  position: absolute;
  left: -2.5vw;
  top: -1rem;
}
#project-intro h1 {
  margin: 1.25rem 0 0.25em 0;
  padding-right: 5vw;
  font-size: 2.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #0E092D;
}
#project-intro h2 {
  margin: 2rem 0 3.5em 0;
  padding-right: 7.5vw;
  font-size: 1.67rem;
  list-style: 1.7;
}
#project-intro .buttons {
  margin: 0.67rem 0 1.5em 0;
}
#project-intro .buttons .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  font-size: 1.25rem;
}
#project-intro .buttons .button.is-ghost {
  color: white !important;
}
#project-intro .buttons .button.is-ghost {
  color: #345995 !important;
}

@media screen and (max-width: 1023px) {
  #project-intro .spin-intro-img,
#project-intro .cloud-intro-img {
    min-height: 15rem;
  }
  #project-highlights .top-content h1 {
    font-size: 1.5rem;
  }
  #project-highlights h1 {
    font-size: 1.5rem;
  }
  #project-highlights h2 {
    font-size: 1.2rem;
  }
  .platform-page #platform-features {
    max-width: 90% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
  .platform-page #platform-features .box img {
    display: none;
  }
}
#projects_new {
  padding-top: 7.5rem;
  padding-bottom: 8rem;
  background: #ece5ee;
}
.dark-theme #projects_new {
  background: linear-gradient(180deg, #0A1529 0%, #070F1E 100%);
}
#projects_new .projects-title {
  margin-bottom: 4rem;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 146%;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #15ba93;
}
.dark-theme #projects_new .projects-title {
  color: #34E8BD;
}
#projects_new .project-content {
  max-width: 30rem;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 146%;
}
.dark-theme #projects_new .project-content {
  color: #34E8BD;
}
#projects_new .project-content .project-logo {
  min-height: 4.9rem;
  margin-bottom: 1rem;
}
#projects_new .project-content .project-logo svg {
  fill: black;
}
.dark-theme #projects_new .project-content .project-logo svg {
  fill: white;
}
#projects_new .buttons {
  margin-top: 2rem;
}
#projects_new .project-box {
  padding: 3rem 4rem;
  height: 100%;
}
@media screen and (max-width: 550px) {
  #projects_new .project-box {
    padding: 2rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
#projects_new .box-left {
  background: white;
}
.dark-theme #projects_new .box-left {
  background: #0F213D;
}
#projects_new .box-right {
  background: white;
}
.dark-theme #projects_new .box-right {
  background: rgba(15, 33, 61, 0.8);
}
#projects_new h1 {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.dark-theme #projects_new h1 {
  color: white;
}

#project-highlights {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background: #FDF8FF;
}
#project-highlights .columns {
  padding-top: 5rem;
}
.dark-theme #project-highlights {
  background: linear-gradient(180deg, #0A1529 0%, #070F1E 100%);
}
#project-highlights img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#project-highlights .top-content {
  margin-bottom: 7.5rem;
}
#project-highlights .top-content p {
  max-width: 54rem;
  line-height: 1.67;
  margin-left: auto;
  margin-right: auto;
}
#project-highlights .top-content h1 {
  margin-bottom: 1.67rem;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 82rem;
}
#project-highlights .title {
  text-align: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
#project-highlights h1 {
  font-weight: 700;
  font-size: 2.75rem;
  padding-right: 10vw;
  line-height: 1.3;
  color: #0E092D;
}
#project-highlights h2 {
  margin-top: 3rem;
  font-size: 1.5rem;
  padding-right: 7vw;
  line-height: 1.5;
  color: #0E092D;
}
#project-highlights h1 a, #project-highlights h2 a, #project-highlights p a {
  color: #8967C2;
}

.spin-three-commands-wrap {
  padding-top: 8rem;
  padding-bottom: 12rem;
}
.spin-three-commands-wrap .column {
  padding-top: 8rem;
}

.spin-three-commands {
  position: relative;
}
.spin-three-commands img {
  position: absolute;
  right: 2vw;
  max-width: auto;
  top: -14.5vw;
  bottom: 0;
}

#platform-features {
  background: linear-gradient(180deg, #0E092D -0.02%, #A77BE6 100%);
  max-width: 100%;
  padding: 7.5rem 3vw 5rem;
}
#platform-features .columns {
  max-width: 100rem;
}
#platform-features .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
}

.sign-up {
  max-width: 750px;
  background: white;
  border-radius: 1rem;
  margin: 5rem auto 3rem;
}
.sign-up p {
  color: #0E092D;
  font-size: 1rem;
}
.sign-up .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
}

.spin-2-banner {
  background: #0E092D;
  border-radius: 4rem;
  position: relative;
  max-width: 56rem;
  margin: 0rem auto 3.5rem;
  padding: 2rem 1.5rem 2rem 13.25rem;
}
.spin-2-banner a {
  color: #E7D3F2;
}
.spin-2-banner p {
  margin: 0;
  font-size: 1rem;
}
.spin-2-banner img {
  position: absolute;
  left: 3.5rem;
  top: 1.5rem;
}

#cloud-page .sign-up {
  background: #ECEDF4;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  max-width: 750px;
  padding: 0.5rem 1rem;
  margin: 4rem auto;
  min-height: 6rem;
}
#cloud-page .sign-up p {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  /* or 359% */
  letter-spacing: 0.02rem;
  color: #18275B;
}
#cloud-page .sign-up .button {
  margin-bottom: 0;
}

.feature-grid {
  position: relative;
}
.feature-grid:after {
  width: 915px;
  height: 915px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -457.5px;
  top: 320px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  z-index: -10;
  border-radius: 50%;
  filter: blur(305px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
.feature-grid .projects-title {
  margin: 2rem auto 4rem;
}
.feature-grid .feature-grid-item {
  position: relative;
  padding-bottom: 1rem;
}
.feature-grid .feature-grid-item img {
  background-color: #f4dcff;
  border-radius: 100%;
  padding: 0.5rem;
  margin: 0.67rem auto;
  transition: all 0.3s ease-in-out;
}
.feature-grid .feature-grid-item img.feature-img-pad {
  padding: 0.5rem;
  min-width: 2rem;
  min-height: 2rem;
}
.feature-grid .feature-grid-item h5 {
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #0E092D;
  margin: 0 auto 0.5rem;
  transition: all 0.3s ease-in-out;
}
.feature-grid .feature-grid-item h5 a {
  color: #7b55bb;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(226, 201, 239, 0.33);
}
.feature-grid .feature-grid-item p {
  font-size: 0.925rem;
  color: #0D203F;
  opacity: 0.7;
  max-width: 16.5rem;
  margin: 0 auto;
  line-height: 1.75;
  transition: all 0.3s ease-in-out;
}
.feature-grid .feature-grid-item p a {
  color: #8967C2;
}
.feature-grid .feature-grid-item p code {
  border-radius: 1rem;
  background-color: rgba(111, 40, 212, 0.08);
  color: #345995;
}
.feature-grid .feature-grid-item .tag {
  position: absolute;
  left: 50%;
  top: 1rem;
  margin-left: 0.5rem;
  font-size: 0.67rem;
  border-radius: 2rem;
  padding: 0.2rem 0.425rem;
  background-color: #34E8BD;
  font-family: "Space Grotesk", sans-serif;
  color: #0E092D !important;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}
.feature-grid .feature-grid-item .tag.is-success {
  background-color: #34E8BD !important;
}
.feature-grid .feature-grid-item .tag.is-info {
  background-color: #8093F1 !important;
}
.feature-page-platform #feature-intro h1 {
  font-weight: 500;
  font-size: 3rem;
  margin: 4rem auto 2rem;
}
.feature-page-platform #feature-intro p {
  font-size: 1.25rem;
}
.feature-page-platform #feature-intro a.button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  color: #0E092D !important;
  background-color: #34E8BD !important;
  margin: 2rem auto;
  font-size: 1.25rem;
}
.feature-page-platform .page {
  max-width: 72rem;
}
.feature-page-platform .deploy-target {
  border: 1px solid #8967C2;
  border-radius: 1rem;
}
.feature-page-platform .deploy-target-self {
  background: red;
}
.feature-page-platform .feature-testimonial {
  padding: 1rem 1.25rem 0.67rem !important;
}
.feature-page-platform .value-highlight {
  min-height: 13rem;
  background-size: 270% !important;
  background-position: 0 0;
}
.feature-page-platform .value-highlight h3 {
  margin: 0.5rem 0 1rem;
  font-size: 1.67rem;
  font-weight: 400;
  color: #0E092D !important;
}
.feature-page-platform .value-highlight h3 strong {
  font-size: 2rem;
  color: black !important;
}
.feature-page-platform .value-highlight p {
  font-size: 1rem;
  line-height: 1.1;
  margin: 0;
}

.feature-page {
  min-height: 2000px;
}
.feature-page:after {
  width: 915px;
  height: 915px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -458px;
  top: 220px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  z-index: -10;
  border-radius: 50%;
  filter: blur(304.5px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
}
.feature-page .container {
  max-width: 1140px;
}
.feature-page div.page,
.feature-page .content section {
  max-width: 100% !important;
}
.feature-page div.page {
  padding-top: 3.5rem;
  padding-bottom: 0;
  margin-bottom: -8rem;
}
.feature-page #feature-intro {
  min-height: 540px;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.feature-page .feature-value {
  padding-bottom: 11.5rem;
}
.feature-page .feature-value h1, .feature-page .feature-value h2, .feature-page .feature-value h3 {
  font-weight: 400;
}
.feature-page .feature-value h2 {
  font-size: 2.25rem;
  line-height: 1.5;
  margin-top: -0.333rem;
  margin-bottom: 2.5rem;
}
.feature-page .feature-value p {
  font-size: 1rem !important;
}
.feature-page .feature-value .img-wrap {
  position: relative;
}
.feature-page .feature-value .img-wrap a {
  display: block;
  position: relative;
}
.feature-page .feature-value .img-wrap a.external img {
  position: relative;
  z-index: 10;
}
.feature-page .feature-value .img-wrap a.external:before {
  display: none;
}
.feature-page .feature-value .img-wrap a.external svg.external-icon {
  width: 3.5rem;
  height: auto;
  position: absolute;
  margin-left: 0;
  margin-top: -3rem;
  left: 50%;
  top: 50%;
  z-index: 450;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.feature-page .feature-value .img-wrap a.external:after {
  display: inline-block;
  width: 7rem;
  height: 7rem;
  content: " ";
  position: absolute;
  border-radius: 5rem;
  margin-left: -1.75rem;
  margin-top: -4.5rem;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  z-index: 425 !important;
  border: none;
  transform: none;
  opacity: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}
.feature-page .feature-value .img-wrap a.external:hover {
  background-color: transparent !important;
}
.feature-page .feature-value .img-wrap a.external:hover svg, .feature-page .feature-value .img-wrap a.external:hover:after {
  opacity: 1;
}
.feature-page .feature-value .img-wrap a.external:after, .feature-page .feature-value .img-wrap a.external:before {
  font-size: 2rem;
  z-index: 2000;
}
.feature-page .feature-value .video-wrap {
  background: url("/static/image/gradient-spin-right-1.jpg") no-repeat 0 0;
  padding: 0 1rem;
  border-radius: 1.33rem;
  max-width: 100%;
}
.feature-page .feature-value .video-wrap iframe {
  margin: 1rem auto 0.67rem;
}
.feature-page .feature-value img {
  position: absolute;
  max-width: 100%;
  top: -1rem;
}
.feature-page .feature-value.feature-img-right img {
  right: -2rem !important;
}
.feature-page .feature-value.feature-img-left img {
  left: -3.5rem !important;
}
.feature-page .page h1, .feature-page .page h2, .feature-page .page h3 {
  font-family: "Space Grotesk", sans-serif;
  color: #0E092D;
}
.feature-page .page h1 {
  font-size: 3rem;
  font-weight: 400;
}
.feature-page .page .buttons {
  margin: 4rem auto 2rem auto;
  font-size: 1.5rem;
  max-width: 32rem;
  text-align: center;
}
.feature-page .page .buttons a.button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  margin: 0 1rem;
  height: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  color: white !important;
  background: transparent !important;
  font-family: "Space Grotesk", sans-serif;
  border-color: #34E8BD !important;
}
.feature-page .page .buttons a.button:hover {
  box-shadow: 0 0.5rem 2rem rgba(33, 55, 98, 0.125);
}
.feature-page .page .buttons a.button:hover:after {
  display: none;
}
.feature-page .page .buttons a.button.is-primary {
  background-color: #34E8BD !important;
  color: #0E092D !important;
}
.feature-page .feature-testimonial {
  position: relative;
  border-radius: 1.1875rem;
  background: rgba(137, 103, 194, 0.7);
  padding: 2rem 3rem 0.67rem;
  box-shadow: 0px 14px 34px 0px rgba(0, 0, 0, 0.25);
}
.feature-page .feature-testimonial p {
  font-size: 1rem;
  line-height: 1.875;
  color: white !important;
  margin-bottom: 1.333rem;
}
.feature-page .feature-testimonial p strong {
  color: #E7D3F2;
}
.feature-page .feature-testimonial img {
  position: absolute;
  right: 2.25rem;
  bottom: 1.67rem;
}
.feature-page .feature-testimonial img.quote-open {
  left: 1.5rem;
  top: 2rem;
  right: auo;
}
.feature-page .feature-testimonial img.quote-close {
  bottom: 6.25rem;
  right: 1.5rem;
}
.feature-page .feature-list-links dl {
  margin: 0 0 1.5rem 1rem;
}
.feature-page .feature-list-links dt {
  text-transform: uppercase;
  letter-spacing: 0.275rem;
  margin: 0.5rem 0 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  color: #A87CE6 !important;
}
.feature-page .feature-list-links dd {
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.575;
  margin-bottom: 1.5rem;
  letter-spacing: 0.075rem;
}
.feature-page .feature-list-links dd a {
  color: #0D203F;
}
.feature-page div.sign-up {
  background-color: white;
  padding: 1rem 1.333rem;
  width: 78rem !important;
  margin-bottom: 10.5rem;
  box-shadow: 0 0.2rem 1rem rgba(255, 255, 255, 0.07);
  position: relative;
}
.feature-page div.sign-up p {
  color: #0E092D;
  font-size: 0.925rem;
}
.feature-page div.sign-up h4 {
  font-family: "Space Grotesk", sans-serif;
  color: #213762;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.feature-page div.sign-up a.button.is-primary {
  background-color: #34E8BD !important;
  color: #0E092D !important;
  margin-left: -1.5rem;
}
.feature-page div.sign-up.sign-up-sep:after {
  background-color: rgba(168, 124, 230, 0.125);
  height: 2.5rem;
  width: 300%;
  position: absolute;
  z-index: -1;
  content: " ";
  display: block;
  left: -100%;
  right: -100%;
}
.feature-page.feature-page-whitepaper {
  min-height: 1000px !important;
}
.feature-page.feature-page-whitepaper:after {
  left: 75%;
  background-color: rgba(128, 147, 241, 0.33);
}
.feature-page.feature-page-whitepaper div.page {
  width: 90vw;
  max-width: 80rem !important;
}
.feature-page.feature-page-whitepaper h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
.feature-page.feature-page-whitepaper .feature-value#value-1 {
  padding-bottom: 0;
}
.feature-page.feature-page-whitepaper .feature-value.feature-img-right .whitepaper-cover {
  margin-bottom: -4rem;
  position: relative;
}
.feature-page.feature-page-whitepaper .feature-value.feature-img-right .whitepaper-cover img {
  position: absolute;
  right: 3.5rem !important;
  top: 2.5rem !important;
}
.feature-page.feature-page-whitepaper .whitepaper-lead p {
  font-size: 1.333rem !important;
  line-height: 1.5;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.feature-page.feature-page-whitepaper .whitepaper-lead p + :first-of-type {
  font-size: 2rem;
}
.feature-page.feature-page-whitepaper .whitepaper-lead aside {
  max-width: 25rem;
  background: rgba(33, 55, 98, 0.5);
}
.feature-page.feature-page-whitepaper .whitepaper-form {
  padding: 2rem 2.67rem 1rem !important;
  background: #8093F1;
  border-radius: 1.67rem;
  overflow: hidden !important;
  position: relative;
  z-index: 800;
  min-height: 800px;
}
.feature-page.feature-page-whitepaper .whitepaper-form .hbspt-form {
  position: relative;
  z-index: 550;
  margin-bottom: 1rem;
}
.feature-page.feature-page-whitepaper .whitepaper-form:after {
  width: 405px;
  height: 405px;
  display: block;
  content: "";
  left: 0%;
  margin-left: -202px;
  top: 120px;
  position: absolute;
  background: #e7d3f2;
  z-index: 1;
  border-radius: 50%;
  filter: blur(140px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.cta-landing-bottom.feature-page-cta-landing-bottom {
  margin-top: -1rem !important;
  position: absolute;
  left: 50%;
  width: 46rem;
  margin-left: -23rem !important;
  z-index: 1480;
}

.cta-landing-bottom a.button.is-outline,
.cta-landing-bottom.feature-page-cta-landing-bottom a.button.is-outline {
  color: #0E092D !important;
}

.feature-page-bottom-shade {
  background: linear-gradient(180deg, #0E092D -0.02%, #8967C2 100%);
  padding-bottom: 22.5rem;
}

.dark-theme .feature-page .page h1 {
  color: #E7D3F2;
}

nav.blog-categories.tag-list {
  margin: 4.5rem 0 3.333rem;
}
nav.blog-categories.tag-list a {
  margin: 0 2.25rem 0 -0.5rem;
  color: #8c51de;
  padding: 0.5rem;
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: 0.033rem;
}

.blog-wrap:after {
  border-radius: 68.4375rem;
  background: rgb(230, 210, 241);
  filter: blur(260px);
  position: fixed;
  right: -34rem;
  top: 12rem;
  z-index: -10;
  content: " ";
  display: block;
  width: 68.4375rem;
  height: 68.4375rem;
  opacity: 0.25;
}

.blog a.blog-back,
.content.blog a.blog-back {
  position: absolute !important;
  top: 4.75rem;
  left: 50%;
  margin-left: -29rem;
  padding: 0.225rem 1rem;
  border-radius: 2rem;
  line-height: 1;
  display: flex;
  transition: all 0.3s ease-in-out;
}
.blog a.blog-back img, .blog a.blog-back span,
.content.blog a.blog-back img,
.content.blog a.blog-back span {
  display: inline-flex;
  position: relative;
  line-height: 1;
}
.blog a.blog-back img,
.content.blog a.blog-back img {
  transform: rotate(180deg);
  max-width: 1.75rem;
  opacity: 1;
  margin: 0.1rem 0.825rem 0.125rem -0.4rem;
}
.blog a.blog-back span,
.content.blog a.blog-back span {
  opacity: 0;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.blog a.blog-back:after,
.content.blog a.blog-back:after {
  display: none !important;
}
.blog a.blog-back:hover,
.content.blog a.blog-back:hover {
  margin-left: -32.333rem;
}
.blog a.blog-back:hover img,
.blog a.blog-back:hover span,
.content.blog a.blog-back:hover img,
.content.blog a.blog-back:hover span {
  opacity: 1;
}
.blog .hljs-comment,
.blog .hljs-quote,
.content.blog .hljs-comment,
.content.blog .hljs-quote {
  color: #a984de;
}
.blog code,
.content.blog code {
  border-radius: 0.33rem !important;
  background: #efe9f1 !important;
  color: #345995;
}
.blog pre,
.content.blog pre {
  background: linear-gradient(0, #122a4f 15%, #1d3355 100%) !important;
}
.blog pre code,
.content.blog pre code {
  background: transparent !important;
  color: #E7D3F2;
}
.blog strong,
.content.blog strong {
  color: #0D203F;
}
.blog > img, .blog + table,
.content.blog > img,
.content.blog + table {
  margin-top: 2rem;
  margin-bottom: 1.67rem;
}
.blog iframe, .blog video,
.content.blog iframe,
.content.blog video {
  max-width: 100%;
}
.blog ol,
.blog ul,
.content.blog ol,
.content.blog ul {
  margin: 1.33rem 0 2.5rem 0.25rem;
  list-style-position: outside;
}
.blog ol li,
.blog ul li,
.content.blog ol li,
.content.blog ul li {
  font-size: 1.25rem;
  line-height: 1.825;
  margin-top: 0.667rem;
  margin-bottom: 0.667rem;
}
.blog div.box,
.blog aside,
.content.blog div.box,
.content.blog aside {
  background-image: linear-gradient(18deg, #F3E6FA 0%, #E0C8EE 100%);
}
.blog div.box p,
.blog div.box p:first-of-type,
.blog aside p,
.blog aside p:first-of-type,
.content.blog div.box p,
.content.blog div.box p:first-of-type,
.content.blog aside p,
.content.blog aside p:first-of-type {
  font-size: 1.075rem;
  color: #0E092D;
}
.blog div.box p:first-of-type,
.blog aside p:first-of-type,
.content.blog div.box p:first-of-type,
.content.blog aside p:first-of-type {
  margin-top: 0;
}
.blog div.box p:last-of-type,
.blog aside p:last-of-type,
.content.blog div.box p:last-of-type,
.content.blog aside p:last-of-type {
  margin-bottom: 0;
}
.blog .has-text-centered h1,
.blog .has-text-centered h2,
.blog .has-text-centered h3,
.blog .has-text-centered h4,
.blog .has-text-centered h5,
.blog .has-text-centered p,
.blog .has-text-centered blockquote,
.blog .has-text-centered hr,
.blog .has-text-centered hr:after,
.content.blog .has-text-centered h1,
.content.blog .has-text-centered h2,
.content.blog .has-text-centered h3,
.content.blog .has-text-centered h4,
.content.blog .has-text-centered h5,
.content.blog .has-text-centered p,
.content.blog .has-text-centered blockquote,
.content.blog .has-text-centered hr,
.content.blog .has-text-centered hr:after {
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
}
.blog .card,
.content.blog .card {
  border-radius: 1.1rem;
  margin-bottom: 1rem;
}
.blog .card + .card,
.content.blog .card + .card {
  margin-top: 1.5rem;
}
.blog .card p,
.content.blog .card p {
  margin-top: 0;
}
.blog .card ul,
.blog .card li,
.content.blog .card ul,
.content.blog .card li {
  font-size: 1rem;
  line-height: 2;
}
.blog .card .card-header + .card-content,
.content.blog .card .card-header + .card-content {
  padding-top: 0;
}
.blog .card.is-bright,
.content.blog .card.is-bright {
  border: none !important;
  outline: 2px solid #A87CE6;
}
.blog .card.is-bright .card-header,
.content.blog .card.is-bright .card-header {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #0E092D;
  border: none;
  outline: none;
  box-shadow: none;
}
.blog .card.is-bright .card-header h1.card-header-title,
.blog .card.is-bright .card-header h2.card-header-title,
.blog .card.is-bright .card-header h3.card-header-title,
.blog .card.is-bright .card-header h4.card-header-title,
.blog .card.is-bright .card-header p.card-header-title,
.content.blog .card.is-bright .card-header h1.card-header-title,
.content.blog .card.is-bright .card-header h2.card-header-title,
.content.blog .card.is-bright .card-header h3.card-header-title,
.content.blog .card.is-bright .card-header h4.card-header-title,
.content.blog .card.is-bright .card-header p.card-header-title {
  padding: 1.5rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.blog .card.is-bright .card-header p.card-header-title,
.content.blog .card.is-bright .card-header p.card-header-title {
  font-size: 1.125rem;
  font-weight: normal;
  font-weight: 500 !important;
}
.blog .card.is-bright .card-header p.card-header-title.uppercase,
.content.blog .card.is-bright .card-header p.card-header-title.uppercase {
  font-size: 1rem;
  line-height: 1.33;
}
.blog .card.is-bright .card-content,
.content.blog .card.is-bright .card-content {
  font-size: 1rem;
}
.blog .card.is-bright .card-content p,
.blog .card.is-bright .card-content ul,
.blog .card.is-bright .card-content li,
.content.blog .card.is-bright .card-content p,
.content.blog .card.is-bright .card-content ul,
.content.blog .card.is-bright .card-content li {
  font-size: 1rem;
}
.blog .card.is-bright .card-content .button,
.content.blog .card.is-bright .card-content .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  background-color: #34E8BD;
  font-size: 0.925rem !important;
  margin: 1rem auto !important;
}
.blog .card.is-bright .card-content .button a,
.content.blog .card.is-bright .card-content .button a {
  color: #0E092D !important;
  font-size: 1rem !important;
}
.blog .card.is-bright.is-solid,
.content.blog .card.is-bright.is-solid {
  border: none !important;
  outline: none;
}
.blog .card.is-bright.is-solid .card-header,
.content.blog .card.is-bright.is-solid .card-header {
  color: #0E092D;
}
.blog .card.is-bright.is-solid .card-header .card-header-title h1,
.blog .card.is-bright.is-solid .card-header .card-header-title h2,
.blog .card.is-bright.is-solid .card-header .card-header-title h3,
.blog .card.is-bright.is-solid .card-header .card-header-title h4,
.blog .card.is-bright.is-solid .card-header .card-header-title p,
.content.blog .card.is-bright.is-solid .card-header .card-header-title h1,
.content.blog .card.is-bright.is-solid .card-header .card-header-title h2,
.content.blog .card.is-bright.is-solid .card-header .card-header-title h3,
.content.blog .card.is-bright.is-solid .card-header .card-header-title h4,
.content.blog .card.is-bright.is-solid .card-header .card-header-title p {
  color: #0E092D;
}
.blog .card.is-bright.is-solid p,
.content.blog .card.is-bright.is-solid p {
  color: #0E092D !important;
}
.blog .card.is-bright.is-solid p.has-text-white,
.content.blog .card.is-bright.is-solid p.has-text-white {
  color: white !important;
}
.blog .card.is-bright.is-solid .card-content,
.content.blog .card.is-bright.is-solid .card-content {
  color: #0E092D;
}
.blog .card.is-bright.is-solid .card-content a,
.blog .card.is-bright.is-solid .card-content p > a,
.content.blog .card.is-bright.is-solid .card-content a,
.content.blog .card.is-bright.is-solid .card-content p > a {
  color: #116455;
  background: transparent;
  border-radius: 0.1rem;
}
.blog .card.is-bright.is-solid .card-content a:hover,
.blog .card.is-bright.is-solid .card-content p > a:hover,
.content.blog .card.is-bright.is-solid .card-content a:hover,
.content.blog .card.is-bright.is-solid .card-content p > a:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
}
.blog .card.is-bright.is-solid .card-content.has-text-white > a, .blog .card.is-bright.is-solid .card-content.has-text-white p > a,
.content.blog .card.is-bright.is-solid .card-content.has-text-white > a,
.content.blog .card.is-bright.is-solid .card-content.has-text-white p > a {
  color: #34E8BD !important;
}
.blog .card.is-bright.is-solid.is-purple,
.content.blog .card.is-bright.is-solid.is-purple {
  background: url("../image/gradient-spin-right-1.jpg") no-repeat 0 0 !important;
}
.blog .card.is-bright.is-solid.is-blue,
.content.blog .card.is-bright.is-solid.is-blue {
  background: url("../image/gradient-spin-right-2.jpg") no-repeat 0 0 !important;
}
.blog .card.is-bright.is-solid.is-green,
.content.blog .card.is-bright.is-solid.is-green {
  background: url("../image/gradient-spin-right-3.jpg") no-repeat 0 0 !important;
}
.blog .card.is-outlined.is-purple,
.content.blog .card.is-outlined.is-purple {
  background: url("../image/gradient-spin-left-2.jpg") no-repeat 0 0;
  outline: 2px solid #E7D3F2;
}
.blog .card.is-outlined.is-blue,
.content.blog .card.is-outlined.is-blue {
  background: url("../image/gradient-spin-left-1.jpg") no-repeat 0 0;
  outline: 2px solid #8093F1;
}
.blog .card.is-outlined.is-green,
.content.blog .card.is-outlined.is-green {
  background: url("../image/gradient-spin-left-3.jpg") no-repeat 0 0;
  outline: 2px solid #C5FFF1;
}
.blog.blog-post h1,
.content.blog.blog-post h1 {
  font-size: 3rem;
  letter-spacing: 0.075rem;
  margin: 1.5rem 0 4.5rem;
  padding-right: 7.5%;
  line-height: 1.333;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.blog.blog-post h1 a.anchor-link,
.content.blog.blog-post h1 a.anchor-link {
  display: none !important;
}
.blog.blog-post h2,
.content.blog.blog-post h2 {
  font-size: 2.333rem;
  margin-top: 4rem;
  font-weight: normal;
}
.blog.blog-post h3,
.content.blog.blog-post h3 {
  font-size: 1.75rem;
  margin-top: 4rem;
  margin-bottom: 2.67rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.525;
  font-weight: 500;
}
.blog.blog-post h1,
.blog.blog-post h2,
.blog.blog-post h3,
.content.blog.blog-post h1,
.content.blog.blog-post h2,
.content.blog.blog-post h3 {
  padding-right: 7vw;
  font-family: "Space Grotesk", sans-serif;
}
.blog.blog-post ul, .blog.blog-post ol, .blog.blog-post dl, .blog.blog-post p, .blog.blog-post blockquote,
.content.blog.blog-post ul,
.content.blog.blog-post ol,
.content.blog.blog-post dl,
.content.blog.blog-post p,
.content.blog.blog-post blockquote {
  max-width: 100%;
  line-height: 1.925;
  margin: 1.875rem 0 !important;
  font-size: 1.25rem;
}
.blog.blog-post h1, .blog.blog-post h2, .blog.blog-post h3, .blog.blog-post h4, .blog.blog-post h5, .blog.blog-post h6,
.content.blog.blog-post h1,
.content.blog.blog-post h2,
.content.blog.blog-post h3,
.content.blog.blog-post h4,
.content.blog.blog-post h5,
.content.blog.blog-post h6 {
  position: relative;
}
.blog.blog-post h1 a.anchor-link, .blog.blog-post h2 a.anchor-link, .blog.blog-post h3 a.anchor-link, .blog.blog-post h4 a.anchor-link, .blog.blog-post h5 a.anchor-link, .blog.blog-post h6 a.anchor-link,
.content.blog.blog-post h1 a.anchor-link,
.content.blog.blog-post h2 a.anchor-link,
.content.blog.blog-post h3 a.anchor-link,
.content.blog.blog-post h4 a.anchor-link,
.content.blog.blog-post h5 a.anchor-link,
.content.blog.blog-post h6 a.anchor-link {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  position: absolute;
  left: -2.2rem;
  top: -0.12em;
}
.blog.blog-post h1:hover a, .blog.blog-post h2:hover a, .blog.blog-post h3:hover a, .blog.blog-post h4:hover a, .blog.blog-post h5:hover a, .blog.blog-post h6:hover a,
.content.blog.blog-post h1:hover a,
.content.blog.blog-post h2:hover a,
.content.blog.blog-post h3:hover a,
.content.blog.blog-post h4:hover a,
.content.blog.blog-post h5:hover a,
.content.blog.blog-post h6:hover a {
  opacity: 1;
}
.blog.blog-post .blog-meta,
.content.blog.blog-post .blog-meta {
  padding: 4.33rem 0 0.5rem;
}
.blog.blog-post .blog-meta span.tag, .blog.blog-post .blog-meta span.date,
.content.blog.blog-post .blog-meta span.tag,
.content.blog.blog-post .blog-meta span.date {
  font-size: 0.8755rem !important;
  display: inline-block;
  line-height: 1.875;
}
.blog.blog-post .blog-meta span.tag a, .blog.blog-post .blog-meta span.date a,
.content.blog.blog-post .blog-meta span.tag a,
.content.blog.blog-post .blog-meta span.date a {
  color: #6424be;
}
.blog.blog-post .blog-meta span.tag a:hover, .blog.blog-post .blog-meta span.date a:hover,
.content.blog.blog-post .blog-meta span.tag a:hover,
.content.blog.blog-post .blog-meta span.date a:hover {
  background: transparent !important;
}
.blog.blog-post .blog-meta span.tag a.anchor-link, .blog.blog-post .blog-meta span.tag a:after, .blog.blog-post .blog-meta span.date a.anchor-link, .blog.blog-post .blog-meta span.date a:after,
.content.blog.blog-post .blog-meta span.tag a.anchor-link,
.content.blog.blog-post .blog-meta span.tag a:after,
.content.blog.blog-post .blog-meta span.date a.anchor-link,
.content.blog.blog-post .blog-meta span.date a:after {
  display: none !important;
}
.blog.blog-post .blog-meta span.tag:last-of-type,
.content.blog.blog-post .blog-meta span.tag:last-of-type {
  background: linear-gradient(90deg #39245b 0%, #513482 100%);
}
.blog.blog-post .blog-meta .date,
.content.blog.blog-post .blog-meta .date {
  font-size: 0.85rem !important;
  color: #213762;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}
.blog.blog-post .blog-meta .blog-meta-avatar,
.content.blog.blog-post .blog-meta .blog-meta-avatar {
  margin: 0 0 0.5rem 0;
  padding-top: 1.67rem;
}
.blog.blog-post .blog-meta .blog-meta-avatar img,
.content.blog.blog-post .blog-meta .blog-meta-avatar img {
  max-width: 2rem;
  max-height: 2rem;
  border-radius: 50%;
  position: absolute;
}
.blog.blog-post .blog-meta .blog-meta-avatar .tag,
.content.blog.blog-post .blog-meta .blog-meta-avatar .tag {
  border-radius: 1rem;
  background-color: #E7D3F2;
  color: #39255c !important;
  padding: 0 0.75rem;
  font-size: 0.825rem !important;
  display: none;
}
.blog.blog-post .blog-meta .blog-meta-avatar .tag:hover,
.content.blog.blog-post .blog-meta .blog-meta-avatar .tag:hover {
  background-color: #E7D3F2;
}
.blog.blog-post .blog-meta .blog-meta-avatar .tag:after,
.content.blog.blog-post .blog-meta .blog-meta-avatar .tag:after {
  display: none !important;
}
.blog.blog-post .blog-meta .blog-meta-avatar:after,
.content.blog.blog-post .blog-meta .blog-meta-avatar:after {
  content: " ";
  background: #8093F1;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  right: 1.33rem;
  top: 0rem;
  opacity: 0.425;
}
.blog.blog-post .blog-meta .blog-meta-author,
.content.blog.blog-post .blog-meta .blog-meta-author {
  color: #A87CE6;
  font-weight: 500;
  line-height: 1.67;
  margin-left: 3.333rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.blog.blog-post .blog-meta .blog-meta-tags,
.content.blog.blog-post .blog-meta .blog-meta-tags {
  font-size: 0.725rem;
}
@media screen and (min-width: 1344px) {
  .blog.blog-post .blog-meta .blog-meta-avatar,
.content.blog.blog-post .blog-meta .blog-meta-avatar {
    left: 50%;
    margin-left: 28.5rem;
    position: absolute;
    min-width: 200px;
  }
  .blog.blog-post .blog-meta .blog-meta-avatar img,
.content.blog.blog-post .blog-meta .blog-meta-avatar img {
    max-width: 2.5rem;
    max-height: 2.5rem;
    border-radius: 50%;
    position: absolute;
  }
  .blog.blog-post .blog-meta .blog-meta-avatar .tag,
.content.blog.blog-post .blog-meta .blog-meta-avatar .tag {
    display: inline-flex;
  }
  .blog.blog-post .blog-meta .blog-meta-avatar .blog-meta-author,
.content.blog.blog-post .blog-meta .blog-meta-avatar .blog-meta-author {
    line-height: 1.5;
    margin: 0.33rem 0 1.33rem 3.333rem;
    max-width: 158px;
    display: inline-flex;
    letter-spacing: 0.05rem;
  }
}
.blog.blog-post .blog-meta .image-wrap,
.content.blog.blog-post .blog-meta .image-wrap {
  border-radius: 1.125rem;
  overflow: hidden;
  outline: 0.167rem solid rgba(231, 211, 242, 0.25);
  line-height: 1;
  display: flex;
  margin-bottom: 0rem;
  background-image: linear-gradient(135deg, #8093F1 15%, #E7D3F2 100%);
  transition: all 0.3s ease-in-out;
}
.blog.blog-post .blog-meta .image-wrap img,
.content.blog.blog-post .blog-meta .image-wrap img {
  display: flex !important;
  opacity: 0.97;
  width: 100%;
}
.blog.blog-post .blog-meta h1,
.content.blog.blog-post .blog-meta h1 {
  line-height: 1.333;
}
.blog.blog-post .tags,
.content.blog.blog-post .tags {
  margin-right: 1.75rem;
}
.blog.blog-post .tag,
.content.blog.blog-post .tag {
  text-transform: capitalize;
  padding: 0 0.75rem;
  background-color: #e2c9ef;
  text-transform: capitalize;
  color: #6424be;
  font-size: 0.8755rem !important;
  display: inline-block;
  line-height: 1.875;
  transition: all 0.3s ease-in-out;
}
.blog.blog-post .taga,
.content.blog.blog-post .taga {
  color: #6424be;
}
.blog.blog-post .tag:hover,
.content.blog.blog-post .tag:hover {
  background-color: #dec2ed;
  text-decoration: none;
}
.blog.blog-post blockquote p,
.content.blog.blog-post blockquote p {
  background: rgba(128, 147, 241, 0.22);
  color: #0E092D;
  line-height: 2;
  padding: 1rem 5% 1rem 2rem !important;
  border-radius: 0.67rem;
}
.blog.blog-post blockquote p a,
.content.blog.blog-post blockquote p a {
  color: #6424be;
}
.blog.blog-post blockquote p + blockquote p,
.content.blog.blog-post blockquote p + blockquote p {
  border-radius: 0 0 1rem 1rem;
}

.blog-column {
  max-width: 52rem !important;
}

.blog-aside {
  min-width: 200px;
  max-width: 200px;
  margin-top: 23rem;
  position: relative;
  padding: 1.67rem 0 1.67rem 1.33rem;
}

.content.blog.blog-listing article {
  min-height: 32rem;
  margin-bottom: 6.67rem;
  position: relative;
}
.content.blog.blog-listing article:after {
  content: " ";
  background: #8093F1;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  right: 3.25rem;
  opacity: 0.425;
}
.content.blog.blog-listing article a.blog-link {
  display: block;
  background-color: transparent;
}
.content.blog.blog-listing article a.blog-link:hover {
  background: transparent !important;
}
.content.blog.blog-listing article a.blog-link:hover h1 {
  color: #6843a6;
}
.content.blog.blog-listing article a.blog-link:hover .image-wrap {
  outline: 0.167rem solid rgba(197, 255, 241, 0.5);
}
.content.blog.blog-listing article a.blog-link:hover .image-wrap img {
  opacity: 0.925;
}
.content.blog.blog-listing article .image-wrap {
  border-radius: 1.125rem;
  overflow: hidden;
  outline: 0.167rem solid rgba(231, 211, 242, 0.25);
  line-height: 1;
  display: flex;
  margin-bottom: 2.25rem;
  background-image: linear-gradient(135deg, #8093F1 15%, #E7D3F2 100%);
  transition: all 0.3s ease-in-out;
}
.content.blog.blog-listing article .image-wrap img {
  display: flex !important;
  opacity: 0.97;
  min-width: 100%;
}
.content.blog.blog-listing article h1 {
  font-size: 1.75rem;
  line-height: 1.425;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  font-family: "Space Grotesk", sans-serif;
  padding-right: 1.33rem;
  overflow: hidden;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.content.blog.blog-listing article h1 a.anchor-link {
  display: none !important;
}
.content.blog.blog-listing article p {
  line-height: 1.625;
  font-size: 1rem !important;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}
.content.blog.blog-listing article li, .content.blog.blog-listing article p {
  font-size: 1rem !important;
}
.content.blog.blog-listing article .blog-summary {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
}
.content.blog.blog-listing article .blog-summary p {
  height: 5.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  opacity: 0.925;
  line-height: 1.825;
}
.content.blog.blog-listing article .blog-summary .truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.825;
}
.content.blog.blog-listing article .blog-summary .truncate p, .content.blog.blog-listing article .blog-summary .truncate ul, .content.blog.blog-listing article .blog-summary .truncate li, .content.blog.blog-listing article .blog-summary .truncate ol, .content.blog.blog-listing article .blog-summary .truncate dl, .content.blog.blog-listing article .blog-summary .truncate h2, .content.blog.blog-listing article .blog-summary .truncate h3, .content.blog.blog-listing article .blog-summary .truncate h4, .content.blog.blog-listing article .blog-summary .truncate a, .content.blog.blog-listing article .blog-summary .truncate blockquote {
  display: inline !important;
  font-size: 1rem !important;
  color: #213762;
  font-weight: normal !important;
  line-height: 1.825 !important;
  list-style: none !important;
  padding: 0 !important;
}
.content.blog.blog-listing article .blog-summary .truncate p {
  display: -webkit-box !important;
}
.content.blog.blog-listing article .blog-summary .truncate img, .content.blog.blog-listing article .blog-summary .truncate.anchor-link {
  display: none;
}
.content.blog.blog-listing article .blog-summary .truncate::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33.333%;
  height: 2rem;
  background: linear-gradient(to right, rgba(252, 245, 255, 0), #fcf5ff 50%);
}
.content.blog.blog-listing article .blog-summary a {
  color: white;
}
.content.blog.blog-listing article a::after {
  display: none !important;
}
.content.blog.blog-listing article a:hover:after {
  display: none !important;
  background-color: transparent !important;
}
.content.blog.blog-listing article:first-of-type:not(.blog-featured), .content.blog.blog-listing article:nth-of-type(2):not(.blog-featured) {
  width: 50%;
  min-height: 45rem;
  margin-bottom: 8.5rem !important;
}
.content.blog.blog-listing article:first-of-type:not(.blog-featured) .image-wrap, .content.blog.blog-listing article:nth-of-type(2):not(.blog-featured) .image-wrap {
  border-radius: 2rem;
}
.content.blog.blog-listing article:first-of-type:not(.blog-featured) h1, .content.blog.blog-listing article:nth-of-type(2):not(.blog-featured) h1 {
  font-size: 2.75rem;
  line-height: 1.425;
  padding-right: 12.5%;
}
.content.blog.blog-listing article:first-of-type:not(.blog-featured) p, .content.blog.blog-listing article:nth-of-type(2):not(.blog-featured) p {
  font-size: 1.25rem !important;
  padding-right: 7.5%;
  height: 6.67rem;
}

.blog-featured-cta::after {
  display: none !important;
}

.blog-cta-text-link {
  background: url(/static/image/glow-purple.svg) no-repeat 50% 90% #8093F1;
  background-size: 200%;
  display: inline-block;
  border-radius: 1rem;
  min-height: 32rem;
}
.blog-cta-text-link a.anchor-link {
  display: none !important;
}
.blog-cta-text-link h2 {
  margin: 0 !important;
  padding: 2.25rem 2rem;
  color: white;
}
.blog-cta-text-link h2 a {
  color: #E7D3F2;
}
.blog-cta-text-link h2 a:hover {
  color: white !important;
  background: transparent !important;
}

@media screen and (max-width: 1024px) {
  .blog-column {
    max-width: 94vw !important;
  }
  .content.blog.blog-listing article {
    min-height: auto;
    margin-bottom: 1.5rem !important;
  }
  .content.blog.blog-listing article:after {
    display: none;
  }
  .content.blog.blog-listing article .blog-summary {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
  }
  .content.blog.blog-listing article:first-of-type:not(.blog-featured), .content.blog.blog-listing article:nth-of-type(2):not(.blog-featured) {
    width: 100%;
    min-height: auto;
    margin-bottom: 1.5rem !important;
  }
  .content.blog.blog-listing article .blog-cta-text-link {
    min-height: auto;
  }
  .content.blog.blog-post .blog-meta h1 {
    margin-bottom: 2.5rem;
  }
  .content.blog.blog-post .blog-meta .image-wrap {
    margin: 1.67rem auto 0.333rem;
  }
  .content.blog.blog-post iframe, .content.blog.blog-post video {
    max-height: 52vw;
  }
}
@media screen and (max-width: 871px) {
  .homepage {
    min-height: 50vh;
    position: relative;
    overflow-x: hidden;
  }
  .homepage #intro section {
    max-width: 84%;
    padding: 4.5rem 8% 1rem;
    margin: 0 auto;
    margin-left: auto;
    left: 50%;
    margin-left: -42%;
    position: absolute;
  }
  .homepage #intro .intro-text {
    min-height: 28rem;
    height: auto !important;
    z-index: 100;
    margin-top: 5rem;
  }
  .homepage #intro .intro-text .intro-bg-wrap {
    min-height: 40rem;
    height: auto !important;
    margin-right: 0;
    border-radius: 0 0 4rem 0;
  }
  .homepage #intro .intro-text:after {
    background-size: cover;
    background-position: 80% 0%;
    border-radius: 3vw !important;
    top: 8.5vw;
    left: 50%;
    margin-left: -44vw;
    width: 88vw;
    min-height: 25rem;
    overflow: hidden;
    z-index: 87;
  }
  .homepage #intro .intro-text h1 {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    margin: -1rem auto 1rem;
  }
  .homepage #intro .intro-text h2 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.075rem;
    margin: 2rem auto 2.5rem;
    line-height: 1.75;
  }
  .homepage #intro .intro-text h1, .homepage #intro .intro-text h2 {
    max-width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }
  .homepage #intro .intro-text .buttons {
    text-align: center;
    width: 100%;
  }
  .homepage #intro .intro-text .buttons .button {
    margin: 0 auto;
  }
  .homepage #intro .intro-shapes {
    display: none;
  }
  .homepage #spin-story {
    padding-top: 0;
    padding-bottom: 40px;
    height: auto;
  }
  .homepage #spin-story .spin-github {
    margin-bottom: 4.25rem;
  }
  .homepage #spin-story .spin-sticky-cards {
    height: auto;
    margin-bottom: 0 !important;
  }
  .homepage #spin-story .spin-sticky-cards .card {
    top: auto;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left {
    height: 7.5rem;
    margin-right: 0;
    background-position: 0% 15%;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left .card-content {
    padding: 1.333rem 1.5rem 0;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left code.bubble {
    font-size: 0.825rem;
    min-width: 2.1rem;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left code.bubble.bubble-command {
    width: auto;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left h4 {
    font-size: 1.333rem;
    margin: 0.75rem 0;
  }
  .homepage #spin-story .spin-sticky-cards-3 .card-left {
    background-size: 250%;
    background-position: 10% 5% !important;
  }
  .homepage #spin-story .spin-sticky-cards-1,
.homepage #spin-story .spin-sticky-cards-2,
.homepage #spin-story .spin-sticky-cards-3 {
    opacity: 1 !important;
  }
  .homepage #cloud-story {
    height: auto;
    padding-top: 3rem;
    min-height: 1300px;
    background-position: center -250%;
  }
  .homepage #cloud-story .cloud-ui {
    max-width: 386px;
    margin: 2rem auto 4rem;
    overflow: hidden;
    border-radius: 1.67rem;
    background-position: 0 0;
    background: #182A51;
    box-shadow: 0 0 20px #0e092d;
  }
  .homepage #cloud-story .cloud-ui img {
    position: relative;
    margin-top: -14px;
  }
  .homepage .projects-title h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    max-width: 80vw;
    margin: 1rem auto;
  }
  .homepage .projects-title h3 {
    font-size: 0.825rem;
    line-height: 2;
  }
  .homepage .projects-title h3 code {
    font-size: 0.75rem;
  }
  .homepage .projects-title h3 em {
    position: relative;
    display: inline-block;
    left: auto;
    top: auto;
    margin: 0 1rem 0 0;
  }
  .homepage #why-fermyon {
    min-height: 1000px;
    padding-bottom: 15px;
  }
  .homepage #why-fermyon .values-size {
    padding-top: 4rem;
  }
  .homepage #why-fermyon .values-size h2 {
    font-size: 1.425rem;
    margin-bottom: 18rem;
  }
  .homepage #why-fermyon .values-size .next-wave {
    right: 13%;
    top: 390px;
  }
  .homepage #why-fermyon .values-size .second-wave {
    right: 82.5%;
  }
  .homepage #why-fermyon .values-size .second-wave .wave-label-big {
    top: 240px;
    right: -27%;
  }
  .homepage #why-fermyon .values-features.values-trio .column::after {
    display: none;
  }
  .homepage #why-fermyon .values-features.values-trio img {
    max-width: 20%;
    margin: 2rem auto 1rem;
  }
  .homepage #why-fermyon .values-features h2 {
    font-size: 1.33rem;
  }
  .homepage #why-fermyon .values-cold-start {
    max-width: 372px;
    overflow: hidden;
  }
  .homepage #why-fermyon .values-cold-start section {
    min-height: 34rem;
    margin: 0;
    max-width: 100%;
    background-size: cover;
  }
  .homepage #why-fermyon .values-cold-start section .scale {
    width: 90%;
    padding: 1rem 0;
    min-height: 30rem;
    left: auto;
    margin: 0 auto;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside {
    top: 1.5rem;
    left: 0;
    right: -0.25rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside:nth-child(2) {
    top: 13rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar:before {
    font-size: 7pt;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar em:after {
    content: "Exec";
    font-size: 7pt;
    padding: 0.2rem 0.5rem;
    line-height: 3.75;
    width: 4.25rem;
    left: 14.5rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar.bar-spin em:after {
    left: 0.5rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale .timing {
    font-size: 7pt;
    padding: 0 0.5rem 0.15rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale .timing:after {
    top: -26rem;
  }
  .homepage #why-fermyon .values-cold-start section h1 {
    display: none;
  }
  .homepage #why-fermyon .values-cold-start section h1.lamda-caption {
    display: block;
    font-size: 1.2rem;
    top: 24.25rem;
    width: 100%;
    left: auto;
    text-align: center;
  }
  .homepage #why-fermyon .bg-pattern.bg-pattern-bottom {
    display: none;
  }
  .homepage #why-fermyon .cta-landing-top,
.homepage #why-fermyon .cta-landing-bottom {
    width: 94% !important;
    margin-left: 3% !important;
    margin-right: 3% !important;
    padding: 1.25rem 1.4rem;
  }
  .homepage #why-fermyon .cta-landing-top h1,
.homepage #why-fermyon .cta-landing-bottom h1 {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    text-align: center;
  }
  .homepage #why-fermyon .cta-landing-top p,
.homepage #why-fermyon .cta-landing-bottom p {
    font-size: 0.925rem;
  }
  .homepage #why-fermyon .cta-landing-top .buttons,
.homepage #why-fermyon .cta-landing-bottom .buttons {
    margin: 0 auto 2rem;
  }
  .homepage #why-fermyon .cta-landing-bottom {
    margin: 3rem auto 5rem !important;
  }
  .buttons {
    text-align: center;
    width: 100%;
  }
  .buttons .button {
    margin: 0 auto;
  }
  .buttons .button + .button {
    margin-top: 0.67rem !important;
  }
  .feature-page .buttons a.button {
    margin-right: auto !important;
    margin-left: auto !important;
    min-width: 80vw !important;
  }
  .page-news .card.press-release {
    text-align: left;
  }
  .page-news .card.press-release .card-content span.title {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .page-news section.news-item a {
    padding: 0 1.2rem;
    text-align: left;
  }
  .page-news section.news-item a span.date, .page-news section.news-item a span.source {
    position: relative;
    left: auto;
    top: auto;
  }
  .page-news section.news-item a span.title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .page-news section.news-item a:after {
    display: none;
  }
  footer .footer-links-wrap a {
    font-size: 0.825rem;
  }
}
@media screen and (min-width: 551px) and (max-width: 871px) {
  body {
    overflow-x: hidden;
  }
  #topbar.navbar a.navbar-item {
    text-align: center;
    display: block;
  }
  #topbar.navbar .navbar-menu .button {
    min-height: 4.5rem;
    min-width: 10rem;
    margin: 0 5vw 2rem 5vw;
  }
  #topbar.navbar a.dropdown-item {
    text-align: center !important;
  }
  #intro {
    min-height: 67vh !important;
  }
  #intro h1 {
    font-size: 2rem !important;
    margin-top: 1.5rem !important;
  }
  #intro h2 {
    font-size: 1.25rem !important;
  }
  #intro:after {
    display: none !important;
  }
  #projects:after {
    display: none !important;
  }
  #projects h2 {
    margin-bottom: 0rem !important;
  }
  #projects p.lead {
    font-size: 1rem !important;
    margin-left: 35% !important;
  }
  #projects .home-platform-img {
    max-width: 20% !important;
    left: -12% !important;
    top: 45% !important;
  }
  #projects .button {
    font-size: 1rem !important;
  }
  #news .news-sticky-one {
    background-image: none !important;
    padding-right: 0 !important;
  }
  #community .tile {
    flex-direction: column;
    min-width: 100%;
  }
  .platform-page #platform-intro {
    background: url("../image/platform-intro-light.svg") no-repeat 0 33vh !important;
    background-size: fit;
  }
  .platform-page #platform-intro,
.platform-page #platform-features {
    padding-left: 5%;
    padding-right: 5%;
    min-height: 87.25vh;
  }
  .platform-page #platform-intro .platform-intro-btn a,
.platform-page #platform-features .platform-intro-btn a {
    top: auto;
    left: auto;
    margin-left: 0;
    position: relative;
    margin-top: -8rem;
  }
  .platform-page #platform-intro h1,
.platform-page #platform-features h1 {
    margin-top: 0.5em !important;
    margin-bottom: 2.5em !important;
  }
  .platform-page .platform-intro-img {
    background-image: none !important;
  }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  article.blog {
    padding-top: 0 !important;
  }
  .about-page .about-team-list {
    max-width: 100% !important;
  }
  .container.about-sub-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.about-sub-page .hero-intro h1, .container.about-sub-page .hero-intro p {
    max-width: 85%;
  }
  .container.about-sub-page .hero-intro #rtcWindow {
    max-height: 80vh;
  }
  .container.about-sub-page .hero-intro #rtcWindow .rtc-wrapper {
    max-height: 72.5vh;
    padding: 0.2rem 0 inherit !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow .rtc-wrapper .tile.is-ancestor {
    padding: 0.5rem 1rem;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile {
    display: inline-block;
    min-width: 45vw;
    min-height: 30vw;
    padding: 0.3rem 0.75vw 41vw !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile p {
    bottom: 0;
    font-size: 0.75rem;
    left: 0;
    right: 0;
    opacity: 0.8;
  }
  aside.menu {
    left: auto;
    top: auto;
  }
  html.dark-theme > body #platform-intro {
    background: url("../image/platform-intro-dark.svg") no-repeat 0 33vh !important;
  }
}
.events .bg {
  width: 100%;
  z-index: 1;
}
.events h2 {
  font-family: "Space Grotesk", sans-serif;
  color: #E7D3F2 !important;
  font-weight: 500;
  font-size: 3rem;
  margin: 5rem auto 1.67rem;
}
.events a {
  color: #34E8BD;
  text-decoration: underline;
}
.events a:hover {
  color: #8093F1;
}
.events .tile {
  display: flex;
  justify-content: center !important;
}
.events .card.community-item {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  margin-top: -10.5rem;
}
.events .card.community-item .card-content {
  background-image: url("/static/image/values-cold-start.jpg");
  min-height: 300px;
}
.events .card.community-item .title {
  padding-top: 2rem;
}
.events .card.community-item .subtitle {
  padding: 2rem 6rem;
}
.events .card.community-item a {
  color: #371469;
}
@media screen and (max-width: 700px) and (min-width: 200px) {
  .events .card.community-item {
    margin-top: -5rem;
    min-height: 200px;
  }
  .events .card.community-item .title {
    font-size: 2rem;
    padding-top: 1rem;
  }
  .events .card.community-item .subtitle {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
.events .card.event-item {
  background: white;
  margin-bottom: 4rem;
  margin: 0 auto 4rem;
  min-height: 300px;
  max-width: 600px;
  position: relative;
  border-radius: 0.67rem;
  padding: 2rem 2.25rem;
  /* For Fermyon sponsored events */
}
.events .card.event-item a {
  font-weight: 600;
  font-size: 2rem;
  color: #0E092D;
  text-decoration: none;
}
.events .card.event-item a:hover {
  color: #34E8BD !important;
}
.events .card.event-item h4 {
  color: #A87CE6;
  font-size: 1rem;
}
.events .card.event-item p {
  font-size: 1rem;
  padding-top: 2rem;
}
.events .card.event-item .tag-container {
  margin-top: 2rem;
}
.events .card.event-item .tag {
  border-radius: 25px;
  border: 1px solid #A87CE6;
  background: white;
  width: auto;
  height: auto;
  padding: 5px 20px 5px 20px;
  margin-top: 5px;
}
.events .card.event-item .tag p {
  color: #A87CE6;
  padding-top: 0;
  font-size: 0.75rem;
}
.events .card.event-item .colored-background {
  background: rgba(168, 124, 230, 0.1254901961) !important;
  vertical-align: bottom;
}
.events .card.event-item .colored-background img {
  max-width: 10px;
  margin-right: 10px;
}
.events .card.event-item .timeline {
  width: 0.2rem;
  height: 150%;
  min-height: 400px;
  position: absolute;
  top: -4rem;
  bottom: 0;
  background: #A87CE6;
  left: -6rem;
}
.events .card.event-item .timeline .timeline-node {
  width: 1.5rem;
  height: 1.5rem;
  background: #A87CE6;
  position: relative;
  border-radius: 50%;
  top: 45%;
  margin-left: -0.65rem;
  transform: translateY(-50%);
}
.events .card.event-item:first-of-type {
  box-shadow: 0px 0px 100px 0px rgba(52, 232, 189, 0.67);
}
.events .card.event-item:first-of-type .timeline {
  top: 50%;
  min-height: 250px;
}
.events .card.event-item:first-of-type .timeline .timeline-node {
  background-image: url("/static/image/gradient-spin-right-3.jpg");
  box-shadow: 0px 0px 100px 15px #34E8BD;
  margin-left: -1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  top: 0%;
}
.events .card.event-item:last-of-type .timeline {
  bottom: 50%;
  min-height: 150px;
  height: 50%;
}
.events .card.event-item:last-of-type .timeline .timeline-node {
  bottom: 20%;
  top: 100%;
}
@media screen and (max-width: 550px) and (min-width: 200px) {
  .events .card.event-item {
    padding: 2rem;
  }
}
.events .values-features {
  padding-top: 7rem;
}
.events .values-features img {
  margin: 0 auto 3rem;
  max-width: 68px;
}
.events .values-features h2 {
  font-family: "Space Grotesk", sans-serif;
  color: #E7D3F2;
  font-weight: 500;
  font-size: 2.25rem;
  margin: 0 auto 1.67rem;
}
.events .values-features p {
  font-size: 1rem;
  margin: 0 auto 1rem;
  line-height: 1.75;
  max-width: 34rem;
  letter-spacing: 0.05rem;
}
.events .values-features.values-trio .column {
  position: relative;
}
.events .values-features.values-trio .column h2, .events .values-features.values-trio .column p {
  max-width: 18rem;
}
.events .values-features.values-trio .column:after {
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  content: " ";
  display: block;
  background: linear-gradient(90deg, #5168AE 0%, rgba(168, 124, 230, 0) 100%);
}
@media screen and (max-width: 768px) and (min-width: 200px) {
  .events .values-features.values-trio .column:after {
    display: none;
  }
}
.events .values-features.values-trio .column:first-of-type:after {
  display: none;
}
.events .videos {
  flex-wrap: wrap;
}

html.dark-theme .event-booth-location.card {
  background: url("../image/gradient-spin-right-2.jpg") no-repeat 0 0;
  margin-top: 9.5rem;
}
html.dark-theme .event-booth-location.card h1 {
  color: #0E092D;
  font-size: 3.333rem;
}
html.dark-theme .event-booth-location.card .tag,
html.dark-theme .event-booth-location.card .card-header-title {
  font-size: 0.875rem;
  color: #0E092D;
  background: white;
  border-radius: 1rem;
  padding: 0.2rem 1rem;
  display: inline-block;
  margin: 1rem;
  font-weight: normal;
  max-width: 4.5rem;
}
html.dark-theme .event-booth-location.card p {
  line-height: 1.2;
}

#events-list {
  padding-bottom: 9.5rem;
}
#events-list .tag,
#events-list .card-header-title {
  font-size: 0.875rem;
  color: #0E092D;
  background: #E7D3F2;
  border-radius: 1rem;
  padding: 0.2rem 1rem;
  display: inline-block;
  margin: 1rem;
  font-weight: normal;
}
#events-list .card {
  min-height: 27rem;
  border: 1px solid #E7D3F2;
}
#events-list .card .card-header,
#events-list .card .card-content {
  padding: 0.5rem 0.5rem 1.25rem;
  min-height: 8.5rem;
}
#events-list .card .card-header {
  min-height: 14rem;
}
#events-list .card h2, #events-list .card p {
  color: #0E092D;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
#events-list .card h2 {
  font-weight: 400;
  line-height: 1.25;
  font-size: 1.75rem;
}
#events-list .card p {
  line-height: 1.333;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.event-page-wrap + .feature-page-bottom-shade {
  padding-bottom: 8.5rem;
}

.event-page-wrap #events-menu {
  text-align: left;
  padding: 4.333rem 0 2.333rem;
}
.event-page-wrap #events-menu nav {
  margin: 0 0 0 -1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.event-page-wrap #events-menu a {
  margin: 0 1.333rem 0 0;
  padding: 0.5rem 1rem;
  font-size: 0.925rem;
  color: #0D203F;
  border-radius: 1rem;
}
.event-page-wrap #events-menu a:hover {
  background-image: linear-gradient(90deg, rgba(168, 124, 230, 0.22) 0%, rgba(168, 124, 230, 0.07) 100%);
}
.event-page-wrap #kubecon-announcement {
  background: linear-gradient(180deg, #edc5ff, 0%, #f7e3ff 100%);
  border-radius: 1.33rem;
  padding: 1.5rem 2.25rem;
  min-height: 20rem;
  margin: 3rem auto 5.5rem;
}
.event-page-wrap #kubecon-announcement h3 {
  font-weight: 500;
  line-height: 1.33;
}
.event-page-wrap #kubecon-announcement .buttons a.button {
  font-size: 0.925rem;
  color: #0E092D !important;
  background-color: transparent !important;
  min-width: 5rem !important;
  max-width: 80% !important;
}
.event-page-wrap #event-intro-kubecon24 {
  width: 100%;
  height: 452px;
  position: relative;
  background: url(/static/image/kubecon-bg-transparent.png) no-repeat center top, url(/static/image/kubecon-bg-light.jpg) repeat-x center bottom;
}
.event-page-wrap #event-intro-kubecon24:before {
  content: " ";
  display: block;
  position: absolute;
  left: 50%;
  width: 1282px;
  height: 452px;
  background: url(/static/image/kubecon-header-light.jpg) no-repeat center top;
  background-size: cover;
  margin-left: -641px;
}
.event-page-wrap #event-intro-kubecon24 div {
  display: none;
}
.event-page-wrap h4 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  margin: 1.5rem 0;
  font-size: 1.25rem;
  color: #8093F1 !important;
}
.event-page-wrap #kubecon-cta {
  margin: 0 auto 10rem;
  min-height: 32rem;
}
.event-page-wrap #kubecon-cta figure {
  margin: 0;
  padding: 0;
}
.event-page-wrap #kubecon-cta ul {
  margin: 5rem 0;
  list-style: none !important;
}
.event-page-wrap #kubecon-cta ul li {
  list-style: none !important;
}
.event-page-wrap #kubecon-cta ul li a {
  margin-left: 1.33rem;
}
.event-page-wrap #kubecon-cta ul a.button {
  background: transparent !important;
  margin: 0 0 1.5rem;
}

@media screen and (max-width: 1023px) {
  .event-page-wrap #events-menu nav a {
    min-width: 9rem;
  }
  .event-page-wrap #event-intro-kubecon24 {
    background: none !important;
  }
  .event-page-wrap #event-intro-kubecon24:before {
    left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 335px !important;
    background-size: cover !important;
  }
}
/* pricing page */ /* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 0.9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}

[tooltip]::before {
  content: "";
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}

[tooltip]::after {
  content: attr(tooltip); /* magic! */
  /* most of the rest of this is opinion */
  font-family: Helvetica, sans-serif;
  text-align: center;
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 0.3ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #525776;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
  bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before,
[tooltip][flow^=up]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}

[tooltip][flow^=down]::after {
  top: calc(100% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
  left: 50%;
  transform: translate(-50%, 0.5em);
}

/* FLOW: LEFT */
[tooltip][flow^=left]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%);
}

[tooltip][flow^=left]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^=right]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%);
}

[tooltip][flow^=right]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: 0.9;
    transform: translate(-50%, 0);
  }
}
@keyframes tooltips-horz {
  to {
    opacity: 0.9;
    transform: translate(0, -50%);
  }
}
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^=left]:hover::before,
[tooltip][flow^=left]:hover::after,
[tooltip][flow^=right]:hover::before,
[tooltip][flow^=right]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.page-pricing .page {
  max-width: 60rem;
}
.page-pricing .page h1 {
  margin-bottom: 2rem !important;
  font-weight: 400;
  font-family: "Space Grotesk", sans-serif;
  color: #0E092D;
  font-size: 3.25rem;
}
.page-pricing table.pricing-table {
  margin: 4.5rem auto 3rem;
  border-radius: 3rem 1rem 1rem 3rem !important;
  border: none;
  overflow: hidden;
}
.page-pricing table.pricing-table td {
  padding: 2.5rem 1.33rem;
  line-height: 2.5;
  font-size: 1.125rem;
  width: 25%;
  background-color: #f2e7f8;
}
.page-pricing table.pricing-table td.bordered {
  border-left: 1px solid #FDF8FF !important;
  border-bottom: 1px solid #E6D2F1 !important;
}
.page-pricing table.pricing-table td.bordered.bordered-end {
  border-bottom: none !important;
  padding: 1.335rem 1rem 0 !important;
}
.page-pricing table.pricing-table td.pricing-sidebar {
  background: #E6D2F1;
  font-size: 0.925rem;
  padding-left: 1.5rem !important;
  line-height: 3.025 !important;
  position: relative;
}
.page-pricing table.pricing-table td.pricing-sidebar .break {
  background: rgba(166, 123, 229, 0.175);
  display: block;
  height: 1px;
  position: absolute;
  left: 1.5rem;
  right: 2rem;
  top: 0px;
}
.page-pricing table.pricing-table td.pricing-glow {
  position: relative;
  overflow: hidden;
}
.page-pricing table.pricing-table td.pricing-glow:after {
  width: 400px;
  height: 400px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -258px;
  top: -380px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  border-radius: 50%;
  filter: blur(304.5px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
}
.page-pricing table.pricing-table td h2 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0.5rem 0 1.5rem;
  font-size: 1.425rem;
  color: #A87CE6;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
.page-pricing table.pricing-table td h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  margin: 0.925rem 0;
  font-size: 1.75rem;
  letter-spacing: 0.075rem;
}
.page-pricing table.pricing-table td h4 em {
  font-size: 1rem;
  font-style: normal;
}
.page-pricing table.pricing-table td small {
  line-height: 1.5 !important;
  display: block;
  font-size: 1.1rem;
}
.page-pricing table.pricing-table td p {
  line-height: 1.333;
  margin: 0;
  font-size: 1.1rem !important;
}
.page-pricing table.pricing-table td p a {
  color: #623f9d !important;
}
.page-pricing table.pricing-table td p a:hover {
  background: transparent none !important;
}
.page-pricing table.pricing-table td .pricing-title-pill {
  position: absolute;
  border-radius: 2rem;
  background: #FCF5FF;
  padding: 0rem 0.925rem 0 0;
  line-height: 2.333;
  font-size: 0.925rem;
  display: inline-block;
  color: #7d3cda;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-top: -3.67rem;
  margin-left: -0.333rem;
}
.page-pricing table.pricing-table td .pricing-title-pill img {
  margin: 0.4rem;
  float: left;
}
.page-pricing table.pricing-table td.pricing-labels {
  color: #6843a6 !important;
}
.page-pricing table.pricing-table .button {
  font-family: "Space Grotesk", sans-serif;
  color: #0E092D !important;
  min-width: 100% !important;
  margin-bottom: 1rem !important;
}
.page-pricing table.pricing-table .button a, .page-pricing table.pricing-table .button a:hover {
  color: #0E092D !important;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  font-size: 1rem !important;
  display: inline !important;
  background: transparent !important;
  border: none !important;
  line-height: 1.333;
}
.page-pricing table.pricing-table .button a:after, .page-pricing table.pricing-table .button a:hover:after {
  display: none !important;
}
.page-pricing table.pricing-table span[tooltip] {
  display: inline-block;
  position: relative;
  width: 2rem;
  min-height: 1.5rem;
}
.page-pricing table.pricing-table svg {
  display: inline;
  max-width: 1.425rem;
  fill: #E7D3F2;
  color: #E7D3F2;
}
.page-pricing table.pricing-table svg path {
  fill: #E7D3F2;
  color: #E7D3F2;
}
.page-pricing .card {
  min-height: 11rem;
  margin-bottom: 4rem;
}
.page-pricing .card p.card-header-title {
  font-size: 1.33rem !important;
}
.page-pricing .card.card-white {
  background: white !important;
  border: none;
}
.page-pricing .card.is-bright a {
  color: #0E092D !important;
  font-weight: bold;
}
.page-pricing .card .button {
  margin: 1.5rem 0 0;
  font-weight: normal;
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
}
.page-pricing .card .button a {
  font-weight: normal;
}
.page-pricing .card .button a:hover {
  background: transparent;
}
.page-pricing .card .button a:hover:after {
  display: none !important;
}
.page-pricing .accordion {
  margin-bottom: 5rem;
}
.page-pricing .accordion .accordion-item {
  border-bottom: 1px solid #8093F1;
}
.page-pricing .accordion .accordion-item button[aria-expanded=true] {
  padding: 1rem 0;
  margin: 0;
  background-color: transparent;
}
.page-pricing .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #0E092D;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
.page-pricing .accordion button:hover, .page-pricing .accordion button:focus {
  cursor: pointer;
}
.page-pricing .accordion button:hover::after, .page-pricing .accordion button:focus::after {
  cursor: pointer;
  color: #8093F1;
  border: 1px solid #8093F1;
}
.page-pricing .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.page-pricing .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.page-pricing .accordion button .icon::before, .page-pricing .accordion button .icon::after {
  background-color: #0E092D;
}
.page-pricing .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
}
.page-pricing .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
}
.page-pricing .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.page-pricing .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 35em;
  overflow: visible;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.page-pricing .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  text-align: left;
}
.page-pricing .accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 1em 1.5rem 2rem;
  text-align: left;
  color: #8093F1;
}

@media screen and (max-width: 871px) {
  .table-wrap {
    overflow-x: scroll;
    min-width: 100%;
    margin-left: -10vw;
    margin-right: -10vw;
    padding: 1rem;
  }
  .table-wrap table {
    cursor: move;
    margin-right: 2rem;
    min-width: 840px;
  }
  .table-wrap table h2 {
    font-family: "Space Grotesk", sans-serif;
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    color: #A87CE6;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
  }
  .table-wrap table h4 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
    margin: 0.25rem 0;
    font-size: 1rem;
    letter-spacing: 0.075rem;
  }
  .table-wrap table h4 em {
    font-size: 1rem;
    font-style: normal;
  }
  .page-pricing table.pricing-table {
    border: none;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 1.67rem !important;
  }
  .page-pricing table.pricing-table td .pricing-title-pill {
    display: none !important;
  }
  .page-pricing table.pricing-table td.pricing-sidebar {
    font-size: 0.75rem !important;
    line-height: 2rem !important;
    background-color: #36335c;
  }
  .page-pricing table.pricing-table td {
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
    line-height: 2rem !important;
    width: 50% !important;
  }
  .page-pricing table.pricing-table td p {
    font-size: 0.925rem !important;
  }
}
.serverless-guide-intro {
  min-height: 12.5vw;
  background: url(/static/image/serverless-guide-header.png) no-repeat center bottom;
  background-size: cover;
}

.serverless-guide-wrap {
  font-family: "Work Sans", sans-serif;
  max-width: 1440px;
  position: relative;
  min-height: 2000px;
}
.serverless-guide-wrap .serverless-guide-content {
  position: relative;
}
.serverless-guide-wrap .serverless-guide-content .page {
  padding-top: 0;
}
.serverless-guide-wrap .serverless-guide-content img.serverless-guide-hero {
  margin: 1rem 0 0rem;
  min-width: 100%;
}
.serverless-guide-wrap .serverless-guide-content h1, .serverless-guide-wrap .serverless-guide-content h2, .serverless-guide-wrap .serverless-guide-content h3, .serverless-guide-wrap .serverless-guide-content h4, .serverless-guide-wrap .serverless-guide-content p, .serverless-guide-wrap .serverless-guide-content ul, .serverless-guide-wrap .serverless-guide-content li {
  font-family: "Work Sans", sans-serif;
}
.serverless-guide-wrap .serverless-guide-content h1 {
  margin: 3.333rem 0 2rem;
}
.serverless-guide-wrap .serverless-guide-content h2 {
  margin-top: 3.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
.serverless-guide-wrap .serverless-guide-content p {
  font-size: 18px;
  line-height: 1.925;
}
.serverless-guide-wrap .serverless-guide-content p.lead {
  font-size: 24px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.serverless-guide-wrap .serverless-guide-content h1 + p.lead {
  margin-top: 0;
}
.serverless-guide-wrap a.button {
  border-radius: 2rem;
  border: 1px solid #34E8BD;
  color: #34E8BD;
  background: transparent;
  margin: 3.33rem auto 3rem;
  padding: 0.67rem 1rem;
}
.serverless-guide-wrap a.button svg {
  margin-right: 1rem;
}

.serverless-guide-sidebar .label {
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  color: #A87CE6;
  font-weight: normal;
  font-family: "Space Grotesk", sans-serif;
  background-color: black;
  border-radius: 0.5rem;
  padding: 0.2rem 0.35rem;
  display: inline-block;
  margin: 0 0 1rem 2.25rem;
}
.serverless-guide-sidebar ul.list {
  list-style: none;
  padding-bottom: 2rem;
}
.serverless-guide-sidebar ul.list .chapters {
  text-transform: uppercase;
  color: #8967C2;
  font-size: 15px;
}
.serverless-guide-sidebar ul.list:hover li {
  border: 1px solid #401956;
  border-bottom: none;
}
.serverless-guide-sidebar ul.list:hover li:last-of-type {
  border-bottom: 1px solid #401956;
}
.serverless-guide-sidebar ul.list li {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.075);
  border-bottom: none;
  min-width: 100%;
  transition: all 0.3s ease-in-out;
}
.serverless-guide-sidebar ul.list li a {
  color: white;
  line-height: 1.67;
  font-family: "Work Sans", sans-serif;
  display: inline-block;
  padding: 0.67rem 0.825rem 0.67rem 2.67rem;
  font-size: 1rem;
  position: relative;
  color: #A87CE6;
  display: inline-block;
  line-height: 1.636;
  transition: all 0.3s ease-in-out;
}
.serverless-guide-sidebar ul.list li a span.tag {
  border-radius: 1rem;
  background-color: rgba(0, 0, 0, 0.333);
  font-size: 13px;
  text-transform: uppercase;
  color: #A87CE6;
}
.serverless-guide-sidebar ul.list li a em {
  position: absolute;
  opacity: 0.5;
  left: 0.925rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  transition: all 0.3s ease-in-out;
}
.serverless-guide-sidebar ul.list li a:hover {
  color: #b691ea;
}
.serverless-guide-sidebar ul.list li a:hover em {
  opacity: 1;
}
.serverless-guide-sidebar ul.list li:first-of-type {
  border-radius: 0.5rem 0.5rem 0 0;
}
.serverless-guide-sidebar ul.list li:last-of-type {
  border-radius: 0 0 0.5rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}
.serverless-guide-sidebar ul.list li ul.list-sub {
  display: none;
  margin-bottom: 0;
}
.serverless-guide-sidebar ul.list li ul.list-sub li {
  border: none !important;
  margin-left: 0;
  min-width: auto;
}
.serverless-guide-sidebar ul.list li ul.list-sub li a {
  font-size: 1rem;
  color: #b691ea;
}
.serverless-guide-sidebar ul.list li.active a {
  color: white;
}
.serverless-guide-sidebar ul.list li.active ul.list-sub {
  display: block;
  padding-bottom: 1rem;
}
.serverless-guide-sidebar ul.list li.active ul.list-sub a {
  line-height: 1.636;
  font-size: 0.875rem;
  line-height: 1.5;
  border-left: 2px solid #2c1053;
  padding: 0.25rem 0.5rem 0.425rem 1.925rem;
  margin-left: 1.25rem;
}

@media screen and (min-width: 1024px) {
  .serverless-guide-wrap {
    min-height: 3200px;
    padding-bottom: 6.5rem;
  }
  .serverless-guide-sidebar {
    margin-top: 4rem;
  }
  .serverless-guide-sidebar .headroom,
.serverless-guide-sidebar .headroom--not-top {
    width: 240px;
  }
  .serverless-guide-sidebar .headroom--not-top {
    position: fixed;
    max-width: 240px;
    top: 0;
    padding-top: 65px;
    bottom: 0;
    overflow: visible;
    overflow-y: scroll;
  }
}
@media screen and (max-height: 760px) and (min-width: 1024px) {
  #serverless-guide-toc.headroom--not-top {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    overflow: visible !important;
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 1023px) {
  .serverless-guide-intro {
    min-height: 30vw;
    background: url(/static/image/serverless-guide-header-mobile.png) no-repeat left bottom;
    background-size: cover;
    margin-top: 8px;
    border-bottom: 1px solid #4c3179;
  }
  .serverless-guide-wrap {
    padding-bottom: 8rem;
    bottom: 1rem;
  }
  .serverless-guide-wrap h1 {
    font-size: 2.333rem !important;
    margin: 3.5rem 0 1.5rem !important;
  }
  #mobileServerless.modal {
    top: 106px;
  }
  #mobileServerless.modal .modal-wrapper a {
    color: #A87CE6 !important;
  }
  #mobileServerless.modal .modal-wrapper,
#mobileServerless.modal .modal-content,
#mobileServerless.modal .modal-content .box {
    max-height: 1000px !important;
  }
  #mobileServerless.modal .page p.lead {
    font-size: 21px;
  }
  #mobileServerless.modal .page p:first-of-type {
    font-size: 16px !important;
  }
  .serverless-guide-sidebar .label {
    display: none;
  }
  .serverless-guide-sidebar a.button {
    color: #0E092D;
    font-size: 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    padding: 0.333rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1125rem;
    transition: all 0.3s ease-in-out;
  }
}
.card-example-list .card {
  display: flex;
  font-size: 1rem !important;
  height: 12rem;
  overflow-y: hidden;
  flex-direction: column;
  background: #f9ebff;
  padding: 1.333rem;
  border-radius: 1.333rem;
  overflow: hidden;
  border: 1px solid #dbbfeb;
  transition: background 0.5s ease-in-out 0;
  transition: border-color 0.3s ease-in-out 0;
  z-index: 800;
  box-shadow: 0 0.25rem 0.333rem rgba(0, 0, 0, 0.05);
}
.card-example-list .card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 2rem;
  transition: all 0.5s ease-in-out 0.15s;
}
.card-example-list .card header .category {
  background-color: white;
  display: inline-block;
  border-radius: 0.67rem;
  padding: 0.15rem 0.67rem;
  margin: 0 0 0 -0.25rem;
  color: #213762;
  font-size: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #384687;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  letter-spacing: 0.05rem;
  opacity: 1;
  transition: all 0.5s ease-in-out 0.15s;
}
.card-example-list .card header .category svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  fill: #384687;
  opacity: 0.8;
}
.card-example-list .card header .icon {
  width: 20px;
  height: 20px;
}
.card-example-list .card header .icon path {
  stroke: black;
}
.card-example-list .card article {
  margin-top: 1rem;
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 600;
  transition: margin-top 0.5s ease-in-out 0.25s;
  overflow-y: hidden;
}
.card-example-list .card article h3 {
  font-weight: 500;
  font-size: 1.2rem;
  color: #0E092D;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.35;
  margin: 0.25rem 0 1rem;
  padding: 0 !important;
  letter-spacing: 0.035rem;
  display: -webkit-box;
  overflow-y: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.5em;
}
.card-example-list .card .summary {
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-weight: 400;
  color: #282F55;
  transition: opacity 0.5s ease-in-out 0.25s;
  letter-spacing: 0.05rem;
}
.card-example-list .card .tags {
  font-size: 0.75rem;
  position: absolute;
  bottom: 1.33rem;
  left: 1.25rem;
  right: 1.25rem;
  overflow: hidden;
}
.card-example-list .card .tags span {
  padding: 0.2rem;
  margin-right: 0.5rem;
  color: #8967C2;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  letter-spacing: 0.0825rem;
  line-height: 1.21538rem;
}
.card-example-list .card:hover {
  border-color: #A87CE6;
  background: #fcf3ff;
}
.card-example-list .card:hover header {
  opacity: 0;
  transform: translateY(-2rem);
  max-height: 0;
  margin: 0;
}
.card-example-list .card:hover header .category {
  opacity: 0.2;
}
.card-example-list .card:hover article {
  flex-grow: 0;
  margin-top: -0.5rem;
  max-height: 8.2rem;
}
.card-example-list .card:hover .summary {
  max-height: 200px;
  flex-grow: 1;
  opacity: 1;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.dark-theme body .card-example-list a.card {
  background: #202644 !important;
  border-color: #744cb7;
  color: white;
}
.dark-theme body .card-example-list a.card:hover {
  border-color: #A87CE6;
  background: linear-gradient(105deg, rgb(56, 44, 81) 0%, rgb(37, 31, 58) 100%) !important;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
}
.dark-theme body .card-example-list a.card .category {
  color: #E7D3F2;
  background-color: #39245b !important;
}
.dark-theme body .card-example-list a.card .category svg {
  fill: #E7D3F2;
}
.dark-theme body .card-example-list a.card .summary {
  color: white !important;
}
.dark-theme body .card-example-list a.card .tags span {
  color: #bd9cec;
}
.dark-theme body .card-example-list a.card article {
  color: white;
}
.dark-theme body .card-example-list a.card article h3 {
  color: white;
}

@keyframes squish {
  0% {
    width: 0px;
    margin: 0 12px;
    border-left: 2px solid #5168ae;
  }
  19% {
    border-left: 2px solid transparent;
  }
  38% {
    width: 26px;
    margin-left: 0;
  }
  57% {
    border-left: 2px solid transparent;
  }
  76% {
    width: 0px;
    margin: 0 12px;
    border-left: 2px solid #5168ae;
  }
}
.ripple-animation {
  min-width: 654px;
}
.ripple-animation span {
  display: block;
  position: absolute;
  z-index: 175;
  width: 26px;
  height: 26px;
  display: inline-block;
  transform: rotate(45deg);
}
.ripple-animation span img {
  width: 1px;
  height: 26px;
  margin: 0 12px;
  border-left: 2px solid #5168ae;
  display: inline-block;
  animation-name: squish;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: 2s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}
.ripple-animation .r1 {
  top: 0.5vw;
}
.ripple-animation .r2 {
  top: 4.5vw;
}
.ripple-animation .r3 {
  top: 8.5vw;
}
.ripple-animation .r4 {
  top: 12.5vw;
}
.ripple-animation .r5 {
  top: 16.5vw;
}
.ripple-animation .r6 {
  top: 20.5vw;
}
.ripple-animation .r7 {
  top: 24.5vw;
}
.ripple-animation .r8 {
  top: 28.5vw;
}
.ripple-animation .r9 {
  top: 32.5vw;
}
.ripple-animation .r10 {
  top: 36.5vw;
}
.ripple-animation .r11 {
  top: 40.5vw;
}
.ripple-animation .r12 {
  top: 44.5vw;
}
.ripple-animation .c1 {
  left: -0.75vw;
}
.ripple-animation .c2 {
  left: 3.25vw;
}
.ripple-animation .c3 {
  left: 7.25vw;
}
.ripple-animation .c4 {
  left: 11.25vw;
}
.ripple-animation .c5 {
  left: 15.25vw;
}
.ripple-animation .c6 {
  left: 19.25vw;
}
.ripple-animation .c7 {
  left: 23.25vw;
}
.ripple-animation .c8 {
  left: 27.25vw;
}
.ripple-animation .c9 {
  left: 31.25vw;
}
.ripple-animation .c10 {
  left: 35.25vw;
}
.ripple-animation .s1 img {
  animation-delay: 1.2s;
}
.ripple-animation .s2 img {
  animation-delay: 1.6s;
}
.ripple-animation .s3 img {
  animation-delay: 2s;
}
.ripple-animation .s4 img {
  animation-delay: 2.4s;
}
.ripple-animation .s5 img {
  animation-delay: 2.8s;
}
.ripple-animation .s6 img {
  animation-delay: 3.2s;
}
.ripple-animation .s7 img {
  animation-delay: 3.6s;
}
.ripple-animation .s8 img {
  animation-delay: 4s;
}
.ripple-animation .s9 img {
  animation-delay: 4.4s;
}
.ripple-animation .s10 img {
  animation-delay: 4.8s;
}
.ripple-animation .s11 img {
  animation-delay: 5.2s;
}
.ripple-animation .s12 img {
  animation-delay: 5.6s;
}
.ripple-animation .s13 img {
  animation-delay: 6s;
}
.ripple-animation .s14 img {
  animation-delay: 6.4s;
}
.ripple-animation .s15 img {
  animation-delay: 6.8s;
}
.ripple-animation .s16 img {
  animation-delay: 7.2s;
}
.ripple-animation .s17 img {
  animation-delay: 7.6s;
}
.ripple-animation .s18 img {
  animation-delay: 8s;
}
.ripple-animation .s19 img {
  animation-delay: 8.4s;
}
.ripple-animation .s20 img {
  animation-delay: 8.8s;
}

/* highlight.js css */
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #abb2bf;
  background: #282c34;
}

.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}

.hljs-doctag,
.hljs-formula,
.hljs-keyword {
  color: #c678dd;
}

.hljs-deletion,
.hljs-name,
.hljs-section,
.hljs-selector-tag,
.hljs-subst {
  color: #e06c75;
}

.hljs-literal {
  color: #56b6c2;
}

.hljs-addition,
.hljs-attribute,
.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #98c379;
}

.hljs-attr,
.hljs-number,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-template-variable,
.hljs-type,
.hljs-variable {
  color: #d19a66;
}

.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-symbol,
.hljs-title {
  color: #61aeee;
}

.hljs-built_in,
.hljs-class .hljs-title,
.hljs-title.class_ {
  color: #e6c07b;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: 700;
}

.hljs-link {
  text-decoration: underline;
}

body {
  /* klaro cookie consent banner
  https://github.com/kiprotect/klaro */
}
body .klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: white !important;
  min-width: 100% !important;
  padding: 2.5rem 5rem !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  font-size: 1.125rem;
  color: #0E092D;
  float: left;
  margin: 1.5rem 0;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p strong {
  color: #0E092D !important;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p a {
  color: #8967C2 !important;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  position: absolute;
  left: 6rem !important;
  bottom: 2rem !important;
  color: #8967C2;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button {
  border-radius: 2rem !important;
  font-size: 1rem !important;
  padding: 0.5rem 1.5rem !important;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  color: white;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn.cm-btn-success {
  background-color: #34E8BD !important;
  color: #0D203F !important;
}
body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cn-decline {
  background-color: transparent;
  color: #0E092D !important;
  border: 1px solid #0E092D;
}
body .klaro .cookie-modal .cm-modal .cm-header h1 {
  color: #0E092D;
}

@media screen and (max-width: 550px) {
  #topbar.navbar a.navbar-item {
    text-align: center;
    display: block;
  }
  #topbar.navbar a.dropdown-item {
    text-align: center !important;
  }
  body #projects:after {
    display: none !important;
  }
  body #projects p.lead {
    font-size: 1rem !important;
  }
  body #projects .button {
    margin-left: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    font-size: 1.125rem !important;
    font-weight: 700;
    position: relative !important;
    top: auto !important;
    left: auto !important;
  }
  .homepage #projects.platform-intro {
    min-height: 50vh;
  }
  .homepage #projects.platform-intro:after {
    display: none !important;
  }
  .homepage #projects.platform-intro h3 {
    font-size: 1rem !important;
  }
  .homepage #projects.platform-intro h2 {
    font-size: 1.25rem !important;
    margin: 1rem 0 1rem !important;
  }
  .homepage #projects.platform-intro img {
    display: none;
  }
  .spin-2-banner {
    padding: 1rem 1.5rem 2.5rem !important;
    border-radius: 0.5rem;
  }
  .spin-2-banner img {
    position: relative;
    margin: 1rem auto;
    left: auto;
    top: auto;
  }
  #platform-intro {
    background: url("../image/platform-intro-light.svg") no-repeat 12.5% 20vh !important;
    background-size: 75% !important;
  }
  #platform-intro,
#platform-features {
    padding-left: 5%;
    padding-right: 5%;
    min-height: 50vh !important;
  }
  #platform-intro .platform-intro-btn a,
#platform-features .platform-intro-btn a {
    top: auto;
    left: auto;
    margin-left: 0;
    position: relative;
    margin-top: -3rem;
    font-size: 1.25rem !important;
  }
  #platform-intro h1,
#platform-features h1 {
    margin-top: 3.5em !important;
    font-size: 1.75rem !important;
    margin-bottom: 2.5em !important;
  }
  #platform-intro h2,
#platform-features h2 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  #cta {
    padding-bottom: 2.5rem;
  }
  #cta:before {
    margin: 1.5rem auto;
  }
  #cta h4 {
    margin-bottom: 1rem;
  }
  #cta .box {
    margin: 1rem 2.5vw !important;
  }
  .container {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
  .page {
    padding-right: 3.5vw;
    padding-left: 3.5vw;
  }
  .page.page-sales {
    padding-left: 0;
    padding-right: 0;
  }
  .page p:first-of-type,
.blog p:first-of-type {
    font-size: 1.125rem !important;
    padding-right: 0;
  }
  .page h1,
.blog h1 {
    font-size: 1.75rem !important;
    margin: 0.5rem 0 !important;
  }
  .page h2,
.blog h2 {
    font-size: 1.5rem !important;
    margin: 2.5rem 0 1rem !important;
  }
  .page h3,
.blog h3 {
    font-size: 1.33rem !important;
  }
  .page p,
.blog p {
    padding-right: 0;
    font-size: 1rem !important;
    line-height: 1.825;
  }
  .page li,
.blog li {
    font-size: 1rem !important;
    line-height: 1.825;
  }
  article.page p {
    font-size: 1rem;
  }
  .modal .modal-content {
    max-width: 80rem;
    width: 92vw;
  }
  .modal .modal-content h2 {
    font-size: 1.25rem;
    padding-right: 0;
  }
  .modal .modal-content blockquote {
    font-size: 1rem;
  }
  footer ul {
    margin: 1rem 0;
  }
  footer .footer-nav .navbar .navbar-item {
    display: inline-block;
    padding: 0 2rem 0 0;
  }
  .about-page {
    text-align: center;
  }
  .about-page .about-team-list {
    max-width: 100% !important;
  }
  .about-page .about-team-list .about-team-item {
    position: relative;
  }
  .about-page .about-team-list .about-team-item .card-content h2 {
    font-size: 1rem;
  }
  .about-page .about-team-list .about-team-item .card-content p {
    font-size: 0.875rem;
  }
  .about-page .about-team-list .about-team-item .card-content:after {
    display: none !important;
  }
  .container.about-sub-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.about-sub-page .hero-intro h1, .container.about-sub-page .hero-intro p {
    max-width: 100%;
  }
  .container.about-sub-page .hero-intro h1 {
    padding-top: 2rem;
  }
  .container.about-sub-page .hero-intro #rtcWindow {
    max-height: 80vh;
  }
  .container.about-sub-page .hero-intro #rtcWindow .rtc-wrapper {
    max-height: 72.5vh;
    position: relative;
    z-index: 1400;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile {
    display: inline-block;
    min-width: 30vw !important;
    min-height: 3vw;
    padding: 0.3rem 0.75vw 31%;
    max-width: 30vw !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile p {
    bottom: 0;
    font-size: 0.75rem;
    left: 0;
    right: 0;
    opacity: 0.8;
  }
  aside.menu {
    left: auto;
    top: auto;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) {
    padding: 1.5rem 2rem !important;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons, body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-ok {
    width: 100% !important;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button, body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-ok button {
    font-size: 0.925rem !important;
    padding: 0.5rem !important;
    min-width: 45% !important;
  }
}
@media screen and (max-width: 871px) {
  .homepage {
    min-height: 50vh;
    position: relative;
    overflow-x: hidden;
  }
  .homepage #intro section {
    max-width: 84%;
    padding: 4.5rem 8% 1rem;
    margin: 0 auto;
    margin-left: auto;
    left: 50%;
    margin-left: -42%;
    position: absolute;
  }
  .homepage #intro .intro-text {
    min-height: 28rem;
    height: auto !important;
    z-index: 100;
    margin-top: 5rem;
  }
  .homepage #intro .intro-text .intro-bg-wrap {
    min-height: 40rem;
    height: auto !important;
    margin-right: 0;
    border-radius: 0 0 4rem 0;
  }
  .homepage #intro .intro-text:after {
    background-size: cover;
    background-position: 80% 0%;
    border-radius: 3vw !important;
    top: 8.5vw;
    left: 50%;
    margin-left: -44vw;
    width: 88vw;
    min-height: 25rem;
    overflow: hidden;
    z-index: 87;
  }
  .homepage #intro .intro-text h1 {
    font-size: 1.5rem;
    letter-spacing: 0.075rem;
    font-weight: 500;
    font-family: "Space Grotesk", sans-serif;
    margin: -1rem auto 1rem;
  }
  .homepage #intro .intro-text h2 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.075rem;
    margin: 2rem auto 2.5rem;
    line-height: 1.75;
  }
  .homepage #intro .intro-text h1, .homepage #intro .intro-text h2 {
    max-width: 75vw;
    margin-left: auto;
    margin-right: auto;
  }
  .homepage #intro .intro-text .buttons {
    text-align: center;
    width: 100%;
  }
  .homepage #intro .intro-text .buttons .button {
    margin: 0 auto;
  }
  .homepage #intro .intro-shapes {
    display: none;
  }
  .homepage #spin-story {
    padding-top: 0;
    padding-bottom: 40px;
    height: auto;
  }
  .homepage #spin-story .spin-github {
    margin-bottom: 4.25rem;
  }
  .homepage #spin-story .spin-sticky-cards {
    height: auto;
    margin-bottom: 0 !important;
  }
  .homepage #spin-story .spin-sticky-cards .card {
    top: auto;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left {
    height: 7.5rem;
    margin-right: 0;
    background-position: 0% 15%;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left .card-content {
    padding: 1.333rem 1.5rem 0;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left code.bubble {
    font-size: 0.825rem;
    min-width: 2.1rem;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left code.bubble.bubble-command {
    width: auto;
  }
  .homepage #spin-story .spin-sticky-cards .card.card-left h4 {
    font-size: 1.333rem;
    margin: 0.75rem 0;
  }
  .homepage #spin-story .spin-sticky-cards-3 .card-left {
    background-size: 250%;
    background-position: 10% 5% !important;
  }
  .homepage #spin-story .spin-sticky-cards-1,
.homepage #spin-story .spin-sticky-cards-2,
.homepage #spin-story .spin-sticky-cards-3 {
    opacity: 1 !important;
  }
  .homepage #cloud-story {
    height: auto;
    padding-top: 3rem;
    min-height: 1300px;
    background-position: center -250%;
  }
  .homepage #cloud-story .cloud-ui {
    max-width: 386px;
    margin: 2rem auto 4rem;
    overflow: hidden;
    border-radius: 1.67rem;
    background-position: 0 0;
    background: #182A51;
    box-shadow: 0 0 20px #0e092d;
  }
  .homepage #cloud-story .cloud-ui img {
    position: relative;
    margin-top: -14px;
  }
  .homepage .projects-title h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    max-width: 80vw;
    margin: 1rem auto;
  }
  .homepage .projects-title h3 {
    font-size: 0.825rem;
    line-height: 2;
  }
  .homepage .projects-title h3 code {
    font-size: 0.75rem;
  }
  .homepage .projects-title h3 em {
    position: relative;
    display: inline-block;
    left: auto;
    top: auto;
    margin: 0 1rem 0 0;
  }
  .homepage #why-fermyon {
    min-height: 1000px;
    padding-bottom: 15px;
  }
  .homepage #why-fermyon .values-size {
    padding-top: 4rem;
  }
  .homepage #why-fermyon .values-size h2 {
    font-size: 1.425rem;
    margin-bottom: 18rem;
  }
  .homepage #why-fermyon .values-size .next-wave {
    right: 13%;
    top: 390px;
  }
  .homepage #why-fermyon .values-size .second-wave {
    right: 82.5%;
  }
  .homepage #why-fermyon .values-size .second-wave .wave-label-big {
    top: 240px;
    right: -27%;
  }
  .homepage #why-fermyon .values-features.values-trio .column::after {
    display: none;
  }
  .homepage #why-fermyon .values-features.values-trio img {
    max-width: 20%;
    margin: 2rem auto 1rem;
  }
  .homepage #why-fermyon .values-features h2 {
    font-size: 1.33rem;
  }
  .homepage #why-fermyon .values-cold-start {
    max-width: 372px;
    overflow: hidden;
  }
  .homepage #why-fermyon .values-cold-start section {
    min-height: 34rem;
    margin: 0;
    max-width: 100%;
    background-size: cover;
  }
  .homepage #why-fermyon .values-cold-start section .scale {
    width: 90%;
    padding: 1rem 0;
    min-height: 30rem;
    left: auto;
    margin: 0 auto;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside {
    top: 1.5rem;
    left: 0;
    right: -0.25rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside:nth-child(2) {
    top: 13rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar:before {
    font-size: 7pt;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar em:after {
    content: "Exec";
    font-size: 7pt;
    padding: 0.2rem 0.5rem;
    line-height: 3.75;
    width: 4.25rem;
    left: 14.5rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale aside .bar.bar-spin em:after {
    left: 0.5rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale .timing {
    font-size: 7pt;
    padding: 0 0.5rem 0.15rem;
  }
  .homepage #why-fermyon .values-cold-start section .scale .timing:after {
    top: -26rem;
  }
  .homepage #why-fermyon .values-cold-start section h1 {
    display: none;
  }
  .homepage #why-fermyon .values-cold-start section h1.lamda-caption {
    display: block;
    font-size: 1.2rem;
    top: 24.25rem;
    width: 100%;
    left: auto;
    text-align: center;
  }
  .homepage #why-fermyon .bg-pattern.bg-pattern-bottom {
    display: none;
  }
  .homepage #why-fermyon .cta-landing-top,
.homepage #why-fermyon .cta-landing-bottom {
    width: 94% !important;
    margin-left: 3% !important;
    margin-right: 3% !important;
    padding: 1.25rem 1.4rem;
  }
  .homepage #why-fermyon .cta-landing-top h1,
.homepage #why-fermyon .cta-landing-bottom h1 {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    text-align: center;
  }
  .homepage #why-fermyon .cta-landing-top p,
.homepage #why-fermyon .cta-landing-bottom p {
    font-size: 0.925rem;
  }
  .homepage #why-fermyon .cta-landing-top .buttons,
.homepage #why-fermyon .cta-landing-bottom .buttons {
    margin: 0 auto 2rem;
  }
  .homepage #why-fermyon .cta-landing-bottom {
    margin: 3rem auto 5rem !important;
  }
  .buttons {
    text-align: center;
    width: 100%;
  }
  .buttons .button {
    margin: 0 auto;
  }
  .buttons .button + .button {
    margin-top: 0.67rem !important;
  }
  .feature-page .buttons a.button {
    margin-right: auto !important;
    margin-left: auto !important;
    min-width: 80vw !important;
  }
  .page-news .card.press-release {
    text-align: left;
  }
  .page-news .card.press-release .card-content span.title {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .page-news section.news-item a {
    padding: 0 1.2rem;
    text-align: left;
  }
  .page-news section.news-item a span.date, .page-news section.news-item a span.source {
    position: relative;
    left: auto;
    top: auto;
  }
  .page-news section.news-item a span.title {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .page-news section.news-item a:after {
    display: none;
  }
  footer .footer-links-wrap a {
    font-size: 0.825rem;
  }
}
@media screen and (min-width: 551px) and (max-width: 871px) {
  body {
    overflow-x: hidden;
  }
  #topbar.navbar a.navbar-item {
    text-align: center;
    display: block;
  }
  #topbar.navbar .navbar-menu .button {
    min-height: 4.5rem;
    min-width: 10rem;
    margin: 0 5vw 2rem 5vw;
  }
  #topbar.navbar a.dropdown-item {
    text-align: center !important;
  }
  #intro {
    min-height: 67vh !important;
  }
  #intro h1 {
    font-size: 2rem !important;
    margin-top: 1.5rem !important;
  }
  #intro h2 {
    font-size: 1.25rem !important;
  }
  #intro:after {
    display: none !important;
  }
  #projects:after {
    display: none !important;
  }
  #projects h2 {
    margin-bottom: 0rem !important;
  }
  #projects p.lead {
    font-size: 1rem !important;
    margin-left: 35% !important;
  }
  #projects .home-platform-img {
    max-width: 20% !important;
    left: -12% !important;
    top: 45% !important;
  }
  #projects .button {
    font-size: 1rem !important;
  }
  #news .news-sticky-one {
    background-image: none !important;
    padding-right: 0 !important;
  }
  #community .tile {
    flex-direction: column;
    min-width: 100%;
  }
  .platform-page #platform-intro {
    background: url("../image/platform-intro-light.svg") no-repeat 0 33vh !important;
    background-size: fit;
  }
  .platform-page #platform-intro,
.platform-page #platform-features {
    padding-left: 5%;
    padding-right: 5%;
    min-height: 87.25vh;
  }
  .platform-page #platform-intro .platform-intro-btn a,
.platform-page #platform-features .platform-intro-btn a {
    top: auto;
    left: auto;
    margin-left: 0;
    position: relative;
    margin-top: -8rem;
  }
  .platform-page #platform-intro h1,
.platform-page #platform-features h1 {
    margin-top: 0.5em !important;
    margin-bottom: 2.5em !important;
  }
  .platform-page .platform-intro-img {
    background-image: none !important;
  }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  article.blog {
    padding-top: 0 !important;
  }
  .about-page .about-team-list {
    max-width: 100% !important;
  }
  .container.about-sub-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.about-sub-page .hero-intro h1, .container.about-sub-page .hero-intro p {
    max-width: 85%;
  }
  .container.about-sub-page .hero-intro #rtcWindow {
    max-height: 80vh;
  }
  .container.about-sub-page .hero-intro #rtcWindow .rtc-wrapper {
    max-height: 72.5vh;
    padding: 0.2rem 0 inherit !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow .rtc-wrapper .tile.is-ancestor {
    padding: 0.5rem 1rem;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile {
    display: inline-block;
    min-width: 45vw;
    min-height: 30vw;
    padding: 0.3rem 0.75vw 41vw !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile p {
    bottom: 0;
    font-size: 0.75rem;
    left: 0;
    right: 0;
    opacity: 0.8;
  }
  aside.menu {
    left: auto;
    top: auto;
  }
  html.dark-theme > body #platform-intro {
    background: url("../image/platform-intro-dark.svg") no-repeat 0 33vh !important;
  }
}
@media screen and (min-width: 872px) and (max-width: 1023px) {
  body {
    overflow-x: hidden;
  }
  #projects h2,
#projects .card {
    margin-top: 0 !important;
  }
  .homepage {
    overflow-x: hidden;
  }
  #news .news-sticky.news-sticky-one {
    padding-right: 12%;
    background-image: none;
  }
  #news .news-sticky h3 {
    font-size: 1.333rem;
  }
  #news .news-sticky p {
    font-size: 1.125rem;
  }
  .values-cold-start {
    min-width: 940px;
    transform: scale(0.75);
    margin-left: -16.5%;
  }
  #platform-intro h1 {
    margin-top: 10.5vh !important;
  }
  #platform-intro .platform-intro-img {
    right: 0 !important;
  }
  #community .tile.is-ancestor {
    flex-direction: column;
  }
  #community .tile.is-8 {
    width: 100%;
  }
  .container {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  article.blog {
    padding-top: 0 !important;
  }
  .about-page .about-team-list {
    max-width: 100% !important;
  }
  .container.about-sub-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container.about-sub-page .hero-intro h1, .container.about-sub-page .hero-intro p {
    max-width: 85%;
  }
  .container.about-sub-page .hero-intro #rtcWindow {
    max-height: 78vh !important;
  }
  .container.about-sub-page .hero-intro .rtc-wrapper {
    max-height: 67.5vh;
    min-width: 100%;
  }
  .container.about-sub-page .hero-intro .rtc-chat {
    background: none transparent !important;
    z-index: -12;
    width: 100% !important;
    left: 0;
  }
  .container.about-sub-page .hero-intro .rtc-chat section,
.container.about-sub-page .hero-intro .rtc-chat form,
.container.about-sub-page .hero-intro .rtc-chat section.chat-header {
    display: none !important;
  }
  .container.about-sub-page .hero-intro .rtc-chat .modal.team-bio.is-active {
    position: absolute !important;
    z-index: 1222 !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile {
    display: inline-block;
    min-width: 18vw;
    min-height: 18vw;
    padding-bottom: 17vw !important;
  }
  .container.about-sub-page .hero-intro #rtcWindow figure.tile p {
    font-size: 0.75rem;
    bottom: 0;
    padding: 0.5rem 0;
    left: 0;
    right: 0;
    opacity: 0.8;
  }
  aside.menu {
    left: auto;
    top: auto;
  }
  #topbar.navbar a.navbar-item {
    text-align: center;
    display: block;
  }
  #topbar.navbar .navbar-menu .button {
    min-height: 4.5rem;
    min-width: 10rem;
    margin: 0 5vw 2rem 5vw;
  }
}
@media screen and (max-width: 1023px) {
  body {
    overflow-x: hidden !important;
  }
  body .announcement-banner a:after {
    width: 80vw;
    margin-left: -40vw;
  }
  body .announcement-banner .stars li {
    opacity: 0.5;
  }
  body #topbar.navbar.headroom--not-top.headroom--pinned {
    height: 108px;
    min-height: 108px;
  }
  body #topbar.navbar.headroom--not-top.headroom--pinned .navbar-wrapper {
    height: 104px;
  }
  body #topbar.navbar.headroom--not-top.headroom--pinned .navbar-wrapper .logo-wrap .logo {
    margin: 28px 0 0 8px;
  }
  body #topbar.navbar .navbar-wrapper {
    width: calc(100% - 0.5rem);
  }
  body #topbar.navbar .navbar-item {
    line-height: 1.5;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  body #topbar.navbar .navbar-item a.dropdown-item {
    font-size: 1rem;
    text-transform: none;
    text-align: center;
  }
  body #topbar.navbar .navbar-item.logo-wrap .logo {
    margin: -4px 0 0 8px;
  }
  body #topbar.navbar .navbar-menu .navbar-item {
    margin-left: 0 !important;
  }
  body #topbar.navbar .navbar-menu.is-active {
    padding-bottom: 2.25rem;
  }
  body #topbar.navbar .navbar-menu .button {
    min-height: 3.65rem;
    min-width: 7.5rem;
    margin: 1rem 5% !important;
  }
  body #topbar.navbar a.dark-mode {
    margin: 0 auto;
    display: block;
  }
  body #events-list .card {
    min-height: 5rem;
  }
  body #events-list .card h2 {
    margin: 1rem 1.25rem 0 !important;
  }
  body .event-page-wrap #events-menu {
    padding-top: 0 !important;
  }
  body .event-page-wrap #event-intro-kubecon24 {
    height: 265px !important;
  }
  body .event-page-wrap #event-intro-kubecon24::before {
    min-height: 265px !important;
    background-size: cover;
    background-position: 3vw 0vw;
  }
  body .event-page-wrap #kubecon-announcement {
    padding: 0 1rem;
  }
  body .event-page-wrap h4 {
    font-size: 0.925rem;
  }
  body nav.product-submenu,
body .event-page-wrap #events-menu nav {
    flex-direction: column;
    display: block;
    justify-content: space-between;
    border: 1px solid rgba(128, 147, 241, 0.5);
    border-radius: 1rem;
    padding: 1rem 2vw;
    margin: 5rem auto 0;
  }
  body nav.product-submenu span.is-flex,
body .event-page-wrap #events-menu nav span.is-flex {
    display: block !important;
  }
  body nav.product-submenu a,
body .event-page-wrap #events-menu nav a {
    display: block !important;
  }
  body #project-intro .columns {
    margin-top: 3rem;
  }
  body #project-intro h1 {
    font-size: 2rem;
  }
  body #project-intro h2 {
    font-size: 1.25rem;
  }
  body .feature-page .page .buttons a.button {
    margin: 0.5rem auto !important;
  }
  body .feature-page .page .img-wrap,
body .feature-page .page .video-wrap {
    margin-left: -8vw !important;
    margin-right: -8vw !important;
    margin-bottom: 2rem;
    max-width: 125% !important;
    min-width: 100% !important;
  }
  body .feature-page .page .img-wrap iframe,
body .feature-page .page .img-wrap img,
body .feature-page .page .video-wrap iframe,
body .feature-page .page .video-wrap img {
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    margin: 0 !important;
    right: auto !important;
    left: auto !important;
  }
  body .feature-page .page .img-wrap iframe,
body .feature-page .page .video-wrap iframe {
    max-height: 50vw !important;
    margin-top: 0.8rem !important;
  }
  body .feature-page .page .feature-value {
    padding-bottom: 4rem;
  }
  body .feature-page .feature-testimonial {
    padding-bottom: 4rem;
    margin-top: 5rem;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok {
    display: inline-block;
  }
  body .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok .cn-buttons {
    margin-top: -0.25rem;
    margin-bottom: 2rem;
  }
  body #rtcWindow {
    overflow: hidden;
  }
  body #rtcWindow section,
body #rtcWindow form,
body #rtcWindow section.chat-header {
    display: none !important;
  }
  body #rtcWindow > .rtc-wrapper, body .rtc-chat {
    transition: all 0.3s ease-in-out;
    margin-left: 0;
  }
  body #rtcWindow > .rtc-chat {
    margin-left: auto;
    margin-right: -100%;
  }
  body #rtcWindow.chat-active .rtc-wrapper {
    margin-left: -67% !important;
    position: relative;
  }
  body #rtcWindow.chat-active .rtc-wrapper .touch-toggle {
    position: absolute;
    z-index: 2200;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #0D203F;
    display: block;
    min-height: 1800vh;
    opacity: 0.67;
  }
  body #rtcWindow.chat-active .rtc-chat {
    position: absolute;
    left: 33% !important;
    right: 0 !important;
    width: 67% !important;
    margin-right: 0;
  }
  body #rtcWindow.chat-active .team-bio.is-active .modal-close {
    display: none !important;
  }
  body .platform-page #platform-intro {
    background: transparent !important;
    background-image: none !important;
    height: 762px;
  }
  body footer {
    z-index: 720;
  }
  body footer .footer-wrap {
    padding: 4rem 1rem 0 !important;
  }
  body footer .footer-actions-wrap h3 {
    font-size: 1rem;
  }
  body footer .footer-social {
    text-align: center;
    padding-top: 0;
  }
  body footer .footer-social a {
    margin: 0 0.5rem !important;
  }
  body footer .footer-logo {
    display: none;
  }
  body .youtube-video-container {
    min-height: 250px;
  }
  body #features-and-examples .projects-title,
body #features-and-examples .list-features {
    padding-left: 5vw;
  }
  body #features-and-examples ul.list-features li a {
    font-size: 1rem;
  }
  body #features-and-examples .card-list .card-overflow {
    padding-bottom: 1rem;
    overflow-x: scroll;
    touch-action: pan-x;
    cursor: move;
  }
  body .feature-page-bottom-shade {
    padding-bottom: 5rem;
  }
  html.dark-theme > body aside.menu {
    padding: 1rem 1.5rem;
    background-color: #112b54;
    left: 0;
  }
  html.dark-theme > body .hero-intro .navbar-menu a.navbar-item {
    color: #0D203F !important;
  }
  html.dark-theme > body .hero-intro .navbar-menu a.navbar-item.button {
    background-color: #34E8BD;
    color: #0D203F;
    border: none;
  }
  html.dark-theme > body .event-page-wrap #event-intro-kubecon24::before {
    background: url(/static/image/kubecon-header.jpg) no-repeat 3vw 0vw !important;
    background-size: cover !important;
  }
  html.dark-theme > body #rtcWindow .rtc-chat section a {
    color: white;
    font-weight: bold;
  }
  html.dark-theme > body .platform-page #platform-intro {
    background: transparent !important;
    background-image: none !important;
    height: 762px;
  }
}
@media screen and (min-width: 1024px) {
  main {
    padding: 5.25rem 0 0 !important;
  }
  .announcement-banner + #topbar.navbar {
    top: 46px !important;
  }
  body .klaro .cookie-notice .cn-body p {
    max-width: 67%;
  }
  .feature-grid .feature-grid-item:after {
    display: block;
    content: "";
    right: 0;
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(128, 147, 241, 0.2);
  }
  .feature-grid .feature-grid-item:nth-child(3n):after {
    display: none;
  }
  .feature-grid .feature-grid-item.feature-grid-item-stacked:before {
    background: rgba(128, 147, 241, 0.2);
    display: block;
    content: "";
    left: 0;
    right: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
  }
  #spin-story + #features-and-examples {
    margin: -12rem auto 0;
  }
}
/* 1. 
   Website Layout
*/
html {
  height: 100%;
  border-radius: 1.5rem;
}

:root,
html {
  background-color: #0E092D;
  padding-bottom: 0.25rem;
}

body {
  background: #f7f4f8;
  min-height: 100vh;
  position: relative;
  margin: 0 0.25rem 1rem;
  border-radius: 1.5rem !important;
  font-family: "Work Sans", Europa, Avenir, system, -apple-system, ".SFNSText-Regular", "San Francisco", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
}

main {
  min-height: 100vh;
  background: transparent;
  z-index: 150;
  margin-bottom: 0 !important;
}

.page-wrap {
  min-height: 90vh;
}

.columns {
  margin-left: auto;
  margin-right: auto;
}

aside.menu,
.page > .navbar-menu {
  font-size: 1.2rem;
}
aside.menu div.menu-label,
.page > .navbar-menu div.menu-label {
  padding-left: 1.333vw;
}
aside.menu a,
.page > .navbar-menu a {
  padding: 0.6rem 1.25vw;
  margin-bottom: 0rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
aside.menu a:hover,
.page > .navbar-menu a:hover {
  color: #BEA7E5;
}
aside.menu a.button,
.page > .navbar-menu a.button {
  line-height: 2.333;
  margin-top: 1.5rem;
  padding: 0 1.25vw;
  font-size: 1.125rem;
  background: transparent;
  border: 2px solid #34E8BD;
}
aside.menu a.button:hover,
.page > .navbar-menu a.button:hover {
  background-color: #34E8BD;
  color: white;
}
@media screen and (min-width: 1024px) {
  aside.menu.is-fixed-desktop,
.page > .navbar-menu.is-fixed-desktop {
    position: fixed;
    left: 5vw;
    top: 12rem;
  }
}
@media screen and (max-width: 1023px) {
  aside.menu.is-fixed-desktop,
.page > .navbar-menu.is-fixed-desktop {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
}

#cta {
  text-align: center;
  background: linear-gradient(180deg, transparent -0.02%, rgba(167, 123, 230, 0.25) 100%);
  padding: 0 0 5rem;
  background-position: center 50% bottom 100% !important;
  background-size: contain !important;
  position: relative;
  z-index: 1300;
}
#cta:before {
  position: relative;
  width: 12.5%;
  display: inline-block;
  margin: 7.5rem auto 4.5rem;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}
#cta h4 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto 2rem;
  color: #0D203F;
  font-family: "Space Grotesk", sans-serif;
}
#cta .button {
  color: #0D203F;
  background: #34E8BD;
  margin: 1rem auto;
  border: none;
  font-family: "Space Grotesk", sans-serif;
  transition: all 0.3s ease-in-out;
}
#cta .button:hover {
  background-color: #1de5b6;
}
#cta .button.is-primary:hover {
  color: #0D203F !important;
  background-color: #29e7b9 !important;
}
#cta .button.button-cta {
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  font-family: "Space Grotesk", sans-serif;
}

.page-center .page h1,
.page-center .page h2,
.page-center .page h3,
.page-center .page p {
  padding-right: 0;
}

.page {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}
.page h1 {
  font-size: 3rem;
  letter-spacing: 0.075rem;
  margin: 2.67rem 0 0;
  padding-right: 12.5%;
  line-height: 1.425;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  color: #0E092D;
}
.page h2 {
  font-size: 2rem;
  margin-top: 4rem;
}
.page h3 {
  margin-top: 3rem;
}
.page p {
  padding-right: 3.5vw;
  line-height: 1.636;
}
.page p:first-of-type {
  font-size: 1.12em;
  line-height: 1.775;
  padding-right: 10%;
  margin-top: 1.333rem;
}
.page p code {
  border-radius: 0.33rem !important;
  background: #e9e1eb;
  color: #345995;
}
.page p strong {
  color: #0D203F;
}
.page .has-text-centered h1,
.page .has-text-centered h2,
.page .has-text-centered h3,
.page .has-text-centered h4,
.page .has-text-centered h5,
.page .has-text-centered p,
.page .has-text-centered blockquote,
.page .has-text-centered hr,
.page .has-text-centered hr:after {
  margin-left: auto;
  margin-right: auto;
  padding-right: 0;
}
.page .card {
  border-radius: 1.1rem;
  margin-bottom: 1rem;
}
.page .card + .card {
  margin-top: 1.5rem;
}
.page .card p {
  margin-top: 0;
}
.page .card ul,
.page .card li {
  font-size: 1rem;
  line-height: 2;
}
.page .card .card-header + .card-content {
  padding-top: 0;
}
.page .card.is-bright {
  border: none !important;
  outline: 2px solid #A87CE6;
}
.page .card.is-bright .card-header {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  color: #0E092D;
  border: none;
  outline: none;
  box-shadow: none;
}
.page .card.is-bright .card-header h1.card-header-title,
.page .card.is-bright .card-header h2.card-header-title,
.page .card.is-bright .card-header h3.card-header-title,
.page .card.is-bright .card-header h4.card-header-title,
.page .card.is-bright .card-header p.card-header-title {
  padding: 1.5rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.page .card.is-bright .card-header p.card-header-title {
  font-size: 1.125rem;
  font-weight: normal;
  font-weight: 500 !important;
}
.page .card.is-bright .card-header p.card-header-title.uppercase {
  font-size: 1rem;
  line-height: 1.33;
}
.page .card.is-bright .card-content {
  font-size: 1rem;
  color: #0E092D;
}
.page .card.is-bright .card-content p,
.page .card.is-bright .card-content ul,
.page .card.is-bright .card-content li {
  font-size: 1rem;
  color: #0E092D;
}
.page .card.is-bright .card-content .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  background-color: #34E8BD;
  font-size: 0.925rem !important;
  margin: 1rem auto !important;
}
.page .card.is-bright .card-content .button a {
  color: #0E092D !important;
  font-size: 1rem !important;
}
.page .card.is-bright.is-solid {
  border: none !important;
  outline: none;
}
.page .card.is-bright.is-solid .card-header {
  color: #0E092D;
}
.page .card.is-bright.is-solid .card-header .card-header-title h1,
.page .card.is-bright.is-solid .card-header .card-header-title h2,
.page .card.is-bright.is-solid .card-header .card-header-title h3,
.page .card.is-bright.is-solid .card-header .card-header-title h4,
.page .card.is-bright.is-solid .card-header .card-header-title p {
  color: #0E092D;
}
.page .card.is-bright.is-solid p {
  color: #0E092D !important;
}
.page .card.is-bright.is-solid p.has-text-white {
  color: white !important;
}
.page .card.is-bright.is-solid .card-content {
  color: #0E092D;
}
.page .card.is-bright.is-solid .card-content a,
.page .card.is-bright.is-solid .card-content p > a {
  color: #116455;
  background: transparent;
  border-radius: 0.1rem;
}
.page .card.is-bright.is-solid .card-content a:hover,
.page .card.is-bright.is-solid .card-content p > a:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
}
.page .card.is-bright.is-solid .card-content.has-text-white > a, .page .card.is-bright.is-solid .card-content.has-text-white p > a {
  color: #34E8BD !important;
}
.page .card.is-bright.is-solid.is-purple {
  background: url("../image/gradient-spin-right-1.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
.page .card.is-bright.is-solid.is-blue {
  background: url("../image/gradient-spin-right-2.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
.page .card.is-bright.is-solid.is-green {
  background: url("../image/gradient-spin-right-3.jpg") no-repeat 0 0 !important;
  background-size: cover !important;
}
.page .card.is-outlined.is-purple {
  background: url("../image/gradient-spin-left-2.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #E7D3F2;
}
.page .card.is-outlined.is-blue {
  background: url("../image/gradient-spin-left-1.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #8093F1;
}
.page .card.is-outlined.is-green {
  background: url("../image/gradient-spin-left-3.jpg") no-repeat 0 0;
  background-size: cover !important;
  outline: 2px solid #C5FFF1;
}
.page.page-contact h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
}
.page.page-contact form {
  border-radius: 1rem;
  box-shadow: 0px 19px 2rem rgba(14, 9, 45, 0.6);
  background-color: rgba(168, 124, 230, 0.1) !important;
  padding: 2rem 3rem 0;
}
.page.page-contact form input {
  border-radius: 0.5rem;
}
.page.page-contact form .button {
  color: #0E092D;
  font-size: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  padding: 0.333rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2rem;
}
.page.page-sales {
  max-width: 68rem;
}
.page.page-sales p.lead {
  line-height: 1.5;
  margin: 2.5rem 3.5% 5rem;
  font-size: 1.25rem;
}
.page.page-sales .card-content p {
  margin: 1.5rem 0 0;
  line-height: 1.3;
  display: block;
  font-size: 1.25rem;
}
.page.page-sales .card iframe {
  background: transparent;
  border: none;
  margin: 0 auto;
}
.page form input.frmsprk-custom {
  display: none;
}
.page pre,
.page code {
  margin-left: 0;
  border-radius: 0.67rem;
  background-color: #0D203F;
  background-image: linear-gradient(135deg, #0D203F 0%, #10274d 100%);
  color: white;
  font-size: 0.925rem;
}
.page pre code.hljs,
.page code code.hljs {
  padding: 0 !important;
}
.page pre code.hljs .hljs-meta,
.page code code.hljs .hljs-meta {
  color: #34E8BD;
}
.page code {
  border-radius: 0 !important;
}
.page pre {
  margin-bottom: 2.5rem;
}
.page iframe {
  max-width: 100%;
  min-width: 100%;
}
.page .youtube-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 315px;
}
.page .youtube-video-container:after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.page .youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page blockquote > blockquote p,
.page aside p {
  line-height: 1.8;
  border: 1px solid #D9DBE8;
  font-size: 1.2rem;
  background: #F9F7EE;
  padding: 1.25rem 1.5rem !important;
  margin: 2.5em auto 5rem;
  text-align: left;
  border-radius: 0.667rem;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  color: #0D203F;
}
.page blockquote {
  padding: 0rem 0 !important;
  margin: 0 !important;
}
.page blockquote p {
  color: #081f24;
  color: #345995;
  font-size: 1.1rem !important;
  line-height: 2;
  padding-right: 0 !important;
  border-left: 4px solid #D9DBE8;
  background: #f4f0f5;
  padding: 0.65rem 5% 0.65rem 2rem !important;
  margin: 1rem auto 1rem !important;
  text-align: left;
}
.page .footnote-definition sup {
  float: left;
  display: inline-block;
  padding: 0 1rem 1rem 0;
}
.page .footnote-definition sup + p {
  display: inline-block;
  max-width: 92.5%;
  margin: 0;
  font-size: 0.95rem !important;
}
.page p img {
  margin: 2rem auto;
}
.page img[align=left] {
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.page img[align=right] {
  margin-left: 2rem;
  margin-bottom: 2rem;
}
.page blockquote img {
  margin-top: 0;
  display: block;
}
.page blockquote a:after {
  display: none;
}
.page blockquote + p {
  margin-top: 3rem;
}
.page table {
  background-color: white;
  min-width: 100%;
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-collapse: collapse;
  border-radius: 0.333em;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
}
.page table th,
.page table td {
  padding: 0.67vw 2vw;
  border-bottom: 1px solid #BEA7E5;
  line-height: 1.5;
}
.page table th {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0D203F;
  background-color: #F9F7EE;
  line-height: 1.75;
  border-bottom: 1px solid #BEA7E5;
}
.page table td {
  font-size: 1rem;
  border-bottom-color: #ECE5EE;
}
.page table tr:last-of-type td {
  border: none;
}
.page ol,
.page ul {
  margin: 0 0 2.5rem 0.25rem;
  list-style-position: outside;
}
.page ol li,
.page ul li {
  font-size: 1rem;
  line-height: 1.825;
  margin-top: 0.667rem;
  margin-bottom: 0.667rem;
}

article.page {
  min-height: 15rem;
}
article.page h1 {
  margin-bottom: 2em;
}
article.page p {
  font-size: 1.25rem;
}

.page-news {
  max-width: 100%;
  padding-top: 0;
}
.page-news h1 {
  margin: 0 0 2rem;
}
.page-news h3 {
  margin-bottom: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: normal;
}
.page-news .news-sidebar .card:first-of-type {
  margin-top: 7.33rem;
}
.page-news .news-sidebar .card p {
  padding-right: 0;
}
.page-news .press-release-wrap {
  padding: 1rem 0 1rem;
}
.page-news .card.press-release {
  margin-right: 1rem;
  margin-bottom: 1.25rem;
}
.page-news .card.press-release.is-outlined.is-purple {
  background: url("../image/bg-intro-panel-right.jpg") no-repeat right 0;
  background-size: 300% !important;
  border: 1px solid #E7D3F2 !important;
}
.page-news .card.press-release .card-content a {
  color: #C5FFF1 !important;
}
.page-news .card.press-release .card-content p,
.page-news .card.press-release .card-content .title {
  font-size: 1.125rem;
  line-height: 1.33;
  font-weight: 400 !important;
}
.page-news .card.press-release .card-content .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  color: #0E092D !important;
}
.page-news section.news-item {
  margin: 0 0 1rem;
}
.page-news section.news-item p {
  margin: 0;
  padding: 0;
}
.page-news section.news-item a {
  display: block;
  padding: 3rem 1.25rem 0.825rem 8rem;
  position: relative;
  background-color: white;
}
.page-news section.news-item a:after {
  width: 1px !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6.5rem;
  content: " ";
  display: block;
  background-color: white;
  height: auto;
  opacity: 1;
}
.page-news section.news-item a span {
  display: inline-block;
}
.page-news section.news-item a span.source {
  position: absolute;
  top: -1.8rem;
  left: 0.1rem;
  color: #6944a8;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}
.page-news section.news-item a span.title {
  margin-bottom: 0.67rem;
  font-weight: 500;
}
.page-news section.news-item a span.date {
  position: absolute;
  top: -1.75rem;
  left: -6.67rem;
  color: #4964eb;
  letter-spacing: 0.01em;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
}
.page-news section.news-item a span.url {
  font-size: 1rem;
  color: #E7D3F2;
  opacity: 0.67;
  line-height: 1.3;
}
.page-news section.news-item a:hover span.url {
  opacity: 1;
  color: white;
}

hr.page-break {
  position: relative;
  text-align: center;
  height: 4rem;
  background: transparent;
}
hr.page-break:after {
  position: relative;
  width: 12.5%;
  display: inline-block;
  margin: 3.5rem auto 4.5rem;
  content: " ";
  height: 0.33rem;
  background: #BEA7E5;
  -webkit-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  -moz-border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
  border-radius: 0.33rem 0.33rem 0.33rem 0.33rem;
}
hr.page-break.is-centered:after {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.about-page {
  max-width: 100% !important;
}
.about-page + #cta {
  z-index: 700 !important;
}
.about-page article.page {
  max-width: 67rem;
}
.about-page .about-team-list {
  max-width: 80% !important;
}
.about-page .about-team-list .about-team-item {
  position: relative;
}

.about-sub-page {
  max-width: 100%;
  width: 100%;
}
.about-sub-page .about-page-wrap {
  max-width: 100%;
}
.about-sub-page h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4rem;
  margin: 1rem auto 1rem !important;
  color: #070c16;
  position: relative;
  z-index: 121;
  padding-right: 0;
}
.about-sub-page h1:first-of-type {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.about-sub-page p {
  font-size: 1rem;
  position: relative;
  z-index: 125;
  padding-right: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.about-sub-page p:first-of-type {
  padding-right: 0;
}
.about-sub-page article.page.content {
  margin-top: 5rem !important;
  z-index: 25;
  position: relative;
}
.about-sub-page article.page.content h1:first-of-type {
  margin: -2rem auto 4rem !important;
}
.about-sub-page.team-page article.page.content {
  background: none !important;
  background-color: transparent !important;
}
.about-sub-page.legal-page article.page.content {
  max-width: 58rem !important;
}
.about-sub-page.legal-page article.page.content .card {
  min-height: 182px;
}
.about-sub-page.legal-page article.page.content .card .card-content a {
  color: #E7D3F2;
  font-size: 1.25rem;
  line-height: 2.25;
}
.about-sub-page.legal-page article.page.content .card form {
  margin: 1rem 7.5vw 0;
}
.about-sub-page.legal-page article.page.content .breadcrumb {
  margin-bottom: 5.5rem;
}
.about-sub-page.legal-page article.page.content h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #E7D3F2;
}
.about-sub-page.legal-page article.page.content .legal-toc {
  background-color: #0b0722;
  border-radius: 1rem;
  margin: 0 0 5rem;
  padding: 1rem 1.5rem 0.25rem;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}
.about-sub-page.legal-page article.page.content .legal-toc p {
  margin: 0 0 0.67rem;
  font-family: "Space Grotesk", sans-serif;
}
.about-sub-page.legal-page article.page.content .legal-toc ul {
  margin: 0.5rem 0;
}
.about-sub-page.legal-page article.page.content .legal-toc ul ul {
  margin-left: 1rem;
}
.about-sub-page.legal-page article.page.content .legal-toc li {
  margin: 0;
  line-height: 1.4;
  list-style: none;
  font-size: 0.925rem !important;
}
.about-sub-page.legal-page article.page.content .legal-toc li a {
  color: white;
}
.about-sub-page.legal-page article.page.content .legal-toc li a:hover {
  color: #34E8BD;
}
.about-sub-page.legal-page article.page.content .legal-subscribe-wrap {
  margin-top: 4rem;
}
.about-sub-page.legal-page article.page.content .legal-subscribe-wrap .card-content p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.about-sub-page.legal-page article.page.content .legal-subscribe-wrap .card-content .button {
  margin-top: 2rem;
}
.about-sub-page.legal-page h1,
.about-sub-page.legal-page p {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.about-sub-page.legal-page h1.has-text-center,
.about-sub-page.legal-page p.has-text-center {
  text-align: center;
}

.breadcrumb {
  border: 1px solid rgba(128, 147, 241, 0.333);
  border-radius: 2rem;
  padding: 0.25 1.5rem;
  display: inline-block;
}
.breadcrumb ul {
  margin: 0 1rem;
}
.breadcrumb ul li {
  margin-left: 0;
  font-size: 1rem !important;
}
.breadcrumb ul li a {
  color: #E7D3F2 !important;
}

.hero-intro {
  padding: 0 0 7.5rem;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-intro:after {
  width: 915px;
  height: 915px;
  display: block;
  content: "";
  left: 50%;
  margin-left: -457.5px;
  top: 120px;
  position: absolute;
  background: rgba(128, 147, 241, 0.17);
  z-index: -10;
  border-radius: 50%;
  filter: blur(305px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: scale(1.22);
  opacity: 0.67;
}
.hero-intro .navbar-menu {
  text-align: center;
  margin: 5rem auto 1rem;
  position: relative;
  font-weight: bold;
  z-index: 75;
  padding: 1rem 0;
  display: table;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.hero-intro .navbar-menu .navbar-item {
  margin: 0 1rem;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  border: none;
  color: #213762;
  transition: all 0.3s ease-in-out;
}
.hero-intro .navbar-menu .navbar-item.button {
  background-color: transparent;
  border: 1px solid #1F7A8C;
}
.hero-intro .navbar-menu .navbar-item:hover {
  background-color: #34E8BD;
  box-shadow: 0 0.33rem 1.75rem rgba(255, 255, 255, 0.27);
  color: #0D203F;
}

#rtcWindow {
  border-radius: 1rem;
  background: rgb(31, 31, 31);
  background: linear-gradient(90deg, rgb(31, 31, 31) 0%, rgba(29, 24, 42, 0.98) 100%);
  min-width: 90vw;
  display: inline-block;
  margin: 0 5vw 4rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.125);
  text-align: center;
  padding: 3.5rem 0 0;
  position: relative;
  z-index: 50;
  height: 37rem;
  position: relative;
  /* Works on Firefox */
  /* Works on Chrome, Edge, and Safari */
}
#rtcWindow * {
  scrollbar-width: thin;
  scrollbar-color: #213762 #0D203F;
}
#rtcWindow *::-webkit-scrollbar {
  width: 12px;
}
#rtcWindow *::-webkit-scrollbar-track {
  background: #0D203F;
}
#rtcWindow *::-webkit-scrollbar-thumb {
  background-color: #0D203F;
  border-radius: 20px;
  border: 3px solid #213762;
}
#rtcWindow .rtc-wrapper {
  height: 33rem;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -2.75rem !important;
  border-radius: 0.5rem;
  padding: 0.2rem 0 !important;
}
#rtcWindow .rtc-wrapper .tile.is-ancestor {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 1rem !important;
  align-items: left;
  align-content: space-between;
  justify-content: left;
  overflow: hidden;
}
#rtcWindow .rtc-chat {
  position: absolute;
  right: 0.25rem;
  top: 3.25rem;
  height: 33rem;
  bottom: 0.25rem;
  overflow-x: hidden;
  overflow-y: scroll;
  width: 18%;
  background: #41295a;
  background: -webkit-linear-gradient(to right, #2F0743, #41295a);
  background: linear-gradient(to right, #2F0743, #41295a);
  border-radius: 0.67rem;
  border-radius: 0.5rem;
}
#rtcWindow .rtc-chat section {
  color: white;
  font-size: 0.925rem;
  text-align: left;
  line-height: 1.333;
  max-width: 100%;
  padding: 0.425rem 0.75rem;
  margin: 0.35rem 0.33rem;
  color: #0D203F;
  border-radius: 0.5rem;
  background-image: linear-gradient(to right, #6694e2, #7ba3e6 100%);
  display: table !important;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#rtcWindow .rtc-chat section a {
  color: #213762;
  border-bottom: 2px solid #0E8FDD;
}
#rtcWindow .rtc-chat section.chat-header {
  background: none;
  color: #BEA7E5;
  text-transform: uppercase;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.1rem;
  opacity: 0.5;
}
#rtcWindow .rtc-chat aside {
  border-radius: 0.67rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-bottom: 8.5rem;
  width: 100%;
}
#rtcWindow.chat-active .rtc-chat section {
  opacity: 0.02;
}
#rtcWindow form {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
}
#rtcWindow form input {
  border-radius: 0.67rem;
  border: none;
  background: rgba(29, 24, 42, 0.98);
  outline: none;
  line-height: 2;
  padding: 0.2rem 0.35rem;
  color: white;
  width: 100%;
}
#rtcWindow form input:hover, #rtcWindow form input:focus {
  background: rgba(7, 5, 10, 0.98);
}
#rtcWindow form button {
  position: absolute;
  bottom: 0.125rem;
  right: 0.125rem;
  width: 2.5rem;
  line-height: 2.5;
  color: #34E8BD;
  border: none;
  background: #213762;
  border-radius: 0.525rem;
  transition: all 0.3s ease-in-out;
}
#rtcWindow form button:hover {
  background: #525776;
}
#rtcWindow span {
  background-color: #ECE5EE;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3rem;
  display: block;
  border-radius: 1rem 1rem 0 0;
}
#rtcWindow span:before, #rtcWindow span:after {
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  background-color: #BEA7E5;
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: block;
  content: " ";
}
#rtcWindow span:before {
  right: 2.5rem;
  background-color: #EF946C;
}
#rtcWindow figure {
  position: relative;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  overflow: hidden;
  line-height: 1;
  padding: 0.3rem;
  margin-bottom: -0.15rem;
  height: 1px;
  padding-bottom: 15.75%;
  transition: all 0.3s ease-in-out;
}
#rtcWindow figure p {
  position: absolute;
  bottom: -3rem;
  left: 0.67rem;
  font-size: 0.825rem;
  border-radius: 0.25rem;
  letter-spacing: 0.075em;
  color: white;
  background: #14223c;
  padding: 0.5rem 0.67rem;
  transition: all 0.3s ease-in-out;
}
#rtcWindow figure img {
  object-fit: cover;
  border-radius: 0.2rem;
}
#rtcWindow figure:hover {
  border-color: #34E8BD;
  box-shadow: inset 0 5px 0 black;
  cursor: pointer;
}
#rtcWindow figure:hover p {
  bottom: 0;
}
#rtcWindow figure.huh {
  text-align: center;
}
#rtcWindow figure.huh a.add {
  display: block;
  min-height: 33vw;
  text-align: center;
}
#rtcWindow figure.huh p {
  font-size: 2rem !important;
  bottom: auto !important;
  opacity: 0.1;
  padding: 4.2rem 2.5rem;
  position: relative;
  position: absolute;
  top: 50%;
  right: auto !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
#rtcWindow figure.huh:hover p {
  opacity: 0.7;
}
#rtcWindow .team-bio {
  display: none;
}
#rtcWindow .team-bio.is-active {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 4rem !important;
  width: 100%;
  overflow-y: scroll;
  border-radius: 0.7rem;
}
#rtcWindow .team-bio.is-active section {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 2rem;
  padding-bottom: 0.67rem;
  opacity: 1 !important;
}
#rtcWindow .team-bio.is-active section p {
  font-size: 0.925rem;
  line-height: 1.5;
}
#rtcWindow .team-bio.is-active .modal-close {
  right: 0.5rem;
  top: 0.5rem;
}

aside.card.hiring {
  border-radius: 2rem;
  position: relative;
  z-index: 33;
}
aside.card.hiring .button {
  position: absolute;
  right: 8.5vw;
  top: 3.5rem;
  color: #0D203F !important;
}
aside.card.hiring .button:hover {
  background-color: #1FBCA0 !important;
  color: #0D203F;
  border-bottom: none;
}
aside.card.hiring .button:hover:after {
  display: none;
}

.page-lang p.backlink {
  display: block;
  margin-top: -5rem;
}

/* 
  1.4.
  Third Party Elements
*/
/* Hubspot Embed adjustments */
div#hs-eu-cookie-confirmation {
  top: auto !important;
  bottom: 0 !important;
}

.modal-background {
  background: #ECE5EE;
  opacity: 0.95;
}

.modal {
  z-index: 1500;
  min-height: 50vh;
}
.modal .modal-wrapper {
  max-height: 65vh;
  overflow-y: hidden;
}
.modal .modal-content {
  max-width: 50rem;
  width: 65vw;
}
.modal .modal-content .box {
  max-height: 95vh;
}
.modal .modal-content small {
  color: #1e4b94;
  display: inline-block;
  padding-left: 1.5rem;
  font-size: 1rem;
}
.modal .modal-close {
  position: absolute;
  right: 5vw;
  z-index: 2000;
}
.modal .modal-close:before, .modal .modal-close:after {
  background-color: #0A455A;
}
.modal h2 {
  font-weight: bold;
  color: #0D203F;
  font-size: 1.75rem;
  padding-right: 20%;
  margin: 1rem 1.5rem 3rem;
}
.modal .has-text-centered > h2,
.modal h2.has-text-centered {
  margin-right: auto;
  padding-right: 0;
}
.modal .blockquote {
  padding: 1rem;
  background: #e9eaf2;
  position: relative;
  line-height: 2;
  margin: 1rem 1vw 2rem;
  font-size: 1em;
  position: relative;
  -webkit-border-radius: 1rem 1rem 1rem 1rem;
  -moz-border-radius: 1rem 1rem 1rem 1rem;
  border-radius: 1rem 1rem 1rem 1rem;
}
.modal .blockquote svg {
  max-width: 2.5rem;
  float: left;
  margin: 1.5rem 1.67rem;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.modal .blockquote form {
  margin-top: 1.75rem;
  padding: 2rem 5vw;
  margin: 0 0 0 1rem;
}
.modal .blockquote form button.button {
  background-color: #EF946C !important;
  color: white;
  font-weight: bold;
}
.modal.modal-connect {
  min-height: 25rem;
}
.modal.modal-connect .modal-wrapper {
  overflow-x: hidden;
  padding-bottom: 2.5rem;
}
.modal.modal-connect a.connect-link {
  border-radius: 0.5rem;
  background-color: #ECE5EE;
  text-align: center;
  display: block;
  min-height: 7rem;
  padding: 2rem 0;
  box-shadow: 0 0.25rem 0 0 #D9DBE8;
  transition: all 0.3s ease-in-out;
}
.modal.modal-connect a.connect-link h3 {
  font-weight: bold;
  color: #213762;
  margin: 0 18.25% 0.5rem;
  line-height: 1.3;
}
.modal.modal-connect a.connect-link img {
  max-height: 3rem;
  width: auto;
  margin: 1rem auto 0;
}
.modal.modal-connect a.connect-link:hover {
  box-shadow: 0 0.375rem 0 0 #34E8BD;
}

small.caret {
  margin: -0.2rem 0 0 0.15rem;
  opacity: 0.5;
}

.external {
  position: relative;
}
.external:before, .external:after {
  position: absolute;
  top: 1em;
  right: 0;
  display: inline-block;
  content: " ";
  width: 0.5rem;
  height: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.external:before {
  border-right: 1px solid #1FBCA0;
  border-top: 1px solid #1FBCA0;
}
.external:after {
  position: absolute;
  top: 0.95em;
  right: 0.18em;
  display: inline-block;
  content: " ";
  width: 0.125rem;
  height: 0.75rem;
  border-left: 1px solid #1FBCA0;
  transform: rotate(45deg);
}
.external:hover:before, .external:hover:after {
  opacity: 1;
}

.button .external:before {
  top: 0em;
  right: -0.925em;
}
.button .external:after {
  top: -0.05em;
  right: -0.74em;
}

.read-more {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 100%;
  bottom: 0;
  display: block !important;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ECE5EE;
  -webkit-box-shadow: 0 2px 0 rgba(30, 30, 30, 0.25);
  -moz-box-shadow: 0 2px 0 rgba(30, 30, 30, 0.25);
  box-shadow: 0 2px 0 rgba(30, 30, 30, 0.25);
}
.read-more a {
  font-weight: bold;
  display: block;
  text-align: center;
  line-height: 2.67;
  background: white;
  transition: all 0.3s ease-in-out;
}
.read-more a:hover {
  background-color: #fcfbf6;
}

#projects {
  background: #2E3857;
  min-height: 75vh;
  padding-bottom: 5rem;
  position: relative;
  z-index: 30;
  position: relative;
  overflow-y: hidden;
  transition: all 0.3s ease-in-out;
}
#projects h3 {
  text-transform: uppercase;
  letter-spacing: 0.125em;
  margin: 4.5rem auto 0;
  color: #1FBCA0;
}
#projects h2 {
  margin: 1rem 0 5rem;
  font-size: 2rem;
}
#projects p.lead,
#projects p.link {
  font-size: 1.33rem;
  padding-right: 2.25vw;
  margin: 0 0 2rem;
  line-height: 1.825;
}
#projects .button {
  padding-left: 4rem;
  padding-right: 4rem;
  font-weight: bold;
  font-size: 1.5rem;
  color: #0D203F;
  background: #34E8BD;
  position: absolute;
  top: 40rem;
  left: 50%;
  margin-left: -7rem;
  min-width: 10rem;
  z-index: 225;
}
#projects .home-platform-img {
  min-width: 45%;
  position: absolute;
  z-index: 66;
}
#projects:after {
  display: block;
  background: linear-gradient(0, #2E3857 15%, #0D203F 100%);
  content: " ";
  position: absolute;
  top: 14.25rem;
  z-index: 10;
  right: 52.5%;
  width: 67%;
  min-height: 28.5rem;
  border-radius: 3rem;
}

#news small {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.067em;
  color: #c1b2da;
  font-weight: bold;
  font-size: 1.75rem;
  margin-top: 2rem;
  display: block;
}
#news h2 {
  color: #0b70ad;
  font-weight: bold;
  font-size: 1.5rem;
}
#news .box {
  box-shadow: none;
}
#news .news-sticky {
  background: #f3eff5;
  border-left: 8px solid #BEA7E5;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  outline: 2px solid rgba(255, 255, 255, 0.67);
  padding: 1rem;
}
#news .news-sticky.news-sticky-one {
  background: #f3eff4 url(../image/wasm-lang-table.png) no-repeat 75% 0%;
  background-size: cover;
  padding-right: 45%;
}
#news .news-sticky.news-sticky-two {
  border-color: #EF946C;
}
#news .news-sticky h3 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #0D203F;
  margin: 0.2rem 0 0.67rem;
}
#news .news-sticky p {
  font-size: 0.925rem;
  color: #0D203F;
}

#home_projects {
  padding-top: 7.5rem;
  padding-bottom: 8rem;
}
#home_projects small {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.067em;
  color: #c1b2da;
  font-weight: bold;
  font-size: 1.75rem;
  margin-top: 2rem;
  display: block;
}
#home_projects h2 {
  color: #0b70ad;
  font-weight: bold;
  font-size: 1.5rem;
}
#home_projects .box {
  box-shadow: none;
}
#home_projects .news-sticky {
  background: #f3eff5;
  border-left: 8px solid #BEA7E5;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  outline: 2px solid rgba(255, 255, 255, 0.67);
  padding: 1rem;
}
#home_projects .news-sticky.news-sticky-one {
  background: #f3eff4 url(../image/wasm-lang-table.png) no-repeat 75% 0%;
  background-size: cover;
  padding-right: 45%;
}
#home_projects .news-sticky.news-sticky-two {
  border-color: #EF946C;
}
#home_projects .news-sticky h3 {
  font-weight: bold;
  font-size: 1.125rem;
  color: #0D203F;
  margin: 0.2rem 0 0.67rem;
}
#home_projects .news-sticky p {
  font-size: 0.925rem;
  color: #0D203F;
}
#home_projects .news-blog-latest {
  max-height: 25rem;
  overflow-y: hidden;
  padding: 2rem 3vw;
  box-shadow: 0 3px 6px rgba(30, 30, 30, 0.125);
  position: relative;
}
#home_projects .news-blog-latest article {
  display: none;
  line-height: 1.2;
}
#home_projects .news-blog-latest article h1 {
  font-size: 2.25rem;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.3;
  color: #0D203F;
}
#home_projects .news-blog-latest article:first-of-type {
  display: block;
}
#home_projects .news-blog-latest article p,
#home_projects .news-blog-latest article ul,
#home_projects .news-blog-latest article ol,
#home_projects .news-blog-latest article h2,
#home_projects .news-blog-latest article h3,
#home_projects .news-blog-latest article h4 {
  display: none;
}
#home_projects .news-blog-latest article p {
  font-size: 1rem;
}
#home_projects .news-blog-latest article p:first-of-type, #home_projects .news-blog-latest article p:nth-child(2), #home_projects .news-blog-latest article p:nth-child(3), #home_projects .news-blog-latest article p:nth-child(4) {
  display: inline;
  margin-right: 1rem;
}
#home_projects .news-blog-latest article p.read-more {
  margin: 0;
  max-width: 100%;
}

#community {
  padding-top: 5rem;
}
#community h4 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  margin: 5rem 0 2rem;
}
#community .tile article {
  position: relative;
  z-index: 620;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 2rem;
}
#community .tile article:not(.box) {
  background-color: transparent !important;
  padding: 0 1rem !important;
}
#community .tile article p.title {
  font-weight: normal;
  color: #0E8FDD;
  margin: 0.75rem 0 2rem;
  line-height: 1.33;
  padding-right: 12.5%;
  font-size: 1.75rem !important;
}
#community .tile article p.subtitle {
  margin: 0.67rem 0 0.67rem;
  color: #777;
}
#community .tile article.community-intro {
  background-color: #0D203F !important;
  padding-right: 15%;
}
#community .tile article.community-intro p.title {
  font-weight: bold;
  color: #34E8BD;
  font-size: 2.25rem;
  margin-top: 1.5rem;
  line-height: 1.2;
}
#community .tile article.community-intro p.subtitle {
  color: white;
  font-size: 1.25rem;
}
#community .tile article .twitter-tweet {
  width: 100%;
  border: 1px solid rgba(30, 30, 30, 0.125);
  border-radius: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgb(15, 20, 25);
  font-size: 14px;
  line-height: 19px;
  padding: 5rem 1rem 1rem !important;
  position: relative;
  background: rgba(255, 255, 255, 0.925);
}
#community .tile article .twitter-tweet .r-1cvl2hr {
  color: rgb(29, 155, 240);
}
#community .tile article .twitter-tweet .twitter-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  max-width: 1.5rem;
  display: inline-block;
  color: rgb(29, 155, 240) !important;
}
#community .tile article .twitter-tweet .twitter-icon svg {
  color: rgb(29, 155, 240);
  fill: rgb(29, 155, 240);
}
#community .tile article .twitter-tweet section {
  width: 100%;
  border: 1px solid rgba(30, 30, 30, 0.25);
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 2rem 0 1.25rem;
  background: white;
}
#community .tile article .twitter-tweet section span {
  display: block;
  padding: 0.33rem 1rem 0;
}
#community .tile article .twitter-tweet section span.tweet-meta-cropped {
  max-height: 2rem;
  overflow: hidden;
}
#community .tile article .twitter-tweet section img.tweet-website-preview {
  min-width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin-top: 3rem;
}
#community .tile article .twitter-tweet section.tweet-subtweet aside img {
  max-width: 1.25rem;
}
#community .tile article .twitter-tweet section.tweet-subtweet aside span {
  padding: 0 1rem 0 0;
  display: inline;
}
#community .tile article .twitter-tweet section p.tweet-embedded-subtweet {
  margin: 0.25rem 0 1rem;
}
#community .tile article .twitter-tweet a:hover:after {
  display: none;
}
#community .tile article .twitter-tweet aside {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-height: 4rem;
}
#community .tile article .twitter-tweet aside span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgb(15, 20, 25);
  font-size: 14px;
  line-height: 21px;
  display: inline-block;
  min-width: 55%;
}
#community .tile article .twitter-tweet aside span.twitter-name {
  font-weight: bold;
}
#community .tile article .twitter-tweet aside img {
  max-width: 3rem;
  float: left;
  margin: 0 1rem 2rem 0;
  border-radius: 50%;
}
#community .tile article .twitter-tweet p {
  font-size: 14px !important;
  line-height: 19px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: rgb(15, 20, 25);
}

.homepage + #cta {
  margin-top: -2rem;
  position: relative;
  z-index: 135;
}

.platform-page h4 {
  text-transform: uppercase;
  letter-spacing: 0.125em;
}
.platform-page #platform-intro {
  min-height: 91vh;
  max-width: 100%;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(0deg, #FCF5FF 0%, #FDF8FF 100%);
}
.platform-page #platform-intro h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin: 22vh 0 2rem 0;
  max-width: 33rem;
  line-height: 1.2;
}
.platform-page #platform-intro h1 span {
  position: relative;
  display: inline-block;
  z-index: 220;
}
.platform-page #platform-intro h1 span:before {
  position: absolute;
  bottom: 0.4em;
  left: -0.125em;
  right: -0.125em;
  height: 1rem;
  background-color: rgba(190, 167, 229, 0.33);
  display: block;
  content: " ";
  z-index: -1;
}
.platform-page #platform-intro p {
  margin: 1rem 0 2rem;
}
.platform-page #platform-intro .platform-intro-img {
  background: url("../image/platform-intro-light.svg") no-repeat 0 0;
  background-size: fit;
  width: 100%;
  min-height: 91vh;
}
.platform-page #platform-intro a.button {
  color: #0D203F !important;
  font-weight: bold;
  font-size: 1.33rem;
  background: #34E8BD;
  margin-right: 0.5rem;
}
.platform-page #platform-intro a.button svg {
  margin-right: 1rem;
}
.platform-page #platform-intro a.button.is-secondary {
  background: #ECE5EE !important;
}
.platform-page #platform-intro a.button.is-link {
  background: transparent !important;
  color: #0E8FDD !important;
}
.platform-page #platform-features {
  background-color: white;
  max-width: 100%;
  padding: 7.5rem 3vw 5rem;
}
.platform-page #platform-features .platform-features-list {
  position: relative;
  z-index: 320;
}
.platform-page #platform-features .platform-features-list:after {
  position: absolute;
  bottom: -1rem;
  left: -0.5rem;
  right: -0.5rem;
  min-height: 27.5rem;
  display: block;
  content: " ";
  z-index: -1;
  border-radius: 2rem;
  opacity: 0.075;
  background: linear-gradient(0deg, #eae2f6 0%, #fffeff 100%);
}
.platform-page #platform-features h2 {
  line-height: 1.4;
}
.platform-page #platform-features p.lead {
  font-size: 1.125rem;
  margin: 2rem 0 4.5rem;
  line-height: 1.636;
}
.platform-page #platform-features h4 {
  color: #9a76d6;
  margin: 0 auto 3rem;
}
.platform-page #platform-features .box {
  background-color: white;
  border-radius: 1.67rem;
  position: relative;
  z-index: 350;
  height: 100%;
  min-height: 24.25vw;
  max-height: 24rem !important;
  padding-top: 5rem;
  position: relative;
}
.platform-page #platform-features .box h3 {
  border-bottom: 3px solid rgba(175, 175, 175, 0.25);
  padding: 1.25rem 5% 1rem;
  margin: 0 0 0.75rem;
  display: block;
  color: #0E092D;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
}
.platform-page #platform-features .box img {
  display: inline-block;
  margin: 2rem auto;
  padding: 0 15%;
}
.platform-page #platform-features .box p {
  display: block;
  color: #0A455A;
  font-size: 1rem;
  letter-spacing: -0.025rem;
}

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