:root {
    --font-sans: "Onest", sans-serif;
    --font-serif: "Onest", sans-serif;
    --body-bg: #E6EDE4;
    --card-bg: #EDF4EB;
    --text-color: #03111C;
    --text-secondary: #03111C;
    --text-primary: #03111C;
    --text-muted: #494F55;
    --container-width: 1362px;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 0;
    --h1-text-size: 3rem;
    --h2-text-size: 1.6667rem;
    --text-size-xl: 1.666667rem;
    --de-borderColor: #A7ADA5;
    --de-gapXs: .6667rem;
    --de-gapMd: 1.3334rem;
    --de-gapXl: 2.6667rem;
    --de-bodyFontSizeLg: 16px;

}
@media (min-width: 576px) {
    :root {
        --h1-text-size: 3.6667rem
    }
}

@media (min-width: 768px) {
    :root {
        --h1-text-size: 4rem;
        --h2-text-size: 2rem;
        --bs-gutter-x: 5rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --h1-text-size: 5.3334rem;
        --h2-text-size: 2.3334rem
    }
}
html {
    font-size: 12px;
}
body {
    font-weight: 400;
    line-height: 1.333334;
    color: var(--text-color);
    font-size: 14px;
    background: var(--body-bg) url('../images/body-bg-mobile.svg') 0 0 repeat-y;
    background-size: 100%;
}
@media (min-width: 768px) {
    body {
        background: var(--body-bg) url('../images/body-bg.svg') 0 0 no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
}
h1 {
    font-size: var(--h1-text-size);
    font-weight: 500;
}
h2 {
    font-size: var(--h2-text-size);
    font-weight: 500;
}
b, strong {
    font-weight: 500;
}
.text-muted {
    color: var(--text-muted);
}
html.dark-mode body {
    color: var(--text-color);
    background: var(--body-bg);
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B7A2BC;
}
.hstack {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
}
.d-inline-flex {
    display: inline-flex !important;
}
.align-items-center {
    align-items: center !important;
}
.me-1 {
    margin-right: .25rem !important;
}
.me-2 {
    margin-right: .5rem !important;
}
.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}
.sep-vertical {
    display: inline-block;
    height: 2.6667rem;
    background: rgba(73,68,75,0.44);
    width: 1px
}
.sep-bullet {
    display: inline-block;
    height: 4px;
    width: 4px;
    border-radius: 100%;
    background: var(--text-muted);
}
.site-header-inner .site-description {
    display: none;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-right: auto;
    margin-left: auto;
}
.container {
    max-width: var(--container-width);
}
.site-header-cover {
    background: var(--body-bg);
}
.post-card.keep-ratio:not(.post-card-large):not(.post-card-full) .post-card-image {
    position: absolute;
}
.post-card.keep-ratio:not(.post-card-large):not(.post-card-full) .post-card-image-link:after {
    padding-bottom: 50%;
}
.outer {
    padding: 0;
}
html.dark-mode img {
    opacity: 1;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 11px 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s;
    cursor: pointer;
    max-width: 100%;
}
.btn-primary {
    background: #FBFF3A;
    color: #03111C;
    border: 1px solid #D3DAD0;
}
.btn-primary:hover {
    background: #f5fa00;
    color: #03111C;
    outline: none;
    box-shadow: none;
}
.btn-primary-outline {
    background: none;
    color: #03111C;
    box-shadow: 0 0 0 1px #FBFF3A;
}
.btn-primary-outline:hover {
    background: #f5fa00;
    color: #03111C;
    box-shadow: 0 0 0 1px #D3DAD0;
}

.gh-head-logo img {
    max-height: 41px;
}
.inner {
    max-width: var(--container-width);
}
.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    color: var(--text-color);
    z-index: 1020;
}

