@charset "UTF-8";
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin: 0;
  padding: 0;
}
/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p, figure, dl, dd {
  margin-block-end: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"], ol[role="list"] {
  list-style: none;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}
/* Balance text wrapping on headings */
h1, h2, h3, h4 {
  text-wrap: balance;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
:root {
  --light-green: #3DFFCF;
  --light-blue: #239ED7;
  --dark-blue: #026286;
  --alt-dark-blue: #044B66;
  --discord: #5865F2;
  --white: #FFFFFF;
  -off-white: #EEFFFF;
}
body {
  --body-background: #FFFFFF;
  --alt-background: #EEFFFF;
  --heading: var(--dark-blue);
  --subtitle: var(--light-blue);
  --body: var(--dark-blue);
  --accent: var(--dark-blue);
  --nav: var(--light-blue);
}
body.dark-mode {
  --body-background: #01435B;
  --alt-background: #044B66;
  --heading: var(--white);
  --subtitle: var(--light-green);
  --body: var(--white);
  --accent: var(--light-green);
  --nav: var(--white);
}
:root {
  font-size: 18px;
}
@media (max-width: 1200px) {
  :root {
    font-size: 17px;
  }
}
@media (max-width: 400px) {
  :root {
    font-size: 16px;
  }
}
::-moz-selection {
  /* Code for Firefox */
  background: #3dffce6e;
  color: var(--dark-blue);
}
::selection {
  background: var(--light-green);
  color: var(--dark-blue);
}
body {
  font-family: "Kanit", sans-serif;
  color: var(--body);
  font-weight: 300;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 600;
}
h1 {
  font-size: 3.4rem;
}
@media (max-width: 700px) {
  h1 {
    font-size: 2.8rem;
  }
}
h2 {
  font-weight: 500;
  font-size: 2.2rem;
}
h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
.subtitle {
  color: var(--subtitle);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.button {
  background: var(--light-green);
  color: var(--dark-blue);
  font-weight: 400;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  transition: 200ms;
  display: inline-block;
  padding: 0.6rem 1.5rem;
  margin-top: 0.65rem;
}
.button.button-large {
  font-size: 1.1rem;
  padding: 0.8rem 1.6rem;
}
.button.button-dark {
  background: var(--dark-blue);
  color: var(--white);
}
.button.button-discord {
  background: var(--discord);
  color: var(--white);
}
.button:hover {
  background: var(--light-blue);
  color: var(--white);
}
.text-center {
  text-align: center;
}
body {
  background: var(--body-background);
}
.container {
  max-width: 1360px;
  padding: 0 2rem;
  margin: auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 1.5rem;
  }
}
.container.container-narrow {
  max-width: 1000px;
}
.particles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
*:focus {
  outline-color: var(--light-green);
}
@keyframes floating {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-5px);
  }
}
#masthead {
  padding: 1.5rem 0;
  z-index: 200;
  position: relative;
}
#masthead #mega-menu-wrap-primary-menu #mega-menu-primary-menu .contact-us a {
  background: var(--light-green);
  padding: 0rem 1rem;
  border-radius: 5px;
}
#masthead #mega-menu-wrap-primary-menu .mega-toggle-blocks-right {
  margin-right: -0.6rem;
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: white;
}
body.dark-mode header#masthead, body.single-story header#masthead, body.single-post header#masthead {
  background: var(--body-background);
}
body.dark-mode .mega-menu-logo, body.single-story .mega-menu-logo, body.single-post .mega-menu-logo {
  filter: brightness(0) invert(1);
}
body.dark-mode #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item:not(.contact-us) > a.mega-menu-link, body.single-story #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item:not(.contact-us) > a.mega-menu-link, body.single-post #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item:not(.contact-us) > a.mega-menu-link {
  color: var(--white);
}
body.dark-mode #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current_page_item:not(.contact-us) > a.mega-menu-link, body.single-story #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current_page_item:not(.contact-us) > a.mega-menu-link, body.single-post #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item.mega-current_page_item:not(.contact-us) > a.mega-menu-link {
  color: var(--subtitle);
}
body.dark-mode #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner, body.dark-mode #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:before, body.dark-mode #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:after, body.single-story #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner, body.single-story #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:before, body.single-story #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:after, body.single-post #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner, body.single-post #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:before, body.single-post #mega-menu-wrap-primary-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner:after {
  background-color: var(--white);
}
body.single header#masthead, body.home header#masthead {
  background: transparent !important;
}
footer#footer {
  padding: 4rem 0 0;
  background: var(--alt-dark-blue);
  margin-top: 4rem;
}
footer#footer .container {
  display: flex;
  gap: 4rem;
}
@media (max-width: 900px) {
  footer#footer .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
footer#footer .brand svg path {
  fill: #fff;
}
footer#footer nav {
  flex: 1 0;
}
footer#footer nav h2 {
  margin: 0 0 1.5rem;
  font-weight: 600;
  font-size: 1.35rem;
  color: #fff;
}
footer#footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer#footer nav ul li {
  margin-top: 0.6rem;
}
footer#footer nav a {
  text-decoration: none;
  transition: 200ms;
  color: #fff;
}
footer#footer nav a:hover {
  color: var(--subtitle);
}
footer#footer nav .current-menu-item a {
  color: var(--subtitle);
  font-weight: 400;
}
footer#footer .buttons > a {
  display: block;
  max-width: 400px;
  margin: 0 auto 1rem;
}
footer#footer .buttons .social {
  display: flex;
  justify-content: right;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}
