:root {
    --primary: #06a3da;
    --secondary: #f57e57;
    --light: #eef9ff;
    --dark: #091e3e
}

h1, h2 {
    font-weight: 700 !important
}

h3 {
    font-weight: 600 !important
}

.btn {
    font-family: Jost, sans-serif;
    font-weight: 600;
    transition: .5s
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary)
}

.feature-bg1, .feature-bg2, .feature-bg3 {
    background-repeat: no-repeat;
    background-position: 50%;
    margin-bottom: 40px
}

.feature-bg1 {
    background-image: url(../img/feature1.webp)
}

.feature-bg2 {
    background-image: url(../img/feature2.webp)
}

.feature-bg3 {
    background-image: url(../img/feature3.webp)
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: .375rem;
    --bs-border-radius-sm: .25rem;
    --bs-border-radius-lg: .5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: inherit;
    text-size-adjust: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 2.5rem
    }
}

.h2, h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 2rem
    }
}

.h3, h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.75rem
    }
}

p {
    margin-top: 0
}

address {
    font-style: normal;
    line-height: inherit
}

address, ol, ul {
    margin-bottom: 1rem
}

ol, ul {
    padding-left: 2rem;
    margin-top: 0
}

ol ol, ol ul, ul ol, ul ul {
    margin-bottom: 0
}

li {
    margin-bottom: 5px
}

b, dt, strong {
    font-weight: 700
}

.small, small {
    font-size: .875em
}

.mark, mark {
    padding: .1875em;
    background-color: var(--bs-highlight-bg)
}

sub {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline;
    bottom: -.25em
}

a {
    color: var(--bs-link-color);
    text-decoration: underline
}

a:hover {
    color: var(--bs-link-hover-color)
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code, pre {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: var(--bs-code-color);
    word-wrap: break-word
}

a > code {
    color: inherit
}

img, svg {
    vertical-align: middle
}

td, tr {
    border: 0 solid;
    border-color: inherit
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button, input, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

select:disabled {
    opacity: 1
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
    display: none !important
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px
    }
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y)
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-6 p {
        padding: 10px
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

.btn {
    --bs-btn-padding-x: .75rem;
    --bs-btn-padding-y: .375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: .375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: .65;
    --bs-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    border-color: var(--bs-btn-hover-border-color)
}

.btn:focus-visible, .btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg)
}

.btn:focus-visible {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow)
}

.btn.active, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color)
}

.btn.active:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check) + .btn:active:focus-visible {
    box-shadow: var(--bs-btn-focus-box-shadow)
}

.btn.disabled, .btn:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity)
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffd462;
    --bs-btn-border-color: var(--color-secondary-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-secondary-dark);
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd
}

input::-moz-placeholder {
    color: #000 !important
}

input::placeholder {
    color: #000 !important
}

.dropdown {
    position: relative
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: .5rem;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.card, .nav {
    display: flex
}

.card {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: .5rem;
    --bs-card-border-width: 1px;
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: .375rem;
    --bs-card-inner-border-radius: calc(0.375rem - 1px);
    --bs-card-cap-padding-y: .5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: .75rem;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius)
}

.alert, .card {
    position: relative
}

.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: .375rem;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius)
}

.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc
}

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: .75rem;
    --bs-progress-bg: #e9ecef;
    --bs-progress-border-radius: .375rem;
    --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bs-progress-bar-color: #fff;
    --bs-progress-bar-bg: #0d6efd;
    --bs-progress-bar-transition: width .6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius)
}

@keyframes spinner-border {
    to {
        transform: rotate(1turn)
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }
    50% {
        opacity: 1;
        transform: none
    }
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: .5
}

.placeholder.btn:before {
    display: inline-block;
    content: ""
}

@keyframes placeholder-glow {
    50% {
        opacity: .2
    }
}

@keyframes placeholder-wave {
    to {
        -webkit-mask-position: -200% 0;
        mask-position: -200% 0
    }
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentcolor;
    opacity: .25
}

.d-block {
    display: block !important
}

.d-none {
    display: none !important
}

