html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
}

body {
    margin: 0;
}

/* =========================================================
   FONT & THEME VARIABLES
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    /* Base surfaces */
    --bg-main: #121417; /* теплий, не синій */
    --bg-secondary: #1a1c20; /* секції */
    --bg-surface: #23262b; /* блоки, карточки */

    /* Text */
    --text-main: #000000;
    --text-secondary: #c6c9d2;
    --text-muted: #9ea2ac;
    --text-placeholder: #7e828c;

    /* Borders */
    --border-color: #2d3036;
    --border-mid: #3a3d44;
    --border-light: #4c4f57;

    /* Accents */
    --accent-blue: #7da8ff; /* пастельний */
    --accent-blue-strong: #000000;
    --accent-blue-hover: #6a98ff;

    /* Buttons */
    --btn-primary-bg: #598dff;
    --btn-primary-text: #ffffff;

    /* Inputs */
    --input-bg: #fff;
    --input-border: #3d4048;

    /* States */
    --success: #2cd57f;
    --error: #ff6464;

    /* Shadows / depth */
    --overlay: rgba(0, 0, 0, 0.55);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.35);

    /* Popup */
    --popup-bg: #f9e5ce;
    --popup-input-bg: #181a1f;

    /* Utility */
    --white: #ffffff;
    --black: #000000;
}

/* =========================================================
   GLOBAL RESET & BASICS
   ========================================================= */
[hidden] {
    display: none !important;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* WebKit scrollbar */
::-webkit-scrollbar {
    width: 1px; /* тоненький */
}

::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb);
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

html {
    background-color: var(--bg-main);
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-main);
    padding: 0;
    margin: 0;
    color: var(--text-main);
}

.link-reset {
    all: unset;
    cursor: pointer;
    display: block;
}

.link-reset * {
    pointer-events: none;
}

/* =========================================================
   HEADER
   ========================================================= */
header {
    height: 32px;
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: var(--bg-main);
    color: var(--text-main);
}

header .header-left-desktop {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-main);
}

header .header-left-desktop a:hover {
    color: var(--accent-blue-hover);
}

header .header-left-desktop a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

@media (max-width: 1440px) {
    header .header-left-desktop p {
        display: none;
    }
}

header .header-right-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-main);
}

header .header-right-desktop .port-watch {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

header .header-right-desktop .port-wath {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

header .header-right-desktop .search-input {
    height: 32px;
    background-color: var(--border-color);
    color: var(--text-placeholder);
    border-radius: 8px;
    padding: 0 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    margin-inline-start: 8px;
    justify-content: center;
    align-items: center;
}

header .header-right-desktop .search-input .input {
    display: flex;
    flex: 1 1 0%;
    font-weight: 600;
    font-size: 12px;
    margin-inline-start: 4px;
    width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

header .header-right-desktop .search-input .slash {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    background-color: var(--kbd-bg);
    color: var(--white);
    line-height: 20px;
    text-align: center;
}

header .header-right-desktop .qr-code {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--qr-bg);
    position: relative;
}

header .header-right-desktop button {
    height: 32px;
    padding-top: 0.33em;
    padding-right: 1.33em;
    padding-bottom: 0.33em;
    padding-left: 1.33em;
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-radius: 0.66em;
    font-size: 12px;
    min-width: 64px;
    border: none;
    position: relative;
    font-weight: 600;
    line-height: 150%;
    transition: var(--transition);
}

header .header-right-desktop button:hover {
    background-color: var(--accent-blue-hover);
}

header .header-right-desktop .burger-menu {
    position: relative;
    border: 1px solid var(--border-mid);
    padding: 4px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

header .header-right-desktop .burger-menu img {
    width: 24px;
    height: 24px;
}

header .header-right-desktop-mobile {
    display: none;
}

@media (max-width: 1040px) {
    header .header-right-desktop {
        display: none;
    }

    header .header-right-desktop-mobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        height: 32px;
    }
}

/* =========================================================
   MAIN
   ========================================================= */
main {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    padding-bottom: 56px;
    background-color: var(--bg-secondary);
}

main .main-top-desktop {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

main .main-top-desktop .main-top-desktop-left {
    width: 50%;
    height: 356px;
    padding-top: 104px;
}

main .main-top-desktop .main-top-desktop-left .purple-txt {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
    color: var(--accent-blue);
}

main .main-top-desktop .main-top-desktop-left h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 42px;
    margin: 16px 0;
    color: var(--text-main);
    letter-spacing: 2px;
}

main .main-top-desktop .main-top-desktop-left .grey-txt {
    margin-top: 0;
    width: 449px;
    margin-bottom: 40px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-size: 16px;
}

main .main-top-desktop .main-top-desktop-left .button-block {
    display: flex;
    flex-direction: row;
}

main .main-top-desktop .main-top-desktop-left .button-block .blue-button {
    align-items: center;
    background: var(--accent-blue-strong);
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    color: var(--white);
    cursor: pointer;
    justify-content: center;
    outline: 0;
    font-weight: 600;
    width: auto;
    height: 48px;
    font-size: 14px;
    padding: 0 24px;
    line-height: 24px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

main .main-top-desktop .main-top-desktop-left .button-block .button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    color: var(--white);
    cursor: pointer;
    justify-content: center;
    outline: 0;
    font-weight: 600;
    width: auto;
    height: 48px;
    font-size: 14px;
    padding: 0 24px;
    line-height: 24px;
}

main .main-top-desktop .main-top-desktop-right {
    position: relative;
    height: 460px;
    flex: 1 1 0%;
}

main .main-top-desktop .main-top-desktop-right .ellipse-left {
    width: 239px;
    position: absolute;
    left: -80px;
    bottom: 0;
    z-index: -1;
    object-fit: cover;
}

main .main-top-desktop .main-top-desktop-right .ellipse-right {
    width: 306px;
    height: 306px;
    position: absolute;
    left: 456px;
    top: -20px;
    z-index: 0;
    object-fit: cover;
}

main .main-top-desktop .main-top-desktop-right .preview-browser {
    margin-top: 20px;
    margin-left: -22px;
    z-index: 1;
    object-fit: cover;
}

main .main-top-desktop .main-top-desktop-right .preview-mobile {
    position: absolute;
    top: 52px;
    z-index: 2;
    left: 433px;
    overflow-clip-margin: content-box;
    overflow: clip;
}

main .main-bottom-desktop {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

main .main-bottom-desktop .main-bottom-desktop-left {
    max-width: 50%;
    position: relative;
    flex-grow: 1;
    height: 576px;
    border-radius: 32px;
    margin-inline-end: 32px;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

main .main-bottom-desktop .main-bottom-desktop-left .phone {
    position: absolute;
    width: 1030px;
    right: -315px;
    object-fit: cover;
}

main .main-bottom-desktop .main-bottom-desktop-left .block-txt {
    z-index: 100;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
    position: absolute;
    inset: 0;
    padding: 64px;
}

main .main-bottom-desktop .main-bottom-desktop-left .block-txt .big-txt {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 1px;
}

main .main-bottom-desktop .main-bottom-desktop-left .block-txt .big-txt span {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 2px;
}

main .main-bottom-desktop .main-bottom-desktop-left .block-txt .small-txt {
    margin: 0;
    margin-top: 16px;
    width: 311px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-size: 14px;
}

main .main-bottom-desktop .main-bottom-desktop-left .block-txt .install {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

main
.main-bottom-desktop
.main-bottom-desktop-left
.block-txt
.install
.app-store {
    height: 37px;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
}

main
.main-bottom-desktop
.main-bottom-desktop-left
.block-txt
.install
.play-market {
    height: 37px;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
}

main .main-bottom-desktop .main-bottom-desktop-right {
    width: 50%;
    display: grid;
    grid-template: 1fr 1fr/1fr 1fr;
    gap: 32px;
}

main .main-bottom-desktop .main-bottom-desktop-right .punkt {
    background-color: var(--bg-secondary);
    border-radius: 32px;
    padding: 32px;
}

main .main-bottom-desktop .main-bottom-desktop-right .punkt img {
    margin-bottom: 32px;
    object-fit: cover;
}

main .main-bottom-desktop .main-bottom-desktop-right .punkt .bold {
    color: var(--text-main);
    font-weight: bold;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 8px;
}

main .main-bottom-desktop .main-bottom-desktop-right .punkt .light {
    line-height: 1.5;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* =========================================================
   RESPONSIVE (MAIN)
   ========================================================= */
@media (max-width: 1200px) {
    main .main-top-desktop {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    main .main-top-desktop .main-top-desktop-left {
        width: auto;
        height: auto;
    }

    main .main-top-desktop .main-top-desktop-right {
        width: auto;
    }

    main .main-bottom-desktop {
        flex-direction: column;
    }

    main .main-bottom-desktop .main-bottom-desktop-left {
        max-width: 100%;
        margin: 0;
    }

    main .main-bottom-desktop .main-bottom-desktop-left .block-txt {
        padding: 56px 48px;
    }

    main .main-bottom-desktop .main-bottom-desktop-right {
        width: 100%;
        margin-top: 16px;
        gap: 16px;
    }
}

@media (max-width: 750px) {
    main .main-top-desktop {
        width: 100%;
    }

    main .main-top-desktop .main-top-desktop-right {
        height: auto;
    }

    main .main-top-desktop .main-top-desktop-right .ellipse-left {
        width: 32%;
        left: -16px;
    }

    main .main-top-desktop .main-top-desktop-right .preview-browser {
        width: 100%;
        margin-left: 0;
        height: auto;
        margin-top: 0;
    }

    main .main-top-desktop .main-top-desktop-right .preview-mobile {
        width: 31%;
        height: auto;
        left: 48%;
        top: 8%;
        transform: translateX(80%);
    }

    main .main-top-desktop .main-top-desktop-left {
        height: auto;
        padding-top: 0;
        width: 100%;
    }

    main .main-top-desktop .main-top-desktop-left .purple-txt {
        font-size: 18px;
    }

    main .main-top-desktop .main-top-desktop-left h1 {
        font-size: 24px;
        line-height: 20px;
    }

    main .main-top-desktop .main-top-desktop-left .grey-txt {
        width: auto;
    }

    main .main-bottom-desktop {
        flex-direction: column;
        margin-top: 4px;
    }

    main .main-bottom-desktop .main-bottom-desktop-left {
        margin-top: 40px;
    }

    main .main-bottom-desktop .main-bottom-desktop-left .phone {
        width: 800px;
        left: -262px;
        bottom: -163px;
    }

    main .main-bottom-desktop .main-bottom-desktop-left .block-txt {
        padding: 32px;
    }

    main .main-bottom-desktop .main-bottom-desktop-left .block-txt .small-txt {
        width: auto;
    }

    main .main-bottom-desktop .main-bottom-desktop-right {
        grid-template: 1fr/1fr;
        gap: 8px;
        width: 100%;
        margin-top: 16px;
    }
}

@media (max-width: 750px) {
    main {
        padding: 0 16px;
        padding-bottom: 56px;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    margin: 0 auto;
    content-visibility: auto;
    contain-intrinsic-size: 573.5px;
    background: var(--bg-main);
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    font-style: normal;
    z-index: 9;
    position: relative;
    display: flex;
    flex-direction: column;
}

footer .footer-top-desktop {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .footer-top-desktop .footer-left-desktop {
    width: 50%;
    display: flex;
    flex-direction: column;
}

footer .footer-top-desktop .footer-left-desktop img {
    height: 32px;
}

footer .footer-top-desktop .footer-left-desktop .lang-currency {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 20px;
}

footer .footer-top-desktop .footer-left-desktop .lang-currency div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    padding-right: 1.33em;
    padding-left: 1.33em;
    background-color: var(--chip-bg);
    color: var(--text-main);
    border-radius: 0.66em;
    height: 32px;
}

footer .footer-top-desktop .footer-left-desktop .lang-currency div p {
    margin: 0;
    font-size: 12px;
}

footer .footer-top-desktop .footer-left-desktop .lang-currency div img {
    width: 16px;
    height: 16px;
}

footer .footer-top-desktop .footer-right-desktop {
    width: 50%;
    display: flex;
    flex-direction: row;
}

footer .footer-top-desktop .footer-right-desktop .twist-div {
    width: 50%;
    display: flex;
    flex-direction: row;
}

footer .footer-top-desktop .footer-right-desktop .twist-div .tables {
    width: 50%;
}

footer .footer-top-desktop .footer-right-desktop .twist-div .tables span {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 18px;
    padding-top: 5px;
}

footer .footer-top-desktop .footer-right-desktop .twist-div .tables ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer .footer-top-desktop .footer-right-desktop .twist-div .tables ul li {
    line-height: 35px;
    position: relative;
    color: #858ca2; /* лишаю, як у тебе, для точності */
    font-weight: 500;
    font-size: 14px;
}

footer .footer-bottom-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 66px;
    padding-bottom: 6px;
}

footer .footer-bottom-desktop span {
    flex: 1 1 70%;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #858ca2; /* як у твоєму файлі */
}

footer .footer-bottom-desktop .install {
    display: flex;
    flex-direction: row;
}

footer .footer-bottom-desktop .install .play-market {
    width: 120px;
    height: 36px;
}

footer .footer-bottom-desktop .install .app-store {
    width: 120px;
    height: 36px;
}

footer .footer-bottom-desktop .install .qr-code {
    height: 36px;
    margin-inline-start: 6px;
    border: 1px solid #858ca2; /* як було */
    border-radius: 6px;
    background: var(--black);
}

@media (max-width: 1400px) {
    footer .footer-top-desktop {
        width: 100%;
        flex-direction: column;
    }

    footer .footer-top-desktop .footer-left-desktop {
        margin-bottom: 24px;
    }

    footer .footer-top-desktop .footer-right-desktop {
        width: 100%;
    }
}

@media (max-width: 750px) {
    footer .footer-top-desktop .footer-right-desktop {
        flex-direction: column;
    }

    footer .footer-top-desktop .footer-right-desktop .twist-div {
        width: 100%;
        padding-bottom: 35px;
    }

    footer .footer-top-desktop .footer-right-desktop .tables {
        width: 50%;
    }

    footer .footer-bottom-desktop {
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    footer .footer-bottom-desktop span {
        margin-bottom: 20px;
    }
}

/* =========================================================
   POPUP (AUTH)
   ========================================================= */
.popup_a {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 10000;
    pointer-events: none;
}

.popup_a.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.popup_a .popup {
    width: 496px;
    max-width: 100vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--popup-bg);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: height 0.3s ease-in-out;
}

.popup_a .popup .close-button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 24px;
    height: 24px;
    color: rgb(166, 176, 195);
    font-size: 12px;
    cursor: pointer;
    z-index: 1;
}

.popup_a .popup .popup-content {
    padding: 24px 32px 36px;
    overflow-y: scroll;
    scrollbar-width: none;
    overscroll-behavior-y: contain;
}

.popup_a .popup .popup-content .choose {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    position: relative;
}

.popup_a .popup .popup-content .choose .tab {
    position: relative;
    cursor: pointer;
    font-size: 22px;
    margin: 0 40px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.popup_a .popup .popup-content .choose .tab .strip {
    position: absolute;
    background: var(--accent-blue);
    pointer-events: none;
    bottom: -13px;
    height: 5px;
    width: 28px;
    border-radius: 100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup_a .popup .popup-content .choose .tab.active {
    color: var(--text-main);
    font-weight: 700;
}

.popup_a .popup .popup-content .choose .tab.active .strip {
    opacity: 1;
}

.popup_a .popup .popup-content .registration {
    color: var(--text-main);
}

.popup_a .popup .popup-content .registration .reg-e {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.popup_a .popup .popup-content .registration .reg-e p {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 26px;
}

.popup_a .popup .popup-content .registration .reg-e input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--text-main);
    height: 56px;
    outline: none;
}

.popup_a .popup .popup-content .registration .reg-f {
    margin-bottom: 16px;
}

.popup_a .popup .popup-content .registration .reg-f .placeholder-pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.popup_a .popup .popup-content .registration .reg-f .placeholder-pass span {
    font-size: 12px;
    color: #858ca2;
    cursor: pointer;
    margin-bottom: 2px;
}

.popup_a .popup .popup-content .registration .reg-f p {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 2px 0;
    line-height: 26px;
}

.popup_a .popup .popup-content .registration .reg-f .pass-eye {
    position: relative;
}

.popup_a .popup .popup-content .registration .reg-f .pass-eye input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--text-main);
    height: 56px;
    outline: none;
}

.popup_a .popup .popup-content .registration .reg-f .pass-eye span {
    position: absolute;
    cursor: pointer;
    top: 15px;
    right: 18px;
}

.popup_a .popup .popup-content .check-box-block {
    display: flex;
    cursor: pointer;
    margin: -2px 0;
}

.popup_a .popup .popup-content .check-box-block p {
    padding-top: 18px;
    font-size: 15px;
    line-height: 1.5em;
    color: var(--text-main);
    margin: 0 0 0 12px;
    font-weight: 300;
}

.popup_a .popup .popup-content .check-box-block .checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.popup_a .popup .popup-content .check-box-block .checkbox input {
    opacity: 0;
    width: 0;
    height: 0;
}

.popup_a .popup .popup-content .check-box-block .checkbox .checkmark {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: var(--checkbox-bg);
    transition: background-color 0.2s ease, transform 0.1s ease;
    position: relative;
}

.popup_a .popup .popup-content .check-box-block .checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.1s ease;
}

.popup_a .popup .popup-content .check-box-block .checkbox:hover .checkmark {
    background-color: var(--white);
}

.popup_a
.popup
.popup-content
.check-box-block
.checkbox
input:checked
+ .checkmark {
    background-color: var(--checkbox-checked);
}

.popup_a
.popup
.popup-content
.check-box-block
.checkbox
input:checked
+ .checkmark::after {
    opacity: 1;
}

.popup_a .popup .popup-content button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-blue-strong);
    color: var(--white);
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 24px;
    margin-top: 30px;
    opacity: 0.4;
    cursor: not-allowed;
}

.popup_a .popup .popup-content .bot {
    max-width: 306px;
    margin: 20px auto -4px;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.popup_a .popup .popup-content .bot span {
    color: var(--accent-blue);
    cursor: pointer;
}

/* =========================================================
   ERROR POPUP
   ========================================================= */
.error-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-strong);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.error-content {
    background: var(--error-surface);
    color: var(--text-main);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 260px;
    max-width: 400px;
    box-shadow: var(--shadow-strong);
}

.error-content button {
    margin-top: 15px;
    background: var(--error-button);
    border: none;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.error-content button:hover {
    background: var(--error-button-hover);
}

/* =========================================================
   SPECIAL BUTTON
   ========================================================= */
.butlog {
    border: 1px solid var(--btn-primary-bg) !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    width: 155px !important;
}

.form-error {
    margin: 10px 0 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 82, 82, 0.09);
    color: #ff4d4d;
    font-size: 14px;
    line-height: 1.35;
    border: 1px solid rgba(255, 77, 77, 0.25);
}

.form-error div + div {
    margin-top: 4px;
}

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

audio,
canvas,
progress,
video {
    vertical-align: baseline;
    display: inline-block;
}

audio:not([controls]) {
    height: 0;
    display: none;
}

[hidden],
template {
    display: none;
}

a {
    background-color: #0000;
}

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

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

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

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

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

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer;
}

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

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

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

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

input[type="search"] {
    -webkit-appearance: none;
}

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

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: 700;
}

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