.gh-head-inner {
    display: flex;
    align-items: center;
}
.page-header.sticky  {
    background: var(--body-bg);
    border-bottom: 1px solid var(--de-borderColor);
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -ms-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.gh-head-brand,
.gh-head-actions {
    flex: 0 0 100%;
}
.gh-burger {
    position: relative;
    color: #FBFF3A;
    font-size: 16px;
    margin-left: 2rem;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.gh-head-open .gh-burger:before {
    content: "\e904";
    font-size: 32px;
}
.gh-head-brand .gh-search {
    margin-right: 0;
}
.gh-head-menu {
    margin-top: 0;
    flex: 1;
    justify-content: center;
}
.gh-head-menu .nav {
    gap: 3rem;
    font-size: var(--text-size-xl);
    font-weight: 400;
}
.gh-head-menu .nav li {
    line-height: 1;
}
.gh-head-menu .nav a {
    display: inline-flex;
    line-height: 1;
    align-items: center;
}
.gh-head-menu .nav a .icon {
    margin-right: 0.25rem;
}
.gh-head-menu .nav a .icomoon-deExplorer-icon{
    font-size: 1.8rem;
    vertical-align: -0.27rem;
}
.gh-search:hover,
.gh-social-link:hover svg,
.gh-head-menu .nav a:hover {
    color: var(--text-primary);
    opacity: 1;
}
.gh-social-link svg {
    color: var(--text-color);
}
.site-header-content {
    align-items: center;
    min-height: 34vh;
}
.site-header-content,
body:not(.has-cover) .site-header-content:not(.left-aligned) {
    padding: 8rem var(--bs-gutter-x) 5rem
}
@media (min-width: 768px) {
    .site-header-content {
        min-height: 530px;
    }
}
.has-cover .site-header-content {
    position: static;
    background: none;
    color: var(--text-color);
}
.site-header-inner__title {
    text-align: center;
    font-size: var(--h1-text-size);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0;
}
.site-header-inner__logo {
    max-height: 32px;
    margin: 0 auto 2rem;
}
.line-separator {
    height: .5px;
    width: 100%;
    background: rgba(73,68,75,.44)
}

.page-footer {
    position: relative;
    background: var(--body-bg);
    border-top: 1px solid var(--de-borderColor);
}

.__footer-row {
    position: relative;
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.__footer-col {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
}
.__footer-nav {
    margin-bottom: var(--de-gapMd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--de-bodyFontSizeLg);
}
.__footer-social {
    margin-bottom: var(--de-gapXl);
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 20px;
}
.social-links a+a {
    margin-left: 1.5rem;
}
.page-footer .nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.__footer-privacy .nav {
    margin: 0 0 var(--de-gapMd);
}
.page-footer .nav li {
    padding: 0;
    line-height: inherit;
}
.page-footer .nav li + li {
    margin-top: var(--de-gapXs);
}
.page-footer .nav a {
    color: var(--text-muted);
}
@media (min-width: 768px) {
    .__footer-col {
        width: 50%;
        flex: 0 0 50%;
        text-align: initial;
    }
    .social-links {
        justify-content: flex-end;
    }
    .__footer-privacy .nav {
        margin: 8px 0 0;
        justify-content: flex-end;
        flex-direction: row;
    }
    .__footer-privacy {
        order: 4;
        width: 60%;
        flex: 0 0 60%;
    }
    .__footer-text {
        margin-top: 16px;
        order: 3;
        width: 40%;
        flex: 0 0 40%;
    }
    .page-footer .nav li + li {
        margin-left: 1.5rem;
        margin-top: 0;
    }
    .__footer-nav {
        order: 1;
        margin-bottom: 0;
        justify-content: flex-start;
    }
    .__footer-social {
        order: 2;
        text-align: right;
        margin-bottom: 0;
    }
}
.post-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--de-borderColor);
    overflow: hidden;
}
html.dark-mode .post-card-image {
    background: var(--body-bg);
}
.post-card-content {
    padding: 1.5rem;
}
.post-card-excerpt {
    line-height: 1.5;
    font-size: 16px;
}
.post-card-image-link {
    margin-bottom: 0;
    border-bottom: 1px solid var(--de-borderColor);
}
.post-card-tags,
.post-card-meta {
    color: var(--text-muted);
    font-size: 12px;
}
.post-card-meta {
    margin-top: auto;
}
.post-card-title {
    font-size: 20px;
}
.text-primary {
    color: var(--text-primary);
}

.post-template .site-content {
    padding-top: 8rem;
    background: linear-gradient(90deg, transparent 1%, var(--body-bg) 45%,  var(--body-bg) 66%, transparent 100%);
}
.article {
    padding: 0;
    --container-width: 800px;
}
.article-title {
    margin: 0 0 3rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: var(--h1-text-size);
}
html.dark-mode .article-title,
html.dark-mode .author-profile-location,
html.dark-mode .author-profile-social-link:hover,
html.dark-mode .post-card-featured,
html.dark-mode .post-card-title {
    color: var(--text-secondary);
}
.gh-content a,
.article-content a {
    color: var(--text-color);
}
.article-image {
    border-radius: 16px;
    overflow: hidden;
}
.article-byline {
    margin-bottom: 2rem;
}
.article-byline-meta {
    color: var(--text-muted);
}
html.dark-mode :is(.post-card-tags,.post-card-meta,.article-tag a,.byline-meta-content) {
    color: var(--text-muted);
}
html.dark-mode .gh-content a:not(.kg-btn):not(.kg-nft-card-container):not(.kg-product-card-button):not(.kg-header-card-button),
html.dark-mode .gh-content em,
html.dark-mode .gh-content strong {
    color: var(--text-color);
}
.post-card-title {
    margin: 0 0 1.5rem;
    font-weight: 500;
    font-size: 1.666667rem;
}
.post-card-tags {
    font-weight: 400;
    margin: 0;
}
.gh-content>blockquote:not([class]),
.gh-content>dl, .gh-content>ol, .gh-content>p, .gh-content>ul {
    font-size: 1.6667rem;
}
html.dark-mode .gh-content a:not(.kg-btn):not(.kg-nft-card-container):not(.kg-product-card-button):not(.kg-header-card-button) {
    color: var(--text-color);
    text-decoration: none;
}
html.dark-mode .gh-content h1,
html.dark-mode .gh-content h2,
html.dark-mode .gh-content h3,
html.dark-mode .gh-content>[id] {
    color: var(--text-secondary);
}
.read-more-wrap {
    margin-top: 4rem;
    margin-bottom: 5rem;
}
.post-feed {
    padding: 0 0 4rem;
}

@media (max-width: 991px) {
    .gh-head-open #gh-head {
        padding: 0;
        display: flex;
    }
    .gh-head-open #gh-head .gh-head-inner {
        background: rgba(1, 13, 23, 0.98);
        border-radius: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding-top: calc(1.3334rem + 30px);
    }
    #gh-head .gh-head-actions {
        padding-bottom: 0;
    }
    .gh-head-open #gh-head .gh-head-menu {
        align-items: flex-start;
    }
    #gh-head .gh-head-menu .nav {
        gap: 4rem;
        align-items: flex-start;
    }
    .subscribe-header-btn {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .gh-head-open #gh-head .gh-head-inner {
        padding-top: calc(1.3334rem + 12px);
    }
}
@media (max-width: 600px) {
    #gh-head .gh-head-menu {
        font-size: var(--text-size-xl);
    }
}