.w-100 {
    width: 100% !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.text-center {
    text-align: center !important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

@media (min-width: 992px) {
    .pe-lg-4 {
        padding-right: 1.5rem !important
    }
}

:root {
    --color-primary: #192b3e;
    --color-primary-light: #3c91ef;
    --color-primary-dark: #27537c;
    --color-secondary: #192b3e;
    --color-secondary-light: #0625a3;
    --color-secondary-dark: #020a27;
    --gradient: linear-gradient(#0a2183, #275cde);
    --color-brand: #00cfff;
    --color-neutral: #eaf1f9;
    --color-neutral-light: #eee;
    --color-neutral-dark: #151515;
    --color-text-light: #888;
    --color-text: #000;
    --color-text-dark: #050d18;
    --color-heading: #050d18;
    --color-canvas: #f5fafd;
    --font-family-primary: "Arial", sans-serif;
    --font-family-secondary: "Arial", sans-serif;
    --font-size-lg: 24px;
    --font-size-md: 19px
}

.btn-primary {
    border-radius: 8px;
    padding: 15px 34px;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1300px
    }
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1488px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5)
}

.site-logo img {
    margin-bottom: 0;
    display: block
}

.section-cta-box, .site-logo img {
    margin-left: auto;
    margin-right: auto
}

.section-cta-box {
    padding: 20px;
    background-image: url(../img/bg-hero.webp);
    background-color: var(--color-primary-dark);
    background-blend-mode: overlay;
    background-position: top;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    max-width: 1070px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 20px 20px 25px 5px rgba(0, 0, 0, .3764705882352941)
}

@media (max-width: 768px) {
    .section-cta-box {
        padding: 30px 15px;
        border-radius: 0
    }

    .hero-disclaimer {
        max-width: 100%
    }
}

.section-cta-box .h2 {
    color: inherit;
    margin-bottom: 2rem
}

.hero-disclaimer {
    padding: 20px;
    background-color: var(--color-secondary-dark);
    border-radius: 8px;
    max-width: 60%
}

* {
    margin: 0;
    padding: 0
}

*, :after, :before {
    box-sizing: border-box
}

nav ul {
    list-style: none
}

html {
    font-size: 16px
}

body {
    font-family: var(--font-family-primary);
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-text);
    background-color: #f5fafd;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
}

.h1, .h2, .h3, h1, h2, h3 {
    font-family: var(--font-family-secondary);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-heading)
}

.h1, h1 {
    font-size: 64px
}

@media (max-width: 575.98px) {
    .h1, h1 {
        font-size: 38px
    }
}

@media (max-width: 575.98px) {
    ._main-text .h1, ._main-text h1 {
        text-align: center
    }
}

.h2, h2 {
    font-size: 33px;
    margin-bottom: 1rem
}

@media (max-width: 575.98px) {
    .h2, h2 {
        font-size: 18px
    }
}

.h3, h3 {
    font-size: 23px;
    line-height: 1.6
}

@media (max-width: 575.98px) {
    .h3, h3 {
        font-size: 16px
    }
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem
}

p strong {
    font-weight: 700
}

img {
    margin-bottom: 1rem
}

.site-header {
    position: relative;
    z-index: 10;
    background-color: var(--color-neutral);
    border-bottom: 1px solid #000;
    box-shadow: 15px 10px 25px 1px rgba(0, 0, 0, .1450980392);
    padding: 10px
}

.site-header ._header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    max-width: 1350px;
    margin-right: auto;
    height: 70px;
    padding-right: 30px
}

.site-header .section-hero {
    margin-top: 40px
}

.site-logo {
    margin-bottom: 0
}

#site-menu-toggle, .site-menu-trigger {
    display: none
}