td,
th {
    padding: 0;
}

@font-face {
    font-family: webflow-icons;
    src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format("truetype");
    font-weight: 400;
    font-style: normal;
}

[class^="w-icon-"],
[class*="\ w-icon-"] {
    speak: none;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
    content: "";
}

.w-icon-slider-left:before {
    content: "";
}

.w-icon-nav-menu:before {
    content: "";
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
    content: "";
}

.w-icon-file-upload-remove:before {
    content: "";
}

.w-icon-file-upload-icon:before {
    content: "";
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 20px;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

html.w-mod-touch * {
    background-attachment: scroll !important;
}

.w-block {
    display: block;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-clearfix:after {
    clear: both;
}

.w-hidden {
    display: none;
}

.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}

input.w-button {
    -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
    color: #0000 !important;
}

.w-code-block {
    margin: unset;
}

pre.w-code-block code {
    all: inherit;
}

.w-optimization {
    display: contents;
}

.w-webflow-badge,
.w-webflow-badge > img {
    box-sizing: unset;
    width: unset;
    height: unset;
    max-height: unset;
    max-width: unset;
    min-height: unset;
    min-width: unset;
    margin: unset;
    padding: unset;
    float: unset;
    clear: unset;
    border: unset;
    border-radius: unset;
    background: unset;
    background-image: unset;
    background-position: unset;
    background-size: unset;
    background-repeat: unset;
    background-origin: unset;
    background-clip: unset;
    background-attachment: unset;
    background-color: unset;
    box-shadow: unset;
    transform: unset;
    direction: unset;
    font-family: unset;
    font-weight: unset;
    color: unset;
    font-size: unset;
    line-height: unset;
    font-style: unset;
    font-variant: unset;
    text-align: unset;
    letter-spacing: unset;
    -webkit-text-decoration: unset;
    text-decoration: unset;
    text-indent: unset;
    text-transform: unset;
    list-style-type: unset;
    text-shadow: unset;
    vertical-align: unset;
    cursor: unset;
    white-space: unset;
    word-break: unset;
    word-spacing: unset;
    word-wrap: unset;
    transition: unset;
}

.w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    color: #aaadb0 !important;
    overflow: unset !important;
    background-color: #fff !important;
    border-radius: 3px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: fixed !important;
    inset: auto 12px 12px auto !important;
    transform: none !important;
}

.w-webflow-badge > img {
    position: unset;
    visibility: unset !important;
    opacity: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
}

h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
}

h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
}

h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
}

h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
}

h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
}

blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
}

figure {
    margin: 0 0 10px;
}

figcaption {
    text-align: center;
    margin-top: 5px;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
}

.w-list-unstyled {
    padding-left: 0;
    list-style: none;
}

.w-embed:before,
.w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-embed:after {
    clear: both;
}

.w-video {
    width: 100%;
    padding: 0;
    position: relative;
}

.w-video iframe,
.w-video object,
.w-video embed {
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

button,
[type="button"],
[type="reset"] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
}

.w-form {
    margin: 0 0 15px;
}

.w-form-done {
    text-align: center;
    background-color: #ddd;
    padding: 20px;
    display: none;
}

.w-form-fail {
    background-color: #ffdede;
    margin-top: 10px;
    padding: 10px;
    display: none;
}

label {
    margin-bottom: 5px;
    font-weight: 700;
    display: block;
}

.w-input,
.w-select {
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
}

.w-input::placeholder,
.w-select::placeholder {
    color: #999;
}

.w-input:focus,
.w-select:focus {
    border-color: #3898ec;
    outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
    cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
    background-color: #eee;
}

textarea.w-input,
textarea.w-select {
    height: auto;
}

.w-select {
    background-color: #f3f3f3;
}

.w-select[multiple] {
    height: auto;
}

.w-form-label {
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    display: inline-block;
}

.w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-radio:before,
.w-radio:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-radio:after {
    clear: both;
}

.w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal;
}

.w-file-upload {
    margin-bottom: 10px;
    display: block;
}

.w-file-upload-input {
    opacity: 0;
    z-index: -100;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
    overflow: hidden;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
    color: #333;
    display: inline-block;
}

.w-file-upload-error {
    margin-top: 10px;
    display: block;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
    display: none;
}

.w-file-upload-uploading-btn {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
}

.w-file-upload-file {
    background-color: #fafafa;
    border: 1px solid #ccc;
    flex-grow: 1;
    justify-content: space-between;
    margin: 0;
    padding: 8px 9px 8px 11px;
    display: flex;
}

.w-file-upload-file-name {
    font-size: 14px;
    font-weight: 400;
    display: block;
}

.w-file-remove-link {
    cursor: pointer;
    width: auto;
    height: auto;
    margin-top: 3px;
    margin-left: 10px;
    padding: 3px;
    display: block;
}

.w-icon-file-upload-remove {
    margin: auto;
    font-size: 10px;
}

.w-file-upload-error-msg {
    color: #ea384c;
    padding: 2px 0;
    display: inline-block;
}

.w-file-upload-info {
    padding: 0 12px;
    line-height: 38px;
    display: inline-block;
}

.w-file-upload-label {
    cursor: pointer;
    background-color: #fafafa;
    border: 1px solid #ccc;
    margin: 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
    width: 20px;
    margin-right: 8px;
    display: inline-block;
}

.w-icon-file-upload-uploading {
    height: 20px;
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.w-container:before,
.w-container:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-container:after {
    clear: both;
}

.w-container .w-row {
    margin-left: -10px;
    margin-right: -10px;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-bottom: 10px;
}

.language-selector--mobile {
    display: none;
}

.language-selector--desktop {
    display: flex;
}

.language-selector select {
    height: 32px;
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid #dbd3cc;
    background-color: #faf4ed;
    color: #0b1221;
    font-weight: 600;
    cursor: pointer;
    min-width: 0px;
    margin-left: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .language-selector select {
        font-size: 12px;
        min-width: 100px;
        padding: 5px 8px;
    }
}

@media (max-width: 540px) {
    .language-selector select {
        min-width: 40px;
        padding: 4px 6px;
    }
}

.language-selector--mobile select {
    min-width: 90px;
    padding: 4px 6px;
    font-size: 11px;
}


.w-row:before,
.w-row:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-row:after {
    clear: both;
}

.w-row .w-row {
    margin-left: 0;
    margin-right: 0;
}

.w-col {
    float: left;
    width: 100%;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}

.w-col .w-col {
    padding-left: 0;
    padding-right: 0;
}

.w-col-1 {
    width: 8.33333%;
}

.w-col-2 {
    width: 16.6667%;
}

.w-col-3 {
    width: 32%;
}

.w-col-4 {
    width: 33.3333%;
}

.w-col-5 {
    width: 41.6667%;
}

.w-col-6 {
    width: 50%;
}

.w-col-7 {
    width: 58.3333%;
}

.w-col-8 {
    width: 66.6667%;
}

.w-col-9 {
    width: 75%;
}

.w-col-10 {
    width: 83.3333%;
}

.w-col-11 {
    width: 91.6667%;
}

.w-col-12 {
    width: 100%;
}

.w-hidden-main {
    display: none !important;
}

@media screen and (max-width: 991px) {
    .w-container {
        max-width: 728px;
    }

    .w-hidden-main {
        display: inherit !important;
    }

    .w-hidden-medium {
        display: none !important;
    }

    .w-col-medium-1 {
        width: 8.33333%;
    }

    .w-col-medium-2 {
        width: 16.6667%;
    }

    .w-col-medium-3 {
        width: 25%;
    }

    .w-col-medium-4 {
        width: 33.3333%;
    }

    .w-col-medium-5 {
        width: 41.6667%;
    }

    .w-col-medium-6 {
        width: 50%;
    }

    .w-col-medium-7 {
        width: 58.3333%;
    }

    .w-col-medium-8 {
        width: 66.6667%;
    }

    .w-col-medium-9 {
        width: 75%;
    }

    .w-col-medium-10 {
        width: 83.3333%;
    }

    .w-col-medium-11 {
        width: 91.6667%;
    }

    .w-col-medium-12 {
        width: 100%;
    }

    .w-col-stack {
        width: 100%;
        left: auto;
        right: auto;
    }
}

@media screen and (max-width: 767px) {
    .w-hidden-main,
    .w-hidden-medium {
        display: inherit !important;
    }

    .w-hidden-small {
        display: none !important;
    }

    .w-row,
    .w-container .w-row {
        margin-left: 0;
        margin-right: 0;
    }

    .w-col {
        width: 100%;
        left: auto;
        right: auto;
    }

    .w-col-small-1 {
        width: 8.33333%;
    }

    .w-col-small-2 {
        width: 16.6667%;
    }

    .w-col-small-3 {
        width: 25%;
    }

    .w-col-small-4 {
        width: 33.3333%;
    }

    .w-col-small-5 {
        width: 41.6667%;
    }

    .w-col-small-6 {
        width: 50%;
    }

    .w-col-small-7 {
        width: 58.3333%;
    }

    .w-col-small-8 {
        width: 66.6667%;
    }

    .w-col-small-9 {
        width: 75%;
    }

    .w-col-small-10 {
        width: 83.3333%;
    }

    .w-col-small-11 {
        width: 91.6667%;
    }

    .w-col-small-12 {
        width: 100%;
    }
}

@media screen and (max-width: 479px) {
    .w-container {
        max-width: none;
    }

    .w-hidden-main,
    .w-hidden-medium,
    .w-hidden-small {
        display: inherit !important;
    }

    .w-hidden-tiny {
        display: none !important;
    }

    .w-col {
        width: 100%;
    }

    .w-col-tiny-1 {
        width: 8.33333%;
    }

    .w-col-tiny-2 {
        width: 16.6667%;
    }

    .w-col-tiny-3 {
        width: 25%;
    }

    .w-col-tiny-4 {
        width: 33.3333%;
    }

    .w-col-tiny-5 {
        width: 41.6667%;
    }

    .w-col-tiny-6 {
        width: 50%;
    }

    .w-col-tiny-7 {
        width: 58.3333%;
    }

    .w-col-tiny-8 {
        width: 66.6667%;
    }

    .w-col-tiny-9 {
        width: 75%;
    }

    .w-col-tiny-10 {
        width: 83.3333%;
    }

    .w-col-tiny-11 {
        width: 91.6667%;
    }

    .w-col-tiny-12 {
        width: 100%;
    }
}

.w-widget {
    position: relative;
}

.w-widget-map {
    width: 100%;
    height: 400px;
}

.w-widget-map label {
    width: auto;
    display: inline;
}

.w-widget-map img {
    max-width: inherit;
}

.w-widget-map .gm-style-iw {
    text-align: center;
}

.w-widget-map .gm-style-iw > button {
    display: none !important;
}

.w-widget-twitter {
    overflow: hidden;
}

.w-widget-twitter-count-shim {
    vertical-align: top;
    text-align: center;
    background: #fff;
    border: 1px solid #758696;
    border-radius: 3px;
    width: 28px;
    height: 20px;
    display: inline-block;
    position: relative;
}

.w-widget-twitter-count-shim * {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
    text-align: center;
    color: #999;
    font-family: serif;
    font-size: 15px;
    line-height: 12px;
    position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
    display: block;
    position: relative;
}

.w-widget-twitter-count-shim.w--large {
    width: 36px;
    height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
    margin-left: 5px;
    margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
    margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
    border-width: 4px;
    border-color: #75869600 #5d6c7b #75869600 #75869600;
    margin-top: -4px;
    margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
    border-width: 4px;
    border-color: #fff0 #fff #fff0 #fff0;
    margin-top: -4px;
    margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
    border-width: 5px;
    margin-top: -5px;
    margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
    width: 61px;
    height: 33px;
    margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
    content: " ";
    pointer-events: none;
    border: solid #0000;
    width: 0;
    height: 0;
    position: absolute;
    top: 100%;
    left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
    border-width: 5px;
    border-color: #5d6c7b #75869600 #75869600;
    margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
    border-width: 4px;
    border-color: #fff #fff0 #fff0;
    margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
    font-size: 18px;
    line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
    width: 76px;
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.w-background-video > video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
}

.w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
}

.w-background-video--control > [hidden] {
    display: none !important;
}

.w-slider {
    text-align: center;
    clear: both;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    background: #ddd;
    height: 300px;
    position: relative;
}

.w-slider-mask {
    z-index: 1;
    white-space: nowrap;
    height: 100%;
    display: block;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
}

.w-slide {
    vertical-align: top;
    white-space: normal;
    text-align: left;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
}

.w-slider-nav {
    z-index: 2;
    text-align: center;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    height: 40px;
    margin: auto;
    padding-top: 10px;
    position: absolute;
    inset: auto 0 0;
}

.w-slider-nav.w-round > div {
    border-radius: 100%;
}

.w-slider-nav.w-num > div {
    font-size: inherit;
    line-height: inherit;
    width: auto;
    height: auto;
    padding: 0.2em 0.5em;
}

.w-slider-nav.w-shadow > div {
    box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
    color: #fff;
}

.w-slider-nav-invert > div {
    background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
    background-color: #222;
}

.w-slider-dot {
    cursor: pointer;
    background-color: #fff6;
    width: 1em;
    height: 1em;
    margin: 0 3px 0.5em;
    transition: background-color 0.1s, color 0.1s;
    display: inline-block;
    position: relative;
}

.w-slider-dot.w-active {
    background-color: #fff;
}

.w-slider-dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
    box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
    cursor: pointer;
    color: #fff;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    width: 80px;
    margin: auto;
    font-size: 40px;
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"],
.w-slider-arrow-left [class*="\ w-icon-"],
.w-slider-arrow-right [class*="\ w-icon-"] {
    position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
    outline: 0;
}

.w-slider-arrow-left {
    z-index: 3;
    right: auto;
}

.w-slider-arrow-right {
    z-index: 4;
    left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
    width: 1em;
    height: 1em;
    margin: auto;
    inset: 0;
}

.w-slider-aria-label {
    clip: rect(0 0 0 0);
    border: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
}

.w-slider-force-show {
    display: block !important;
}

.w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    position: relative;
}

.w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 40px;
    display: inline-block;
}

.w-dropdown-toggle:focus {
    outline: 0;
}

.w-icon-dropdown-toggle {
    width: 1em;
    height: 1em;
    margin: auto 20px auto auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.w-dropdown-list {
    background: #ddd;
    min-width: 100%;
    display: none;
    position: absolute;
}

.w-dropdown-list.w--open {
    display: block;
}

.w-dropdown-link {
    color: #222;
    padding: 10px 20px;
    display: block;
}

.w-dropdown-link.w--current {
    color: #0082f3;
}

.w-dropdown-link:focus {
    outline: 0;
}

@media screen and (max-width: 767px) {
    .w-nav-brand {
        padding-left: 10px;
    }
}

.w-lightbox-backdrop {
    cursor: auto;
    letter-spacing: normal;
    text-indent: 0;
    text-shadow: none;
    text-transform: none;
    visibility: visible;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    color: #fff;
    text-align: center;
    z-index: 2000;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: #000000e6;
    outline: 0;
    font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
    list-style: disc;
    position: fixed;
    inset: 0;
    -webkit-transform: translate(0);
}

.w-lightbox-backdrop,
.w-lightbox-container {
    -webkit-overflow-scrolling: touch;
    height: 100%;
    overflow: auto;
}

.w-lightbox-content {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.w-lightbox-view {
    opacity: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
}

.w-lightbox-view:before {
    content: "";
    height: 100vh;
}

.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
    height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
    vertical-align: middle;
    display: inline-block;
}

.w-lightbox-figure {
    margin: 0;
    position: relative;
}

.w-lightbox-group .w-lightbox-figure {
    cursor: pointer;
}

.w-lightbox-img {
    width: auto;
    max-width: none;
    height: auto;
}

.w-lightbox-image {
    float: none;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
}

.w-lightbox-group .w-lightbox-image {
    max-height: 86vh;
}

.w-lightbox-caption {
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #0006;
    padding: 0.5em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.w-lightbox-embed {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.w-lightbox-control {
    cursor: pointer;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all 0.3s;
    position: absolute;
    top: 0;
}

.w-lightbox-left {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==);
    display: none;
    bottom: 0;
    left: 0;
}

.w-lightbox-right {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+);
    display: none;
    bottom: 0;
    right: 0;
}

.w-lightbox-close {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=);
    background-size: 18px;
    height: 2.6em;
    right: 0;
}

.w-lightbox-strip {
    white-space: nowrap;
    padding: 0 1vh;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto hidden;
}

.w-lightbox-item {
    box-sizing: content-box;
    cursor: pointer;
    width: 10vh;
    padding: 2vh 1vh;
    display: inline-block;
    -webkit-transform: translate(0, 0);
}

.w-lightbox-active {
    opacity: 0.3;
}

.w-lightbox-thumbnail {
    background: #222;
    height: 10vh;
    position: relative;
    overflow: hidden;
}

.w-lightbox-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
    height: 100%;
    left: 50%;
    transform: translate(-50%);
}

.w-lightbox-spinner {
    box-sizing: border-box;
    border: 5px solid #0006;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    animation: 0.8s linear infinite spin;
    position: absolute;
    top: 50%;
    left: 50%;
}

.w-lightbox-spinner:after {
    content: "";
    border: 3px solid #0000;
    border-bottom-color: #fff;
    border-radius: 50%;
    position: absolute;
    inset: -4px;
}

.w-lightbox-hide {
    display: none;
}

.w-lightbox-noscroll {
    overflow: hidden;
}

@media (min-width: 768px) {
    .w-lightbox-content {
        height: 96vh;
        margin-top: 2vh;
    }

    .w-lightbox-view,
    .w-lightbox-view:before {
        height: 96vh;
    }

    .w-lightbox-group,
    .w-lightbox-group .w-lightbox-view,
    .w-lightbox-group .w-lightbox-view:before {
        height: 84vh;
    }

    .w-lightbox-image {
        max-width: 96vw;
        max-height: 96vh;
    }

    .w-lightbox-group .w-lightbox-image {
        max-width: 82.3vw;
        max-height: 84vh;
    }

    .w-lightbox-left,
    .w-lightbox-right {
        opacity: 0.5;
        display: block;
    }

    .w-lightbox-close {
        opacity: 0.8;
    }

    .w-lightbox-control:hover {
        opacity: 1;
    }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
    opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-richtext:after {
    clear: both;
}

.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
    white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
    overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after,
.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
    outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type="video"] > div:after {
    content: "";
    display: none;
    position: absolute;
    inset: 0;
}

