@charset "UTF-8";
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 500px;
  }
}
@media (min-width: 600px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 769px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 860px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 900px;
  }
}
@media (min-width: 1025px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1320px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1680px) {
  .container {
    max-width: 1400px;
  }
}
/* @media (min-width: 1200px) and (max-height: 820px) {
  .home .container {
      max-width: 1100px;
  }
}
@media (min-width: 1200px) and (max-height: 800px) {
  .home .container {
      max-width: 1060px;
  }
}
@media (min-width: 1200px) and (max-height: 768px) {
  .home .container {
      max-width: 1024px;
  }
}
@media (min-width: 1200px) and (max-height: 700px) {
  .home .container {
      max-width: 980px;
  }
}
@media (min-width: 1200px) and (max-height: 625px) {
  .home .container {
      max-width: 960px;
  }
} */
@media (min-width: 1440px) {
  .container--lg {
    max-width: 1380px;
  }
}
.d-inline-block {
  display: inline-block;
}

.d-none {
  display: none;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-start {
  -ms-flex-align: flex-start !important;
  align-items: flex-start !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

/* Show modal when targeted or with JS class */
.modal.show {
  display: block;
}

/* Modal dialog */
.modal-dialog {
  max-width: none;
  pointer-events: none;
  position: relative;
  width: auto;
  display: flex;
  justify-content: center;
  margin-top: 2vh;
}

/* Modal content box */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
  outline: 0;
  pointer-events: auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

span.close {
  position: absolute;
}

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

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

q {
  quotes: "“" "”";
}

q::before {
  content: open-quote !important;
}

q::after {
  content: close-quote !important;
}

a {
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none !important;
}

a:active,
a:focus {
  outline: none;
}

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

input,
select {
  vertical-align: middle;
}

textarea {
  overflow: auto;
  resize: none;
}

textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  outline: none;
  border-radius: 0;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0;
}

textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=button]:focus,
input[type=submit]:focus {
  outline: none;
  box-shadow: none;
}

[placeholder]:focus::-ms-input-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}

[placeholder]:focus::-moz-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}

[placeholder]:focus::-webkit-input-placeholder {
  transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  opacity: 0;
}