@media (max-width: 991.98px) {
    #site-menu-toggle:checked ~ .site-menu-trigger {
        position: fixed;
        z-index: 150;
        right: 15px
    }

    #site-menu-toggle:checked ~ .site-menu-trigger ._line {
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 50%;
        box-shadow: none
    }

    #site-menu-toggle:checked ~ .site-menu-trigger ._line:first-child {
        transform: rotate(45deg)
    }

    #site-menu-toggle:checked ~ .site-menu-trigger ._line:nth-child(2) {
        display: none
    }

    #site-menu-toggle:checked ~ .site-menu-trigger ._line:nth-child(3) {
        transform: rotate(135deg)
    }

    #site-menu-toggle:checked ~ .site-navigation {
        display: block;
        right: 0
    }

    .site-menu-trigger {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-around;
        height: 36px;
        width: 36px
    }

    .site-menu-trigger ._line {
        display: block;
        width: 36px;
        height: 3px;
        border-radius: 3px;
        background-color: #000;
        transform: rotate(0deg);
        transition: transform 1s
    }

    .site-menu-trigger:hover {
        cursor: pointer
    }
}

.site-navigation a {
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 0 auto
}

.site-navigation ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0
}

@media (max-width: 991.98px) {
    .site-navigation ul {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

.site-navigation li {
    display: inline-block
}

.site-navigation a {
    font-size: 14px
}

.site-navigation > ul, .site-navigation a {
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #000
}

@media (min-width: 992px) {
    .site-navigation a {
        font-size: 16px
    }

    .site-navigation > ul {
        display: inline-flex;
        align-items: center;
        width: 100%;
        margin-bottom: 0
    }

    .site-navigation ._menu-item {
        margin-left: 25px;
        margin-right: 25px
    }

    .site-navigation ._menu-item:first-child {
        margin-left: auto
    }
}

@media (max-width: 991.98px) {
    .site-navigation {
        display: block;
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-secondary-dark);
        z-index: 100;
        text-align: center;
        transition: right .6s;
        padding: 30px 20px
    }

    .site-navigation a {
        font-size: 1rem;
        color: var(--color-primary-dark);
        font-weight: 500
    }

    .site-navigation > ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center
    }

    .site-navigation ._menu-language {
        display: flex;
        flex-direction: column;
        order: -1;
        margin-bottom: 20px
    }

    .site-navigation .site-language {
        display: flex;
        justify-content: center;
        order: -1;
        color: #000;
        margin-left: 0;
        padding-top: 10px;
        padding-bottom: 10px
    }

    .site-navigation .site-language-toggle:after {
        border-right-color: #000;
        border-bottom-color: #000
    }

    .site-navigation ._menu-item {
        width: 100%;
        margin-bottom: 0
    }

    .site-navigation ._menu-item > a {
        display: block;
        padding: 15px;
        color: #fff
    }
}

.alert {
    font-size: 16px;
    font-weight: 400
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: inherit
}

.lds-ellipsis div {
    position: absolute;
    top: -13px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0)
}

.lds-ellipsis div:first-child {
    left: 8px;
    animation: lds-ellipsis1 .6s infinite
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 .6s infinite
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1)
    }
    to {
        transform: scale(0)
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0)
    }
    to {
        transform: translate(24px)
    }
}

.formContent {
    padding: 40px;
    border-radius: 8px;
    background-color: var(--color-secondary-dark)
}

@media (max-width: 991.98px) {
    .formContent {
        padding: 10px
    }
}

.formContent .h3, .formContent h3 {
    margin-bottom: 24px
}

.formContent .form_bottom, .formContent p {
    margin-top: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-text)
}

.formContent .form_bottom {
    min-height: 35px
}

.formContent .form_bottom a {
    color: #fff;
    opacity: .5
}

.formContent .form_bottom a:hover {
    opacity: .8;
    text-decoration: none
}

.formContent label[for] {
    display: block;
    margin-bottom: 15px
}

@media (min-width: 992px) {
    .formContent label[for]:last-child {
        margin-bottom: 0
    }
}

.formContent ._label-value {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: #fff
}

.formContent .homeTopFormInput {
    padding: 15px 20px;
    width: 100%;
    border-radius: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    color: #000 !important;
    border: 1px solid #fff;
    margin-bottom: 20px
}

.formContent .homeTopFormInput::-moz-placeholder {
    color: hsla(0, 0%, 100%, .6);
    opacity: 1
}

.formContent .homeTopFormInput::placeholder {
    color: hsla(0, 0%, 100%, .6);
    opacity: 1
}