.w-richtext figure {
    max-width: 60%;
    position: relative;
}

.w-richtext figure > div:before {
    cursor: default !important;
}

.w-richtext figure img {
    width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
    opacity: 0.6;
}

.w-richtext figure div {
    color: #0000;
    font-size: 0;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
    display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type="image"] > div {
    display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type="image"] > figcaption {
    caption-side: bottom;
    display: table-caption;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
    width: 60%;
    height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type="video"] > div {
    width: 100%;
}

.w-richtext figure.w-richtext-align-center {
    clear: both;
    margin-left: auto;
    margin-right: auto;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"] > div {
    max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
    clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
    text-align: center;
    clear: both;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
    padding-bottom: inherit;
    display: inline-block;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
    display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
    float: left;
    clear: none;
    margin-right: 15px;
}

.w-richtext figure.w-richtext-align-floatright {
    float: right;
    clear: none;
    margin-left: 15px;
}

.w-nav {
    z-index: 1000;
    background: #ddd;
    position: relative;
}

.w-nav:before,
.w-nav:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-nav:after {
    clear: both;
}

.w-nav-brand {
    float: left;
    color: #333;
    text-decoration: none;
    position: relative;
}

.w-nav-link {
    vertical-align: top;
    color: #222;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.w-nav-link.w--current {
    color: #0082f3;
}

.w-nav-menu {
    float: right;
    position: relative;
}

[data-nav-menu-open] {
    text-align: center;
    background: #c8c8c8;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: visible;
    display: block !important;
}

.w--nav-link-open {
    display: block;
    position: relative;
}

.w-nav-overlay {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
    top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
    width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
    width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] [data-nav-menu-open] {
    z-index: 1;
    top: 0;
    left: auto;
}

.w-nav-button {
    float: right;
    cursor: pointer;
    -webkit-tap-highlight-color: #0000;
    tap-highlight-color: #0000;
    -webkit-user-select: none;
    user-select: none;
    padding: 18px;
    font-size: 24px;
    display: none;
    position: relative;
}

.w-nav-button:focus {
    outline: 0;
}

.w-nav-button.w--open {
    color: #fff;
    background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
    display: none;
}

.w-nav[data-collapse="all"] .w-nav-button,
.w--nav-dropdown-open,
.w--nav-dropdown-toggle-open {
    display: block;
}

.w--nav-dropdown-list-open {
    position: static;
}

@media screen and (max-width: 991px) {
    .w-nav[data-collapse="medium"] .w-nav-menu {
        display: none;
    }

    .w-nav[data-collapse="medium"] .w-nav-button {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .w-nav[data-collapse="small"] .w-nav-menu {
        display: none;
    }

    .w-nav[data-collapse="small"] .w-nav-button {
        display: block;
    }

    .w-nav-brand {
        padding-left: 10px;
    }
}

@media screen and (max-width: 479px) {
    .w-nav[data-collapse="tiny"] .w-nav-menu {
        display: none;
    }

    .w-nav[data-collapse="tiny"] .w-nav-button {
        display: block;
    }
}

.w-tabs {
    position: relative;
}

.w-tabs:before,
.w-tabs:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-tabs:after {
    clear: both;
}

.w-tab-menu {
    position: relative;
}

.w-tab-link {
    vertical-align: top;
    text-align: left;
    cursor: pointer;
    color: #222;
    background-color: #ddd;
    padding: 9px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.w-tab-link.w--current {
    background-color: #c8c8c8;
}

.w-tab-link:focus {
    outline: 0;
}

.w-tab-content {
    display: block;
    position: relative;
    overflow: hidden;
}

.w-tab-pane {
    display: none;
    position: relative;
}

.w--tab-active {
    display: block;
}

@media screen and (max-width: 479px) {
    .w-tab-link {
        display: block;
    }
}

.w-ix-emptyfix:after {
    content: "";
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.w-dyn-empty {
    background-color: #ddd;
    padding: 10px;
}

.w-dyn-hide,
.w-dyn-bind-empty,
.w-condition-invisible {
    display: none !important;
}

.wf-layout-layout {
    display: grid;
}

@font-face {
    font-family: Materialicons;
    src: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5e3a0ec50875f87458e847f7_MaterialIcons-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: auto;
}

@font-face {
    font-family: "Fa brands 400";
    src: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5e7da2d233813df2d2941819_fa-brands-400.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: auto;
}

:root {
    --dark-grey: #999;
    --gainsboro: #e6e6e6;
    --black: black;
    --white: white;
}

.w-pagination-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
}

.w-pagination-previous {
    color: #333;
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 9px 20px;
    font-size: 14px;
    display: block;
}

.w-pagination-previous-icon {
    margin-right: 4px;
}

.w-pagination-next {
    color: #333;
    background-color: #fafafa;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 9px 20px;
    font-size: 14px;
    display: block;
}

.w-pagination-next-icon {
    margin-left: 4px;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.w-checkbox {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}

.w-checkbox:before {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-checkbox:after {
    content: " ";
    clear: both;
    grid-area: 1/1/2/2;
    display: table;
}

.w-checkbox-input {
    float: left;
    margin: 4px 0 0 -20px;
    line-height: normal;
}

.w-checkbox-input--inputType-custom {
    border: 1px solid #ccc;
    border-radius: 2px;
    width: 12px;
    height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
    background-color: #3898ec;
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
    box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formrecaptcha {
    margin-bottom: 8px;
}

.w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
        max-width: 728px;
    }
}

@media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
        max-width: none;
    }
}

body {
    color: #000;
    font-family: Libre Franklin, sans-serif;
    font-size: 15px;
    line-height: 150%;
}

h1 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    line-height: 115%;
}

h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Lora, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 120%;
}

h3 {
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
}

h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

p {
    margin-top: 0;
    margin-bottom: 30px;
}

a {
    color: #0034df;
    text-decoration: underline;
}

ul,
ol {
    margin-bottom: 30px;
}

li {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
}

img {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
}

em {
    font-style: italic;
}

blockquote {
    color: #000;
    border-style: solid none none;
    border-top-width: 2px;
    border-top-color: #000;
    border-left-width: 5px;
    border-left-color: #e2e2e2;
    margin-top: 40px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    font-family: Source Serif Pro, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
}

figure {
    background-color: var(--dark-grey);
    margin-bottom: 10px;
}

figcaption {
    color: #666;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 30px;
    font-family: Libre Franklin, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.navigation-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    display: flex;
}