figcaption,
figure,
main {
  /* 1 */
  display: block;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

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

button,
input,
optgroup,
select {
  margin: 0;
}

button,
input {
  overflow: visible;
}

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

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

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

@font-face {
  font-family: "New Hero";
  src: url("../fonts/new-hero-bold.woff2") format("woff2"), url("../fonts/new-hero-bold.woff") format("woff"), url("../fonts/new-hero-bold.ttf") format("truetype"), url("../fonts/new-hero-bold.woff2") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "New Hero";
  src: url("../fonts/new-hero-medium.woff2") format("woff2"), url("../fonts/new-hero-medium.woff") format("woff"), url("../fonts/new-hero-medium.ttf") format("truetype"), url("../fonts/new-hero-medium.woff2") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "New Hero";
  src: url("../fonts/new-hero-regular.woff2") format("woff2"), url("../fonts/new-hero-regular.woff") format("woff"), url("../fonts/new-hero-regular.ttf") format("truetype"), url("../fonts/new-hero-regular.woff2") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  overscroll-behavior: none;
}

main {
  transition: opacity 0.3s ease;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
@media only screen and (max-width: 1024.9px) {
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open main,
  body.menu-open header .web-btn:not(.mobile-only) {
    opacity: 0.4;
    pointer-events: none;
  }
}

input,
select,
textarea {
  font-family: inherit;
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media only screen and (max-width: 767.9px) {
  .desktop-only {
    display: none !important;
  }
}

@-moz-document url-prefix() {
  select:invalid {
    color: rgba(102, 112, 133, 0.6);
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "New Hero", sans-serif;
}

.subpage header.main-header {
  top: 0 !important;
}

header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  backdrop-filter: blur(3px);
  background: rgba(7, 7, 8, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1366.9px) {
  header.main-header {
    padding: 9px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header {
    padding: 8px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header > .container {
    justify-content: space-between;
  }
  header.main-header > .container > .button-wrapper {
    margin-left: auto;
  }
}
header.main-header .web-logo img {
  height: 30px;
  display: block;
  width: 110px;
}
@media only screen and (max-width: 1024.9px) {
  header.main-header .web-logo img {
    width: 100px;
  }
}
@media only screen and (max-width: 991.9px) {
  header.main-header .web-logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header .web-logo img {
    height: 28px;
    width: 103px;
  }
}
header.main-header nav {
  margin-left: 72px;
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 1366.9px) {
  header.main-header nav {
    margin-left: 32px;
    gap: 16px;
  }
}
@media only screen and (max-width: 1024.9px) {
  header.main-header nav {
    gap: 12px;
    margin-left: 24px;
  }
}
@media only screen and (max-width: 991.9px) {
  header.main-header nav {
    gap: 5px;
    margin-left: 15px;
  }
}
header.main-header nav a:not(.web-btn):not(.web-logo) {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  padding: 4px 10px 0;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1024.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    font-size: 13px;
    padding: 4px 8px 0;
  }
}
@media screen and (max-width: 991.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    font-size: 12px;
    padding: 4px 6px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    font-size: 14px;
  }
}
@media screen and (max-width: 575.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    font-size: 15px;
  }
}
header.main-header nav a:not(.web-btn):not(.web-logo)[aria-label="Contact us"] {
  margin-left: auto;
}
header.main-header nav a:not(.web-btn):not(.web-logo)[aria-label="Sign in"] {
  margin-right: 15px;
}
@media only screen and (max-width: 1024.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    padding-top: 0;
  }
}
@media only screen and (max-width: 575.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    margin-right: 16px;
  }
}
@media only screen and (max-width: 479.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 379.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    margin-right: 0;
  }
}
header.main-header nav a:not(.web-btn):not(.web-logo):hover {
  color: #ffffff;
  opacity: 0.8;
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav a:not(.web-btn):not(.web-logo) {
    padding: 12px 2px;
    font-size: 18px;
    width: 100%;
  }
  header.main-header nav a:not(.web-btn):not(.web-logo):not(:nth-child(-n+2)) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
header.main-header nav a:not(.web-btn):not(.web-logo).active {
  color: #e89d25;
}
header.main-header nav .nav-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  padding: 4px 10px 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
@media only screen and (max-width: 1024.9px) {
  header.main-header nav .nav-link {
    padding: 4px 8px 0;
    font-size: 13px;
  }
}
@media screen and (max-width: 991.9px) {
  header.main-header nav .nav-link {
    font-size: 12px;
    padding: 4px 6px 0;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 575.9px) {
  header.main-header nav .nav-link {
    font-size: 16px;
  }
}
header.main-header nav .nav-link:hover {
  color: #ffffff;
  opacity: 0.8;
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-link {
    padding: 12px 2px;
    font-size: 18px;
    width: 100%;
  }
}
header.main-header nav .nav-dropdown {
  position: relative;
}
header.main-header nav .nav-dropdown .nav-link {
  align-items: center;
  background: transparent;
  border: none;
  display: flex;
  text-align: left;
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown .nav-link {
    border-top: 1px solid hsla(0, 0%, 100%, 0.12);
  }
}
header.main-header nav .nav-caret {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}
header.main-header nav .nav-caret svg {
  width: 12px;
  height: 12px;
  display: block;
  transition: transform 0.2s ease;
}
header.main-header nav .nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 180px;
  background: rgba(7, 7, 8, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  z-index: 10;
  padding: 8px;
}
header.main-header nav .nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
  background: transparent;
}
header.main-header nav .nav-dropdown__menu a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.7;
  white-space: nowrap;
}
@media screen and (max-width: 991.9px) {
  header.main-header nav .nav-dropdown__menu a {
    font-size: 13px;
  }
}
@media screen and (max-width: 575.9px) {
  header.main-header nav .nav-dropdown__menu a {
    font-size: 14px;
  }
}
header.main-header nav .nav-dropdown__menu a, header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo) {
  padding: 8px 16px;
  margin-bottom: 8px;
}
header.main-header nav .nav-dropdown__menu a:last-child, header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo):last-child {
  margin-bottom: 0;
}
header.main-header nav .nav-dropdown__menu a:hover, header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo):hover {
  color: #ffffff;
  opacity: 1;
}
header.main-header nav .nav-dropdown__menu a.active, header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo).active {
  color: #ffffff;
  background: #191919;
  border-radius: 9px;
  opacity: 1;
}
header.main-header nav .nav-dropdown__menu a:hover {
  color: #ffffff;
  border-radius: 9px;
  opacity: 1;
}
header.main-header nav .nav-dropdown__menu a.active {
  color: #ffffff;
  background: #191919;
  border-radius: 9px;
  opacity: 1;
}
header.main-header nav .nav-dropdown:hover .nav-dropdown__menu,
header.main-header nav .nav-dropdown:focus-within .nav-dropdown__menu,
header.main-header nav .nav-dropdown.is-open > .nav-dropdown__menu {
  display: block;
}
header.main-header nav .nav-dropdown:hover .nav-caret svg,
header.main-header nav .nav-dropdown:focus-within .nav-caret svg,
header.main-header nav .nav-dropdown.is-open .nav-caret svg {
  transform: rotate(180deg);
}
@media only screen and (min-width: 992px) {
  header.main-header nav .nav-dropdown:hover .nav-caret svg,
  header.main-header nav .nav-dropdown:focus-within .nav-caret svg {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav {
    position: fixed;
    left: -80vw;
    background: #070708;
    height: 100vh;
    width: 70vw;
    z-index: 1;
    top: 0;
    transition: left 0.3s ease;
    margin: 0;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    box-shadow: 4px 0px 20px -15px rgba(255, 255, 255, 0.5);
  }
  header.main-header nav.active {
    left: 0;
  }
  header.main-header nav a.web-logo {
    display: block;
    margin-bottom: 64px;
  }
  header.main-header nav a.web-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    height: 40px;
    font-size: 14px;
    align-items: center;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767.9px) and (max-width: 991.9px) {
  header.main-header nav a.web-btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.9px) and (max-width: 575.9px) {
  header.main-header nav a.web-btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown {
    width: 100%;
  }
  header.main-header nav .nav-dropdown__menu {
    position: static;
    background: transparent;
    border: none;
    padding: 0 0 8px 12px;
    box-shadow: none;
  }
}
@media only screen and (max-width: 767.9px) and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown__menu {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo) {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }
}
@media only screen and (max-width: 767.9px) and (max-width: 991.9px) {
  header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo) {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.9px) and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo) {
    padding: 8px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo):hover {
    color: #ffffff;
    opacity: 1;
  }
  header.main-header nav .nav-dropdown__menu a:not(.web-btn):not(.web-logo).active {
    color: #ffffff;
  }
}
@media only screen and (max-width: 575.9px) {
  header.main-header nav {
    width: 77vw;
  }
}
header.main-header .web-logo + .nav-dropdown .nav-link {
  border-top: 0;
}
header.main-header .web-btn {
  margin-left: auto;
  margin-top: 2px;
  white-space: nowrap;
  font-size: 14px;
  padding: 9px 25px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1366.9px) {
  header.main-header .web-btn {
    padding: 8px 20px;
  }
}
@media screen and (max-width: 991.9px) {
  header.main-header .web-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header .web-btn {
    margin-top: 0;
    font-size: 14px;
    padding: 6px 18px;
  }
}
@media only screen and (max-width: 767.9px) {
  header.main-header .hamburger-icon {
    position: relative;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    margin-left: 16px;
    cursor: pointer;
  }
  header.main-header .hamburger-icon svg {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px;
    opacity: 0;
  }
  header.main-header .hamburger-icon span {
    width: 20px;
    height: 2px;
    display: block;
    background: #ffffff;
    border-radius: 2px;
  }
  header.main-header .hamburger-icon::before, header.main-header .hamburger-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
  }
  header.main-header .hamburger-icon::before {
    top: 11.5px;
  }
  header.main-header .hamburger-icon::after {
    bottom: 11.5px;
  }
  header.main-header .hamburger-icon.active::before, header.main-header .hamburger-icon.active::after {
    opacity: 0;
  }
  header.main-header .hamburger-icon.active svg {
    opacity: 1;
  }
  header.main-header .hamburger-icon.active span {
    opacity: 0;
  }
}