.formContent .homeTopFormInput:-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .6)
}

.formContent .homeTopFormInput::-ms-input-placeholder {
    color: hsla(0, 0%, 100%, .6)
}

.formContent .primaryButton {
    margin-top: 20px;
    padding: 15px;
    color: #000
}

.primaryButton:hover {
    color: #fff
}

.formContent.fn--v2 .homeTopFormInput::-moz-placeholder {
    color: #8899a4;
    opacity: 1
}

.formContent.fn--v2 .homeTopFormInput::placeholder {
    color: #8899a4;
    opacity: 1
}

.formContent.fn--v2 .homeTopFormInput:-ms-input-placeholder {
    color: #8899a4
}

.formContent.fn--v2 .homeTopFormInput::-ms-input-placeholder {
    color: #8899a4
}

.formContent.fn--v2 ._label-value {
    color: #fff
}

.formContact {
    display: block;
    max-width: 600px;
    margin: 0 auto 20px
}

.formContact .homeTopFormInput {
    margin-bottom: 5px
}

.formContact .primaryButton {
    margin-top: 0
}

.popupBox {
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 10px;
    background: #1a2238;
    font-weight: 700;
    position: fixed;
    max-width: 100%;
    display: none;
    padding: 20px;
    width: 500px;
    color: #fff;
    z-index: 9;
    left: 50%;
    top: 50%
}

.popupBox p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 18px
}

.popupBox button {
    background: 0 0;
    border: 1px solid #fff;
    border-radius: 10px;
    font-weight: 700;
    float: right;
    width: 50px;
    color: #fff
}

.popupBox .h3, .popupBox h3 {
    font-size: 20px;
    color: #fff !important
}

.site-language {
    margin-right: auto;
    margin-left: auto;
    color: #000;
    font-size: 16px;
    padding: 5px 10px 3px 15px;
    border-radius: 5px;
    background: #1a2238
}

.site-language:hover ._language-options {
    display: block
}

.site-language ._language-options {
    display: none;
    width: 75px;
    position: absolute;
    right: 7px;
    top: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
    padding-top: 10px
}

@media (max-width: 991.98px) {
    .site-language ._language-options {
        right: auto
    }
}

.site-language ._language-options a {
    display: flex;
    align-items: center;
    padding: 6px 15px 6px 10px;
    color: #000;
    border-top: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
    line-height: 1
}

.site-language ._language-options a:first-child {
    border-top: none
}

.site-language ._language-options a:hover {
    background-color: #ddd;
    cursor: pointer
}


.site-language-toggle {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px
}

.site-language-toggle ._language-icon {
    margin-right: 5px;
    margin-top: -3px
}

.site-language-toggle ._language-icon svg {
    width: 24px;
    height: 24px
}

.site-footer {
    background-color: var(--color-secondary-dark);
    padding: 10px;
    color: #fff
}

.site-footer .h2, .site-footer h2 {
    color: inherit;
    margin-bottom: 24px;
    text-align: center
}

.site-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-align: center
}

.site-footer p {
    font-size: .9rem;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    color: #fff
}

.site-footer ._footer-bar {
    margin-top: 15px;
    margin-bottom: 36px
}

.site-footer ._footer-navigation ul {
    display: inline-flex;
    text-align: center;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0
}

.site-footer ._footer-navigation li {
    margin-bottom: 0
}