@media (min-width: 768px) {
    .page-header {
        padding: 16px 0;
    }
    .gh-head-logo img {
        max-height: initial;
    }
    .post-feed {
        padding: 0 0 8rem;
    }
    .post-card-content {
        padding: 2rem;
    }
    .post-template .site-content {
        padding-top: 14rem;
        background: linear-gradient(90deg, transparent 1%, var(--body-bg) 45%,  var(--body-bg) 66%, transparent 100%);
    }
}
@media (min-width: 992px) {
    .gh-head-brand,
    .gh-head-actions {
        flex: 0 0 230px;
    }
    .gh-burger {
        display: none;
    }
}
@media (min-width: 1200px) {
    .page-footer-copy {
        order:2
    }
    .page-footer-hire {
        order:1
    }
    .page-footer__social {
        order:2;
        flex: 0 0 auto;
        margin: 0;
    }
    .page-footer-bottom {
        padding:3rem 0
    }
}
@media (min-width: 1366px) {
    .gh-head-brand,
    .gh-head-actions {
        flex: 0 0 300px;
    }
    .gh-head-menu .nav {
        gap: 4rem;
    }
    .page-footer-col {
        flex:1
    }
    .page-footer-col:first-child,.page-footer-col:nth-child(2) {
        flex: 1
    }
}
@media (min-width: 1920px) {
    .page-footer-inner {
        padding: 8rem 9rem 0
    }
    .page-footer-bottom {
        padding:5rem 0
    }
}

.footer-cta {
    padding: 5rem 0 0;
}
.footer-cta-title {
    font-size: var(--h2-text-size);
    font-weight: 500;
}
.footer-cta-button {
    background: #E0E7DD;
    border: 1px solid #D3DAD0;
    font-size: 14px;
    line-height: 16px;
    padding: 4px 4px 4px 16px;
}
.footer-cta-button:hover {
    border-color: #A7ADA5;
}
.footer-cta-button span {
    background: #FBFF3A;
    color: #03111C;
    border: 1px solid #D3DAD0;
    font-weight: 400;
    font-size: 14px;
    border-radius: 4px;
}
.gh-portal-popup-background {
    background: rgba(230, 237, 228, .8);
}
.gh-portal-popup-container {
    background: #E6EDE4;
    color: #03111C;
}
::-webkit-scrollbar {
    height: 4px;
}
.gh-content table {
    background: none;
}
html .gh-content table td:first-child,
html .gh-content table td:last-child {
    background-image: none;
}
/*html .gh-content table {
    display: block;
    border-collapse: collapse;
    border-radius: 8px;
    border-style: hidden;
    box-shadow: 0 0 0 1px var(--de-borderColor);
}*/
html .gh-content table td,
html .gh-content table th {
    border: none;
    background: none;
    font-size: 14px;
    padding: 8px 12px;
}
html .gh-content table tr:not(:last-child) td,
html .gh-content table tr:not(:last-child) th {
    border-bottom: 1px solid var(--de-borderColor);;
}
html .author-avatar {
    border: 1px solid var(--de-borderColor);;
}
.author-profile-image {
    background: none;
}
@media (min-width: 768px) {
    html.dark-mode .gh-content table {
        display: table;
    }
}