header.header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

footer.main-footer {
  padding: 30px 0;
  border-top: 1px solid #2f2e2e;
  margin-top: 1px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer {
    padding-top: 0;
    border-top: none;
  }
}
footer.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer.main-footer p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #c6c6c6;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer p {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479.9px) {
  footer.main-footer p {
    font-size: 12px;
  }
}
footer.main-footer img {
  display: block;
}
footer.main-footer .footer-logo img {
  height: 35px;
}
@media only screen and (max-width: 1024.9px) {
  footer.main-footer .footer-logo img {
    height: 30px;
  }
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-logo img {
    height: 24px;
  }
}
@media only screen and (max-width: 575.9px) {
  footer.main-footer .footer-logo img {
    height: 22px;
  }
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-logo {
    order: 2;
  }
}
footer.main-footer .footer-security p {
  text-align: center;
}
footer.main-footer .footer-security .footer-security-list {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-security .footer-security-list {
    justify-content: flex-end;
  }
}
footer.main-footer .footer-security .footer-security-list img {
  height: 50px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
footer.main-footer .footer-security .footer-security-list img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
@media only screen and (max-width: 1024.9px) {
  footer.main-footer .footer-security .footer-security-list img {
    height: 40px;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-security .footer-security-list img {
    height: 36px;
  }
}
@media only screen and (max-width: 575.9px) {
  footer.main-footer .footer-security .footer-security-list img {
    height: 32px;
  }
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-security {
    order: 3;
    text-align: right;
  }
}
footer.main-footer .footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
footer.main-footer .footer-contact .social-links {
  display: flex;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 40px;
}
footer.main-footer .footer-contact .social-links a {
  margin-top: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #2F2E2E;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
footer.main-footer .footer-contact .social-links a:hover {
  background: #111;
}
footer.main-footer .footer-contact .social-links svg.twitter-icon {
  width: 16px;
  height: 16px;
}
footer.main-footer .footer-contact .footer-contact-list {
  display: flex;
  gap: 8px;
}
footer.main-footer .footer-contact .footer-contact-list svg {
  width: 16px;
  height: 16px;
}
footer.main-footer .footer-contact .footer-contact-list * {
  margin: 0;
}
footer.main-footer .footer-contact p {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer.main-footer .footer-contact svg {
  width: 20px;
  height: 20px;
  display: block;
  margin-top: 2px;
}
@media only screen and (max-width: 1024.9px) {
  footer.main-footer .footer-contact svg {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-contact svg {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
}
footer.main-footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  margin-top: 16px;
}
@media only screen and (max-width: 767.9px) {
  footer.main-footer .footer-contact {
    order: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 30px;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
  }
  footer.main-footer .footer-contact::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #2f2e2e;
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
  footer.main-footer .footer-contact p,
  footer.main-footer .footer-contact a {
    margin: 0;
  }
  footer.main-footer .footer-contact p {
    font-size: 14px;
    padding-top: 1px;
  }
}
@media only screen and (max-width: 575.9px) {
  footer.main-footer .footer-contact {
    gap: 8px;
  }
}
footer.main-footer .footer-legal-links {
  display: flex;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-legal-links {
    margin-top: 10px;
  }
}
footer.main-footer .footer-legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-right: 12px;
}
footer.main-footer .footer-legal-link:after {
  content: "";
  background: #6D6B6B;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 12px;
}
footer.main-footer .footer-legal-link:last-child:after {
  display: none;
}
@media screen and (max-width: 767.9px) {
  footer.main-footer .footer-legal-link {
    margin-top: 0;
    font-size: 11px;
  }
}

/* ---------- Button Variables ---------- */
@property --x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 1.9%;
}
@property --y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -59.09%;
}
@property --sx {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 349.47%;
}
@property --sy {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 622.91%;
}
/* Button Angle Variable - IMPORTANT: make this inheritable so ::before receives updated value */
@property --border-angle {
  syntax: "<angle>";
  inherits: true; /* FIXES THE ISSUE */
  initial-value: 180deg;
}
@property --background-opacity {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0.01%;
}
@property --gradient-opacity {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
.web-btn {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.web-btn span {
  position: relative;
  z-index: 3;
  transition: color 0.2s ease;
}
@media screen and (max-width: 1440.9px) {
  .web-btn {
    padding: 11px 28px;
  }
}
@media screen and (max-width: 1366.9px) {
  .web-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}
.web-btn {
  /* Background gradient vars */
  --x: 1.9%;
  --y: -59.09%;
  --sx: 349.47%;
  --sy: 622.91%;
  background: radial-gradient(var(--sx) var(--sy) at var(--x) var(--y), rgba(0, 0, 0, 0) 0%, #e79e27 88.61%, rgba(140, 104, 47, 0.4) 100%);
  transition: --x 0.5s cubic-bezier(0.42, 0, 0.2, 1), --y 0.5s cubic-bezier(0.42, 0, 0.2, 1), --sx 0.5s cubic-bezier(0.42, 0, 0.2, 1), --sy 0.5s cubic-bezier(0.42, 0, 0.2, 1), --border-angle 0.5s cubic-bezier(0.42, 0, 0.2, 1);
  /* ---------- BORDER (MASKED PSEUDO ELEMENT) ---------- */
}
.web-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border size */
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(var(--border-angle), #9f8367 var(--background-opacity), rgba(119, 103, 159, 0) var(--gradient-opacity));
  /* Mask to create a transparent center */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.web-btn {
  /* ---------- HOVER ANIMATION TARGETS ---------- */
}
.web-btn:hover {
  color: #ffffff;
  --x: 30.25%;
  --y: -107.78%;
  --sx: 417.59%;
  --sy: 417.41%;
  /* Border animates NOW because ::before inherits this value */
  --border-angle: 360deg;
  --background-opacity: 10.62%;
  --gradient-opacity: 80.83%;
}
.web-btn.web-btn-light {
  background: #fff;
  color: #000;
}
.web-btn.web-btn-light:before {
  background: linear-gradient(var(--border-angle), #000 var(--background-opacity), rgba(119, 103, 159, 0) var(--gradient-opacity));
}
.web-btn.web-btn-dark {
  background: #000;
  color: #fff;
}
.web-btn.web-btn-dark:before {
  background: linear-gradient(var(--border-angle), #fff var(--background-opacity), rgba(119, 103, 159, 0) var(--gradient-opacity));
}
@media only screen and (max-width: 767.9px) {
  .web-btn {
    padding: 10px 24px;
    font-size: 14px;
    line-height: 1.429;
  }
}

body {
  background: #0E1115;
}

.gh-viewport {
  position: relative;
}
.gh-viewport:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0E1115 0%, rgba(14, 17, 21, 0.7) 50%, rgba(14, 17, 21, 0) 100%);
  height: 500px;
  top: 0;
}

.gh-main {
  position: relative;
  z-index: 1;
}

.observability-card {
  --curve-size: 72px;
  position: relative;
  background: #0f1114;
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  /* Curved cutouts */
  -webkit-mask: radial-gradient(var(--curve-size) at 100% 0, transparent 98%, #000 100%), radial-gradient(var(--curve-size) at 0 100%, transparent 98%, #000 100%), linear-gradient(#000 0 0);
  -webkit-mask-composite: source-over;
  mask: radial-gradient(var(--curve-size) at 100% 0, transparent 98%, #000 100%), radial-gradient(var(--curve-size) at 0 100%, transparent 98%, #000 100%), linear-gradient(#000 0 0);
  mask-composite: add;
}

.observability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.observability-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.about-content > * {
  opacity: 0;
  transform: translateY(12px);
  animation: aboutContentFade 0.6s ease forwards;
}

@keyframes aboutContentFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.svg-sprite {
  height: 0;
  overflow: hidden;
}

/* ---------- Button Variables ---------- */
@property --x {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 1.9%;
}
@property --y {
  syntax: "<percentage>";
  inherits: false;
  initial-value: -59.09%;
}
@property --sx {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 349.47%;
}
@property --sy {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 622.91%;
}
/* Button Angle Variable - IMPORTANT: make this inheritable so ::before receives updated value */
@property --border-angle {
  syntax: "<angle>";
  inherits: true; /* FIXES THE ISSUE */
  initial-value: 180deg;
}
@property --background-opacity {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0.01%;
}
@property --gradient-opacity {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
.web-btn {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  z-index: 0;
  display: inline-flex;
  /* Background gradient vars */
  --x: 1.9%;
  --y: -59.09%;
  --sx: 349.47%;
  --sy: 622.91%;
  background: radial-gradient(var(--sx) var(--sy) at var(--x) var(--y), rgba(0, 0, 0, 0) 0%, #e79e27 88.61%, rgba(140, 104, 47, 0.4) 100%);
  transition: --x 0.5s cubic-bezier(0.42, 0, 0.2, 1), --y 0.5s cubic-bezier(0.42, 0, 0.2, 1), --sx 0.5s cubic-bezier(0.42, 0, 0.2, 1), --sy 0.5s cubic-bezier(0.42, 0, 0.2, 1), --border-angle 0.5s cubic-bezier(0.42, 0, 0.2, 1);
  /* ---------- BORDER (MASKED PSEUDO ELEMENT) ---------- */
}
.web-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* border size */
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(var(--border-angle), #9f8367 var(--background-opacity), rgba(119, 103, 159, 0) var(--gradient-opacity));
  /* Mask to create a transparent center */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.web-btn {
  /* ---------- HOVER ANIMATION TARGETS ---------- */
}
.web-btn:hover {
  color: #ffffff;
  --x: 30.25%;
  --y: -107.78%;
  --sx: 417.59%;
  --sy: 417.41%;
  /* Border animates NOW because ::before inherits this value */
  --border-angle: 360deg;
  --background-opacity: 10.62%;
  --gradient-opacity: 80.83%;
}
@media only screen and (max-width: 767.9px) {
  .web-btn {
    padding: 10px 24px;
    font-size: 14px;
    line-height: 1.429;
  }
}

h1,
.h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1679.9px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1366.9px) {
  h1,
  .h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 1024.9px) {
  h1,
  .h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768.9px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
}
@media only screen and (max-width: 1679.9px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1366.9px) {
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1024.9px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768.9px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}
h2.light,
.h2.light {
  font-weight: 500;
}

h3,
.h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.45;
}
@media only screen and (max-width: 1679.9px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1366.9px) {
  h3,
  .h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1024.9px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768.9px) {
  h3,
  .h3 {
    font-size: 18px;
  }
}

.footer-video {
  background-color: #000000;
}
.footer-video video {
  width: 100%;
  max-width: 1285px;
  margin: 0 auto;
  padding: 0 40px;
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .footer-video video {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 575.9px) {
  .footer-video video {
    padding: 0 15px;
  }
}

.gh-banner {
  margin-bottom: 80px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.gh-banner h1.gh-banner-title {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(180deg, #fff, #fff 50%, #f9b877);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
  color: #fff;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 70px;
}
@media only screen and (max-width: 1679.9px) {
  .gh-banner h1.gh-banner-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1366.9px) {
  .gh-banner h1.gh-banner-title {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1024.9px) {
  .gh-banner h1.gh-banner-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768.9px) {
  .gh-banner h1.gh-banner-title {
    font-size: 32px;
  }
}
.gh-banner .gh-banner-description {
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .gh-banner .gh-banner-description {
    font-size: 16px;
  }
}

.gh-viewport {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gh-main {
  padding-top: 80px;
}
.gh-main article.gh-card.post {
  margin-bottom: 80px;
  display: flex;
}
.gh-main .gh-card-author {
  text-transform: capitalize;
}

.home-template .gh-container.is-list {
  padding-top: 80px;
}

.post-template .gh-main {
  padding-top: 75px;
  padding-bottom: 80px;
}

.gh-feed .gh-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.gh-feed .gh-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(232, 157, 37, 0.4);
  color: #e89d25;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.gh-feed .gh-card-title {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1679.9px) {
  .gh-feed .gh-card-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1366.9px) {
  .gh-feed .gh-card-title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1024.9px) {
  .gh-feed .gh-card-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 768.9px) {
  .gh-feed .gh-card-title {
    font-size: 24px;
  }
}
.gh-feed .gh-card-excerpt {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.gh-feed .gh-card-meta {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.gh-feed .gh-card-excerpt,
.gh-feed .gh-card-meta > * {
  color: #fff;
}

.home-template .gh-feed .gh-card.featured {
  position: relative;
  border: 1px solid rgba(232, 157, 37, 0.5);
  border-radius: 16px;
  padding: 20px;
  background: rgba(232, 157, 37, 0.06);
}

.home-template .gh-feed .gh-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e89d25;
  border: 1px solid rgba(232, 157, 37, 0.4);
  background: rgba(7, 7, 8, 0.6);
}

.home-template .gh-feed .gh-card.featured .gh-card-link {
  gap: 24px;
}

.home-template .gh-feed .gh-card.featured .gh-card-title {
  color: #ffffff;
}

.home-template .gh-feed .gh-card.featured .gh-card-excerpt {
  color: #c6c6c6;
}

.gh-featured {
  margin-top: 40px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.gh-featured-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gh-featured-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gh-featured-feed .gh-card-link {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}
.gh-featured-feed .gh-card-image {
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}
.gh-featured-feed .gh-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gh-featured-feed .gh-card-title {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 6px;
  color: #ffffff;
  font-weight: 600;
}
.gh-featured-feed .gh-card-excerpt {
  font-size: 13px;
  line-height: 1.4;
  color: #c6c6c6;
  margin-bottom: 6px;
}
.gh-featured-feed .gh-card-meta {
  font-size: 12px;
  color: #c6c6c6;
  padding: 0;
}
.gh-featured-feed .gh-card-link:hover .gh-card-title {
  color: #e89d25;
}

.is-grid .gh-container-title {
  color: #fff;
  margin-bottom: 30px;
}
.is-grid .gh-container-title.text-center {
  text-align: center;
}
.is-grid .gh-feed {
  display: flex;
  gap: 24px;
  margin-left: -12px;
  margin-right: -12px;
}
@media screen and (max-width: 1024px) {
  .is-grid .gh-feed {
    gap: 12px;
  }
}
@media screen and (max-width: 640px) {
  .is-grid .gh-feed {
    flex-wrap: wrap;
  }
}
.is-grid .gh-feed .gh-card {
  width: 33.3333333333%;
}
@media screen and (max-width: 640px) {
  .is-grid .gh-feed .gh-card {
    width: 100%;
  }
}
.is-grid .gh-feed .gh-card-link {
  flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
}
.is-grid .gh-feed .gh-card-link .gh-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.618033;
}
.is-grid .gh-feed .gh-card-link .gh-card-image img {
  object-fit: cover;
  height: 100%;
}
.is-grid .gh-feed .gh-card-link .gh-card-wrapper {
  width: 100%;
}

a.gh-card-link {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 640px) {
  a.gh-card-link {
    flex-direction: column;
    gap: 20px;
  }
}

.gh-card-image {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .gh-card-image {
    width: 100%;
  }
}
.gh-card-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1200px) {
  .gh-card-image img {
    height: 100%;
  }
}
.gh-card-image img {
  object-fit: cover;
}

.gh-card-wrapper {
  width: 60%;
}
@media screen and (max-width: 640px) {
  .gh-card-wrapper {
    width: 100%;
  }
}

.gh-back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.gh-back-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.gh-back-button:hover {
  color: #e89d25;
}
.gh-back-button:hover svg {
  transform: translateX(-5px);
}
.gh-back-button:hover svg path {
  stroke: #e89d25;
}

/* Post template */
.gh-canvas {
  margin-left: auto;
  margin-right: auto;
}

.gh-article {
  color: #ffffff;
  padding-bottom: 80px;
}

article.gh-article.post {
  margin-top: 50px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1024.9px) {
  article.gh-article.post {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 768.9px) {
  article.gh-article.post {
    margin-top: 20px;
  }
}

.gh-article-header {
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.gh-article-header.align-center {
  text-align: center;
}
@media only screen and (max-width: 768.9px) {
  .gh-article-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.gh-article-header h1 {
  color: #FEFEFE;
  font-size: 48px;
}
@media only screen and (max-width: 1366.9px) {
  .gh-article-header h1 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1024.9px) {
  .gh-article-header h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768.9px) {
  .gh-article-header h1 {
    font-size: 36px;
  }
}

.gh-archive .gh-article-title {
  color: #fff;
  background: linear-gradient(180deg, #fff, #fff 50%, #f9b877);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
  color: #fff;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  text-align: center;
}

.gh-archive-wrapper {
  padding-top: 100px;
}
.gh-archive-wrapper .gh-author-meta {
  padding: 0;
  border: 0;
}

.gh-article-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 157, 37, 0.4);
  color: #e89d25;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.gh-article-title {
  color: #ffffff;
  margin: 16px 0 12px;
}

.gh-article-excerpt {
  color: #c6c6c6;
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.gh-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

time.gh-article-date {
  font-size: 14px;
  color: #CFCFCF;
}

.gh-card-author-details {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer.gh-card-meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(232, 157, 37, 0.25);
  margin-right: 8px;
}

.gh-article-author-image {
  display: flex;
  gap: 8px;
}
.gh-article-author-image a {
  border-radius: 50%;
  border: 1px solid rgba(232, 157, 37, 0.25);
}
.gh-article-author-image a,
.gh-article-author-image img,
.gh-article-author-image svg {
  display: block;
}
.gh-article-author-image img,
.gh-article-author-image svg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.gh-article-meta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gh-article-author-name {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-transform: capitalize;
}
.gh-article-author-name a {
  color: #ffffff;
}

.gh-article-meta-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c6c6c6;
}

.gh-article-image {
  margin-top: 32px;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f0f0f;
}
.gh-article-image img {
  width: 100%;
  display: block;
}
.gh-article-image figcaption {
  padding: 12px 16px 0;
  font-size: 13px;
  color: #c6c6c6;
  text-align: center;
}

.gh-reading-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 58px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 1001;
}

@media only screen and (max-width: 767.9px) {
  .gh-reading-progress {
    top: 56px;
  }
}
.gh-reading-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #e89d25;
  transition: width 0.1s ease;
}

.gh-content {
  color: #c6c6c6;
  font-size: 16px;
  line-height: 1.7;
}
.gh-content p {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -0.005em;
}
@media only screen and (max-width: 1679.9px) {
  .gh-content p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1366.9px) {
  .gh-content p {
    font-size: 16px;
  }
}
.gh-content hr {
  border-color: rgba(255, 255, 255, 0.25);
}
.gh-content.is-body {
  display: flex;
  align-items: start;
}
@media only screen and (max-width: 767.9px) {
  .gh-content.is-body {
    flex-direction: column;
  }
}
.gh-content .gh-article-summary {
  position: sticky;
  min-width: 260px;
  top: 120px;
  padding: 18px 16px;
  border-radius: 12px;
}
@media only screen and (max-width: 1024.9px) {
  .gh-content .gh-article-summary {
    min-width: 200px;
    top: 80px;
  }
}
@media only screen and (max-width: 767.9px) {
  .gh-content .gh-article-summary {
    position: static;
    min-width: 100%;
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid #262626;
    margin-bottom: 50px;
    padding-bottom: 20px;
  }
}
.gh-content .gh-article-summary-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c6c6c6;
  margin-bottom: 12px;
}
.gh-content .gh-article-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gh-content .gh-article-summary-list li + li {
  margin-top: 8px;
}
.gh-content .gh-article-summary-list a {
  border-bottom: 0;
  line-height: 1.5;
}
.gh-content .gh-article-summary-list a.is-active {
  background: radial-gradient(50% 50% at 50% 50%, #ECCE9E 63.46%, #C78D2F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.gh-content .gh-article-summary-link {
  color: #c6c6c6;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  display: inline-block;
}
.gh-content .gh-article-summary-link:hover,
.gh-content .gh-article-summary-link.is-active {
  color: #e89d25;
  opacity: 1;
}
.gh-content .gh-article-content {
  margin-top: 0;
  border-left: 1px solid #262626;
  padding-left: 30px;
}
@media only screen and (max-width: 767.9px) {
  .gh-content .gh-article-content {
    border-left: 0;
    padding-left: 0;
  }
}
.gh-content .gh-article-content h2 {
  font-size: 32px;
  background: linear-gradient(101.55deg, #EAC885 32.77%, #FCF0D1 58.69%);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024.9px) {
  .gh-content .gh-article-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.gh-content .gh-article-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024.9px) {
  .gh-content .gh-article-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.gh-content a {
  color: #e89d25;
  border-bottom: 1px solid rgba(232, 157, 37, 0.35);
}
.gh-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.gh-content blockquote {
  margin: 24px 0;
  padding: 12px 24px;
  border-left: 2px solid #e89d25;
  background: linear-gradient(116.17deg, rgba(14, 14, 16, 0.12) -0.84%, rgba(71, 71, 76, 0.12) 81.34%);
  color: #FEFEFE;
  font-style: italic;
}
.gh-content pre,
.gh-content code {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.gh-content pre {
  padding: 16px;
  border-radius: 12px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}
.gh-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.gh-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.gh-content > * + * {
  margin-top: 16px;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
  color: #ffffff;
  margin-top: 40px;
  font-weight: 400;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
  scroll-margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

.gh-content ul,
.gh-content ol {
  padding-left: 20px;
}

.gh-content li + li {
  margin-top: 8px;
}

.gh-content.drop-cap > p:first-of-type::first-letter {
  float: left;
  font-size: 64px;
  line-height: 0.9;
  padding-right: 10px;
  color: #e89d25;
}

.pswp {
  display: none;
}
/*# sourceMappingURL=main.css.map */