@charset "UTF-8";
/* Table of Contents
/* ------------------------------------------------------------

This is a development CSS file which is built to a minified
production stylesheet in assets/built/main.css

1.  Vendor styles
2.  Base Styles
3.  Site Header
4.  Site Navigation
5.  Post Feed
6.  Single Post
  6.1. Post Byline
  6.2. Newsletter
  6.3. Share icons
7.  Author Template
8.  Tag Template
9.  Error Template
10. Site Footer

*/
/* 1. Vendor styles
/* ---------------------------------------------------------- */
/* Reset
/* ---------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

i,
em,
dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

mark {
  background-color: #fdffb6;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

kbd {
  padding: 3px 5px;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  background: #f6f8fa;
  border: 1px solid rgba(124, 139, 154, 0.25);
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 rgba(124, 139, 154, 0.25);
}

@media (max-width: 600px) {
  kbd {
    font-size: 1.3rem;
  }
}
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 3 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
}

button {
  overflow: visible;
  border: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer; /* 3 */
  -webkit-appearance: button; /* 2 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input:focus {
  outline: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

input[type=search] {
  box-sizing: content-box; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  padding: 0; /* 2 */
  border: 0; /* 1 */
}

textarea {
  overflow: auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--color-darkgrey);
  font-family: var(--gh-font-body, var(--font-sans));
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}

::selection {
  text-shadow: none;
  background: #daf2fd;
}

hr {
  position: relative;
  display: block;
  width: 100%;
  margin: 2.5em 0 3.5em;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #f0f0f0;
}
@media screen and (max-width: 1024px) {
  hr {
    margin: 2em 0 3em;
  }
}
@media screen and (max-width: 767.9px) {
  hr {
    margin: 1.5em 0 2.5em;
  }
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
  max-width: 100%;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

textarea {
  resize: vertical;
}

::not(.gh-content) p,
::not(.gh-content) ul,
::not(.gh-content) ol,
::not(.gh-content) dl,
::not(.gh-content) blockquote {
  margin: 0 0 1.5em 0;
}

ol,
ul {
  padding-left: 1.3em;
  padding-right: 1.5em;
}

ol ol,
ul ul,
ul ol,
ol ul {
  margin: 0.5em 0;
}

ul,
ol {
  max-width: 100%;
}

li {
  padding-left: 0.3em;
  line-height: 1.6em;
}

dt {
  float: left;
  margin: 0 20px 0 0;
  width: 120px;
  color: #daf2fd;
  font-weight: 600;
  text-align: right;
}

dd {
  margin: 0 0 5px 0;
  text-align: left;
}

blockquote {
  margin: 1.5em 0;
  padding: 0 1.6em 0 1.6em;
  border-left: #daf2fd;
}

blockquote small {
  display: inline-block;
  margin: 0.8em 0 0.8em 1.5em;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Quotation marks */
blockquote small:before {
  content: "— ";
}

blockquote cite {
  font-weight: bold;
}

blockquote cite a {
  font-weight: normal;
}

a {
  color: #15171a;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  line-height: 1.15;
  font-family: var(--gh-font-heading, var(--font-sans));
  font-weight: 600;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
}

h1 {
  margin: 0 0 0.5em 0;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }
}
h2 {
  margin: 0 0 0.5em 0;
  font-size: 2.8rem;
  font-weight: 700;
}

@media (max-width: 600px) {
  h2 {
    font-size: 2.3rem;
  }
}
h3 {
  margin: 0 0 0.5em 0;
  font-size: 2.4rem;
  font-weight: 600;
}

@media (max-width: 600px) {
  h3 {
    font-size: 1.7rem;
  }
}
h4 {
  margin: 0 0 0.5em 0;
  font-size: 2rem;
}

@media (max-width: 600px) {
  h4 {
    font-size: 1.7rem;
  }
}
h5 {
  margin: 0 0 0.5em 0;
  font-size: 2rem;
}

h6 {
  margin: 0 0 0.5em 0;
  font-size: 1.8rem;
}

h1 {
  font-size: 36px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 44px;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1400px) {
  h1 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1640px) {
  h1 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1920px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 44px;
  }
}
@media screen and (min-width: 1400px) {
  h2 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1640px) {
  h2 {
    font-size: 50px;
  }
}
@media screen and (min-width: 1920px) {
  h2 {
    font-size: 56px;
  }
}

h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1400px) {
  h3 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1640px) {
  h3 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1920px) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 15px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h4 {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1400px) {
  h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1640px) {
  h4 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1920px) {
  h4 {
    font-size: 32px;
  }
}

h5 {
  font-size: 12px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h5 {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  h5 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 10px;
  font-weight: bold;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 480px) {
  h6 {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  h6 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  h6 {
    font-size: 17px;
  }
}
@media screen and (min-width: 1640px) {
  h6 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1920px) {
  h6 {
    font-size: 20px;
  }
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1640px) {
  p {
    font-size: 20px;
  }
}

/* ==========================================================================
   Koenig Editor Cards - Required by Ghost
   ========================================================================== */
/* Gallery Card */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.kg-gallery-image {
  flex: 1 1 0;
  margin: 0 0.5rem;
}

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-gallery-row:not(:first-of-type) {
  margin: 0.5rem 0 0;
}

/* Bookmark Card */
.kg-bookmark-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  display: flex;
  text-decoration: none;
  margin: 2rem 0;
  box-shadow: 0 2px 5px -1px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.kg-bookmark-card:hover {
  box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.25);
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  min-height: 148px;
  width: 100%;
}

.kg-bookmark-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
}

.kg-bookmark-title {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.kg-bookmark-description {
  display: -webkit-box;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  font-weight: 400;
  margin-bottom: 1rem;
  max-height: 44px;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
  margin-top: auto;
}

.kg-bookmark-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.kg-bookmark-author {
  text-decoration: none;
  color: #999;
}

.kg-bookmark-publisher {
  text-decoration: none;
  color: #999;
}

.kg-bookmark-author:after {
  content: "•";
  margin: 0 6px;
}

.kg-bookmark-thumbnail {
  position: relative;
  min-width: 33%;
  max-height: 100%;
}

.kg-bookmark-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 3px 3px 0;
}

/* Additional Koenig Editor Classes */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-image-card {
  margin: 2rem 0;
}

.kg-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.kg-image-card figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Code Card */
.kg-code-card {
  margin: 2rem 0;
}

.kg-code-card pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 1.5rem;
  border-radius: 5px;
  overflow-x: auto;
}

/* Embed Card */
.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  min-width: 100%;
}

/* Button Card */
.kg-button-card {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.kg-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.kg-btn-accent {
  background-color: var(--ghost-accent-color, #15171A);
  color: #fff;
}

.kg-btn-accent:hover {
  opacity: 0.9;
}

/* Callout Card */
.kg-callout-card {
  display: flex;
  padding: 1.5rem;
  border-radius: 3px;
  margin: 2rem 0;
}

.kg-callout-card-grey {
  background: #f6f6f6;
}

.kg-callout-card-blue {
  background: #e6f3ff;
}

.kg-callout-card-green {
  background: #e8f5e8;
}

.kg-callout-card-yellow {
  background: #fff9e6;
}

.kg-callout-card-red {
  background: #ffe6e6;
}

.kg-callout-card-pink {
  background: #ffe6f1;
}

.kg-callout-card-purple {
  background: #f3e6ff;
}

.kg-callout-emoji {
  padding-right: 1rem;
  font-size: 1.5rem;
}

.kg-callout-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* Toggle Card */
.kg-toggle-card {
  background: #f6f6f6;
  border-radius: 4px;
  padding: 1rem;
  margin: 2rem 0;
}

.kg-toggle-heading {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kg-toggle-content {
  margin-top: 1rem;
  display: none;
}

.kg-toggle-card.kg-toggle-card-open .kg-toggle-content {
  display: block;
}

/* Product Card */
.kg-product-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 2rem 0;
}

.kg-product-card-container {
  display: grid;
  grid-template-columns: auto min-content;
  align-items: center;
  grid-row-gap: 1rem;
  background: #f6f6f6;
  padding: 1.5rem;
  border-radius: 5px;
  width: 100%;
}

.kg-product-card-title {
  grid-column: 1/3;
  font-size: 1.5rem;
  font-weight: 700;
}

.kg-product-card-description {
  grid-column: 1/3;
}

.kg-product-card-button {
  justify-self: center;
  grid-column: 1/3;
}

/* Audio Card */
.kg-audio-card {
  display: flex;
  width: 100%;
  margin: 2rem 0;
}

.kg-audio-player-container {
  width: 100%;
}

/* Video Card */
.kg-video-card {
  margin: 2rem 0;
}

.kg-video-player-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.kg-video-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* File Card */
.kg-file-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.kg-file-card:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header Cards */
.kg-header-card {
  padding: 12vmin 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2rem 0;
}

.kg-header-card h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.kg-header-card h3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}

.kg-header-card-subheading {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 1rem;
}

.kg-header-card-button {
  margin-top: 2rem;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
  .kg-bookmark-container {
    flex-direction: column;
  }
  .kg-bookmark-thumbnail {
    order: -1;
    width: 100%;
    min-height: 200px;
  }
  .kg-bookmark-thumbnail img {
    border-radius: 3px 3px 0 0;
  }
  .kg-product-card-container {
    grid-template-columns: 1fr;
  }
  .kg-product-card-title,
  .kg-product-card-description,
  .kg-product-card-button {
    grid-column: 1;
  }
}
.container {
  width: 100%;
  position: relative;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1357px;
  }
}