.navigation {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    justify-content: center;
    align-items: center;
    height: 90px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.image-logo {
    margin-top: 0;
    margin-bottom: 0;
}

.nav-link {
    color: #000;
    margin-right: 30px;
    font-family: Libre Franklin, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.nav-link.white {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.container {
    flex-wrap: wrap;
    place-content: center;
    align-items: flex-start;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.container.cc-center {
    text-align: left;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 800px;
    display: flex;
}

.paragraph {
    color: #000;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: Source Serif Pro, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.paragraph.cc-contact-text {
    margin-bottom: 50px;
}

.footer-remove {
    background-color: #141414;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 90px 30px;
    display: flex;
}

.footer-title-text {
    color: #666;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
}

.footer-links {
    flex-flow: column;
    flex: none;
    align-content: flex-start;
    align-items: flex-start;
    width: 25%;
    margin-top: 15px;
    display: flex;
}

.footer-links-container {
    justify-content: flex-start;
    margin-top: 20px;
    display: flex;
}

.footer-links-container.cc-categories {
    display: block;
}

.blogmenu {
    text-align: left;
    flex-wrap: nowrap;
    flex: 1;
    place-content: flex-start space-between;
    display: block;
}

.bottom-2 {
    flex: 1;
    width: 75%;
    margin-top: 40px;
}

.bottom {
    width: 100%;
}

.text-field {
    background-color: #fff;
    border: 1px solid #000;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}

.submit-button {
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #3d3d3d;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
}

.form {
    display: flex;
}

.form-block {
    background-color: #00000085;
    margin-bottom: 0;
}

.posts-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.posts-wrapper.cc-top-post {
    justify-content: space-between;
}

.top-post {
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px 0;
    display: block;
}

.navigation-link {
    color: #000;
    flex-flow: wrap;
    place-content: space-between center;
    align-items: center;
    height: 90px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Libre Franklin, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    display: flex;
    position: relative;
}

.navigation-link-text {
    color: #000;
    text-transform: none;
    font-family: Libre Franklin, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.navigation-hover {
    background-color: #000;
    align-items: flex-end;
    width: 100%;
    height: 4px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.header {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5ded36b5e942e71d6e468d2c_image-header.jpg);
    background-position: 50%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 35vw;
    display: block;
}

.team {
    justify-content: center;
    align-items: center;
    padding: 120px 30px;
    display: flex;
}

.contact {
    flex-wrap: wrap;
    place-content: flex-start center;
    align-items: center;
    padding: 120px 30px;
    display: flex;
}

.dropdown-toggle {
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 20px;
    font-weight: 500;
    display: flex;
}

.dropdown-link {
    background-color: #fff;
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--gainsboro);
    color: #000;
}

.dropdown-link.w--current {
    color: #868686;
}

.contact-info-subtitle {
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 30px;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
}

.contact-info-text {
    color: #000;
    letter-spacing: -0.5px;
    width: 100%;
    margin-top: 20px;
    font-family: Source Serif Pro, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.contact-number {
    background-color: #000;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    display: flex;
}

.nav-menu {
    display: flex;
}

.top-post-image {
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 550px;
}

.top-post-item {
    perspective: 2000px;
    justify-content: space-between;
    align-items: flex-start;
    display: block;
}

.top-post-text {
    width: 90%;
    padding-top: 20px;
}

.category-link {
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    text-decoration: none;
    display: block;
}

.category-link:hover {
    text-decoration: underline;
}

.h1-blog-home {
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 120%;
}

.h1-blog-home.cc-title-section {
    margin-top: 0;
    margin-bottom: 40px;
}

.h1-blog-home.cc-title-section.cc-push-text {
    margin-right: 15px;
}

.post-short-text {
    color: #444;
    display: block;
}

.post-author {
    clear: none;
    color: #3d3d3d;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex: 0 auto;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    text-decoration: none;
    display: block;
}

.post-author.cc-top-margin {
    margin-right: 5px;
}

.post-author-text {
    display: none;
}

.post-author-text.cc-small-thumbnail {
    margin-top: 0;
    margin-bottom: 3px;
}

._3-col-posts {
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 90px;
    padding-left: 20px;
    display: block;
}

.posts-collection-list-wrapper {
    justify-content: center;
    align-items: flex-start;
    display: block;
}

.posts-image {
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 210px;
    margin-bottom: 0;
    display: block;
}

.top-post-link-block {
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
}

._3-collection-item {
    flex-wrap: wrap;
    align-content: stretch;
    align-items: stretch;
    width: 33.3%;
    padding: 25px 20px 25px 0;
    display: flex;
}

.post-title {
    margin-top: 15px;
    margin-bottom: 10px;
    text-decoration: none;
}

.h3-blog-home {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}

.post-info-text {
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    display: block;
}

.posts-collection-list {
    flex-wrap: wrap;
    width: 100%;
    margin-top: -25px;
    margin-bottom: -25px;
    margin-left: -10px;
    display: flex;
}

.separator-container {
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.line-color {
    background-color: #e6e6e6;
    height: 1px;
}

.separator {
    background-color: #525252;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
}

._4-col-posts {
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 90px;
}

._4-collection-item {
    flex-wrap: wrap;
    width: 25%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.all-articles-button {
    color: #000;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #fff;
    border: 1px solid #000;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 25px;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    transition: background-color 0.2s, color 0.2s;
    display: block;
}

.all-articles-button:hover {
    color: #fff;
    background-color: #000;
}

.section-title-text {
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
    text-decoration: none;
}

.section-title-text:hover {
    text-decoration: underline;
}

._2-collection-item {
    flex-wrap: wrap;
    align-items: flex-start;
    width: 49%;
    padding-top: 25px;
    padding-bottom: 25px;
}

.featured-posts {
    justify-content: center;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
    display: block;
}

.about-top {
    justify-content: center;
    align-items: center;
    padding: 210px 30px 120px;
    display: flex;
}

.h1-blog-post {
    color: #000;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 54px;
    font-weight: 700;
    line-height: 120%;
}

.h1-blog-post.hiw {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    font-family: Lora, sans-serif;
    font-weight: 400;
}

.section-title-big {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: Tenor Sans, sans-serif;
    font-size: 20px;
    line-height: 24px;
}

.link-block {
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
}

.team-collection-item {
    flex-wrap: wrap;
    align-items: stretch;
    width: 25%;
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
}

.team-image {
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
}

.team-member-info {
    margin-top: 15px;
}

.team-member-name {
    color: #000;
    font-family: Source Serif Pro, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.team-member-role {
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 12px;
}

.collection-list-wrapper-7 {
    margin: -25px -10px;
}

.contact-item-wrapper {
    justify-content: center;
    align-items: stretch;
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
}

.contact-wrapper {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
}

.contact-item {
    text-align: center;
    border: 1px solid #000;
    flex-wrap: wrap;
    place-content: flex-start center;
    align-items: flex-start;
    width: 100%;
    padding: 45px 30px;
    display: flex;
}

.number {
    color: #fff;
    text-align: center;
    font-family: Source Serif Pro, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.about-blog {
    justify-content: center;
    align-items: center;
    padding: 120px 30px;
    display: flex;
}

.title-section {
    justify-content: center;
    align-items: center;
    padding: 80px 0 40px;
}

.title-section.cc-detail {
    padding-left: 0;
    padding-right: 0;
}

.post-image {
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.post-content {
    justify-content: center;
    align-items: center;
    padding: 30px 20px 100px;
    display: block;
}

.post-content-wrapper {
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.author-image-wrapper {
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 50%;
    background-size: cover;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-top: 15px;
    margin-bottom: 5px;
    display: block;
    overflow: hidden;
}

.rich-text ul {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text h2 {
    max-width: 800px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text h3 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
}

.rich-text ol {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text li {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 170%;
}

.rich-text blockquote {
    color: #7a7a7a;
    border-top-style: none;
    max-width: 800px;
    margin: 60px auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 40px;
    font-family: Merriweather, serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
}

.rich-text figcaption {
    margin-top: 0;
    margin-bottom: 0;
}

.rich-text img {
    margin-bottom: 8px;
}

.rich-text h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 42px;
    line-height: 50px;
}

.rich-text h4 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rich-text h5 {
    color: #8f8f8f;
    max-width: 800px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    font-family: Lato, sans-serif;
    font-size: 40px;
    font-weight: 200;
}

.rich-text figure {
    background-color: #0000;
    margin-bottom: 40px;
}

.collection-list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
}

.footer-collection-item {
    line-height: 24px;
    text-decoration: none;
}

.link-footer {
    color: #e9e9e9;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: none;
}

.link-footer.w--current {
    color: #fff;
    font-weight: 700;
}

.div-block {
    display: flex;
}

.style-guide-label {
    color: #777;
    border-bottom: 1px solid #777;
    flex: 1;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 13px;
    line-height: 14px;
}

.footer-links-inner {
    flex-flow: column;
    flex: none;
    align-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
    display: flex;
}

.topcta {
    margin-top: 30px;
}

.column-2 {
    padding-left: 0;
    padding-right: 0;
}

.menubutton {
    text-align: left;
    cursor: pointer;
    background-color: #0000;
    border: 1px #fff;
    max-width: 30ch;
    padding: 7px 20px;
    font-weight: 500;
}

.menubutton.w--current {
    color: #ffffffb3;
}

.menubutton.lesswide {
    color: #b9b9b9;
    max-width: 32ch;
    padding: 8px 0;
    font-size: 14px;
}

.menubutton.lesswide.w--current {
    line-height: 130%;
}

.menubutton.temphide,
.menubutton.mobile {
    display: none;
}

.landingpagehero {
    color: #fff;
    border-bottom: 1px solid #eee;
    height: 1000px;
    position: relative;
}

.landingpagehero.crypto {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
    linear-gradient(180deg, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f329db0749a8f45dc4b438f_pattern2.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
}

.landingpagehero.beneficiary {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
    linear-gradient(180deg, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f32a1f8f6c27b210927f233_pattern3.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
}

.landingpagehero.wealthtracker {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/62fe3a120a40b4c164ec89cb_Kubera%20Hero.png),
    linear-gradient(to bottom, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f329db0749a8f45dc4b438f_pattern2.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 50%, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
}

.landingpagehero.finapp {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6233068fe4b492941005ee24_Kubera%20Hero.png),
    linear-gradient(to bottom, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f329c65749a8f287a4b3f86_pattern.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 50%, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
}

.landingpagehero.wlk {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/647800a5492c0d2b11ca78c9_WLK%20Hero.png),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat;
    background-size: 1000px, cover, auto;
    height: 930px;
}

.landingpagehero.wlkclient {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/601a4496a4cc3193a084c153_homepagehero.png),
    linear-gradient(to bottom, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f0c2ef946b8b20943284597_petr-sevcovic-qE1jxYXiwOA-unsplash.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 100% 0, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
    height: 940px;
}

.landingpagehero.portfolio {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
    linear-gradient(180deg, #000000e6 7%, transparent),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/604b01c38619223ae97c1222_chuttersnap-mf-o1E7omzk-unsplash.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 50% 0, 0 0;
    background-repeat: no-repeat, repeat, repeat, repeat;
    background-size: 1000px, auto, cover, auto;
}

.landingpagehero.fintech {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64ec859804bac12e76b053bb_fintech_hero.png),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    background-position: 50% 100%, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat;
    background-size: 1000px, cover, auto;
    height: 1000px;
}

.bigloginbutton {
    background-color: #000;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.signupbutton {
    cursor: pointer;
    background-color: #0000;
    border: 1px solid #fff;
    margin-left: 10px;
    padding: 7px 13px;
    font-weight: 500;
    text-decoration: none;
    display: none;
}

.homeheaderwrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 35px;
    padding-left: 20px;
    padding-right: 20px;
}

.start-trial-button {
    background-color: #4200ff;
    border: 1px solid #6b4dda;
    margin-right: 20px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    display: none;
}

.start-trial-button.paid,
.start-trial-button.mobile {
    display: none;
}

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

.menuseparator {
    border: 1px #ffffff80;
    border-left-style: solid;
    width: 1px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.column {
    text-align: right;
    object-fit: fill;
    padding-left: 0;
    padding-right: 0;
}

.heading {
    color: #fff;
    text-shadow: 0 0 10px #0009;
    max-width: 19ch;
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: Lora, sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 110%;
    text-decoration: none;
}

.heading.homepage {
    letter-spacing: -2px;
    max-width: 14ch;
    font-size: 80px;
}

.heading.wlk,
.heading.crypto {
    max-width: 20ch;
}

.subheading {
    color: #fff;
    text-shadow: 0 0 12px #000;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    display: none;
}

.subheading.mobile {
    display: none;
}

.subheading.desktop,
.subheading.desktop.wlk {
    display: block;
}

.subheading.cp {
    max-width: 74ch;
}

.image {
    width: 100%;
    max-width: 100%;
}

.column-3 {
    padding-left: 50px;
}

.column-3.right {
    padding-top: 20px;
    padding-left: 50px;
}

.fullcontainer {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 0 70px #00000040;
}

.fullcontainer.fullscreen {
    margin-top: 40px;
    padding: 0;
}

.fullcontainer.home {
    padding: 50px;
}

.column-1 {
    padding-top: 20px;
    padding-right: 50px;
}

.column-1.nfttopspacing {
    padding-top: 40px;
}

.homesectionsubtitle {
    color: #616161;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.container-3 {
    margin-bottom: 100px;
}

.container-3.home {
    margin-top: 0;
}

.container-3.wlk {
    margin-top: 80px;
}

.div-block-19.hidden {
    display: none;
}

.homesectiontitle {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 130%;
}

.homesectiontitle.white {
    color: #fff;
    text-decoration: none;
}

.homesectiontitle.wlk {
    max-width: 15ch;
}

.columns-2 {
    margin-top: 150px;
}

.columns-2.first {
    margin-top: 80px;
}

.columns-2.first.hide {
    display: none;
}

.columns-2.hide {
    display: block;
}

.body {
    background-color: #faf4ed;
}

.beneficiarydesc {
    color: #ffffffd6;
    margin-top: 8px;
}

.columns-3 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.container-5 {
    color: #fff;
}

.column-4 {
    padding-top: 0;
}

.beneficiarywrap {
    background-color: #613b20;
}

.div-block-16 {
    margin-top: 18px;
}

.homesectiontitlebig {
    color: var(--black);
    align-items: center;
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 120%;
    display: flex;
}

.homesectiontitlebig.hidden {
    display: none;
}

.pricecard {
    color: #fff;
    background-color: #000;
    height: 260px;
    padding: 40px 50px;
}

.homesectiondesc {
    color: #313131;
    font-size: 16px;
}

.homesectiondesc.hidden {
    display: none;
}

.pricingdesc {
    color: #ffffffb3;
    min-height: 75px;
    font-size: 14px;
    line-height: 130%;
}

.pricingdesc.wlk {
    height: 53px;
}

.personalplanprice {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 16px;
    font-size: 46px;
    font-weight: 200;
    text-decoration: none;
}

.text-span {
    font-size: 36px;
}

.securitywrap {
    margin-bottom: 100px;
    display: block;
}

.free-paid {
    margin-top: 20px;
    margin-bottom: 60px;
}

.footer {
    color: #b9b9b9;
    background-color: #000;
    padding: 40px 20px 80px;
}

.footermenu {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.column-6 {
    padding-left: 0;
    padding-right: 0;
}

.column-7 {
    padding-right: 0;
}

.innerheaderwrap {
    background-color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.h1-inner-pages {
    margin-top: 0;
    margin-bottom: 10px;
}

.h1-inner-pages.longword {
    font-size: 36px;
}

.accordion-item-content {
    margin-top: 5px;
    overflow: hidden;
}

.accordion-item {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 24px 30px 14px;
    box-shadow: 0 3px 7px #00000024;
}

.accordion-item-trigger {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.container-7 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.accordion-heading {
    cursor: pointer;
    flex: 1;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Libre Franklin, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.text-block-5 {
    margin-top: 20px;
    font-size: 12px;
    line-height: 150%;
}

.icon-3.material-icons {
    color: #0009;
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    font-family: Materialicons, sans-serif;
    font-size: 24px;
    line-height: 100%;
}

.image-3 {
    height: 180px;
}

.teamdescription {
    color: #000;
    margin-top: 15px;
}

.nametitle {
    color: #005bd1;
    font-size: 16px;
    text-decoration: none;
}

.text-block-6 {
    margin-top: 20px;
}

.teamname {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.columns-5 {
    margin-bottom: 50px;
}

.loginbutton {
    cursor: pointer;
    background-color: #0000;
    border: 1px #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 20px;
    font-weight: 500;
    display: none;
}

.backtoappbutton,
.signoutbutton {
    cursor: pointer;
    background-color: #0000;
    border: 1px solid #fff;
    margin-left: 10px;
    padding: 7px 13px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    display: none;
}

.address {
    border-top: 2px solid #c7c7c7;
    margin-top: 20px;
    padding-top: 30px;
}

.div-block-23,
.div-block-24 {
    display: inline-block;
}

.link-block-2,
.link-block-2.w--current {
    padding-top: 7px;
    padding-bottom: 7px;
}

.div-block-26 {
    width: 40%;
    display: flex;
}

.text-block-9 {
    color: #fff;
    padding-bottom: 5px;
    font-size: 13px;
    display: inline-block;
}

.div-block-27 {
    background-color: #000;
    border-bottom: 1px #3a3a3a;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
}

.error-message {
    color: red;
    background-color: #0000;
    margin-top: 0;
    padding: 5px 0 0;
}

.text-block-10 {
    font-size: 13px;
}

.success-message {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

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

.button-2 {
    background-color: #0000;
    padding: 7px 20px 7px 0;
    font-size: 16px;
    font-weight: 600;
}

.div-block-29 {
    margin-left: auto;
    margin-right: auto;
}

.collection-list-wrapper-8 {
    display: inline-block;
}

.heading-1-story {
    margin-top: 0;
    margin-bottom: 10px;
}

.bloghomecontainer {
    flex-wrap: wrap;
    place-content: center;
    align-items: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.readmore {
    border-top: 1px solid #ddd;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 90px;
    padding-left: 20px;
    display: none;
}

.div-block-30 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.image-6 {
    width: 100%;
    height: 1px;
}

.creditcard {
    text-shadow: 0 0 5px #000;
    margin-top: 10px;
    font-weight: 500;
    display: none;
}

.creditcard.paid {
    display: none;
}

.more-posts-image {
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
    display: block;
}

.posts-image-smallest {
    background-image: url(https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg);
    background-position: 0 0;
    background-size: cover;
    width: 100%;
    height: 200px;
    margin-bottom: 0;
    display: block;
}

.div-block-31 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state {
    background-color: #0000;
}

.link-block-3 {
    margin-bottom: 15px;
    text-decoration: none;
    display: block;
}

.collection-list-wrapper-9 {
    width: 100%;
}

.rich-text-block {
    margin-bottom: 30px;
}

.line {
    border-top: 1px solid #d8d8d8;
    margin-bottom: 60px;
}

.stylablebuttons {
    justify-content: space-between;
    align-items: center;
    width: 145px;
    margin-bottom: 20px;
    display: flex;
}

.html-embed {
    clear: none;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
}

.share-icons {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.secondrycta {
    color: #fff;
    background-color: #00000075;
    border: 1px solid #ffffff80;
    margin-right: 20px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.div-block-36 {
    padding-top: 100px;
}

.hiwshots {
    cursor: pointer;
    border: 1px solid #000;
    margin-bottom: 100px;
    padding: 10px;
}

.hiwshots.hide {
    display: none;
}

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

.secondarybuttononwhite {
    color: var(--black);
    background-color: #0000;
    border: 1px solid #a3a3a3;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 400;
    display: none;
}

.secondarybuttononwhite.w--current {
    display: none;
}

.image-8 {
    cursor: pointer;
    margin-bottom: 5px;
    margin-right: 10px;
    position: fixed;
    inset: auto 0% 0% auto;
}

.signuponmobile {
    color: var(--white);
}

.div-block-38 {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
}

.heading-4 {
    margin-bottom: 5px;
}

.div-block-39 {
    padding-left: 20px;
    padding-right: 20px;
}

.innerpageheadercontainer {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.utility-page-wrap {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    width: 260px;
    display: flex;
}

.sidecontainer {
    height: 300px;
    padding: 30px;
    box-shadow: 0 0 70px #00000040;
}

.sidecontainer.beneficiary {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6698c9c44ec7a3c3681b1b59_family_on_beach.jpg);
    background-position: 0 0;
    background-size: cover;
}

.sidecontainer.breathe {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/62964b69ec9d8903393097f0_breathe.jpg);
    background-position: 50% 0;
    background-size: cover;
}

.sidecontainer-banner {
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 0 70px #00000040;
}

.sidecontainer-appscreen {
    box-shadow: 0 0 70px #00000040;
}

.keepintouchmobile {
    border-bottom: 1px #3a3a3a;
    padding-top: 20px;
    display: none;
}

.keepintouchmobilelabel {
    color: #444;
    padding-bottom: 5px;
    font-size: 13px;
    display: inline-block;
}

.hiwvdo {
    margin-bottom: 100px;
}

.material-icons {
    color: #252525;
    padding: 5px;
    font-family: Materialicons, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.text-block-14 {
    margin-top: -20px;
    margin-bottom: 40px;
    margin-left: -10px;
    font-size: 24px;
}

.tiername {
    color: #fff9;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
}

.faqpara {
    margin-right: 30px;
}

.pricingfinetext {
    font-size: 13px;
}

.outerbannerwrap {
    color: #fff;
    background-color: #da552f;
    height: 50px;
    text-decoration: none;
    display: block;
}

.innerbannerwrap {
    max-width: 850px;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
}

.bannertextwrap {
    align-self: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.image-10 {
    object-position: 50% 50%;
}

.div-block-41 {
    display: flex;
}

.div-block-42 {
    align-self: flex-end;
}

.copyright {
    max-width: 1200px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    line-height: 140%;
}

.founderlocation {
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: Libre Franklin, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 94%;
    display: block;
}

.homesectiontitlebigchevron {
    color: #252525;
    font-family: Materialicons, sans-serif;
    font-size: 30px;
    line-height: 93%;
    text-decoration: none;
    display: inline-block;
    position: relative;
    top: 4px;
}

.homesectiontitlebiglink {
    color: var(--black);
    align-items: center;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
    text-decoration: none;
    display: flex;
}

.homepagehero {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
    linear-gradient(180deg, #000000e6, transparent 83%),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66795efa13529ad5b8ef3f45_colin-chong-E0X2FOBkkw8-unsplash.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    color: #fff;
    background-position: 50% 100%, 0 0, 0 0, 0 0;
    background-repeat: no-repeat, repeat, no-repeat, repeat;
    background-size: 1000px, auto, auto, auto;
    background-attachment: scroll, scroll, scroll, scroll;
    height: 970px;
    position: relative;
}

.homesectionwrap {
    margin-top: 150px;
}

.homesectionwrap.first {
    margin-top: 0;
}

.homesectionwrap.points {
    margin-top: 100px;
}

.homesectionwrap.hide {
    display: none;
}

.heading-landing {
    color: #fff;
    text-shadow: 0 0 10px #0009;
    width: 27ch;
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 48px;
    font-weight: 600;
    line-height: 110%;
}

.heading-landing.cp {
    font-size: 48px;
}

.mobilecontainer-currency {
    background-color: var(--white);
    max-height: 330px;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 70px #00000040;
}

.mobilecontainer-bank {
    background-color: var(--white);
    padding: 20px;
    display: none;
    box-shadow: 0 0 70px #00000040;
}

.mobilecontainer-assets {
    background-color: var(--white);
    max-height: 330px;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 70px #00000040;
}

.oldplansgridwrap {
    display: block;
}

.faqrichtext {
    margin-right: 30px;
}

.faqrichtext ul {
    padding-left: 20px;
}

.innerpagesubhead {
    font-size: 30px;
    font-weight: 500;
    line-height: 120%;
}

.hiwdesc {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 150%;
}

.header-beneficiary {
    color: #fff;
    text-shadow: 0 0 10px #0009;
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 54px;
    font-weight: 600;
    line-height: 116%;
}

.multicol-text-wrap {
    margin-top: 60px;
}

.multicoltext-column {
    padding-right: 20px;
}

.multicoltext-column.right {
    padding-left: 20px;
    padding-right: 10px;
}

.mobilecontainer-2col {
    display: block;
}

.headermenu-dropdown {
    color: var(--white);
}

.headermenu-dropdown.temphide {
    display: none;
}

.dropdown-toggle-2 {
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 20px;
    font-weight: 500;
    display: block;
}

.dropdown-list-2 {
    background-color: var(--black);
    display: none;
}

.div-block-44 {
    display: none;
}

.footerlink-sectionhead {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
}

.regular-arrow-forward {
    font-family: Materialicons, sans-serif;
    position: relative;
    top: 2px;
}

.also-read-links {
    color: var(--white);
    text-decoration: none;
}

.also-read {
    color: var(--white);
    background-color: #777;
    margin-top: 20px;
    padding: 60px 20px;
    font-size: 16px;
}

.link-block-4 {
    display: block;
}

.only-paid {
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
}

.onlypaidpricecard {
    color: #fff;
    background-color: #000;
    height: 210px;
    padding-top: 40px;
    padding-left: 50px;
    padding-right: 50px;
    display: block;
}

.onlypaidpricecard.last {
    margin-right: 0;
    padding-top: 41px;
}

.loginbuttonmobile {
    cursor: pointer;
    background-color: #0000;
    border: 1px #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 20px;
    font-weight: 500;
    display: none;
}

.div-block-45 {
    color: #fff;
    background-color: #3c14af;
    padding: 20px;
}

.link-5 {
    color: var(--black);
}

.div-block-46 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    grid-column-gap: 16px;
    grid-row-gap: 31px;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-areas: ". ." ".Area" ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". ." ". .";
    margin-bottom: 60px;
}

.bignumberwrap {
    background-image: linear-gradient(#0000003d, #0000003d),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5fa558d261533d0f3b93fcdc_sea.jpg);
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
}

.bignumber {
    color: var(--white);
    text-align: left;
    font-size: 60px;
    font-weight: 100;
    line-height: 100%;
}

.bignumbersmalltext {
    color: var(--white);
    text-transform: uppercase;
    margin-top: 16px;
    font-size: 16px;
    line-height: 130%;
}

.column-18 {
    white-space: nowrap;
}

.column-19 {
    text-align: left;
    padding-left: 5px;
    padding-right: 0;
}

.bignumbercolumns {
    width: 400px;
    margin-top: 40px;
    margin-bottom: 40px;
    display: inline-block;
}

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

.outagebannerwrap {
    background-color: #ffea00;
    display: none;
}

.outagebanner {
    text-align: center;
    background-color: #ffea00;
    padding: 10px;
    display: none;
}

.caricon {
    height: 80px;
    padding-top: 40px;
}

.homeicon {
    height: 80px;
}

.domainicon {
    height: 80px;
    padding-top: 29px;
}

.stylablebuttons-2 {
    justify-content: space-around;
    width: 600px;
    display: flex;
}

.linkedinshare {
    background-color: #0077b5;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.shareicon {
    font-family: "Fa brands 400", sans-serif;
    font-size: 20px;
}

.facebookshare {
    letter-spacing: 0.5px;
    background-color: #3b5998;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.twittershare {
    letter-spacing: 0.5px;
    background-color: #1da1f2;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.pinterestsave {
    letter-spacing: 0.5px;
    background-color: #bd081c;
    border-radius: 5px;
    align-items: center;
    height: 29px;
    padding: 10px;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.googleplusshare {
    letter-spacing: 0.5px;
    background-color: #dd4b39;
    border-radius: 5px;
    align-items: center;
    height: 29px;
    padding: 10px;
    font-family: Ubuntu, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 16px;
    display: flex;
}

.sidebarlinks {
    margin-top: 40px;
    margin-bottom: 30px;
}

.sidebarlinks.w--current {
    color: #96afff;
}

.rich-text-wlk ul {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text-wlk h2 {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text-wlk h3 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text-wlk p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
}

.rich-text-wlk ol {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text-wlk li {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 170%;
}

.rich-text-wlk blockquote {
    color: #7a7a7a;
    border-top-style: none;
    max-width: 800px;
    margin: 60px auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 40px;
    font-family: Merriweather, serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
}

.rich-text-wlk figcaption {
    margin-top: 0;
    margin-bottom: 0;
}

.rich-text-wlk img {
    margin-bottom: 8px;
}

.rich-text-wlk h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 42px;
    line-height: 50px;
}

.rich-text-wlk h4 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rich-text-wlk h5 {
    color: #8f8f8f;
    max-width: 800px;
    margin: 60px auto 20px;
    font-family: Lato, sans-serif;
    font-size: 40px;
    font-weight: 300;
}

.rich-text-wlk figure {
    background-color: #0000;
    margin-bottom: 40px;
}

.rich-text-wlk em {
    background-color: #fff589;
}

.html-embed-2 {
    text-align: center;
}

.ratebadgewrap {
    margin-top: 20px;
}

.goldbaricon {
    height: 80px;
    padding-top: 26px;
}

.wl-contact {
    background-color: #3c14af;
    margin-right: 20px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}

.link-6 {
    color: var(--white);
}

.wlkcontactform-wrap {
    width: 401px;
}

.submit-button-wlk {
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #3c14af;
    height: 50px;
    margin-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Libre Franklin, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
}

.text-field-wlk {
    background-color: #fff;
    max-width: 400px;
    height: 50px;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}

.success-message-wlk {
    background-color: #00884b;
    height: 50px;
    padding-top: 15px;
    padding-bottom: 5px;
    font-size: 13px;
}

.wlkformlabel {
    margin-top: 40px;
}

.wlkformlabel.first {
    margin-top: 0;
}

.wlk-form {
    margin-left: auto;
    margin-right: auto;
}

.wlk-form-success {
    color: var(--white);
    background-color: #02ac7c;
}

.pricingblocklbiz {
    color: #fff;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 300;
    line-height: 100%;
}

.plainlinkblock-nostyle {
    text-decoration: none;
}

.quote {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/60dc2ae12402374385687df9_quote.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 23px;
    padding-top: 12px;
    padding-left: 30px;
    display: block;
}

.quote.second {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
}

.quotewrapper {
    color: #fff;
    background-color: #2c2c2c;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: Lora, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 150%;
}

.quotewrapper.hidden {
    display: none;
}

.quotebigtitle {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    text-decoration: none;
}

.reviewlink {
    color: #ffffffad;
    margin-top: 30px;
    font-family: Libre Franklin, sans-serif;
    font-size: 14px;
    line-height: 100%;
}

.featuregridicon {
    align-items: flex-end;
    height: 60px;
    margin-bottom: 10px;
    display: flex;
}

.caricon-copy {
    height: 80px;
    padding-top: 40px;
}

.shareicon2 {
    height: 80px;
    padding-top: 24px;
}

.homepagebanner {
    background-color: #ffea00;
    padding: 20px;
}

.link-7 {
    color: #fff;
}

.bannertext {
    text-align: left;
    max-width: 90ch;
}

.homesectiontitlebig-copy {
    color: var(--black);
    align-items: center;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    display: flex;
}

.assetworthwrap {
    margin-bottom: 100px;
}

.fineprint {
    max-width: 800px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
}

.helpwidget {
    display: none;
}

.assetstrackedwrap {
    background-color: #fff;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    display: flex;
    box-shadow: 0 0 70px #00000040;
}

.trackedassetcard {
    margin-right: 60px;
}

.trackedassetcard.last {
    margin-right: 0;
}

.smalllabel {
    color: #0009;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 11px;
}

.trackedasset {
    font-size: 50px;
    font-weight: 200;
    line-height: 50px;
}

.trackedassetstitle {
    color: var(--black);
    text-transform: uppercase;
    width: 170px;
    font-size: 36px;
    font-weight: 300;
    line-height: 106%;
}

.plansgrid {
    margin-top: 20px;
    margin-bottom: 60px;
}

.validationplantitle {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 300;
    line-height: 100%;
}

.personalplantitle {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}

.personalplantitle.personal {
    margin-top: 20px;
}

.column-20 {
    padding-left: 0;
    padding-right: 0;
}

.quotename {
    display: block;
}

.quotethumbnail {
    margin-top: 10px;
}

.header2 {
    max-width: 30ch;
    margin-top: 100px;
    margin-bottom: 80px;
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
}

.header2.first {
    margin-top: 100px;
}

.header2.withimage {
    margin-top: 40px;
}

.wlk-form-title {
    font-weight: 700;
}

.blog-cta-wrapper {
    max-width: 800px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

.div-block-48 {
    display: none;
}

.cognitivewrap {
    background-color: #17363d;
}

.about-quote {
    max-width: 42ch;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 300;
    line-height: 134%;
}

.mobilecontainer-comparison {
    background-color: var(--white);
    display: none;
    box-shadow: 0 0 70px #00000040;
}

.smallfeaturesgrid {
    margin-bottom: 60px;
}

.smallfeaturesgrid.first {
    margin-top: 130px;
}

.smallfeaturesgrid.last {
    margin-bottom: 100px;
}

.leanheading {
    font-size: 54px;
}

.subheading-text-block-1 {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 140%;
}

.header3 {
    max-width: 29ch;
    margin-bottom: 60px;
    font-size: 40px;
    font-weight: 600;
    line-height: 130%;
}

.header3.first {
    max-width: 30ch;
    margin-top: 100px;
}

.secondarybutton-icon {
    margin-left: 2px;
    font-family: Materialicons, sans-serif;
    font-size: 16px;
    line-height: 80%;
    display: inline-block;
    position: relative;
    inset: 4px auto auto;
}

.secondarybutton-icon.hidden {
    display: none;
}

.quotedesc {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
}

.quotedesc.tyron {
    font-size: 18px;
}

.quoteauthor {
    color: #ffffffbd;
    margin-top: 14px;
    font-size: 16px;
    line-height: 150%;
    text-decoration: none;
}

.quote-sidebyside {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/60dc2ae12402374385687df9_quote.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 23px;
    padding-top: 12px;
    padding-left: 30px;
    display: block;
}

.quotewrapper-sidebyside {
    color: #fff;
    background-color: #2c2c2c;
    height: 460px;
    padding: 30px 20px;
    font-family: Lora, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 150%;
}

.quotewrapper-sidebyside.mobile {
    display: none;
}

.plancard {
    color: #fff;
    background-color: #501fdb;
    height: 380px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    display: block;
}

.plancard.top {
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.plancard.top.personal {
    background-color: #636363;
}

.plancard.last {
    margin-right: 0;
    padding-top: 41px;
}

.plancard.advisor {
    background-color: #321092;
}

.quoteroundauthorpic {
    border: 1px solid #4d4d4d;
    border-radius: 103px;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.quoteroundauthorpic.eoghan {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/63573cab66822112d2307486_eoghan.jpg);
    background-position: 0 0;
    background-size: cover;
}

.quoteroundauthorpic.tyron {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6359ff8672a155f938dc58e9_tyron.jpg);
    background-position: 0 0;
    background-size: cover;
}

.quoteroundauthorpic.keith {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/65eeb36faafe177ef235415f_keith.jpg);
    background-position: 0 0;
    background-size: cover;
}

.quoteroundauthorpic.awilkinson {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6661bb4ead1641a6e75a9273_awilkinson.jpeg);
    background-position: 0 0;
    background-size: cover;
    margin-top: 14px;
}

.quoteroundauthorpic.emilybinder {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6666bbe19ef35ed8996bd80b_emily.jpeg);
    background-position: 0 0;
    background-size: cover;
    margin-top: 14px;
}

.quoteroundauthorpic.austinrief {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6698c57f4ec7a3c368183082_austinrief.jpg);
    background-position: 0 0;
    background-size: cover;
    margin-top: 14px;
}

.quoteroundauthorpic.samparr {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66a260a28489810649a8eefa_samparr.jpg);
    background-position: 0 0;
    background-size: cover;
}

.quoteroundauthorpic.kevinrose {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66c6cc03e84bf4306cceeebc_kevin.jpg);
    background-position: 0 0;
    background-size: cover;
    margin-top: 14px;
}

.plansgridwrap {
    margin-top: 100px;
}

.plansmalltext {
    color: #9b9b9b;
    font-size: 13px;
}

.secondcta {
    color: #fff;
    text-shadow: 0 0 5px #000;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.secondcta.paid {
    display: none;
}

.assetstracked {
    margin-top: 10px;
    font-size: 70px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
}

.assetstrackedtitle {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 200;
    line-height: 100%;
    text-decoration: none;
}

.trackedassetswrap {
    margin-top: 100px;
    margin-bottom: 60px;
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    display: none;
}

.trackedassetstextline {
    max-width: 29ch;
    font-size: 40px;
    font-weight: 600;
    line-height: 120%;
}

.planwrap {
    background-color: #2c2c2c;
    padding-top: 80px;
}

.contactsalesctabutton {
    background-color: #3c14af;
    border: 1px solid #501fdb;
    margin-right: 20px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
}

.contactsalesctabutton.paid {
    display: none;
}

.plancolumn {
    padding-left: 4px;
    padding-right: 4px;
}

.blogpostcta {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.blogpostcta.paid {
    display: none;
}

.ctabuttonpricecard {
    color: #000;
    text-align: center;
    background-color: #eee;
    border: 1px solid #646464;
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    display: block;
}

.ctabuttonpricecard.paid,
.ctabuttonpricecard.mobile {
    display: none;
}

.getforfree {
    color: #fff;
    margin-top: 20px;
    font-size: 12px;
}

.planningimagewrap {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 0 70px #00000040;
}

.image-11 {
    padding: 40px;
    box-shadow: 0 0 70px #00000040;
}

.video-play-button-wrap {
    text-align: center;
    display: block;
    position: absolute;
    inset: auto 0% 18%;
}

.wlk-feature-outerwrap {
    background-color: #f4f0ff;
    border-radius: 10px;
    flex-direction: row;
    align-items: center;
    min-height: 75px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 13px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
}

.wlk-feature-check {
    color: #4300ff;
    border: 1px #000;
    margin-right: 5px;
    font-family: Materialicons, sans-serif;
    font-size: 25px;
    line-height: 80%;
    display: inline-block;
}

.wlk-feature-check.hidden {
    display: none;
}

.text-block-16 {
    margin-top: 0;
    display: block;
    position: absolute;
    top: 35%;
}

.text-block-17 {
    position: absolute;
    top: 50%;
    bottom: 50%;
}

.wlk-feature-inner-wrap {
    display: flex;
}

.text-block-18 {
    line-height: 109%;
    display: inline-block;
}

.text-block-19 {
    display: inline-block;
}

.wlk-flow-chart-wrap {
    border: 4px solid #585858;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 100px;
    padding: 80px 30px;
}

.wlk-primer {
    max-width: 55ch;
    font-size: 22px;
    line-height: 155%;
}

.div-block-50 {
    margin-bottom: 100px;
}

.demo-form-wrap {
    background-color: #fff;
    border: 2px solid #5a5a5a;
    border-radius: 10px;
    margin-top: 60px;
    padding: 60px;
}

.videopopupwrap {
    z-index: 1;
    background-color: #000c;
    align-items: center;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
}

.videoinnerwrap {
    width: 90%;
    max-width: 1000px;
    margin: auto;
}

.video-play-button {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/68e89a2dfa5f1d0f664e00a8_playbutton.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 40px;
    width: 100px;
    height: 80px;
}

.wlk-primer-title {
    max-width: 31ch;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 600;
}

.wlk-primer-title.bottomspace {
    margin-bottom: 80px;
}

.text-span-3 {
    font-size: 60px;
}

.blue-link {
    color: #005ddf;
}

.wlk-cta-mobile-wrap {
    display: none;
}

.wlk-cta-mobile {
    color: #fff;
    text-shadow: 0 0 5px #000;
    font-size: 16px;
    font-weight: 500;
}

.wlk-cta-mobile.paid {
    display: none;
}

.how-kubera-works-richtext p {
    font-size: 26px;
}

.bannertexttitle {
    font-size: 18px;
    font-weight: 700;
}

.textarea {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
}

.text-field-wlk-copy {
    background-color: #fff;
    max-width: 400px;
    height: 50px;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    display: none;
}

.text-field-2,
.hide,
.dropdown-2.temphide,
.icon-4 {
    display: none;
}

.personalplantag {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 400;
    line-height: 100%;
}

.rightcol.right {
    padding-top: 20px;
    padding-left: 50px;
}

.articlesignupbanner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    border-top: 1px solid #c5c5c5;
    justify-content: flex-start;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    display: flex;
}

.header2image {
    margin-top: 100px;
}

.kuberablackwrap {
    background-color: #000;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66751cda5c9c1350eb876d43_kuberablackbg.png);
    background-position: 0 0;
    background-size: cover;
    border: 10px solid #1d1d1d;
    padding: 20px;
    display: flex;
}

.kuberapersonalpanel {
    color: #fff;
    background-color: #2f273d99;
    border: 1px dashed #dbe1ee59;
    width: 35%;
    height: 600px;
    padding: 30px;
    text-decoration: none;
    position: relative;
}

.kuberablackpanel {
    color: #fff;
    width: 65%;
    height: 600px;
    padding: 30px;
    font-size: 16px;
    position: relative;
}

.planname {
    color: #ffffff80;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 400;
}

.planname.personal {
    margin-top: 20px;
}

.plantitle {
    color: #fff;
    font-family: Lora, sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 110%;
}

.plantitle.personal {
    margin-top: 20px;
}

.plantitlesmall {
    color: #fffc;
    margin-top: 6px;
    font-size: 14px;
    line-height: 130%;
}

.planfeaturelist {
    color: #fff;
    margin-top: 40px;
    padding-left: 16px;
}

.plandetails {
    margin-bottom: 20px;
}

.plandetails.personal {
    margin-top: 20px;
}

.div-block-53 {
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    display: flex;
    position: absolute;
    inset: auto 0% 30px 30px;
}

.div-block-54,
.div-block-55 {
    width: 50%;
    height: 70px;
    position: relative;
}

.planprice {
    color: #fff;
    padding-top: 10px;
    padding-bottom: 3px;
    font-size: 46px;
    font-weight: 300;
    text-decoration: none;
    position: absolute;
    inset: auto 0% 0%;
}

.div-block-53-copy {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    inset: auto 0% 30px 30px;
}

.div-block-56 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    inset: auto 30px 30px;
}

.div-block-56.b2b {
    bottom: 50px;
    left: 50px;
    right: 50px;
}

.plancta {
    text-align: center;
    background-color: #eee;
    border: 1px solid #646464;
    width: 236px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    inset: auto 0% 0% auto;
}

.plancta.paid,
.plancta.mobile {
    display: none;
}

.plancta.b2c {
    background-color: #4923d2;
    border-color: #6b4dda;
    left: auto;
}

.plancta.b2b {
    background-color: #3f20ac;
    border-color: #ffffff40;
}

.list-item {
    margin-bottom: 20px;
}

.planctanote {
    color: #ffffffb3;
    font-size: 12px;
    line-height: 120%;
    position: static;
}

.planctanote.mobile {
    display: none;
}

.planctanote.desktop {
    max-width: 236px;
    position: absolute;
    inset: auto 30px -5px auto;
}

.kforbiz {
    color: #fff;
    background-color: #2e138c;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66758333cf5690b49d458a93_kuberab2bbg.png);
    background-position: 0 0;
    background-size: cover;
    border: 10px solid #1d1d1d;
    border-top-style: none;
    height: 300px;
    padding: 50px;
    text-decoration: none;
    display: block;
    position: relative;
}

.planpricedesc {
    font-size: 13px;
    position: absolute;
    inset: 0% 0% auto;
}

.mobilectab2c {
    display: none;
}

.plandetailslink {
    color: #fff;
}

.quote-column {
    margin-bottom: 20px;
}

.quote-med-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.quote-convo {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/60dc2ae12402374385687df9_quote.png);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 23px;
    width: 750px;
    padding-top: 12px;
    padding-left: 30px;
    display: block;
}

.spldeal {
    color: #ffffffb3;
    max-width: 17ch;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
}

.spldeal.personal {
    margin-top: 20px;
}

.spldeal.wlk {
    line-height: 130%;
}

.smallhero {
    background-image: linear-gradient(#000, #00000047),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66795efa13529ad5b8ef3f45_colin-chong-E0X2FOBkkw8-unsplash.jpg);
    background-position: 0 0, 50% 0;
    background-size: auto, cover;
    padding-top: 1px;
    padding-bottom: 40px;
}

.smallsubheading {
    color: #fff;
    font-size: 17px;
}

.homepagehero2 {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
    linear-gradient(180deg, #000000e6, transparent 83%),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6720cf4918080bade2e3c783_ultimate-portfolio-tracker-for-hni.jpg),
    linear-gradient(to bottom, var(--black), var(--black));
    color: #fff;
    background-position: 50% 100%, 0 0, 50%, 0 0;
    background-repeat: no-repeat, repeat, no-repeat, repeat;
    background-size: 1000px, auto, cover, auto;
    background-attachment: scroll, scroll, fixed, scroll;
    height: 1150px;
    position: relative;
}

.heroimagesubtext {
    max-width: 70ch;
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: 400;
    line-height: 200%;
}

.heroimagetitle {
    color: #fff;
    letter-spacing: -2px;
    text-shadow: 0 0 10px #0009;
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: Lora, sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 110%;
    text-decoration: none;
}

.heroimagetitle.homepage {
    letter-spacing: -2px;
    max-width: 14ch;
    font-size: 80px;
}

.heroimagetitle.wlk,
.heroimagetitle.crypto {
    max-width: 20ch;
}

.topichead {
    letter-spacing: -1px;
    margin-top: 100px;
    margin-bottom: 20px;
    font-size: 46px;
    font-weight: 400;
    line-height: 120%;
}

.topichead.first {
    margin-top: 100px;
}

.topichead.withimage {
    margin-top: 40px;
}

.topichead.form {
    margin-top: 0;
}

.topicdesc {
    max-width: 70ch;
    font-family: Libre Franklin, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}

.topicdesc.first {
    margin-top: 100px;
}

.topicdesc.withimage {
    margin-top: 40px;
}

.subtopichead {
    margin-top: 60px;
    margin-bottom: 6px;
    font-family: Libre Franklin, sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 130%;
}

.subtopichead.first {
    margin-top: 100px;
}

.subtopichead.withimage {
    margin-top: 40px;
}

.subtopicdesc {
    max-width: 70ch;
    margin-bottom: 10px;
    font-family: Libre Franklin, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.subtopicdesc.first {
    margin-top: 100px;
}

.subtopicdesc.withimage {
    margin-top: 40px;
}

.subtopicwrap.one {
    width: 50%;
}

.subtopicwrap.two {
    margin-left: 50%;
}

.topicheadtype2 {
    letter-spacing: -1px;
    max-width: 20ch;
    margin-top: 100px;
    margin-bottom: 10px;
    font-size: 46px;
    font-weight: 400;
    line-height: 120%;
}

.topicheadtype2.first {
    margin-top: 100px;
}

.topicheadtype2.withimage {
    margin-top: 40px;
}

.stress {
    font-weight: 600;
}

.rich-text-black ul {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text-black h2 {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text-black h3 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
}

.rich-text-black p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 170%;
}

.rich-text-black ol {
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.rich-text-black li {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 170%;
}

.rich-text-black blockquote {
    color: #7a7a7a;
    border-top-style: none;
    max-width: 800px;
    margin: 60px auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 40px;
    font-family: Merriweather, serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
}

.rich-text-black figcaption {
    margin-top: 0;
    margin-bottom: 0;
}

.rich-text-black img {
    margin-bottom: 8px;
}

.rich-text-black h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 42px;
    line-height: 50px;
}

.rich-text-black h4 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rich-text-black h5 {
    color: #8f8f8f;
    max-width: 800px;
    margin: 60px auto 20px;
    font-family: Lato, sans-serif;
    font-size: 40px;
    font-weight: 300;
}

.rich-text-black figure {
    background-color: #0000;
    margin-bottom: 40px;
}

.rich-text-black em {
    background-color: #fff589;
}

.black-feature-details {
    margin-top: 20px;
    padding-left: 16px;
    font-size: 20px;
}

.black-primer {
    font-size: 20px;
    line-height: 155%;
}

.black-details-box {
    color: #fff;
    background-color: #000;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6736fd90c09a2f14221485f1_black%20details%20bg.png);
    background-position: 50% 0;
    background-size: cover;
    border: 10px solid #1d1d1d;
    padding: 80px 60px;
}

.kubera-black-title {
    letter-spacing: -1px;
    margin-bottom: 10px;
    font-family: Lora, sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
}

.kubera-black-title.first {
    margin-top: 100px;
}

.kubera-black-title.withimage {
    margin-top: 40px;
}

.kubera-black-title.form {
    margin-top: 0;
}

.kubera-black-price {
    margin-top: 60px;
    font-size: 60px;
    font-weight: 200;
    line-height: 100%;
}

.black-price-per-year {
    font-size: 30px;
    font-weight: 400;
}

.black-details-list-item {
    margin-bottom: 20px;
    line-height: 140%;
}

.black-details-link {
    color: #acacac;
    margin-left: 5px;
    font-size: 16px;
    font-weight: 300;
}

.container-black-details {
    margin-top: 80px;
    margin-bottom: 20px;
}

.container-black-details.home {
    margin-top: 0;
}

.container-black-details.wlk {
    margin-top: 80px;
}

.body-black {
    background-color: #2c2c2c;
}

.plan-feature-details {
    color: #fff;
    font-size: 16px;
}

.plan-feature-details.plandetailslink {
    color: #ffffff80;
    font-size: 16px;
}

.black-details-cta {
    color: #bbb;
    margin-top: 10px;
}

.sectionimage {
    height: 300px;
}

.sectionimage.collection {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6752b4e6da9d9ca23ce9bdd5_collection4.jpg);
    background-position: 50% 74%;
    background-repeat: no-repeat;
    background-size: cover;
}

.sectionimage.multiple {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6752c50ddd43c10a0ea57fbf_multiple4.jpg);
    background-position: 50% 32%;
    background-size: cover;
}

.sectionimage.modern {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/67d8e87aeac97f65a377c83f_pexels-followingnyc-9799072.jpg);
    background-position: 50%;
    background-size: cover;
}

.bold-text,
.text-span-4,
.text-span-5,
.text-span-6,
.text-span-7,
.bold-text-2,
.bold-text-3,
.bold-text-4 {
    font-weight: 600;
}

.column-21 {
    padding-right: 1px;
}

.column-22 {
    padding-left: 1px;
}

.onlyblackpanel {
    color: #fff;
    height: 260px;
    font-size: 16px;
    position: relative;
}

.onlyblackwrap {
    background-color: #000;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66751cda5c9c1350eb876d43_kuberablackbg.png);
    background-position: 0 0;
    background-size: cover;
    border: 10px solid #1d1d1d;
    padding: 50px;
}

.onlyblackpricewrap {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.onlyblackprice {
    color: #fff;
    height: 33px;
    font-size: 48px;
    font-weight: 300;
    text-decoration: none;
    position: absolute;
    inset: auto 0% 0%;
}

.onlyblackpricecell,
.onlyblacktrialcell {
    width: 50%;
    position: relative;
}

.onlyblacktrialcell.hide {
    height: 60px;
}

.plannamevar {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
}

.plannamevar.personal {
    margin-top: 20px;
}

.bbissuedetails {
    text-transform: uppercase;
    font-family: Roboto Condensed, sans-serif;
    font-size: 16px;
    font-weight: 200;
}

.bbsectionwrap {
    margin-top: 70px;
    margin-bottom: 100px;
    padding-bottom: 140px;
}

.bbsectionwrap.stocks {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6826188dda8860cf05c1a186_c860ffa9f550efbd649805ce08c2a569_bbsection1.jpg);
    background-position: 40% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectionwrap.funds {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dca4e18911989b8574888_d2094e5bcea6f2708451b8ad5eb517b7_bbsection2.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectionwrap.crypto {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dca8f4ed33d3879c65c1a_b6170464f91fcd0d950996ea6f19205b_bbsection3.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectionwrap.banks {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/68306e67195fe2e941fd2047_ca4a1d1534842027499a4edc17c47710_bbsection4.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectionwrap.broker {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dd6e688abf87df43e6586_bbsection5.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectionwrap.cryptoex {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dd7ff41ea6dcc686bb6c8_bbsection6.jpg);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 1200px;
}

.bbsectiontitle {
    letter-spacing: -2px;
    text-transform: uppercase;
    vertical-align: top;
    padding-left: 20px;
    font-family: Roboto, sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 33px;
    display: inline-block;
}

.bbsectioncol1 {
    color: #000c;
    border-right: 12px #fff0;
    padding: 40px 40px 60px;
}

.bbsectioncol1.stocks {
    background-color: #fffb8a;
}

.bbsectioncol1.funds,
.bbsectioncol1.crypto {
    background-color: #aaf2a0;
}

.bbsectioncol1.banks {
    background-color: #ffcad1;
}

.bbsectioncol1.broker {
    background-color: #b2caff;
}

.bbsectioncol1.crex {
    background-color: #c7ff79;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc0596ee1f1b4421d9d30_cryptoexbigten.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc045401c36e542450107_cryptoexkubera1.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc0324265432d4c37dc40_cryptoexbigband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbsectioncol1.cryptoex {
    background-color: #feed8a;
    height: 1000px;
}

.bbsectioncol2 {
    padding: 40px 40px 60px;
}

.bbsectioncol2.stocks {
    background-color: #d4acff;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c2e0dbe45cb257a384aba_0454da14ed2b5da7838252d103efd901_stocksbuzz.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c2df9c65b2c096e4be8f4_27686bce09e35855f2a9e9cb440c0cf5_stockskubera2.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c2de5c790bcc0c16ec095_3ecef53dd8648971a0b02c48d4174315_stocksbuzzband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbsectioncol2.funds {
    background-color: #e3caff;
}

.bbsectioncol2.crypto {
    background-color: #aaaeff;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c752bad045c05eb508166_2e6265647f72835223428d135a1d1cfe_cryptobuzz.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c752b127d7f9ed5104b8a_5e3cf235eb3ca355494a39ae84c4e040_cryptokubera2.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c752b1f6db7df2e547215_c4533f8d4e135d59242e9dde2547f75e_cryptobuzzband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbsectioncol2.banks {
    background-color: #80ffd5;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c79ab87a5366ef686da78_ecda2c14b08e0b4b599eb303c9d27924_banksbuzz.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c79abe7b77cd04879ae01_e10ab61e937c21838367c5c58151adea_bankskubera2.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682c79ab0f3a772af2fb4686_bb1f14e2f0ce473746616b5a626ff60a_banksbuzzband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbsectioncol2.broker {
    background-color: #feed8a;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682d918ba35a75caffe66f00_brokerbuzz.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682d9179a17a1645a3ad4419_brokerkubera2.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682d91646b4109d51717167d_brokerbuzzband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbsectioncol2.crex {
    background-color: #a5e3ff;
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc0a30bdb9bb1b0ec14d8_cryptoexbuzz.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc08ec4dd5fea5f7f226e_cryptoexkubera2.svg),
    url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/682dc07e874c5cc8e7d747ab_cryptoexbuzzband.svg);
    background-position: 100%, 100%, 100%;
    background-repeat: repeat-y, repeat-y, repeat-y;
    background-size: auto, auto, auto;
}

.bbseccol1head {
    font-family: Lora, sans-serif;
    font-size: 64px;
    line-height: 100%;
    position: absolute;
    inset: 120px -2% auto auto;
    transform: rotate(-90deg);
}

.bbseccol1head.stock {
    color: #d1ca00;
    letter-spacing: -2px;
    font-family: Lora, sans-serif;
    font-weight: 300;
}

.bblist {
    margin-bottom: 0;
    font-family: Inter, sans-serif;
    font-size: 26px;
}

.bblistitem {
    margin-top: 0;
    margin-bottom: 40px;
    padding-left: 0;
}

.bbrankitem {
    letter-spacing: -1px;
    font-weight: 800;
}

.bbtickersymbol {
    letter-spacing: -1px;
    text-transform: uppercase;
    font-weight: 200;
}

.bbrankitemhash {
    font-weight: 200;
    line-height: 130%;
}

.bbitemhashwrap {
    display: block;
}

.bbshortitemwrap {
    padding-left: 4px;
    font-size: 26px;
    line-height: 106%;
}

.bblistitemlong {
    border-bottom: 1px solid #000;
    align-items: stretch;
    margin-bottom: 40px;
    padding-left: 0;
}

.bblistitemlong.up {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/685e27df35069699cb8ef6f1_up.svg);
    background-position: 103%;
    background-repeat: no-repeat;
}

.bblistlong {
    margin-bottom: 0;
    font-family: Inter, sans-serif;
}

.bbsectioncol {
    width: 50%;
}

.bbrankscore {
    float: right;
    padding-right: 4px;
    font-size: 20px;
    font-weight: 200;
    line-height: 106%;
}

.column-25 {
    position: absolute;
    inset: auto 0% 0 auto;
}

.bblistitemcol {
    position: relative;
}

.bblistitemcol.up {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/685e27df35069699cb8ef6f1_up.svg);
    background-position: 100% 60%;
    background-repeat: no-repeat;
    background-size: 11px;
}

.bblistitemcol.down {
    background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/685e2e5da2fb8d7b1b08f1f3_down.svg);
    background-position: 100% 60%;
    background-repeat: no-repeat;
    background-size: 11px;
}

.bblistitemcol.down._2line {
    background-position: 100% 87%;
}

.bbsection2 {
    float: right;
    width: 58%;
    display: inline-block;
}

.bbsection2.wider {
    width: 69%;
}

.bbsection1 {
    width: 58%;
    display: inline-block;
}

.bblongitemwrap {
    padding-left: 4px;
    font-size: 24px;
    line-height: 106%;
}

.methodology {
    color: #4b4b4b;
    margin-bottom: 100px;
    font-size: 14px;
    line-height: 150%;
}

.scorelabel {
    text-align: right;
    text-transform: uppercase;
    padding-bottom: 20px;
    padding-right: 4px;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 200;
}

.bbback {
    display: none;
}

.scorelabellink {
    color: #000;
}

.reviewsbadge {
    border-radius: 12px;
    margin-right: 10px;
}

.contactform-checkbox {
    margin-top: 40px;
}

.utmcampaignbanner {
    color: #fff;
    text-align: center;
    background-color: #4923d2;
    padding: 10px;
    display: none;
}

.bold-text-5 {
    color: red;
}

@media screen and (max-width: 991px) {
    .navigation {
        z-index: 999;
        padding-right: 8px;
    }

    .image-logo {
        z-index: 9999;
        position: relative;
    }

    .container {
        flex-flow: column;
        align-items: center;
    }

    .footer-categories {
        width: 100%;
    }

    .blogmenu {
        flex-flow: wrap-reverse;
    }

    .bottom-2 {
        width: 100%;
    }

    .navigation-link {
        background-color: #fff;
        justify-content: flex-end;
        height: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .navigation-link-text {
        font-size: 18px;
        line-height: 24px;
    }

    .navigation-hover {
        display: none;
    }

    .header {
        height: 50vw;
    }

    .container-footer {
        margin-left: 0;
        margin-right: 0;
    }

    .nav-menu {
        background-color: #fff;
        margin-top: -90px;
        padding-top: 120px;
        padding-bottom: 30px;
        box-shadow: 0 5px 20px #00000040;
    }

    .menu-button {
        color: #000;
        font-family: Libre Franklin, sans-serif;
        font-size: 32px;
        font-weight: 400;
    }

    .menu-button:active {
        background-color: #e9e9e9;
    }

    .menu-button.w--open {
        background-color: #fff;
    }

    .top-post-image {
        width: 100%;
        height: 450px;
    }

    .top-post-item {
        flex-wrap: wrap;
    }

    .top-post-text {
        width: 100%;
        padding-left: 0;
    }

    .h1-blog-home.cc-title-section {
        margin-top: 0;
    }

    .posts-image {
        height: 150px;
    }

    ._3-collection-item {
        width: 33%;
    }

    .post-info-text {
        flex: 0 auto;
        align-self: stretch;
    }

    .posts-collection-list {
        margin-left: 0;
    }

    .separator-container {
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    ._4-collection-item {
        width: 50%;
    }

    .icon-2 {
        color: #000;
    }

    .about-top {
        padding-top: 180px;
        padding-bottom: 90px;
    }

    .h1-blog-post {
        font-size: 50px;
    }

    .text-container {
        width: 100%;
    }

    .team-collection-item {
        width: 33.3333%;
    }

    .team-image {
        justify-content: flex-start;
        width: 100%;
    }

    .contact-item-wrapper {
        width: 50%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .contact-wrapper {
        flex-wrap: wrap;
        margin-top: -10px;
        margin-bottom: -10px;
    }

    .title-section {
        padding-top: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .post-image {
        margin-bottom: 0;
        padding-left: 30px;
        padding-right: 30px;
    }

    .post-content {
        padding-left: 30px;
        padding-right: 30px;
    }

    .menubutton.lesswide {
        padding-left: 0;
        padding-right: 30px;
        font-size: 14px;
        line-height: 140%;
    }

    .menubutton.whykubera {
        display: none;
    }

    .landingpagehero {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f0dc0b21094625825338625_cryptolandingmac.png),
        linear-gradient(#000000e6 7%, #0000),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f0c2ef946b8b20943284597_petr-sevcovic-qE1jxYXiwOA-unsplash.jpg),
        linear-gradient(#0000, #0000);
        background-size: 90%, auto, cover, auto;
        height: 900px;
    }

    .landingpagehero.crypto {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/614b46ebafbd9728a34c539d_hero%20with%20light%20mobile.png),
        linear-gradient(to bottom, #000000e6 7%, transparent),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/604b009f269431d18f9aae60_anders-jilden-Sc5RKXLBjGg-unsplash.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, auto, cover, auto;
    }

    .landingpagehero.beneficiary {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/614b46ebafbd9728a34c539d_hero%20with%20light%20mobile.png),
        linear-gradient(to bottom, #000000e6 7%, transparent),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f32a1f8f6c27b210927f233_pattern3.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, auto, cover, auto;
    }

    .landingpagehero.wealthtracker {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/614b46ebafbd9728a34c539d_hero%20with%20light%20mobile.png),
        linear-gradient(#000000e6 7%, #0000),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f329db0749a8f45dc4b438f_pattern2.jpg),
        linear-gradient(#0000, #0000);
        background-size: 95%, auto, cover, auto;
    }

    .landingpagehero.finapp {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/614b46ebafbd9728a34c539d_hero%20with%20light%20mobile.png),
        linear-gradient(to bottom, #000000e6 7%, transparent),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f329c65749a8f287a4b3f86_pattern.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, auto, cover, auto;
        height: 850px;
    }

    .landingpagehero.wlk {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64744102bcac627c01511187_WLK%20Hero.png),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
        linear-gradient(#0000, #0000);
        background-position: 50% 100%, 0 0, 0 0;
        background-size: 95%, cover, auto;
        height: 800px;
    }

    .landingpagehero.wlkclient {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f0dc0b21094625825338625_cryptolandingmac.png),
        linear-gradient(#000000e6 7%, #0000),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/5f0c2ef946b8b20943284597_petr-sevcovic-qE1jxYXiwOA-unsplash.jpg),
        linear-gradient(#0000, #0000);
        background-size: 95%, auto, cover, auto;
        height: 820px;
    }

    .landingpagehero.portfolio {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/614b46ebafbd9728a34c539d_hero%20with%20light%20mobile.png),
        linear-gradient(to bottom, #000000e6 7%, transparent),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/604b009f269431d18f9aae60_anders-jilden-Sc5RKXLBjGg-unsplash.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, auto, cover, auto;
    }

    .landingpagehero.fintech {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64744102bcac627c01511187_WLK%20Hero.png),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, cover, auto;
        height: 930px;
    }

    .bigloginbutton {
        display: none;
    }

    .homeheaderwrap {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .heading {
        font-size: 52px;
    }

    .heading.homepage {
        font-size: 59px;
    }

    .column-3 {
        padding-left: 20px;
    }

    .column-3.right {
        padding-top: 0;
        padding-left: 20px;
    }

    .column-3.right.topspacing {
        padding-top: 20px;
    }

    .fullcontainer {
        margin-top: 30px;
    }

    .fullcontainer.home {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .column-1 {
        padding-top: 0;
        padding-right: 20px;
    }

    .column-1.toppspacing,
    .column-1.nfttopspacing {
        padding-top: 20px;
    }

    .homesectionsubtitle {
        font-size: 16px;
        line-height: 130%;
    }

    .container-3 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .homesectiontitle {
        font-size: 24px;
        line-height: 130%;
    }

    .columns-2 {
        margin-top: 100px;
    }

    .columns-3 {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .container-5 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .column-4 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .lastsectioncontainer {
        margin-top: 70px;
        margin-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricecard {
        height: 300px;
    }

    .homesectiondesc {
        padding-right: 10px;
    }

    .pricingdesc {
        min-height: 70px;
    }

    .personalplanprice {
        font-size: 46px;
    }

    .text-span {
        font-size: 20px;
    }

    .column-7 {
        text-align: left;
        padding-left: 0;
    }

    .innerheaderwrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container-7 {
        padding-top: 40px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .column-8 {
        padding-bottom: 30px;
    }

    .div-block-26 {
        width: 60%;
    }

    .div-block-29 {
        width: 100%;
    }

    .bloghomecontainer {
        flex-flow: column;
        align-items: center;
    }

    .readmore {
        padding-left: 30px;
        padding-right: 10px;
    }

    .more-posts-image {
        height: 226px;
    }

    .div-block-36 {
        width: auto;
        padding-top: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .div-block-38 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .div-block-39,
    .innerpageheadercontainer {
        padding-left: 0;
        padding-right: 0;
    }

    .sidecontainer {
        background-position: 50%;
    }

    .homepagehero {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6478007a5e8e966308c0db7f_Kubera%20Hero.png),
        linear-gradient(180deg, #000000e6, transparent 83%),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/66795efa13529ad5b8ef3f45_colin-chong-E0X2FOBkkw8-unsplash.jpg),
        linear-gradient(to bottom, null, null);
        background-size: 95%, auto, cover, auto;
        height: 800px;
    }

    .homesectionwrap {
        margin-top: 100px;
    }

    .heading-landing {
        font-size: 52px;
    }

    .mobilecontainer-2col {
        display: none;
    }

    .container-9 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .onlypaidpricecard {
        width: 232px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .container-10 {
        padding-left: 20px;
    }

    .wlkcontactform-wrap {
        width: 60%;
    }

    .quote {
        width: auto;
    }

    .quotewrapper,
    .text-span-2 {
        font-size: 24px;
    }

    .trackedassetcard {
        margin-right: 30px;
    }

    .trackedasset {
        font-size: 40px;
        line-height: 100%;
    }

    .trackedassetstitle {
        width: 142px;
        font-size: 30px;
    }

    .personalplantitle {
        font-size: 20px;
    }

    .header2,
    .header3 {
        font-size: 36px;
    }

    .plancard {
        height: 370px;
        padding-top: 40px;
    }

    .assetstracked {
        font-size: 60px;
    }

    .trackedassetstextline {
        font-size: 36px;
    }

    .plancolumn {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .plancolumn.middle {
        padding-left: 5px;
        padding-right: 5px;
    }

    .plancolumn.right {
        padding-left: 5px;
    }

    .plancolumn.left {
        padding-right: 5px;
    }

    .ctabuttonpricecard {
        padding-left: 18px;
        padding-right: 18px;
        font-size: 16px;
    }

    .video-play-button-wrap {
        bottom: 14%;
    }

    .rightcol.right {
        padding-top: 0;
        padding-left: 20px;
    }

    .rightcol.right.topspacing {
        padding-top: 20px;
    }

    .kuberablackwrap {
        padding: 20px;
    }

    .kuberablackpanel {
        padding-left: 30px;
        padding-right: 10px;
    }

    .plantitle {
        font-size: 40px;
    }

    .div-block-53 {
        bottom: 40px;
    }

    .planprice {
        font-size: 40px;
    }

    .div-block-56 {
        bottom: 40px;
        left: 30px;
        right: 10px;
    }

    .div-block-56.b2b {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }

    .plancta {
        width: 200px;
        padding-left: 23px;
        padding-right: 23px;
        font-size: 16px;
    }

    .planctanote.desktop {
        max-width: 200px;
        inset: auto 10px -8px auto;
    }

    .kforbiz {
        padding: 30px;
    }

    .quote-convo {
        width: auto;
    }

    .spldeal {
        line-height: 120%;
    }

    .homepagehero2 {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/667970df5db6d1657b8fd377_Kubera%20Hero.png),
        linear-gradient(#000000e6, #0000 83%),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6720cf4918080bade2e3c783_ultimate-portfolio-tracker-for-hni.jpg),
        linear-gradient(#000, #000);
        background-size: 95%, auto, cover, auto;
        height: 1050px;
    }

    .heroimagesubtext {
        margin-bottom: 40px;
    }

    .heroimagetitle {
        font-size: 60px;
    }

    .heroimagetitle.homepage {
        font-size: 59px;
    }

    .topichead {
        font-size: 44px;
    }

    .subtopicdesc {
        max-width: none;
    }

    .topicheadtype2 {
        font-size: 38px;
    }

    .container-black-details {
        margin-top: 40px;
        margin-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .sectionimage.collection,
    .sectionimage.multiple {
        background-size: 1000px;
    }

    .sectionimage.modern {
        background-position: 50% 27%;
        background-size: cover;
    }

    .onlyblackwrap {
        padding: 30px;
    }

    .onlyblackprice {
        font-size: 46px;
    }

    .bbsection2,
    .bbsection1 {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 26px;
    }

    .navigation {
        height: 75px;
    }

    .footer-title-text {
        margin-bottom: 15px;
    }

    .footer-links {
        flex-wrap: nowrap;
        width: 50%;
        margin-top: 25px;
    }

    .footer-links-container {
        flex-wrap: wrap;
    }

    .footer-categories {
        display: none;
    }

    .top-post {
        margin-top: 0;
        padding-top: 20px;
    }

    .navigation-link {
        display: flex;
    }

    .team,
    .contact {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .dropdown {
        background-color: #fff;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    .dropdown-toggle {
        color: #999;
        align-items: center;
        width: 100%;
        height: 48px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        font-family: Libre Franklin, sans-serif;
        font-weight: 400;
        line-height: 24px;
        display: flex;
    }

    .dropdown-toggle.w--open {
        color: #000;
        font-weight: 600;
    }

    .icon {
        margin-top: auto;
        margin-bottom: auto;
        margin-right: 15px;
    }

    .dropdown-list {
        margin-top: 0;
    }

    .dropdown-list.w--open {
        margin-top: auto;
    }

    .dropdown-link {
        color: #000;
        background-color: #fff;
        padding: 15px 20px;
        font-family: Libre Franklin, sans-serif;
        font-weight: 600;
    }

    .top-post-image {
        height: 280px;
    }

    .qweq {
        margin: 0 !important;
    }

    .h1-blog-home {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .h1-blog-home.cc-title-section.cc-push-text {
        margin-right: 10px;
    }

    .post-short-text {
        font-size: 15px;
    }

    .post-author-text {
        margin-top: 10px;
    }

    ._3-col-posts {
        padding-top: 40px;
        padding-right: 0;
    }

    .posts-image {
        height: 280px;
    }

    ._3-collection-item {
        width: 100%;
    }

    .posts-collection-list {
        margin-left: 0;
    }

    ._4-collection-item,
    ._2-collection-item {
        width: 100%;
    }

    .about-top {
        padding-top: 180px;
        padding-bottom: 90px;
    }

    .h1-blog-post {
        font-size: 40px;
    }

    .h1-blog-post.hiw {
        margin-bottom: 20px;
    }

    .team-collection-item {
        width: 50%;
    }

    .about-blog {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .title-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .title-section.cc-detail {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .post-image,
    .post-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dropdown-link-text {
        color: #000;
        text-decoration: none;
    }

    .footer-links-inner {
        flex-wrap: nowrap;
        width: 50%;
        margin-top: auto;
    }

    .menubutton {
        clear: none;
    }

    .menubutton.lesswide {
        padding-top: 10px;
        padding-bottom: 10px;
        display: block;
    }

    .menubutton.mobile {
        display: inline-block;
    }

    .landingpagehero {
        height: 700px;
    }

    .landingpagehero.wealthtracker {
        height: 729px;
    }

    .landingpagehero.finapp {
        height: 700px;
    }

    .landingpagehero.wlk {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64744102bcac627c01511187_WLK%20Hero.png),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
        linear-gradient(#0000, #0000);
        background-position: 50% 100%, 0 0, 0 0;
        background-repeat: no-repeat, repeat, repeat;
        background-size: 95%, cover, auto;
        height: 700px;
    }

    .landingpagehero.wlkclient {
        height: 720px;
    }

    .landingpagehero.fintech {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64744102bcac627c01511187_WLK%20Hero.png),
        linear-gradient(#000000e6 7%, #0000),
        url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/64759826e0efda06ad8642cb_client-portal-for-the-new-age-financial-advisors.jpg),
        linear-gradient(#0000, #0000);
        background-position: 50% 100%, 0 0, 0 0, 0 0;
        background-repeat: no-repeat, repeat, repeat, repeat;
        background-size: 95%, auto, cover, auto;
        height: 820px;
    }

    .bigloginbutton {
        display: inline-block;
    }

    .start-trial-button {
        font-size: 16px;
    }

    .start-trial-button.mobile {
        display: inline-block;
    }

    .heading {
        font-size: 40px;
    }

    .heading.homepage {
        max-width: 20ch;
        font-size: 44px;
    }

    .subheading {
        text-shadow: 0 0 10px #000;
        font-size: 16px;
    }

    .subheading.mobile {
        display: block;
    }

    .subheading.desktop {
        display: none;
    }

    .column-3 {
        padding-left: 10px;
    }

    .column-3.right {
        padding-top: 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .fullcontainer {
        margin-left: 10px;
        margin-right: 10px;
        padding: 5px 10px;
        display: none;
    }

    .fullcontainer.fullscreen {
        display: none;
    }

    .fullcontainer.fullscreen.beneficiary {
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
        display: block;
    }

    .fullcontainer.home {
        margin-left: 0;
        margin-right: 0;
        padding-top: 30px;
        display: none;
    }

    .column-1 {
        padding-top: 0;
        padding-right: 10px;
    }

    .homesectionsubtitle {
        padding-left: 0;
        padding-right: 0;
        font-size: 16px;
    }

    .homesectiontitle {
        padding-left: 0;
        padding-right: 0;
        font-size: 22px;
    }

    .columns-2,
    .columns-2.first {
        margin-top: 60px;
    }

    .column-5 {
        margin-top: 30px;
    }

    .columns-3 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .beneficiarywrap {
        margin-top: 0;
    }

    .homesectiontitlebig {
        font-size: 22px;
    }

    .lastsectioncontainer {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .pricecard {
        height: auto;
    }

    .pricecard.top {
        margin-bottom: 10px;
    }

    .homesectiondesc {
        max-width: 100%;
    }

    .pricingdesc {
        min-height: auto;
        font-size: 15px;
        line-height: 150%;
    }

    .pricingdesc.wlk {
        margin-bottom: 0;
    }

    .personalplanprice {
        font-size: 40px;
        font-weight: 300;
    }

    .text-span {
        font-size: 22px;
    }

    .securitywrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .free-paid {
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .footer {
        padding-bottom: 40px;
    }

    .column-7 {
        text-align: left;
        padding-top: 20px;
    }

    .innerheaderwrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .accordion-item-content {
        margin-right: 0;
    }

    .container-7 {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .loginbutton {
        clear: none;
        display: inline-block;
    }

    .address {
        padding-left: 10px;
    }

    .div-block-23,
    .div-block-24 {
        display: none;
    }

    .link-block-2.w--current {
        padding-top: 9px;
    }

    .column-10 {
        display: none;
    }

    .div-block-26 {
        width: 80%;
    }

    .div-block-27 {
        display: none;
    }

    .heading-1-story {
        padding-left: 10px;
        padding-right: 10px;
    }

    .readmore {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 0;
        display: none;
    }

    .more-posts-image {
        height: 353px;
    }

    .div-block-33 {
        margin-left: auto;
        margin-right: auto;
    }

    .secondrycta {
        font-size: 14px;
        display: none;
    }

    .div-block-36 {
        padding-top: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hiw {
        line-height: 120%;
    }

    .image-8 {
        position: static;
    }

    .signuponmobile {
        background-color: var(--black);
        color: #fff;
        margin-top: 10px;
        padding: 10px 20px;
        font-size: 13px;
        font-style: italic;
        line-height: 145%;
    }

    .sidecontainer {
        display: none;
    }

    .sidecontainer-banner {
        margin-top: 30px;
        padding: 10px;
    }

    .sidecontainer-appscreen {
        margin-top: 30px;
    }

    .keepintouchmobile {
        background-color: #0000;
        padding-left: 10px;
        padding-right: 10px;
        display: none;
    }

    .keepintouchmobilelabel {
        font-size: 15px;
        font-style: italic;
    }

    .tiername {
        line-height: 150%;
    }

    .div-block-42 {
        width: 100%;
    }

    .homesectiontitlebigchevron {
        font-size: 24px;
        top: 2px;
    }

    .homesectiontitlebiglink {
        font-size: 22px;
    }

    .homepagehero {
        height: 700px;
    }

    .homesectionwrap {
        margin-top: 60px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .homesectionwrap.first {
        margin-top: 0;
    }

    .heading-landing {
        font-size: 40px;
    }

    .mobilecontainer-currency {
        max-height: 396px;
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        display: block;
    }

    .mobilecontainer-bank {
        margin-top: 20px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        display: block;
    }

    .mobilecontainer-assets {
        max-height: 396px;
        margin-top: 20px;
        display: block;
    }

    .column-14,
    .column-15 {
        padding-left: 0;
        padding-right: 0;
    }

    .hiwdesc {
        line-height: 135%;
    }

    .header-beneficiary {
        font-size: 40px;
    }

    .multicoltext-column {
        padding-left: 0;
        padding-right: 0;
    }

    .multicoltext-column.right {
        padding-top: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    .multicoltext-column.middlecolumn {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mobilecontainer-2col {
        margin-left: 10px;
        margin-right: 10px;
        display: block;
    }

    .footerlink-sectionhead {
        border-bottom: 1px solid #858585;
    }

    .column-16,
    .column-17 {
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .link-block-4 {
        display: none;
    }

    .only-paid {
        margin-top: 20px;
        margin-bottom: 50px;
        display: block;
    }

    .onlypaidpricecard {
        border-top: 6px solid #fff;
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .onlypaidpricecard.top {
        margin-bottom: 10px;
    }

    .onlypaidpricecard.last {
        padding-top: 40px;
    }

    .loginbuttonmobile {
        clear: none;
        padding-right: 0;
        display: inline-block;
    }

    .stylablebuttons-2 {
        width: 100%;
    }

    .wl-contact {
        font-size: 14px;
    }

    .wlkcontactform-wrap {
        width: 80%;
    }

    .quote {
        background-size: 18px;
        padding-left: 20px;
    }

    .quotewrapper {
        padding: 40px 0 40px 10px;
        font-size: 22px;
    }

    .quotewrapper.desktop {
        display: none;
    }

    .quotebigtitle {
        font-size: 26px;
    }

    .reviewlink {
        line-height: 130%;
    }

    .featuregridicon.right {
        margin-top: 60px;
    }

    .homesectiontitlebig-copy {
        font-size: 22px;
    }

    .assetworthwrap {
        margin-bottom: 60px;
    }

    .helpwidget {
        text-align: right;
    }

    .assetstrackedwrap {
        padding-left: 30px;
        padding-right: 30px;
        display: block;
    }

    .trackedassetcard {
        width: auto;
        height: auto;
        margin-right: 0;
    }

    .trackedassetcard.top {
        margin-bottom: 10px;
    }

    .trackedassetcard.last {
        margin-top: 20px;
    }

    .smalllabel {
        line-height: 150%;
    }

    .trackedasset {
        font-size: 36px;
        font-weight: 300;
    }

    .trackedassetstitle {
        width: auto;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .column-20.hideformobile {
        display: none;
    }

    .quotethumbnail {
        width: 90%;
        margin-top: 30px;
        margin-left: 20px;
    }

    .header2 {
        margin-top: 100px;
        margin-left: 10px;
        font-size: 30px;
    }

    .header2.first {
        margin-top: 60px;
    }

    .about-quote {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mobilecontainer-comparison {
        display: block;
    }

    .smallfeaturesgrid {
        padding-left: 10px;
    }

    .smallfeaturesgrid.first {
        margin-top: 100px;
    }

    .header3 {
        font-size: 30px;
    }

    .header3.first {
        margin-top: 60px;
    }

    .secondarybutton-icon {
        font-size: 14px;
    }

    .quotedesc {
        font-size: 18px;
    }

    .quoteauthor {
        font-size: 14px;
    }

    .quote-sidebyside {
        background-size: 18px;
        padding-left: 20px;
    }

    .quotewrapper-sidebyside {
        height: auto;
        padding: 40px 10px;
        font-size: 22px;
    }

    .quotewrapper-sidebyside.mobile {
        display: block;
    }

    .quotewrapper-sidebyside.mobile.hide {
        display: none;
    }

    .plancard {
        border-top: 1px solid var(--dark-grey);
        width: auto;
        height: auto;
        margin-right: 0;
        padding-bottom: 40px;
    }

    .plancard.top {
        border-top-style: none;
    }

    .plancard.last {
        padding-top: 40px;
    }

    .quoteroundauthorpic {
        width: 100px;
        height: 100px;
    }

    .quoteroundauthorpic.tyron {
        background-image: url(https://cdn.prod.website-files.com/5ded36b4e942e73f2d468cf9/6359ff8672a155f938dc58e9_tyron.jpg);
    }

    .quoteroundauthorpic.awilkinson {
        margin-top: 0;
        display: inline-block;
    }

    .quoteroundauthorpic.awilkinson.mediumsize {
        margin-left: -10px;
    }

    .quoteroundauthorpic.emilybinder,
    .quoteroundauthorpic.austinrief,
    .quoteroundauthorpic.samparr,
    .quoteroundauthorpic.kevinrose {
        margin-top: 0;
    }

    .quote-sidebyside-columns.desktop {
        display: none;
    }

    .plansgridwrap {
        margin-top: 0;
    }

    .assetstracked {
        font-size: 49px;
    }

    .assetstrackedtitle {
        font-size: 40px;
        font-weight: 300;
    }

    .trackedassetswrap {
        margin-top: 60px;
        margin-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .trackedassetstextline {
        font-size: 30px;
    }

    .planwrap {
        padding-top: 0;
        padding-bottom: 0;
    }

    .contactsalesctabutton {
        font-size: 14px;
    }

    .plancolumn {
        padding: 2px 0;
    }

    .plancolumn.middle {
        padding-left: 0;
        padding-right: 0;
    }

    .plancolumn.right {
        padding-left: 0;
    }

    .plancolumn.left {
        padding-right: 0;
    }

    .ctabuttonpricecard {
        width: 190px;
        font-size: 14px;
        display: none;
    }

    .ctabuttonpricecard.mobile {
        display: block;
    }

    .planningimagewrap {
        padding: 10px;
    }

    .video-play-button-wrap {
        bottom: 10%;
    }

    .wlk-feature-check {
        font-size: 14px;
    }

    .wlk-primer {
        font-size: 18px;
    }

    .demo-form-wrap {
        margin-top: 40px;
        padding: 30px;
    }

    .video-play-button {
        height: 60px;
    }

    .wlk-primer-title {
        margin-bottom: 30px;
        font-size: 27px;
    }

    .wlk-primer-title.bottomspace {
        margin-bottom: 60px;
    }

    .text-block-20 {
        line-height: 145%;
    }

    .wlk-cta-mobile-wrap {
        margin-top: 30px;
        margin-right: 30px;
        text-decoration: none;
        display: block;
    }

    .div-block-51 {
        display: none;
    }

    .div-block-52 {
        display: flex;
    }

    .rightcol {
        padding-left: 10px;
    }

    .rightcol.right {
        padding-top: 0;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header2image {
        margin-top: 100px;
    }

    .kuberablackwrap {
        color: #fff;
        background-position: 0 0;
        background-size: contain;
        border-style: none;
        padding: 30px;
        display: block;
    }

    .kuberapersonalpanel {
        width: auto;
        height: auto;
        display: block;
        position: static;
    }

    .kuberablackpanel {
        border: 0 dashed #dbe1ee59;
        width: auto;
        height: auto;
        margin-top: 10px;
        margin-bottom: 40px;
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
        position: static;
    }

    .plantitle {
        font-size: 30px;
    }

    .div-block-53 {
        height: auto;
        margin-top: 40px;
        position: static;
    }

    .div-block-54 {
        height: auto;
        position: static;
    }

    .div-block-55,
    .div-block-55.hide {
        display: none;
    }

    .planprice {
        font-size: 40px;
        font-weight: 300;
        position: static;
    }

    .div-block-56 {
        margin-top: 60px;
        display: block;
        position: static;
        left: 0;
    }

    .div-block-56.b2b {
        display: flex;
    }

    .plancta {
        width: 190px;
        font-size: 14px;
        position: static;
    }

    .plancta.mobile {
        display: block;
    }

    .plancta.b2b {
        width: 190px;
        position: absolute;
        inset: auto 0% 0% auto;
    }

    .planctanote {
        margin-top: 10px;
        font-size: 13px;
    }

    .planctanote.mobile {
        display: block;
    }

    .planctanote.desktop {
        display: none;
    }

    .kforbiz {
        border-style: solid;
        border-width: 0;
        height: auto;
        padding: 30px;
        position: static;
    }

    .planpricedesc {
        position: static;
    }

    .mobilectab2c {
        display: block;
    }

    .quote-med-title {
        font-size: 23px;
    }

    .quote-convo {
        background-size: 18px;
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .homepagehero2 {
        height: 950px;
    }

    .heroimagesubtext {
        font-size: 18px;
    }

    .heroimagetitle {
        font-size: 46px;
        line-height: 120%;
    }

    .heroimagetitle.homepage {
        max-width: 20ch;
        font-size: 44px;
    }

    .topichead {
        margin-top: 60px;
        font-size: 40px;
    }

    .topichead.first,
    .topicdesc.first {
        margin-top: 60px;
    }

    .subtopichead {
        font-size: 28px;
    }

    .subtopichead.first,
    .subtopicdesc.first {
        margin-top: 60px;
    }

    .topicheadtype2 {
        margin-top: 100px;
        font-size: 30px;
    }

    .topicheadtype2.first {
        margin-top: 60px;
    }

    .black-feature-details,
    .black-primer {
        font-size: 18px;
    }

    .black-details-box {
        padding: 40px;
    }

    .kubera-black-title {
        font-size: 40px;
    }

    .kubera-black-title.first {
        margin-top: 60px;
    }

    .kubera-black-price {
        font-size: 50px;
    }

    .container-black-details {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .sectionimage {
        height: 160px;
    }

    .sectionimage.collection {
        background-size: 700px;
    }

    .sectionimage.modern {
        background-position: 50%;
        background-size: cover;
    }

    .onlyblackpanel {
        border: 0 dashed #dbe1ee59;
        width: auto;
        height: auto;
        margin-bottom: 20px;
        position: static;
    }

    .onlyblackwrap {
        color: #fff;
        background-position: 0 0;
        background-size: contain;
        border-style: none;
        display: block;
    }

    .onlyblackpricewrap {
        position: static;
    }

    .onlyblackprice {
        font-size: 40px;
        font-weight: 300;
        position: static;
    }

    .onlyblackpricecell {
        height: auto;
        position: static;
    }

    .onlyblacktrialcell.hide {
        display: none;
    }

    .bbissuedetails {
        padding-left: 10px;
    }

    .bbsectiontitle {
        font-size: 40px;
    }

    .bbsectioncol1.cryptoex {
        height: 800px;
    }

    .bbshortitemwrap {
        font-size: 22px;
    }

    .bbrankscore {
        width: 48px;
    }

    .column-25 {
        padding-left: 0;
        padding-right: 0;
    }

    .bbsection2,
    .bbsection1 {
        width: 90%;
    }

    .bblongitemwrap {
        font-size: 22px;
    }

    .methodology {
        margin-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .column-26 {
        padding-left: 0;
    }

    .bbback {
        margin-top: 50px;
        margin-bottom: 50px;
        padding-left: 20px;
        display: block;
    }
}

@media screen and (max-width: 479px) {
    .nav-link.white {
        margin-right: 0;
    }

    .footer-remove {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .footer-title-text {
        width: 100%;
        margin-top: 20px;
    }

    .footer-links {
        flex-flow: wrap;
        justify-content: flex-start;
        margin-top: 0;
    }

    .footer-links-container {
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
    }

    .top-post {
        padding-bottom: 30px;
    }

    .header {
        height: 75vw;
    }

    .team,
    .contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .top-post-image {
        height: 170px;
    }

    .h1-blog-home {
        margin-bottom: 10px;
    }

    .h1-blog-home.cc-title-section.cc-push-text {
        margin-bottom: 0;
    }

    .post-author-text {
        margin-top: 10px;
    }

    ._3-col-posts {
        padding-bottom: 60px;
    }

    .posts-image {
        height: 170px;
    }

    ._4-col-posts {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .all-articles-button {
        width: 90%;
        margin-top: 60px;
    }

    .featured-posts {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-top {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .h1-blog-post {
        font-size: 36px;
    }

    .h1-blog-post.hiw {
        font-size: 35px;
    }

    .team-collection-item,
    .contact-item-wrapper {
        width: 100%;
    }

    .about-blog {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .rich-text ul,
    .rich-text p,
    .rich-text ol {
        font-size: 16px;
    }

    .div-block {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .footer-links-inner {
        flex-flow: wrap;
        justify-content: flex-start;
        margin-top: 0;
    }

    .menubutton {
        float: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 25px;
        display: block;
    }

    .landingpagehero {
        color: #fff;
        height: 600px;
    }

    .landingpagehero.wealthtracker {
        height: 670px;
    }

    .landingpagehero.finapp {
        height: 580px;
    }

    .landingpagehero.wlk {
        height: 600px;
    }

    .landingpagehero.wlkclient {
        height: 560px;
    }

    .landingpagehero.fintech {
        height: 710px;
    }

    .bigloginbutton {
        background-color: #2b2b2b;
        display: inline-block;
    }

    .signupbutton {
        display: none;
    }

    .homeheaderwrap {
        padding-top: 25px;
    }

    .start-trial-button.mobile {
        margin-bottom: 10px;
    }

    .headermenu {
        width: 100%;
    }

    .heading {
        margin-top: 25px;
        font-size: 36px;
    }

    .heading.homepage {
        font-size: 36px;
    }

    .subheading {
        text-shadow: 0 0 5px #000;
        line-height: 130%;
    }

    .column-3.nomobile {
        padding-top: 0;
        padding-bottom: 0;
    }

    .fullcontainer {
        margin-top: 20px;
    }

    .beneficiarydesc {
        margin-top: 10px;
    }

    .column-5 {
        padding-left: 0;
        padding-right: 0;
    }

    .column-4 {
        padding-top: 0;
    }

    .pricecard {
        padding-left: 40px;
        padding-right: 40px;
    }

    .homesectiondesc {
        max-width: 100%;
    }

    .column-6 {
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .footerlogo {
        margin-top: 0;
    }

    .column-7 {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
        display: block;
    }

    .innerheaderwrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .accordion-heading {
        line-height: 150%;
    }

    .loginbutton {
        float: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 25px;
    }

    .backtoappbutton,
    .signoutbutton {
        display: none;
    }

    .column-10 {
        padding-top: 25px;
        display: none;
    }

    .div-block-26 {
        width: 100%;
    }

    .collection-list-wrapper-8 {
        display: none;
    }

    .readmore {
        padding-top: 20px;
        padding-bottom: 60px;
        padding-left: 20px;
    }

    .div-block-30 {
        display: block;
    }

    .creditcard {
        display: none;
    }

    .more-posts-image {
        height: 224px;
    }

    .stylablebuttons {
        align-content: flex-end;
    }

    .html-embed {
        margin-top: 0;
    }

    .secondrycta {
        display: none;
    }

    .hiwshots {
        margin-bottom: 60px;
    }

    .secondarybuttononwhite {
        margin-top: 10px;
    }

    .innerpagerichtext img {
        display: none;
    }

    .heading-4 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .sidecontainer-banner {
        margin-top: 20px;
    }

    .innerbannerwrap {
        height: 50px;
    }

    .bannertextwrap {
        margin-left: 5px;
    }

    .phbannerdesc {
        display: none;
    }

    .phcat {
        align-self: center;
        width: 40px;
        height: 30px;
        display: block;
    }

    .founderlocation {
        margin-top: 2px;
        line-height: 18px;
    }

    .homepagehero {
        height: 630px;
    }

    .heading-landing {
        margin-top: 25px;
        font-size: 30px;
    }

    .hiwdesc {
        font-size: 16px;
    }

    .header-beneficiary {
        margin-top: 25px;
        font-size: 32px;
    }

    .hidetextformobile {
        display: none;
    }

    .onlypaidpricecard {
        padding-left: 40px;
        padding-right: 40px;
    }

    .loginbuttonmobile {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }

    .loginbuttonmobile.w--current {
        display: none;
    }

    .bignumber {
        font-size: 46px;
    }

    .bignumbersmalltext {
        margin-top: 12px;
        font-size: 12px;
    }

    .bignumbercolumns {
        width: 300px;
    }

    .stylablebuttons-2 {
        flex-wrap: wrap;
        align-content: flex-end;
    }

    .linkedinshare,
    .facebookshare,
    .twittershare,
    .pinterestsave,
    .googleplusshare {
        margin-top: 15px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .rich-text-wlk ul,
    .rich-text-wlk p,
    .rich-text-wlk ol {
        font-size: 16px;
    }

    .wl-contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wlkcontactform-wrap {
        width: 100%;
    }

    .quotewrapper {
        font-size: 20px;
    }

    .quotebigtitle {
        font-size: 22px;
    }

    .reviewlink {
        line-height: 140%;
    }

    .header2,
    .header3 {
        font-size: 26px;
    }

    .quoteauthor {
        line-height: 140%;
    }

    .quotewrapper-sidebyside {
        font-size: 20px;
    }

    .quoteroundauthorpic.eoghan.mediumsize {
        width: 80px;
        height: 80px;
    }

    .quoteroundauthorpic.awilkinson.mediumsize {
        width: 80px;
        height: 80px;
        margin-left: -10px;
    }

    .quoteroundauthorpic.samparr.mediumsize {
        width: 80px;
        height: 80px;
    }

    .secondcta {
        max-width: 20ch;
    }

    .assetstracked {
        font-size: 44px;
    }

    .trackedassetstextline {
        font-size: 26px;
    }

    .contactsalesctabutton {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blogpostcta {
        max-width: 20ch;
    }

    .ctabuttonpricecard {
        padding-left: 20px;
        padding-right: 20px;
    }

    .video-play-button-wrap {
        bottom: 8%;
    }

    .wlk-flow-chart-wrap {
        padding: 40px 10px;
    }

    .wlk-cta-mobile-wrap {
        text-decoration: none;
    }

    .wlk-cta-mobile-wrap.second {
        margin-right: 0;
    }

    .wlk-cta-mobile {
        max-width: 20ch;
        margin-top: 0;
    }

    .rightcol.nomobile {
        padding-top: 0;
        padding-bottom: 0;
    }

    .articlesignupbanner {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        flex-flow: wrap;
        justify-content: center;
        align-items: center;
    }

    .kuberablackpanel {
        padding-bottom: 20px;
    }

    .plantitle.wlk {
        font-size: 21px;
    }

    .div-block-53 {
        display: block;
    }

    .div-block-55 {
        display: none;
    }

    .div-block-55.hide,
    .planprice {
        position: static;
    }

    .div-block-56.b2b {
        display: block;
    }

    .plancta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .quote-med-title {
        font-size: 22px;
    }

    .spldeal.wlk {
        font-size: 21px;
    }

    .homepagehero2 {
        height: 760px;
    }

    .heroimagesubtext {
        font-size: 16px;
    }

    .heroimagetitle {
        margin-top: 25px;
        font-size: 40px;
    }

    .heroimagetitle.homepage {
        font-size: 36px;
    }

    .topichead {
        font-size: 34px;
    }

    .subtopichead {
        font-size: 26px;
        line-height: 110%;
    }

    .topicheadtype2 {
        font-size: 30px;
    }

    .rich-text-black ul,
    .rich-text-black p,
    .rich-text-black ol {
        font-size: 16px;
    }

    .black-details-box {
        padding-left: 30px;
        padding-right: 30px;
    }

    .kubera-black-price {
        font-size: 40px;
    }

    .black-price-per-year {
        font-size: 24px;
    }

    .sectionimage.collection {
        background-size: 700px;
    }

    .onlyblackpanel {
        margin-bottom: 10px;
    }

    .onlyblacktrialcell {
        display: none;
    }

    .onlyblacktrialcell.hide {
        position: static;
    }

    .bbsectioncol1,
    .bbsectioncol2 {
        padding: 40px 20px;
    }
}

.safari-button-login {
    display: inline-block;
    cursor: pointer;
    background-color: #0000;
    border: 1px #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 20px;
    font-weight: 500;
}

.safari-button {
    cursor: pointer;
    background-color: #0000;
    border: 1px solid #fff;
    margin-left: 10px;
    padding: 7px 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

/* Стилі для перемикача мов */
.lang-switcher {
    padding: 8px 12px;
    margin-right: 15px;
    margin-left: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: transparent;
    color: #fff; /* Білий текст для темного фону */
    font-family: inherit;
    cursor: pointer;
    font-size: 14px;
}

.lang-switcher option {
    color: #000; /* Чорний текст у випадаючому списку */
}

/* Адаптивність для мобільних */
@media (max-width: 767px) {
    .lang-switcher {
        padding: 5px;
        margin-right: 5px;
        font-size: 12px;
    }
}

/* COVERA Trade brand theme */
:root {
    --covera-bg: #101513;
    --covera-surface: #1c2622;
    --covera-primary: #35d0a0;
    --covera-primary-hover: #4be0b3;
    --covera-accent: #f2b84b;
    --covera-text: #f4f8f6;
    --covera-muted: #9db0a8;
}

body.body {
    background: var(--covera-bg);
    color: var(--covera-text);
}

.homepagehero2 {
    background-color: var(--covera-bg);
    background-image:
        url("../img/covera-hero-dashboard.png"),
        linear-gradient(180deg, rgba(4, 11, 12, .9) 0%, rgba(4, 11, 12, .35) 42%, rgba(7, 15, 14, .82) 100%),
        url("../img/covera-hero-background.jpg");
    background-position: 50% 100%, 0 0, 50% 52%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: min(1180px, 94vw) auto, cover, cover;
    background-attachment: scroll, scroll, fixed;
}

.homeheaderwrap {
    background: rgba(12, 17, 15, .9);
    border-bottom: 1px solid #34473f;
}

.homeheaderlogo,
.footerlogo {
    width: 220px;
    height: auto;
    filter: none;
}

.safari-button,
.safari-button-login,
.start-trial-button,
.login-button {
    border-color: var(--covera-primary) !important;
}

.start-trial-button,
.safari-button.login,
.submit-button,
.w-button {
    background: var(--covera-primary) !important;
    color: #08130f !important;
}

.start-trial-button:hover,
.submit-button:hover,
.w-button:hover {
    background: var(--covera-primary-hover) !important;
}

.topichead,
.topicheadtype2 {
    color: var(--covera-text);
    font-weight: 600;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .34);
}

.subtopichead,
.subtopicheadtype2 {
    color: var(--covera-primary-hover);
    font-weight: 600;
}

.footer {
    background: #0c110f;
    border-top: 1px solid #34473f;
}

.footer a,
.copyright {
    color: var(--covera-muted);
}

.footer .menubutton.w-button {
    display: inline-flex;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 8px 0;
    background: transparent !important;
    color: var(--covera-muted) !important;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none;
    font-weight: 500;
    line-height: 1.4;
}

.footer .menubutton.w-button:hover {
    background: transparent !important;
    color: var(--covera-primary-hover) !important;
}

.heroimagetitle {
    color: #fff;
    font-weight: 500;
    text-shadow: 0 3px 28px rgba(0, 0, 0, .72);
}

.heroimagesubtext {
    color: #edf6f2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .72);
}

.outagebanner,
.utmcampaignbanner {
    background: var(--covera-accent);
    color: #171309;
}

@media (max-width: 767px) {
    .homepagehero2 {
        height: 940px;
        background-position: 50% 100%, 0 0, 50% 50%;
        background-size: min(620px, 160vw) auto, cover, cover;
        background-attachment: scroll;
    }

    .footer .menubutton.w-button {
        padding: 7px 0;
    }
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--covera-primary) !important;
    box-shadow: 0 0 0 3px rgba(53, 208, 160, .16) !important;
}

/* COVERA Trade authentication modals */
#popup-login,
#popup-register,
#popup-reset-code {
    background: rgba(3, 9, 10, .78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#popup-login > form,
#popup-register > form,
#popup-reset-code > form {
    width: min(496px, 100%);
}

#popup-login .popup,
#popup-register .popup,
#popup-reset-code .popup {
    background: linear-gradient(180deg, #172326 0%, #10191c 100%);
    border: 1px solid rgba(75, 224, 179, .28);
    border-radius: 14px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .55);
}

#popup-login .popup-content,
#popup-register .popup-content,
#popup-reset-code .popup-content {
    padding: 30px 34px 34px;
}

#popup-login .close-button,
#popup-register .close-button,
#popup-reset-code .close-button {
    color: #8fa39d;
    transition: color .18s ease, transform .18s ease;
}

#popup-login .close-button:hover,
#popup-register .close-button:hover,
#popup-reset-code .close-button:hover {
    color: var(--covera-primary-hover);
    transform: rotate(4deg);
}

#popup-login .choose,
#popup-register .choose,
#popup-reset-code .choose {
    margin-bottom: 24px;
    padding: 0 40px 18px;
    border-bottom: 1px solid rgba(132, 168, 158, .18);
}

#popup-login .choose .tab,
#popup-register .choose .tab,
#popup-reset-code .choose .tab {
    margin: 0;
    color: var(--covera-text);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
}

#popup-login .choose .tab::after,
#popup-register .choose .tab::after,
#popup-reset-code .choose .tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -19px;
    width: 42px;
    height: 3px;
    border-radius: 4px;
    background: var(--covera-primary);
    transform: translateX(-50%);
    box-shadow: 0 0 14px rgba(53, 208, 160, .42);
}

#popup-login .registration,
#popup-register .registration,
#popup-reset-code .registration {
    color: var(--covera-text);
}

#popup-login .registration p,
#popup-register .registration p,
#popup-reset-code .registration p {
    color: #c9d7d2;
    font-size: 13px;
}

#popup-login .registration input,
#popup-register .registration input,
#popup-reset-code .registration input {
    height: 52px;
    background: #0b1316;
    color: var(--covera-text);
    border: 1px solid rgba(132, 168, 158, .32);
    border-radius: 9px;
    caret-color: var(--covera-primary);
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

#popup-login .registration input::placeholder,
#popup-register .registration input::placeholder,
#popup-reset-code .registration input::placeholder {
    color: #71837d;
    opacity: 1;
}

#popup-login .registration input:hover,
#popup-register .registration input:hover,
#popup-reset-code .registration input:hover {
    border-color: rgba(75, 224, 179, .5);
}

#popup-login .registration input:focus,
#popup-register .registration input:focus,
#popup-reset-code .registration input:focus {
    background: #0d1719;
    border-color: var(--covera-primary) !important;
    box-shadow: 0 0 0 3px rgba(53, 208, 160, .13) !important;
}

#popup-login .placeholder-pass span,
#popup-register .placeholder-pass span,
#popup-reset-code .placeholder-pass span {
    color: var(--covera-primary-hover);
}

#popup-login .pass-eye svg,
#popup-register .pass-eye svg,
#popup-reset-code .pass-eye svg {
    fill: #80948d;
}

#popup-login .main-btn,
#popup-register .main-btn,
#popup-reset-code .main-btn {
    height: 50px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--covera-primary), #69e6bf);
    color: #06130f;
    border-radius: 9px;
    box-shadow: 0 12px 28px rgba(53, 208, 160, .2);
}

#popup-login .main-btn:not(:disabled):hover,
#popup-register .main-btn:not(:disabled):hover,
#popup-reset-code .main-btn:not(:disabled):hover {
    background: linear-gradient(135deg, var(--covera-primary-hover), #88efd0);
}

#popup-login .main-btn:disabled,
#popup-register .main-btn:disabled,
#popup-reset-code .main-btn:disabled {
    filter: saturate(.55);
}

#popup-login .bot,
#popup-register .bot,
#popup-reset-code .bot {
    color: #81938d;
}

#popup-login .bot span,
#popup-register .bot span,
#popup-reset-code .bot span {
    color: var(--covera-primary-hover);
}

#popup-login .form-error,
#popup-register .form-error,
#popup-reset-code .form-error {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 82, 99, .1);
    color: #ff8993;
    border-color: rgba(255, 82, 99, .32);
}

@media (max-width: 560px) {
    #popup-login,
    #popup-register,
    #popup-reset-code {
        align-items: flex-end;
    }

    #popup-login .popup,
    #popup-register .popup,
    #popup-reset-code .popup {
        width: 100%;
        max-height: 94vh;
        border-radius: 14px 14px 0 0;
        border-bottom: 0;
    }

    #popup-login .popup-content,
    #popup-register .popup-content,
    #popup-reset-code .popup-content {
        padding: 28px 20px 30px;
    }
}