@media (max-width: 991.98px) {
    .site-footer ._footer-navigation ul {
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
}

.site-footer ._footer-disclaimer {
    margin-bottom: 30px
}

@media (max-width: 991.98px) {
    ._footer-navigation {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.section-hero {
    padding-top: 136px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    color: var(--color-canvas);
    background-color: rgba(26, 34, 56, .7215686275)
}

.section-hero p {
    font-size: .875rem;
    line-height: 30px
}

@media (min-width: 1400px) {
    .section-hero p {
        font-size: var(--font-size-lg);
        line-height: 36px
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .section-hero p {
        font-size: 1.2rem;
        line-height: 30px
    }
}

.section-hero p em {
    font-style: normal
}

@media (min-width: 768px) {
    .section-hero {
        background-image: url(../img/bg-hero.webp);
        background-attachment: fixed;
        background-color: var(--color-primary-dark);
        background-blend-mode: overlay;
        padding-top: 20px;
        padding-bottom: 20px;
        background-position-y: top
    }
}

@media (max-width: 1199.98px) {
    .section-hero {
        padding-top: 20px;
        padding-bottom: 30px
    }
}

@media (max-width: 767.98px) {
    .section-hero {
        padding-bottom: 0;
        background-color: var(--color-secondary-dark);
        background-size: contain;
        background-position: top
    }

    .section-hero ._form {
        padding-left: 0;
        padding-right: 0
    }

    .section-hero ._form .formContent {
        border-top: 2px solid #fff;
        border-radius: 0
    }
}

.section-hero ._hero-wrapper:after {
    display: block;
    clear: both;
    content: ""
}

@media (min-width: 1200px) {
    .section-hero ._hero-wrapper {
        display: flex;
        flex-wrap: wrap
    }

    .hero-disclaimer {
        max-width: 90%
    }
}

@media (max-width: 1199.98px) {
    .section-hero ._hero-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: stretch
    }

    .hero-disclaimer {
        max-width: 90%
    }

    ._main-text h1 {
        font-size: 33px
    }

    ._main-text h1, ._main-text p {
        text-align: center
    }
}

@media (min-width: 1200px) {
    .section-hero ._main-text {
        flex: 0 0 55%;
        padding: 50px 100px 165px 0
    }
}

@media (min-width: 1200px) {
    .section-hero ._form {
        flex: 0 0 45%;
        position: relative;
        z-index: 1
    }
}

@media (max-width: 1199.98px) {
    .section-hero ._form {
        margin-right: calc(var(--bs-gutter-x) * -0.5);
        margin-left: calc(var(--bs-gutter-x) * -0.5)
    }
}

.section-hero ._logo-badges {
    display: flex;
    align-items: center;
    height: 73px;
    flex: 1 1 auto
}

@media (min-width: 1200px) {
    .section-hero ._logo-badges {
        margin-top: -120px
    }
}

@media (max-width: 1199.98px) {
    .section-hero ._logo-badges {
        margin: 20px 0;
        width: 100%;
        justify-content: center
    }
}

.section-hero ._logo-badges img {
    margin: 0 20px 0 0
}

.section-hero-login {
    padding: 30px 0;
    color: #000
}

.section-hero-login h1 {
    text-align: center;
    font-size: 33px
}

.section-hero-login .formContent {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1)
}

.section-hero-login .loginForms {
    margin-top: 30px
}

.section-hero-login ._panel-login, .section-hero-login ._panel-register {
    display: flex;
    flex-direction: column
}

.section-hero-login ._panel-login .formLoginContent, .section-hero-login ._panel-register .formLoginContent {
    flex: 1 1 auto;
    width: 100%;
    background: var(--color-secondary-dark);
    border-radius: 10px;
    text-align: center;
    padding-top: 20px;
    box-shadow: 20px 20px 25px 5px rgba(0, 0, 0, .3764705882352941)
}

.section-hero-login ._panel-login .formContent {
    display: flex;
    flex-direction: column
}

.section-hero-login ._panel-login form {
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 991.98px) {
    .section-hero-login ._panel-register {
        margin-top: 30px
    }
}

.section-hero-login ._panel-register .h3, .section-hero-login ._panel-register h3 {
    color: #fff
}

.section-feature {
    padding-top: 50px;
    padding-bottom: 50px
}

@media (max-width: 991.98px) {
    .section-feature {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

.section-feature .btn-primary {
    max-width: 380px;
    width: 100%
}

.section-feature.layout--2 {
    padding-top: 0
}

.section-feature.layout--3 .h2, .section-feature.layout--3 h2 {
    margin-bottom: 30px
}

.section-feature.layout--3 ._feature-items {
    list-style-type: none;
    margin: 70px 0;
    padding-left: 0
}

.section-404 {
    height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    margin-top: -120px
}

._404-content a {
    display: inline !important;
    padding: 0 !important
}

.site-plain-page .h2, .site-plain-page h2 {
    font-size: 24px;
    margin-bottom: 1rem
}

.site-plain-page .h3, .site-plain-page h3 {
    font-size: 19px;
    margin-bottom: 1rem;
    font-weight: 600
}

.site-plain-page .site-language {
    color: #000
}

.site-plain-page .site-language ._language-icon svg path {
    fill: #000 !important
}

.site-plain-page .site-language-toggle:after {
    border-right-color: #000;
    border-bottom-color: #000
}

.site-content-plain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 100px
}

.site-content-plain .h1, .site-content-plain h1 {
    font-size: 33px;
    margin-bottom: 36px;
    text-align: center
}

.site-content-plain strong {
    font-weight: 700;
    color: var(--color-text-dark)
}

.site-content-plain ul {
    padding-left: 0;
    color: #000
}

.site-content-plain ul li {
    position: relative;
    padding-left: 30px;
    list-style: none
}

.site-content-plain ul li:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    background-image: url(../img/icon-bullet-checkmark.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 16px 16px
}

.fn-quote {
    background: var(--color-primary-dark);
    padding-bottom: 20px;
    padding-top: 30px;
    border-radius: 8px;
    color: #000 !important;
    max-width: 65%;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 767.98px) {
    .fn-quote {
        padding: 24px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }
}

.fn-quote.fn--v2 {
    padding: 0;
    background: 0 0;
    text-align: right
}

.fn-quote-text {
    font-size: 18px;
    color: #fff
}

@media (max-width: 767.98px) {
    .fn-quote-text {
        font-size: 1rem;
        line-height: 1.5
    }
}

.fn-quote-text q:after, .fn-quote-text q:before {
    font-size: 29px;
    font-weight: 700;
    line-height: 1px;
    font-family: Times New Roman, Times, serif
}

.fn-quote-author {
    color: #fff
}

@media (max-width: 767.98px) {
    .fn-quote-text q:after, .fn-quote-text q:before {
        font-size: 29px
    }
}

@media (max-width: 991.98px) {
    .fn-quote-author {
        font-size: 1.125rem
    }

    .fn-quote-author strong {
        font-weight: 600
    }
}

.fn-tiles-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5)
}

@media (max-width: 991.98px) {
    .fn-tiles-wrapper {
        flex-direction: column
    }
}

.fn-tiles-wrapper .fn-tile {
    flex: 1 1 auto
}

@media (min-width: 992px) {
    .fn-tiles-wrapper .fn-tile {
        max-width: calc(50% - 24px)
    }
}

ol.fn-tiles-wrapper {
    margin: 0;
    padding: 0;
    list-style: none
}

.fn-tile {
    padding: 36px;
    background: var(--color-secondary-dark);
    box-shadow: 20px 20px 25px 5px rgba(0, 0, 0, .3764705882352941);
    border-radius: 8px
}

.fn-tile, .fn-tile h3 {
    color: #fff
}

.fn-tile ._item-heading {
    align-items: center;
    margin-bottom: 36px
}

.fn-tile-3 ._item-heading h3, h2 {
    color: #000
}

@media (max-width: 767.98px) {
    .fn-tile ._item-heading {
        margin-top: 20px
    }
}

.fn-tile ._item-symbol {
    display: contents;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #eaf1f9;
    border-radius: 50%;
    margin-right: 16px
}

._item-symbol h3 {
    color: #fd7e14
}

.fn-tiles-2-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.fn-tiles-2-wrapper .fn-tile-2 {
    flex: 1 1 auto
}

@media (min-width: 1200px) {
    .fn-tiles-2-wrapper .fn-tile-2 {
        max-width: calc(33% - 10px)
    }
}

.fn-tiles-2-wrapper .fn-tile-3 {
    flex: 1 1 auto
}

@media (min-width: 1200px) {
    .fn-tiles-2-wrapper .fn-tile-3 {
        max-width: calc(33% - 10px)
    }
}

.fn-tile-2 {
    padding: 36px;
    background-color: var(--color-secondary-dark);
    border-radius: 8px;
    color: #fff;
    text-align: center;
    box-shadow: 20px 20px 25px 5px rgba(0, 0, 0, .3764705882352941)
}

.fn-tile-2 .h3, .fn-tile-2 h3 {
    font-size: 19px;
    line-height: 26px
}

.fn-tile-2 .h3:before, .fn-tile-2 h3:before {
    margin-right: 2px
}

.fn-tile-2:first-child .h3:before, .fn-tile-2:first-child h3:before {
    content: "1."
}

.fn-tile-2:nth-child(2) .h3:before, .fn-tile-2:nth-child(2) h3:before {
    content: "2."
}

.fn-tile-2:nth-child(3) .h3:before, .fn-tile-2:nth-child(3) h3:before {
    content: "3."
}

.fn-tile-2 ._item-heading {
    align-items: center;
    margin-bottom: 40px
}

@media (max-width: 991.98px) {
    .fn-tile-2 ._item-heading {
        margin-bottom: 20px
    }
}

.fn-tile-2 ._item-icon {
    display: contents;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-bottom: 10px
}

.fn-tile-3 {
    padding: 36px;
    background-color: var(--color-primary-dark);
    border-radius: 8px;
    box-shadow: 20px 20px 25px 5px rgba(0, 0, 0, .3764705882352941)
}

.fn-tile-3 p {
    color: #fff
}

.fn-tile-3 .h3, .fn-tile-3 h3 {
    font-size: 19px;
    line-height: 26px
}

.fn-tile-3 .h3:before, .fn-tile-3 h3:before {
    margin-left: 10px
}

.fn-tile-3:first-child .h3:before, .fn-tile-3:first-child h3:before {
    content: "1."
}

.fn-tile-3:nth-child(2) .h3:before, .fn-tile-3:nth-child(2) h3:before {
    content: "2."
}

.fn-tile-3:nth-child(3) .h3:before, .fn-tile-3:nth-child(3) h3:before {
    content: "3."
}

.fn-tile-3 ._item-heading {
    display: flex;
    align-items: center;
    margin-bottom: 40px
}

@media (max-width: 991.98px) {
    .fn-tile-3 ._item-heading {
        margin-bottom: 20px
    }

    .risk-container h3 {
        text-align: center
    }
}

.fn-tile-3 ._item-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border: 2px solid #fff;
    border-radius: 50%
}