footer#footer .buttons .social svg {
  width: 2rem;
  height: 2rem;
}
footer#footer .buttons .social svg path {
  fill: #fff;
  transition: 300ms;
}
footer#footer .buttons .social .twitter:hover path {
  fill: #1DA1F2;
}
footer#footer .buttons .social .linkedin:hover path {
  fill: #0077B5;
}
footer#copyright {
  overflow: visible;
  padding: 3rem 0 3rem;
  position: relative;
  text-align: center;
  background: var(--alt-dark-blue);
}
footer#copyright p {
  color: #fff;
}
body.dark-mode footer#footer {
  background: var(--light-green);
}
body.dark-mode footer#footer .brand svg path {
  fill: var(--alt-dark-blue);
}
body.dark-mode footer#footer nav h2, body.dark-mode footer#footer nav a {
  color: var(--alt-dark-blue);
}
body.dark-mode footer#footer .buttons .social svg path {
  fill: var(--alt-dark-blue);
}
body.dark-mode footer#footer .buttons .button-large:not(.button-discord) {
  background: var(--alt-dark-blue);
  color: #fff;
}
body.dark-mode footer#footer .particles {
  filter: hue-rotate(275deg) invert(1) brightness(0.3);
}
body.dark-mode footer#copyright {
  background: var(--light-green);
}
body.dark-mode footer#copyright p {
  color: var(--alt-dark-blue);
}
.single-glossary main {
  padding: 4rem 0 0;
}
.single-glossary main .container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.single-glossary article {
  min-width: 500px;
  margin-bottom: 3rem;
  flex: 1 0;
}
.single-glossary article h1 {
  margin: 0;
}
@media (max-width: 600px) {
  .single-glossary article {
    min-width: 300px;
  }
}
.single-glossary aside {
  min-width: 500px;
  flex: 1 0;
}
.single-glossary aside h2 {
  margin: 0;
}
.single-glossary aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.single-glossary aside ul li {
  background: var(--alt-background);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.single-glossary aside ul li h3 {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
}
.single-glossary aside ul li p {
  flex: 1 0;
}
.single-glossary aside ul li a {
  color: var(--subtitle);
  text-align: right;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: block;
}
@media (max-width: 600px) {
  .single-glossary aside {
    min-width: 300px;
  }
}
.single-header {
  background: var(--alt-dark-blue);
  padding: 24rem 0 8rem;
  margin: -20rem 0 4rem;
  position: relative;
  background-size: cover;
  background-position: center center;
}
.single-header .container {
  text-align: center;
}
.single-header h1 {
  color: #fff;
}
.single-header p {
  color: #fff;
  opacity: 0.9;
  margin-top: 2rem;
  font-size: 1.2rem;
}
.single-header .particles {
  z-index: 0;
}
.single-header:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #044B66 30%, rgba(4, 75, 102, 0.5));
  z-index: 1;
  content: "";
}
section.all-posts {
  padding-bottom: 2rem;
}
section.all-posts .post-grid {
  display: grid;
  grid-gap: 2.5rem;
  margin: 3rem 0;
}
@media screen and (min-width: 768px) {
  section.all-posts .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  section.all-posts .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
section.all-posts .post-grid .post-meta {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}
section.all-posts .post-grid img {
  border-radius: 10px;
}
section.all-posts .post-grid a {
  text-decoration: none;
}
section.all-posts .post-grid h2 {
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
section.callout-box {
  padding: 5rem 0;
  margin: 3rem 0;
  background: var(--alt-background);
  position: relative;
  overflow: hidden;
}
section.callout-box:before, section.callout-box:after {
  width: 100px;
  height: 100px;
  content: "";
  transform: rotate(45deg);
}
section.callout-box:before {
  background: var(--body-background);
  position: absolute;
  top: -50px;
  left: -50px;
}
section.callout-box:after {
  background: var(--body-background);
  position: absolute;
  bottom: -50px;
  right: -50px;
}
section.callout-box .container {
  display: flex;
  gap: 6rem;
  align-items: center;
}
section.callout-box .container h2 {
  margin: 0 0 3rem 0;
  width: 100% !important;
}
section.callout-box .container > * {
  width: calc(50% - 1.5rem);
}
section.callout-box .container .text {
  position: relative;
}
section.callout-box .container .text .icon {
  background: var(--dark-blue);
  display: inline-block;
  width: 180px;
  height: 160px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}
section.callout-box .container .text .icon i {
  font-size: 100px;
  color: #fff;
}
section.callout-box .container .text h2:first-child, section.callout-box .container .text h2:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 800px) {
  section.callout-box .container {
    flex-direction: column;
    gap: 3rem;
  }
  section.callout-box .container .text {
    width: 100%;
  }
}
body.dark-mode section.callout-box .icon {
  background: var(--light-green) !important;
}
body.dark-mode section.callout-box .icon i {
  color: var(--alt-background) !important;
}
section.case-studies-extra {
  padding: 6rem 0;
  margin: 3rem 0;
  background: linear-gradient(124deg, #3DFFCF 16.54%, #0097D4 112.18%);
  position: relative;
  overflow: hidden;
}
section.case-studies-extra:before, section.case-studies-extra:after {
  width: 100px;
  height: 100px;
  content: "";
  transform: rotate(45deg);
}
section.case-studies-extra:before {
  background: var(--body-background);
  position: absolute;
  top: -50px;
  left: -50px;
}
section.case-studies-extra:after {
  background: var(--body-background);
  position: absolute;
  bottom: -50px;
  right: -50px;
}
section.case-studies-extra .section-title {
  margin-bottom: 3rem;
}
section.case-studies-extra .section-title .subtitle, section.case-studies-extra .section-title h2 {
  margin: 0;
  color: var(--dark-blue);
}
section.case-studies-extra .slide {
  display: flex;
  gap: 6rem;
}
section.case-studies-extra .slide a {
  text-decoration: none;
}
section.case-studies-extra .slide img {
  border-radius: 10px;
  aspect-ratio: 1.3333333333;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
section.case-studies-extra .slide h3 {
  margin: 0 0 2rem 0;
  width: 100% !important;
}
section.case-studies-extra .slide > * {
  width: calc(50% - 1.5rem);
}
section.case-studies-extra .slide .text {
  position: relative;
}
section.case-studies-extra .slide .text .icon {
  background: var(--dark-blue);
  display: inline-block;
  width: 180px;
  height: 160px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}
section.case-studies-extra .slide .text .icon i {
  font-size: 100px;
  color: #fff;
}
section.case-studies-extra .slide .text h2:first-child, section.case-studies-extra .slide .text h2:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 800px) {
  section.case-studies-extra .slide {
    flex-direction: column;
    gap: 2rem;
  }
  section.case-studies-extra .slide .text, section.case-studies-extra .slide .image {
    width: 100%;
  }
}
section.case-studies-extra .slick-dots {
  margin-top: 3rem;
  margin-bottom: -1rem;
  list-style: none;
  display: flex;
  justify-content: center;
}
section.case-studies-extra .slick-dots li {
  margin: 0;
  font-size: 0;
}
section.case-studies-extra .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dark-blue);
  border: none;
  margin: 0 0.5rem;
  display: inline-block;
  padding: 0;
}
section.case-studies-extra .slick-dots li.slick-active button {
  background: var(--white);
}
section.case-studies-extra .container.cta {
  text-align: center;
  margin-top: 3rem;
}
section.cta {
  padding: 3rem 0;
}
section.cta aside {
  border-radius: 10px;
  background: linear-gradient(95deg, #3DFFCF 22.31%, #0097D4 121.75%);
  box-shadow: 4px 4px 30px 5px rgba(61, 255, 207, 0.5);
  text-align: center;
  padding: 3rem 2rem;
  color: var(--dark-blue);
}
section.cta aside * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
section.cta aside h2 {
  margin-top: 0;
  color: var(--dark-blue);
}
section.cta aside .button {
  background: var(--dark-blue);
  color: var(--white);
}
section.cta aside .button:hover {
  background: var(--light-blue);
}
section.cta.cta-discord aside {
  background: linear-gradient(276deg, #23272A 19.25%, #5868F2 94.44%);
  box-shadow: 4px 4px 30px 5px rgba(88, 101, 242, 0.5);
  color: var(--white);
}
section.cta.cta-discord aside h2 {
  color: var(--white);
}
section.cta.cta-discord aside .button {
  background: var(--discord);
}
section.cta.cta-discord aside .button:hover {
  background: var(--light-blue);
}
section.faq {
  padding: 1rem 0;
}
section.faq details {
  max-width: 1100px;
  margin: 1.5rem auto;
  border-radius: 1rem;
  background: var(--alt-background);
}
section.faq details:not([open]) {
  animation-name: faq-fold-in;
  animation-duration: 0.2s;
}
section.faq details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 2rem;
  font-size: 1.6rem;
  cursor: pointer;
}
section.faq details summary::-webkit-details-marker, section.faq details summary::marker {
  content: "";
  display: none;
}
section.faq details summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1rem;
  cursor: pointer;
}
section.faq details .content {
  padding: 0 1.5rem 1.5rem;
}
section.faq details .content p {
  margin: 0;
}
section.faq details[open] summary::after {
  content: "−";
}
section.faq details[open] .content {
  animation-name: faq-fold-out;
  animation-duration: 0.2s;
}
body.dark-mode details {
  background: linear-gradient(var(--alt-background), var(--alt-background)) padding-box, linear-gradient(to bottom, var(--light-green), var(--light-blue)) border-box !important;
  border: 2px solid transparent;
}
@keyframes faq-fold-out {
  0% {
    opacity: 0;
    margin-top: -1rem;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@keyframes faq-fold-in {
  0% {
    padding-bottom: 1rem;
  }
  100% {
    padding-bottom: 0;
  }
}
section.features-list {
  padding: 7rem 0 4rem 0;
}
section.features-list .container {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
section.features-list .feature-box {
  max-width: 440px;
  text-align: center;
  background: var(--alt-background);
  border-radius: 15px;
  padding: 0 2rem 2rem;
  flex: 1 0;
}
section.features-list .feature-box h3 {
  margin-top: 0;
}
section.features-list .feature-box .icon {
  width: 130px;
  height: 130px;
  background: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin: -65px auto 1.5rem;
}
section.features-list .feature-box .icon i {
  font-size: 50px;
  color: #fff;
}
@media (max-width: 750px) {
  section.features-list.columns-2 .container {
    flex-direction: column;
  }
  section.features-list.columns-2 .container .feature-box {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  section.features-list.columns-3 .container {
    flex-direction: column;
  }
  section.features-list.columns-3 .container .feature-box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 65px;
  }
}
@media (max-width: 1200px) {
  section.features-list.columns-4 .container {
    flex-wrap: wrap;
  }
  section.features-list.columns-4 .container .feature-box {
    flex: 1 0;
    min-width: 34%;
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  section.features-list.columns-4 .container {
    flex-direction: column;
  }
  section.features-list.columns-4 .container .feature-box {
    width: 100%;
    max-width: 100%;
  }
}
body.dark-mode section.features-list .feature-box {
  background: linear-gradient(var(--alt-background), var(--alt-background)) padding-box, linear-gradient(to bottom, var(--light-green), var(--light-blue)) border-box !important;
  border: 2px solid transparent;
}
section.form {
  padding: 3rem 0;
}
section.form .form-flex {
  display: flex;
  gap: 3rem;
}
section.form .form-flex > * {
  width: calc(50% - 1.5rem);
}
@media (max-width: 800px) {
  section.form .form-flex {
    flex-direction: column;
    gap: 2rem;
  }
  section.form .form-flex > * {
    width: 100%;
  }
}
section.form h2 {
  margin-top: 0;
}
section.form .text {
  position: relative;
}
section.form .form {
  margin-top: 1rem;
}
section.form .form .gform_heading {
  display: none;
}
section.form .form .gchoice {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 4px;
  gap: 0.5rem;
}
@media (max-width: 800px) {
  section.form .form .gchoice {
    margin-top: 10px;
  }
}
section.form .form .gchoice input {
  width: 22px;
  accent-color: var(--light-green);
  height: 22px;
}
@media (max-width: 800px) {
  section.form .form .gchoice input {
    width: 35px !important;
    height: 35px !important;
  }
}
section.form .form .gchoice label {
  flex: 1 0;
}
section.form .form label:not(.gform-field-label--type-sub), section.form .form legend {
  font-size: 1rem !important;
  font-weight: 500 !important;
}
section.form .form label.gform-field-label--type-inline {
  font-weight: 300 !important;
}
section.form .form input, section.form .form textarea {
  width: 100%;
  background: var(--alt-background);
  border: none;
  caret-color: var(--light-green);
  padding: 0.8rem;
  font-size: 1rem;
  color: var(--body);
  border-radius: 5px;
  resize: none;
}
section.form .form input::placeholder, section.form .form textarea::placeholder {
  color: var(--body);
  opacity: 0.7;
}
section.form .form .gform_button {
  background: var(--light-green);
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 300ms;
}
section.form .form .gform_button:hover {
  background: var(--light-blue);
  color: var(--white);
}
section.full-image {
  padding: 3rem 0;
  /* https://embedresponsively.com/ */
}
section.full-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
section.glossary {
  padding: 2rem 0;
}
section.glossary .glossary-letter {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 500px) {
  section.glossary .glossary-letter {
    flex-direction: column;
  }
}
section.glossary .glossary-letter h2 {
  background: var(--subtitle);
  color: var(--body-background);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 5rem;
  height: 5rem;
  font-size: 3.4rem;
  border-radius: 50%;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1200px) {
  section.glossary .glossary-letter h2 {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 3rem;
  }
}
section.glossary .glossary-letter .glossary-grid {
  flex: 1 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
@media (max-width: 1200px) {
  section.glossary .glossary-letter .glossary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  section.glossary .glossary-letter .glossary-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.glossary .glossary-letter .glossary-grid article {
  background: var(--alt-background);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
section.glossary .glossary-letter .glossary-grid article h3 {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0;
}
section.glossary .glossary-letter .glossary-grid article p {
  flex: 1 0;
}
section.glossary .glossary-letter .glossary-grid article a {
  color: var(--subtitle);
  text-align: right;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  display: block;
}
section.home-hero {
  padding: clamp(3rem, 8vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  width: 100%;
  overflow: hidden;
}
section.home-hero .container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
section.home-hero .container .text {
  position: relative;
  width: 40%;
  padding-top: 5%;
}
section.home-hero .container .text h1 {
  margin-top: 0;
  line-height: 1;
}
section.home-hero .container .animation {
  display: block;
  min-height: 300px;
  width: 70%;
  min-height: 800px;
}
section.home-hero .container .animation .video-1 {
  width: 140%;
  margin-top: -8%;
  margin-left: -10%;
  aspect-ratio: 1.7777777778;
  animation: floating 5s ease-in-out infinite;
  mask: url("/wp-content/themes/gameye/styles/../animations/mask-02.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-type: alpha;
}
section.home-hero .container .animation .video-2 {
  width: 85%;
  margin-top: -14%;
  margin-left: -10%;
  aspect-ratio: 1.7777777778;
  animation: floating 4s ease-in-out infinite;
  mask-image: url("/wp-content/themes/gameye/styles/../animations/mask-01.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-type: alpha;
}
section.home-hero .container .animation video {
  width: 100%;
  aspect-ratio: 1.7777777778;
  height: auto;
}
@media (max-width: 1150px) {
  section.home-hero .container {
    flex-direction: column;
  }
  section.home-hero .container .text {
    width: 100%;
    text-align: center;
  }
  section.home-hero .container .animation {
    display: block;
    width: 100%;
    min-height: 0px;
  }
  section.home-hero .container .animation .video-1 {
    width: 90%;
    margin-top: 0;
    margin-left: 3%;
    aspect-ratio: 1.7777777778;
    animation: floating 5s ease-in-out infinite;
    mask: url("/wp-content/themes/gameye/styles/../animations/mask-02.svg");
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-type: alpha;
  }
  section.home-hero .container .animation .video-2 {
    width: 55%;
    margin-top: -6%;
    margin-left: 0%;
    aspect-ratio: 1.7777777778;
    animation: floating 4s ease-in-out infinite;
    mask-image: url("/wp-content/themes/gameye/styles/../animations/mask-01.svg");
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-type: alpha;
  }
}
section.image-slider {
  padding: 3rem 0;
}
section.image-slider .image-slider-track {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
section.image-slider .image-slider-track li {
  padding: 0.75rem;
}
section.image-slider .image-slider-track img {
  aspect-ratio: 1.5;
  width: 100%;
  display: block;
  margin: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}
body.dark-mode section.logos .logo-slider img {
  filter: invert(1) grayscale(100%) brightness(3);
}
section.latest-posts {
  padding: 3rem 0;
}
section.latest-posts h2 {
  text-align: center;
  margin: 0;
}
section.latest-posts .subtitle {
  text-align: center;
  margin: 0;
}
section.latest-posts .post-grid {
  display: grid;
  grid-gap: 40px;
  margin: 3rem 0;
}
section.latest-posts .post-grid > div:last-child {
  display: block;
}
@media screen and (min-width: 768px) {
  section.latest-posts .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section.latest-posts .post-grid > div:last-child {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  section.latest-posts .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  section.latest-posts .post-grid > div:last-child {
    display: none;
  }
}
section.latest-posts .post-grid .post-meta {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
}
section.latest-posts .post-grid img {
  border-radius: 10px;
  aspect-ratio: 1.7777777778;
  object-fit: cover;
  width: 100%;
  object-position: center center;
  border-radius: 15px;
}
section.latest-posts .post-grid a {
  text-decoration: none;
}
section.latest-posts .post-grid h3 {
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
section.logos {
  padding: 1rem 0;
}
section.logos .logo-slider {
  list-style: none;
  margin: 0 -1rem;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
section.logos .logo-slider .logo {
  text-align: center;
  padding: 1rem;
}
section.logos .logo-slider img {
  height: 3rem;
  width: auto;
  display: block;
  margin: auto;
  aspect-ratio: 3.61;
  object-fit: contain;
  object-position: center center;
}
body.dark-mode section.logos .logo-slider img {
  filter: invert(1) grayscale(100%) brightness(3);
}
section.partner-callout {
  padding: 6rem 0;
  margin: 3rem 0;
  background: linear-gradient(124deg, #3DFFCF 16.54%, #0097D4 112.18%);
  position: relative;
  overflow: hidden;
}
section.partner-callout:before, section.partner-callout:after {
  width: 100px;
  height: 100px;
  content: "";
  transform: rotate(45deg);
}
section.partner-callout:before {
  background: var(--body-background);
  position: absolute;
  top: -50px;
  left: -50px;
}
section.partner-callout:after {
  background: var(--body-background);
  position: absolute;
  bottom: -50px;
  right: -50px;
}
section.partner-callout .section-title {
  margin-bottom: 3rem;
}
section.partner-callout .section-title .subtitle, section.partner-callout .section-title h2 {
  margin: 0;
  color: var(--dark-blue);
}
section.partner-callout .container.columns {
  display: flex;
  gap: 6rem;
}
section.partner-callout .container.columns a {
  text-decoration: none;
}
section.partner-callout .container.columns img {
  border-radius: 10px;
  aspect-ratio: 1.7777777778;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
section.partner-callout .container.columns h2 {
  margin: 0 0 3rem 0;
  width: 100% !important;
}
section.partner-callout .container.columns > * {
  width: calc(50% - 1.5rem);
}
section.partner-callout .container.columns .text {
  position: relative;
}
section.partner-callout .container.columns .text .icon {
  background: var(--dark-blue);
  display: inline-block;
  width: 180px;
  height: 160px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}
section.partner-callout .container.columns .text .icon i {
  font-size: 100px;
  color: #fff;
}
section.partner-callout .container.columns .text h2:first-child, section.partner-callout .container.columns .text h2:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 800px) {
  section.partner-callout .container.columns {
    flex-direction: column;
    gap: 3rem;
  }
  section.partner-callout .container.columns .text {
    width: 100%;
  }
}
section.partner-callout .container.cta {
  text-align: center;
  margin-top: 3rem;
}
section.simple-title {
  padding: clamp(3rem, 8vw, 7rem) 0;
  text-align: center;
  position: relative;
}
section.simple-title h1 {
  margin-top: 0;
}
section.simple-title p {
  max-width: 900px;
  margin: 2.5rem auto 0;
}
section.testimonials {
  padding: 4rem 0;
  margin: 3rem 0;
  position: relative;
}
section.testimonials .section-title {
  margin-bottom: 3rem;
  text-align: center;
}
section.testimonials .section-title .subtitle, section.testimonials .section-title h2 {
  margin: 0;
}
section.testimonials .slides .slick-list {
  margin: 0 -1rem;
}
section.testimonials .slides .slide {
  margin: 0 1rem;
  display: flex;
  justify-content: space-evenly;
  border: solid 1px #DBE9E9;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
section.testimonials .slides .slide .banner {
  background: var(--dark-blue);
  width: 20%;
  position: relative;
}
section.testimonials .slides .slide .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}
section.testimonials .slides .slide .content {
  flex: 1 0;
  padding: 2rem;
}
section.testimonials .slides .slide .content .logo {
  height: 4rem;
  margin-bottom: 1rem;
  margin-top: -0.25rem;
}
section.testimonials .slides .slide .content .quote {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
section.testimonials .slides .slide .content .author {
  display: flex;
  justify-self: flex-end;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.95rem;
}
section.testimonials .slides .slide .content .author strong {
  display: block;
}
section.testimonials .slides .slide .content .author span {
  display: block;
}
section.testimonials .slides .slide .content .author > div {
  text-align: right;
  line-height: 1.3;
}
section.testimonials .slides .slide .content .author > .profile-picture {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 1rem;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
section.testimonials .slick-dots {
  margin-top: 3rem;
  margin-bottom: -1rem;
  list-style: none;
  display: flex;
  justify-content: center;
}
section.testimonials .slick-dots li {
  margin: 0;
  font-size: 0;
}
section.testimonials .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: solid 1px var(--dark-blue);
  margin: 0 0.5rem;
  display: inline-block;
  padding: 0;
}
section.testimonials .slick-dots li.slick-active button {
  background: var(--dark-blue);
}
section.testimonials .container.cta {
  text-align: center;
  margin-top: 3rem;
}
section.text-and-faq {
  padding: 3rem 0;
}
section.text-and-faq .container {
  display: flex;
  gap: 3rem;
}
section.text-and-faq .container > * {
  width: calc(50% - 1.5rem);
}
section.text-and-faq .container .text {
  position: relative;
}
section.text-and-faq .container .text h2 {
  margin-top: 0;
}
section.text-and-faq .container .faq {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
section.text-and-faq .container .faq details {
  max-width: 1100px;
  border-radius: 1rem;
  background: var(--alt-background);
}
section.text-and-faq .container .faq details:not([open]) {
  animation-name: faq-fold-in;
  animation-duration: 0.2s;
}
section.text-and-faq .container .faq details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding: 1.8rem;
  font-size: 1.5rem;
  cursor: pointer;
}
section.text-and-faq .container .faq details summary::-webkit-details-marker, section.text-and-faq .container .faq details summary::marker {
  content: "";
  display: none;
}
section.text-and-faq .container .faq details summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1rem;
  cursor: pointer;
}
section.text-and-faq .container .faq details .content {
  padding: 0 1.5rem 1.5rem;
}
section.text-and-faq .container .faq details .content p {
  margin: 0;
}
section.text-and-faq .container .faq details[open] summary::after {
  content: "−";
}
section.text-and-faq .container .faq details[open] .content {
  animation-name: faq-fold-out;
  animation-duration: 0.2s;
}
@media (max-width: 800px) {
  section.text-and-faq .container {
    flex-direction: column;
    gap: 2rem;
  }
  section.text-and-faq .container .text, section.text-and-faq .container .faq {
    width: 100%;
  }
}
section.text-and-faq.faq-right .container {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  section.text-and-faq.faq-right .container {
    flex-direction: column;
  }
}
section.text-and-faq .particles {
  height: 400px;
}
section.text-and-image {
  padding: 3rem 0;
}
section.text-and-image .container {
  display: flex;
  gap: 3rem;
  align-items: center;
}
section.text-and-image .container > * {
  width: calc(50% - 1.5rem);
}
section.text-and-image .container .text {
  position: relative;
}
section.text-and-image .container .text h2:first-child, section.text-and-image .container .text h2:nth-child(2) {
  margin-top: 0;
}
section.text-and-image .container .text img {
  width: auto;
  min-height: 0;
}
section.text-and-image .container img {
  display: block;
  object-fit: cover;
  object-position: center center;
  min-height: 300px;
  border-radius: 10px;
  background: var(--background-alt);
  aspect-ratio: 1.1428571429;
}
@media (max-width: 800px) {
  section.text-and-image .container img {
    aspect-ratio: 1.7777777778;
  }
}
@media (max-width: 800px) {
  section.text-and-image .container {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  section.text-and-image .container .text, section.text-and-image .container img {
    width: 100%;
  }
}
section.text-and-image.image-right .container {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  section.text-and-image.image-right .container {
    flex-direction: column-reverse;
  }
}
section.title-with-image {
  padding: clamp(3rem, 8vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}
section.title-with-image .container {
  display: flex;
  gap: 3rem;
  align-items: center;
}
section.title-with-image .container > * {
  width: calc(50% - 1.5rem);
}
section.title-with-image .container .text {
  position: relative;
}
section.title-with-image .container .text h1 {
  margin-top: 0;
}
section.title-with-image .container img {
  display: block;
  object-fit: cover;
  object-position: center center;
  min-height: 300px;
  border-radius: 10px;
  background: var(--background-alt);
  aspect-ratio: 1.1428571429;
}
@media (max-width: 800px) {
  section.title-with-image .container img {
    aspect-ratio: 1.7777777778;
  }
}
@media (max-width: 800px) {
  section.title-with-image .container {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  section.title-with-image .container .text, section.title-with-image .container img {
    width: 100%;
  }
}
section.title-with-image.image-right .container {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  section.title-with-image.image-right .container {
    flex-direction: column-reverse;
  }
}
section.title-with-animation {
  padding: clamp(3rem, 8vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
}
section.title-with-animation .container {
  display: flex;
  gap: 3rem;
  align-items: center;
}
section.title-with-animation .container .text {
  position: relative;
  width: 40%;
}
section.title-with-animation .container .text h1 {
  margin-top: 0;
}
section.title-with-animation .container dotlottie-player {
  display: block;
  min-height: 300px;
  overflow: hidden;
  text-align: center;
  opacity: 1;
  width: 60%;
}
@media (max-width: 800px) {
  section.title-with-animation .container dotlottie-player {
    aspect-ratio: 1.7777777778;
  }
}
@media (max-width: 800px) {
  section.title-with-animation .container {
    flex-direction: column;
    gap: 2rem;
  }
  section.title-with-animation .container .text, section.title-with-animation .container dotlottie-player {
    width: 100%;
  }
}
section.title-with-animation.image-right .container {
  flex-direction: row-reverse;
}
@media (max-width: 800px) {
  section.title-with-animation.image-right .container {
    flex-direction: column-reverse;
  }
}
section.two-column-text {
  padding: 1rem 0;
}
section.two-column-text .container {
  display: flex;
  gap: 3rem;
}
section.two-column-text .container > * {
  width: calc(50% - 1.5rem);
}
section.two-column-text .container .text {
  position: relative;
}
section.two-column-text .container .text h2:first-child, section.two-column-text .container .text h2:nth-child(2) {
  margin-top: 0;
}
section.two-column-text .container .text img {
  width: auto;
  min-height: 0;
}
@media (max-width: 800px) {
  section.two-column-text .container {
    flex-direction: column;
    gap: 2rem;
  }
  section.two-column-text .container .text {
    width: 100%;
  }
}
section.video {
  padding: 4rem 0;
  /* https://embedresponsively.com/ */
}
section.video .embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
section.video .embed-container iframe, section.video .embed-container object, section.video .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.video .embed-container {
  border-radius: 15px;
  margin: auto;
  max-width: 1000px;
  aspect-ratio: 1.7777777778;
}
section.wysiwyg .container h2:first-child {
  margin-top: 0;
}
/*# sourceMappingURL=https://gameye.com/wp-content/build/scss_library/075c7dd9977596838fd37149cca9b37da0062078.css.map */