.container-sm {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 540px;
}

.container-md {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 720px;
}

.container-lg {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
}

.container-xl {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
}

.container-xxl {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1320px;
}

.container-xxxl {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 1357px;
}

.col-1 {
  width: 8.3333333333%;
  flex: 0 0 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
  flex: 0 0 16.6666666667%;
}

.col-3 {
  width: 25%;
  flex: 0 0 25%;
}

.col-4 {
  width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
  flex: 0 0 41.6666666667%;
}

.col-6 {
  width: 50%;
  flex: 0 0 50%;
}

.col-7 {
  width: 58.3333333333%;
  flex: 0 0 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
  flex: 0 0 66.6666666667%;
}

.col-9 {
  width: 75%;
  flex: 0 0 75%;
}

.col-10 {
  width: 83.3333333333%;
  flex: 0 0 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
  flex: 0 0 91.6666666667%;
}

.col-12 {
  width: 100%;
  flex: 0 0 100%;
}

@media (min-width: 0) {
  .col-xs-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xs-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xs-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-xs-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xs-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xs-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-xs-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xs-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xs-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-xs-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xs-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xs-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xl-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xl-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-xl-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xl-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xl-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-xl-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xl-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xl-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-xl-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xl-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xl-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xxl-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xxl-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-xxl-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xxl-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xxl-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-xxl-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xxl-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xxl-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-xxl-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xxl-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xxl-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (min-width: 1600px) {
  .col-xxxl-1 {
    width: 8.3333333333%;
    flex: 0 0 8.3333333333%;
  }
  .col-xxxl-2 {
    width: 16.6666666667%;
    flex: 0 0 16.6666666667%;
  }
  .col-xxxl-3 {
    width: 25%;
    flex: 0 0 25%;
  }
  .col-xxxl-4 {
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
  .col-xxxl-5 {
    width: 41.6666666667%;
    flex: 0 0 41.6666666667%;
  }
  .col-xxxl-6 {
    width: 50%;
    flex: 0 0 50%;
  }
  .col-xxxl-7 {
    width: 58.3333333333%;
    flex: 0 0 58.3333333333%;
  }
  .col-xxxl-8 {
    width: 66.6666666667%;
    flex: 0 0 66.6666666667%;
  }
  .col-xxxl-9 {
    width: 75%;
    flex: 0 0 75%;
  }
  .col-xxxl-10 {
    width: 83.3333333333%;
    flex: 0 0 83.3333333333%;
  }
  .col-xxxl-11 {
    width: 91.6666666667%;
    flex: 0 0 91.6666666667%;
  }
  .col-xxxl-12 {
    width: 100%;
    flex: 0 0 100%;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.row > [class*=col-] {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

* {
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: -0.24px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #413f3f;
  line-height: 1.5;
  font-family: "Figtree", sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

.home-template .gh-viewport {
  overflow: hidden;
}

@media screen and (min-width: 1640px) {
  .container-fluid {
    max-width: 1600px;
  }
}

.container-md {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .container-md {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container-md {
    max-width: 860px;
  }
}
@media screen and (min-width: 1024px) {
  .container-md {
    max-width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .container-md {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  .container-md {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1640px) {
  .container-md {
    max-width: 1320px;
  }
}

.container-sm {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container-sm {
    max-width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container-sm {
    max-width: 800px;
  }
}
@media screen and (min-width: 1024px) {
  .container-sm {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .container-sm {
    max-width: 1080px;
  }
}
@media screen and (min-width: 1400px) {
  .container-sm {
    max-width: 1180px;
  }
}
@media screen and (min-width: 1640px) {
  .container-sm {
    max-width: 1200px;
  }
}

.text-white {
  color: #ffffff;
}

.text-primary {
  color: #34caff;
}

.text-black {
  color: #000000;
}

.text-dark {
  color: #474747;
}

.text-blue {
  color: #1551b0;
}

.text-dark-blue {
  color: #2a537c;
}

.text-gray {
  color: #f9f9f9;
}

.text-dark-gray {
  color: #919aad;
}

.text-light-gray {
  color: #f5f5f5;
}

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

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

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

.h-100 {
  min-height: 100vh;
}

.d-flex {
  display: flex;
}

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

.justify-content-center {
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.mb-0 {
  margin-bottom: 0 !important;
}

footer.main-footer {
  color: #ffffff;
  background-color: #22b8ed;
  overflow: hidden;
}
footer.main-footer .footer-content {
  position: relative;
  padding: 80px 7.5% 0 7.5%;
  background-color: #0f3c5c;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 72px;
  min-height: 380px;
}
@media screen and (min-width: 768px) {
  footer.main-footer .footer-content {
    min-height: 450px;
  }
}
@media screen and (min-width: 1024px) {
  footer.main-footer .footer-content {
    min-height: 470px;
  }
}
@media screen and (min-width: 1200px) {
  footer.main-footer .footer-content {
    min-height: 490px;
  }
}
@media screen and (min-width: 1440px) {
  footer.main-footer .footer-content {
    min-height: 550px;
  }
}
@media screen and (min-width: 1600px) {
  footer.main-footer .footer-content {
    min-height: 570px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-content {
    padding: 50px 5% 0 5%;
    border-radius: 36px;
  }
}
footer.main-footer .footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #919aad;
  padding-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-top {
    padding-bottom: 40px;
  }
}
footer.main-footer .footer-top-quote {
  font-weight: 600;
  font-size: 43.75px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #5ba3d5;
  max-width: 830px;
  margin: 0 auto;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-top-quote {
    font-size: 36px;
  }
}
@media screen and (max-width: 1440px) {
  footer.main-footer .footer-top-quote {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-top-quote {
    font-size: 28px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-top-quote {
    font-size: 24px;
  }
}
footer.main-footer .footer-logo {
  width: 33.33%;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-logo {
    width: 50%;
  }
}
footer.main-footer .footer-logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
footer.main-footer .footer-logo img {
  max-width: 114px;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-logo img {
    max-width: 100px;
  }
}
@media screen and (max-width: 480px) {
  footer.main-footer .footer-logo img {
    max-width: 80px;
  }
}
footer.main-footer .footer-logo .footer-logo-text {
  font-size: 33.2px;
  color: #ffffff;
  font-weight: 400;
  line-height: 108%;
  letter-spacing: -0.04em;
  max-width: 320px;
  opacity: 0.66;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-logo .footer-logo-text {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-logo .footer-logo-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-logo .footer-logo-text {
    font-size: 25px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-logo .footer-logo-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  footer.main-footer .footer-logo .footer-logo-text {
    font-size: 18px;
  }
}
footer.main-footer .footer-bottom {
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}
footer.main-footer .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer.main-footer .footer-links ul {
  padding: 0;
  display: flex;
  gap: 18px;
}
footer.main-footer .footer-links li {
  list-style: none;
  padding: 0;
}
footer.main-footer .footer-links li:not(:first-child):before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  margin-right: 18px;
}
footer.main-footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 108%;
  letter-spacing: -0.04em;
  opacity: 0.66;
}
footer.main-footer .footer-bottom-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 50px auto 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-bottom-wrapper {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-bottom-wrapper {
    margin: 30px auto 30px auto;
  }
}
@media screen and (max-width: 400px) {
  footer.main-footer .footer-bottom-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
footer.main-footer .footer-bottom-wrapper .footer-social {
  text-align: center;
}
footer.main-footer .footer-bottom-wrapper .footer-social h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04em;
  margin-top: 0;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-bottom-wrapper .footer-social h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-bottom-wrapper .footer-social h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-bottom-wrapper .footer-social h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-bottom-wrapper .footer-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  footer.main-footer .footer-bottom-wrapper .footer-social h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
footer.main-footer .footer-bottom-wrapper .footer-social ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul {
    gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul {
    gap: 10px;
  }
}
footer.main-footer .footer-bottom-wrapper .footer-social ul li {
  list-style: none;
}
footer.main-footer .footer-bottom-wrapper .footer-social ul a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #22b8ed;
  border-radius: 50%;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul a {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul a {
    width: 35px;
    height: 35px;
    padding: 8px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul a {
    width: 30px;
    height: 30px;
  }
}
footer.main-footer .footer-bottom-wrapper .footer-social ul a img {
  width: 100%;
  height: 100%;
  max-width: 25px;
}
@media screen and (max-width: 1640px) {
  footer.main-footer .footer-bottom-wrapper .footer-social ul a img {
    max-width: 100%;
  }
}
footer.main-footer .footer-logo-large {
  opacity: 0.2;
  margin-top: -12.5%;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: -1;
}
footer.main-footer .footer-contact-links {
  position: absolute;
  bottom: 25px;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-contact-links {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
  }
}
footer.main-footer .footer-contact-links span {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-contact-links span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-contact-links span {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-contact-links span {
    font-size: 14px;
  }
}
footer.main-footer .footer-contact-links span:after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  margin-left: 15px;
}
footer.main-footer .footer-contact-links a {
  color: #3dccff;
  text-decoration: underline;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1200px) {
  footer.main-footer .footer-contact-links a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  footer.main-footer .footer-contact-links a {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-contact-links a {
    font-size: 14px;
  }
}
footer.main-footer .footer-bottom-info {
  padding: 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer.main-footer .footer-bottom-info p {
  margin-bottom: 0;
}
footer.main-footer .footer-bottom-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04em;
  text-align: center;
}
footer.main-footer.sub-page-footer {
  background-color: transparent;
}
footer.main-footer.sub-page-footer .footer-bottom-info p,
footer.main-footer.sub-page-footer .footer-bottom-info a {
  color: #474747;
}

.banner-section .gh-navigation-inner,
.banner-section .banner-section-text-content > *,
.banner-section .hero-image-left,
.banner-section .hero-image-right,
.banner-section .hero-image-main,
.banner-section .why-axari-text > *,
.banner-section .why-axari-images img {
  opacity: 0;
}
@media screen and (max-width: 767.9px) {
  .banner-section .gh-navigation-inner,
  .banner-section .banner-section-text-content > *,
  .banner-section .hero-image-left,
  .banner-section .hero-image-right,
  .banner-section .hero-image-main,
  .banner-section .why-axari-text > *,
  .banner-section .why-axari-images img {
    opacity: 1;
  }
}

.banner-section {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .banner-section {
    padding-bottom: 100px;
  }
}
.banner-section-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .banner-section-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .banner-section-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.banner-section-container {
  display: flex;
  justify-content: center;
  position: static;
  background-color: #34caff;
}
@media screen and (min-width: 768px) {
  .banner-section-container {
    min-height: 100vh;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-right: 0;
    background-color: transparent;
    margin-left: calc((100vw - 720px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .banner-section-container {
    margin-left: calc((100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .banner-section-container {
    margin-left: calc((100vw - 1140px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .banner-section-container {
    margin-left: calc((100vw - 1320px) / 2);
  }
}
@media screen and (min-width: 1640px) {
  .banner-section-container {
    margin-left: calc((100vw - 1600px) / 2);
  }
}
@media screen and (max-width: 767.9px) {
  .banner-section-container {
    max-width: 100%;
  }
}
.banner-section-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  left: 0;
  top: 0;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 768px) {
  .banner-section-background {
    background: #34caff;
    display: block;
    z-index: 3;
  }
}
.banner-section-text {
  width: 34%;
  height: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .banner-section-text {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .banner-section-text {
    width: 100%;
    max-width: 100%;
  }
}
.banner-section-text-content {
  margin-top: 29%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 4;
}
.banner-section-text-content-note {
  margin-top: 1rem;
}
.banner-section-text h1 {
  color: #ffffff;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .banner-section-text h1 {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .banner-section-text h1 {
    font-size: 28px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.banner-section-text p {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  max-width: 600px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .banner-section-text p {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 480px) {
  .banner-section-text p {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .banner-section-text p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .banner-section-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-section-text p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1640px) {
  .banner-section-text p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .banner-section-text p {
    font-size: 22px;
  }
}
.banner-section-text p em {
  font-weight: bold;
  font-style: normal;
}
.banner-section-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 480px) {
  .banner-section-buttons {
    justify-content: center;
  }
}
@media screen and (max-width: 767.9px) {
  .banner-section-buttons {
    gap: 10px;
  }
}
.banner-section-image {
  position: relative;
  flex: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .banner-section-image {
    width: 100%;
    padding-top: 56.25%;
  }
}
@media screen and (max-width: 480px) {
  .banner-section-image {
    padding-top: 80%;
    transform: scale(1.3);
    transform-origin: 18% 100%;
  }
}
.banner-section-image .hero-image {
  position: absolute;
  bottom: 0;
  z-index: 4;
  overflow: hidden;
}
.banner-section-image .hero-image.hero-image-left {
  left: 0;
  max-width: 38%;
}
.banner-section-image .hero-image.hero-image-main {
  max-width: 52.5%;
  left: 8%;
}
.banner-section-image .hero-image.hero-image-right {
  right: 10%;
  max-width: 45%;
}

.why-axari-container {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media screen and (max-width: 767.9px) {
  .why-axari-container {
    padding-top: 50px;
    position: relative;
    left: 0;
    transform: none;
  }
}
.why-axari-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .why-axari-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.why-axari-images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.why-axari-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media screen and (min-width: 768px) {
  .why-axari-images {
    display: block;
  }
}
.why-axari-images img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 25%;
  height: auto;
  z-index: -1;
}
.why-axari-images img:nth-child(1) {
  left: 22%;
  top: 19.5%;
  width: 18.5%;
  transform: translate(100%, 80%);
}
.why-axari-images img:nth-child(2) {
  bottom: 23%;
  right: 21%;
  left: auto;
  top: auto;
  width: 15.25%;
  transform: translate(-130%, -85%);
}
.why-axari-images img:nth-child(3) {
  left: 20%;
  bottom: 20%;
  top: auto;
  width: 25%;
  transform: translate(65%, -120%);
}
.why-axari-images img:nth-child(4) {
  right: 16.5%;
  left: auto;
  top: 23.5%;
  width: 21%;
  transform: translate(-90%, 100%);
}
.why-axari-mask {
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
@media screen and (min-width: 768px) {
  .why-axari-mask {
    display: block;
  }
}
.why-axari-text {
  display: flex;
  flex-direction: column;
  max-width: 390px;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .why-axari-text {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .why-axari-text {
    max-width: 340px;
  }
}
@media screen and (min-width: 1200px) {
  .why-axari-text {
    max-width: 360px;
  }
}
@media screen and (min-width: 1400px) {
  .why-axari-text {
    max-width: 390px;
  }
}
.why-axari-text h2 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 20px;
}
.why-axari-text h2 * {
  display: inline;
}
.why-axari-text h2 img {
  max-width: 40px;
  margin-top: -8px;
}
@media screen and (max-width: 767.9px) {
  .why-axari-text h2 img {
    max-width: 24px;
    margin-top: -4px;
  }
}
.why-axari-text h2 em {
  display: block;
  font-style: normal;
}
.why-axari-text p,
.why-axari-text > span {
  font-size: 14px;
  color: #474747;
  line-height: 140%;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .why-axari-text p,
  .why-axari-text > span {
    font-size: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .why-axari-text p,
  .why-axari-text > span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .why-axari-text p,
  .why-axari-text > span {
    font-size: 18px;
  }
}
@media screen and (min-width: 1640px) {
  .why-axari-text p,
  .why-axari-text > span {
    font-size: 20px;
  }
}
@media screen and (min-width: 1920px) {
  .why-axari-text p,
  .why-axari-text > span {
    font-size: 22px;
  }
}
.why-axari-text > span {
  font-weight: 600;
}

.why-axari-video-wrapper {
  position: relative;
}

.main-image-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50.5%, -43.5%);
  max-width: 42.5%;
  visibility: hidden;
}

.why-axari-background-mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-43%, -42%);
  width: 28%;
  visibility: hidden;
}

.why-axari-animated-video {
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: inset(0% 1vw 0%);
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .why-axari-animated-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
}
.why-axari-animated-video video {
  width: 100%;
}

.cta-section {
  background-color: #22b8ed;
  margin-top: -1px;
}
.cta-section-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .cta-section-content {
    flex-direction: column-reverse;
  }
}
.cta-section-content img {
  max-width: 62.5%;
  align-self: flex-end;
}
@media screen and (max-width: 1200px) {
  .cta-section-content img {
    max-width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .cta-section-content img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .cta-section-content img {
    align-self: center;
  }
}
.cta-section-text {
  display: flex;
  flex-direction: column;
  max-width: 475px;
  color: #ffffff;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .cta-section-text {
    max-width: 75%;
  }
}
@media screen and (max-width: 480px) {
  .cta-section-text {
    max-width: 100%;
  }
}
.cta-section-text h2 {
  margin-top: 0;
}
.cta-section-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1640px) {
  .cta-section-text p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .cta-section-text p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .cta-section-text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767.9px) {
  .cta-section-text p {
    font-size: 14px;
  }
}
.cta-section-spots {
  font-size: 36px;
  font-weight: bold;
  line-height: 103%;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1640px) {
  .cta-section-spots {
    font-size: 32px;
  }
}
@media screen and (max-width: 1440px) {
  .cta-section-spots {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .cta-section-spots {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .cta-section-spots {
    font-size: 24px;
  }
}
@media screen and (max-width: 767.9px) {
  .cta-section-spots {
    font-size: 20px;
  }
}
@media screen and (max-width: 479.9px) {
  .cta-section-spots {
    font-size: 18px;
  }
}
.cta-section-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.video-section {
  position: relative;
  background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, #f6f6f6 100%);
  padding-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .video-section {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .video-section {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .video-section {
    padding-top: 0rem;
  }
}
.video-section-title {
  margin-top: 0;
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .video-section-title {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .video-section-title {
    margin-bottom: 2.5rem;
  }
}
.video-section-content {
  position: relative;
}
.video-section-video {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 38px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .video-section-video {
    border-radius: 24px;
  }
}
.video-section-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.video-section-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section-video .playerjs-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .video-section-video .playerjs-controls {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 4px 8px;
    gap: 6px;
  }
}
.video-section-video .playerjs-button {
  appearance: none;
  border: none;
  background: #fff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 767.9px) {
  .video-section-video .playerjs-button {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-button {
    width: 20px;
    height: 20px;
  }
}
.video-section-video .playerjs-button:hover, .video-section-video .playerjs-button:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.05);
  outline: none;
}
.video-section-video .playerjs-button .playerjs-button-icon {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #000;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-button .playerjs-button-icon {
    border-width: 5px 0 5px 8px;
  }
}
.video-section-video .playerjs-button.is-playing .playerjs-button-icon {
  border-width: 0 0 0 0;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-button.is-playing .playerjs-button-icon {
    width: 8px;
    height: 8px;
  }
}
.video-section-video .playerjs-button.is-playing .playerjs-button-icon::before, .video-section-video .playerjs-button.is-playing .playerjs-button-icon::after {
  content: "";
  display: block;
  width: 3px;
  height: 14px;
  background: #000;
  margin: 0 2px;
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-button.is-playing .playerjs-button-icon::before, .video-section-video .playerjs-button.is-playing .playerjs-button-icon::after {
    width: 2px;
    height: 8px;
    margin: 0 1px;
  }
}
.video-section-video .playerjs-progress {
  flex: 1;
  display: flex;
  align-items: center;
}
.video-section-video .playerjs-progress input[type=range] {
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
  outline: none;
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-progress input[type=range] {
    height: 2px;
  }
}
.video-section-video .playerjs-progress input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767.9px) {
  .video-section-video .playerjs-progress input[type=range]::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-progress input[type=range]::-webkit-slider-thumb {
    width: 8px;
    height: 8px;
  }
}
.video-section-video .playerjs-progress input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: none;
}
@media screen and (max-width: 767.9px) {
  .video-section-video .playerjs-progress input[type=range]::-moz-range-thumb {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-progress input[type=range]::-moz-range-thumb {
    width: 8px;
    height: 8px;
  }
}
.video-section-video .playerjs-time {
  min-width: 72px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .video-section-video .playerjs-time {
    font-size: 12px;
    min-width: 64px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-video .playerjs-time {
    font-size: 10px;
    min-width: 56px;
  }
}
.video-section.video-playing .video-section-video:before {
  opacity: 0;
}
.video-section.video-playing .video-section-video .playerjs-controls {
  opacity: 1;
  pointer-events: auto;
}
.video-section.video-playing .video-section-play-button {
  opacity: 0;
  pointer-events: none;
}
.video-section-play-button {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 160px;
  height: 160px;
}
.video-section-play-button svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1640px) {
  .video-section-play-button {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .video-section-play-button {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767.9px) {
  .video-section-play-button {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .video-section-play-button {
    width: 60px;
    height: 60px;
  }
}
.video-section.montage {
  padding: 10rem 0;
}
@media screen and (max-width: 767.9px) {
  .video-section.montage {
    padding: 5rem 0;
  }
}

video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

video::-webkit-media-controls-rewind-button {
  display: none !important;
}

.taskforce-section {
  background: #f6f6f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.taskforce-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
  z-index: -10;
  pointer-events: none;
}
.taskforce-section-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.taskforce-section-panel.intro-panel {
  z-index: 4;
  pointer-events: none;
}
.taskforce-section-panel.is-active {
  pointer-events: auto;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }
}
.taskforce-section-panel .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel .container {
    padding-top: 100px;
  }
}
.taskforce-section-panel .container-fluid {
  justify-content: flex-end;
}
.taskforce-section-panel-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-top: 18%;
}
@media screen and (min-width: 1640px) and (max-height: 991px) {
  .taskforce-section-panel-content {
    padding-top: 10%;
  }
}
@media screen and (max-width: 1640px) {
  .taskforce-section-panel-content {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 25px;
    gap: 0;
    margin: 0 auto;
    max-width: clamp(280px, 80vw, 360px);
  }
}
.taskforce-section-panel-content-title {
  font-size: 24vw;
  color: #e5e5e5;
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-title {
    display: none;
  }
}
.taskforce-section-panel-content-image-wrapper {
  position: relative;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-wrapper {
    display: flex;
  }
  .taskforce-section-panel-content-image-wrapper:before {
    content: "";
    position: absolute;
    width: 50vw;
    height: 70%;
    border-radius: 30px;
    left: 25%;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-image-wrapper {
    display: none;
  }
}
.taskforce-section-panel-content-image-wrapper .mobile-image {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-wrapper .mobile-image {
    display: block;
  }
}
.taskforce-section-panel-content-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}
.taskforce-section-panel-content-image-animated {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 0;
}
.taskforce-section-panel-content-image-animated.eve-image-animated {
  max-width: 50%;
  left: -8%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-animated.eve-image-animated {
    max-width: 100%;
    left: 0;
  }
}
.taskforce-section-panel-content-image-animated.janice-image-animated {
  left: -5%;
  max-width: 16%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-animated.janice-image-animated {
    left: 10%;
    max-width: 40%;
  }
}
.taskforce-section-panel-content-image-animated.rhea-image-animated {
  left: -15%;
  max-width: 35%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-animated.rhea-image-animated {
    left: 0;
    max-width: 200px;
  }
}
.taskforce-section-panel-content-image-animated.chief-image-animated {
  left: -5%;
  max-width: 32.5%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-animated.chief-image-animated {
    left: 0;
    max-width: 200px;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-image-animated {
    width: 100%;
    object-fit: contain;
    z-index: 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.taskforce-section-panel-content-info {
  padding-left: 20px;
  padding-right: 10px;
  border-left: 20px solid;
}
.taskforce-section-panel-content-info .taskforce-section-panel-content-image {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-info {
    padding-left: 1rem;
    border-left: 1rem solid;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-info {
    padding-left: 0;
    padding-right: 0;
    border-left: 0.75rem solid;
    display: flex;
    align-items: flex-end;
    border-left: none;
  }
  .taskforce-section-panel-content-info .info-wrapper {
    width: 50%;
    border-left: 0.75rem solid;
    border-color: inherit;
    padding-left: 10px;
    margin-bottom: 20px;
    z-index: 2;
  }
  .taskforce-section-panel-content-info .image-wrapper {
    position: relative;
    width: 50%;
    height: 100%;
    z-index: 1;
  }
  .taskforce-section-panel-content-info .image-wrapper:before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    border-radius: 16px;
    background: red;
    transform: rotate(15deg) translateX(-50%);
    left: 50%;
    top: 25%;
  }
  .taskforce-section-panel-content-info .taskforce-section-panel-content-image {
    display: block;
    position: relative;
    top: auto;
    left: auto !important;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    max-width: 100% !important;
    max-height: 200px;
  }
}
.taskforce-section-panel-content-info.eve {
  border-color: #7cd79f;
}
.taskforce-section-panel-content-info.eve .image-wrapper:before {
  background: #7cd79f;
}
.taskforce-section-panel-content-info.sage {
  border-color: #ffb404;
}
.taskforce-section-panel-content-info.sage .image-wrapper:before {
  background: #ffb404;
}
.taskforce-section-panel-content-info.rhea {
  border-color: #f6521d;
}
.taskforce-section-panel-content-info.rhea .image-wrapper:before {
  background: #f6521d;
}
.taskforce-section-panel-content-info.janice {
  border-color: #50b477;
}
.taskforce-section-panel-content-info.janice .image-wrapper:before {
  background: #50b477;
}
.taskforce-section-panel-content-info.chief {
  border-color: #34caff;
}
.taskforce-section-panel-content-info.chief .image-wrapper:before {
  background: #34caff;
}
.taskforce-section-panel-content-info h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 55.0431px;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  color: #474747;
  margin-bottom: 10px;
  margin-top: 0;
}
@media screen and (max-width: 1640px) {
  .taskforce-section-panel-content-info h3 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content-info h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content-info h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-info h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-info h3 {
    font-size: clamp(32px, 7.5vw, 48px);
    margin-bottom: 5px;
  }
}
.taskforce-section-panel-content-info span {
  display: block;
  margin-bottom: 10px;
  font-size: 36.6954px;
  font-weight: 400;
  line-height: 103.5%;
  letter-spacing: -0.04em;
  color: #474747;
}
@media screen and (max-width: 1640px) {
  .taskforce-section-panel-content-info span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content-info span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content-info span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-info span {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-info span {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.taskforce-section-panel-content-info p {
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #474747;
  max-width: 340px;
  margin-bottom: 0;
}
@media screen and (max-width: 1640px) {
  .taskforce-section-panel-content-info p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content-info p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content-info p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-info p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-info p {
    font-size: 12px;
  }
}
.taskforce-section-panel-content-media {
  position: relative;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-media {
    max-width: 100%;
  }
}
.taskforce-section-panel-content-media-wrapper {
  position: relative;
  filter: drop-shadow(15px 8px 15px rgba(167, 167, 167, 0.36));
}
.taskforce-section-panel-content-media-wrapper .taskforce-unmute {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 16px;
  border-radius: 10px;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0.9;
  background: transparent;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  .taskforce-section-panel-content-media-wrapper .taskforce-unmute {
    padding: 24px;
  }
}
@media screen and (min-width: 768px) {
  .taskforce-section-panel-content-media-wrapper .taskforce-unmute.hidden {
    opacity: 0;
    pointer-events: none;
  }
}
.taskforce-section-panel-content-media-wrapper:hover .taskforce-unmute {
  opacity: 1;
}
.taskforce-section-panel-content-media video {
  border-radius: 11px;
}
.taskforce-section-panel-content-media.eve .text-highlight {
  color: #7cd79f;
}
.taskforce-section-panel-content-media.sage .text-highlight {
  color: #ffb404;
}
.taskforce-section-panel-content-media.rhea .text-highlight {
  color: #f6521d;
}
.taskforce-section-panel-content-media.janice .text-highlight {
  color: #50b477;
}
.taskforce-section-panel-content-media.chief .text-highlight {
  color: #34caff;
}
.taskforce-section-panel-content-media.chief .taskforce-unmute {
  display: none;
}
.taskforce-section-panel-content-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel-content-cards {
    gap: 10px;
  }
}
.taskforce-section-panel-content-cards .taskforce-section-panel-content-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 60px 15px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card {
    padding: 40px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card {
    padding: 30px 10px;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card {
    padding: 20px 10px;
  }
}
.taskforce-section-panel-content-cards .taskforce-section-panel-content-card:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* border thickness */
  background: linear-gradient(180deg, #ffffff 33.17%, #50b477 47.12%, #00b4f1 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.taskforce-section-panel-content-cards .taskforce-section-panel-content-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px; /* adjust to match border thickness + smooth edge */
  background: #fff; /* same as box background */
  z-index: 3;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.taskforce-section-panel-content-cards .taskforce-section-panel-content-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 19.8133px;
  line-height: 140%;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  color: #b1b1b1;
}
@media screen and (max-width: 1640px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel-content-cards .taskforce-section-panel-content-card p {
    font-size: 12px;
  }
}
.taskforce-section-panel-content-cards .taskforce-section-panel-content-card p span {
  font-weight: 700;
}
.taskforce-section-panel.eve-panel .taskforce-section-panel-content-image {
  max-width: 57.5%;
  left: -20%;
}
@media screen and (min-width: 1200px) and (max-height: 768px) {
  .taskforce-section-panel.eve-panel .taskforce-section-panel-content-image {
    max-width: 45%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.eve-panel .taskforce-section-panel-content-image-wrapper:before {
    background: #7cd7a0;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.eve-panel .mobile-image {
    left: 35%;
    max-width: 65%;
  }
}
.taskforce-section-panel.eve-panel .taskforce-section-image-underlay {
  background: #7cd79f;
}
.taskforce-section-panel.sage-panel .taskforce-section-panel-content-image {
  max-width: 37.5%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.sage-panel .taskforce-section-panel-content-image {
    max-width: 75%;
    left: 12%;
    position: relative;
  }
}
@media screen and (min-width: 1200px) and (max-height: 768px) {
  .taskforce-section-panel.sage-panel .taskforce-section-panel-content-image {
    max-width: 30%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.sage-panel .taskforce-section-panel-content-image-wrapper:before {
    background: #ffb404;
  }
}
.taskforce-section-panel.sage-panel .taskforce-section-image-underlay {
  background: #ffb404;
}
.taskforce-section-panel.rhea-panel .taskforce-section-panel-content-image {
  max-width: 37.5%;
  left: 10%;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.rhea-panel .taskforce-section-panel-content-image {
    left: 42%;
    max-width: 60%;
  }
}
@media screen and (min-width: 1200px) and (max-height: 768px) {
  .taskforce-section-panel.rhea-panel .taskforce-section-panel-content-image {
    max-width: 25%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.rhea-panel .taskforce-section-panel-content-image-wrapper:before {
    background: #f6521d;
  }
}
.taskforce-section-panel.rhea-panel .taskforce-section-image-underlay {
  background: #f6521d;
}
.taskforce-section-panel.janice-panel .taskforce-section-panel-content-image {
  max-width: 30%;
  left: 7%;
}
@media screen and (min-width: 1200px) and (max-height: 768px) {
  .taskforce-section-panel.janice-panel .taskforce-section-panel-content-image {
    max-width: 25%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.janice-panel .taskforce-section-panel-content-image {
    max-width: 75%;
    left: 30%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.janice-panel .taskforce-section-panel-content-image-wrapper:before {
    background: #50b477;
  }
}
.taskforce-section-panel.janice-panel .taskforce-section-image-underlay {
  background: #50b477;
}
.taskforce-section-panel.chief-panel .taskforce-section-panel-content-image {
  max-width: 37.5%;
  left: 10%;
}
@media screen and (min-width: 1200px) and (max-height: 768px) {
  .taskforce-section-panel.chief-panel .taskforce-section-panel-content-image {
    max-width: 25%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.chief-panel .taskforce-section-panel-content-image {
    max-width: 70%;
    left: 30%;
  }
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel.chief-panel .taskforce-section-panel-content-image-wrapper:before {
    background: #34caff;
  }
}
.taskforce-section-panel.chief-panel .taskforce-section-image-underlay {
  background: #34caff;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-panel:not(.intro-panel) .container {
    flex-direction: column-reverse;
    padding: 50px 1rem;
  }
}
@media screen and (max-width: 480px) {
  .taskforce-section-panel:not(.intro-panel) .container {
    padding: 25px 1rem;
  }
}
.taskforce-section-content {
  position: relative;
}
.taskforce-section h2 {
  margin-top: 0;
}
.taskforce-section h2 span {
  display: block;
}
.taskforce-section h2 span.text-primary {
  display: inline-block;
  margin-top: -20px;
  padding: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='464' height='171' viewBox='0 0 464 171' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M437.397 111.476C384.527 132.48 329.751 147.086 274.292 155.957C236.202 161.692 197.541 164.623 159.131 161.913C127.818 159.833 96.2127 153.893 66.4029 142.753C44.7901 134.197 -12.7419 111.949 2.55262 77.1274C16.6086 49.9633 59.528 35.2468 85.1906 27.5262C118.911 17.0482 153.202 8.93359 187.924 4.14364C215.675 0.109996 243.773 -1.30808 271.676 1.37051C321.693 5.90836 413.349 21.3969 452.371 56.2344C483.615 85.8722 444.578 112.201 421.045 124.381C379.67 146.172 334.635 157.658 289.406 163.094C244.26 168.972 198.612 172.926 153.146 170.027C139.132 169.05 125.132 167.427 111.271 164.355L112.106 159.723C125.675 162.858 139.522 164.607 153.383 165.71C198.613 169.019 244.065 165.505 289.1 160.085C327.232 155.799 365.155 147.228 400.963 131.534C413.919 125.862 426.806 119.638 438.677 111.413C473.358 87.6054 468.25 64.5695 433.973 44.7637C409.007 30.646 381.646 22.689 354.481 15.961C327.148 9.46931 299.454 4.88419 271.606 2.41043C215.814 -2.80494 159.799 7.45249 105.634 22.106C85.3158 27.8255 65.5957 36.0189 46.488 45.5673C27.6864 55.2417 -11.5312 76.1978 8.45334 104.418C14.0201 111.823 21.1872 117.369 28.6745 122.254C37.7343 128.036 47.2951 133.015 57.0508 137.128C73.2917 143.982 90.2841 149.607 107.318 153.089C120.539 156.114 135.319 158.052 148.776 159.439C218.472 165.426 288.543 154.239 356.123 135.269C383.108 127.453 409.981 118.504 436.061 107.506L437.383 111.445L437.397 111.476Z' fill='%2334CAFF'/%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 480px) {
  .taskforce-section-image {
    display: none;
  }
}
.taskforce-section-image-underlay {
  width: 21vw;
  padding-top: 19.5vw;
  border-radius: 32px;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .taskforce-section-image-underlay {
    display: none;
  }
}
.taskforce-section-image-eve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22.5%;
  z-index: 1;
}
@media screen and (min-width: 1640px) {
  .taskforce-section-image-eve {
    left: 3%;
  }
}
.taskforce-section-image-team {
  display: none;
}
@media screen and (max-width: 480px) {
  .taskforce-section-image-team {
    display: block;
  }
}

.home-template .gh-navigation .home-link,
.page-template:not(.page-blog) .gh-navigation .home-link {
  display: none;
}

.why-axari-section {
  padding-top: 15rem;
  background: #f6f6f6;
}
@media screen and (max-width: 1200px) {
  .why-axari-section {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .why-axari-section {
    padding-top: 7.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why-axari-section {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section {
    padding-top: 2.5rem;
  }
}
.why-axari-section-title {
  margin: 0 auto 7.5rem auto;
  line-height: 125%;
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-title {
    margin-bottom: 2.5rem;
  }
}
.why-axari-section-title span {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-title span {
    display: inline;
  }
}
.why-axari-section-cards-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: min-content;
  gap: 2rem;
  padding-bottom: 25px;
}
@media screen and (max-width: 1200px) {
  .why-axari-section-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-cards-row {
    gap: 1rem;
  }
}
.why-axari-section-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 4px 10px 10.1px rgba(204, 204, 204, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  padding: 1rem 1.875rem 1rem 1rem;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .why-axari-section-card {
    width: calc(33.333% - 1.25rem);
    flex-direction: column;
    padding: 1rem;
  }
}
@media screen and (max-width: 1023.9px) {
  .why-axari-section-card {
    width: calc(50% - 1rem);
    flex-direction: column;
    padding: 10px 10px 20px 10px;
    gap: 1rem;
  }
}
.why-axari-section-card:nth-child(1) {
  grid-column: 1/8;
  grid-row: 1/3;
}
.why-axari-section-card:nth-child(2) {
  grid-column: 8/-1;
  grid-row: 1/3;
}
.why-axari-section-card:nth-child(3) {
  grid-column: 1/5;
  grid-row: 3/span 6;
  flex-direction: column;
  padding: 1rem;
}
.why-axari-section-card:nth-child(3) .why-axari-section-card-image {
  max-width: 100%;
}
.why-axari-section-card:nth-child(3) .why-axari-section-card-image img {
  max-width: 100%;
}
.why-axari-section-card:nth-child(3) .why-axari-section-card-content {
  justify-content: flex-start;
  padding: 0 1.875rem;
}
@media screen and (max-width: 1024px) {
  .why-axari-section-card:nth-child(3) .why-axari-section-card-content {
    padding: 1rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-card:nth-child(3) .why-axari-section-card-content {
    padding: 0 10px;
  }
}
.why-axari-section-card:nth-child(4) {
  grid-column: 5/-1;
  grid-row: 3/span 3;
}
.why-axari-section-card:nth-child(5) {
  grid-column: 5/-1;
  grid-row: 6/span 3;
}
@media screen and (max-width: 480px) {
  .why-axari-section-card {
    width: 100%;
    flex-direction: column;
    padding: 10px;
  }
}
.why-axari-section-card-image {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  position: relative;
  flex-grow: 1;
  border-radius: 16px;
  overflow: hidden;
  max-width: 250px;
  display: flex;
  height: auto;
}
@media screen and (max-width: 1023.9px) {
  .why-axari-section-card-image {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-image {
    height: auto;
    padding-top: 56.25%;
    background-color: #34caff;
    position: relative;
  }
}
.why-axari-section-card-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-card-image {
    flex-grow: 0;
    max-width: 100%;
  }
  .why-axari-section-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-image {
    flex-grow: 1;
  }
  .why-axari-section-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
  }
}
.why-axari-section-card-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .why-axari-section-card-content * {
    max-width: 380px;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.why-axari-section-card-content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 1640px) {
  .why-axari-section-card-content h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1280px) {
  .why-axari-section-card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .why-axari-section-card-content h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-card-content h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-content h3 {
    font-size: 20px;
    width: 100%;
  }
}
.why-axari-section-card-content p {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .why-axari-section-card-content p {
    margin-bottom: 15px;
  }
}
.why-axari-section-card-problem {
  font-size: 24px;
  font-weight: 500;
  line-height: 124%;
  background: linear-gradient(92.38deg, #cf3838 0.67%, #4b1c1c 58.21%);
}
@media screen and (max-width: 1640px) {
  .why-axari-section-card-problem {
    font-size: 20px;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .why-axari-section-card-problem {
    font-size: 18px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why-axari-section-card-problem {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-problem {
    width: 50%;
    font-size: 14px;
  }
}
.why-axari-section-card-solution {
  line-height: 124%;
  background: linear-gradient(94.97deg, #7abd3f -2.6%, #808080 57.42%);
}
@media screen and (max-width: 480px) {
  .why-axari-section-card-solution {
    width: 50%;
    font-size: 12px;
  }
}

.benefits-section {
  background: #22b8ed;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767.9px) {
  .benefits-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.benefits-section-title {
  line-height: 109%;
  text-align: center;
  letter-spacing: -0.04em;
  margin: 0;
  margin-bottom: 7.5rem;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .benefits-section-title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .benefits-section-title {
    margin-bottom: 2.5rem;
  }
}
.benefits-section-cards-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .benefits-section-cards-row {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767.9px) {
  .benefits-section-cards-row {
    gap: 1rem;
  }
}
.benefits-section-card {
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  width: calc(25% - 2rem);
  gap: 2rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 2.5rem 5rem 2.5rem;
}
@media screen and (max-width: 1640px) {
  .benefits-section-card {
    max-width: 320px;
    gap: 1.5rem;
    padding: 2.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .benefits-section-card {
    width: calc(25% - 1.5rem);
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .benefits-section-card {
    width: calc(50% - 1.5rem);
    padding: 2.5rem 1rem;
  }
}
@media screen and (max-width: 767.9px) {
  .benefits-section-card {
    width: calc(50% - 1rem);
    padding: 2.5rem 1rem;
  }
}
.benefits-section-card-image {
  width: 100%;
}
.benefits-section-card-image img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (min-width: 1600px) {
  .benefits-section-card-image img {
    max-width: 245px;
    max-height: 175px;
  }
}
@media screen and (max-width: 1024px) {
  .benefits-section-card-image img {
    max-width: 200px;
    max-height: 140px;
  }
}
@media screen and (max-width: 767.9px) {
  .benefits-section-card-image img {
    max-width: 150px;
    max-height: 100px;
  }
}
@media screen and (max-width: 480px) {
  .benefits-section-card-image img {
    max-width: 120px;
    max-height: 80px;
  }
}
.benefits-section-card-content {
  color: #1a1a1a;
}
.benefits-section-card-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.04em;
  margin: 0;
  color: #bcbbbb;
}
@media screen and (min-width: 480px) {
  .benefits-section-card-content p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .benefits-section-card-content p {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .benefits-section-card-content p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .benefits-section-card-content p {
    font-size: 24px;
  }
}
@media screen and (min-width: 1640px) {
  .benefits-section-card-content p {
    font-size: 28px;
  }
}
@media screen and (min-width: 1920px) {
  .benefits-section-card-content p {
    font-size: 32px;
  }
}
.benefits-section-card-content p span {
  font-weight: bold;
}
.benefits-section-subtitle {
  font-weight: 600;
  font-size: 43.75px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 15rem auto 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 1280px) {
  .benefits-section-subtitle {
    max-width: 860px;
  }
}
@media screen and (min-width: 1400px) {
  .benefits-section-subtitle {
    max-width: 960px;
  }
}
@media screen and (min-width: 1640px) {
  .benefits-section-subtitle {
    max-width: 1024px;
  }
}
@media screen and (max-width: 1640px) {
  .benefits-section-subtitle {
    font-size: 36px;
    margin: 12rem auto 0 auto;
  }
}
@media screen and (max-width: 1440px) {
  .benefits-section-subtitle {
    font-size: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .benefits-section-subtitle {
    font-size: 30px;
    margin: 10rem auto 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .benefits-section-subtitle {
    font-size: 28px;
    margin: 7rem auto 0 auto;
  }
}
@media screen and (max-width: 767.9px) {
  .benefits-section-subtitle {
    font-size: 24px;
    margin: 5rem auto 0 auto;
  }
}

.error-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 112px 30px;
  text-align: center;
}
.error-content-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.error-content img {
  max-width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .error-content img {
    max-width: 480px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .error-content img {
    max-width: 600px;
    margin-bottom: 50px;
  }
}
.error-content .error-message {
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .error-content .error-message {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .error-content .error-message {
    margin-bottom: 50px;
  }
}
.error-content .error-description {
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .error-content .error-description {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .error-content .error-description {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .error-content .error-description {
    font-size: 30px;
  }
}
.error-content .error-home-link {
  display: block;
  font-size: 20px;
}

.privacy-policy {
  padding: 100px 0;
}
.privacy-policy h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
.privacy-policy h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
.privacy-policy p {
  line-height: 1.5;
}
.privacy-policy ul {
  list-style: disc;
  padding-left: 20px;
}
.privacy-policy ol {
  list-style: decimal;
  padding-left: 20px;
}
.privacy-policy li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.contact {
  padding: 5rem 0;
}
@media screen and (max-width: 767.9px) {
  .contact {
    padding: 4rem 0;
  }
}
@media screen and (max-width: 480px) {
  .contact {
    padding: 2.5rem 0;
  }
}
.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog .gh-navigation {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .page-blog .gh-navigation {
    top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .page-blog .gh-navigation {
    top: 30px;
  }
}

.blog-link {
  color: #ffffff;
  position: relative;
  display: inline-block;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
  transform: scaleX(0);
}
.blog-link:hover {
  color: #ffffff;
}
.blog-link:hover:before {
  opacity: 1;
  transform: scaleX(1);
}

.page-blog .gh-navigation .blog-link,
.post-template .gh-navigation .blog-link {
  display: none;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (max-width: 1024px) {
  .blog-main {
    gap: 56px;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main {
    gap: 40px;
  }
}
.blog-main .blog-hero {
  padding-top: 110px;
  background: radial-gradient(85.62% 273.09% at 14.37% 74.83%, #a1e6ff 0%, #47cfff 46.44%);
  margin-top: -1px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-hero {
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}
.blog-main .blog-hero .container {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .blog-main .blog-hero .container {
    gap: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-hero .container {
    gap: 30px;
    flex-direction: column-reverse;
  }
}
.blog-main .blog-hero-media {
  position: relative;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .blog-main .blog-hero-media {
    width: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-hero-media {
    width: 100%;
  }
}
.blog-main .blog-hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .blog-main .blog-hero-content {
    width: 50%;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-hero-content {
    width: 100%;
  }
}
.blog-main .blog-hero-content .blog-hero-title {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .blog-main .blog-hero-content .blog-hero-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-hero-content .blog-hero-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 480px) {
  .blog-main .blog-hero-content .blog-hero-title {
    font-size: 2rem;
  }
}
.blog-main .blog-hero-content .blog-hero-title strong {
  font-weight: 600;
}
.blog-main .blog-hero-content .blog-hero-description {
  font-size: 25px;
  line-height: 140%;
  color: #ffffff;
  margin: 0;
  max-width: 520px;
}
@media screen and (max-width: 1400px) {
  .blog-main .blog-hero-content .blog-hero-description {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  .blog-main .blog-hero-content .blog-hero-description {
    font-size: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-hero-content .blog-hero-description {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .blog-main .blog-hero-content .blog-hero-description {
    font-size: 16px;
  }
}
.blog-main .blog-hero-content .blog-hero-cta {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: #0f9be7;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-main .blog-hero-content .blog-hero-cta:hover {
  background: #066cac;
  transform: translateY(-1px);
}
.blog-main .blog-search {
  width: 100%;
}
.blog-main .blog-search .blog-search-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 767.9px) {
  .blog-main .blog-search .blog-search-inner {
    padding: 0 18px;
    gap: 12px;
  }
}
.blog-main .blog-search-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #34caff;
  border-radius: 999px;
  background: #fff;
  padding: 0;
  gap: 12px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-search-field {
    gap: 10px;
  }
}
.blog-main .blog-search-field svg {
  color: #0f9be7;
}
.blog-main .blog-search-button {
  padding: 12px 18px;
  border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background: #34caff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-search-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}
.blog-main .blog-search-button:hover {
  background: rgb(1, 188.684729064, 255);
}
.blog-main .blog-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
  color: #222;
  padding: 12px 18px 12px 0;
  border: 0;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-search-input {
    font-size: 14px;
    padding: 10px 16px 10px 0;
  }
}
.blog-main .blog-search-input::placeholder {
  color: #828282;
}
.blog-main .blog-search-input:focus, .blog-main .blog-search-input:active {
  outline: none;
  border: 0;
}
.blog-main .blog-search-status {
  font-size: 15px;
  color: #9c1f1f;
  margin: 0;
  display: none;
}
.blog-main .blog-search-status.is-visible {
  display: block;
}
.blog-main .blog-filter {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.blog-main .blog-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(15, 155, 231, 0.3);
  border-radius: 999px;
  background: #fff;
  background: #34caff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.blog-main .blog-filter-toggle:hover {
  background: rgb(1, 188.684729064, 255);
  border-color: #34caff;
}
.blog-main .blog-filter-toggle[aria-expanded=true] {
  border-color: #0f9be7;
}
.blog-main .blog-filter-toggle[aria-expanded=true] .blog-filter-chevron {
  transform: rotate(180deg);
}
.blog-main .blog-filter-chevron {
  transition: transform 0.2s ease;
}
.blog-main .blog-filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  max-height: 260px;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(15, 155, 231, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 100;
}
.blog-main .blog-filter-dropdown li {
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s ease;
}
.blog-main .blog-filter-dropdown li:hover {
  background: rgba(15, 155, 231, 0.08);
  color: #0f9be7;
}
.blog-main .blog-filter-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-main .blog-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 14px;
  background: rgba(15, 155, 231, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #0f9be7;
}
.blog-main .blog-filter-chip-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: #0f9be7;
  background: transparent;
  cursor: pointer;
}
.blog-main .blog-filter-chip-close svg {
  width: 8px;
  height: 8px;
}
.blog-main .blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 24px 0;
}
.blog-main .blog-pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #34caff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.blog-main .blog-pagination-link:hover:not(.is-disabled) {
  background: rgb(1, 188.684729064, 255);
  transform: translateY(-1px);
}
.blog-main .blog-pagination-link.is-disabled {
  background: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}
.blog-main .blog-pagination-link svg {
  width: 14px;
  height: 14px;
}
.blog-main .blog-pagination-info {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .blog-main .blog-pagination {
    gap: 12px;
  }
  .blog-main .blog-pagination-link {
    padding: 8px 14px;
    font-size: 13px;
  }
  .blog-main .blog-pagination-link span {
    display: none;
  }
}
.blog-main .blog-list .blog-more {
  margin-top: 40px;
  text-align: center;
}
.blog-main .blog-list .blog-more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(15, 155, 231, 0.12);
  color: #0f9be7;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
.blog-main .blog-list .blog-more a:hover {
  background: rgba(15, 155, 231, 0.2);
}
.blog-main .cta-section {
  background-color: transparent;
}
.blog-main .cta-section-text {
  color: #535353;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 640px) {
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 155, 231, 0.12);
  background: #fff;
  box-shadow: 7px 10px 15.7px rgba(187, 187, 187, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  background: radial-gradient(76.85% 29.93% at 48.03% 100%, #adeaff 0%, #ffffff 100%);
  box-shadow: 7px 10px 15.7px rgba(58, 183, 232, 0.25);
}
.blog-card .blog-card-media {
  position: relative;
  padding-bottom: 60%;
}
.blog-card .blog-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.blog-card .blog-card-body {
  padding: 26px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .blog-card .blog-card-body {
    padding: 22px 10px;
  }
}
@media screen and (max-width: 480px) {
  .blog-card .blog-card-body {
    padding: 20px 8px;
  }
}
.blog-card .blog-card-body .blog-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  color: #474747;
}
.blog-card .blog-card-body .blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-card .blog-card-body .blog-card-excerpt {
  margin: 0;
  color: #555;
  line-height: 1.5;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .blog-card .blog-card-body .blog-card-excerpt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .blog-card .blog-card-body .blog-card-excerpt {
    font-size: 0.75rem;
  }
}
.blog-card .blog-card-body .blog-card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-card .blog-card-body .blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card .blog-card-body .blog-card-meta a,
.blog-card .blog-card-body .blog-card-meta span {
  font-size: 16px;
  color: #535353;
}
@media screen and (max-width: 480px) {
  .blog-card .blog-card-body .blog-card-meta a,
  .blog-card .blog-card-body .blog-card-meta span {
    font-size: 14px;
  }
}
.blog-card .blog-card-body .blog-card-meta img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #0f9be7;
}
@media screen and (max-width: 480px) {
  .blog-card-tag {
    font-size: 12px;
  }
}

.blog-post {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .blog-post {
    padding-top: 96px;
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-post {
    padding-top: 80px;
    padding-bottom: 56px;
  }
}
.blog-post .blog-article-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.blog-post .blog-article-header .blog-article-tag {
  align-self: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 155, 231, 0.12);
  color: #0f9be7;
  text-decoration: none;
}
.blog-post .blog-article-header .blog-article-title {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .blog-post .blog-article-header .blog-article-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .blog-post .blog-article-header .blog-article-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .blog-post .blog-article-header .blog-article-title {
    font-size: 2rem;
  }
}
.blog-post .blog-article-header .blog-article-excerpt {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .blog-post .blog-article-header .blog-article-excerpt {
    font-size: 18px;
  }
}
.blog-post .blog-article-date {
  font-size: 1.15rem;
  color: #888888;
}
@media screen and (max-width: 480px) {
  .blog-post .blog-article-date {
    font-size: 14px;
  }
}
.blog-post .blog-article-byline {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .blog-post .blog-article-byline {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.blog-post .blog-article-author span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-post .blog-article-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-post .blog-article-details {
  display: flex;
  align-items: center;
  gap: 50px;
}
.blog-post .blog-article-reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-post .blog-article-reading-time svg {
  width: 20px;
}
.blog-post .blog-article-media {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #f3f7fb;
}
.blog-post .blog-article-media img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-post .blog-article-media figcaption {
  padding: 16px 20px;
  font-size: 13px;
  color: #666;
}
.blog-post .blog-article-layout {
  display: flex;
  flex-direction: column-reverse;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-layout {
    flex-direction: row;
  }
}
.blog-post .blog-article-content {
  font-size: 14px;
  line-height: 140%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-content {
    width: 70%;
    margin-bottom: 30px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post .blog-article-content {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post .blog-article-content {
    font-size: 20px;
    margin-bottom: 60px;
  }
}
.blog-post .blog-article-content p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 140%;
  color: #686868;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-content p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post .blog-article-content p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post .blog-article-content p {
    font-size: 20px;
  }
}
.blog-post .blog-article-content blockquote {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 4px solid #0f9be7;
  color: #444;
  font-style: italic;
}
.blog-post .blog-article-aside {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-aside {
    width: 30%;
  }
}
.blog-post .blog-article-aside .blog-article-toc {
  position: sticky;
  top: 100px;
  border: 2px solid #f0f0f0;
  border-radius: 21px;
  padding: 30px 20px 30px 25px;
}
.blog-post .blog-article-aside .blog-article-toc-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-aside .blog-article-toc-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post .blog-article-aside .blog-article-toc-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post .blog-article-aside .blog-article-toc-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post .blog-article-aside .blog-article-toc-title {
    font-size: 30px;
  }
}
.blog-post .blog-article-aside ol {
  list-style: none;
  padding-right: 0;
  padding-left: 0;
  position: relative;
}
@media screen and (min-width: 480px) {
  .blog-post .blog-article-aside ol {
    border-left: 3px solid #d9d9d9;
    padding-left: 15px;
  }
}
.blog-post .blog-article-aside li {
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width: 480px) {
  .blog-post .blog-article-aside li:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 5px;
    background: #47cfff;
    left: -19px;
    top: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .blog-post .blog-article-aside li.is-active:before {
    opacity: 1;
  }
}
.blog-post .blog-article-aside li.level-2 {
  padding-left: 0;
  font-size: 18px;
  margin-bottom: 15px;
}
.blog-post .blog-article-aside li.level-3 {
  padding-left: 15px;
  font-size: 17px;
}
.blog-post .blog-article-aside li.level-4 {
  padding-left: 30px;
  font-size: 16px;
}
.blog-post .blog-article-aside li.level-5 {
  padding-left: 45px;
  font-size: 15px;
}
.blog-post .blog-article-aside li.level-6 {
  padding-left: 60px;
  font-size: 14px;
}
.blog-post .blog-article-aside a {
  font-size: 14px;
  display: block;
  line-height: 140%;
  font-weight: 500;
  color: #686868;
  text-decoration: none;
  transition: color 0.2s ease, font-weight 0.2s ease;
}
@media screen and (min-width: 768px) {
  .blog-post .blog-article-aside a {
    font-size: 0.8em;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post .blog-article-aside a {
    font-size: 1em;
  }
}
.blog-post .blog-article-aside a:hover {
  color: #0f9be7;
}
.blog-post .blog-article-aside a.is-active {
  color: #0f9be7;
}
.blog-post .blog-article-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-top: 40px;
}
.blog-post .blog-article-footer .blog-article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-post .blog-article-footer .blog-article-tags a {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 155, 231, 0.12);
  color: #0f9be7;
  text-decoration: none;
  font-weight: 600;
}
.blog-post h1 {
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 120%;
}
@media screen and (min-width: 480px) {
  .blog-post h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .blog-post h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post h1 {
    font-size: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post h1 {
    font-size: 52px;
  }
}
.blog-post h2 {
  font-size: 25px;
  line-height: 120%;
}
@media screen and (min-width: 480px) {
  .blog-post h2 {
    font-size: 28px;
  }
}
@media screen and (min-width: 768px) {
  .blog-post h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post h2 {
    font-size: 34px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post h2 {
    font-size: 38px;
  }
}
.blog-post h3 {
  font-size: 20px;
  line-height: 120%;
}
@media screen and (min-width: 480px) {
  .blog-post h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .blog-post h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post h3 {
    font-size: 32px;
  }
}
.blog-post h4 {
  font-size: 20px;
  line-height: 120%;
}
@media screen and (min-width: 480px) {
  .blog-post h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .blog-post h4 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-post h4 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-post h4 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-post h4 {
    font-size: 52px;
  }
}
@media screen and (min-width: 1640px) {
  .blog-post h4 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1920px) {
  .blog-post h4 {
    font-size: 60px;
  }
}
.blog-post p + h2,
.blog-post p + h3,
.blog-post p + h4,
.blog-post p + h5,
.blog-post p + h6 {
  margin-top: 40px;
}

.blog-related-title {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-related-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.blog-related-grid .post {
  width: 33.33%;
  padding: 12px;
  background: #ffffff;
  box-shadow: 7px 10px 14px rgba(197, 197, 197, 0.25);
  border-radius: 24px;
}
@media screen and (max-width: 480px) {
  .blog-related-grid .post {
    width: 100%;
  }
}
.blog-related-grid .gh-card-image {
  width: 100%;
}
.blog-related-grid .gh-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-related-grid .gh-card-wrapper {
  padding: 12px;
}
.blog-related-grid .gh-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-related-grid .gh-card-author {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-related-grid .gh-card-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-related-grid h3 {
  font-size: 20px;
  margin-top: 15px;
}
@media screen and (min-width: 480px) {
  .blog-related-grid h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 768px) {
  .blog-related-grid h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-related-grid h3 {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .blog-related-grid h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-related-grid h3 {
    font-size: 30px;
  }
}
.blog-related-grid p {
  font-size: 14px;
  line-height: 140%;
  color: #686868;
}
@media screen and (min-width: 480px) {
  .blog-related-grid p {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  .blog-related-grid p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .blog-related-grid p {
    font-size: 18px;
  }
}

.blog-article-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #666;
  font-size: 15px;
}
.blog-article-meta .blog-article-authors {
  display: flex;
  gap: 10px;
  align-items: center;
}
.blog-article-meta .blog-article-authors .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.reading-time {
  display: flex;
  font-size: 14px;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 1;
  background: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 480px) {
  .reading-time {
    font-size: 12px;
  }
}
.reading-time svg {
  width: 20px;
}
@media screen and (max-width: 480px) {
  .reading-time svg {
    width: 16px;
  }
}

.post-template .cta-section {
  background-color: transparent;
}
.post-template .cta-section-text {
  color: #535353;
}

.blog-post-back {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-bottom: 20px;
}
.blog-post-back svg {
  transition: transform 0.2s ease;
  transform: rotate(180deg) translateX(0);
}
.blog-post-back:hover svg {
  transform: rotate(180deg) translateX(2px);
}

.tag-template .gh-main.gh-outer,
.author-template .gh-main.gh-outer {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .tag-template .gh-main.gh-outer,
  .author-template .gh-main.gh-outer {
    padding-top: 96px;
    padding-bottom: 72px;
  }
}
@media screen and (max-width: 767.9px) {
  .tag-template .gh-main.gh-outer,
  .author-template .gh-main.gh-outer {
    padding-top: 80px;
    padding-bottom: 56px;
  }
}

.gh-navigation {
  background-color: #34caff;
  position: relative;
  z-index: 100;
}

.gh-navigation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 1rem;
  z-index: 99;
  opacity: 0;
}
@media screen and (max-width: 767.9px) {
  .gh-navigation-inner {
    opacity: 1;
  }
}
@media screen and (min-width: 480px) {
  .gh-navigation-inner {
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .gh-navigation-inner {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1024px) {
  .gh-navigation-inner {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1200px) {
  .gh-navigation-inner {
    padding: 55px 0;
  }
}
.sub-page-navigation .gh-navigation-inner {
  position: relative;
  padding: 15px 0;
  opacity: 1;
}

.gh-navigation-logo {
  flex: 0 0 auto;
  margin-right: auto;
}
.gh-navigation-logo img {
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  .gh-navigation-logo img {
    max-width: 125px;
  }
}
@media screen and (min-width: 1024px) {
  .gh-navigation-logo img {
    max-width: 150px;
  }
}

.gh-navigation-menu {
  flex: 1;
  display: flex;
  list-style: none;
  justify-content: flex-end;
  gap: 15px;
}
.gh-navigation-menu .btn {
  padding: 10px 25px;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .gh-navigation-menu .btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1640px) {
  .gh-navigation-menu .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 767.9px) {
  .gh-navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 80px 24px 32px;
    background: linear-gradient(180deg, #0a2540 0%, #0f3a5c 100%);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }
  .gh-navigation-menu li {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .gh-navigation-menu li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .gh-navigation-menu .gh-navigation-link {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.gh-navigation-menu.is-open {
  transform: translateX(0);
}

.gh-navigation-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 98;
  pointer-events: none;
}
.gh-navigation-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gh-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .gh-burger {
    display: flex;
  }
}
.gh-burger svg {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gh-burger .icon-burger {
  opacity: 1;
}
.gh-burger .icon-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}
.gh-burger.is-active .icon-burger {
  opacity: 0;
  transform: rotate(90deg);
}
.gh-burger.is-active .icon-close {
  opacity: 1;
  transform: rotate(0);
}

body.menu-open {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.menu-open {
    overflow: auto;
  }
}

.btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  outline: none;
  font-size: 12px;
  font-weight: 400;
  padding: 8px 16px;
  line-height: 140%;
  letter-spacing: -0.04em;
  font-style: normal;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (min-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .btn {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .btn {
    font-size: 18px;
    padding: 13px 25px;
  }
}
@media screen and (min-width: 1640px) {
  .btn {
    font-size: 20px;
  }
}
.btn-primary {
  background-color: #0f3c5c;
  color: #34caff;
}
.btn-primary:hover {
  background-color: #2a537c;
}
.btn-blue {
  background-color: #22b8ed;
  color: #ffffff;
}
.btn-blue:hover {
  background-color: #2a537c;
}
.btn-secondary {
  background-color: #ffffff;
  color: #34caff;
}
.btn-secondary:hover {
  background-color: #f5f5f5;
}
.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.btn-outline:hover {
  background-color: #ffffff;
  color: #34caff;
}
.btn-outline-gray {
  border: 1px solid #535353;
  color: #535353;
}
.btn-outline-gray:hover {
  background-color: #535353;
  color: #ffffff;
}
.btn-outline-primary {
  border: 1px solid #34caff;
  color: #34caff;
}
.btn-outline-primary:hover {
  background-color: #34caff;
  color: #ffffff;
}
/*# sourceMappingURL=main.css.map */