.footer.site-footer {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block
}

.footer {
    text-align: center;
    margin-left: 5px;
    padding-bottom: 10px
}

@media (max-width: 600px) {
    .footer {
        margin-left: 5px
    }

    .footer, nav ul {
        text-align: center
    }

    nav ul {
        margin-top: 40px;
        margin-bottom: 40px;
        display: block
    }

    .risk-container h3 {
        text-align: center
    }
}

.risk-container h3 {
    color: #fff;
    text-align: center
}

.form_bottom a {
    margin: 0;
    padding: 0;
    display: inline;
    font-size: 12px;
    color: #fff
}

.disclaimer {
    text-decoration: none;
    padding: 25px;
    max-width: 60%;
    margin: 50px auto 20px;
    background: var(--color-primary-dark);
    border: 1px solid #fff;
    font-size: 16px;
    display: block;
    border-radius: 24px;
    color: #fff
}

@media (max-width: 991.98px) {
    .fn-tile {
        padding: 15px
    }

    .disclaimer {
        text-decoration: none;
        padding: 20px;
        max-width: 100%;
        background: var(--color-primary-dark);
        border: 1px solid #fff;
        font-size: 16px;
        display: block;
        border-radius: 24px;
        color: #fff
    }
}

.risk-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    border-radius: 15px;
    margin-bottom: 20px
}

._item-panel {
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 16px;
    border: 1px solid #e6e7e9;
    border-radius: 8px
}

b {
    font-weight: 900 !important
}

.space-bottom {
    margin-bottom: 30px
}

.check {
    height: 12px
}

.text-black {
    color: #000 !important
}

.phone {
    padding: 15px 13px 15px 51.7px;
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    font-size: 17px;
    color: #000;
    border: none;
    background-repeat: no-repeat
}
@media (min-width: 768px) {
    ._footer-navigation {
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 0;
        text-align: center;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff
    }
}

@media screen and (min-width: 1600px) {
    .max-width {
        max-width: 1800px !important
    }
}

.copy-footer {
    display: block
}

._menu-item a:hover {
    color: var(--color-secondary-dark);
    border-bottom: 1px solid #000;
    border-spacing: 5px;
    transform: scale(1.1);
    font-weight: 700
}

.fn-tile.layout--2 {
    padding: 50px
}

table {
    border: 2px solid #000;
    padding: 5px;
    max-width: 45%
}

td, tr {
    border: 3px solid;
    border-color: var(--color-secondary-dark);
    padding: 5px
}

table {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px
}

@media (max-width: 991.98px) {
    table {
        max-width: 90%
    }

    .fn-tile.layout--2 {
        padding: 15px
    }
}

.bottom-border {
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
    margin-bottom: 40px
}

.block-13-list {
    border-radius: 1.5625rem;
    padding: 1.375rem 1.5rem 1.3125rem;
    color: #4f4f4f;
    max-width: 100%;
}
.block-13-list a {
    color: #4f4f4f !important;
}
.block-13-list__item {
    display: grid;
    grid-template-columns: 2fr 3fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 1rem 0px;
    grid-gap: 0.875rem;
}
.block-13-list__item:not(:last-child) {
    border-bottom: 0.0625rem solid #4f4f4f;
}
.link-list-13__items {
    padding:0;
    list-style-type: none;
}
@media (max-width: 47.9375em) {
    .block-13-list__item {
        grid-template-columns: 1fr;
    }
}
.block-13-list__property {
    color: #000 !important;
    font-weight: bold;
}
.block-13-list__item li:before {
    display:none!important;
}
.block-13-list__item li {
    padding-left:0!important;
}


















.calculator-wrapper {
    display:flex;
    justify-content: space-between;
    margin: 40px auto;
    padding: 30px;
    background: #fdfdfd;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    gap:20px;
}

.calculator-title {
    text-align: center;
    margin-bottom: 10px;
}

.calculator-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.calculator-group {
    margin-bottom: 40px;
}

.calculator-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.slider {
    position: relative;
    width: 100%;
    height: 12px;
    background: #eee;
    border-radius: 6px;
    cursor: pointer;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: linear-gradient(to right, #020a27, #0625a3);
    border-radius: 6px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: white;
    border: 3px solid #0a2183;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
    transition: background 0.2s;
}

.slider-thumb:hover {
    background: #f1faff;
}

.calculator-result {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
    color: #333;
}

.cta-link {
    display: block;
    margin-top: 30px;
    text-align: center;
    text-decoration: none;
}

.cta-button {
    width: 100%;
    background-color: #28a745;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #218838;
}
.accordion-wrapper {
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.accordion-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background-color: #f5f5f5;
    border: none;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background-color: #eaeaea;
}

.accordion-content {
    overflow: hidden;
    padding: 0 20px;
    background-color: white;
}

.accordion-content p {
    margin: 15px 0;

}
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.responsive-table {
    max-width:100%;
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.responsive-table th,
.responsive-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.responsive-table thead {
    background-color: #f2f2f2;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }

    .responsive-table thead tr {
        display: none;
    }

    .responsive-table tr {
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background: #fff;
        padding: 10px;
    }

    .responsive-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }

    .responsive-table td::before {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        content: attr(data-label);
        color: #555;
    }

    .responsive-table td:first-child {
        background: #f9f9f9;
        font-weight: bold;
        padding-left: 12px;
        border-bottom: 2px solid #ddd;
    }

    /* Добавляем data-label через JS (альтернатива JS-less варианту ниже) */
    .responsive-table td:nth-child(2)::before { content: "Bank 1"; }
    .responsive-table td:nth-child(3)::before { content: "Bank 2"; }
    .responsive-table td:nth-child(4)::before { content: "Bank 3"; }
    .responsive-table td:nth-child(5)::before { content: "Immediate FastX"; }
}
@media(max-width:767px) {
    .calculator-wrapper {
        flex-direction: column;
        padding: 30px 15px;
    }
    .responsive-table {
        border:none;
    }
}