html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
  }

      /* Rotate dropdown icon when open */
      .w--open .nav-dropdown-icon-3.w-icon-dropdown-toggle {
        transform: rotate(180deg);
        transition: 0.5s;
    }

    /* Hide overflow in body and HTML */
    body,
    html {
        overflow-x: hidden;
    }

    /* Adjust marquee item for responsiveness */
    .mrqueitem {
        display: flex !important;
        max-width: 350px;
    }

    /* Swiper container styling */
    .latest-rewards .swiper-container {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .latest-rewards .swiper-wrapper {
        -webkit-transition-timing-function: linear !important;
        transition-timing-function: linear !important;
        position: relative;
    }

    /* Styling for dot indicator */
    strong.dot {
        height: 5px;
        width: 5px;
        display: inline-block;
        background: #080f1a;
        position: relative;
        top: 1px;
        border-radius: 5px;
        font-size: 0;
    }

    /* Swiper slide adjustments */
    .latest-rewards .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        position: relative;
        overflow: hidden;
        min-width: 1583px;
    }

    /* Hovering Images */
    .floating-image-container {
      display: flex;
      justify-content: center;
      align-items: center;
      /* Animation keyframes */
      animation: float 3s ease-in-out infinite;
  }
  
  .floating-image-container img {
      /* Adds a subtle shadow to create the floating effect */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      /* Transforms the image slightly upwards */
      transform: translateY(-5px);
      /* Optional: subtle scaling for emphasis */
      transform: scale(1.02);
  }
  
  /* Keyframes for the floating animation */
  @keyframes float {
      0%, 100% {
          transform: translateY(-5px) scale(1.02);
      }
      50% {
          transform: translateY(-10px) scale(1.02);
      }
  }
  

    /* Media queries for responsiveness */

    /* Adjustments for screens smaller than 991px */
    @media(max-width: 991px) {
        .menu-button-2.close.w--open {
            z-index: 9999;
            opacity: 1 !important;
        }

        div#w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5ae-0b8cc59a::-webkit-scrollbar {
            display: none;
        }

        body.main-dark .swiper-container {
            display: none;
        }

        .section-8 .mobile-wraper .marquee-item {
            width: 260px !important;
        }
    }

    /* Basic styling for form elements */
    .form-container {
      margin: 1.5rem auto;
      max-width: 400px;
      padding: 1.5rem;
      background-color: #111111;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      color: #fff;
  }

  .form-group {
      margin-bottom: 1rem;
  }

  .form-group input {
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
      border: 1px solid #000000;
      border-radius: 7px;
      box-sizing: border-box;
      background-color: #23272a;
      color: #fff;
  }

  .form-group input::placeholder {
      color: #99aab5;
  }

  .form-group input:focus {
      border-color: #000000;
      outline: none;
      box-shadow: 0 0 3px rgba(114, 137, 218, 0.5);
  }

  .input-error-highlight {
      border-color: #e74c3c;
      box-shadow: 0 0 5px rgba(231, 76, 60, 0.75);
  }

  .input-error {
      color: #e74c3c;
      margin-top: 5px;
      font-size: 0.875rem;
  }

  .signup-button:hover {
      background-color: #b3b3b3;
  }

  .recaptcha-error {
      color: #e74c3c;
      margin-top: 10px;
      font-size: 0.875rem;
  }

  .hidden {
      display: none;
  }

    /* Adjustments for screens smaller than 767px */
    @media(max-width: 767px) {
        .wrap-trading .tab-link {
            width: 100%;
            min-width: unset;
        }

        .quick-stack-6,
        .quick-stack-10,
        .quick-stack-13 {
            display: flex;
            overflow-x: auto;
            justify-content: flex-start;
        }

        .div-block-72,
        .div-block-74 {
            width: 100%;
        }

        span.block-width {
            display: block;
            width: 100%;
        }

        .latest-rewards .swiper-slide {
            min-width: 100%;
        }

        .see-all-benefits.active img {
            transform: rotate(180deg);
        }

        #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3fb-90e715a8 .mobile-wraper .marquee-item {
            width: 100% !important;
        }

        .main-dark .header {
            position: fixed;
        }

        body.body.main-dark .swiper-slide {
            display: none;
        }

        .main-dark {
            overflow-y: hidden;
        }

        .nav-menu-content {
            grid-column-gap: 0;
            grid-row-gap: 0;
        }

        .see-all-benefits.active {
            background: #3667e9;
            transition: 0.3s;
        }

        .see-all-benefits.active .text-block-47 {
            opacity: 0;
        }

        .see-all-benefits.active .tap-to-collapse {
            opacity: 1;
        }

        .heading-127 br {
            display: none;
        }
    }

    .w--open .nav-dropdown-icon-3.w-icon-dropdown-toggle {
      transform: rotate(180deg);
      transition: .5s;
  }

    /* Fix overflow on specific body class */
    body.body-6.wf-1qrhqtv.wf-vl64f {
        overflow-x: unset;
    }

  /* width */
::-webkit-scrollbar {
    width: 10px;
    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #000000; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ffffff; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
  
  body {
    margin: 0;
  }
  
  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;
    color: #0090ff;
    
  }
  
  a:active, a:hover {
    outline: 0;
  }
  
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  b, strong {
    font-weight: bold;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    margin: .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: -.5em;
  }
  
  sub {
    bottom: -.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: bold;
  }
  
  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: normal;
    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: normal;
    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 * {
    z-index: auto;
    visibility: visible;
    box-sizing: border-box;
    float: none;
    clear: none;
    box-shadow: none;
    opacity: 1;
    direction: ltr;
    font-family: inherit;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
    text-indent: 0;
    text-transform: inherit;
    text-shadow: none;
    font-smoothing: auto;
    vertical-align: baseline;
    cursor: inherit;
    white-space: inherit;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    background: none;
    border: 0 #0000;
    border-radius: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    list-style-type: disc;
    transition: none;
    display: block;
    position: static;
    inset: auto;
    overflow: visible;
    transform: none;
  }
  
  .w-webflow-badge {
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
    visibility: visible !important;
    z-index: 2147483647 !important;
    color: #aaadb0 !important;
    opacity: 1 !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;
    overflow: visible !important;
    transform: none !important;
  }
  
  .w-webflow-badge > img {
    visibility: visible !important;
    opacity: 1 !important;
    vertical-align: middle !important;
    display: inline-block !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  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;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  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: bold;
    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: normal;
    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: .1px;
    height: .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: normal;
    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: normal;
    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: normal;
    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;
  }
  
  .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: 25%;
  }
  
  .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: .2em .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 .5em;
    transition: background-color .1s, color .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: .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: center;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 4em;
    transition: all .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: translate3d(0, 0, 0);
  }
  
  .w-lightbox-active {
    opacity: .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: translate(0, -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: .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: .5;
      display: block;
    }
  
    .w-lightbox-close {
      opacity: .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: .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);
    }
  
    100% {
      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;
  }
  
  .w-code-component > * {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  :root {
    --accent: #3667e9;
    --elements-webflow-library-neutral--300: #eff0f6;
    --elements-webflow-library-neutral--100: white;
    --elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>: #211f54;
    --elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>: #4a3aff;
    --elements-webflow-library-secondary--color-1\<deleted\|variable-6e6412b6\>: #281ca5;
    --base: #001433;
    --elements-webflow-library-neutral--600\<deleted\|variable-06b40b4b\>: #6e7191;
    --elements-webflow-library-general--shadow-01: #14142b0f;
    --elements-webflow-library-general--shadow-04: #14142b24;
    --purle: #6e00d8;
    --neutral: #080f1a;
    --primary: #64ed80;
    --hover-green: #2acd4b;
    --yellow: #eafd17;
    --orange: #ff9c00;
    --accent-pink: #f81894;
    --gray: #080f1a80;
    --red: #ed1a1a;
    --color: #616569;
    --custom-fonts: "Brcandor Bf Regular", sans-serif;
    --newwww: var(--base);
  }
  
  .w-layout-blockcontainer {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .w-layout-layout {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding: 20px;
  }
  
  .w-layout-cell {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .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-layout-hflex {
    flex-direction: row;
    align-items: flex-start;
    display: flex;
  }
  
  .w-users-userformpagewrap {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    max-width: 340px;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .w-users-userloginformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  
  .w-users-userformheader {
    text-align: center;
  }
  
  .w-users-userformbutton {
    text-align: center;
    width: 100%;
  }
  
  .w-users-userformfooter {
    justify-content: space-between;
    margin-top: 12px;
    display: flex;
  }
  
  .w-users-userformerrorstate {
    margin-left: 20px;
    margin-right: 20px;
    position: absolute;
    top: 100%;
    left: 0%;
    right: 0%;
  }
  
  .w-users-usersignupformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  
  .w-users-userformsuccessstate {
    display: none;
  }
  
  .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-users-usersignupverificationmessage {
    display: none;
  }
  
  .w-users-userresetpasswordformwrapper, .w-users-userupdatepasswordformwrapper {
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }
  
  .w-users-useraccountwrapper {
    background-color: #f5f5f5;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
  }
  
  .w-users-blockheader {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 20px;
    display: flex;
  }
  
  .w-users-blockcontent {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding: 20px;
  }
  
  .w-users-useraccountformsavebutton {
    text-align: center;
    margin-right: 8px;
  }
  
  .w-users-useraccountformcancelbutton {
    text-align: center;
    color: #333;
    background-color: #d3d3d3;
  }
  
  @media screen and (max-width: 991px) {
    .w-layout-blockcontainer {
      max-width: 728px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .w-layout-blockcontainer {
      max-width: none;
    }
  }
  
  .main {
    opacity: 1;
  }
  
  .big-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .big-container.bottom-flec {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .nav {
    justify-content: space-between;
    width: 100%;
    padding-top: 40px;
    display: flex;
  }
  
  .image {
    width: 122px;
  }
  
  .heading {
    color: #121212;
    text-align: center;
    letter-spacing: -1.2px;
    margin-top: 70px;
    margin-bottom: 22px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 66px;
  }
  
  .text-span {
    color: #3380fb;
  }
  
  .paragraph {
    color: #212121;
    text-align: center;
    max-width: 930px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    font-family: Helveticaneue, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .button {
    background-color: #3380fb;
    border-radius: 10px;
    margin-right: 30px;
    padding: 10px 24px;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
    line-height: 120%;
  }
  
  .link-block {
    color: #121212;
    line-height: 120%;
    text-decoration: none;
  }
  
  .text-block {
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
  }
  
  .input {
    border: 2.1px solid #fafafa;
    border-radius: 100px;
    align-items: center;
    width: 706px;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 11px;
    display: flex;
    position: relative;
    box-shadow: 0 2px 5px #0003;
  }
  
  .form {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .div-block-2 {
    align-items: center;
    display: flex;
  }
  
  .text-field {
    color: #212121;
    border: 1px #000;
    border-left: 2px solid #ebebeb;
    width: 300px;
    height: 26px;
    margin-bottom: 0;
    margin-left: 15px;
    padding-left: 4px;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-field::placeholder {
    color: #dbdbdb;
  }
  
  .form-block {
    width: 100%;
    margin-bottom: 0;
  }
  
  .submit-button {
    background-color: #0000;
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    inset: 0% auto auto 0%;
  }
  
  .div-block-3 {
    color: #fff;
    background-image: linear-gradient(#3380fb, #309ffb);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 63px;
    font-family: Helveticaneue, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 120px;
    display: flex;
    position: relative;
  }
  
  .image-2 {
    margin-left: 20px;
  }
  
  .image-3 {
    position: absolute;
    inset: 10px -120px auto auto;
  }
  
  .accredited {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
  }
  
  .text-block-2 {
    color: #b7b7b7;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Helveticaneue HV, sans-serif;
    font-size: 15px;
    line-height: 17px;
  }
  
  .image-4 {
    max-height: 40px;
  }
  
  .div-block-4 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    align-items: center;
    display: flex;
  }
  
  .image-5 {
    position: absolute;
    inset: -10px 0% auto auto;
  }
  
  .video {
    border: 2px solid #0000001c;
    border-radius: 44px;
    margin-top: 66px;
    position: relative;
    overflow: hidden;
  }
  
  .usm {
    justify-content: space-between;
    margin-top: 60px;
    display: flex;
  }
  
  .heading-2 {
    color: #212121;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 58px;
    line-height: 120%;
  }
  
  .div-block-5 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
  }
  
  .paragraph-2 {
    color: #212121;
    letter-spacing: -.56px;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 28px;
    line-height: 170%;
  }
  
  .div-block-6 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: flex-end;
    display: flex;
  }
  
  .noise {
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    display: flex;
    position: relative;
  }
  
  .left {
    max-width: 662px;
  }
  
  .heading-3 {
    color: #121212;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 110%;
  }
  
  .gradient-text {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #b669fe 1.5%, #8c1ff8 34%, #451a83 70%, #23184d);
    -webkit-background-clip: text;
    background-clip: text;
  }
  
  .paragraph-3 {
    color: #212121;
    margin-top: 27px;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .cell {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    color: #121212;
    flex-direction: row;
    align-items: center;
    font-family: Helveticaneue, sans-serif;
    font-size: 18px;
    font-weight: 500;
  }
  
  .quick-stack {
    border-top: 1px #b6b4bd;
    margin-top: 0;
    padding: 25px 0 0;
  }
  
  .btn-primary {
    background-color: #0000;
    background-image: linear-gradient(141deg, #ff47a0, #6490ff);
    border: 2px solid #fff;
    border-radius: 16px;
    align-items: center;
    height: 71px;
    margin-top: 0;
    padding: 21.5px 28.5px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
  }
  
  .btn-primary.primar-border {
    margin-top: 0;
  }
  
  .btn-primary.btn-blue {
    background-image: linear-gradient(#3380fb, #309ffb);
    font-style: normal;
  }
  
  .image-6 {
    max-width: 560px;
  }
  
  .div-block-7 {
    margin-top: 60px;
    display: inline-block;
  }
  
  .div-block-7.r-block-m {
    display: none;
  }
  
  .text-block-3 {
    color: #b7b7b7;
    text-align: center;
    margin-top: 12px;
    margin-left: -348px;
    padding-left: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .saas-futuristic-app {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #0b0121;
    border-radius: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    box-shadow: 2px 1.85185px 3.14815px #0000000a, 8px 8.14815px 6.51852px #0000000d, 20px 20px 13px #00000014, 38px 38.5185px 25.4815px #0000001a, 64px 64.8148px 46.8519px #0000001a, 100px 100px 80px #00000026, 200px 100px 80px #00000026;
  }
  
  .hero-stack {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-image: linear-gradient(#370c94 0%, #0b0121 61%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 85px 12px 40px;
    display: flex;
    position: relative;
  }
  
  .small-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 480px;
    height: 476px;
    display: flex;
  }
  
  .title-section {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }
  
  .vectors-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 98px;
    left: 276.5px;
  }
  
  .background {
    object-fit: cover;
    position: absolute;
    top: 80px;
    left: -80px;
  }
  
  .frame-1332 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: .619089px solid #ffffff4d;
    border-radius: 30.9544px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4.95271px 9.90542px;
    display: flex;
  }
  
  .text {
    color: #f2f4f8;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 150%;
  }
  
  .modern-analytics-for-the-modern-world {
    text-align: center;
    letter-spacing: -.03em;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(173.27deg, #ececec 0%, #ececec00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Montserrat, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
  }
  
  .error-f00776e4-e6b3-c18a-08cd-7cd8e7c92816 {
    color: #ecececa6;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 160%;
  }
  
  .actions {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8px;
    display: flex;
  }
  
  .button-2 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    background-color: #ececec;
    border-radius: 30px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    text-decoration: none;
    display: flex;
  }
  
  .text-2 {
    color: #0b081c;
    font-family: Montserrat, sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 150%;
  }
  
  .button-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: .5px solid #ececec;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    width: 106px;
    padding: 6px 12px;
    text-decoration: none;
    display: flex;
  }
  
  .text-3 {
    color: #ececec;
    font-family: Montserrat, sans-serif;
    font-size: 8px;
    font-weight: 400;
    line-height: 150%;
  }
  
  .image-7 {
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 -1px 20px #bb9bff26, 0 -1px 5px #e9dfff4d, inset 0 .25px #ffffff80;
  }
  
  .navbar {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: #000c;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 720px;
    height: 36px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    position: absolute;
    top: .0546875px;
    left: 0;
    box-shadow: inset 0 -.5px #00323533;
  }
  
  .container-2 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .logo {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .valtflow-icon {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .text-4 {
    color: #ececec;
    letter-spacing: -.03em;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 100%;
  }
  
  .column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .column-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .nav-link-dropdown {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .vectors-wrapper-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    display: flex;
  }
  
  .column-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .button-4 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    border: .5px solid #ececec;
    border-radius: 25px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    text-decoration: none;
    display: flex;
  }
  
  .button-5 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    background-color: #ececec;
    border: .5px solid #ececec;
    border-radius: 25px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    text-decoration: none;
    display: flex;
  }
  
  .logo-section {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 80px;
    display: flex;
  }
  
  .heading-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
  
  .text-5 {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 130%;
  }
  
  .logo-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .vectors-wrapper-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 10px;
    display: flex;
  }
  
  .vectors-wrapper-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 43.5px;
    height: 8.5px;
    display: flex;
  }
  
  .vectors-wrapper-5 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 33.5px;
    height: 10.5px;
    display: flex;
  }
  
  .vectors-wrapper-6 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 71.5px;
    height: 6.5px;
    display: flex;
  }
  
  .vectors-wrapper-7 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 12.1348px;
    display: flex;
  }
  
  .vectors-wrapper-8 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 11.4px;
    display: flex;
  }
  
  .vectors-wrapper-9 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 27.1429px;
    height: 10px;
    display: flex;
  }
  
  .testimonial-column-dark {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #0b0121;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    position: relative;
  }
  
  .vectors-wrapper-10 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: -46.4473px;
    left: 203px;
  }
  
  .section-title {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .title {
    color: #ececec;
    text-align: center;
    letter-spacing: -.16px;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-6 {
    color: #ececec;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 160%;
  }
  
  .columns {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 600px;
    display: flex;
  }
  
  .card {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-image: linear-gradient(#ffffff0d 0%, #fff0 100%);
    border-radius: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 292px;
    padding: 30px;
    display: flex;
    box-shadow: inset 0 .25px #ffffff80, 0 -1px 20px #bb9bff26, 0 -1px 5px #e9dfff4d;
  }
  
  .icon-image {
    object-fit: cover;
    box-shadow: 0 0 18.2273px #591dddbf;
  }
  
  .card-content {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .text-7 {
    color: #ececec;
    letter-spacing: -.08px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
  }
  
  .text-8 {
    color: #ececec;
    font-family: Montserrat, sans-serif;
    font-size: 7px;
    font-weight: 400;
    line-height: 150%;
  }
  
  .button-6 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: flex;
  }
  
  .text-9 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 150%;
    text-decoration: underline;
  }
  
  .icon-image-2 {
    object-fit: cover;
    box-shadow: 0 0 18.2273px #9525c9bf;
  }
  
  .small-columns-2 {
    background-image: linear-gradient(#ffffff0d 0%, #fff0 100%);
    border-radius: 10px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 30px;
    display: flex;
    box-shadow: inset 0 .25px #ffffff80, 0 -1px 20px #bb9bff26, 0 -1px 5px #e9dfff4d;
  }
  
  .card-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 230px;
    display: flex;
  }
  
  .icon-image-3 {
    object-fit: cover;
    box-shadow: 0 0 18.2273px #c925abbf;
  }
  
  .image-8 {
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 #ffffff1a, 0 0 #0000000d, 0 -1px 20px #bb9bff26, 0 -1px 5px #e9dfff4d, inset 0 .291692px #ffffff80, inset 0 .25px #ffffff80;
  }
  
  .card-3 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    background-image: linear-gradient(#ffffff0d 0%, #fff0 100%);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px;
    display: flex;
    box-shadow: inset 0 .25px #ffffff80, 0 -1px 20px #bb9bff26, 0 -1px 5px #e9dfff4d;
  }
  
  .content {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 384px;
    display: flex;
  }
  
  .section-title-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 384px;
    display: flex;
  }
  
  .content-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }
  
  .error-f00776e4-e6b3-c18a-08cd-7cd8e7c9284c {
    color: #ececec;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
  }
  
  .error-f00776e4-e6b3-c18a-08cd-7cd8e7c9284d {
    color: #ececec;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 400;
    line-height: 150%;
  }
  
  .actions-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8px;
    display: flex;
  }
  
  .button-7 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: .5px solid #ececec;
    border-radius: 30px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    text-decoration: none;
    display: flex;
  }
  
  .footer {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-color: #0b0121;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 720px;
    padding: 40px 60px;
    display: flex;
  }
  
  .container-3 {
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    display: flex;
  }
  
  .content-3 {
    grid-column-gap: 90px;
    grid-row-gap: 90px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }
  
  .column-4 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .footer-links-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .text-10 {
    color: #fff;
    letter-spacing: -.01em;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 500;
  }
  
  .footer-links {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .text-11 {
    color: #fff;
    letter-spacing: -.01em;
    font-family: Montserrat, sans-serif;
    font-size: 9px;
    font-weight: 300;
  }
  
  .text-12 {
    color: #939393;
    letter-spacing: -.01em;
    font-family: Montserrat, sans-serif;
    font-size: 8px;
    font-weight: 300;
  }
  
  .column-5 {
    grid-column-gap: 17px;
    grid-row-gap: 17px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .terms-wrapper {
    grid-column-gap: 9.5px;
    grid-row-gap: 9.5px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .trusted-by-teams-at-over-1000-of-the-world-s-leading-organizations-0 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 130%;
  }
  
  .trusted-by-teams-at-over-1000-of-the-world-s-leading-organizations-1 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 130%;
  }
  
  .frame-427323325 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }
  
  .vectors-wrapper-11 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 170px;
    display: flex;
  }
  
  .frame-427323355 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 1.5px undefined undefined;
    background-image: linear-gradient(105.49deg, #fff 0%, #fff0 100%);
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 368px;
    height: 98px;
    padding: 14px 15px 12px;
    display: flex;
  }
  
  .frame-427323292 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 2px undefined undefined;
    background-image: linear-gradient(#3380fb 0%, #309ffb 100%);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 339px;
    height: 71px;
    padding: 14px 18px;
    display: flex;
  }
  
  .text-13 {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }
  
  .div-block-8 {
    background-color: #b6b4bd33;
    width: 550px;
    height: 1px;
    margin-top: 20px;
  }
  
  .primar-border {
    object-fit: fill;
    border-radius: 0;
    padding-top: 1px;
    padding-bottom: 0;
    position: static;
    overflow: visible;
  }
  
  .frame-427323356 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }
  
  .vectors-wrapper-12 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 170px;
    display: flex;
  }
  
  .image-9 {
    width: 268px;
    margin-right: 50%;
    position: absolute;
    inset: auto 0% -130px auto;
    transform: translate(50%);
  }
  
  .frame-427323387 {
    grid-column-gap: 31px;
    grid-row-gap: 31px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .integrations {
    color: #b7b7b7;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
  }
  
  .vectors-wrapper-13 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    height: 43px;
    display: flex;
  }
  
  .frame-427323416 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
    display: flex;
  }
  
  .frame-427323413 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .vectors-wrapper-14 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    display: flex;
  }
  
  .organize-your-data-2 {
    color: #343434;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  
  .organize-your-data-1 {
    color: #343434;
    font-size: 15px;
    font-weight: 500;
  }
  
  .testimonials {
    display: none;
    overflow: hidden;
  }
  
  .hr {
    width: 100%;
    height: 3px;
  }
  
  .we-d-say-we-re-the-best-but-there-s-not-much-competition-0 {
    color: #121212;
    text-align: center;
    letter-spacing: -.02em;
    font-size: 50px;
    font-weight: 700;
    line-height: 110%;
  }
  
  .we-d-say-we-re-the-best-but-there-s-not-much-competition-1 {
    text-align: center;
    letter-spacing: -.02em;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#3380fb 0%, #309ffb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 50px;
    font-weight: 700;
    line-height: 110%;
  }
  
  .we-d-say-we-re-the-best-but-there-s-not-much-competition-2 {
    text-align: center;
    letter-spacing: -.02em;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#3380fb 0%, #309ffb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 42px;
    font-weight: 700;
    line-height: 110%;
  }
  
  .heading-5 {
    color: #121212;
    text-align: center;
    letter-spacing: -1px;
    margin-top: 80px;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .frame-427323418 {
    grid-column-gap: 52px;
    grid-row-gap: 52px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 40px;
    display: flex;
  }
  
  .dashboard {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 1px solid #001aff33;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 45px;
    padding-bottom: 368px;
    display: flex;
    overflow: hidden;
  }
  
  .frame-427323407 {
    grid-column-gap: 11px;
    grid-row-gap: 11px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .frame-427322991 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 570px;
    height: 125px;
    padding-left: 45px;
    padding-right: 45px;
    display: flex;
  }
  
  .text-14 {
    color: #121212;
    font-family: Helvetica Bold, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 120%;
  }
  
  .text-15 {
    color: #343434;
    flex: 0 auto;
    align-self: baseline;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .screenshot-2023-07-18-at-12-31-1 {
    object-fit: cover;
    border-radius: 10px;
  }
  
  .frame-427323411 {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .frame-427323412 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    display: flex;
  }
  
  .frame-427323408 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 370px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
  }
  
  .text-17 {
    color: #343434;
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .vectors-wrapper-15 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .comdp {
    border: 1px solid #001aff33;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 420px;
    padding-top: 42px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    overflow: hidden;
  }
  
  .div-block-9 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: center;
    display: flex;
  }
  
  .comp-kolom {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: flex-start;
    margin-top: 32px;
    display: flex;
  }
  
  .heading-6 {
    color: #121212;
    letter-spacing: -.48px;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 32px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 24px;
    line-height: 100%;
  }
  
  .paragraph-4 {
    color: #343434;
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 32px;
    padding-right: 20px;
    font-family: Helveticaneue, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .image-10 {
    position: relative;
    top: 32px;
    left: 32px;
  }
  
  .image-11 {
    width: 100%;
    position: relative;
    top: 15px;
  }
  
  .image-12 {
    width: 100%;
    position: relative;
    right: 20px;
  }
  
  .comp-button {
    margin-top: 45px;
    margin-bottom: 45px;
    margin-left: 50%;
    display: inline-block;
    transform: translate(-50%);
  }
  
  .maps {
    margin-top: 74px;
    padding-top: 71px;
    padding-bottom: 54px;
  }
  
  .heading-7 {
    color: #121212;
    text-align: center;
    letter-spacing: -1px;
    width: 575px;
    margin: 0 auto;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 120%;
  }
  
  .frame-427323424 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #000;
    letter-spacing: -.24px;
    background-color: #fdfdfd;
    border-radius: 20px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 290px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 27px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 12px;
    line-height: 120%;
    display: flex;
    box-shadow: inset 0 4px 4px #00000014;
  }
  
  .currently-trending-on-charty-elonvszuck-0 {
    color: #000;
    text-align: center;
    letter-spacing: -.02em;
    font-size: 12px;
    font-weight: 700;
    line-height: 120%;
  }
  
  .currently-trending-on-charty-elonvszuck-1 {
    text-align: center;
    letter-spacing: -.02em;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(94.24deg, #ff47a0 0%, #6490ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 12px;
    font-weight: 700;
    line-height: 120%;
  }
  
  .image-13 {
    position: relative;
  }
  
  .maps-button {
    margin-left: 50%;
    display: inline-block;
    transform: translate(-50%);
  }
  
  .platform {
    margin-top: 77px;
  }
  
  .heading-8 {
    color: #121212;
    text-align: center;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .heading-8.br-block {
    font-style: normal;
  }
  
  .cr-nav {
    z-index: 1;
    border-bottom: 2px solid #f0f0f0;
    justify-content: space-between;
    align-items: center;
    width: 876px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5px;
    display: flex;
    position: relative;
  }
  
  .cr-nav.controls__wrap {
    justify-content: space-between;
  }
  
  .button-8 {
    color: #b7b7b7;
    background-color: #0000;
    border-bottom: 4px solid #0000;
    padding: 0 34px 20px;
    font-family: Helveticaneue, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 28px;
    position: relative;
  }
  
  .button-8.active {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#3380fb, #309ffb);
    -webkit-background-clip: text;
    background-clip: text;
    border-bottom-color: #3380fb;
    font-family: Helvetica Bold, sans-serif;
    font-weight: 700;
  }
  
  .button-8.slider__controller {
    z-index: 2;
    color: #b7b7b7;
    padding: 0 34px 20px;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
  }
  
  .cr-platfotm {
    margin-top: -7px;
    display: none;
  }
  
  .marquee-wrapper {
    height: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .div-block-10 {
    position: relative;
  }
  
  .image-14 {
    max-width: none;
    position: absolute;
    inset: auto auto -30px 0%;
  }
  
  .active {
    font-weight: 700;
  }
  
  .controls__wrap {
    z-index: 200;
    background-color: #fff;
    border-bottom: 2px solid #f0f0f0;
    justify-content: space-between;
    width: 876px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 5px;
    display: flex;
    position: static;
    inset: 0% 0% auto;
  }
  
  .slider__controller {
    color: #b7b7b7;
    border-bottom: 4px solid #0000;
    padding: 0 34px 20px;
    font-family: Helveticaneue, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
    position: relative;
  }
  
  .slider__controller.w--current {
    color: #b7b7b7;
    border-bottom: 4px solid #0000;
    padding: 0 34px 20px;
    font-family: Helveticaneue, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 28px;
  }
  
  .slider__controller.active {
    color: #309ffb;
    border-bottom: 4px solid #309ffb;
    padding: 0 34px 20px;
    font-size: 23px;
    line-height: 28px;
  }
  
  .slider__controller.active.w--current {
    padding: 0 34px 20px;
  }
  
  .slider__wrap {
    width: 100%;
    height: auto;
    margin-top: 20px;
    padding-top: 0;
  }
  
  .c-slider {
    background-color: #0000;
    width: 100%;
    max-width: 1144px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }
  
  .slider__img {
    object-fit: cover;
    width: 100%;
    height: 830px;
    max-height: none;
  }
  
  .slide__number {
    color: #fff;
    text-align: center;
    position: absolute;
    inset: auto 0% 0%;
  }
  
  .h-hide {
    display: none;
  }
  
  .controls__wrap-2 {
    z-index: 200;
    background-color: #fff;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
  }
  
  .heading-9 {
    color: #343434;
    text-align: center;
    width: 798px;
    margin: 35px auto 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }
  
  .button-slider {
    margin-top: 50px;
    margin-left: 50%;
    display: inline-block;
    transform: translate(-50%);
  }
  
  .image-15 {
    max-width: none;
    position: absolute;
    inset: auto auto -35px -5px;
  }
  
  .slide-nav {
    justify-content: center;
    align-items: center;
    height: 20px;
    margin-top: 22px;
    padding-top: 0;
    display: flex;
    position: relative;
  }
  
  .left-arrow, .right-arrow {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 830px;
    margin-top: 0;
    margin-bottom: 0;
    display: none;
  }
  
  .icon-slide {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .mentors {
    margin-top: 120px;
    overflow: hidden;
  }
  
  .heading-10 {
    color: #121212;
    text-align: center;
    margin-top: 0;
    margin-bottom: 18px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .paragraph-5 {
    color: #343434;
    text-align: center;
    width: 779px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .slide-nav-2 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 0;
    display: flex;
    position: relative;
  }
  
  .image-16 {
    width: 309px;
  }
  
  .slide {
    width: 309px;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .mask {
    height: auto;
    overflow: visible;
  }
  
  .slider-4 {
    background-color: #0000;
    justify-content: center;
    height: auto;
    margin-top: 60px;
  }
  
  .left-arrow-2, .right-arrow-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 371px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
  }
  
  .top {
    background-image: linear-gradient(141deg, #ff47a0, #6490ff);
    width: 100%;
    height: 137px;
    overflow: hidden;
  }
  
  .image-17 {
    height: 113px;
  }
  
  .image-17.block {
    display: none;
  }
  
  .heading-11 {
    text-align: center;
    letter-spacing: -1px;
    width: 639px;
    margin: 0 auto;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .networking {
    margin-top: 107px;
  }
  
  ._w-networking {
    background-color: #f6faff;
    border-radius: 24px;
    justify-content: space-between;
    width: 1140px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-left: 67px;
    display: flex;
    position: relative;
  }
  
  .wn-left {
    width: 501px;
    padding-top: 104px;
  }
  
  .heading-12 {
    color: #121212;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 30px;
    line-height: 38px;
  }
  
  .paragraph-6 {
    color: #212121;
    margin-top: 16px;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  
  .check {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    color: #0f0049;
    align-items: center;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    display: flex;
  }
  
  .check-flex {
    grid-column-gap: 34px;
    grid-row-gap: 34px;
    align-items: center;
    margin-top: 23px;
    display: flex;
  }
  
  .check-image {
    width: 24px;
    height: 24px;
  }
  
  .link-block-2 {
    z-index: 1;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #fff;
    background-color: #000;
    background-image: linear-gradient(141deg, #ff47a0, #6490ff);
    border-radius: 16px;
    align-items: center;
    padding: 13px 24px 14px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 14.99px;
    font-weight: 700;
    line-height: 28px;
    text-decoration: none;
    display: flex;
    position: relative;
    box-shadow: 20px 0 30px #00000024;
  }
  
  .text-block-4 {
    font-weight: 700;
  }
  
  .button-nw {
    margin-top: 40px;
    display: inline-block;
  }
  
  .div-block-11 {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }
  
  .div-block-11.center {
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .text-block-5 {
    color: #b5b5b5;
    text-align: center;
    margin-top: 26px;
    font-family: Helveticaneue, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .wn-right {
    color: #fff;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 547px;
    height: 463px;
    margin-top: 60px;
    padding-top: 0;
    padding-left: 18px;
    overflow: hidden;
  }
  
  .frame-427323299 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: #fff;
    border-radius: 8px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 14px;
    padding: 16px 24px;
    display: flex;
    box-shadow: 0 4px 30px #0000000d;
  }
  
  .text-19 {
    color: #000;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 28px;
  }
  
  .powerful-dashboard {
    color: #121212;
    font-family: Helveticaneue, sans-serif;
    font-size: 18px;
    font-weight: 500;
  }
  
  .absolute-nw {
    position: absolute;
    inset: 37px -101px auto auto;
  }
  
  .text-20 {
    text-align: center;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#3380fb, #309ffb);
    -webkit-background-clip: text;
    background-clip: text;
    border-bottom: 1px solid #309ffb;
    font-size: 17px;
    font-weight: 700;
    line-height: 19px;
    text-decoration: underline;
  }
  
  .link-block-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: center;
    margin-top: 126px;
    text-decoration: none;
    display: flex;
  }
  
  .image-18 {
    border-radius: 10px;
    height: 106px;
    box-shadow: 0 5px 7px #3293fc14;
  }
  
  .absolute-nw-2 {
    position: absolute;
    inset: auto -66px 33px auto;
  }
  
  .slider-2 {
    background-color: #0000;
    height: auto;
    margin-top: 40px;
  }
  
  .mask-2 {
    height: auto;
    overflow: hidden;
  }
  
  .left-arrow-3, .right-arrow-3 {
    justify-content: center;
    align-items: center;
    display: none;
  }
  
  .slide-nav-3 {
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding-top: 0;
    padding-left: 0;
    display: flex;
    inset: auto 0% -10%;
  }
  
  .control-nw-wrapper {
    border-bottom: 2px solid #f0f0f0;
    justify-content: space-between;
    align-items: center;
    width: 1021px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .control-link-nw {
    color: #b7b7b7;
    border-bottom: 4px solid #0000;
    padding-bottom: 16px;
    font-family: Helveticaneue, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-decoration: none;
  }
  
  .control-link-nw.active {
    color: #309ffb;
    border-bottom-color: #309ffb;
  }
  
  .div-block-12 {
    align-items: center;
    display: flex;
  }
  
  .paragraph-7 {
    color: #fff;
    margin-bottom: 10px;
    margin-left: 39px;
    font-family: Helveticaneue, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
  }
  
  .text-span-2 {
    font-family: Helvetica Bold, sans-serif;
    font-weight: 700;
  }
  
  .div-block-13 {
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    display: flex;
  }
  
  .bc-top {
    z-index: 9;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #fff;
    background-color: #212121;
    border-radius: 8px;
    padding: 10px 12px 12px 21px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 15.6px;
    line-height: 28px;
    text-decoration: none;
    display: flex;
    position: relative;
  }
  
  .border-gradient-white {
    z-index: 99;
  }
  
  .div-block-14 {
    z-index: 1;
    position: relative;
  }
  
  .border-gradient {
    z-index: -99;
  }
  
  .div-block-15 {
    display: flex;
    position: relative;
  }
  
  .members {
    margin-top: 117px;
    padding-top: 62px;
    padding-bottom: 97px;
    position: relative;
    overflow: hidden;
  }
  
  .frame-427323511 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1216px;
    display: flex;
    position: relative;
  }
  
  .vectors-wrapper-16 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .frame-427323504 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: relative;
  }
  
  .frame-427323503 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 35px;
    left: 14px;
  }
  
  .vectors-wrapper-17 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
  }
  
  .frame-427323487 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .realtime-analytics {
    color: #121212;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }
  
  .create-reports-with {
    border-style: none;
    border-width: undefinedpx;
    color: #777;
    text-align: center;
    border-color: #777;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  
  .frame-427323501 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 31px;
    left: 15px;
  }
  
  .frame-427323491 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .frame-427323499 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 31px;
    left: 14px;
  }
  
  .realtime-analytics-2 {
    color: #fff;
    text-align: center;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  
  .create-reports-with-2 {
    color: #fff;
    text-align: center;
    font-family: Helvetica Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  
  .vectors-wrapper-18 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
    position: absolute;
    top: 313px;
    left: 1056px;
  }
  
  .frame-427323495 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 301px;
    left: 942px;
  }
  
  .background-members {
    opacity: 0;
    background-color: #328ffc;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0% auto auto 0%;
  }
  
  .hr-members {
    width: 100%;
    height: 3px;
    position: absolute;
    inset: 0% auto auto 0%;
  }
  
  .hr-members.bottom {
    inset: auto auto 0% 0%;
  }
  
  .heading-13 {
    color: #121212;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 120%;
  }
  
  .paragraph-8 {
    text-align: center;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
  }
  
  .items-member {
    background-color: #fff;
    border-radius: 15px;
    width: 368px;
    height: 294px;
    margin-left: 20px;
    margin-right: 20px;
    display: block;
    position: relative;
  }
  
  .image-19 {
    margin-top: 32px;
    margin-left: 32px;
  }
  
  .text-members {
    letter-spacing: -.36px;
    margin-top: 31px;
    margin-bottom: 0;
    padding-left: 31px;
    padding-right: 31px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 18px;
    line-height: 140%;
  }
  
  .frame-427323024 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: absolute;
    inset: auto auto 32px 32px;
  }
  
  .rectangle-249 {
    object-fit: cover;
    border-radius: 110px;
  }
  
  .frame-427323000 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .text-21 {
    color: #121212;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-22 {
    color: #434343;
    font-family: Helvetica Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }
  
  .div-block-16 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    align-items: center;
    display: flex;
  }
  
  .image-20 {
    width: 13px;
    height: 13px;
  }
  
  .slider-3 {
    background-color: #0000;
    height: auto;
  }
  
  .mask-3 {
    height: auto;
    overflow: visible;
  }
  
  .left-arrow-4, .right-arrow-4 {
    display: none;
  }
  
  .wrapper-slider-members {
    flex-direction: row;
    align-items: center;
    margin-top: 48px;
    display: flex;
  }
  
  .items-sm {
    margin-right: 32px;
  }
  
  .slide-nav-4 {
    width: 100vw;
    margin-top: 20px;
    position: static;
  }
  
  .industri {
    margin-top: 65px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .heading-14 {
    color: #121212;
    text-align: center;
    width: 783px;
    margin: 0 auto;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .paragraph-9 {
    text-align: center;
    width: 778px;
    margin: 16px auto 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .frame-427323512 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1216px;
    margin: 54px auto 10px;
    display: flex;
    position: relative;
  }
  
  .vectors-wrapper-19 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .frame-427323513 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: relative;
  }
  
  .frame-427323514 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 35px;
    left: 14px;
  }
  
  .vectors-wrapper-20 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: cover;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
  }
  
  .frame-427323515 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .realtime-analytics-3 {
    color: #121212;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }
  
  .create-reports-with-3 {
    border-style: none;
    border-width: undefinedpx;
    color: #777;
    text-align: center;
    border-color: #777;
    font-family: Helvetica Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }
  
  .frame-427323516 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 31px;
    left: 15px;
  }
  
  .frame-427323517 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .frame-427323518 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 31px;
    left: 14px;
  }
  
  .vectors-wrapper-21 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    display: flex;
    position: absolute;
    top: 313px;
    left: 1056px;
  }
  
  .frame-427323519 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: absolute;
    top: 301px;
    left: 942px;
  }
  
  .text-block-6 {
    font-weight: 700;
  }
  
  .image-24 {
    max-width: 10%;
  }
  
  .r-block-m {
    display: none;
  }
  
  .box-testimoni {
    background-color: #fff;
    border-radius: 15px;
    margin-left: 30px;
    display: inline-block;
  }
  
  .div-block-17 {
    background-color: #fff;
    border-radius: 14px;
    width: 496px;
    min-height: 170px;
    padding: 42px 0 0 32px;
    display: flex;
    overflow: hidden;
  }
  
  .paragraph-10 {
    color: #121212;
    white-space: break-spaces;
    max-width: 250px;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 15px;
  }
  
  .image-25 {
    border-radius: 50%;
    width: 34px;
    height: 34px;
  }
  
  .image-26 {
    width: 13px;
    height: 13px;
  }
  
  .div-block-18 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    align-items: center;
    display: flex;
  }
  
  .paragraph-11 {
    color: #b7b7b7;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 12px;
    line-height: 120%;
  }
  
  .paragraph-12 {
    color: #121212;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
    line-height: 120%;
  }
  
  .div-block-19 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
    margin-top: 17px;
    display: flex;
  }
  
  .div-block-20 {
    margin-left: 40px;
  }
  
  .image-28 {
    display: none;
  }
  
  .rookie {
    background-color: #f8fbff;
    margin-top: 60px;
    padding-top: 73px;
    padding-bottom: 60px;
  }
  
  .heading-15 {
    color: #121212;
    text-align: center;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 40px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .div-block-21 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    color: #b7b7b7;
    font-family: Helveticaneue, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 140%;
    display: block;
  }
  
  .div-block-22 {
    text-align: center;
    background-color: #fff;
    border-radius: 24px;
    width: 100%;
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .heading-16 {
    color: #121212;
    margin-bottom: 26px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 36px;
    line-height: 120%;
  }
  
  .paragraph-13 {
    margin-top: 17px;
    margin-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .div-block-23 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    display: flex;
  }
  
  .waiting {
    margin-top: 45px;
  }
  
  .heading-17 {
    color: #121212;
    text-align: center;
    letter-spacing: -1px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 110%;
  }
  
  .paragraph-14 {
    color: #434343;
    text-align: center;
    max-width: 919px;
    margin: 22px auto 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .div-block-24 {
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    display: flex;
  }
  
  .div-block-25 {
    width: 533px;
    height: 388px;
  }
  
  .div-block-25.gradient-grey {
    width: 500px;
    position: relative;
  }
  
  .div-block-25.gradient-grey.wait-middle {
    width: 315px;
  }
  
  .heading-18 {
    color: #000;
    letter-spacing: -.6px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 38px;
    padding-top: 50px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 30px;
    line-height: 100%;
  }
  
  .heading-18.h-middle {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-top: 33px;
  }
  
  .paragraph-15 {
    color: #565656;
    width: 208px;
    margin-top: 18px;
    margin-bottom: 0;
    margin-left: 34px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 12px;
    line-height: 140%;
  }
  
  .paragraph-15.right-wait-p {
    width: 433px;
  }
  
  .paragraph-15.p-middle {
    text-align: center;
    width: 100%;
    margin-top: 14px;
    margin-left: 0;
  }
  
  .image-29 {
    width: 175px;
    position: absolute;
    inset: auto 40px 0% auto;
  }
  
  .image-30 {
    width: 410px;
    position: absolute;
    inset: auto 48px 0% auto;
  }
  
  .image-31 {
    width: 207px;
    position: absolute;
    inset: auto auto 0 50%;
    transform: translate(-50%);
  }
  
  .div-block-26 {
    position: relative;
    left: -40px;
  }
  
  .div-block-27 {
    position: relative;
    right: -40px;
  }
  
  .faq {
    margin-top: 0;
  }
  
  .div-block-28 {
    background-color: #eef0fc00;
    margin-top: 27px;
    padding-top: 79px;
    padding-bottom: 0;
  }
  
  .paragraph-16 {
    color: #475467;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 20px;
    line-height: 150%;
  }
  
  .heading-19 {
    color: #121212;
    text-align: center;
    letter-spacing: -2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 88%;
  }
  
  .grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    max-width: 962px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }
  
  .item-grid {
    background-color: #fff;
    border-radius: 10px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  
  .paragraph-17 {
    margin-bottom: 0;
  }
  
  .dropdown-toggle {
    background-color: #eef0fc;
    border-radius: 14px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 0 26px 0 32px;
    display: flex;
  }
  
  .text-block-8 {
    color: #121212;
    letter-spacing: -.4px;
    white-space: break-spaces;
    width: 450px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-list {
    background-color: #ddd;
  }
  
  .dropdown-list.w--open {
    background-color: #0000;
    padding: 22px 26px 22px 32px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 20px;
    position: relative;
  }
  
  .paragraph-18 {
    margin-bottom: 24px;
    font-family: Helvetica Regular, sans-serif;
    font-weight: 400;
  }
  
  .div-block-29 {
    background-color: #fff;
    border: 2px solid #b7b7b740;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 84px;
    padding: 40px;
    display: flex;
  }
  
  .image-32 {
    width: 80px;
    height: 80px;
  }
  
  .div-block-30 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    align-items: center;
    display: flex;
  }
  
  .heading-20 {
    color: #101828;
    letter-spacing: -.64px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 32px;
    line-height: 120%;
  }
  
  .paragraph-19 {
    color: #475467b3;
    margin-top: 10px;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    line-height: 120%;
  }
  
  .text-field-2 {
    color: #090909;
    border: 1px solid #00000014;
    border-radius: 100px;
    width: 448px;
    height: 60px;
    margin-bottom: 0;
    padding: 0 130px 0 24px;
    font-family: Helvetica Regular, sans-serif;
    line-height: 120%;
  }
  
  .text-field-2::placeholder {
    color: #09090952;
  }
  
  .submit-button-2 {
    background-image: linear-gradient(#3380fb, #309ffb);
    border-radius: 100px;
    width: 145px;
    height: 44px;
    position: absolute;
    inset: 8px 12px auto auto;
  }
  
  .form-2 {
    position: relative;
  }
  
  .form-block-2 {
    margin-bottom: 0;
  }
  
  .oc-footer {
    background-color: #fff;
    padding-top: 24px;
  }
  
  .div-block-31 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .paragraph-20 {
    color: #667085;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 16px;
    line-height: 150%;
  }
  
  .image-33 {
    height: 40px;
  }
  
  .paragraph-21 {
    color: #475467;
    width: 275px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 16px;
    line-height: 150%;
  }
  
  .div-block-32 {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 48px;
    padding-bottom: 50px;
    display: flex;
  }
  
  .heading-21 {
    color: #66708580;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Helveticaneue, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }
  
  .link {
    color: #475467;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
  }
  
  .div-block-33 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    width: 140px;
    display: flex;
  }
  
  .div-block-34 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    display: flex;
  }
  
  .div-block-35 {
    background-color: #309ffb1a;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }
  
  .paragraph-22 {
    color: #121212;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    line-height: 120%;
  }
  
  .paragraph-23 {
    color: #121212cc;
    border-bottom: 1px solid #121212cc;
    margin-bottom: 0;
    margin-left: 0;
    font-family: Helvetica Regular, sans-serif;
    line-height: 120%;
  }
  
  .div-block-36 {
    align-items: center;
    margin-left: 8px;
    display: flex;
  }
  
  .frame-427322955 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    background-image: linear-gradient(126.5deg, #337efb, #309ffb);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 100.694px;
    padding: 10px 24px;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
    display: flex;
  }
  
  .text-23 {
    color: #121212cc;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-24 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-25 {
    color: #121212cc;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .link-block-4 {
    color: #121212cc;
    margin-right: 19px;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
    line-height: 120%;
    text-decoration: none;
  }
  
  .link-block-5 {
    text-decoration: none;
  }
  
  .div-block-37 {
    margin-left: 0;
    position: relative;
    left: 35px;
  }
  
  .video-social {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .slide-our {
    align-self: auto;
    height: 821px;
    margin-top: -4px;
    margin-bottom: 98px;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .html-embed {
    object-fit: fill;
    border-radius: 0;
    flex: 0 auto;
    order: 0;
    align-self: auto;
    width: auto;
    min-width: auto;
    max-width: none;
    height: 900px;
    min-height: auto;
    max-height: none;
    margin-top: -42px;
    margin-bottom: 93px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    position: static;
    overflow: hidden;
  }
  
  .text-block-11, .text-block-12, .text-block-13, .text-block-14 {
    font-style: normal;
  }
  
  .mask-4 {
    margin-bottom: -80px;
  }
  
  .html-embed-2 {
    float: none;
    clear: none;
    opacity: 1;
    -webkit-text-fill-color: inherit;
    object-fit: scale-down;
    background-clip: border-box;
    border: 1px solid #000;
    border-radius: 20px;
    flex-flow: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    min-width: auto;
    max-width: 2px;
    height: auto;
    min-height: auto;
    max-height: 1px;
    padding-left: 0;
    display: flex;
    position: static;
    overflow: visible;
  }
  
  .container-4 {
    max-width: 500px;
  }
  
  .section-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 360px;
    display: flex;
  }
  
  .html-embed-dddailylive {
    flex-flow: column-reverse;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    align-items: stretch;
    width: 100%;
    height: 800px;
    margin-top: 2px;
    margin-bottom: 5px;
    padding-top: 0;
    padding-bottom: 7px;
    display: flex;
    position: static;
    overflow: hidden;
  }
  
  .html-embed-dailylivethis {
    flex-flow: column-reverse;
    flex: 0 auto;
    justify-content: center;
    align-self: auto;
    align-items: stretch;
    width: 526px;
    height: 370px;
    margin: -13px 0 0 -16px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    position: static;
    overflow: hidden;
  }
  
  .section-2-cddopy {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 278px;
    display: flex;
  }
  
  .social-network-for-traders12 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 570px;
    height: 360px;
    display: flex;
    overflow: visible;
  }
  
  .interactiverad {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 677px;
    height: 400px;
    display: flex;
  }
  
  .dashboard-coffpy {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 1px solid #001aff33;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 540px;
    padding-top: 45px;
    display: flex;
  }
  
  .htmlsocial-network-for-traders12 {
    flex-flow: column-reverse wrap-reverse;
    flex: 0 auto;
    place-content: flex-end space-around;
    align-items: center;
    width: 111px;
    min-width: 111px;
    max-width: 111px;
    height: 111px;
    min-height: 111px;
    max-height: 111px;
    display: flex;
    overflow: visible;
  }
  
  .socialnetworkfortraders7778 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 400px;
    display: flex;
  }
  
  .html-embed-socialnetworkfortraders {
    border-radius: 20px;
    flex-flow: row;
    flex: 0 auto;
    order: 0;
    justify-content: space-around;
    align-self: baseline;
    align-items: center;
    width: 800px;
    height: 250px;
    margin: 36px 0 0 -75px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    position: static;
    overflow: visible;
  }
  
  .image-35 {
    border-radius: 20px;
    padding-top: 20px;
    overflow: visible;
  }
  
  .image-36 {
    padding-top: 20px;
    padding-left: 0;
  }
  
  .image-37 {
    margin-top: 13px;
    margin-left: -4px;
  }
  
  .comdp-copy {
    border: 1px solid #001aff33;
    border-radius: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 420px;
    padding-top: 42px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    overflow: hidden;
  }
  
  .text-14-copy {
    color: #121212;
    font-family: Helvetica Bold, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 120%;
  }
  
  .ix2-button {
    color: #fff;
    -webkit-text-stroke-color: #fff0;
    background-color: #1b1b1b00;
    border: 0 solid #4353ff00;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 30%;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    padding: 49px 0 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 9px 40px #0c165f36;
  }
  
  .ix2-button__overlay-1 {
    z-index: 2;
    background-image: linear-gradient(to right, #1b1b1b, #2630a5);
    height: 1113px;
    position: absolute;
    inset: 0%;
  }
  
  .ix2-button__overlay-2 {
    z-index: 1;
    opacity: 0;
    background-image: linear-gradient(76deg, #ff47a0, #577fe5);
    position: absolute;
    inset: 0%;
  }
  
  .ix2-button__white-overlay {
    z-index: 0;
    background-image: repeating-linear-gradient(#758af5, #f44da7);
    position: absolute;
    inset: 0%;
  }
  
  .button-text {
    z-index: 2;
    color: #fff;
    order: 0;
    align-self: auto;
    width: 700px;
    height: 80px;
    margin-top: -50px;
    padding-top: 0;
    padding-left: 35px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
    display: block;
    position: relative;
    overflow: visible;
  }
  
  .ix2-button__overlay-1-2 {
    z-index: 2;
    background-image: linear-gradient(to right, #1b1b1b, #2630a5);
    flex-direction: row;
    height: 50px;
    display: block;
    position: absolute;
    inset: 0%;
  }
  
  .body {
    font-family: Axiforma REAL, sans-serif;
    font-weight: 500;
  }
  
  .button-container {
    border: 0 #fff0;
    border-radius: 20px;
    width: 50%;
    height: 50%;
    margin-top: -25px;
    padding: 0;
  }
  
  .ix2-button__overlay-1-3 {
    z-index: 2;
    opacity: 1;
    text-align: center;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: #fff;
    overflow-wrap: anywhere;
    -webkit-text-fill-color: inherit;
    background-color: #fff0;
    background-image: repeating-radial-gradient(circle at 100% 24%, #6490ff, #ff47a0);
    background-clip: border-box;
    border: 3px #fff0;
    border-radius: 0;
    flex: 0 auto;
    align-self: center;
    padding-top: 30px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    position: absolute;
    inset: 0%;
    overflow: visible;
  }
  
  .html-embed-3 {
    border: 1px solid #ffffff1c;
    border-radius: 0;
    font-size: 10px;
  }
  
  .button-container-codpy {
    border: 1px #fff0;
    width: 50%;
    height: 50%;
    margin-top: -25px;
    padding: 0;
    display: none;
  }
  
  .ix2-button-copy {
    color: #fff;
    -webkit-text-stroke-color: #fff0;
    background-color: #1b1b1b00;
    border: 4px solid #4353ff00;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 30%;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    padding: 49px 0 0;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 40px #00000080;
  }
  
  .button-text-copy {
    z-index: 2;
    color: #fff;
    order: 0;
    align-self: auto;
    width: 700px;
    height: 80px;
    margin-top: -50px;
    padding-top: 0;
    padding-left: 35px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
    display: block;
    position: relative;
    overflow: visible;
  }
  
  .ix2-button__overlay-2-copy {
    z-index: 1;
    opacity: 0;
    background-image: linear-gradient(76deg, #ff47a0, #577fe5);
    position: absolute;
    inset: 0%;
  }
  
  .ix2-button__white-overlay-copy {
    z-index: 0;
    background-image: repeating-linear-gradient(#758af5, #f44da7);
    position: absolute;
    inset: 0%;
  }
  
  .ix2-button__overlay-1-3-copy {
    z-index: 2;
    opacity: 1;
    text-align: center;
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: #fff;
    overflow-wrap: anywhere;
    -webkit-text-fill-color: inherit;
    background-color: #fff0;
    background-image: repeating-radial-gradient(circle at 100% 24%, #6490ff, #ff47a0);
    background-clip: border-box;
    border: 3px #fff0;
    border-radius: 0;
    flex: 0 auto;
    align-self: center;
    padding-top: 30px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    position: absolute;
    inset: 0%;
    overflow: visible;
  }
  
  .maps-button-copy {
    margin-left: 50%;
    display: inline-block;
    transform: translate(-50%);
  }
  
  .industry-button {
    margin-top: 40px;
    margin-left: 50%;
    display: inline-block;
    transform: translate(-50%);
  }
  
  .mask-2-copy {
    height: auto;
    margin-left: 85px;
    margin-right: 85px;
    overflow: hidden;
  }
  
  .slider-3-copy {
    background-color: #0000;
    height: auto;
    display: none;
  }
  
  .socialnetworkfortraders7778-copy {
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: center;
    height: 300px;
    display: flex;
  }
  
  .text-15-copy {
    color: #343434;
    flex: 0 auto;
    align-self: baseline;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .html-embed-4 {
    display: flex;
  }
  
  .div-block-47 {
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    display: flex;
  }
  
  .paragraph-24 {
    color: #fff;
    margin-bottom: 10px;
    margin-left: 39px;
    font-family: Helveticaneue, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
  }
  
  .text-span-3 {
    font-family: Helvetica Bold, sans-serif;
    font-weight: 700;
  }
  
  .div-block-48 {
    display: flex;
    position: relative;
  }
  
  .div-block-49 {
    align-items: center;
    display: flex;
  }
  
  .text-block-15 {
    font-weight: 700;
  }
  
  .image-39 {
    height: 113px;
  }
  
  .image-39.block {
    display: none;
  }
  
  .navbar-logo-left-container {
    z-index: 5;
    background-color: #0000;
    width: 1030px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 20px;
  }
  
  .navbar-logo-left-container.shadow-three {
    width: 100%;
    max-width: 1140px;
    margin-bottom: 0;
  }
  
  .container-5 {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-wrapper {
    background-color: #0155f8;
    border-radius: 100px;
    justify-content: space-between;
    align-items: center;
    height: 86px;
    padding: 25px 35px;
    display: flex;
  }
  
  .nav-menu-two {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }
  
  .nav-link {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
  }
  
  .nav-link:hover {
    color: #1a1b1fbf;
  }
  
  .nav-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown {
    margin-left: 5px;
    margin-right: 5px;
  }
  
  .nav-dropdown-toggle {
    letter-spacing: .25px;
    padding: 5px 30px 5px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  .nav-dropdown-toggle:hover {
    color: #1a1b1fbf;
  }
  
  .nav-dropdown-toggle:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-toggle[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-icon {
    margin-right: 10px;
  }
  
  .nav-dropdown-list {
    background-color: #fff;
    border-radius: 12px;
  }
  
  .nav-dropdown-list.w--open {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .nav-dropdown-link {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
  }
  
  .nav-dropdown-link:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-link[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-divider {
    background-color: #e4ebf3;
    width: 1px;
    height: 22px;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .nav-link-accent---margin-left {
    color: #fff;
    letter-spacing: .25px;
    margin-left: 20px;
    margin-right: 5px;
    padding: 5px 10px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 20px;
    text-decoration: none;
  }
  
  .nav-link-accent---margin-left:hover {
    color: #1a1b1fbf;
  }
  
  .button-primary {
    background-color: var(--accent);
    color: #fff;
    letter-spacing: 2px;
    text-transform: none;
    border-radius: 100px;
    padding: 12px 25px;
    font-family: Helveticaneue, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary:hover {
    color: #fff;
    background-color: #431ab8;
  }
  
  .brix---opacity-10 {
    opacity: .1;
  }
  
  .brix---floating-image-hero-v1---1 {
    z-index: -1;
    position: absolute;
    inset: auto auto -32% -41%;
  }
  
  .brix---opacity-20 {
    opacity: .2;
  }
  
  .brix---floating-image-hero-v1---2 {
    z-index: -1;
    max-width: 600px;
    position: absolute;
    inset: auto 11% 8% auto;
    transform: rotate(140deg);
  }
  
  .brix---btn-secondary {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px #14142b0a;
  }
  
  .brix---btn-secondary:hover {
    border-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    background-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
  
  .brix---btn-primary {
    background-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
  }
  
  .brix---btn-primary:hover {
    background-color: var(--elements-webflow-library-secondary--color-1\<deleted\|variable-6e6412b6\>);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
  
  .brix---button-row-left {
    margin-right: 24px;
  }
  
  .brix---buttons-row {
    align-items: center;
    display: flex;
  }
  
  .brix---paragraph-default {
    color: var(--base);
    margin-top: 43px;
    margin-bottom: 0;
    padding-right: 25px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 28px;
  }
  
  .brix---color-neutral-600 {
    color: var(--elements-webflow-library-neutral--600\<deleted\|variable-06b40b4b\>);
  }
  
  .brix---mg-bottom-40px {
    margin-bottom: 40px;
  }
  
  .brix---heading-h1-size {
    color: #121212;
    letter-spacing: -2px;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 63px;
    font-weight: 500;
    line-height: 100%;
  }
  
  .brix---color-neutral-800 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---grid-hero-v1 {
    grid-column-gap: 55px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1.75fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }
  
  .brix---container-default {
    max-width: 1218px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .header {
    z-index: 1;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    inset: 0% 0% auto;
  }
  
  .header.white {
    z-index: 9999;
    position: relative;
  }
  
  .image-40 {
    margin-left: 20px;
  }
  
  .form-block-3 {
    width: 100%;
    margin-bottom: 0;
  }
  
  .text-field-3 {
    color: #212121;
    border: 1px #000;
    border-left: 2px solid #ebebeb;
    width: 300px;
    height: 26px;
    margin-bottom: 0;
    margin-left: 15px;
    padding-left: 4px;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-field-3::placeholder {
    color: #dbdbdb;
  }
  
  .image-41 {
    position: absolute;
    inset: 10px -120px auto auto;
  }
  
  .div-block-50 {
    align-items: center;
    display: flex;
  }
  
  .submit-button-3 {
    background-color: #0000;
    width: 100%;
    height: 100%;
    padding: 0;
    transition: all .2s;
    position: absolute;
    inset: 0% auto auto 0%;
  }
  
  .submit-button-3:hover {
    transform: scale(1.05);
  }
  
  .div-block-51 {
    background-image: linear-gradient(to bottom, var(--accent), var(--accent));
    color: #fff;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 63px;
    font-family: Helveticaneue, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 120px;
    display: flex;
    position: relative;
  }
  
  .div-block-52 {
    margin-left: 40px;
  }
  
  .div-block-53 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
    margin-top: 17px;
    display: flex;
  }
  
  .paragraph-25 {
    color: #121212;
    white-space: break-spaces;
    max-width: 250px;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 15px;
  }
  
  .paragraph-26 {
    color: #b7b7b7;
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 12px;
    line-height: 120%;
  }
  
  .frame-427323520 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex: 0 auto;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }
  
  .div-block-54 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    align-items: center;
    display: flex;
  }
  
  .image-42 {
    border-radius: 50%;
    width: 34px;
    height: 34px;
  }
  
  .div-block-55 {
    background-color: #fff;
    border-radius: 14px;
    justify-content: center;
    width: 496px;
    min-height: 170px;
    padding: 25px;
    display: flex;
    overflow: hidden;
  }
  
  .image-43 {
    width: 13px;
    height: 13px;
  }
  
  .paragraph-27 {
    color: #121212;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-weight: 500;
    line-height: 120%;
  }
  
  .brix---paragraph-default-2 {
    color: var(--base);
    text-align: left;
    margin-top: 34px;
    margin-bottom: 0;
    padding-top: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
  }
  
  .brix---mg-bottom-48px {
    margin-bottom: 48px;
  }
  
  .h2-heading---centered {
    color: var(--base);
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 50px;
  }
  
  .h2-heading---centered.whats-inside {
    text-align: center;
    letter-spacing: -2px;
    margin-top: 26px;
    margin-bottom: 11px;
  }
  
  .h2-heading---centered.reviews {
    letter-spacing: -2px;
    margin-bottom: 40px;
  }
  
  .h2-heading---centered.whats-inside-copy {
    text-align: left;
    letter-spacing: -2px;
    margin-top: 26px;
    margin-bottom: 11px;
  }
  
  .brix---color-neutral-801 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---mg-bottom-16px {
    margin-bottom: 16px;
  }
  
  .brix---grid-2-columns-text-left {
    grid-column-gap: 50px;
    grid-row-gap: 28px;
    background-color: #eef0fc80;
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1.3fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding: 50px 80px;
    display: grid;
  }
  
  .brix---section {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .h2-heading---left-aligned {
    color: var(--base);
    letter-spacing: -2px;
    text-transform: none;
    margin-top: 0;
    margin-bottom: -16px;
    padding-top: 0;
    padding-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 50px;
  }
  
  .purple-highlighted-text {
    color: var(--accent);
  }
  
  .brix---grid-2-columns-text-right---desktop {
    grid-column-gap: 50px;
    grid-row-gap: 28px;
    background-color: #eef0fc80;
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.3fr;
    grid-auto-columns: 1fr;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px 80px;
    display: grid;
  }
  
  .call-to-action-button {
    text-align: center;
    margin-top: 100px;
    display: block;
  }
  
  .button-9 {
    background-color: var(--accent);
    border-radius: 10px;
    padding: 26.5px 37.5px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 25px;
  }
  
  .button-9:hover {
    background-color: #431ab8;
  }
  
  .div-block-56.header-div {
    text-align: center;
  }
  
  .feature-video-block {
    width: 468px;
    height: 340px;
  }
  
  .feature-video {
    z-index: 999;
    height: 340px;
  }
  
  .brix---mg-bottom-0 {
    margin-bottom: 0;
  }
  
  .brix---color-neutral-802 {
    color: var(--elements-webflow-library-neutral--600\<deleted\|variable-06b40b4b\>);
  }
  
  .brix---paragraph-default-3 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    line-height: 30px;
  }
  
  .brix---mg-top-16px {
    margin-top: 16px;
  }
  
  .brix---icon-square-32px---twitter {
    background-color: #eef8ff;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    text-decoration: none;
    transition: transform .3s, background-color .3s, color .3s;
    display: flex;
    overflow: hidden;
  }
  
  .brix---icon-square-32px---twitter:hover {
    transform: scale(.92);
  }
  
  .brix---testimonial-v9-twitter-icon {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fit, 36px);
    justify-content: end;
    justify-items: end;
  }
  
  .brix---twitter-icon-wrapper {
    flex: 1;
  }
  
  .brix---text-100 {
    font-size: 16px;
    line-height: 18px;
  }
  
  .brix---color-accent-1 {
    color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
  }
  
  .brix---text-200-bold {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
  }
  
  .brix---color-neutral-803 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---text-decoration-none {
    text-decoration: none;
  }
  
  .brix---mg-bottom-4px {
    margin-bottom: 4px;
  }
  
  .brix---mg-left-8px {
    margin-left: 8px;
  }
  
  .brix---avatar-image-link {
    transition: transform .3s;
  }
  
  .brix---avatar-image-link:hover {
    transform: scale(1.1);
  }
  
  .brix---avatar-circle-03 {
    border-radius: 50%;
    width: 64px;
    max-width: 64px;
    height: 64px;
    max-height: 64px;
    overflow: hidden;
    transform: translate(0);
  }
  
  .brix---flex-horizontal {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .brix---flex-horizontal-space-between {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .brix---width-100 {
    width: 100%;
  }
  
  .brix---card-testimonial-twitter {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    box-shadow: 0 2px 7px 0 var(--elements-webflow-library-general--shadow-01);
    border-radius: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 32px 40px;
    display: flex;
  }
  
  .brix---grid-3-columns {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .brix---btn-secondary-2 {
    border: 1px solid var(--elements-webflow-library-neutral--300);
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    line-height: 20px;
    transition: border-color .3s, transform .3s, background-color .3s, color .3s;
    box-shadow: 0 4px 10px #14142b0a;
  }
  
  .brix---btn-secondary-2:hover {
    border-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    background-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
  
  .brix---btn-primary-2 {
    background-color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    transform-style: preserve-3d;
    border-radius: 48px;
    justify-content: center;
    padding: 26px 38px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: background-color .3s, transform .3s, color .3s;
  }
  
  .brix---btn-primary-2:hover {
    background-color: var(--elements-webflow-library-secondary--color-1\<deleted\|variable-6e6412b6\>);
    color: var(--elements-webflow-library-neutral--100);
    transform: translate3d(0, -3px, .01px);
  }
  
  .brix---button-row-left-2 {
    margin-right: 24px;
  }
  
  .brix---buttons-row-right---t-left {
    justify-content: flex-end;
    align-items: center;
    display: flex;
  }
  
  .brix---heading-h2-size {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
  }
  
  .brix---mg-bottom-16px-2 {
    margin-bottom: 16px;
  }
  
  .brix---inner-container-490px {
    max-width: 490px;
  }
  
  .brix---grid-top---text-2-buttons {
    grid-column-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr .8fr;
    align-items: end;
    margin-bottom: 48px;
  }
  
  .brix---container-default-2 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .brix---section-2 {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
  }
  
  .image-5-copy-copy {
    margin-top: -4px;
    margin-left: -59px;
    margin-right: -99px;
    position: absolute;
    inset: 16% 7% auto auto;
  }
  
  .frame-427323521 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    position: absolute;
    inset: auto auto 32px 32px;
  }
  
  .left-arrow-5 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .div-block-57 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    align-items: center;
    display: flex;
  }
  
  .paragraph-28 {
    text-align: center;
    margin-bottom: 0;
    font-family: Helveticaneue, sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
  }
  
  .text-26 {
    color: #434343;
    font-family: Helvetica Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }
  
  .items-member-2 {
    background-color: #fff;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    width: 368px;
    height: 294px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    position: relative;
  }
  
  .slide-nav-5 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-top: 0;
    display: flex;
    position: relative;
  }
  
  .slide-copy {
    width: 368px;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .text-21-copy {
    color: #121212;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .mask-2-copy-copy {
    height: auto;
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 25px;
    padding-bottom: 25px;
    overflow: hidden;
  }
  
  .frame-427323522 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .rectangle-249-copy {
    object-fit: cover;
    border-radius: 110px;
  }
  
  .slider-2-copy {
    background-color: #0000;
    height: auto;
    margin-top: 40px;
  }
  
  .members-copy {
    margin-top: 117px;
    padding-top: 62px;
    padding-bottom: 97px;
    display: none;
    position: relative;
    overflow: hidden;
  }
  
  .right-arrow-5 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .text-members-copy-copy {
    letter-spacing: -.36px;
    margin-top: 23px;
    margin-bottom: 0;
    padding-left: 31px;
    padding-right: 31px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 14px;
    line-height: 140%;
  }
  
  .image-44 {
    width: 13px;
    height: 13px;
  }
  
  .text-27 {
    color: #121212;
    font-family: Helveticaneue, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .image-45 {
    margin-top: 32px;
    margin-left: 32px;
  }
  
  .heading-22 {
    color: #121212;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 120%;
  }
  
  .header-button {
    background-color: var(--accent);
    background-image: linear-gradient(to right, #b669fe, #8c1ff8 15%, #451a83 70%, #23184d);
    border-radius: 100px;
    padding: 20px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 19px;
  }
  
  .header-button:hover {
    background-color: #431ab8;
  }
  
  .button-primary-footer {
    color: #000;
    letter-spacing: 0;
    text-transform: none;
    background-color: #fff;
    border-radius: 100px;
    padding: 17.5px 34px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary-footer:hover {
    transform: scale(1.05);
  }
  
  .button-primary-copy {
    background-color: var(--accent);
    color: #fff;
    letter-spacing: 2px;
    text-transform: none;
    border-radius: 100px;
    padding: 12px 25px;
    font-family: Helveticaneue, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary-copy:hover {
    color: #fff;
    background-color: #431ab8;
  }
  
  .footer-links {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    flex-direction: row;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .footer-disclaimer {
    padding-bottom: 77px;
  }
  
  .footer-disclaimer-text {
    font-family: Helvetica Regular, sans-serif;
    font-weight: 500;
  }
  
  .navbar-logo-left-copy {
    margin-top: 127px;
    padding-top: 91px;
  }
  
  .footer-link {
    color: var(--base);
    font-family: Helvetica Regular, sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .footer-link:visited {
    color: var(--base);
  }
  
  .input-2 {
    border: 2.1px solid #fafafa;
    border-radius: 100px;
    align-items: center;
    width: 706px;
    height: 82px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 11px;
    display: flex;
    position: relative;
    box-shadow: 0 2px 5px #0003;
  }
  
  .image-46 {
    margin-left: 20px;
  }
  
  .form-block-4 {
    width: 100%;
    margin-bottom: 0;
  }
  
  .text-field-4 {
    color: #212121;
    border: 1px #000;
    border-left: 2px #ebebeb;
    width: 300px;
    height: 26px;
    margin-bottom: 0;
    margin-left: 15px;
    padding-left: 4px;
    font-family: Helveticaneue, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .text-field-4::placeholder {
    color: #dbdbdb;
  }
  
  .image-47 {
    position: absolute;
    inset: 10px -120px auto auto;
  }
  
  .div-block-58 {
    align-items: center;
    display: flex;
  }
  
  .div-block-59 {
    color: #fff;
    background-image: linear-gradient(#0155f8, #0155f8);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 82px;
    font-family: Helveticaneue, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 120px;
    transition: all .2s;
    display: flex;
    position: relative;
    right: -13px;
  }
  
  .div-block-59:hover {
    transform: scale(1.05);
  }
  
  .brix---paragraph-default-2-centered {
    color: var(--base);
    text-align: center;
    margin-bottom: 40px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 25px;
    line-height: 30px;
  }
  
  .what-s-inside {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 11px;
    padding-bottom: 100px;
  }
  
  .features {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 92px;
    padding-bottom: 100px;
  }
  
  .brix---paragraph-default-2-centered-no-margin {
    color: var(--base);
    text-align: center;
    font-family: Helvetica Regular, sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
  }
  
  .brix---paragraph-default-2-centered-subtitle {
    color: var(--base);
    text-align: center;
    margin-bottom: 40px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }
  
  .call-to-action-button-copy {
    text-align: center;
    margin-top: 40px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 23px;
    font-weight: 700;
    display: block;
  }
  
  ._3-colomn-reviews {
    grid-column-gap: 50px;
    grid-row-gap: 28px;
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    padding: 83px 80px 0;
    display: grid;
  }
  
  .image-48, .image-49, .image-50 {
    height: 340px;
  }
  
  .image-51 {
    max-width: 120%;
  }
  
  .brix---grid-2-columns-text-right---mobile {
    grid-column-gap: 50px;
    grid-row-gap: 28px;
    background-color: #eef0fc80;
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.3fr;
    grid-auto-columns: 1fr;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px 80px;
    display: none;
  }
  
  .button-primary-footer-copy {
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    text-transform: none;
    background-color: #0000;
    background-image: linear-gradient(to right, #b669fe 1.5%, #8c1ff8 35%, #451a83 70%, #23184d);
    border-radius: 100px;
    padding: 17.5px 34px;
    font-family: Helvetica Bold, sans-serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary-footer-copy:hover {
    color: #fff;
    background-color: #431ab8;
    transform: scale(1.05);
  }
  
  .brix---mg-bottom-2 {
    margin-bottom: 0;
  }
  
  .brix---paragraph-default-4 {
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    line-height: 30px;
  }
  
  .brix---color-neutral-804 {
    color: var(--elements-webflow-library-neutral--600\<deleted\|variable-06b40b4b\>);
  }
  
  .brix---heading-h5-size {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }
  
  .brix---color-neutral-805 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---mg-bottom-8px {
    margin-bottom: 8px;
  }
  
  .brix---color-accent-2 {
    color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
  }
  
  .brix---heading-h1-size-2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 66px;
  }
  
  .brix---grid-2-columns-2-col-mbl {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: start;
    display: grid;
  }
  
  .brix---mg-bottom-32px {
    margin-bottom: 32px;
  }
  
  .brix---heading-h2-size-2 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
  }
  
  .brix---mg-bottom-24px {
    margin-bottom: 24px;
  }
  
  .brix---subtitle {
    color: var(--base);
    text-align: center;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 8px;
    padding-top: 1px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 20px;
  }
  
  .brix---image {
    padding-top: 17px;
    padding-bottom: 28px;
    padding-left: 91px;
  }
  
  .brix---image-wrapper-br-24px-shadow {
    border-radius: 24px;
    overflow: hidden;
  }
  
  .brix---grid-2-columns-text {
    grid-column-gap: 64px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
  }
  
  .brix---container-default-3 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .about-host {
    color: var(--elements-webflow-library-neutral--100);
    background-color: #eef0fc;
    border-radius: 30px;
    margin-bottom: 6px;
    margin-left: 122px;
    margin-right: 126px;
    padding: 62px 0 62px 101px;
  }
  
  .heading-19-copy {
    color: #121212;
    text-align: left;
    letter-spacing: -2px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Helvetica Bold, sans-serif;
    font-size: 50px;
    line-height: 88%;
  }
  
  .call-to-action-button---align-left {
    text-align: left;
    margin-top: 40px;
    display: block;
  }
  
  .text-block-16 {
    font-family: Helvetica Bold, sans-serif;
    font-size: 23px;
  }
  
  .image-52 {
    text-align: center;
    height: 30px;
  }
  
  .image-53 {
    height: 30px;
  }
  
  .image-54 {
    max-width: 100px;
  }
  
  .brix---container-small {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .blue-text {
    color: #0155f8;
  }
  
  .image-55 {
    height: 25px;
  }
  
  .brix---heading-h3-size {
    margin-top: 0;
    margin-bottom: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
  }
  
  .brix---color-neutral-806 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---color-accent-3 {
    color: var(--elements-webflow-library-accent--primary-1\<deleted\|variable-86b36df2\>);
  }
  
  .brix---display-2 {
    color: #000;
    font-family: Helvetica Bold, sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .brix---mg-bottom-12px {
    margin-bottom: 12px;
  }
  
  .brix---icon-stats-v7 {
    border-radius: 16px;
    width: 50px;
  }
  
  .brix---mg-bottom-24px-2 {
    margin-bottom: 24px;
  }
  
  .brix---text-center {
    text-align: center;
  }
  
  .brix---grid-4-columns {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .brix---heading-h2-size-3 {
    margin-top: 0;
    margin-bottom: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 50px;
  }
  
  .brix---inner-container-600px---center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .brix---mg-bottom-56px {
    margin-bottom: 56px;
  }
  
  .brix---container-default-4 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .brix---section-3 {
    color: var(--elements-webflow-library-neutral--100);
    padding-top: 176px;
    padding-bottom: 176px;
  }
  
  .grid-2 {
    grid-template-rows: auto;
    grid-template-columns: 2.5fr 1fr;
  }
  
  .header-highlight-paragraph {
    color: var(--base);
    margin-bottom: 0;
    font-family: Helvetica Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }
  
  .rounded-button {
    color: #fff;
    letter-spacing: 0;
    text-transform: none;
    background-color: #0155f8;
    border-radius: 100px;
    padding: 17.5px 34px;
    font-family: Helvetica Regular, sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 20px;
    transition: all .2s;
  }
  
  .rounded-button:hover {
    transform: scale(1.05);
  }
  
  .heading-23 {
    color: var(--base);
    margin-top: -123px;
    margin-left: 411px;
  }
  
  .image-56 {
    margin-top: 77px;
    margin-left: 449px;
    padding-right: 0;
  }
  
  .heading-24 {
    margin-left: -25px;
    padding-left: 0;
    padding-right: 0;
    font-size: 100px;
  }
  
  .navbar-no-shadow-container {
    z-index: 5;
    background-color: #0000;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
  
  .container-regular {
    width: 100%;
    max-width: 1260px;
    min-height: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-wrapper-2 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .nav-menu-wrapper-2 {
    position: static;
  }
  
  .nav-menu {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
  }
  
  .nav-link-2 {
    color: var(--elements-webflow-library-neutral--300);
    letter-spacing: .16px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 20px;
    font-family: Axiforma, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-decoration: none;
  }
  
  .nav-link-2:hover {
    color: var(--elements-webflow-library-neutral--300);
  }
  
  .nav-link-2:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-link-2[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-link-2.w--current {
    font-family: Axiforma, sans-serif;
  }
  
  .nav-link-2.nav-link-black {
    color: var(--neutral);
    font-family: Axiforma, sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  
  .nav-link-2.nav-link-black.w--current {
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
  }
  
  .nav-dropdown-2 {
    margin-left: 5px;
    margin-right: 5px;
  }
  
  .nav-dropdown-toggle-2 {
    letter-spacing: .25px;
    padding: 5px 30px 5px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  .nav-dropdown-toggle-2:hover {
    color: #1a1b1fbf;
  }
  
  .nav-dropdown-toggle-2:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-toggle-2[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-icon-2 {
    margin-right: 10px;
  }
  
  .nav-dropdown-list-2 {
    background-color: #fff;
    border-radius: 12px;
  }
  
  .nav-dropdown-list-2.w--open {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .nav-dropdown-link-2 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
  }
  
  .nav-dropdown-link-2:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-link-2[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .mobile-margin-top-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .nav-button-wrapper {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    justify-content: flex-end;
    align-items: center;
    margin-left: 40px;
    display: flex;
  }
  
  .button-primary-2 {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #1a1b1f;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary-2:hover {
    color: #fff;
    background-color: #32343a;
  }
  
  .button-primary-2:active {
    background-color: #43464d;
  }
  
  .hero-banner {
    z-index: 0;
    text-align: center;
    background-image: url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/6662b756ff85b1f79b00ec55_Frame-124.webp");
    background-position: 50%;
    background-repeat: repeat-y;
    background-size: cover;
    background-attachment: scroll;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
  }
  
  .hero-banner.hero-security {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    flex-flow: column;
    height: 100vh;
  }
  
  .image-57 {
    width: 100%;
    height: 100vh;
    display: none;
  }
  
  .site-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .site-container.container-fluid {
    max-width: 100%;
  }
  
  .site-container.relative {
    position: relative;
  }
  
  .site-container._404banner {
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
  }
  
  .image-58 {
    width: 174px;
    height: 91px;
    margin-top: 0;
  }
  
  .image-58.logo-black {
    width: 120px;
    margin-top: 0;
  }
  
  .image-58.logo-white {
    display: none;
  }
  
  .buttonprimary {
    background-color: var(--primary);
    color: var(--neutral);
    border-radius: 4px;
    padding: 10px 20px;
    font-family: Brcandor Bf Medium, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .buttonprimary.secbtn {
    background-color: var(--elements-webflow-library-neutral--100);
  }
  
  .buttonprimary.secbtn.dektoponly:hover {
    color: var(--elements-webflow-library-neutral--100);
    background-color: #6e00d8;
  }
  
  .buttonprimary.secbtn.dektoponly.border {
    border: 1px solid var(--neutral);
  }
  
  .buttonprimary.mobonly {
    display: none;
  }
  
  .buttonprimary.dektoponly {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 7px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
  }
  
  .buttonprimary.dektoponly:hover {
    background-color: #2acd4b;
  }
  
  .navbar-logo-center-container {
    z-index: 5;
    background-color: #0000;
    width: 1030px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
  
  .navbar-logo-center-container.shadow-three {
    width: 100%;
    max-width: 1140px;
  }
  
  .container-6 {
    width: 100%;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-wrapper-three {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }
  
  .navbar-brand-three {
    z-index: 5;
    position: absolute;
  }
  
  .nav-menu-wrapper-three {
    width: 100%;
  }
  
  .nav-menu-three {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }
  
  .nav-menu-block {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }
  
  .nav-link-3 {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
  }
  
  .nav-link-3:hover {
    color: #1a1b1fbf;
  }
  
  .nav-link-3:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-link-3[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 4px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-3 {
    margin-left: 5px;
    margin-right: 5px;
    position: static;
  }
  
  .nav-dropdown-toggle-3 {
    letter-spacing: .25px;
    padding: 5px 10px 5px 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    line-height: 20px;
  }
  
  .nav-dropdown-toggle-3:hover {
    color: #1a1b1fbf;
  }
  
  .nav-dropdown-toggle-3:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-toggle-3[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-icon-3 {
    color: var(--elements-webflow-library-neutral--100);
    letter-spacing: .25px;
    margin-right: 10px;
    font-family: Brcandor Bf light, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
  
  .nav-dropdown-icon-3.dropdown-black {
    color: var(--neutral);
  }
  
  .nav-dropdown-list-3 {
    background-color: #fff;
    border-radius: 12px;
  }
  
  .nav-dropdown-list-3.w--open {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
    width: 100%;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 0;
    left: 0;
    right: 0;
  }
  
  .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.feature.w--open {
    margin-top: 0;
    padding-bottom: 30px;
  }
  
  .nav-dropdown-link-3 {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
  }
  
  .nav-dropdown-link-3:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-link-3[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-link-accent {
    color: #1a1b1f;
    letter-spacing: .25px;
    margin-left: 5px;
    margin-right: 20px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
  }
  
  .nav-link-accent:hover {
    color: #1a1b1fbf;
  }
  
  .button-primary-3 {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #1a1b1f;
    padding: 12px 25px;
    font-size: 12px;
    line-height: 20px;
    transition: all .2s;
  }
  
  .button-primary-3:hover {
    color: #fff;
    background-color: #32343a;
  }
  
  .button-primary-3:active {
    background-color: #43464d;
  }
  
  .wrap_resorces {
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .heading-25 {
    text-shadow: 0 1px 1px #0003;
  }
  
  .quick-stack-2 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .resorces {
    color: var(--neutral);
    padding-bottom: 20px;
    text-decoration: none;
  }
  
  .recorces-title {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
    display: flex;
  }
  
  .image-59 {
    width: 31px;
    height: 22px;
  }
  
  .heading-26 {
    margin-top: 4px;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
    font-size: 20px;
    line-height: 24px;
  }
  
  .text-block-17 {
    color: #080f1a80;
    height: 50px;
    padding-left: 42px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 700;
    line-height: 24px;
  }
  
  .features-wrap {
    color: var(--neutral);
    background-color: #64ed80;
    border-radius: 30px;
    width: 100%;
    min-height: 190px;
    padding: 20px 40px;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }
  
  .features-wrap._6ca6ff {
    background-color: #6ca6ff;
  }
  
  .features-wrap.pink {
    color: var(--neutral);
    background-color: #f81894;
    padding-left: 35px;
    padding-right: 35px;
  }
  
  .features-wrap._9c3afa {
    background-color: #9c3afa;
  }
  
  .features-wrap.yello {
    background-color: #eafd17;
  }
  
  .div-block-61 {
    width: 100%;
  }
  
  .heading-27 {
    font-family: Axiforma, sans-serif;
    font-size: 33px;
    line-height: 34px;
  }
  
  .heading-27.shadow {
    text-shadow: 1px 4px 5px #080f1a3b;
    font-family: Axiforma, sans-serif;
  }
  
  .image-60 {
    height: 110px;
    position: absolute;
    inset: auto 0% 0% auto;
  }
  
  .div-block-62 {
    display: none;
  }
  
  .navbar-no-shadow-container-2 {
    z-index: 5;
    background-color: #0000;
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
  
  .container-regular-2 {
    width: 100%;
    max-width: 1260px;
    min-height: 30px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .navbar-wrapper-3 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .nav-menu-2 {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
  }
  
  .nav-dropdown-4 {
    margin-left: 5px;
    margin-right: 5px;
  }
  
  .nav-dropdown-toggle-4 {
    letter-spacing: .25px;
    padding: 5px 30px 5px 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  .nav-dropdown-toggle-4:hover {
    color: #1a1b1fbf;
  }
  
  .nav-dropdown-toggle-4:focus-visible {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-toggle-4[data-wf-focus-visible] {
    outline-offset: 0px;
    color: #0050bd;
    border-radius: 5px;
    outline: 2px solid #0050bd;
  }
  
  .nav-dropdown-icon-4 {
    margin-right: 10px;
  }
  
  .nav-button-wrapper-2 {
    margin-left: 120px;
  }
  
  .mobile-margin-top-11-mob {
    display: none;
  }
  
  .h2-green {
    color: var(--primary);
    margin-bottom: 20px;
  }
  
  .h2-green.h2-green-1 {
    color: var(--elements-webflow-library-neutral--300);
    margin-top: 26px;
    margin-bottom: 46px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 28px;
    font-weight: 400;
  }
  
  .wrap-container {
    width: 100%;
    max-width: 750px;
    margin-top: 1px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .h1 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 62px;
    padding-top: 6px;
    font-family: Axiforma, sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
  }
  
  .wrap-capsuls {
    grid-column-gap: 30px;
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 40px;
    display: grid;
  }
  
  .wrap-capsuls.m-1100 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .wrap-capsuls.wrap-capsuls-security {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .wrap-capsuls.wrap-capsuls-mobile {
    grid-column-gap: 20px;
    margin-top: 0;
    padding-top: 0;
  }
  
  .capsule {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    justify-content: flex-start;
    align-items: center;
    height: 65px;
    padding: 0 20px;
    display: flex;
  }
  
  .capsule.border-purple {
    border: 1px solid var(--purle);
  }
  
  .heading-28 {
    color: var(--neutral);
    margin-top: 14px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 21px;
    font-weight: 700;
  }
  
  .image-62 {
    object-fit: contain;
    width: 35px;
    height: 35px;
  }
  
  .wrap-button {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .join-now {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--primary);
    color: var(--neutral);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    max-width: 350px;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: flex;
  }
  
  .join-now:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--hover-green);
  }
  
  .join-now.view-now {
    border: 1px solid var(--neutral);
    background-color: var(--elements-webflow-library-neutral--100);
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .join-now.view-now:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--300);
  }
  
  .join-now.shadow {
    min-width: 280px;
    box-shadow: 0 2px 5px #080f1a66;
  }
  
  .join-now.shadow.hvr-green:hover {
    background-color: var(--hover-green);
  }
  
  .join-now.see-story {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    border: 1px solid var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--100);
    background-color: #fff0;
    height: 50px;
    margin-top: 20px;
    font-size: 16px;
    transition: all .3s;
  }
  
  .join-now.see-story:hover {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
  
  .join-now.see-story.mt-0 {
    margin-top: 0;
  }
  
  .join-now.see-story.m-100, .join-now.see-story._w-100 {
    min-width: 100%;
  }
  
  .join-now.learn-more {
    background-color: var(--accent);
    color: var(--elements-webflow-library-neutral--100);
    height: 52px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 500;
    transition: all .3s;
  }
  
  .join-now.learn-more:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .join-now.learn-more.min-100 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    min-width: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .join-now.learn-more.min-100.see-prices {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--accent);
    height: 60px;
  }
  
  .join-now.learn-more.min-100.btn-green {
    background-color: var(--primary);
    color: var(--neutral);
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .join-now.learn-more.min-100.btn-green:hover {
    background-color: var(--hover-green);
  }
  
  .join-now.learn-more.btn-width-100 {
    min-width: auto;
    max-width: 100%;
  }
  
  .join-now.learn-more.see-prices {
    border: 2px none var(--elements-webflow-library-neutral--100);
    background-color: var(--elements-webflow-library-neutral--100);
    color: #3886ff;
    height: 60px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 700;
  }
  
  .join-now.purple-bg {
    background-color: var(--purle);
    height: 60px;
    transition: all .3s;
  }
  
  .join-now.purple-bg:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .join-now.purple-bg.show-mob {
    display: none;
  }
  
  .join-now.purple-bg.hide-mob {
    min-width: 300px;
  }
  
  .join-now.radius-0 {
    border-radius: 4px;
  }
  
  .join-now.compliance {
    background-color: var(--purle);
    border-radius: 30px;
    min-width: 370px;
    height: 50px;
    margin-bottom: 25px;
    box-shadow: 0 7px 7px #0003;
  }
  
  .join-now.jn-hover {
    background-color: var(--yellow);
    height: 60px;
    padding-top: 13px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 700;
  }
  
  .join-now.yellobtn {
    background-color: var(--yellow);
    height: 60px;
  }
  
  .join-now.purplebtn {
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
    height: 60px;
  }
  
  .heading-29 {
    color: #fff;
    margin-top: 6px;
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }
  
  .heading-30 {
    color: var(--neutral);
    text-align: center;
    margin-bottom: 25px;
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    line-height: 75px;
  }
  
  .section-3 {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .purle {
    color: var(--purle);
  }
  
  .benifits {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--accent);
    border-radius: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: grid;
  }
  
  .benifits.green {
    color: #50cc6a;
    background-color: #50cc6a;
  }
  
  .benifits.purple {
    background-color: var(--purle);
  }
  
  .benifits.pink {
    background-color: #f81894;
  }
  
  .benifits.benifits-oc {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    height: 263px;
    display: flex;
  }
  
  .heading-31 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 40px;
  }
  
  .heading-31.heading-31-oc {
    margin-top: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 600;
  }
  
  .image-63 {
    width: 60px;
    height: 60px;
  }
  
  .heading-32 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
  }
  
  .heading-32.heading-32-oc {
    margin-top: 0;
    font-weight: 500;
  }
  
  .heading-33 {
    color: var(--neutral);
    text-align: center;
    margin-top: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
  }
  
  .purple {
    color: var(--purle);
  }
  
  .brix---slider-nav {
    margin-top: 48px;
    position: static;
    transform: scale(.8);
  }
  
  .brix---hidden-desktop {
    display: none;
  }
  
  .brix---grid-6-columns-logo-strip {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center;
    display: grid;
  }
  
  .brix---slider-mask {
    height: 100%;
  }
  
  .brix---slider-wrapper {
    background-color: #0000;
    height: 100%;
  }
  
  .brix---text-300-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .brix---color-neutral-807 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---text-center-2 {
    text-align: center;
  }
  
  .brix---mg-bottom-48px-2 {
    margin-bottom: 48px;
  }
  
  .brix---container-default-5 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .brix---section-small {
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .marquie {
    background-color: var(--purle);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
  }
  
  .marquie.hide {
    display: none;
  }
  
  .marque-items {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .mrqueitem {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
    display: flex;
  }
  
  .code-20off {
    background-color: var(--elements-webflow-library-neutral--300);
    text-align: center;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .text-block-18 {
    color: var(--accent-pink);
    width: 115px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
  }
  
  .text-block-19 {
    color: var(--elements-webflow-library-neutral--100);
    width: 100px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 20px;
    font-weight: 600;
  }
  
  .marquee-wrapper-2 {
    color: #dfdfdf;
    background-color: #111;
    width: 100vw;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: none;
    overflow: hidden;
  }
  
  .marquee-container {
    grid-column-gap: 4.5vw;
    grid-row-gap: 4.5vw;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .marquee-content-contaier {
    grid-column-gap: 2.2vw;
    grid-row-gap: 2.2vw;
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
  }
  
  .marquee-text {
    white-space: nowrap;
    font-size: 3.5vw;
    line-height: 1.5em;
  }
  
  .marquee-icon {
    width: 2.5vw;
  }
  
  .quick-stack-3 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding: 0;
  }
  
  .quick-stack-3.mt-30px {
    margin-top: 30px;
  }
  
  .section-4 {
    background-color: var(--purle);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 10px 20px 40px;
  }
  
  .div-block-63 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .heading-34 {
    color: var(--elements-webflow-library-neutral--300);
    text-align: center;
    margin-bottom: 5px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    font-weight: 500;
  }
  
  .quick-stack-4 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .cell-2, .cell-3, .cell-4, .cell-5 {
    justify-content: center;
    align-items: center;
  }
  
  .div-block-64 {
    text-align: center;
  }
  
  .image-64 {
    max-width: 500px;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .trading-technology {
    background-image: linear-gradient(128deg, #ee91ce, #fff);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: -40px;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .trading-technology.trading-technology-2 {
    margin-top: 0;
  }
  
  .tabs {
    display: flex;
  }
  
  .tabs-menu {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    mix-blend-mode: normal;
    flex-flow: column;
    width: 20%;
    transition: opacity .2s;
    display: flex;
  }
  
  .tabs-content {
    width: 80%;
    padding-left: 25px;
  }
  
  .tab-link-tab-1 {
    width: 94.9844px;
  }
  
  .tab-link-tab-1.w--current {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .text-block-20 {
    color: var(--neutral);
    margin-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
  }
  
  .paragraph-29 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
  
  .tab-link {
    background-image: linear-gradient(270deg, #fff, #ed64ae);
    border: 3px solid #fff;
    border-radius: 20px;
    height: 180px;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 10px;
  }
  
  .tab-link.w--current {
    border: 3px solid var(--elements-webflow-library-neutral--100);
    background-image: linear-gradient(270deg, #fff, #ed64ae);
    border-radius: 20px;
    margin-top: 0;
    margin-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .image-65 {
    border-radius: 20px;
    width: 100%;
  }
  
  .wrap-trading {
    font-size: 20px;
  }
  
  .trade-header {
    padding: 100px 20px 60px;
  }
  
  .trade-header.trade-header-price {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .heading-35 {
    color: var(--neutral);
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
  }
  
  .heading-35.text-center {
    text-align: center;
  }
  
  .heading-35.heading-35-small {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 40px;
  }
  
  .heading-35.mt-0 {
    margin-top: 0;
  }
  
  .heading-35.viewchallenges {
    margin-top: 30px;
  }
  
  .heading-35.whitetext {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .text-block-21 {
    background-color: var(--accent-pink);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    height: 51px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
  }
  
  .text-block-21.purple-bg {
    background-color: var(--purle);
  }
  
  .text-block-21.sky-bg {
    background-color: var(--accent);
  }
  
  .text-block-21.green-bg {
    background-color: var(--primary);
    color: var(--neutral);
  }
  
  .text-block-21.green-bg:hover {
    background-color: var(--hover-green);
  }
  
  .text-block-21.green-bg.hvr-green:hover {
    background-color: #2acd4b;
  }
  
  .text-block-21.text-nature {
    color: var(--neutral);
    font-family: Brcandor Bf Medium, sans-serif;
    font-weight: 500;
  }
  
  .text-block-21.hvr-pink {
    color: #fff;
    text-align: center;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
    transition: all .3s;
  }
  
  .text-block-21.hvr-pink:hover {
    background-color: #ba0067;
  }
  
  .link-block-6 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: flex-start;
    align-items: center;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
  }
  
  .link-block-6:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .get-funded {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-header {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .section-header.section-header-2 {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  
  .section-header.section-header-mobile {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .section-header.section-header-top {
    justify-content: space-between;
    align-items: center;
  }
  
  .heading-36 {
    font-size: 72px;
  }
  
  .heading-37 {
    color: var(--neutral);
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
  }
  
  .heading-37.text-center {
    text-align: center;
  }
  
  .heading-37.heading-37-reviews {
    text-align: center;
    width: 100%;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
  }
  
  .link-block-7 {
    border: 1px solid var(--neutral);
    color: var(--neutral);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: flex;
  }
  
  .link-block-7:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .link-block-7.link-block-7-white {
    border-color: var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--100);
    height: 60px;
  }
  
  .link-block-7.link-block-7-white:hover {
    border-color: var(--purle);
  }
  
  .link-block-7.view-pricing {
    width: 270px;
  }
  
  .link-block-7.hvr-purple {
    height: 60px;
    font-family: Axiforma, sans-serif;
    font-weight: 700;
  }
  
  .link-block-7.hvr-purple:hover {
    border-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
    background-color: #6e00d8;
  }
  
  .quick-stack-5 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .counter-item {
    border-bottom: 1px solid #080f1a80;
    width: 100%;
    height: 190px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .counter-item.counter-item-bw {
    border-bottom-color: #dce7f878;
  }
  
  .counter-totle {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .heading-38 {
    font-size: 108px;
    line-height: 100px;
  }
  
  .heading-39 {
    color: var(--accent);
    text-transform: none;
    margin-top: 15px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 80px;
    line-height: 80px;
  }
  
  .heading-39.purple {
    color: var(--purle);
  }
  
  .heading-39.green {
    color: var(--primary);
  }
  
  .heading-39.pink {
    color: var(--accent-pink);
    margin-top: 10px;
  }
  
  .heading-39.yellow {
    color: var(--yellow);
  }
  
  .heading-39.red {
    color: var(--red);
  }
  
  .heading-39.orange {
    color: var(--orange);
  }
  
  .gray {
    color: #080f1a80;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .heading-40 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .payout {
    background-image: linear-gradient(278deg, #eeeeef80, #64ed8080);
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
  }
  
  .payout.payout-reviews {
    height: auto;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  
  .payout.payout-pricing {
    height: auto;
    margin-top: 10px;
    padding-top: 10px;
  }
  
  .div-block-65 {
    margin-top: 30px;
  }
  
  .reward-cap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 3px solid var(--accent);
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    margin-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }
  
  .heading-41 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    line-height: 24px;
  }
  
  .purple-cap {
    color: var(--purle);
    text-transform: uppercase;
  }
  
  .marquee-content-contaier-2 {
    grid-column-gap: 6vw;
    grid-row-gap: 6vw;
    flex-wrap: nowrap;
    align-items: center;
    display: flex;
  }
  
  .get-started {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
  }
  
  .get-started.perfect-fit {
    padding-bottom: 40px;
  }
  
  .image-66 {
    height: 15px;
  }
  
  .heading-42 {
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  
  .div-block-66 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
  }
  
  .heading-43 {
    font-family: Brcandor Bf Semi Bold, sans-serif;
  }
  
  .heading-44 {
    color: var(--neutral);
    margin-top: -18px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 600;
  }
  
  .quick-stack-6 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-right: 0;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .step-item {
    background-color: #3886ff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding: 20px 20px 40px;
  }
  
  .step-item.purple {
    background-color: var(--purle);
  }
  
  .step-item.pink-bg {
    background-color: var(--accent-pink);
  }
  
  .image-67 {
    width: 100%;
    display: none;
  }
  
  .text-block-22 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 25px;
  }
  
  .number {
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    line-height: 50px;
    display: flex;
  }
  
  .div-block-67 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    margin-top: 14px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }
  
  .heading-45 {
    color: var(--neutral);
    margin-bottom: 10px;
    font-family: Axiforma, sans-serif;
    font-size: 28px;
    font-weight: 700;
  }
  
  .heading-45.purple {
    color: var(--purle);
    margin-top: 9px;
    margin-bottom: 10px;
    padding-top: 0;
  }
  
  .heading-45.pink {
    color: var(--accent-pink);
    margin-bottom: 10px;
  }
  
  .heading-45.sky-text {
    color: var(--accent);
  }
  
  .heading-46 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 12px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 40px;
  }
  
  .heading-47 {
    color: var(--neutral);
    margin-top: 0;
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
  }
  
  .heading-47.text-center {
    text-align: center;
  }
  
  .heading-47.text-center.text-white {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-47.pink-text {
    color: var(--accent-pink);
    margin-bottom: 0;
  }
  
  .heading-47.yellow {
    color: #eafd17;
  }
  
  .heading-47.yellow.right {
    text-align: right;
    margin-top: 5px;
    margin-bottom: 0;
  }
  
  .heading-47.text-white {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-47.text-white.text-center {
    line-height: 72px;
  }
  
  .pink {
    color: var(--accent-pink);
  }
  
  .accent {
    color: var(--accent);
  }
  
  .tabs-2 {
    margin-top: 40px;
  }
  
  .tabs-menu-2 {
    background-color: var(--neutral);
    border-radius: 13px;
    justify-content: space-between;
    align-items: center;
    max-width: 349px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .tab-1 {
    background-color: var(--neutral);
    color: var(--purle);
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-weight: 600;
    display: flex;
  }
  
  .tab-1.w--current {
    z-index: 1;
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 13px;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    right: auto;
  }
  
  .text-block-23 {
    font-size: 24px;
  }
  
  .tab-link-tab-2 {
    background-color: var(--neutral);
    color: var(--accent-pink);
    border-radius: 0 13px 13px 0;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    display: flex;
  }
  
  .tab-link-tab-2.w--current {
    background-color: var(--accent-pink);
    color: var(--neutral);
    border-top-left-radius: 13px;
    border-bottom-left-radius: 13px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-weight: 600;
    left: auto;
  }
  
  .quick-stack-7 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .quick-stack-7.mt-10 {
    margin-top: 10px;
  }
  
  .price-card {
    background-color: var(--elements-webflow-library-neutral--100);
    border: 3px solid #000;
    border-radius: 15px;
    width: 100%;
    height: 100%;
  }
  
  .price-card.border-none {
    border-style: none;
  }
  
  .price-card.border-none.asset-bg {
    background-color: var(--accent);
  }
  
  .price-card.border-none.purple-bg {
    background-color: var(--purle);
  }
  
  .price-card.border-none.pink-bg {
    background-color: var(--accent-pink);
  }
  
  .price-card.border-none.red-bg {
    background-color: var(--red);
  }
  
  .price-card.border-none.green-bg {
    background-color: #50cc6a;
    position: relative;
  }
  
  .price-numbers {
    border-radius: 20px;
    padding: 70px 20px 30px;
  }
  
  .price-numbers.asset-bg {
    background-color: var(--accent);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  
  .price-numbers.purple-bg {
    background-color: var(--purle);
  }
  
  .price-numbers.pink-bg {
    background-color: var(--accent-pink);
  }
  
  .price-numbers.red-bg {
    background-color: var(--red);
  }
  
  .price-numbers.green-bg {
    background-color: #50cc6a;
  }
  
  .per-challenge {
    justify-content: space-between;
    align-items: center;
    max-width: 200px;
    margin-top: 25px;
    display: flex;
  }
  
  .per-challenge.per-challenge-pp {
    margin-bottom: 30px;
  }
  
  .heading-48 {
    color: var(--neutral);
    margin-top: 0;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 40px;
    font-weight: 700;
  }
  
  .heading-48.white-text {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-49 {
    color: var(--neutral);
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 30px;
    font-weight: 600;
  }
  
  .heading-49.white-text {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Brcandor Bf Medium, sans-serif;
    font-weight: 500;
  }
  
  .text-block-24 {
    background-color: var(--neutral);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    padding: 5px 20px;
    display: inline-block;
  }
  
  .text-block-25 {
    color: var(--neutral);
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 28px;
  }
  
  .text-block-25.white-text {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .text-block-26 {
    color: var(--neutral);
    font-size: 16px;
  }
  
  .text-block-26.white-text {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .link-block-8 {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    background-color: var(--primary);
    color: var(--neutral);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 42px;
    margin-top: 20px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    display: flex;
  }
  
  .link-block-8:hover {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-color: var(--hover-green);
  }
  
  .link-block-8.winner-btn {
    border: 1px solid var(--elements-webflow-library-neutral--100);
    background-color: var(--accent);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .link-block-8.apply-today {
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
  }
  
  .price-features {
    background-color: var(--base);
    margin-top: 0;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .price-features.price-features-2 {
    height: 235px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .heading-50 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 24px;
    font-weight: 400;
  }
  
  .price-text-list {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns: 2.25fr .75fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    display: grid;
  }
  
  .div-block-68 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-right: 1px solid #ffffff36;
    justify-content: flex-start;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
    display: flex;
  }
  
  .div-block-68.borderclrpur {
    border-right-color: var(--purle);
  }
  
  .div-block-68.borderclrsky {
    border-right-color: var(--accent);
  }
  
  .div-block-68.borderclrpink {
    border-right-color: var(--accent-pink);
  }
  
  .div-block-68.borderclrred {
    border-right-color: var(--red);
  }
  
  .div-block-68.border-none {
    border-right-style: none;
  }
  
  .div-block-68.borderclrgreen {
    border-right-color: var(--primary);
  }
  
  .text-block-27 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 12px;
  }
  
  .text-block-27.text-block-27-2 {
    font-size: 13px;
  }
  
  .image-68 {
    height: 20px;
  }
  
  .text-block-28 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Brcandor Bf Medium, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
  }
  
  .wrap-price-list {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .wrap-price-list.wrap-price-list-2 {
    margin-top: 0;
  }
  
  .image-69 {
    filter: invert();
  }
  
  .most-valuable {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--base);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    position: absolute;
    inset: 0% 0% auto;
  }
  
  .text-block-29 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .image-70 {
    height: 20px;
  }
  
  .div-block-69 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }
  
  .link-block-10 {
    color: var(--neutral);
    border: 1px solid #000;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }
  
  .link-block-10:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .link-block-10.apply-today {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--elements-webflow-library-neutral--100);
    color: #3667e9;
    border-style: none;
    height: 60px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 700;
    transition: all .3s;
    display: inline-flex;
  }
  
  .link-block-10.apply-today:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .link-block-10.roadmap {
    border-color: var(--primary);
    background-color: var(--primary);
    border-radius: 20px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
    display: inline-flex;
  }
  
  .link-block-10.roadmap:hover {
    color: var(--neutral);
  }
  
  .link-block-10.hvr-purple {
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
  }
  
  .link-block-10.hvr-purple:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .traders-love {
    background-image: linear-gradient(#03efff80, #ffffff80);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 70px 20px 100px;
  }
  
  .image-71 {
    height: 85px;
    margin-top: -10px;
  }
  
  .div-block-70 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
  }
  
  .heading-51 {
    color: var(--color);
    text-align: center;
    margin-top: 0;
    font-size: 28px;
    font-weight: 400;
  }
  
  .heading-51.text-left {
    text-align: left;
    max-width: 1000px;
    margin-top: 10px;
  }
  
  .heading-51.text-left.mt-20 {
    margin-top: 20px;
  }
  
  .heading-51.text-left.heart-text {
    max-width: 100%;
    margin-top: 20px;
  }
  
  .heading-51.trading-better-subheader {
    text-align: left;
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  .heading-51.textwhite {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .text-block-30 {
    color: #080f1a80;
    text-align: center;
  }
  
  .traders {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .quick-stack-8 {
    margin-left: 60px;
    margin-right: 60px;
  }
  
  .div-block-71 {
    background-color: var(--purle);
    border-radius: 20px;
    height: 240px;
    padding: 0 15px 25px;
    position: absolute;
    inset: auto 0% -7%;
  }
  
  .div-block-71.sky-gradiant {
    background-image: linear-gradient(#0070d8, #6ca6ff);
  }
  
  .div-block-71.pink-gradiant {
    background-image: linear-gradient(#d800c2, #eeccde);
  }
  
  .div-block-71.green-gradiant {
    background-image: linear-gradient(#00d849, #6cfc8c);
  }
  
  .div-block-71.gradiant-red {
    background-image: linear-gradient(297deg, #870f0f, #ed1a1a);
  }
  
  .heading-52 {
    color: var(--elements-webflow-library-neutral--100);
    font-size: 24px;
  }
  
  .heading-52.heading-52-2 {
    font-size: 18px;
  }
  
  .paragraph-30 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .image-72 {
    filter: invert();
  }
  
  .funded-challenge {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .quick-stack-9 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    background-image: linear-gradient(72deg, #fff0, #64ed80bf);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 40px;
    padding: 50px 60px 40px;
  }
  
  .div-block-72 {
    border: 2px solid var(--elements-webflow-library-neutral--100);
    background-image: linear-gradient(260deg, #fff 9%, #64ed80);
    border-radius: 20px;
    width: 100%;
    height: 220px;
    padding: 30px 30px 20px;
    box-shadow: 0 2px 20px #0000001a;
  }
  
  .heading-53 {
    color: var(--neutral);
    margin-top: 20px;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  
  .quick-stack-10 {
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .div-block-73 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    display: flex;
  }
  
  .future-profits {
    background-color: var(--purle);
    border-radius: 20px;
    margin-top: 100px;
    padding: 40px 20px;
  }
  
  .quick-stack-11 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  
  .heading-54 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-top: 10px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-weight: 600;
  }
  
  .heading-54.based-on-our-data {
    margin-bottom: -10px;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .quick-stack-12 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 0;
  }
  
  .image-73 {
    width: 100%;
    margin-left: -15px;
    padding: 10px;
  }
  
  .payouts-fast {
    padding: 60px 20px 90px;
  }
  
  .payouts-fast.payouts-fast-price {
    margin-top: 0;
  }
  
  .div-block-74 {
    border: 3px solid var(--purle);
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 280px;
    padding: 20px 40px;
    display: flex;
    box-shadow: 0 4px 10px #0003;
  }
  
  .div-block-74.pink-border {
    border-color: var(--accent-pink);
  }
  
  .div-block-74.sky-border {
    border-color: var(--accent);
  }
  
  .div-block-74.trade-feature {
    border-width: 3px;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 250px;
    box-shadow: 0 2px 25px #0000001a;
  }
  
  .div-block-74.trade-feature.pink-b {
    border-color: var(--accent-pink);
  }
  
  .div-block-74.trade-feature.yellow-b {
    border-color: orange;
  }
  
  .div-block-74.trade-feature.green-b {
    border-color: var(--primary);
  }
  
  .heading-55 {
    color: var(--neutral);
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .quick-stack-13 {
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .latest-rewards {
    background-image: linear-gradient(#001433 50%, #0869ff);
    border-radius: 20px;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .swiper-wrapper {
    width: 2500px;
    display: flex;
  }
  
  .swiper-wrapper.swiper-wrapper-mq {
    width: 100%;
    height: 700px;
    display: block;
    overflow: hidden;
  }
  
  .swiper-wrapper._w-100 {
    width: 100%;
  }
  
  .heading-56 {
    color: var(--base);
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: white;
    min-width: 1580px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 51px;
    font-weight: 600;
    line-height: 62px;
  }
  
  .tradingspam {
    background-color: var(--primary);
    color: var(--elements-webflow-library-neutral--100);
    -webkit-text-stroke-width: 0px;
    border-radius: 10px;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 50px;
    display: inline-flex;
  }
  
  .image-75 {
    width: 100%;
    height: 80px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .div-block-75 {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .div-block-76 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    display: flex;
  }
  
  .text-block-31 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 52px;
    font-weight: 600;
  }
  
  .dull {
    color: #8596b2;
  }
  
  .image-76, .image-77, .image-78 {
    height: 40px;
  }
  
  .div-block-77 {
    margin-top: 40px;
  }
  
  .heading-57 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 76px;
  }
  
  .sky-text {
    color: #03d2ff;
  }
  
  .heading-58 {
    color: var(--elements-webflow-library-neutral--300);
    margin-top: 0;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 26px;
    font-weight: 700;
  }
  
  .heading-58.text-center {
    text-align: center;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
  }
  
  .div-block-78 {
    text-align: center;
    margin-top: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .div-block-79 {
    background-color: var(--elements-webflow-library-neutral--100);
    text-align: left;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px 15px 10px 20px;
    position: relative;
  }
  
  .div-block-80 {
    text-align: left;
    width: 100%;
    margin-top: 10px;
    display: inline-block;
    position: absolute;
  }
  
  .paragraph-31 {
    margin-bottom: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  
  .heading-59 {
    color: var(--neutral);
    margin-top: 0;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .powerby {
    padding-top: 15px;
  }
  
  .div-block-81 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    max-width: 700px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .image-79 {
    margin-bottom: 40px;
  }
  
  .section-5 {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  
  .section-6 {
    background-color: var(--purle);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .div-block-82 {
    background-color: var(--purle);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding: 40px;
  }
  
  .text-block-32 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-top: -16px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 12px;
  }
  
  .quick-stack-14 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    max-width: 1100px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .heading-60 {
    color: var(--neutral);
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 28px;
    font-weight: 700;
  }
  
  .image-80 {
    height: 34px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .div-block-83 {
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    display: flex;
  }
  
  .image-81 {
    height: 60px;
    margin-top: 6px;
    margin-right: 10px;
    padding-top: 0;
  }
  
  .div-block-84 {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .section-7 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-8 {
    background-color: var(--purle);
    border-radius: 10px;
    margin-top: 80px;
    padding: 0 20px;
  }
  
  .section-8.get-started-today-fast {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
  
  .image-82 {
    margin-top: 40px;
    margin-bottom: 50px;
    line-height: 20px;
  }
  
  .div-block-85 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    display: grid;
  }
  
  .text-block-33 {
    font-size: 16px;
  }
  
  .text-block-34 {
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 500;
  }
  
  .link-block-11 {
    color: var(--elements-webflow-library-neutral--100);
    border: 1px solid #fff;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 52px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 20px;
    text-decoration: none;
    display: flex;
  }
  
  .link-block-11.border-black-btn {
    border-color: var(--neutral);
    color: var(--neutral);
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Axiforma, sans-serif;
    font-size: 19px;
    font-weight: 700;
  }
  
  .link-block-11.border-black-btn:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .swiper.mysswiper {
    display: none;
  }
  
  .quick-stack-15 {
    grid-column-gap: 102px;
    grid-row-gap: 102px;
    padding: 0;
  }
  
  .cell-6 {
    justify-content: center;
    align-items: flex-start;
  }
  
  .amazing-for-traders {
    background-image: linear-gradient(#001433, #0869ff);
    border-radius: 20px;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .amazing-for-traders.amazing-for-traders-pp {
    border-radius: 20px;
    margin-bottom: 100px;
  }
  
  .amazing-for-traders.aft-ourcha {
    margin-top: 20px;
    margin-bottom: 100px;
  }
  
  .amazing-for-traders.amazing-for-traders-reviews {
    margin-top: 20px;
  }
  
  .green {
    color: var(--primary);
  }
  
  .amaze-box {
    background-color: var(--accent);
    border-radius: 20px;
    width: 100%;
    height: 100%;
  }
  
  .div-block-86 {
    background-color: var(--accent);
    text-align: center;
    border-radius: 20px;
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  
  .div-block-86.green-bg {
    background-color: #50cc6a;
  }
  
  .div-block-86.purple-bg {
    background-color: var(--purle);
  }
  
  .div-block-86.pink-bg {
    background-color: var(--accent-pink);
  }
  
  .div-block-86.ff9c00-bg {
    background-color: #ff9c00;
  }
  
  .div-block-86.bg-red {
    background-color: var(--red);
  }
  
  .heading-61 {
    font-weight: 400;
  }
  
  .heading-62 {
    color: var(--elements-webflow-library-neutral--100);
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    font-family: Axiforma, sans-serif;
  }
  
  .text-block-35 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .text-block-36 {
    color: var(--elements-webflow-library-neutral--300);
    padding-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .heading-63 {
    color: #6aa1f5;
    text-align: center;
    font-family: Axiforma REAL, sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
  }
  
  .white-text {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-64 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    height: 80px;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    line-height: 27px;
  }
  
  .small {
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 26px;
  }
  
  .quick-stack-16 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-left: 40px;
    margin-right: 40px;
  }
  
  .text-block-37 {
    margin-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 700;
  }
  
  .paragraph-32 {
    margin-top: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
  }
  
  .image-83 {
    object-fit: fill;
    border-radius: 20px;
    width: 100%;
    height: 660px;
  }
  
  .tab-pane-tab-1 {
    height: 498.844px;
  }
  
  .tab-pane-tab-1.tab-panel-custom {
    height: 100%;
  }
  
  .section-9 {
    background-image: linear-gradient(90deg, #8df9a50d, #64ed8080);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-9.trade-faster-without-limits {
    width: 100%;
    max-width: 1470px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-block-38 {
    color: var(--neutral);
    margin-top: 10px;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .cell-7 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .image-84 {
    max-width: 50%;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .image-85 {
    height: 220px;
  }
  
  .image-85.g-pay {
    height: 220px;
    margin-top: -5px;
    position: relative;
    top: 5px;
  }
  
  .image-85.h-76 {
    height: 88px;
  }
  
  .section-10 {
    margin-top: 100px;
  }
  
  .section-10.stories-checkout {
    margin-bottom: 80px;
  }
  
  .div-block-87 {
    background-color: #3886ff;
    border-radius: 15px;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  
  .quick-stack-17 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-white {
    color: var(--elements-webflow-library-neutral--300);
  }
  
  .div-block-88 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }
  
  .text-green {
    color: var(--primary);
  }
  
  .text-green.text-large {
    font-size: 62px;
  }
  
  .join-our-community {
    background-color: #00307a;
    border-radius: 20px;
    margin-top: 100px;
    padding: 60px 20px 40px;
  }
  
  .join-our-community.joc-price {
    margin-top: 0;
    margin-bottom: 100px;
  }
  
  .join-our-community.join-our-community-reviews {
    margin-top: 30px;
  }
  
  .div-block-89 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
  }
  
  .text-block-39 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .image-86 {
    height: 40px;
    margin-top: 60px;
  }
  
  .quick-stack-18 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .image-87 {
    width: 60px;
    height: 53px;
  }
  
  .div-block-90 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
  }
  
  .containoer {
    grid-column-gap: 15px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
    position: relative;
    right: 20px;
  }
  
  .marquee-block {
    width: 280px;
    height: 620px;
  }
  
  .marquee-block.marquee-block-trade {
    height: 410px;
  }
  
  .marquee-block.marquee-block-safty {
    height: 600px;
  }
  
  .marquee-inner.to-right {
    width: 100%;
  }
  
  .wrap-marque-item {
    background-color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    border-radius: 30px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 272px;
    height: 170px;
    margin-bottom: 20px;
    padding: 20px;
    display: flex;
    box-shadow: 0 7px 19px #0000001a;
  }
  
  .wrap-marque-item._w-100 {
    width: 100%;
  }
  
  .wrap-marque-item.wrap-marque-item-security {
    width: 100%;
    height: 190px;
  }
  
  .heading-65 {
    font-family: Brcandor Bf Bold, sans-serif;
  }
  
  .heading-66 {
    margin-top: 0;
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    line-height: 65px;
  }
  
  .heading-66.text-purple {
    color: var(--purle);
  }
  
  .heading-66.text-pink {
    color: var(--accent-pink);
  }
  
  .heading-66.txt-sky {
    color: var(--accent);
    font-family: Axiforma, sans-serif;
  }
  
  .text-block-40 {
    font-size: 16px;
  }
  
  .text-block-41 {
    color: var(--neutral);
    font-size: 18px;
  }
  
  .quick-stack-19 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  
  .code-embed {
    display: none;
  }
  
  .section-12 {
    background-image: linear-gradient(102deg, #03efff80, #f5fdfe80);
    border-radius: 20px;
    margin-top: 100px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-12.section-12-op {
    margin-bottom: 80px;
  }
  
  .section-12.section-12-transparency {
    margin-bottom: 100px;
  }
  
  .section-12.security-transparency {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
  }
  
  .quick-stack-20 {
    grid-column-gap: 0px;
  }
  
  .div-block-91 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: 20px;
    display: grid;
  }
  
  .div-block-91.max-700 {
    max-width: 700px;
  }
  
  .image-88 {
    height: 60px;
  }
  
  .text-block-42 {
    margin-top: 15px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
  }
  
  .text-block-43 {
    color: var(--neutral);
    margin-top: 15px;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
  }
  
  .quick-stack-21 {
    grid-column-gap: 50px;
    grid-row-gap: 0px;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .cell-8 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .security-powered {
    background-color: var(--neutral);
    border-radius: 20px;
    margin-top: 80px;
    padding: 20px 20px 80px;
  }
  
  .security-powered.bg-pink {
    background-color: var(--accent-pink);
  }
  
  .div-block-92 {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .image-89 {
    object-fit: contain;
    height: 100px;
  }
  
  .image-89.cloudfare {
    position: relative;
    top: -14px;
  }
  
  .quick-stack-22 {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    margin-top: 40px;
  }
  
  .transparency-bullo {
    background-image: linear-gradient(#fff0, #64ed80cc);
    border-radius: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .transparency-bullo.transparency-bullo-op {
    margin-top: 0;
  }
  
  .transparency-bullo.transparency-bullo-reviews {
    margin-top: 0;
    margin-bottom: 100px;
  }
  
  .transparency-bullo.transprancy-transprancy {
    margin-top: 0;
    padding-top: 40px;
  }
  
  .div-block-93 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .image-90 {
    width: 160px;
    margin-bottom: 20px;
  }
  
  .heading-67 {
    margin-top: 10px;
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
  
  .heading-67.heading-67-3 {
    margin-top: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 500;
  }
  
  .div-block-94 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
  }
  
  .image-91 {
    margin-top: 20px;
  }
  
  .support-faqs {
    background-image: linear-gradient(0deg, #efefee0d, #fbe30d);
    border-radius: 20px;
    margin-top: 100px;
    padding-top: 40px;
  }
  
  .support-faqs.support-faqs-sitemap {
    margin-top: 0;
  }
  
  .div-block-95 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .div-block-96 {
    text-align: center;
    margin-bottom: 10px;
  }
  
  .div-block-97 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }
  
  .quick-stack-23 {
    margin-top: 60px;
  }
  
  .small-heading {
    font-size: 30px;
    line-height: 0;
    position: relative;
    top: -30px;
  }
  
  .small-heading.text-purple {
    color: var(--purle);
    font-size: 36px;
  }
  
  .div-block-98 {
    margin-top: 30px;
  }
  
  .cell-9, .cell-10, .cell-11, .cell-12 {
    justify-content: center;
    align-items: center;
  }
  
  .support-powered-by {
    background-color: var(--accent);
    border-radius: 20px;
    margin-top: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .support-powered-by.spb-pp {
    background-color: #3667e9;
    border-radius: 20px;
    margin-top: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .support-powered-by.support-powered-by-home {
    margin-bottom: 80px;
  }
  
  .quick-stack-24 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }
  
  .cell-13, .cell-14, .cell-15 {
    justify-content: center;
    align-items: center;
  }
  
  .site-footer {
    background-color: #001534;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    overflow: hidden;
  }
  
  .div-block-99 {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
  }
  
  .div-block-100 {
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    inset: 0%;
  }
  
  .heading-68 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma, sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 100px;
  }
  
  .text-span-5 {
    color: #d9e8ff;
  }
  
  .div-block-101 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    display: flex;
  }
  
  .gradiant-btn {
    border: 1px solid var(--elements-webflow-library-neutral--100);
    color: var(--elements-webflow-library-neutral--100);
    background-image: linear-gradient(47deg, #293f7dcc, #4a72e3cc);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    height: 60px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
  }
  
  .quick-stack-25 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin-top: 0;
  }
  
  .frame-236 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }
  
  .frame-227 {
    margin-top: 0;
    margin-bottom: 40px;
  }
  
  .wrap-footer-links {
    display: inline-block;
  }
  
  .heading-69 {
    color: #8596b2;
    font-family: Axiforma, sans-serif;
    font-size: 38px;
  }
  
  .link-block-12 {
    color: var(--elements-webflow-library-neutral--100);
    margin-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: block;
  }
  
  .image-93 {
    height: 38px;
    font-family: Brcandor Bf light, sans-serif;
    font-weight: 300;
    line-height: 20px;
  }
  
  .text-block-44 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-70 {
    color: #8596b2;
    text-align: left;
    margin-top: 15px;
    font-family: Brcandor Bf Bold, sans-serif;
  }
  
  .cell-16 {
    text-align: left;
    padding-top: 0;
  }
  
  .div-block-102 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    max-width: 430px;
    margin-top: 30px;
    margin-bottom: 20px;
    display: grid;
  }
  
  .image-94, .image-95 {
    width: 100%;
  }
  
  .heading-71 {
    color: #8596b2;
    font-family: Axiforma, sans-serif;
  }
  
  .div-block-103 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
  }
  
  .image-96 {
    object-fit: contain;
    width: 46px;
    height: 46px;
  }
  
  .image-97 {
    aspect-ratio: auto;
    object-fit: contain;
    width: 46px;
    height: 46px;
  }
  
  .image-98, .image-99, .image-100 {
    object-fit: contain;
    width: 46px;
    height: 46px;
  }
  
  .heading-72 {
    color: var(--elements-webflow-library-neutral--300);
    text-align: center;
    font-family: Axiforma, sans-serif;
  }
  
  .div-block-104 {
    text-align: left;
    justify-content: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  .image-101 {
    height: 36px;
  }
  
  .div-block-105 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: center;
    display: flex;
  }
  
  .image-103, .image-104 {
    height: 36px;
  }
  
  .text-block-45 {
    background-color: var(--primary);
    color: var(--neutral);
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    font-family: Brcandor Bf Medium, sans-serif;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
  }
  
  .image-105 {
    object-fit: contain;
    margin-top: 20px;
  }
  
  .image-105.image-105-3 {
    border-radius: 10px;
  }
  
  .div-block-106 {
    text-align: center;
    width: 100%;
    max-width: 430px;
  }
  
  .div-block-107 {
    text-align: center;
  }
  
  .heading-73 {
    color: #8596b2;
    margin-bottom: 40px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
  }
  
  .heading-73.font-32-m {
    font-family: Axiforma, sans-serif;
    position: static;
  }
  
  .div-block-108 {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
  }
  
  .paragraph-33 {
    color: #8596b2;
    text-align: left;
    margin-top: 20px;
  }
  
  .copy-right {
    text-align: center;
    border-top: 1px solid #8596b2eb;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  
  .paragraph-34 {
    color: #8596b2;
    text-align: center;
    font-size: 12px;
  }
  
  .image-106 {
    object-fit: contain;
    width: 266px;
    height: 100px;
    margin-top: 25px;
  }
  
  .div-block-109 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .image-107 {
    margin-top: -11px;
  }
  
  .image-108 {
    height: 109px;
  }
  
  .image-109 {
    height: 100px;
  }
  
  .image-112 {
    aspect-ratio: auto;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 500px;
  }
  
  .image-112.image-112-1 {
    object-fit: cover;
    object-position: 50% 100%;
  }
  
  .image-113 {
    border-radius: 15px;
    margin-top: 40px;
    padding-top: 0;
  }
  
  .see-all-benefits {
    background-color: var(--base);
    color: var(--elements-webflow-library-neutral--100);
    cursor: pointer;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    display: none;
  }
  
  .text-block-47 {
    text-align: center;
  }
  
  .mobile-wraper {
    display: none;
  }
  
  .site-map-banner {
    background-image: linear-gradient(0deg, #fff, #64ed80);
    border-radius: 20px;
    padding: 40px 20px;
  }
  
  .link-block-13 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--neutral);
    border-radius: 55px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 52px;
    padding-left: 32px;
    padding-right: 32px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 55px;
    text-decoration: none;
    display: inline-flex;
    box-shadow: 0 2px 5px #00000040;
  }
  
  .link-block-13.success-stories-btn {
    color: var(--elements-webflow-library-neutral--100);
    background-color: #3886ff;
    border-radius: 20px;
    font-weight: 700;
  }
  
  .image-118 {
    height: 25px;
  }
  
  .cell-19 {
    justify-content: center;
    align-items: flex-start;
  }
  
  .cell-20 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .image-119 {
    width: 144px;
    display: block;
  }
  
  .quick-stack-27 {
    margin-top: 20px;
    padding: 0;
  }
  
  .div-block-111 {
    width: 100%;
    height: 100%;
    display: flex;
  }
  
  .wrao-inline-links {
    flex-flow: column;
    display: flex;
  }
  
  .link-block-14 {
    color: var(--neutral);
    padding-top: 15px;
    font-family: Brcandor Bf Medium, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 30px;
    text-decoration: none;
  }
  
  .wrap-support-sections {
    margin-bottom: 80px;
  }
  
  .carrer-home {
    background-image: linear-gradient(280deg, #fff, #ff41a8bf);
    border-radius: 20px;
    padding: 60px 20px;
  }
  
  .div-block-112 {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .quick-stack-29 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .quick-stack-29.hide-mobile {
    margin-top: 20px;
  }
  
  .team-block {
    background-color: #3886ff;
    border-radius: 22px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 198px;
    padding: 13px 10px;
    display: flex;
  }
  
  .team-block.bg-pink {
    background-color: var(--accent-pink);
  }
  
  .team-block.bg-green {
    background-color: #50cc6a;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .team-block.bg-purple {
    background-color: var(--purle);
  }
  
  .button-10 {
    background-color: var(--primary);
    color: var(--neutral);
    text-align: center;
    border-radius: 20px;
    width: 100%;
    font-family: Axiforma REAL, sans-serif;
    font-size: 14px;
    font-weight: 600;
  }
  
  .text-block-49 {
    color: var(--elements-webflow-library-neutral--100);
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: Axiforma, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .text-block-50 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }
  
  .image-120 {
    height: 49px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .body-2 {
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }
  
  .pro-treaders {
    padding: 60px 20px 90px;
  }
  
  .div-block-114 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .image-121 {
    height: 100px;
    margin-bottom: 20px;
  }
  
  .heading-74 {
    color: var(--neutral);
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }
  
  .heading-74.text-left {
    text-align: left;
    font-family: Axiforma REAL, sans-serif;
    font-size: 28px;
    line-height: 36px;
  }
  
  .heading-74.hide-mobile {
    font-family: Axiforma REAL, sans-serif;
  }
  
  .legal-banner {
    background-image: linear-gradient(#001433, #0869ff);
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 40px 20px 80px;
  }
  
  .legal-items {
    border: 3px solid var(--accent);
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 30px;
    flex-flow: column;
    justify-content: space-between;
    width: 100%;
    height: 150px;
    padding: 10px 10px 20px;
    display: flex;
  }
  
  .button-11 {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--accent);
    text-align: center;
    border: 1px solid #3886ff;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
    transition: all .3s;
    display: flex;
    transform: translate(0);
  }
  
  .button-11:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .heading-75 {
    color: #3886ff;
    text-align: center;
    font-family: Axiforma, sans-serif;
    font-weight: 700;
  }
  
  .quick-stack-30 {
    grid-column-gap: 50px;
    grid-row-gap: 30px;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .trading-calculator {
    background-image: linear-gradient(90deg, #64ed8080, #8df9a50d);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 40px 20px 0;
  }
  
  .trading-calculator.economic-calendar {
    background-image: linear-gradient(90deg, #03efff80, #f5fdfe80);
  }
  
  .trading-calculator.trak-new {
    background-image: linear-gradient(90deg, #ff038b80, #f5fdfe80);
  }
  
  .div-block-115 {
    max-width: 800px;
  }
  
  .div-block-115.mb-30px {
    margin-bottom: 30px;
  }
  
  .cal-code {
    background-color: var(--purle);
    border-radius: 20px;
    margin-top: 30px;
    padding: 60px 20px;
  }
  
  .code-embed-2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-122 {
    border-radius: 12px;
  }
  
  .div-block-116 {
    display: none;
  }
  
  .brix---slider-nav-2 {
    margin-top: 0;
    position: static;
    transform: scale(.8);
  }
  
  .brix---hidden-desktop-2 {
    display: none;
  }
  
  .brix---grid-6-columns-logo-strip-2 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    place-items: center;
    display: grid;
  }
  
  .brix---grid-6-columns-logo-strip-2.brix---grid-4-columns-logo-strip-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  .brix---slider-mask-2 {
    height: 100%;
  }
  
  .brix---slider-wrapper-2 {
    background-color: #0000;
    height: 100%;
  }
  
  .brix---text-300-bold-2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .brix---color-neutral-808 {
    color: var(--elements-webflow-library-neutral--800\<deleted\|variable-44c33ad4\>);
  }
  
  .brix---text-center-3 {
    text-align: center;
  }
  
  .brix---mg-bottom-48px-3 {
    margin-bottom: 48px;
  }
  
  .brix---container-default-6 {
    max-width: 1218px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .brix---container-default-6.site-container {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .brix---section-small-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .udates-item {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
  
  .update-info {
    background-color: var(--purle);
    border-radius: 23px;
    flex-flow: column;
    height: 100%;
    min-height: 285px;
    margin-top: 0;
    padding: 15px;
    display: flex;
    position: relative;
    top: -30px;
  }
  
  .text-block-51 {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .text-block-52 {
    color: var(--elements-webflow-library-neutral--100);
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .heading-76 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .text-block-53 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
  }
  
  .image-123 {
    width: 100%;
    height: 120px;
    margin-top: 0;
  }
  
  .brix---slider-nav-3 {
    margin-top: 48px;
    position: static;
    transform: scale(.8);
  }
  
  .brix---section-small-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  
  .button-12 {
    border: 1px solid var(--neutral);
    color: var(--neutral);
    background-color: #3898ec00;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 52px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 18px;
    display: inline-flex;
  }
  
  .div-block-117 {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    display: flex;
  }
  
  .div-block-118 {
    max-width: 910px;
    margin-top: 40px;
  }
  
  .heading-77 {
    color: var(--neutral);
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 400;
  }
  
  .heading-77.m-text-center {
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
  }
  
  .div-block-119 {
    display: flex;
  }
  
  .div-block-120 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    display: flex;
  }
  
  .wrap-form {
    background-color: var(--purle);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    top: 40px;
  }
  
  .heading-78 {
    color: #fff;
    text-align: center;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
  }
  
  .link-2 {
    color: #7aacfb;
    text-decoration: none;
  }
  
  .form-block-5 {
    width: 320px;
  }
  
  .form-3 {
    max-width: 500px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .field-label {
    color: var(--elements-webflow-library-neutral--300);
    font-family: Axiforma REAL, sans-serif;
    font-weight: 500;
    line-height: 24px;
  }
  
  .text-field-5 {
    color: var(--elements-webflow-library-neutral--100);
    background-color: #0000;
    border-radius: 20px;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  
  .text-field-5::placeholder {
    color: #8596b2;
  }
  
  .text-field-5.textarea {
    height: 100px;
  }
  
  .form-item {
    margin-bottom: 20px;
  }
  
  .submit-button-4 {
    color: var(--neutral);
    background-color: #3898ec00;
    font-size: 20px;
  }
  
  .div-block-121 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
  }
  
  .text-block-54 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
  }
  
  .div-block-122 {
    background-image: linear-gradient(#001433, #0869ff);
    max-width: 100%;
    padding: 100px 20px;
  }
  
  .div-block-123 {
    max-width: 840px;
  }
  
  .trade-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: .35fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .trade-list.trade-list-full {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .body-3 {
    font-family: Axiforma REAL, sans-serif;
  }
  
  .heading-79 {
    color: #000;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  
  .heading-79.name-title {
    line-height: 32px;
  }
  
  .heading-79.name-title.heading-79-2 {
    font-weight: 500;
  }
  
  .transparence-info {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-14 {
    background-image: linear-gradient(#fff0, #64ed80);
    padding-bottom: 60px;
  }
  
  .success-stories {
    background-image: linear-gradient(#03efff80, #f0fdfe82 100%, #f5fdfe80);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .div-block-124 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .image-124 {
    margin-bottom: 20px;
    margin-right: auto;
  }
  
  .image-125 {
    height: 60px;
  }
  
  .div-block-125 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .text-block-55 {
    color: var(--gray);
    text-align: center;
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  
  .review-list {
    margin-bottom: 20px;
  }
  
  .review-grid {
    background-image: linear-gradient(315deg, #6e00d8, #cea9f1 80%);
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 25px;
  }
  
  .review-info {
    width: 100%;
    height: 100%;
  }
  
  .review-info.review-info-bg {
    background-image: linear-gradient(279deg, #6e00d8, #fff);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    top: -30px;
  }
  
  .heading-80 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 28px;
    font-weight: 600;
  }
  
  .heading-81 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-size: 16px;
    font-weight: 400;
  }
  
  .image-126 {
    height: 20px;
  }
  
  .div-block-126 {
    text-align: right;
    margin-top: 10px;
  }
  
  .quick-stack-31 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .image-127 {
    object-fit: cover;
    border-radius: 20px;
    height: 100%;
  }
  
  .image-127.image-127-1 {
    width: 100%;
    height: 440px;
  }
  
  .section-15 {
    background-color: var(--primary);
    border-radius: 20px;
    margin-bottom: 100px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .btn-contat-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    justify-content: flex-start;
    align-items: stretch;
    height: 50px;
    margin-top: 60px;
    font-size: 16px;
    display: flex;
  }
  
  .link-block-15 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: inline-flex;
  }
  
  .link-block-15:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .quick-stack-32 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    margin-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .link-block-16 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 1px solid var(--neutral);
    color: var(--neutral);
    text-align: center;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
  }
  
  .link-block-16.btn-w-100.hvr-purple:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .image-129 {
    height: 18px;
  }
  
  .form-block-6 {
    width: 100%;
  }
  
  .field-label-2 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
  
  .field-label-2.textarea {
    height: 20px;
  }
  
  .text-field-6 {
    border: 1px solid var(--neutral);
    color: var(--neutral);
    border-radius: 20px;
    height: 47px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
  }
  
  .text-field-6::placeholder {
    color: var(--neutral);
  }
  
  .text-field-6.textarea {
    height: 100px;
    padding-top: 20px;
  }
  
  .div-block-127 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--purle);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 52px;
    transition: all .3s;
    display: inline-flex;
    position: relative;
  }
  
  .div-block-127:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .div-block-128 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .submit-button-5 {
    opacity: 0;
    background-color: #3898ec00;
    width: 100%;
    height: 100%;
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
  }
  
  .text-block-56 {
    color: var(--elements-webflow-library-neutral--100);
    font-size: 18px;
  }
  
  .pricing-banner {
    background-image: linear-gradient(0deg, #ffffffbf, #ff41a8bf);
    border-radius: 20px;
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .pricing-banner.partner-banner {
    background-image: linear-gradient(#001433, #0869ff);
  }
  
  .pricing-banner.our-challanges {
    background-image: linear-gradient(0deg, #fff, #64ed80);
  }
  
  .pricing-banner.review-banner {
    background-image: linear-gradient(#6e00d8, #fff);
  }
  
  .pricing-banner.transparences {
    background-image: linear-gradient(#64ed80, #fff 55%);
  }
  
  .pricing-banner.our-platforms {
    background-image: linear-gradient(0deg, #fff 35%, #f81894);
  }
  
  .pricing-banner.roadmap-banner {
    z-index: 1;
    background-image: linear-gradient(#6e00d8, #fff);
    height: 100%;
    position: relative;
  }
  
  .pricing-banner.view-challenges {
    background-image: linear-gradient(0deg, #fff, #64ed80);
  }
  
  .pricing-banner.news-trading-rule {
    background-image: linear-gradient(#6e00d8, #fff);
    padding-top: 30px;
  }
  
  .image-131 {
    width: 420px;
  }
  
  .link-block-17 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--neutral);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 60px;
    padding-left: 40px;
    padding-right: 40px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    box-shadow: 0 2px 5px #00000040;
  }
  
  .link-block-17.link-block-17-w-100 {
    border-radius: 30px;
    width: 100%;
  }
  
  .link-block-17.link-block-17-roadmap {
    z-index: 1;
    position: absolute;
    top: 70px;
    left: 40px;
  }
  
  .link-block-17.link-block-17-roadm {
    width: 500px;
  }
  
  .link-block-17.view-challenges {
    border-radius: 30px;
    margin-top: 20px;
  }
  
  .link-block-17.link-block-17-security {
    border-radius: 30px;
    font-family: Axiforma, sans-serif;
    box-shadow: 0 11px 11px #00000040;
  }
  
  .heading-82 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 10px;
    font-family: Axiforma, sans-serif;
    font-size: 80px;
    line-height: 100px;
  }
  
  .heading-82.heading-82-reviews {
    margin-top: 0;
  }
  
  .image-132 {
    height: 90px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .text-block-57 {
    color: var(--gray);
    font-family: Axiforma REAL, sans-serif;
    font-size: 12px;
    font-weight: 700;
  }
  
  .text-block-57.text-block-57-white {
    color: var(--elements-webflow-library-neutral--100);
  }
  
  .natural {
    color: var(--neutral);
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
  }
  
  .div-block-129 {
    margin-top: 0;
  }
  
  .div-block-129.hide-all {
    display: none;
  }
  
  .image-133 {
    height: 35px;
  }
  
  .cell-23.hide-mob {
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .image-134 {
    object-fit: contain;
    height: 30px;
  }
  
  .div-block-130 {
    margin-bottom: 20px;
  }
  
  .div-block-131 {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-sky {
    color: var(--accent);
  }
  
  .div-block-132 {
    text-align: center;
  }
  
  .div-block-133 {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: block;
  }
  
  .image-135 {
    width: 100%;
  }
  
  .cell-24 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .add-on {
    text-align: right;
    background-image: url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/6643485ec4b60d96f93896cd_Vector%20(15).svg");
    background-position: 44% 45%;
    background-repeat: repeat-y;
    background-size: contain;
    background-attachment: scroll;
    justify-content: flex-end;
    align-items: center;
    max-width: 90px;
    margin-top: 7px;
    font-size: 11px;
    line-height: 10px;
    display: flex;
  }
  
  .quick-stack-33 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-bottom: 80px;
  }
  
  .text-block-59 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 7px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 13px;
  }
  
  .inner-page-sec {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .title-wraper {
    background-color: #3886ff;
    border-radius: 20px;
  }
  
  .heading-83 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 50px;
    font-weight: 700;
  }
  
  .paragraph-35 {
    margin-top: 20px;
  }
  
  .paragraph-36 {
    text-indent: .16px;
    margin-bottom: 40px;
    font-size: 12px;
    line-height: 16px;
  }
  
  .paragraph-36.p-links-center {
    text-align: center;
    margin-top: 20px;
    line-height: 5px;
  }
  
  .paragraph-36.content-link {
    text-align: center;
    line-height: 30px;
  }
  
  .heading-84 {
    color: var(--neutral);
    text-align: center;
    margin-bottom: 30px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    line-height: 32px;
  }
  
  .heading-84.text-left {
    text-align: left;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .div-block-134 {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  .image-136 {
    height: 20px;
  }
  
  .visualise-your-decisions {
    background-color: #00307a;
    border-radius: 20px;
    margin-top: 100px;
    padding: 40px;
  }
  
  .image-137 {
    object-fit: contain;
    width: 100%;
    height: 418px;
  }
  
  .quick-stack-34, .quick-stack-35 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .trading-grid {
    border: 3px solid var(--purle);
    background-color: #3d444e40;
    border-radius: 41px;
    width: 100%;
    height: 100%;
    padding: 20px 20px 10px;
    box-shadow: inset 0 2px 40px #fdfafa40;
  }
  
  .trading-grid.bclrsky {
    border-color: var(--accent);
  }
  
  .trading-grid.trading-grid-1-3 {
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    display: flex;
  }
  
  .trading-grid.trading-grid-1-3.bclrgreen {
    border-color: var(--primary);
  }
  
  .trading-grid.trading-grid-1-3.bclrpink {
    border-color: var(--accent-pink);
  }
  
  .trading-grid.trading-grid-1-3.bclryellow {
    border-color: var(--yellow);
  }
  
  .image-138 {
    border-radius: 41px;
    width: 100%;
  }
  
  .heading-85 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 25px;
    margin-bottom: 30px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-weight: 600;
  }
  
  .paragraph-37 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 30px;
    font-family: Brcandor Bf light, sans-serif;
    font-size: 24px;
    line-height: 35px;
  }
  
  .quick-stack-36 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .image-139 {
    height: 180px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .heading-86 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 40px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 30px;
  }
  
  .paragraph-38 {
    color: var(--elements-webflow-library-neutral--100);
    font-size: 16px;
    line-height: 24px;
  }
  
  .image-140 {
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  .image-141 {
    width: 100%;
    height: 500px;
  }
  
  .image-142 {
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
  }
  
  .div-block-135 {
    text-align: center;
  }
  
  .every-trader {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    border: 3px solid var(--elements-webflow-library-neutral--100);
    background-image: linear-gradient(#08effe40, #ffffff40);
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    box-shadow: 0 2px 5px #0000001a;
  }
  
  .every-trader.trade-pink {
    background-image: linear-gradient(240deg, #fe06d640, #ffffff40);
  }
  
  .every-trader.trade-purple {
    background-image: linear-gradient(343deg, #af08fe40, #ffffff40);
  }
  
  .every-trader.trade-yellow {
    background-image: linear-gradient(9deg, #f9fe0880, #ffffff80);
  }
  
  .heading-87 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 20px;
    font-family: Axiforma, sans-serif;
  }
  
  .paragraph-39 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .image-143 {
    height: 40px;
  }
  
  .accent-text {
    color: var(--accent);
  }
  
  .security-info {
    width: 100%;
    max-width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .div-block-136 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 40px;
    display: flex;
  }
  
  .heading-88 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
  }
  
  .image-144 {
    height: 80px;
  }
  
  .heading-89 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
    line-height: 40px;
  }
  
  .div-block-137 {
    width: 100%;
    max-width: 1440px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .div-block-137.div-block-137-center {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .section-16 {
    padding: 60px 20px;
  }
  
  .image-145 {
    width: 100%;
  }
  
  .cell-26 {
    justify-content: center;
    align-items: flex-start;
  }
  
  .paragraph-40 {
    color: var(--neutral);
    max-width: 480px;
    font-size: 20px;
    line-height: 26px;
  }
  
  .section-17 {
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .cell-27 {
    justify-content: center;
    align-items: flex-start;
  }
  
  .div-block-138 {
    text-align: center;
  }
  
  .div-block-139 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .quick-stack-37 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-146 {
    max-width: 370px;
    margin-bottom: 20px;
  }
  
  .enterprise-grade {
    margin-top: 60px;
  }
  
  .div-block-140 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    border: 2px solid var(--elements-webflow-library-neutral--100);
    background-color: var(--purle);
    color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
    display: flex;
    box-shadow: 0 2px 5px #0000001a;
  }
  
  .div-block-140.pink-bg {
    background-color: var(--accent-pink);
  }
  
  .div-block-140.accent-bg {
    background-color: var(--accent);
  }
  
  .heading-90 {
    margin-top: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
  }
  
  .image-147 {
    height: 40px;
  }
  
  .quick-stack-38 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .paragraph-41 {
    font-size: 14px;
  }
  
  .paragraph-42 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .div-block-141 {
    text-align: center;
  }
  
  .image-148 {
    max-width: 480px;
    margin-top: 20px;
  }
  
  .section-18 {
    background-color: var(--accent-pink);
    border-radius: 20px;
    margin-top: 80px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .security-at {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .heading-91 {
    color: var(--neutral);
    margin-bottom: 20px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 28px;
    font-weight: 600;
  }
  
  .paragraph-43 {
    margin-bottom: 10px;
  }
  
  .div-block-142 {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  
  .heading-92 {
    color: #080f1a80;
    text-align: center;
    margin-bottom: 20px;
    font-family: Brcandor Bf Bold, sans-serif;
  }
  
  .div-block-143 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .quick-stack-40 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 0;
  }
  
  .cell-29 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .image-149, .image-150 {
    height: 20px;
  }
  
  .div-block-144 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .div-block-145 {
    text-align: center;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .image-151 {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-19 {
    background-image: linear-gradient(#001433, #0869ff);
    border-radius: 20px;
    padding: 40px 20px;
  }
  
  .heading-93 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 48px;
  }
  
  .div-block-146 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
  }
  
  .image-152 {
    margin-bottom: 40px;
  }
  
  .section-20 {
    background-color: var(--purle);
    border-radius: 20px;
    margin-top: 100px;
    padding: 40px 20px;
  }
  
  .section-20.bg-accent {
    background-color: #3667e9;
  }
  
  .section-20.bg-red {
    background-color: #ed1a1a;
  }
  
  .image-153 {
    object-fit: contain;
    max-width: 20%;
    height: auto;
  }
  
  .div-block-147 {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    display: flex;
  }
  
  .div-block-148 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: center;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .section-21 {
    background-color: var(--purle);
    border-radius: 20px;
    margin-top: 100px;
    padding: 0;
    position: relative;
  }
  
  .image-154 {
    width: 100%;
    height: 100%;
  }
  
  .div-block-149 {
    text-align: center;
    position: absolute;
    inset: auto 0% 30px;
  }
  
  .show-mobile {
    display: none;
  }
  
  .text-span-6 {
    background-image: url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/6645d8ec061634d200ccd9ff_Vector%20(18).svg");
    background-position: 50%;
    background-repeat: repeat-y;
    background-size: contain;
  }
  
  .cell-31 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .mobile-version {
    display: none;
  }
  
  .div-block-158 {
    margin-top: 100px;
  }
  
  .reviewblock {
    background-image: linear-gradient(#e4edfe, #fbfcfe);
    border-radius: 40px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
    display: flex;
  }
  
  .image-158 {
    width: 30px;
    height: 30px;
  }
  
  .heading-95 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 24px;
  }
  
  .heading-95.heading-95-2 {
    height: 45px;
    font-family: Axiforma, sans-serif;
  }
  
  .heading-96 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    height: 70px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .batter-trading, .explore-support-centre.hide-mobile {
    display: none;
  }
  
  .heading-100 {
    color: var(--neutral);
    text-align: left;
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
  }
  
  .div-block-173 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .image-171 {
    width: 100%;
    padding: 13px;
    position: relative;
    right: -15px;
  }
  
  .image-172 {
    object-fit: cover;
  }
  
  .div-block-174 {
    max-width: 530px;
    margin-top: -25px;
  }
  
  .image-173 {
    height: 72px;
  }
  
  .quick-stack-45 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 20px;
  }
  
  .div-block-175 {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .link-block-21 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--neutral);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    height: 43px;
    margin-bottom: 15px;
    padding: 0 50px;
    font-family: Axiforma, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    display: inline-flex;
    box-shadow: 0 4px 13px #00000040;
  }
  
  .text-block-67 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 5px;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
  }
  
  .image-174 {
    object-fit: contain;
    width: 90px;
    height: 50px;
    margin-right: 5px;
  }
  
  .div-block-176 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .image-175 {
    width: 15px;
  }
  
  .text-block-68 {
    margin-top: 4px;
  }
  
  .image-176 {
    height: 40px;
  }
  
  .quick-stack-46 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }
  
  .cell-33 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .paragraph-49 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
  }
  
  .paragraph-50 {
    color: var(--neutral);
  }
  
  .div-block-177 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 430px;
    display: grid;
  }
  
  .image-177 {
    background-color: var(--elements-webflow-library-neutral--100);
    width: 100%;
    margin-top: 20px;
  }
  
  .div-block-178 {
    z-index: 1;
    position: relative;
  }
  
  .div-block-179 {
    z-index: -1;
    background-color: var(--elements-webflow-library-neutral--100);
    width: 83%;
    height: 70%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    inset: 20% 0% 0%;
  }
  
  .div-block-180 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 300px;
    display: grid;
  }
  
  .div-block-180.div-block-180-mob {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .image-179 {
    width: 50px;
    height: 50px;
  }
  
  .image-180 {
    object-fit: contain;
    width: 25px;
    height: 25px;
  }
  
  .text-block-70 {
    margin-top: 2px;
  }
  
  .cell-34 {
    justify-content: flex-start;
    align-items: center;
  }
  
  .div-block-183 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 430px;
    display: grid;
  }
  
  .image-183 {
    width: 25px;
  }
  
  .padding---s.final-cta-fix {
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  
  .div-block-188 {
    z-index: 10;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #6c2bd9cf;
    background-image: linear-gradient(68deg, #00000073, #3886ff73);
    border-radius: 19px;
    width: 100%;
    height: 100vh;
    padding: 250px 20px;
    display: flex;
    position: relative;
    box-shadow: 0 2px 5px #0000001a;
  }
  
  .final-cta-social-wrapper {
    opacity: .5;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    position: absolute;
    inset: 0%;
  }
  
  .final-cta-overlay {
    z-index: 5;
    color: #0006;
    background-color: #00143373;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
  }
  
  .final-cta-social-content {
    grid-column-gap: 3vw;
    grid-row-gap: 3vw;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: center;
    width: 100vw;
    height: auto;
    display: grid;
    position: relative;
    transform: rotate(-10deg)scale(1.25);
  }
  
  .final-cta-image {
    object-fit: cover;
    width: 100%;
    height: 100vh;
  }
  
  .background-video {
    height: 0;
  }
  
  .image-191 {
    width: 100%;
    height: 100%;
  }
  
  .link-block-24 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #080f1a;
    background-color: #fff;
    border-radius: 55px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 55px;
    padding-left: 32px;
    padding-right: 32px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 55px;
    text-decoration: none;
    display: flex;
    box-shadow: 0 2px 5px #00000040;
  }
  
  .image-192 {
    height: 36px;
  }
  
  .div-block-189 {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .sitemapmenu {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 60px;
    text-decoration: none;
  }
  
  .div-block-190 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .mapitems {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-top: 20px;
    display: grid;
  }
  
  .logo-white {
    display: none;
  }
  
  .text-block-75 {
    color: var(--elements-webflow-library-neutral--100);
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
  }
  
  .image-194 {
    height: 100px;
  }
  
  .quick-stack-47 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .tab-pane-tab-4 {
    width: 100%;
    height: 100%;
  }
  
  .div-block-192 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .div-block-192.show-mobile {
    display: none;
  }
  
  .div-block-193 {
    margin-bottom: 100px;
  }
  
  .div-block-194 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .review-list-mob {
    display: none;
  }
  
  .div-block-196 {
    width: 100%;
  }
  
  .div-block-197 {
    padding-top: 60px;
  }
  
  .div-block-201 {
    margin-top: 40px;
  }
  
  .quick-stack-48 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .image-196 {
    width: 80px;
    height: 80px;
  }
  
  .div-block-202 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
  }
  
  .image-197 {
    height: 15px;
  }
  
  .heading-102 {
    color: #080f1a;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .number-2 {
    background-color: #fff;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    line-height: 30px;
    display: flex;
  }
  
  .heading-103 {
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  
  .quick-stack-49 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-top: 30px;
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .link-block-25 {
    color: #080f1a;
    border: 1px solid #000;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    height: 50px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
  }
  
  .link-block-25:hover {
    border-color: var(--purle);
    background-color: var(--purle);
    color: #fff;
  }
  
  .heading-104 {
    color: #3667e9;
    margin-bottom: 5px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }
  
  .heading-104.pink {
    color: #f81894;
  }
  
  .heading-104.purple {
    color: #6e00d8;
  }
  
  .cell-35 {
    justify-content: center;
    align-items: flex-end;
  }
  
  .text-block-80 {
    color: #fff;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  
  .image-198 {
    width: 100%;
    display: none;
  }
  
  .step-item-2 {
    background-color: #3886ff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  
  .step-item-2.pink-bg {
    background-color: #f81894;
  }
  
  .step-item-2.purple {
    background-color: #6e00d8;
  }
  
  .heading-105 {
    color: #fff;
    margin-top: 12px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
  }
  
  .image-199 {
    height: 110px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .text-block-81 {
    color: #080f1a80;
    font-family: Axiforma REAL, sans-serif;
    font-size: 12px;
    font-weight: 700;
  }
  
  .quick-stack-50 {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .purle-2 {
    color: #6e00d8;
  }
  
  .natural-2 {
    color: #080f1a;
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
  }
  
  .heading-106 {
    color: #3667e9;
    text-transform: none;
    margin-top: 15px;
    font-family: Axiforma, sans-serif;
    font-size: 80px;
    line-height: 80px;
  }
  
  .heading-106.pink {
    color: #f81894;
    margin-top: 10px;
  }
  
  .heading-106.purple {
    color: #6e00d8;
  }
  
  .heading-106.red {
    color: #ed1a1a;
  }
  
  .heading-107 {
    color: #080f1a;
    font-family: Axiforma, sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
  }
  
  .div-block-203 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    margin-top: 14px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }
  
  .counter-totle-2 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .purple-2 {
    color: #6e00d8;
  }
  
  .heading-108 {
    color: #080f1a;
    margin-top: 0;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 76px;
  }
  
  .join-now-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    color: #080f1a;
    background-color: #64ed80;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    max-width: 350px;
    height: 55px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    display: flex;
  }
  
  .join-now-2:hover {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  
  .join-now-2.shadow {
    min-width: 320px;
    box-shadow: 0 2px 5px #080f1a66;
  }
  
  .quick-stack-51 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .section-22 {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .image-201 {
    width: 32px;
    height: 32px;
  }
  
  .image-201.icon-updtime {
    padding: 2px;
  }
  
  .image-202 {
    height: 540px;
  }
  
  .div-block-206 {
    width: 100%;
    margin-top: 40px;
  }
  
  .quick-stack-52 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .div-block-207 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
  
  .div-block-209 {
    margin-bottom: 100px;
  }
  
  .image-204 {
    height: 32px;
  }
  
  .image-205 {
    width: 32px;
    height: 32px;
  }
  
  .div-block-210 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .image-206 {
    max-width: 50%;
  }
  
  .div-block-211 {
    margin-bottom: 100px;
  }
  
  .div-block-212 {
    margin-top: -20px;
  }
  
  .quick-stack-53 {
    padding-left: 0;
    padding-right: 0;
  }
  
  .image-207 {
    width: 32px;
    height: 32px;
  }
  
  .image-207.image-207-2 {
    width: 28px;
    height: 28px;
  }
  
  .div-block-219 {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
  
  .image-208 {
    object-fit: contain;
    object-position: 50% 0%;
    width: 850px;
    max-width: 100%;
    height: 100%;
    margin-left: -200px;
    position: static;
    inset: 0%;
  }
  
  .wrap-road-image {
    z-index: -1;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
    overflow: hidden;
  }
  
  .text-block-82 {
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 40px;
    line-height: 48px;
  }
  
  .text-block-83 {
    color: var(--primary);
    margin-top: 30px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
  }
  
  .text-block-83.sky-text {
    color: var(--accent);
  }
  
  .text-block-83.pink {
    color: var(--accent-pink);
  }
  
  .border-line {
    border: 1px dashed #080f1a40;
    width: 90%;
    height: .5px;
    margin-left: auto;
    position: absolute;
    inset: auto 0% 24px;
  }
  
  .wrap-year-title {
    position: relative;
  }
  
  .wrap-year-q2 {
    width: 400px;
    max-width: 400px;
  }
  
  .q2-blocks.q2-blocks-first {
    margin-top: 60px;
  }
  
  .q2-blocks.q2-blocks-third {
    margin-top: 100px;
  }
  
  .q2-title {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  
  .q2-title.pink {
    color: var(--accent-pink);
  }
  
  .heading-109 {
    color: var(--primary);
    margin-bottom: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 32px;
    line-height: 32px;
  }
  
  .heading-109.sky-text {
    color: var(--accent);
  }
  
  .heading-109.pink-text {
    color: var(--accent-pink);
  }
  
  .paragraph-51 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 10px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
  }
  
  .paragraph-51.natural {
    color: var(--neutral);
  }
  
  .wrap-q2-lists {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: space-between;
    align-items: stretch;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }
  
  .image-209 {
    height: 35px;
  }
  
  .image-210 {
    height: 26px;
  }
  
  .image-211 {
    height: 35px;
  }
  
  .text-span-7 {
    font-family: Brcandor Bf Bold, sans-serif;
    font-weight: 700;
    display: block;
  }
  
  .paragraph-52 {
    color: var(--neutral);
    text-align: center;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }
  
  .content-link {
    color: #3886ff;
    font-size: 20px;
    line-height: 20px;
    text-decoration: none;
    display: block;
  }
  
  .bold-text-2 {
    font-family: Axiforma REAL, sans-serif;
  }
  
  .image-212 {
    margin-bottom: 30px;
  }
  
  .bold-text-3 {
    font-family: Axiforma REAL, sans-serif;
  }
  
  .link-3 {
    color: var(--neutral);
    text-decoration: underline;
  }
  
  .heading-110 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma REAL, sans-serif;
    font-size: 21px;
    line-height: 25px;
  }
  
  .field-label-3 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Brcandor Bf Regular, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }
  
  .user-email-field {
    border-radius: 30px;
    height: 50px;
  }
  
  .body-5 {
    font-family: Brcandor Bf Regular, sans-serif;
  }
  
  .submit-button-6 {
    background-color: #64ed80;
    border-radius: 30px;
    max-width: 320px;
    height: 50px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 18px;
    font-weight: 700;
  }
  
  .div-block-221 {
    margin-bottom: 25px;
  }
  
  .div-block-222 {
    text-align: center;
  }
  
  .text-block-84 {
    color: var(--neutral);
    margin-top: 15px;
    font-family: Axiforma, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
  }
  
  .image-213 {
    height: 21px;
  }
  
  .feature-content-horizontal {
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    background-color: #001433;
    border-radius: 20px;
    grid-template-rows: auto;
    grid-template-columns: .9fr .9fr 2.2fr;
    grid-auto-columns: 1fr;
    align-content: end;
    place-items: start baseline;
    margin-top: 30px;
    margin-bottom: 60px;
    padding: 20px;
    display: grid;
  }
  
  .feature-content-horizontal.feature-content-horizontal-tab2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: start;
  }
  
  .div-block-223 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: start stretch;
    display: grid;
  }
  
  .image-214 {
    width: 25px;
    height: 25px;
  }
  
  .div-block-224 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border: 3px solid #ed1a1a;
    border-radius: 30px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: stretch stretch;
    width: 100%;
    height: 340px;
    padding: 20px 15px;
    display: grid;
    box-shadow: inset 8px 8px 150px #fdfafa40;
  }
  
  .div-block-224.div-block-224-green {
    border-color: var(--primary);
  }
  
  .div-block-224.div-block-224-yellow {
    border-color: #eafd17;
  }
  
  .div-block-224.div-block-224-pink {
    border-color: var(--accent-pink);
  }
  
  .div-block-225, .div-block-226 {
    width: 100%;
  }
  
  .image-215 {
    object-fit: contain;
    width: 200px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-216 {
    width: 200px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .image-217 {
    object-fit: contain;
    width: 200px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .div-block-227, .div-block-228 {
    width: 100%;
  }
  
  .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;
  }
  
  .section-24 {
    background-image: url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/66386d3c4cfe33d6719a03d0_Frame%20404.jpg");
    background-position: 0 0;
    background-size: auto;
    height: 100vh;
    margin-bottom: 100px;
  }
  
  .div-block-229 {
    text-align: center;
    margin-top: 40px;
  }
  
  .heading-111 {
    color: var(--elements-webflow-library-neutral--100);
    font-family: Axiforma, sans-serif;
    font-size: 150px;
    line-height: 110px;
  }
  
  .heading-112 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 60px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 38px;
  }
  
  .heading-113 {
    color: var(--elements-webflow-library-neutral--100);
    margin-top: 40px;
    margin-bottom: 50px;
    font-family: Axiforma REAL, sans-serif;
  }
  
  .link-block-26 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    color: var(--neutral);
    background-color: #64ed80;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 60px;
    margin-top: 40px;
    padding: 10px 20px;
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }
  
  .link-block-26.w--current {
    margin-top: 40px;
  }
  
  .image-218 {
    height: 25px;
  }
  
  .div-block-230 {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    display: flex;
  }
  
  .text-block-85 {
    margin-top: 5px;
  }
  
  .cookies {
    z-index: 1;
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--accent);
    border-radius: 20px;
    flex-flow: column;
    padding: 20px;
    font-size: 16px;
    position: static;
    inset: auto 0 0% auto;
  }
  
  .code-embed-4 {
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    padding: 20px;
  }
  
  .heading-114 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 36px;
  }
  
  .heading-115 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
  }
  
  .text-block-86 {
    color: #8596b2;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 24px;
  }
  
  .link-4 {
    color: var(--accent);
    text-decoration: underline;
  }
  
  .image-220 {
    height: 28px;
  }
  
  .cookie-close {
    cursor: pointer;
    position: absolute;
    inset: 10px 15px auto auto;
  }
  
  .cookie-close-2 {
    cursor: pointer;
    background-color: #f2efeb;
    border: 1px solid #3b3b380f;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    display: flex;
    position: absolute;
    inset: 0% 0% auto auto;
    transform: translate(30%, -50%);
    box-shadow: 1px 1px 8px #3b3b3826;
  }
  
  .cookie {
    display: block;
  }
  
  .cookie-icon {
    width: 100%;
  }
  
  .cookie-content {
    color: #f2efeb;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    font-weight: 500;
    display: flex;
  }
  
  .cookie-icon-wrapper {
    border: 1px solid #f2efeb26;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }
  
  .cookie-button {
    text-align: center;
    background-color: #eb40a8;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    padding: 14px 40px;
    font-weight: 500;
    line-height: 1;
    display: flex;
  }
  
  .cookie-button.margin-right-20 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--primary);
    color: var(--neutral);
    border-radius: 30px;
    width: 100%;
    height: 50px;
    margin-right: 0;
    font-family: Brcandor Bf Semi Bold, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .cookie-button.margin-right-20.hide-button {
    opacity: 0;
    margin-right: 0;
    font-family: Axiforma REAL, sans-serif;
    position: absolute;
  }
  
  .cookie-button._2 {
    color: #eb40a8;
    background-color: #0000;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px #3b3b381a;
  }
  
  .cookie-row-2 {
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 32px;
    font-size: 16px;
    display: flex;
  }
  
  .cookie-heading {
    color: #3b3b38;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
  }
  
  .cookie-banner-2 {
    z-index: 999;
    color: #f5f5f5;
    background-color: #f2efeb;
    border: 1px solid #3b3b380f;
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    width: 45%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: 20px;
    display: none;
    position: fixed;
    inset: auto 0% 0% auto;
    box-shadow: 0 -1px 10px #3b3b380f;
  }
  
  .cookie-link {
    color: #383839;
  }
  
  .cookie-heading-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
  }
  
  .cookie-buttons {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    margin-top: 32px;
    margin-right: 0;
    display: inline-flex;
    position: relative;
  }
  
  .paragraph-53 {
    color: #f2efeb;
    line-height: 1.6;
    position: relative;
  }
  
  .paragraph-53.small {
    font-size: 16px;
  }
  
  .cookie-trigger {
    display: none;
  }
  
  .cookie-banner {
    z-index: 9999;
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    width: 500px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: 20px;
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
  }
  
  .cookie-banner.cookie-popup_component {
    display: none;
  }
  
  .cookie-row {
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 20px #0000001a;
  }
  
  .image-221 {
    height: 25px;
  }
  
  .image-222 {
    height: 30px;
  }
  
  .div-block-231 {
    margin-top: 80px;
  }
  
  .heading-116 {
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 29px;
    font-weight: 700;
  }
  
  .text-block-87 {
    color: var(--elements-webflow-library-neutral--100);
    max-width: 915px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
  
  .detailed {
    background-color: var(--elements-webflow-library-neutral--100);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 30px;
    box-shadow: 20px 2px 18px #0000001a;
  }
  
  .heading-118 {
    color: var(--neutral);
    margin-top: 0;
    font-family: Axiforma REAL, sans-serif;
    font-weight: 700;
  }
  
  .text-block-88 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
  }
  
  .scenario {
    font-size: 24px;
    line-height: 30px;
  }
  
  .div-block-234 {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
  }
  
  .cookie-modal_button-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #f3f7f2;
    border-radius: 0 0 .25rem .25rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    display: flex;
  }
  
  .cookie-modal_button-wrap.is-small {
    justify-content: flex-start;
    padding: 1.5rem;
  }
  
  .cookie-modal_link {
    transition: color .15s cubic-bezier(.25, .46, .45, .94);
  }
  
  .cookie-modal_closebutton {
    z-index: 5;
    cursor: pointer;
    background-color: #f3f7f2;
    border-radius: .25rem;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 1.25rem 1.25rem -2.5rem auto;
    transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    position: relative;
  }
  
  .cookie-modal_content-wrap {
    padding: 1.75rem 2rem;
  }
  
  .cookie-modal_content-wrap.is-small {
    padding: 1.5rem;
  }
  
  .cookie-popup_component {
    z-index: 9500;
    max-width: 25rem;
    position: fixed;
    inset: auto 1.25rem 1.25rem auto;
  }
  
  .cookie-popup_component.cookie-popup_component-hidden, .cookie-modal_styles {
    display: none;
  }
  
  .cookie-modal_component {
    background-color: #fff;
    border-radius: .25rem;
    flex-direction: column;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: .9375rem;
    line-height: 1.4;
    display: flex;
    position: relative;
    box-shadow: 0 4px 1rem #2629260d;
  }
  
  .screenreader-only {
    width: 1px;
    height: 1px;
    margin: -1px;
    position: absolute;
    overflow: hidden;
  }
  
  .cookie-modal_title {
    margin-bottom: .1875em;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .cookie-modal_title.is-small {
    font-size: 1.1875rem;
  }
  
  .cookie-modal_closebutton_line {
    background-color: #515750;
    width: 1rem;
    height: 2px;
    position: absolute;
  }
  
  .cookie-modal_closebutton_line.is-right {
    transform: rotate(-45deg);
  }
  
  .cookie-modal_closebutton_line.is-left {
    transform: rotate(45deg);
  }
  
  .cookie-modal_button {
    color: #fff;
    text-align: center;
    background-color: #515750;
    border-radius: .25rem;
    padding: .875em 1.5em 1rem;
    font-size: .9375rem;
    text-decoration: none;
    transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
  }
  
  .cookie-modal_button:hover {
    background-color: #262926;
  }
  
  .cookie-modal_button.is-secondary {
    color: #515750;
    background-color: #0000;
    padding-left: 0;
    padding-right: 0;
    font-size: .875rem;
    font-weight: 700;
  }
  
  .cookie-modal_button.is-secondary:hover {
    text-decoration: underline;
  }
  
  .div-block-235 {
    background-color: var(--neutral);
    border-radius: 7px;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    display: flex;
  }
  
  .image-225 {
    height: 27px;
  }
  
  .div-block-236 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }
  
  .image-227 {
    width: auto;
    height: 40px;
  }
  
  .div-block-237, .div-block-238 {
    margin-top: 80px;
  }
  
  .image-229 {
    height: 35px;
  }
  
  .text-block-89 {
    margin-top: 5px;
  }
  
  .div-block-239 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    height: 100vh;
    display: grid;
  }
  
  .text-span-8, .text-span-9, .text-span-10 {
    color: var(--accent);
  }
  
  .text-block-90 {
    font-family: Axiforma REAL, sans-serif;
    font-size: 23px;
    font-weight: 600;
  }
  
  .text-block-91, .text-block-94 {
    font-family: Axiforma REAL, sans-serif;
    font-weight: 600;
  }
  
  .background-video-2 {
    overflow: hidden;
  }
  
  .background-video-3 {
    box-sizing: border-box;
    flex-flow: row;
    flex: 1;
    display: block;
    overflow: hidden;
  }
  
  .section-25 {
    aspect-ratio: 1;
    margin-top: 79px;
    padding-right: 599px;
  }
  
  .background-video-4 {
    width: 600px;
    max-width: 600px;
    height: 600px;
    max-height: 600px;
    margin-top: 91px;
    overflow: visible;
  }
  
  .text-block-96 {
    font-family: Axiforma, sans-serif;
  }
  
  .text-span-13 {
    color: var(--accent-pink);
    line-height: 75px;
  }
  
  .text-span-17 {
    color: var(--accent);
    font-size: 55px;
    line-height: 65px;
  }
  
  .text-span-19 {
    color: var(--accent-pink);
  }
  
  .image-230 {
    width: 26px;
    height: 26px;
  }
  
  .div-block-240, .div-block-241 {
    text-align: center;
  }
  
  .paragraph-54 {
    color: var(--neutral);
    font-family: Axiforma REAL, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
  }
  
  .div-block-242 {
    padding-left: 60px;
    padding-right: 60px;
  }
  
  .div-block-243 {
    margin-bottom: 10px;
  }
  
  .div-block-244 {
    position: relative;
    top: 15px;
  }
  
  .image-231, .image-232 {
    filter: invert();
  }
  
  .text-block-98 {
    font-family: Axiforma REAL, sans-serif;
  }
  
  .grayclr {
    color: var(--gray);
  }
  
  .skyclr {
    color: var(--accent);
  }
  
  .div-block-250 {
    margin-top: 60px;
  }
  
  .div-block-251 {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  
  .div-block-253 {
    text-align: center;
  }
  
  .link-5 {
    color: #3886ff;
  }
  
  .heading-120 {
    font-size: 28px;
  }
  
  .heading-121, .heading-122, .heading-123 {
    color: var(--primary);
    margin-bottom: 7px;
    font-family: Axiforma, sans-serif;
    font-size: 28px;
  }
  
  .avg-box {
    background-color: #fefeff;
    border: 3px solid #fefeff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 2px 20px #fefeff;
  }
  
  .div-block-262 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    display: flex;
  }
  
  .heading-124 {
    color: var(--neutral);
    margin-top: 0;
    margin-bottom: 0;
    font-family: Axiforma, sans-serif;
    font-size: 29px;
    font-weight: 700;
  }
  
  .image-235 {
    width: 35px;
    height: 35px;
  }
  
  .heading-125 {
    color: var(--primary);
    text-align: center;
    margin-top: 25px;
    font-family: Axiforma, sans-serif;
    font-size: 55px;
  }
  
  .image-236 {
    object-fit: contain;
    width: 120px;
    height: 60px;
    margin-bottom: 10px;
    margin-right: 15px;
  }
  
  .div-block-263 {
    background-color: var(--elements-webflow-library-neutral--100);
  }
  
  .body-6 {
    color: var(--elements-webflow-library-neutral--100);
    background-position: 0 0;
    justify-content: center;
    align-items: flex-start;
    font-family: Brcandor Bf Regular, sans-serif;
      background-color: rgba(0, 0, 0, 1);
      background: rgba(0, 0, 0, 1);
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: cover;
      color: #ffffff;
    }
  
  
  .bullo-content {
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .image-237 {
    object-fit: contain;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 200px;
    min-height: 10%;
    -webkit-user-drag: none; 
    user-select: none; 
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

  .heading-126 {
    color: #fff;
    margin-top: 30px;
    padding-bottom: 30px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 140px;
    font-weight: 700;
    line-height: 80%;
  }
  
  .text-span-40 {
    color: #0090ff;
  }
  
  .heading-127 {
    color: #fff;
    margin-bottom: 20px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
  }
  
  .header-logo {
    padding-top: 10px;
    padding-bottom: 0;
  }
  
  .button-13 {
    background-color: var(--elements-webflow-library-neutral--100);
    color: var(--neutral);
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    padding: 15px 20px 12px;
    font-family: Brcandor Bf Bold, sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: inline-flex;
  }
  
  .overlay_img {
    z-index: -1;
    width: 100%;
    position: absolute;
    inset: 0%;
  }
  
  .section-26 {
  background-color: rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 1);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: #ffffff;
}
  
  
  .wrap-page {
    z-index: 1;
    background-image: linear-gradient(#3886ff, #001435);
    width: 100%;
    position: relative;
  }
  
  .sticker {
    text-align: center;
  }
  
  .heading-128 {
    color: var(--elements-webflow-library-neutral--100);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    font-size: 40px;
    font-weight: 400;
    line-height: 120%;
  }
  
  .image-238 {
    width: 500px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
    -ms-user-select: none; 
    -webkit-user-drag: none;
}
  
  .progres-row {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-top: 20px;
    padding-bottom: 0;
    display: grid;
  }
  
  .progresdiv {
    text-align: center;
    position: relative;
  }
  
  .div-block-264 {
    z-index: 1;
    border: 1px solid var(--elements-webflow-library-neutral--100);
    background-color: #000;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    display: flex;
    position: relative;
  }
  
  .heading-129 {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 135%;
  }
  
  .text-block-99 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 137%;
  }
  
  .image-239 {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    position: absolute;
    inset: 32px auto auto;
    z-index: -1;
  }
  
  .footer-bottom {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    margin-top: 160px;
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
  }
  
  .socail-media {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    text-align: left;
    display: flex;
  }
  
  .image-240 {
    width: 100px;
    margin-bottom: 20px;
  }

  @media (min-width: 600px) {
    .image-240 {
        width: 100px; /* Adjust the width */
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 15px; /* Adjust the margin */
    }
  }

  /* Styles for small screens (e.g., smartphones) */
@media (max-width: 600px) {
  .image-240 {
    width: 60px;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 15px;
  }
}

/* Styles for extra small screens (e.g., small smartphones) */
@media (max-width: 400px) {
  .image-240 {
      width: 60px; /* Adjust the width */
      margin-bottom: 10px; /* Adjust the margin */
  }
}

  
  .container-7 {
    max-width: 1200px;
  }
  
  .image-241 {
    text-align: center;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  @media screen and (min-width: 1280px) {
    .hero-banner {
      height: 100%;
    }
  
    .image-58 {
      width: 150px;
      height: 70px;
    }
  
    .h2-green.h2-green-1 {
      margin-top: 22px;
      font-size: 29px;
    }
  
    .wrap-container {
      margin-top: 13px;
    }
  
    .h1 {
      font-size: 80px;
      line-height: 70px;
    }
  
    .wrap-capsuls.wrap-capsuls-mobile {
      margin-top: -1px;
    }
  
    .heading-28 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
    }
  
    .join-now.see-story._w-100, .join-now.learn-more {
      font-family: Axiforma, sans-serif;
      font-weight: 700;
    }
  
    .heading-29 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .heading-30.text-m-40px {
      padding-bottom: 21px;
      font-size: 65px;
    }
  
    .heading-31 {
      font-family: Axiforma, sans-serif;
    }
  
    .heading-32 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
    }
  
    .tabs-menu {
      width: 25%;
    }
  
    .text-block-20 {
      margin-top: 10px;
      padding-top: 0;
      padding-left: 0;
      font-size: 22px;
    }
  
    .paragraph-29 {
      margin-top: 10px;
      font-size: 16px;
    }
  
    .tab-link {
      border-width: 2px;
      height: 150px;
      padding-bottom: 0;
    }
  
    .tab-link.w--current {
      border-width: 2px;
    }
  
    .heading-35.m-text-center {
      color: var(--neutral);
    }
  
    .heading-35.mt-0 {
      font-size: 55px;
      line-height: 65px;
    }
  
    .heading-37 {
      font-size: 65px;
      line-height: 76px;
    }
  
    .heading-37.text-center.m-text-36 {
      font-size: 65px;
    }
  
    .counter-totle {
      margin-top: 14px;
    }
  
    .heading-47 {
      color: var(--neutral);
      font-size: 55px;
      line-height: 65px;
    }
  
    .heading-47.text-center {
      color: var(--neutral);
    }
  
    .accent {
      color: var(--gray);
    }
  
    .per-challenge {
      max-width: 180px;
      margin-top: 15px;
      display: flex;
    }
  
    .per-challenge.per-challenge-pp {
      max-width: 220px;
    }
  
    .heading-48 {
      font-family: Axiforma, sans-serif;
      font-size: 50px;
    }
  
    .heading-49 {
      margin-bottom: 20px;
    }
  
    .text-block-25 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
    }
  
    .heading-50 {
      font-family: Axiforma, sans-serif;
    }
  
    .price-text-list {
      grid-column-gap: 13px;
      grid-row-gap: 13px;
      grid-template-columns: 1.5fr .5fr;
      width: 100%;
    }
  
    .text-block-28.text-block-28-bold {
      font-family: Axiforma, sans-serif;
      font-weight: 700;
    }
  
    .wrap-price-list.wrap-price-list-price {
      width: 100%;
    }
  
    .image-71 {
      height: 75px;
      margin-top: -11px;
    }
  
    .div-block-70 {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      justify-content: center;
      align-items: flex-start;
      margin-top: 30px;
      margin-bottom: 5px;
    }
  
    .heading-51.text-white {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .heading-52 {
      font-family: Axiforma, sans-serif;
    }
  
    .paragraph-30 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      line-height: 22px;
    }
  
    .div-block-72 {
      height: 240px;
    }
  
    .heading-53 {
      font-family: Axiforma, sans-serif;
      font-size: 24px;
      line-height: 30px;
    }
  
    .div-block-74 {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .heading-55 {
      font-family: Axiforma, sans-serif;
      font-weight: 700;
    }
  
    .heading-56 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 51px;
      font-weight: 600;
    }
  
    .text-block-31 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .heading-57.m-text-center {
      font-family: Axiforma, sans-serif;
    }
  
    .heading-58 {
      margin-top: 0;
    }
  
    .heading-58.m-text-center {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .div-block-92 {
      justify-content: flex-end;
      align-items: center;
    }
  
    .link-block-17.link-block-17-security {
      width: 420px;
    }
  
    .heading-85 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .paragraph-37 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 400;
    }
  
    .heading-86 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .text-block-62 {
      font-size: 17px;
    }
  
    .heading-95.heading-95-2 {
      line-height: 50px;
    }
  
    .heading-95.heading-95-2.heading-95-2-3 {
      line-height: 27px;
    }
  
    .paragraph-49 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 22px;
    }
  
    .image-179 {
      max-width: none;
      height: auto;
      margin-top: 10px;
    }
  
    .feature-content-horizontal {
      grid-column-gap: 0px;
      grid-template-columns: 1fr 1fr 2.2fr;
    }
  
    .div-block-223 {
      place-items: start stretch;
    }
  
    .div-block-224 {
      align-content: start;
      margin-top: 20px;
    }
  
    .div-block-225 {
      width: 100%;
    }
  
    .text-block-90, .text-block-91 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .background-video-4 {
      width: 650px;
      max-width: 650px;
      height: 650px;
      max-height: 650px;
    }
  
    .text-span-17 {
      color: var(--neutral);
    }
  
    .div-block-240, .div-block-241 {
      text-align: center;
    }
  
    .paragraph-54 {
      color: var(--neutral);
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 500;
      line-height: 25px;
    }
  
    .text-span-20, .text-span-21, .text-span-22 {
      color: var(--gray);
    }
  
    .text-span-23 {
      color: var(--accent);
    }
  
    .text-span-24 {
      color: var(--accent-pink);
    }
  
    .overlay_img.overlay_img_phone {
      display: none;
    }
  }
  
  @media screen and (min-width: 1440px) {
    .big-container.bottom-flec {
      padding-left: 66px;
      position: relative;
    }
  
    .gradient-text {
      text-align: left;
    }
  
    .div-block-7.l-none {
      border: 1px #000;
      border-radius: 0;
      overflow: visible;
    }
  
    .frame-427323325 {
      margin-top: 70px;
    }
  
    .testimonials {
      -webkit-text-stroke-color: #3333330f;
      width: 100vw;
      overflow: hidden;
    }
  
    .hr {
      opacity: 1;
      outline-offset: 0px;
      outline: 3px #e148c0;
    }
  
    .image-13 {
      width: 1600px;
      max-width: none;
      right: 177px;
    }
  
    .left-arrow {
      left: -100px;
    }
  
    .right-arrow {
      right: -100px;
    }
  
    .left-arrow-3 {
      width: auto;
      padding-left: 50px;
    }
  
    .right-arrow-3 {
      width: auto;
      padding-right: 50px;
    }
  
    .slide-nav-3 {
      left: 215px;
    }
  
    .control-nw-wrapper {
      justify-content: space-between;
    }
  
    .div-block-13 {
      transform: translate(-50px);
    }
  
    .items-member {
      width: 420px;
      margin-left: 0;
    }
  
    .wrapper-slider-members {
      justify-content: center;
      display: flex;
    }
  
    .items-sm {
      margin-left: 27px;
      padding-left: 0;
    }
  
    .div-block-17 {
      border-radius: 14px;
    }
  
    .paragraph-13 {
      font-family: Helvetica Regular, sans-serif;
      font-size: 20px;
      font-weight: 400;
    }
  
    .div-block-25.gradient-grey {
      width: 580px;
    }
  
    .image-29 {
      width: 210px;
    }
  
    .image-30 {
      width: 455px;
      display: block;
      inset: auto 0% 0% 10%;
    }
  
    .image-34 {
      cursor: pointer;
      position: absolute;
      inset: 12px 20px auto auto;
    }
  
    .ix2-button {
      opacity: 1;
      outline-offset: 0px;
      color: #fff;
      border: 0 solid #f3f3f30a;
      border-radius: 22px;
      outline: 3px solid #cbcdff42;
      font-size: 20px;
      transform: none;
      box-shadow: 0 0 20px 3px #b869cc7d;
    }
  
    .ix2-button__overlay-2 {
      border: 0 solid #0000;
      border-radius: 20px;
    }
  
    .ix2-button__white-overlay {
      border-radius: 20px;
    }
  
    .button-text {
      border: 0 solid #ffffff24;
      border-radius: 20px;
    }
  
    .button-container {
      outline-offset: 0px;
      -webkit-text-stroke-color: #ffffff26;
      border-width: 0;
      border-color: #ffffff45;
      border-radius: 0;
      outline: 3px solid #e1daff14;
    }
  
    .ix2-button__overlay-1-3 {
      opacity: 1;
      -webkit-text-stroke-color: #ffffff14;
      background-image: repeating-radial-gradient(circle at 100% 24%, #6490ff, #ff47a0);
      border-style: none;
      border-width: 0;
      border-radius: 20px;
    }
  
    .button-container-codpy {
      outline-offset: 0px;
      -webkit-text-stroke-color: #fff;
      border-width: 0;
      border-color: #ffffff45;
      border-radius: 0;
      outline: 3px solid #ffffff14;
      width: 25%;
      margin-top: 50px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .ix2-button-copy {
      opacity: 1;
      outline-offset: 0px;
      color: #fff;
      background-color: #e2e2e2;
      border: 0 solid #f3f3f30a;
      border-radius: 22px;
      outline: 3px solid #889eff42;
      font-size: 20px;
      overflow: hidden;
      transform: none;
      box-shadow: 0 0 20px 3px #318dfb7d;
    }
  
    .button-text-copy {
      border: 0 solid #ffffff3d;
      border-radius: 20px;
    }
  
    .ix2-button__overlay-2-copy {
      background-color: #fafafa;
      background-image: linear-gradient(76deg, #3380fb, #309ffb);
      border: 0 solid #0000;
      border-radius: 20px;
    }
  
    .ix2-button__white-overlay-copy {
      background-image: repeating-linear-gradient(270deg, #309ffb, #3380fb);
      border-radius: 20px;
    }
  
    .ix2-button__overlay-1-3-copy {
      opacity: 1;
      -webkit-text-stroke-color: #ffffff14;
      background-image: radial-gradient(circle at 100% 24%, #3380fb, #309ffb);
      border-style: none;
      border-width: 0;
      border-radius: 20px;
      padding-right: 0;
    }
  
    .mask-2-copy {
      margin-left: 110px;
      margin-right: 110px;
    }
  
    .div-block-47 {
      transform: translate(-50px);
    }
  
    .brix---grid-hero-v1 {
      grid-column-gap: 90px;
    }
  
    .header.white {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-55 {
      border-radius: 14px;
    }
  
    .brix---paragraph-default-2 {
      text-align: left;
    }
  
    .left-arrow-5 {
      width: auto;
      padding-left: 50px;
    }
  
    .items-member-2 {
      background-color: #fff0;
      width: 420px;
      margin-left: 0;
    }
  
    .slide-copy {
      width: 420px;
    }
  
    .members-copy {
      display: none;
    }
  
    .right-arrow-5 {
      width: auto;
      padding-right: 50px;
    }
  
    .review-image {
      padding-top: 10px;
      padding-bottom: 10px;
      box-shadow: 0 0 15px #0000000d;
    }
  
    .header-button {
      padding: 20px 30px;
      font-size: 19px;
    }
  
    .brix---subtitle {
      text-align: left;
    }
  
    .heading-24 {
      margin-left: 118px;
    }
  
    .nav-link-2 {
      padding-top: 30px;
      padding-bottom: 30px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
    }
  
    .nav-link-2.w--current {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .hero-banner {
      height: 100%;
      padding-bottom: 82px;
    }
  
    .buttonprimary.dektoponly {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .h2-green.h2-green-1 {
      margin-top: 37px;
      font-size: 31px;
    }
  
    .wrap-container {
      margin-top: 44px;
    }
  
    .h1 {
      font-size: 80px;
      line-height: 70px;
    }
  
    .capsule {
      height: 70px;
    }
  
    .join-now.learn-more.see-prices {
      background-color: var(--elements-webflow-library-neutral--100);
      color: var(--accent);
      height: 55px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .heading-30.text-m-40px {
      margin-top: -33px;
    }
  
    .benifits {
      padding-bottom: 23px;
    }
  
    .heading-31 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
    }
  
    .heading-32 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .heading-33 {
      margin-bottom: -19px;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .purple {
      color: var(--purle);
      font-family: Axiforma, sans-serif;
      font-weight: 700;
    }
  
    .trading-technology.trading-technology-2 {
      background-color: var(--purle);
      background-image: none;
      border-radius: 5px;
    }
  
    .tab-link, .tab-link.w--current {
      height: 160px;
    }
  
    .heading-35 {
      font-family: Axiforma, sans-serif;
      font-size: 55px;
      line-height: 65px;
    }
  
    .heading-35.m-text-center {
      font-family: Axiforma, sans-serif;
      line-height: 70px;
    }
  
    .text-block-21.hvr-pink {
      background-color: var(--purle);
      font-family: Axiforma REAL, sans-serif;
    }
  
    .heading-37 {
      color: var(--gray);
      font-family: Axiforma, sans-serif;
      font-size: 70px;
      line-height: 80px;
    }
  
    .link-block-7.hvr-purple {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .heading-39, .gray, .heading-40 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .get-started {
      margin-left: 23px;
      margin-right: 29px;
    }
  
    .quick-stack-6 {
      grid-column-gap: 42px;
      grid-row-gap: 42px;
      margin-right: 0;
      padding-bottom: 10px;
      padding-left: 0;
    }
  
    .step-item {
      padding-bottom: 29px;
    }
  
    .step-item.pink-bg {
      padding-top: 20px;
      padding-bottom: 24px;
    }
  
    .text-block-22 {
      margin-top: -8px;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
    }
  
    .div-block-67 {
      height: 90px;
      margin-top: -8px;
    }
  
    .heading-47 {
      color: var(--neutral);
      font-size: 70px;
      line-height: 70px;
    }
  
    .heading-47.text-center {
      font-family: Axiforma, sans-serif;
      font-weight: 400;
    }
  
    .heading-47.text-center.text-white {
      margin-top: 17px;
      padding-bottom: 22px;
    }
  
    .heading-47.text-center.alltradersh {
      line-height: 70px;
    }
  
    .pink {
      color: var(--accent-pink);
    }
  
    .text-block-27.text-block-27-2 {
      font-size: 14px;
    }
  
    .text-block-28.text-block-28-bold {
      font-size: 11px;
    }
  
    .wrap-price-list.wrap-price-list-2 {
      width: 100%;
    }
  
    .wrap-price-list.wrap-price-list-price {
      padding-right: 0;
    }
  
    .image-71 {
      margin-top: -4px;
      padding-left: 11px;
    }
  
    .heading-51 {
      color: var(--color);
      font-weight: 400;
    }
  
    .heading-51.text-white {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .heading-51.m-text-left {
      color: var(--color);
      font-weight: 400;
    }
  
    .heading-51.trading-better-subheader {
      text-align: left;
      margin-top: 20px;
      margin-bottom: 20px;
    }
  
    .payouts-fast {
      margin-top: 100px;
    }
  
    .payouts-fast.payouts-fast-home {
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .div-block-74, .div-block-74.pink-border, .div-block-74.sky-border {
      height: 240px;
    }
  
    .heading-58 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
    }
  
    .image-83 {
      border-radius: 20px;
    }
  
    .section-9.trade-faster-without-limits {
      padding-left: 0;
    }
  
    .text-block-38 {
      margin-top: 10px;
    }
  
    .quick-stack-18 {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .marquee-block.marquee-block-trade {
      height: 450px;
    }
  
    .div-block-92 {
      justify-content: center;
      align-items: center;
    }
  
    .image-89 {
      width: 100%;
      height: 110px;
    }
  
    .quick-stack-22 {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
    }
  
    .text-block-50 {
      font-size: 12px;
    }
  
    .link-block-17.link-block-17-security {
      height: 63px;
    }
  
    .image-137 {
      object-fit: fill;
    }
  
    .quick-stack-34 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .every-trader {
      height: 200px;
    }
  
    .image-153 {
      max-width: 22%;
      height: auto;
    }
  
    .bold-text {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .text-block-66 {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 20px;
    }
  
    .text-block-67 {
      margin-top: 10px;
      font-family: Brcandor Bf Semi Bold, sans-serif;
      font-weight: 600;
    }
  
    .div-block-188 {
      height: 80vh;
    }
  
    .text-block-80 {
      margin-top: 0;
    }
  
    .div-block-203 {
      height: 90px;
      margin-top: 10px;
    }
  
    .image-202 {
      height: 510px;
    }
  
    .image-203 {
      height: 450px;
    }
  
    .image-208 {
      width: 850px;
    }
  
    .wrap-road-image {
      max-width: 1370px;
      margin-left: auto;
      margin-right: auto;
      top: 20px;
      left: auto;
      right: auto;
    }
  
    .border-line {
      width: 92%;
    }
  
    .wrap-q2-lists {
      max-width: 1440px;
      padding-left: 120px;
    }
  
    .div-block-223 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      place-items: start;
      width: 100%;
    }
  
    .div-block-224 {
      height: 370px;
    }
  
    .image-216 {
      height: 110px;
    }
  
    .div-block-229 {
      margin-top: 100px;
    }
  
    .background-video-4 {
      width: 600px;
      max-width: 600px;
      margin-left: 130px;
      padding-left: 0;
    }
  
    .text-span-13 {
      color: var(--neutral);
    }
  
    .text-span-17 {
      font-size: 70px;
      line-height: 80px;
    }
  
    .div-block-241 {
      margin-top: 50px;
    }
  
    .text-span-23 {
      color: var(--accent-pink);
    }
  
    .text-span-25 {
      color: var(--gray);
    }
  
    .text-span-26 {
      color: var(--neutral);
    }
  
    .text-span-27, .text-span-28, .text-span-29 {
      color: var(--gray);
    }
  
    .text-span-30 {
      color: var(--primary);
    }
  
    .div-block-245 {
      margin-top: 100px;
    }
  
    .text-span-31 {
      color: var(--accent);
    }
  
    .image-236 {
      height: 70px;
    }
  }
  
  @media screen and (min-width: 1920px) {
    .div-block-28 {
      margin-bottom: -120px;
      padding-top: 73px;
      padding-bottom: 0;
    }
  
    .heading-19 {
      padding-top: 7px;
    }
  
    .grid {
      margin-bottom: -28px;
      padding-bottom: 0;
    }
  
    .text-block-8 {
      font-family: Helvetica Bold, sans-serif;
      font-size: 23px;
    }
  
    .header {
      min-height: 120px;
    }
  
    .image-5-copy-copy {
      top: 15%;
      right: 18%;
    }
  
    .paragraph-28 {
      font-size: 23px;
    }
  
    .mask-2-copy-copy, .slider-2-copy {
      width: 75%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .navbar-logo-left-copy {
      padding-top: 54px;
    }
  
    .what-s-inside {
      padding-top: 38px;
    }
  
    .call-to-action-button-copy {
      margin-bottom: 108px;
      padding-bottom: 0;
    }
  
    .about-host {
      margin-top: -139px;
      margin-bottom: -7px;
      padding-top: 93px;
      padding-bottom: 86px;
    }
  
    .heading-24 {
      margin-left: 349px;
    }
  
    .navbar-wrapper-2 {
      max-width: 1540px;
    }
  
    .nav-link-2 {
      padding-top: 30px;
      padding-bottom: 30px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 20px;
      font-weight: 700;
    }
  
    .nav-link-2.nav-link-black {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 20px;
      font-weight: 700;
    }
  
    .nav-link-2.nav-link-black.w--current {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 20px;
      font-weight: 500;
    }
  
    .hero-banner {
      height: 100vh;
      padding-top: 70px;
      padding-bottom: 60px;
    }
  
    .hero-banner.hero-security {
      padding-top: 100px;
    }
  
    .site-container {
      max-width: 1540px;
    }
  
    .h2-green.h2-green-1 {
      margin-top: 30px;
      padding-top: 0;
    }
  
    .wrap-container {
      max-width: 760px;
    }
  
    .h1 {
      font-size: 100px;
      line-height: 90px;
    }
  
    .join-now {
      height: 60px;
    }
  
    .heading-30, .heading-35 {
      font-size: 70px;
      line-height: 80px;
    }
  
    .heading-35.heading-35-55 {
      font-size: 55px;
      line-height: 65px;
    }
  
    .quick-stack-5 {
      padding-top: 40px;
    }
  
    .heading-39 {
      font-size: 100px;
      line-height: 90px;
    }
  
    .div-block-65 {
      width: 100%;
    }
  
    .heading-41 {
      font-size: 24px;
    }
  
    .quick-stack-6 {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .text-block-22 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 30px;
    }
  
    .div-block-67 {
      height: 100px;
    }
  
    .heading-46 {
      font-size: 38px;
      line-height: 44px;
    }
  
    .quick-stack-7.mt-10 {
      grid-column-gap: 80px;
      grid-row-gap: 80px;
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-68 {
      padding-right: 10px;
    }
  
    .text-block-28.text-block-28-bold {
      font-size: 11px;
    }
  
    .heading-51.text-white {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .paragraph-30 {
      font-size: 18px;
    }
  
    .payouts-fast.payouts-fast-home {
      margin-top: 10px;
    }
  
    .section-8.get-started-today-fast {
      max-width: 1540px;
    }
  
    .text-green.text-large {
      font-size: 70px;
      line-height: 80px;
    }
  
    .quick-stack-19 {
      grid-column-gap: 100px;
      grid-row-gap: 100px;
    }
  
    .div-block-92 {
      justify-content: flex-end;
      align-items: center;
    }
  
    .image-89 {
      height: 120px;
    }
  
    .quick-stack-22 {
      max-width: 1400px;
    }
  
    .small-heading {
      top: -25px;
    }
  
    .site-footer {
      padding-top: 50px;
      padding-left: 50px;
      padding-right: 50px;
    }
  
    .image-112.image-112-1 {
      object-position: 50% 50%;
    }
  
    .quick-stack-29 {
      grid-column-gap: 25px;
      grid-row-gap: 25px;
      margin-top: 20px;
    }
  
    .text-block-49 {
      font-size: 16px;
    }
  
    .heading-74.hide-mobile {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .brix---container-default-6.site-container {
      max-width: 1540px;
    }
  
    .update-info {
      min-height: 280px;
    }
  
    .heading-76 {
      font-size: 24px;
      line-height: 28px;
    }
  
    .success-stories {
      background-image: linear-gradient(#03efff80, #f0fdfe82 100%, #f5fdfe80);
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
    }
  
    .image-127 {
      width: 100%;
      height: 400px;
    }
  
    .quick-stack-32 {
      grid-column-gap: 100px;
      grid-row-gap: 100px;
    }
  
    .pricing-banner.roadmap-banner {
      height: 100%;
      margin-bottom: 220px;
    }
  
    .heading-82 {
      font-size: 100px;
    }
  
    .div-block-129 {
      margin-top: 30px;
    }
  
    .quick-stack-33 {
      grid-column-gap: 100px;
      grid-row-gap: 100px;
    }
  
    .quick-stack-34 {
      position: relative;
    }
  
    .every-trader {
      min-height: 200px;
    }
  
    .heading-87 {
      font-size: 32px;
    }
  
    .paragraph-39 {
      font-size: 18px;
    }
  
    .div-block-137 {
      max-width: 1540px;
      padding-left: 0;
    }
  
    .paragraph-40 {
      max-width: 1005px;
      margin-top: 20px;
      font-size: 30px;
      line-height: 36px;
    }
  
    .heading-90 {
      font-size: 32px;
      line-height: 32px;
    }
  
    .paragraph-42 {
      font-size: 16px;
      line-height: 22px;
    }
  
    .heading-91 {
      font-size: 36px;
      font-weight: 700;
      line-height: 48px;
    }
  
    .paragraph-43 {
      font-size: 20px;
      line-height: 28px;
    }
  
    .image-153 {
      max-width: 22%;
      height: auto;
    }
  
    .heading-96 {
      width: 100%;
    }
  
    .image-179 {
      height: 60px;
    }
  
    .image-194 {
      height: 120px;
    }
  
    .heading-106 {
      font-size: 100px;
      line-height: 100px;
    }
  
    .image-202 {
      height: 506px;
    }
  
    .image-203 {
      object-fit: contain;
      height: 500px;
    }
  
    .cell-38 {
      justify-content: flex-start;
      align-items: flex-end;
    }
  
    .div-block-214, .div-block-215 {
      width: 100%;
    }
  
    .image-208 {
      width: 100%;
      margin-left: -150px;
    }
  
    .wrap-road-image {
      max-width: 100%;
      top: 20px;
    }
  
    .q2-blocks.q2-blocks-first {
      margin-top: 80px;
    }
  
    .q2-blocks.q2-blocks-third {
      margin-top: 150px;
    }
  
    .heading-109 {
      font-size: 32px;
      line-height: 32px;
    }
  
    .paragraph-51 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .wrap-q2-lists {
      max-width: 100%;
      margin-left: 0;
    }
  
    .feature-content-horizontal {
      align-content: end;
      align-items: end;
    }
  
    .div-block-224, .div-block-227, .div-block-228 {
      width: 100%;
    }
  
    .link-block-26.w--current {
      margin-top: 30px;
    }
  
    .paragraph-53 {
      color: #0d0d0d;
      font-size: 1vw;
    }
  
    .div-block-249 {
      max-width: 1000px;
    }
  
    .image-236 {
      width: 140px;
      height: 80px;
    }
  
    .bullo-content {
      max-width: 1400px;
    }
  }
  
  @media screen and (max-width: 991px) {
    .main {
      max-width: 100vw;
    }
  
    .big-container.bottom-flec {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .container {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .container.no-container {
      padding-left: 0;
      padding-right: 0;
    }
  
    .heading {
      text-align: left;
      letter-spacing: 0;
      margin-top: 36px;
      margin-bottom: 13px;
      font-size: 31px;
      font-weight: 700;
      line-height: 31px;
    }
  
    .text-span {
      font-weight: 700;
    }
  
    .paragraph {
      font-size: 12px;
    }
  
    .input {
      box-shadow: none;
      border-style: none;
      flex-direction: column;
      max-width: 100%;
      height: auto;
      margin-top: 28px;
      padding-left: 0;
      padding-right: 0;
      display: flex;
    }
  
    .form {
      display: block;
    }
  
    .div-block-2 {
      border: 2.1px solid #fafafa;
      border-radius: 100px;
      padding: 30px 32px;
      box-shadow: 0 2px 5px #0003;
    }
  
    .text-field {
      border-radius: 0;
      width: 100%;
      padding-left: 10px;
    }
  
    .div-block-3 {
      width: 100%;
      margin-top: 20px;
    }
  
    .image-3 {
      width: 93px;
      margin-top: 15px;
      position: relative;
      top: 0;
      right: 0;
    }
  
    .accredited {
      flex-direction: column;
      margin-top: 0;
    }
  
    .image-5 {
      width: 100px;
      inset: auto 20px -80px auto;
    }
  
    .video {
      border-radius: 20px;
      width: 100%;
      margin-top: 50px;
    }
  
    .usm {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin-top: 50px;
      padding-top: 48px;
      padding-bottom: 38px;
      position: relative;
    }
  
    .heading-2 {
      letter-spacing: -.8px;
      font-size: 40px;
    }
  
    .div-block-5 {
      z-index: 1;
      min-width: 236px;
      position: relative;
    }
  
    .paragraph-2 {
      letter-spacing: -.32px;
      font-size: 16px;
    }
  
    .noise {
      flex-direction: column;
      margin-top: 30px;
    }
  
    .left {
      width: 100%;
    }
  
    .right {
      width: 100%;
      margin-top: 60px;
    }
  
    .heading-3 {
      text-align: center;
      font-size: 31px;
    }
  
    .paragraph-3 {
      text-align: center;
      margin-top: 24px;
      font-size: 14px;
    }
  
    .cell {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
    }
  
    .quick-stack {
      border-top-style: none;
      margin-top: 32px;
      padding-top: 0;
    }
  
    .btn-primary {
      white-space: pre;
      height: auto;
    }
  
    .image-6 {
      max-width: 100%;
    }
  
    .div-block-7 {
      position: relative;
    }
  
    .div-block-7.l-none {
      display: none;
    }
  
    .div-block-7.r-block-m {
      display: block;
    }
  
    .f2wf-columns {
      flex-direction: column;
      align-items: center;
    }
  
    .div-block-8 {
      display: none;
    }
  
    .image-9 {
      margin-right: 20px;
      transform: translate(0%);
    }
  
    .frame-427323416 {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      flex-direction: column;
    }
  
    .testimonials {
      max-width: 100vw;
      margin-top: 150px;
      overflow: visible;
    }
  
    .hr {
      display: none;
    }
  
    .heading-5 {
      font-size: 31px;
    }
  
    .frame-427323418 {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      flex-direction: column;
    }
  
    .dashboard {
      width: 100%;
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .frame-427322991 {
      object-fit: cover;
      max-width: 100%;
      height: auto;
      padding: 32px 37px 20px 24px;
      overflow: hidden;
    }
  
    .screenshot-2023-07-18-at-12-31-1 {
      width: 100%;
      position: relative;
      left: 0;
    }
  
    .frame-427323411 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      overflow: hidden;
    }
  
    .comdp {
      height: 700px;
      padding-top: 32px;
    }
  
    .comp-kolom {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      flex-direction: column;
      margin-top: 24px;
    }
  
    .heading-6 {
      padding-left: 24px;
      font-size: 34px;
      line-height: 120%;
    }
  
    .paragraph-4 {
      padding-left: 24px;
      padding-right: 37px;
      font-size: 16px;
    }
  
    .image-10 {
      align-self: center;
      top: 22px;
      left: 24px;
    }
  
    .image-11 {
      align-self: center;
    }
  
    .image-12 {
      right: 0;
    }
  
    .maps {
      padding-top: 56px;
      padding-bottom: 48px;
    }
  
    .heading-8 {
      letter-spacing: -.64px;
      font-size: 32px;
    }
  
    .marquee-wrapper {
      height: auto;
      margin-top: 0;
      margin-bottom: 0;
      display: none;
    }
  
    .controls__wrap {
      border-bottom-style: none;
      width: 100%;
      padding-bottom: 0;
    }
  
    .slider__controller {
      background-color: #fff;
      border-bottom-style: none;
      border-radius: 100px;
      padding: 12px 20px;
      font-size: 14px;
    }
  
    .slider__controller.active {
      color: #fff;
      background-color: #3380fb;
      border-bottom-style: none;
      padding: 12px 20px;
      font-size: 14px;
    }
  
    .slider__img {
      object-fit: contain;
      height: 257px;
    }
  
    .heading-9 {
      width: 100%;
      margin-top: 50px;
      font-size: 14px;
    }
  
    .image-15.click-me-image {
      width: 200px;
      bottom: -27px;
      left: -12px;
    }
  
    .left-arrow {
      justify-content: flex-end;
      height: auto;
      inset: auto auto 2px 0%;
    }
  
    .right-arrow {
      justify-content: flex-end;
      height: auto;
      inset: auto 0% 2px auto;
    }
  
    .icon-slide {
      display: none;
    }
  
    .heading-10 {
      padding-left: 20px;
      padding-right: 20px;
      font-size: 32px;
    }
  
    .paragraph-5 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 12px;
    }
  
    .image-16 {
      width: 100%;
    }
  
    .slide {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  
    .mask {
      overflow: hidden;
    }
  
    .slider-4 {
      margin-top: 40px;
    }
  
    .top {
      height: 102px;
    }
  
    .image-17 {
      height: 131px;
      display: none;
      position: absolute;
      inset: auto 0% 0% auto;
    }
  
    .image-17.block {
      z-index: -1;
      width: 131px;
      height: auto;
      display: block;
      inset: 0% 0% auto auto;
    }
  
    .heading-11 {
      letter-spacing: -.74px;
      width: 100%;
      font-size: 37px;
    }
  
    ._w-networking {
      flex-direction: column-reverse;
      justify-content: flex-end;
      width: 100%;
      min-height: 950px;
      padding-bottom: 40px;
      padding-left: 45px;
      padding-right: 30px;
    }
  
    .wn-left {
      width: 100%;
      padding-top: 0;
    }
  
    .heading-12 {
      margin-top: 24px;
      font-size: 24px;
      line-height: 32px;
    }
  
    .paragraph-6 {
      margin-top: 8px;
      font-size: 11px;
    }
  
    .check-flex {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      margin-top: 14px;
    }
  
    .check-image {
      width: 16px;
      height: 16px;
    }
  
    .link-block-2 {
      text-align: center;
      justify-content: center;
    }
  
    .button-nw.sos-btn {
      width: 100%;
      margin-top: 70px;
      display: block;
    }
  
    .div-block-11.center {
      margin-left: auto;
      transform: none;
    }
  
    .div-block-11.sos-btn-wr {
      width: 100%;
      display: block;
    }
  
    .wn-right {
      width: 100%;
      height: auto;
      margin-top: 30px;
      padding-top: 0;
      padding-left: 0;
    }
  
    .frame-427323299 {
      margin-bottom: 8px;
      padding: 9.5px 14px;
    }
  
    .text-19 {
      font-size: 11px;
      line-height: 17px;
    }
  
    .powerful-dashboard {
      font-size: 10.739px;
      line-height: 13px;
    }
  
    .absolute-nw {
      top: 70px;
      right: 13px;
    }
  
    .text-20 {
      font-size: 13px;
    }
  
    .link-block-3 {
      margin-top: 30px;
    }
  
    .image-18 {
      height: 80px;
    }
  
    .absolute-nw-2 {
      inset: 70px 13px auto auto;
    }
  
    .slider-2 {
      margin-top: 30px;
    }
  
    .left-arrow-3 {
      display: none;
    }
  
    .right-arrow-3 {
      flex-direction: row;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 0;
      inset: auto 0% 130px auto;
    }
  
    .slide-nav-3 {
      position: absolute;
      bottom: 130px;
      left: 40px;
    }
  
    .control-nw-wrapper {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      border-bottom-style: none;
      width: 100%;
      margin-top: 24px;
      overflow: scroll;
    }
  
    .control-link-nw {
      white-space: pre;
      background-color: #fff;
      border-bottom-style: none;
      padding: 12px 20px;
      font-size: 14px;
      line-height: 17px;
    }
  
    .control-link-nw.active {
      color: #fff;
      text-transform: none;
      background-color: #3380fb;
      border-radius: 100px;
    }
  
    .paragraph-7 {
      margin-bottom: 0;
      margin-left: 0;
      font-size: 9px;
      line-height: 15px;
    }
  
    .text-span-2 {
      font-size: 14px;
      font-weight: 700;
    }
  
    .div-block-13 {
      z-index: 1;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 10px;
      position: relative;
    }
  
    .bc-top {
      padding-top: 4px;
      padding-bottom: 7px;
      padding-left: 12px;
    }
  
    .div-block-15 {
      margin-top: 10px;
    }
  
    .members {
      margin-top: 0;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .hr-members {
      display: none;
    }
  
    .heading-13 {
      max-width: 287px;
      margin-left: auto;
      margin-right: auto;
      font-size: 32px;
    }
  
    .paragraph-8 {
      max-width: 245px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
    }
  
    .items-member {
      width: 255px;
      height: 229px;
    }
  
    .text-members {
      margin-top: 10px;
      padding-right: 17px;
      font-size: 14px;
    }
  
    .rectangle-249 {
      width: 32px;
      height: 32px;
    }
  
    .text-21 {
      font-size: 14px;
    }
  
    .text-22 {
      color: #b7b7b7;
      font-size: 12px;
    }
  
    .slider-3 {
      margin-left: auto;
      margin-right: auto;
    }
  
    .mask-3 {
      width: 255px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .wrapper-slider-members {
      width: 100%;
      margin-top: 35px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .items-sm {
      margin-right: 15px;
    }
  
    .industri {
      margin-top: 40px;
    }
  
    .heading-14 {
      letter-spacing: -.64px;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 32px;
    }
  
    .paragraph-9 {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px;
    }
  
    .frame-427323512 {
      flex-wrap: nowrap;
      margin-top: 40px;
      padding-left: 20px;
      padding-right: 20px;
      overflow: scroll;
    }
  
    .frame-427323513 {
      min-width: 289px;
    }
  
    .frame-427323519 {
      position: static;
      inset: 0% auto auto 0%;
    }
  
    .text-block-6 {
      font-size: 11px;
      font-weight: 700;
    }
  
    .image-21 {
      width: 15px;
    }
  
    .image-22 {
      width: 100%;
    }
  
    .image-23 {
      width: 48px;
    }
  
    .image-24 {
      width: 32px;
    }
  
    .text-block-7 {
      font-size: 16px;
    }
  
    .r-block-m {
      flex-direction: column;
      align-items: center;
      display: flex;
    }
  
    .box-testimoni {
      margin-bottom: 0;
      margin-left: 0;
    }
  
    .div-block-17 {
      flex-direction: column;
      width: 255px;
      min-height: 229px;
      padding-top: 32px;
      padding-right: 11px;
    }
  
    .paragraph-10 {
      letter-spacing: -.28px;
      max-width: 100%;
      font-size: 14px;
      line-height: 140%;
    }
  
    .paragraph-12 {
      margin-bottom: 2px;
    }
  
    .div-block-19 {
      margin-top: 12px;
    }
  
    .div-block-20 {
      margin-top: 24px;
      margin-left: 0;
    }
  
    .image-27 {
      height: 16px;
    }
  
    .image-28 {
      filter: grayscale();
      transition: all .3s;
      display: block;
    }
  
    .image-28:hover {
      filter: none;
    }
  
    .rookie {
      background-color: #fff;
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .heading-15 {
      max-width: 282px;
      margin-left: auto;
      margin-right: auto;
      font-size: 37px;
    }
  
    .div-block-22 {
      padding-top: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .heading-16 {
      margin-top: 0;
      margin-bottom: 24px;
      font-size: 20px;
    }
  
    .paragraph-13 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-23 {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      flex-direction: column;
    }
  
    .waiting {
      margin-top: 90px;
    }
  
    .heading-17 {
      letter-spacing: -.68px;
      max-width: 321px;
      margin: 0 auto;
      font-size: 34px;
    }
  
    .paragraph-14 {
      font-size: 12px;
    }
  
    .div-block-24 {
      flex-direction: column;
      margin-top: 22px;
    }
  
    .div-block-25.gradient-grey {
      width: 100%;
      height: auto;
      overflow: hidden;
    }
  
    .div-block-25.gradient-grey.wait-middle {
      width: 100%;
      margin-top: 26px;
    }
  
    .heading-18 {
      letter-spacing: -.4px;
      max-width: 283px;
      margin-left: 38px;
      padding-top: 32px;
      font-size: 20px;
    }
  
    .heading-18.h-middle {
      text-align: left;
      max-width: 100%;
      margin-left: 38px;
    }
  
    .paragraph-15 {
      margin-top: 13px;
      margin-left: 38px;
    }
  
    .paragraph-15.right-wait-p {
      width: 100%;
      margin-left: 0;
      padding-left: 38px;
      padding-right: 31px;
    }
  
    .paragraph-15.p-middle {
      text-align: left;
      width: 196px;
      margin-top: 13px;
      margin-left: 38px;
    }
  
    .image-29 {
      margin-top: 28px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      display: block;
      position: relative;
      bottom: 0%;
      left: 0;
      right: 0;
    }
  
    .image-30 {
      width: 100%;
      margin-top: 28px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      position: relative;
      right: -38px;
    }
  
    .image-31 {
      width: 250px;
      margin-top: 28px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      position: relative;
      left: 0%;
      transform: none;
    }
  
    .div-block-26 {
      width: 100%;
      left: 0;
    }
  
    .div-block-27 {
      width: 100%;
      margin-top: 26px;
      right: 0;
    }
  
    .faq {
      margin-top: 50px;
    }
  
    .div-block-28 {
      padding-top: 52px;
      padding-bottom: 40px;
    }
  
    .paragraph-16 {
      max-width: 221px;
      margin-top: 16px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
    }
  
    .heading-19 {
      max-width: 296px;
      margin-left: auto;
      margin-right: auto;
      font-size: 32px;
      line-height: 110%;
    }
  
    .grid {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-columns: 1fr;
      margin-top: 38px;
    }
  
    .text-block-8 {
      letter-spacing: -.32px;
      width: 100%;
      font-size: 16px;
      line-height: 28px;
    }
  
    .div-block-29 {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 80px;
      padding: 24px;
    }
  
    .div-block-30 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      flex-direction: column;
      align-items: flex-start;
    }
  
    .heading-20 {
      max-width: 238px;
    }
  
    .paragraph-19 {
      max-width: 276px;
    }
  
    .text-field-2 {
      text-align: center;
      width: 100%;
      height: 56px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .submit-button-2 {
      width: 100%;
      height: 56px;
      margin-top: 8px;
      position: relative;
      top: 0;
      right: 0;
    }
  
    .form-2 {
      width: 100%;
    }
  
    .oc-footer {
      padding-top: 48px;
    }
  
    .div-block-31 {
      justify-content: center;
    }
  
    .paragraph-20 {
      display: none;
    }
  
    .paragraph-21 {
      color: #475467;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-32 {
      flex-direction: column;
      margin-top: 28px;
    }
  
    .div-block-34 {
      grid-column-gap: 31px;
      grid-row-gap: 31px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 31px;
    }
  
    .div-block-35 {
      padding: 20px 16px;
      position: relative;
    }
  
    .div-block-36 {
      justify-content: space-between;
      width: 100%;
      margin-top: 15px;
      margin-left: 0;
    }
  
    .div-block-37 {
      left: 0;
    }
  
    .image-34 {
      position: absolute;
      inset: 27px 21px auto auto;
    }
  
    .div-block-38 {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      width: 100%;
      display: flex;
    }
  
    .div-block-39 {
      width: 100%;
    }
  
    .div-block-40 {
      display: flex;
    }
  
    .div-block-41 {
      width: 100%;
      margin-top: 24px;
    }
  
    .div-block-42, .div-block-43, .div-block-44, .div-block-45, .div-block-46 {
      text-align: center;
    }
  
    .text-block-9, .text-block-10 {
      font-size: 12px;
    }
  
    .interactiverad {
      justify-content: center;
    }
  
    .dashboard-coffpy {
      width: 100%;
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .socialnetworkfortraders7778 {
      width: 100%;
    }
  
    .comdp-copy {
      height: 442px;
      padding-top: 32px;
    }
  
    .ix2-button {
      border-radius: 5px;
    }
  
    .button-text {
      font-size: 19px;
    }
  
    .ix2-button-copy {
      border-radius: 5px;
    }
  
    .button-text-copy {
      font-size: 19px;
    }
  
    .slider-3-copy {
      margin-left: auto;
      margin-right: auto;
    }
  
    .socialnetworkfortraders7778-copy {
      width: 100%;
    }
  
    .text-15-copy {
      width: 689px;
    }
  
    .div-block-47 {
      z-index: 1;
      flex-direction: column;
      align-items: flex-start;
      margin-top: 10px;
      position: relative;
    }
  
    .paragraph-24 {
      margin-bottom: 0;
      margin-left: 0;
      font-size: 9px;
      line-height: 15px;
    }
  
    .text-span-3 {
      font-size: 14px;
      font-weight: 700;
    }
  
    .div-block-48 {
      margin-top: 10px;
    }
  
    .text-block-15 {
      font-size: 11px;
      font-weight: 700;
    }
  
    .image-38 {
      width: 15px;
    }
  
    .image-39 {
      height: 131px;
      display: none;
      position: absolute;
      inset: auto 0% 0% auto;
    }
  
    .image-39.block {
      z-index: -1;
      width: 131px;
      height: auto;
      display: block;
      inset: 0% 0% auto auto;
    }
  
    .container-5 {
      max-width: 728px;
    }
  
    .nav-menu-wrapper {
      background-color: #0000;
    }
  
    .nav-menu-two {
      background-color: #fff;
      border-radius: 50px;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      margin-top: 10px;
      padding: 20px;
      display: flex;
      box-shadow: 0 8px 50px #0000000d;
    }
  
    .nav-link {
      padding-left: 5px;
      padding-right: 5px;
    }
  
    .nav-dropdown-list.shadow-three.w--open {
      position: absolute;
    }
  
    .menu-button {
      padding: 12px;
    }
  
    .menu-button.w--open {
      color: #fff;
      background-color: #a6b1bf;
    }
  
    .brix---floating-image-hero-v1---1 {
      bottom: -14%;
      left: -42%;
    }
  
    .brix---floating-image-hero-v1---2 {
      top: 24%;
      right: -30%;
    }
  
    .brix---btn-primary {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  
    .brix---heading-h1-size {
      font-size: 48px;
      line-height: 60px;
    }
  
    .brix---grid-hero-v1 {
      grid-row-gap: 48px;
      grid-template-columns: 1fr;
    }
  
    .header {
      padding-top: 0;
      padding-bottom: 0;
      position: absolute;
      inset: 0% 0% auto;
    }
  
    .text-field-3 {
      border-radius: 0;
      width: 100%;
      padding-left: 10px;
    }
  
    .image-41 {
      width: 93px;
      margin-top: 15px;
      position: relative;
      top: 0;
      right: 0;
    }
  
    .div-block-50 {
      border: 2.1px solid #fafafa;
      border-radius: 100px;
      padding: 30px 32px;
      box-shadow: 0 2px 5px #0003;
    }
  
    .div-block-51 {
      width: 100%;
      margin-top: 20px;
    }
  
    .div-block-52 {
      margin-top: 24px;
      margin-left: 0;
    }
  
    .div-block-53 {
      margin-top: 12px;
    }
  
    .paragraph-25 {
      letter-spacing: -.28px;
      max-width: 100%;
      font-size: 14px;
      line-height: 140%;
    }
  
    .div-block-55 {
      flex-direction: column;
      width: 255px;
      min-height: 229px;
      padding-top: 32px;
      padding-right: 11px;
    }
  
    .paragraph-27 {
      margin-bottom: 2px;
    }
  
    .brix---mg-bottom-48px {
      margin-bottom: 40px;
    }
  
    .h2-heading---centered {
      font-size: 30px;
      line-height: 46px;
    }
  
    .brix---grid-2-columns-text-left {
      grid-row-gap: 48px;
      grid-template-columns: 1fr;
    }
  
    .brix---section {
      padding-top: 118px;
      padding-bottom: 118px;
    }
  
    .h2-heading---left-aligned {
      font-size: 30px;
      line-height: 46px;
    }
  
    .brix---grid-2-columns-text-right---desktop {
      grid-row-gap: 48px;
      grid-template-columns: 1fr;
      display: none;
    }
  
    .brix---testimonial-v9-twitter-icon {
      grid-column-gap: 10px;
    }
  
    .brix---twitter-icon-wrapper {
      width: 100%;
    }
  
    .brix---grid-3-columns {
      grid-template-columns: 1fr 1fr;
    }
  
    .brix---btn-primary-2 {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  
    .brix---buttons-row-right---t-left {
      justify-content: flex-start;
    }
  
    .brix---heading-h2-size {
      font-size: 30px;
      line-height: 46px;
    }
  
    .brix---grid-top---text-2-buttons {
      grid-row-gap: 24px;
      grid-template-columns: .7fr;
    }
  
    .brix---section-2 {
      padding-top: 118px;
      padding-bottom: 118px;
    }
  
    .image-5-copy-copy {
      width: 100px;
      display: none;
      inset: auto 20px -80px auto;
    }
  
    .left-arrow-5 {
      flex-direction: column;
      display: flex;
    }
  
    .paragraph-28 {
      max-width: 245px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
    }
  
    .text-26 {
      color: #b7b7b7;
      font-size: 12px;
    }
  
    .items-member-2 {
      width: 255px;
      height: 229px;
    }
  
    .slide-copy {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  
    .text-21-copy {
      font-size: 14px;
    }
  
    .rectangle-249-copy {
      width: 32px;
      height: 32px;
    }
  
    .slider-2-copy {
      margin-top: 30px;
    }
  
    .members-copy {
      margin-top: 0;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .right-arrow-5 {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-bottom: 0;
      inset: auto 0% 130px auto;
    }
  
    .text-members-copy-copy {
      margin-top: 10px;
      padding-right: 17px;
      font-size: 14px;
    }
  
    .text-27 {
      font-size: 14px;
    }
  
    .heading-22 {
      max-width: 287px;
      margin-left: auto;
      margin-right: auto;
      font-size: 32px;
    }
  
    .input-2 {
      box-shadow: none;
      border-style: none;
      flex-direction: column;
      max-width: 100%;
      height: auto;
      margin-top: 28px;
      padding-left: 0;
      padding-right: 0;
      display: flex;
    }
  
    .text-field-4 {
      border-radius: 0;
      width: 100%;
      padding-left: 10px;
    }
  
    .image-47 {
      width: 93px;
      margin-top: 15px;
      position: relative;
      top: 0;
      right: 0;
    }
  
    .div-block-58 {
      border: 2.1px solid #fafafa;
      border-radius: 100px;
      padding: 30px 32px;
      box-shadow: 0 2px 5px #0003;
    }
  
    .div-block-59 {
      width: 100%;
      margin-top: 20px;
      right: 0;
    }
  
    .what-s-inside, .features {
      padding-top: 118px;
      padding-bottom: 118px;
    }
  
    ._3-colomn-reviews {
      grid-row-gap: 48px;
      grid-template-columns: 1fr;
    }
  
    .brix---grid-2-columns-text-right---mobile {
      grid-column-gap: 50px;
      grid-row-gap: 48px;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .brix---heading-h1-size-2 {
      font-size: 48px;
      line-height: 60px;
    }
  
    .brix---mg-bottom-32px {
      margin-bottom: 24px;
    }
  
    .brix---heading-h2-size-2 {
      font-size: 30px;
      line-height: 46px;
    }
  
    .brix---grid-2-columns-text {
      grid-row-gap: 60px;
      grid-template-columns: 1fr;
    }
  
    .about-host {
      padding-top: 118px;
      padding-bottom: 118px;
    }
  
    .heading-19-copy {
      max-width: 296px;
      margin-left: 0;
      margin-right: auto;
      font-size: 32px;
      line-height: 110%;
    }
  
    .brix---heading-h3-size {
      font-size: 22px;
      line-height: 32px;
    }
  
    .brix---display-2 {
      font-size: 58px;
      line-height: 70px;
    }
  
    .brix---grid-4-columns {
      grid-template-columns: 1fr 1fr;
    }
  
    .brix---heading-h2-size-3 {
      font-size: 30px;
      line-height: 46px;
    }
  
    .brix---mg-bottom-56px {
      margin-bottom: 48px;
    }
  
    .brix---section-3 {
      padding-top: 118px;
      padding-bottom: 118px;
    }
  
    .heading-24 {
      margin-left: -201px;
    }
  
    .navbar-wrapper-2 {
      height: 100%;
    }
  
    .nav-menu-wrapper-2 {
      z-index: 1;
      background-color: var(--elements-webflow-library-neutral--300);
      border-radius: 20px;
      width: 100%;
      height: 100vh;
      position: fixed;
      inset: 0%;
    }
  
    .nav-menu {
      background-color: #6e00d8;
      border-radius: 20px;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      width: 100%;
      height: 100%;
      padding: 60px 20px;
      list-style-type: none;
      display: block;
      position: absolute;
      inset: 0%;
    }
  
    .nav-link-2 {
      color: var(--elements-webflow-library-neutral--100);
      text-align: left;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      padding-left: 5px;
      padding-right: 5px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 40px;
      display: flex;
    }
  
    .nav-dropdown-list-2.shadow-three.w--open {
      position: absolute;
    }
  
    .mobile-margin-top-11 {
      margin-top: 15px;
      display: block;
    }
  
    .nav-button-wrapper {
      width: 100%;
      margin-left: 0;
      display: block;
    }
  
    .menu-button-2 {
      z-index: 1;
      padding: 12px;
    }
  
    .menu-button-2.w--open {
      color: #fff;
      background-color: #c8c8c800;
    }
  
    .menu-button-2.close {
      z-index: 0;
      opacity: 0;
      justify-content: center;
      align-items: center;
      height: 50px;
      display: flex;
      position: absolute;
      inset: 16px 15px 0% auto;
    }
  
    .menu-button-2.close.w--open {
      z-index: 9999;
    }
  
    .hero-banner {
      height: 100vh;
    }
  
    .image-58 {
      width: 140px;
      height: 60px;
    }
  
    .buttonprimary.mobonly {
      display: block;
    }
  
    .buttonprimary.dektoponly {
      display: none;
    }
  
    .container-6 {
      max-width: 728px;
    }
  
    .navbar-wrapper-three {
      justify-content: space-between;
    }
  
    .navbar-brand-three {
      position: relative;
    }
  
    .nav-menu-wrapper-three {
      background-color: #0000;
      top: 70px;
    }
  
    .nav-menu-three {
      background-color: #fff;
      border-radius: 50px;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      padding: 20px;
      display: flex;
      box-shadow: 0 8px 50px #0000000d;
    }
  
    .nav-link-3 {
      padding-left: 5px;
      padding-right: 5px;
    }
  
    .nav-dropdown-3 {
      width: 100%;
    }
  
    .nav-dropdown-toggle-3 {
      width: 100%;
      left: -5px;
    }
  
    .nav-dropdown-icon-3 {
      font-size: 30px;
      font-weight: 300;
    }
  
    .nav-dropdown-list-3.shadow-three.w--open {
      position: absolute;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
      width: 100%;
      margin-left: 20px;
      margin-right: 20px;
    }
  
    .menu-button-3 {
      padding: 12px;
    }
  
    .menu-button-3.w--open {
      color: #fff;
      background-color: #a6b1bf;
    }
  
    .quick-stack-2 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .resorces {
      width: 100%;
    }
  
    .text-block-17 {
      display: none;
    }
  
    .feature-stack {
      padding-left: 0;
    }
  
    .features-wrap {
      min-height: auto;
      padding: 10px 20px;
    }
  
    .heading-27, .heading-27.shadow {
      font-size: 24px;
    }
  
    .image-60 {
      height: 80px;
      inset: 0% 0% 0% auto;
    }
  
    .icon-2 {
      display: none;
    }
  
    .div-block-62 {
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .image-61 {
      height: 40px;
    }
  
    .nav-menu-wrapper-3 {
      background-color: #0000;
    }
  
    .nav-menu-2 {
      background-color: #fff;
      flex-wrap: wrap;
      justify-content: space-around;
      align-items: center;
      padding-left: 0;
      display: flex;
    }
  
    .nav-button-wrapper-2 {
      width: 100%;
      margin-left: 0;
    }
  
    .mob-btn-s {
      background-color: #3898ec00;
      border: 1px solid #fff;
      border-radius: 30px;
      width: 100%;
      padding: 12px 30px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 500;
    }
  
    .mob-btn-p {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      background-color: var(--primary);
      color: var(--neutral);
      border-radius: 30px;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-top: 20px;
      padding: 12px 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 100%;
      text-decoration: none;
      transition: all .3s;
      display: flex;
    }
  
    .mob-btn-p:hover {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .mobile-margin-top-11-mob {
      display: block;
    }
  
    .h1 {
      font-size: 100px;
      line-height: 100px;
    }
  
    .join-now {
      min-width: 350px;
    }
  
    .join-now.learn-more {
      height: 60px;
    }
  
    .join-now.purple-bg {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .join-now.purple-bg.hide-mob {
      display: flex;
    }
  
    .join-now.jn-hover.purplebtn.btn-full {
      width: 100%;
      min-width: 100%;
    }
  
    .join-now._w-100 {
      min-width: 100%;
    }
  
    .heading-29 {
      padding-top: 20px;
      padding-bottom: 20px;
      font-size: 22px;
      line-height: 26px;
    }
  
    .section-3 {
      margin-top: 60px;
      margin-bottom: 70px;
    }
  
    .benifits.orange {
      background-color: var(--orange);
    }
  
    .brix---grid-6-columns-logo-strip {
      grid-template-columns: 1fr 1fr 1fr;
      justify-content: center;
    }
  
    .brix---slider-mask {
      position: static;
    }
  
    .brix---mg-bottom-48px-2 {
      margin-bottom: 40px;
    }
  
    .brix---section-small {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .tabs {
      flex-flow: column;
    }
  
    .tabs-menu {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr;
      grid-auto-columns: 1fr;
      width: 100%;
      display: grid;
    }
  
    .tabs-content {
      width: 100%;
      padding-left: 0;
    }
  
    .heading-35.m-text-center {
      text-align: center;
    }
  
    .link-block-6 {
      justify-content: center;
      align-items: center;
    }
  
    .get-funded {
      padding-top: 0;
    }
  
    .section-header {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      flex-flow: column;
    }
  
    .link-block-7 {
      width: 320px;
    }
  
    .link-block-7._w-100 {
      width: 100%;
    }
  
    .quick-stack-5 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
    }
  
    .gray {
      font-family: Axiforma, sans-serif;
    }
  
    .heading-45.sky-text {
      color: var(--accent);
    }
  
    .heading-47 {
      margin-left: auto;
      margin-right: auto;
      font-size: 45px;
    }
  
    .heading-47.text-center {
      line-height: 65px;
    }
  
    .heading-47.m-text-center {
      text-align: center;
    }
  
    .heading-47.m-text-center.whitetext {
      color: var(--elements-webflow-library-neutral--300);
    }
  
    .heading-47.your-partner--h {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .heading-47.heading-47-mb-10 {
      text-align: center;
    }
  
    .heading-47.max-700 {
      max-width: 700px;
    }
  
    .quick-stack-7 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .price-card.border-none.asset-bg {
      flex-flow: column;
      justify-content: space-between;
      display: flex;
    }
  
    .price-numbers {
      border-top-left-radius: 15px;
      border-bottom-right-radius: 15px;
      border-bottom-left-radius: 15px;
    }
  
    .price-numbers.pink-bg {
      border-top-left-radius: 15px;
    }
  
    .price-features {
      border-top: 1px solid var(--elements-webflow-library-general--shadow-01);
      margin-bottom: 0;
      display: none;
    }
  
    .traders-love {
      padding-bottom: 40px;
    }
  
    .heading-51 {
      color: var(--color);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-size: 24px;
      line-height: 34px;
    }
  
    .heading-51.text-left {
      max-width: 100%;
    }
  
    .heading-51.text-left.mobile-text-center {
      text-align: center;
    }
  
    .heading-51.text-left.mobile-text-center._700-mx {
      max-width: 700px;
    }
  
    .heading-51.text-left.heart-text {
      text-align: center;
    }
  
    .heading-51.text-white {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .heading-51.textwhite.m-text-left {
      text-align: left;
    }
  
    .heading-51.mb-20px {
      margin-bottom: 20px;
    }
  
    .div-block-71 {
      padding-top: 5px;
      position: relative;
      bottom: 50px;
    }
  
    .quick-stack-9 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-72 {
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .quick-stack-10 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .payouts-fast {
      padding-bottom: 40px;
    }
  
    .div-block-74 {
      text-align: left;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-74.pink-border {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .latest-rewards {
      overflow: hidden;
    }
  
    .swiper-wrapper.swiper-funded {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
  
    .swiper-wrapper.swiper-wrapper-slider {
      margin-top: 20px;
    }
  
    .text-block-31 {
      font-size: 40px;
    }
  
    .heading-58 {
      max-width: 700px;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .heading-58.m-text-center {
      text-align: center;
    }
  
    .div-block-79 {
      height: 110px;
    }
  
    .div-block-83 {
      flex-flow: column;
      justify-content: center;
      align-items: center;
    }
  
    .image-81 {
      margin-bottom: 10px;
    }
  
    .div-block-84 {
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .section-8 {
      margin-top: 50px;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .image-82 {
      width: 50px;
      height: 50px;
      margin-bottom: 0;
    }
  
    .div-block-85 {
      display: flex;
    }
  
    .link-block-11.border-black-btn {
      height: 60px;
    }
  
    .link-block-11.btn-small-mob.hvr-purple {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .swiper.mysswiper {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      display: flex;
    }
  
    .quick-stack-15 {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
    }
  
    .cell-6 {
      justify-content: center;
      align-items: center;
    }
  
    .quick-stack-16 {
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-83 {
      height: auto;
    }
  
    .join-our-community {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .wrap-marque-item {
      width: 190px;
    }
  
    .div-block-91.div-full {
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .text-block-43 {
      font-size: 16px;
      line-height: 22px;
    }
  
    .cell-8 {
      justify-content: center;
      align-items: center;
    }
  
    .quick-stack-22 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
      margin-top: 40px;
    }
  
    .transparency-bullo {
      margin-top: 50px;
      padding-top: 0;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .heading-67.transcapsuletext {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
      line-height: 22px;
    }
  
    .support-faqs.show-mobile {
      display: block;
    }
  
    .div-block-98 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .quick-stack-24 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .heading-68 {
      font-size: 50px;
      line-height: 50px;
    }
  
    .div-block-101 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .gradiant-btn {
      min-width: 270px;
    }
  
    .heading-69, .heading-70 {
      font-size: 29px;
    }
  
    .div-block-102 {
      margin-top: 20px;
    }
  
    .image-94, .image-95 {
      height: 40px;
    }
  
    .heading-71 {
      font-size: 29px;
    }
  
    .div-block-103 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      margin-top: 20px;
    }
  
    .image-96, .image-97, .image-98, .image-99, .image-100 {
      height: 40px;
    }
  
    .heading-72 {
      font-size: 29px;
    }
  
    .image-105 {
      margin-top: 0;
    }
  
    .heading-73 {
      font-size: 50px;
      line-height: 55px;
    }
  
    .heading-73.font-32-m.m-text-left {
      text-align: left;
    }
  
    .image-110.show-mobile {
      display: block;
    }
  
    .image-112 {
      height: 300px;
    }
  
    .image-114 {
      object-fit: cover;
      object-position: 100% 50%;
      width: 100%;
      height: 100%;
    }
  
    .see-all-benefits {
      display: flex;
      position: relative;
    }
  
    .see-all-benefits.top-10px {
      position: relative;
    }
  
    .mobile-wraper {
      flex-flow: column;
      display: flex;
    }
  
    .div-block-110.m-text-center {
      text-align: center;
    }
  
    .image-115 {
      width: 50px;
      height: 50px;
    }
  
    .quick-stack-29 {
      padding-top: 0;
    }
  
    .div-block-113 {
      margin-bottom: 20px;
    }
  
    .pro-treaders {
      padding-left: 20px;
    }
  
    .button-11.button-11-transparent {
      border-color: var(--neutral);
      color: var(--neutral);
      background-color: #fff0;
      margin-top: 20px;
      padding-top: 10px;
      padding-bottom: 10px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
    }
  
    .quick-stack-30 {
      grid-column-gap: 30px;
    }
  
    .div-block-116 {
      display: block;
    }
  
    .brix---grid-6-columns-logo-strip-2 {
      grid-template-columns: 1fr 1fr 1fr;
      justify-content: center;
    }
  
    .brix---grid-6-columns-logo-strip-2.brix---grid-4-columns-logo-strip-2 {
      grid-column-gap: 20px;
      grid-row-gap: 0px;
      grid-template-columns: 1fr 1fr;
    }
  
    .brix---slider-mask-2 {
      position: static;
    }
  
    .brix---mg-bottom-48px-3 {
      margin-bottom: 40px;
    }
  
    .brix---section-small-2, .brix---section-small-3 {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .div-block-117 {
      flex-flow: column;
    }
  
    .heading-77.m-text-center {
      text-align: center;
    }
  
    .div-block-120 {
      text-align: center;
      display: block;
    }
  
    .trade-list {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
      flex-flow: wrap;
    }
  
    .transparence-info {
      padding-top: 40px;
    }
  
    .div-block-126 {
      text-align: center;
    }
  
    .section-15 {
      margin-bottom: 60px;
    }
  
    .quick-stack-32 {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      margin-bottom: 40px;
    }
  
    .pricing-banner.our-challanges {
      padding-top: 40px;
    }
  
    .link-block-17.link-block-17-roadm {
      width: 100%;
    }
  
    .div-block-130 {
      text-align: center;
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .trading-grid {
      box-shadow: 0 2px 20px #fdfafa40;
    }
  
    .paragraph-37 {
      font-size: 20px;
      line-height: 30px;
    }
  
    .quick-stack-36 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .image-139 {
      width: 120px;
    }
  
    .heading-86 {
      font-size: 23px;
    }
  
    .div-block-137 {
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .div-block-140 {
      height: 100%;
    }
  
    .security-at {
      margin-bottom: 0;
    }
  
    .cell-29 {
      justify-content: center;
      align-items: center;
    }
  
    .image-151, .image-153.image-153-full {
      max-width: 100%;
    }
  
    .div-block-148 {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .hide-mobile {
      display: none;
    }
  
    .div-block-154 {
      height: 400px;
    }
  
    .hide-mob {
      display: block;
    }
  
    .div-block-156 {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .desktop-version {
      display: none;
    }
  
    .mobile-version {
      display: block;
    }
  
    .link-block-18 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      background-color: var(--elements-webflow-library-neutral--100);
      color: var(--neutral);
      border-radius: 20px;
      padding: 15px 20px;
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
    }
  
    .link-block-18.mb-20p {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px #0003;
    }
  
    .image-157 {
      width: 20px;
      height: 20px;
    }
  
    .div-block-160 {
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .heading-94 {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .div-block-161 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      border: 3px solid var(--red);
      border-radius: 30px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      place-content: center;
      height: 100%;
      padding: 15px 20px;
      display: grid;
      box-shadow: inset 8px 8px 150px #fdfafa40;
    }
  
    .div-block-161.div-block-161-green {
      border-color: var(--hover-green);
      height: 100%;
    }
  
    .div-block-161.div-block-161-yellow {
      border-color: var(--yellow);
    }
  
    .div-block-161.div-block-161-pink {
      border-color: var(--accent-pink);
    }
  
    .image-158 {
      object-fit: contain;
    }
  
    .div-block-163 {
      text-align: center;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      margin-left: auto;
      margin-right: auto;
      display: flex;
    }
  
    .div-block-166, .div-block-167 {
      text-align: center;
    }
  
    .code-embed-3 {
      width: 0;
      height: 0;
    }
  
    .batter-trading {
      display: block;
      position: absolute;
      inset: auto 0% -17px;
      overflow: hidden;
    }
  
    .trading-h2 {
      color: #d9e8ff80;
      text-align: left;
      margin-top: 0;
      margin-bottom: 0;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 42px;
      font-weight: 700;
      line-height: 37px;
      display: none;
    }
  
    .image-160 {
      display: none;
    }
  
    .heading-97 {
      color: var(--accent-pink);
      font-size: 55px;
    }
  
    .heading-97.green {
      color: var(--primary);
    }
  
    .heading-98 {
      color: var(--elements-webflow-library-neutral--100);
      font-size: 32px;
      line-height: 35px;
    }
  
    .div-block-170 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      justify-content: center;
      align-items: center;
      display: grid;
    }
  
    .text-block-63 {
      color: var(--elements-webflow-library-neutral--100);
      text-align: center;
      border: 1px solid #fff;
      border-radius: 30px;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 90%;
      height: 50px;
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 10px;
      padding-bottom: 10px;
      font-size: 20px;
      text-decoration: none;
      display: flex;
    }
  
    .tap-to-collapse {
      opacity: 0;
      position: absolute;
    }
  
    .div-block-172 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .image-167 {
      object-fit: contain;
      width: 200px;
      height: 100px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .image-168 {
      height: 110px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .text-block-65 {
      text-align: center;
      margin-top: 10px;
    }
  
    .image-169 {
      width: 20px;
    }
  
    .div-block-183 {
      margin-bottom: 5px;
    }
  
    .div-block-185 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .image-185 {
      width: 60px;
      height: 60px;
    }
  
    .image-187 {
      object-fit: contain;
      width: 200px;
      height: 100px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-187 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
    }
  
    .green--star {
      color: var(--primary);
    }
  
    .text-block-72 {
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .div-block-188 {
      height: 600px;
    }
  
    .link-block-24 {
      height: 50px;
      font-size: 20px;
      line-height: 50px;
    }
  
    .image-192 {
      height: 34px;
    }
  
    .div-block-189 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      flex-flow: column;
    }
  
    .image-193.hide-mobile {
      display: none;
    }
  
    .sitemapmenu {
      font-size: 28px;
      line-height: 50px;
    }
  
    .div-block-190 {
      grid-template-columns: 1fr;
      margin-top: 30px;
    }
  
    .mapitems, .div-block-201 {
      margin-top: 0;
    }
  
    .cell-35 {
      justify-content: center;
      align-items: center;
    }
  
    .heading-107.m-text-center {
      text-align: center;
    }
  
    .heading-108 {
      line-height: 70px;
    }
  
    .join-now-2 {
      min-width: 270px;
    }
  
    .cell-36 {
      display: none;
    }
  
    .cell-37 {
      justify-content: center;
      align-items: center;
    }
  
    .div-block-207 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      text-align: center;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      place-content: center;
      display: grid;
    }
  
    .section-23, .section-23.perfitfi {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-208 {
      width: 100%;
      margin-left: 0;
    }
  
    .image-208.show-mobile {
      display: block;
    }
  
    .wrap-road-image {
      top: 50px;
      right: 0%;
    }
  
    .text-block-83 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .border-line {
      width: 100%;
      position: static;
    }
  
    .wrap-year-title {
      margin-bottom: 20px;
    }
  
    .q2-blocks.q2-blocks-first, .q2-blocks.q2-blocks-third {
      margin-top: 0;
    }
  
    .q2-list {
      margin-bottom: 40px;
    }
  
    .wrap-q2-lists {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      flex-flow: column-reverse;
    }
  
    .heading-110 {
      font-size: 20px;
    }
  
    .cookie-banner-2 {
      width: 60%;
    }
  
    .div-block-233 {
      text-align: center;
    }
  
    .detailed {
      margin-top: 10px;
    }
  
    .heading-119 {
      color: var(--neutral);
      font-size: 50px;
      line-height: 55px;
    }
  
    .heading-119.m-text-center {
      text-align: center;
    }
  
    .paragraph-54 {
      font-size: 18px;
      line-height: 22px;
    }
  
    .text-span-34 {
      color: var(--gray);
    }
  
    .whitetext {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .div-block-255 {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .div-block-256 {
      text-align: center;
    }
  
    .div-block-257 {
      text-align: center;
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .div-block-258 {
      display: none;
    }
  
    .flex-block, .cell-44 {
      justify-content: center;
      align-items: center;
    }
  
    .div-block-259 {
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .cell-45 {
      justify-content: center;
      align-items: center;
    }
  
    .image-233 {
      display: none;
    }
  
    .div-block-260 {
      text-align: center;
    }
  
    .div-block-261 {
      text-align: left;
    }
  
    .image-234 {
      width: 30px;
      height: 30px;
    }
  
    .heading-124 {
      font-size: 24px;
      line-height: 30px;
    }
  
    .heading-125 {
      font-size: 45px;
    }
  
    .image-239 {
      max-width: 80%;
      margin-left: 32px;
    }
  
    .footer-bottom {
      margin-top: 100px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .small-columns {
      flex-direction: column;
      align-items: center;
    }
  
    .text-14 {
      font-size: 24px;
    }
  
    .text-15 {
      font-size: 12px;
    }
  
    .heading-6 {
      font-size: 24px;
    }
  
    .paragraph-4 {
      font-size: 12px;
    }
  
    .heading-7.br-block {
      letter-spacing: -.64px;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 32px;
      line-height: 110%;
    }
  
    .image-13 {
      margin-top: 60px;
      padding-bottom: 60px;
    }
  
    ._w-networking {
      min-height: 780px;
    }
  
    .absolute-nw-2 {
      inset: 70px 13px auto auto;
    }
  
    .image-28 {
      display: block;
    }
  
    .div-block-33 {
      width: 96px;
    }
  
    .paragraph-22 {
      max-width: 301px;
      font-size: 12px;
    }
  
    .text-14-copy {
      font-size: 24px;
    }
  
    .button-text {
      font-size: 17px;
    }
  
    .button-container, .button-container-codpy {
      padding: 20px;
    }
  
    .button-text-copy {
      font-size: 17px;
    }
  
    .text-15-copy {
      font-size: 12px;
    }
  
    .navbar-logo-left-container {
      max-width: 100%;
    }
  
    .navbar-brand {
      padding-left: 0;
    }
  
    .nav-menu-two {
      border-radius: 20px;
      flex-direction: column;
      padding-bottom: 30px;
    }
  
    .nav-link {
      padding-top: 10px;
      padding-bottom: 10px;
      display: inline-block;
    }
  
    .nav-dropdown {
      flex-direction: column;
      align-items: center;
      display: flex;
    }
  
    .nav-dropdown-toggle {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  
    .nav-dropdown-list.shadow-three {
      box-shadow: 0 8px 50px #0000000d;
    }
  
    .nav-dropdown-list.shadow-three.w--open {
      position: relative;
    }
  
    .nav-dropdown-list.shadow-three.mobile-shadow-hide {
      box-shadow: none;
    }
  
    .nav-divider {
      width: 200px;
      max-width: 100%;
      height: 1px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .nav-link-accent---margin-left {
      margin-right: 5px;
      padding-top: 10px;
      padding-bottom: 10px;
      display: inline-block;
    }
  
    .mobile-margin-top-10 {
      margin-top: 10px;
    }
  
    .brix---floating-image-hero-v1---1 {
      max-width: 500px;
    }
  
    .brix---floating-image-hero-v1---2 {
      max-width: 480px;
    }
  
    .brix---btn-secondary {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .brix---btn-primary {
      padding: 20px 32px;
    }
  
    .brix---button-row-left {
      margin-right: 16px;
    }
  
    .brix---mg-bottom-40px {
      margin-bottom: 24px;
    }
  
    .brix---heading-h1-size {
      margin-bottom: 12px;
      font-size: 38px;
      line-height: 46px;
    }
  
    .brix---grid-hero-v1 {
      grid-template-columns: 1fr;
    }
  
    .header {
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .brix---mg-bottom-48px {
      margin-bottom: 32px;
    }
  
    .h2-heading---centered {
      font-size: 28px;
      line-height: 40px;
    }
  
    .brix---mg-bottom-16px {
      margin-bottom: 8px;
    }
  
    .brix---grid-2-columns-text-left {
      grid-template-columns: 1fr;
    }
  
    .brix---section {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  
    .h2-heading---left-aligned {
      font-size: 28px;
      line-height: 40px;
    }
  
    .brix---grid-2-columns-text-right---desktop {
      grid-template-columns: 1fr;
    }
  
    .brix---text-100 {
      font-size: 15px;
    }
  
    .brix---text-200-bold {
      font-size: 16px;
      line-height: 18px;
    }
  
    .brix---avatar-circle-03 {
      width: 56px;
      max-width: 56px;
      height: 56px;
      max-height: 56px;
    }
  
    .brix---grid-3-columns {
      grid-template-columns: 1fr;
    }
  
    .brix---btn-secondary-2 {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .brix---btn-primary-2 {
      padding: 20px 32px;
    }
  
    .brix---button-row-left-2 {
      margin-right: 16px;
    }
  
    .brix---heading-h2-size {
      font-size: 28px;
      line-height: 40px;
    }
  
    .brix---mg-bottom-16px-2 {
      margin-bottom: 8px;
    }
  
    .brix---grid-top---text-2-buttons {
      grid-template-columns: .9fr;
    }
  
    .brix---section-2, .what-s-inside, .features {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  
    ._3-colomn-reviews, .brix---grid-2-columns-text-right---mobile {
      grid-template-columns: 1fr;
    }
  
    .brix---heading-h5-size {
      font-size: 16px;
      line-height: 22px;
    }
  
    .brix---heading-h1-size-2 {
      margin-bottom: 12px;
      font-size: 38px;
      line-height: 46px;
    }
  
    .brix---grid-2-columns-2-col-mbl {
      grid-template-columns: 1fr 1fr;
    }
  
    .brix---heading-h2-size-2 {
      font-size: 28px;
      line-height: 40px;
    }
  
    .brix---subtitle {
      font-size: 17px;
      line-height: 19px;
    }
  
    .brix---image-wrapper-br-24px-shadow {
      box-shadow: 0 4px 22px 0 var(--elements-webflow-library-general--shadow-04);
      border-radius: 14px;
    }
  
    .brix---grid-2-columns-text {
      grid-template-columns: 1fr;
    }
  
    .about-host {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  
    .brix---display-2 {
      font-size: 48px;
      line-height: 56px;
    }
  
    .brix---heading-h2-size-3 {
      font-size: 28px;
      line-height: 40px;
    }
  
    .brix---mg-bottom-56px {
      margin-bottom: 40px;
    }
  
    .brix---section-3 {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  
    .navbar-brand-2 {
      padding-left: 0;
    }
  
    .nav-menu {
      border-radius: 0;
      flex-direction: column;
      padding-top: 60px;
      padding-bottom: 30px;
      padding-left: 20px;
    }
  
    .nav-link-2 {
      padding-top: 10px;
      padding-bottom: 10px;
      display: inline-block;
    }
  
    .nav-link-2.nav-link-black, .nav-link-2.nav-link-black.w--current {
      color: var(--elements-webflow-library-neutral--100);
      font-size: 40px;
    }
  
    .nav-dropdown-2 {
      flex-direction: column;
      align-items: center;
      display: flex;
    }
  
    .nav-dropdown-toggle-2 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  
    .nav-dropdown-list-2.shadow-three {
      box-shadow: 0 8px 50px #0000000d;
    }
  
    .nav-dropdown-list-2.shadow-three.w--open {
      position: relative;
    }
  
    .nav-dropdown-list-2.shadow-three.mobile-shadow-hide {
      box-shadow: none;
    }
  
    .mobile-margin-top-11 {
      margin-top: 10px;
    }
  
    .site-container {
      max-width: 100%;
    }
  
    .navbar-brand-three {
      padding-left: 0;
    }
  
    .nav-menu-three {
      border-radius: 20px;
      flex-direction: column;
      padding-bottom: 30px;
    }
  
    .nav-menu-block {
      flex-direction: column;
    }
  
    .nav-link-3 {
      padding-top: 10px;
      padding-bottom: 10px;
      display: inline-block;
    }
  
    .nav-dropdown-3 {
      flex-direction: column;
      align-items: center;
      display: flex;
    }
  
    .nav-dropdown-toggle-3 {
      padding-top: 0;
      padding-bottom: 0;
      padding-right: 0;
    }
  
    .nav-dropdown-icon-3.dropdown-black {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .nav-dropdown-list-3.shadow-three {
      box-shadow: 0 8px 50px #0000000d;
    }
  
    .nav-dropdown-list-3.shadow-three.w--open {
      position: relative;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
      margin-top: 0;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.feature.w--open {
      margin-top: 0;
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide {
      box-shadow: none;
    }
  
    .nav-link-accent {
      margin-right: 5px;
      padding-top: 10px;
      padding-bottom: 10px;
      display: inline-block;
    }
  
    .mobile-margin-top-12 {
      margin-top: 10px;
    }
  
    .quick-stack-2 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      height: 500px;
      overflow: auto;
    }
  
    .image-59 {
      object-fit: contain;
      width: 28px;
      height: 28px;
    }
  
    .navbar-brand-3 {
      padding-left: 0;
    }
  
    .nav-menu-2 {
      flex-direction: column;
      padding-bottom: 30px;
      padding-left: 0;
    }
  
    .nav-dropdown-4 {
      flex-direction: column;
      align-items: center;
      display: flex;
    }
  
    .nav-dropdown-toggle-4 {
      padding-top: 10px;
      padding-bottom: 10px;
    }
  
    .mob-btn-p {
      margin-top: 20px;
    }
  
    .h2-green {
      font-size: 34px;
      line-height: 20px;
    }
  
    .wrap-container {
      height: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .h1 {
      font-size: 80px;
      line-height: 80px;
    }
  
    .wrap-capsuls.m-1100 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    .capsule.capsule-home {
      padding-bottom: 0;
    }
  
    .heading-28 {
      font-size: 17px;
    }
  
    .heading-28.heading-28-text-left {
      text-align: left;
    }
  
    .join-now {
      min-width: 100%;
      max-width: 100%;
      height: 50px;
      font-size: 16px;
    }
  
    .join-now.learn-more.min-100.btn-green {
      width: 100%;
    }
  
    .join-now.purple-bg.show-mob {
      display: flex;
    }
  
    .join-now.purple-bg.hide-mob {
      display: none;
    }
  
    .join-now.radius-0 {
      width: 100%;
      min-width: 100%;
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .heading-30 {
      line-height: 50px;
    }
  
    .section-3 {
      margin-top: 50px;
      margin-bottom: 50px;
    }
  
    .heading-31 {
      font-size: 24px;
    }
  
    .heading-32 {
      margin-top: 0;
      font-size: 16px;
    }
  
    .heading-33 {
      font-size: 24px;
      line-height: 30px;
    }
  
    .brix---grid-6-columns-logo-strip {
      grid-column-gap: 72px;
      grid-row-gap: 32px;
      grid-template-columns: auto auto;
      transform: scale(.96);
    }
  
    .brix---text-300-bold {
      font-size: 18px;
      line-height: 22px;
    }
  
    .brix---mg-bottom-48px-2 {
      margin-bottom: 32px;
    }
  
    .brix---section-small {
      padding-top: 72px;
      padding-bottom: 72px;
    }
  
    .quick-stack-3 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .quick-stack-4 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .heading-35 {
      font-size: 40px;
      line-height: 45px;
    }
  
    .link-block-6 {
      flex-flow: row;
    }
  
    .get-funded {
      padding-top: 50px;
    }
  
    .section-header {
      flex-flow: column;
    }
  
    .section-header.section-header-2 {
      text-align: center;
      flex-flow: column;
      justify-content: space-between;
      align-items: center;
    }
  
    .heading-37 {
      font-size: 40px;
      line-height: 50px;
    }
  
    .link-block-7 {
      width: 100%;
      height: 50px;
    }
  
    .quick-stack-5 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
    }
  
    .quick-stack-6 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .heading-47 {
      width: 100%;
      font-size: 40px;
      line-height: 50px;
    }
  
    .heading-47.text-center {
      font-size: 40px;
      line-height: 50px;
    }
  
    .heading-47.text-center.text-white {
      line-height: 50px;
    }
  
    .heading-47.yellow.right {
      font-size: 36px;
      line-height: 40px;
    }
  
    .quick-stack-7 {
      margin-left: 0;
      margin-right: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .link-block-10.apply-today {
      min-width: 96%;
    }
  
    .heading-51.text-left.mt-20 {
      max-width: 100%;
    }
  
    .heading-51.text-left.mobile-text-center {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .heading-51.text-left.heart-text {
      text-align: center;
    }
  
    .heading-51.text-white.m-text-left, .heading-51.m-text-left {
      text-align: left;
    }
  
    .quick-stack-8 {
      margin-left: 0;
      margin-right: 0;
    }
  
    .quick-stack-9 {
      padding-top: 10px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .quick-stack-10 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .payouts-fast {
      margin-top: 20px;
      padding-bottom: 0;
    }
  
    .image-74 {
      height: 50px;
    }
  
    .quick-stack-13 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .heading-56 {
      font-size: 32px;
      line-height: 32px;
    }
  
    .image-75 {
      height: 50px;
    }
  
    .text-block-31 {
      font-size: 24px;
      line-height: 40px;
    }
  
    .image-76, .image-77, .image-78 {
      height: 30px;
    }
  
    .heading-57 {
      font-size: 36px;
      line-height: 40px;
    }
  
    .heading-58.text-center {
      font-size: 24px;
      line-height: 30px;
    }
  
    .heading-58.m-text-center {
      text-align: center;
    }
  
    .div-block-82 {
      padding: 20px;
    }
  
    .quick-stack-14 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-81 {
      margin-top: 0;
    }
  
    .section-8 {
      margin-top: 50px;
      padding-top: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .text-block-34 {
      font-size: 16px;
    }
  
    .link-block-11 {
      font-size: 15px;
    }
  
    .link-block-11.border-black-btn {
      width: 100%;
    }
  
    .quick-stack-15 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .cell-6 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .text-block-37 {
      font-size: 14px;
    }
  
    .paragraph-32 {
      font-size: 10px;
      line-height: 15px;
    }
  
    .image-83 {
      height: 100%;
    }
  
    .section-9 {
      margin-top: 50px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .cell-7 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-84 {
      height: 30px;
    }
  
    .section-10, .join-our-community {
      margin-top: 50px;
    }
  
    .quick-stack-18 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .marquee-block {
      width: 150px;
    }
  
    .wrap-marque-item {
      height: 140px;
    }
  
    .heading-66.text-purple {
      font-size: 36px;
      line-height: 40px;
    }
  
    .text-block-41 {
      font-size: 16px;
    }
  
    .quick-stack-19 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .section-12 {
      margin-top: 50px;
      padding-bottom: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-91 {
      flex-flow: column;
      padding-left: 20px;
      padding-right: 20px;
      display: flex;
    }
  
    .quick-stack-21 {
      grid-column-gap: 0px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .cell-8 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .quick-stack-22 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .transparency-bullo {
      background-image: linear-gradient(351deg, #fff0, #64ed80cc);
    }
  
    .image-90 {
      width: 140px;
    }
  
    .support-faqs {
      background-image: linear-gradient(0deg, #efefee0d, #fbe30da8);
      border-radius: 20px;
    }
  
    .div-block-97 {
      flex-flow: column;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .small-heading.text-purple {
      font-size: 32px;
      top: -10px;
    }
  
    .quick-stack-24 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .image-92 {
      object-fit: cover;
      border-radius: 30px;
      height: 500px;
    }
  
    .div-block-100 {
      border-radius: 40px;
    }
  
    .heading-68 {
      text-align: center;
      max-width: 250px;
      font-size: 60px;
      line-height: 60px;
    }
  
    .div-block-101 {
      flex-flow: column;
      display: flex;
    }
  
    .gradiant-btn {
      min-width: 320px;
      height: 50px;
      font-size: 16px;
    }
  
    .quick-stack-25 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .heading-69 {
      font-size: 24px;
    }
  
    .link-block-12 {
      font-family: Brcandor Bf Regular, sans-serif;
      font-weight: 400;
    }
  
    .heading-70 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .cell-16 {
      padding-top: 30px;
    }
  
    .image-94, .image-95 {
      height: 50px;
    }
  
    .heading-71 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-72 {
      text-align: center;
    }
  
    .image-105 {
      height: 50px;
    }
  
    .image-105.image-105-2, .image-105.image-105-3 {
      height: 100px;
    }
  
    .div-block-107 {
      flex-flow: column;
      justify-content: center;
      align-items: flex-start;
      margin-top: 20px;
      display: flex;
    }
  
    .heading-73 {
      text-align: left;
      font-size: 24px;
      line-height: 32px;
    }
  
    .div-block-108 {
      width: 223px;
    }
  
    .cell-17 {
      justify-content: center;
      align-items: flex-start;
    }
  
    .image-108 {
      height: 60px;
    }
  
    .image-109 {
      height: 70px;
      margin-bottom: 20px;
    }
  
    .image-111 {
      width: 100%;
      max-width: 100%;
      height: 566.922px;
    }
  
    .image-112 {
      object-position: 0% 0%;
      width: 100%;
      height: 300px;
    }
  
    .cell-18 {
      justify-content: center;
      align-items: center;
    }
  
    .text-block-46 {
      font-size: 16px;
    }
  
    .mobile-wraper {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .div-block-110 {
      width: 100%;
    }
  
    .image-115 {
      height: 35px;
    }
  
    .image-116 {
      height: 50px;
    }
  
    .image-117, .link-block-13 {
      width: 100%;
    }
  
    .cell-20 {
      display: none;
    }
  
    .team-block {
      justify-content: space-between;
    }
  
    .quick-stack-30 {
      padding-top: 10px;
    }
  
    .brix---grid-6-columns-logo-strip-2 {
      grid-column-gap: 72px;
      grid-row-gap: 32px;
      grid-template-columns: auto auto;
      transform: scale(.96);
    }
  
    .brix---text-300-bold-2 {
      font-size: 18px;
      line-height: 22px;
    }
  
    .brix---mg-bottom-48px-3 {
      margin-bottom: 32px;
    }
  
    .brix---section-small-2, .brix---section-small-3 {
      padding-top: 72px;
      padding-bottom: 72px;
    }
  
    .heading-79 {
      overflow: hidden;
    }
  
    .transparence-info {
      padding-top: 30px;
    }
  
    .review-grid {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      padding: 0;
    }
  
    .cell-21 {
      padding-bottom: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-127 {
      border-radius: 20px;
      width: 100%;
      position: relative;
      top: -9px;
    }
  
    .pricing-banner.roadmap-banner {
      background-image: linear-gradient(#6e00d8, #fff);
    }
  
    .link-block-17 {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .heading-82.hide-mob, .cell-23.hide-mob {
      display: none;
    }
  
    .quick-stack-33 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-137 {
      width: 100%;
      height: 100%;
    }
  
    .quick-stack-34 {
      padding-top: 10px;
    }
  
    .quick-stack-36 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .image-140 {
      display: none;
    }
  
    .image-141 {
      height: 100%;
      margin-bottom: 20px;
    }
  
    .div-block-136 {
      flex-flow: column;
    }
  
    .image-145 {
      margin-left: auto;
      margin-right: auto;
    }
  
    .cell-26 {
      padding-top: 20px;
    }
  
    .quick-stack-38 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .image-151 {
      margin-bottom: 40px;
    }
  
    .quick-stack-42 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-172 {
      height: 28px;
    }
  
    .link-block-24 {
      width: 100%;
    }
  
    .quick-stack-49 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .cell-35 {
      justify-content: center;
      align-items: center;
    }
  
    .quick-stack-50 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .heading-107 {
      font-size: 40px;
      line-height: 45px;
    }
  
    .heading-107.m-text-center {
      text-align: center;
    }
  
    .heading-108 {
      font-size: 40px;
      line-height: 50px;
    }
  
    .join-now-2 {
      min-width: 100%;
      max-width: 100%;
      height: 50px;
      font-size: 16px;
    }
  
    .cell-37 {
      justify-content: center;
      align-items: center;
    }
  
    .image-206 {
      max-width: 80%;
    }
  
    .wrap-road-image {
      top: 34px;
    }
  
    .heading-110 {
      font-size: 16px;
    }
  
    .cookie-content {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
  
    .cookie-row-2 {
      flex-direction: column;
      font-size: 14px;
    }
  
    .cookie-heading {
      font-size: 24px;
    }
  
    .cookie-banner-2 {
      text-align: center;
      align-items: flex-start;
      width: 90%;
      margin-right: auto;
      inset: auto 0% 0%;
    }
  
    .cookie-heading-wrapper {
      align-items: center;
    }
  
    .cookie-buttons {
      justify-content: center;
      width: 100%;
      margin-top: 24px;
    }
  
    .paragraph-53.small {
      font-size: 14px;
    }
  
    .cookie-modal_button-wrap {
      padding: 1.5rem;
    }
  
    .cookie-modal_closebutton {
      margin-right: 1.25rem;
    }
  
    .cookie-modal_content-wrap {
      padding-bottom: 1.5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  
    .avg-box {
      width: 100%;
    }
  
    .bullo-content {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .heading-126 {
      font-size: 67px;
      line-height: 100%;
    }
  
    .heading-127 {
      font-size: 30px;
      line-height: 32px;
    }
  
    .header-logo {
      padding-bottom: 60px;
    }
  
    .button-13 {
      padding-top: 10px;
      padding-bottom: 7px;
      font-size: 13px;
      line-height: 20px;
    }
  
    .overlay_img {
      display: none;
    }
  
    .overlay_img.overlay_img_phone {
      object-fit: cover;
      display: block;
    }
  
    .heading-128 {
      font-size: 20px;
      line-height: 135%;
    }
  
    .progres-row {
      padding-bottom: 40px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-264 {
      background-color: #06214c00;
      width: 40px;
      height: 40px;
    }
  
    .heading-129 {
      margin-top: 0;
      font-size: 14px;
    }
  
    .text-block-99 {
      font-size: 14px;
      line-height: 135%;
    }
  
    .image-239 {
      max-width: 77%;
      height: 2px;
      margin-left: 28px;
      top: 21px;
    }
  
    .footer-bottom {
      margin-top: 60px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .heading-130 {
      font-size: 20px;
    }
  }
  
  @media screen and (max-width: 479px) {
    .main {
      margin-bottom: 25px;
    }
  
    .big-container {
      overflow: hidden;
    }
  
    .container {
      cursor: auto;
    }
  
    .paragraph {
      text-align: left;
    }
  
    .div-block-2 {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .video {
      margin-top: 90px;
    }
  
    .usm {
      opacity: 1;
      border-radius: 0;
      margin-top: 30px;
      overflow: visible;
    }
  
    .right {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      display: flex;
    }
  
    .cell {
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
    }
  
    .dashboard {
      border-color: #fff3;
    }
  
    .frame-427323407 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      overflow: hidden;
    }
  
    .frame-427322991 {
      object-fit: cover;
      border: 1px solid #b3b3b333;
      border-radius: 16px;
      flex-wrap: nowrap;
      justify-content: flex-start;
      height: 103.566%;
      padding-top: 33px;
      padding-left: 0;
      overflow: visible;
    }
  
    .text-14 {
      margin-top: -5px;
      padding-left: 24px;
      padding-right: 0;
      overflow: visible;
    }
  
    .text-15 {
      padding-left: 24px;
    }
  
    .comdp {
      border-color: #b3b3b333;
      height: 522px;
      padding-top: 59px;
    }
  
    .comp-kolom {
      margin-top: 225px;
    }
  
    .image-10 {
      border: 1px solid #fff0;
      overflow: visible;
    }
  
    .image-11 {
      overflow: visible;
    }
  
    .heading-8.br-block {
      width: 309px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .marquee-wrapper {
      padding-top: 25px;
      padding-bottom: 25px;
      overflow: hidden;
    }
  
    .image__wrapper {
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
    }
  
    .absolute-nw {
      margin-top: 143px;
      margin-right: -10px;
    }
  
    .absolute-nw-2 {
      margin-top: 119px;
      margin-right: -20px;
    }
  
    .right-arrow-3, .slide-nav-3 {
      bottom: 150px;
    }
  
    .members {
      overflow: hidden;
    }
  
    .items-member {
      margin-bottom: 20px;
      overflow: hidden;
    }
  
    .wrapper-slider-members {
      flex-direction: column;
    }
  
    .frame-427323512 {
      flex-direction: column;
      align-items: center;
    }
  
    .image-24 {
      cursor: move;
    }
  
    .text-block-7 {
      padding-bottom: 0;
    }
  
    .div-block-23 {
      padding-left: 35px;
      padding-right: 35px;
    }
  
    .faq {
      padding-bottom: 0;
    }
  
    .div-block-28 {
      margin-top: -56px;
      padding-top: 47px;
      padding-bottom: 8px;
    }
  
    .grid {
      margin-bottom: -34px;
      padding-bottom: 0;
    }
  
    .dropdown-toggle {
      top: -6px;
    }
  
    .text-block-8 {
      font-size: 17px;
    }
  
    .slide-our {
      flex: 0 auto;
      height: auto;
    }
  
    .html-embed {
      object-fit: contain;
      flex-flow: column;
      justify-content: center;
      align-self: auto;
      width: 280px;
      height: 250px;
      margin-top: 0;
      margin-bottom: 0;
      margin-left: 30px;
      padding-bottom: 0;
      display: flex;
      overflow: hidden;
    }
  
    .html-embed-dailylivethis {
      object-fit: fill;
      align-items: stretch;
      width: 300px;
      height: 400px;
      margin-top: 29px;
      margin-left: 20px;
      overflow: hidden;
    }
  
    .interactiverad {
      height: 200px;
    }
  
    .dashboard-coffpy {
      border-color: #fff3;
      margin-bottom: -250px;
    }
  
    .socialnetworkfortraders7778 {
      overflow: hidden;
    }
  
    .html-embed-socialnetworkfortraders {
      border: 0 solid #fff;
      flex-direction: column;
      flex: 0 auto;
      order: 0;
      justify-content: flex-start;
      align-self: baseline;
      align-items: stretch;
      width: 600px;
      height: 500px;
      margin-top: -25px;
      margin-left: -114px;
      margin-right: 71px;
      padding-top: 0;
      padding-left: 0;
      overflow: hidden;
    }
  
    .comdp-copy {
      border-color: #b3b3b333;
      height: 410px;
      margin-top: 24px;
      padding-top: 33px;
    }
  
    .text-14-copy {
      margin-top: -5px;
      padding-left: 24px;
      padding-right: 0;
      overflow: visible;
    }
  
    .button-container, .button-container-codpy {
      width: 100%;
    }
  
    .ix2-button-copy, .button-text-copy, .ix2-button__overlay-2-copy, .ix2-button__white-overlay-copy {
      border-radius: 20px;
    }
  
    .ix2-button__overlay-1-3-copy {
      border-radius: 20px;
      font-size: 18px;
    }
  
    .socialnetworkfortraders7778-copy {
      overflow: hidden;
    }
  
    .text-15-copy {
      padding-left: 24px;
      padding-right: 394px;
    }
  
    .container-5 {
      max-width: none;
    }
  
    .nav-menu-two {
      flex-direction: column;
    }
  
    .brix---floating-image-hero-v1---1 {
      opacity: .2;
      bottom: -5%;
      left: -35%;
    }
  
    .brix---floating-image-hero-v1---2 {
      display: none;
    }
  
    .brix---btn-secondary, .brix---btn-primary {
      width: 100%;
      padding-top: 18px;
      padding-bottom: 18px;
      font-size: 17px;
      line-height: 19px;
    }
  
    .brix---button-row-left {
      width: 100%;
      margin-bottom: 20px;
      margin-right: 0;
    }
  
    .brix---buttons-row {
      flex-direction: column;
      align-items: stretch;
      margin-top: -18px;
      padding-top: 0;
    }
  
    .brix---paragraph-default {
      margin-top: 22px;
      font-size: 20px;
      font-weight: 400;
      line-height: 20px;
    }
  
    .brix---heading-h1-size {
      letter-spacing: 0;
      margin-bottom: 10px;
      font-size: 35px;
      line-height: 37px;
    }
  
    .brix---container-default {
      margin-top: 6px;
      padding: 53px 20px 0;
    }
  
    .header {
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      position: absolute;
    }
  
    .div-block-50 {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .submit-button-3 {
      font-family: Helvetica Bold, sans-serif;
      font-size: 22px;
      font-weight: 700;
    }
  
    .brix---paragraph-default-2 {
      text-align: left;
      padding-top: 0;
      font-size: 17px;
      line-height: 22px;
    }
  
    .brix---mg-bottom-48px {
      margin-bottom: 32px;
    }
  
    .h2-heading---centered {
      font-size: 24px;
      line-height: 34px;
    }
  
    .h2-heading---centered.whats-inside {
      letter-spacing: 0;
      padding-top: 31px;
      padding-right: 1px;
      font-size: 32px;
    }
  
    .h2-heading---centered.reviews {
      letter-spacing: 0;
      font-size: 32px;
    }
  
    .h2-heading---centered.whats-inside-copy {
      letter-spacing: 0;
      padding-right: 1px;
      font-size: 32px;
    }
  
    .brix---mg-bottom-16px {
      margin-bottom: 15px;
    }
  
    .brix---grid-2-columns-text-left {
      grid-row-gap: 15px;
      padding: 25px 20px;
    }
  
    .h2-heading---left-aligned {
      letter-spacing: 0;
      margin-bottom: -7px;
      padding-top: 11px;
      font-size: 27px;
      line-height: 34px;
    }
  
    .brix---grid-2-columns-text-right---desktop {
      padding: 25px 40px;
    }
  
    .div-block-56 {
      width: 50%;
    }
  
    .div-block-56.header-div {
      width: 100%;
    }
  
    .brix---paragraph-default-3 {
      font-size: 17px;
      line-height: 28px;
    }
  
    .brix---mg-top-16px {
      margin-top: 12px;
    }
  
    .brix---icon-square-32px---twitter {
      border-radius: 6px;
      width: 30px;
      min-width: 30px;
      height: 30px;
      min-height: 30px;
      font-size: 14px;
    }
  
    .brix---testimonial-v9-twitter-icon {
      grid-template-columns: repeat(auto-fit, 30px);
    }
  
    .brix---text-100 {
      font-size: 15px;
    }
  
    .brix---text-200-bold {
      font-size: 15px;
      line-height: 16px;
    }
  
    .brix---avatar-image-link {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  
    .brix---avatar-circle-03 {
      width: 48px;
      min-width: 48px;
      max-width: 48px;
      height: 48px;
      min-height: 48px;
      max-height: 48px;
    }
  
    .brix---card-testimonial-twitter {
      padding-top: 40px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .brix---grid-3-columns {
      grid-template-columns: 1fr;
    }
  
    .brix---btn-secondary-2, .brix---btn-primary-2 {
      width: 100%;
      padding-top: 18px;
      padding-bottom: 18px;
      font-size: 17px;
      line-height: 19px;
    }
  
    .brix---button-row-left-2 {
      width: 100%;
      margin-bottom: 20px;
      margin-right: 0;
    }
  
    .brix---buttons-row-right---t-left {
      flex-direction: column;
      align-items: stretch;
    }
  
    .brix---heading-h2-size {
      font-size: 24px;
      line-height: 34px;
    }
  
    .brix---mg-bottom-16px-2 {
      margin-bottom: 15px;
    }
  
    .brix---grid-top---text-2-buttons {
      grid-row-gap: 16px;
      grid-template-columns: 1fr;
    }
  
    .brix---container-default-2 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .left-arrow-5 {
      display: flex;
    }
  
    .paragraph-28 {
      font-size: 13px;
    }
  
    .items-member-2 {
      width: 100%;
      margin-bottom: 20px;
      margin-left: 0;
      overflow: hidden;
    }
  
    .slide-copy {
      margin-left: 0;
      margin-right: 0;
    }
  
    .mask-2-copy-copy {
      margin-left: 10px;
      margin-right: 10px;
    }
  
    .members-copy {
      margin-top: 50px;
      overflow: hidden;
    }
  
    .right-arrow-5 {
      bottom: 150px;
    }
  
    .text-members-copy-copy {
      font-size: 12px;
    }
  
    .button-primary-footer {
      font-family: Helvetica Bold, sans-serif;
      font-size: 22px;
    }
  
    .footer-links {
      flex-direction: column;
    }
  
    .navbar-logo-left-copy {
      margin-top: 38px;
      margin-bottom: -6px;
      padding-top: 0;
    }
  
    .text-field-4 {
      opacity: 1;
      color: #000;
      background-color: #385cff00;
    }
  
    .div-block-58 {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .brix---paragraph-default-2-centered {
      font-size: 17px;
      line-height: 28px;
    }
  
    .what-s-inside {
      padding-top: 0;
      padding-bottom: 54px;
    }
  
    .features {
      margin-bottom: -67px;
      padding-top: 0;
    }
  
    .brix---paragraph-default-2-centered-no-margin {
      font-size: 17px;
      line-height: 28px;
    }
  
    .brix---paragraph-default-2-centered-subtitle {
      margin-bottom: 37px;
      margin-right: 0;
      padding-left: 0;
      padding-right: 2px;
      font-family: Helvetica Regular, sans-serif;
      font-size: 17px;
      line-height: 22px;
    }
  
    .call-to-action-button-copy {
      margin-bottom: -24px;
      padding-bottom: 19px;
    }
  
    ._3-colomn-reviews {
      margin-bottom: -36px;
      padding: 64px 40px 25px;
    }
  
    .image-48, .image-49, .image-50 {
      height: auto;
    }
  
    .image-51 {
      max-width: 50%;
    }
  
    .brix---grid-2-columns-text-right---mobile {
      grid-row-gap: 15px;
      padding: 25px 20px;
    }
  
    .button-primary-footer-copy {
      text-align: center;
      margin: 35px 24px 21px 30px;
      padding-top: 20.5px;
      padding-bottom: 17.5px;
      padding-left: 41px;
      font-family: Helvetica Bold, sans-serif;
      font-size: 22px;
    }
  
    .brix---paragraph-default-4 {
      font-size: 17px;
      line-height: 28px;
    }
  
    .brix---mg-bottom-8px {
      margin-bottom: 6px;
    }
  
    .brix---heading-h1-size-2 {
      margin-bottom: 10px;
      font-size: 30px;
      line-height: 37px;
    }
  
    .brix---grid-2-columns-2-col-mbl {
      grid-template-columns: 1fr;
    }
  
    .brix---heading-h2-size-2 {
      font-size: 24px;
      line-height: 34px;
    }
  
    .brix---mg-bottom-24px {
      margin-bottom: 16px;
    }
  
    .brix---subtitle {
      margin-top: 38px;
      font-size: 14px;
      line-height: 18px;
    }
  
    .brix---image {
      text-align: center;
      max-width: 100%;
      margin-top: 19px;
      margin-bottom: 63px;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
    }
  
    .brix---image-wrapper-br-24px-shadow {
      border-radius: 16px;
    }
  
    .brix---container-default-3 {
      margin-top: -9px;
      margin-bottom: -8px;
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .about-host {
      margin-left: 25px;
      margin-right: 25px;
      padding-top: 0;
      padding-bottom: 8px;
      padding-left: 0;
    }
  
    .heading-19-copy {
      margin-left: 0;
    }
  
    .div-block-60 {
      margin-bottom: -55px;
      padding-bottom: 0;
    }
  
    .image-53 {
      padding-bottom: 0;
    }
  
    .brix---container-small {
      margin-top: 6px;
      padding: 53px 20px 0;
    }
  
    .brix---heading-h3-size {
      margin-bottom: 10px;
      font-size: 20px;
      line-height: 30px;
    }
  
    .brix---display-2 {
      font-size: 38px;
      line-height: 48px;
    }
  
    .brix---mg-bottom-24px-2 {
      margin-bottom: 16px;
    }
  
    .brix---grid-4-columns {
      grid-template-columns: 1fr;
    }
  
    .brix---heading-h2-size-3 {
      font-size: 24px;
      line-height: 34px;
    }
  
    .brix---mg-bottom-56px {
      margin-bottom: 32px;
    }
  
    .brix---container-default-4 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .header-highlight-paragraph {
      margin-top: 22px;
      font-size: 20px;
      font-weight: 400;
      line-height: 20px;
    }
  
    .rounded-button {
      font-family: Helvetica Bold, sans-serif;
      font-size: 22px;
    }
  
    .icon {
      color: #fff;
    }
  
    .image-56 {
      margin-top: 26px;
      margin-left: 38px;
      margin-right: -233px;
      padding-left: 37px;
    }
  
    .heading-24 {
      margin-top: 48px;
      margin-left: -33px;
      padding-left: 0;
    }
  
    .navbar-no-shadow-container {
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .navbar-wrapper-2 {
      height: 100%;
    }
  
    .navbar-brand-2 {
      z-index: 99;
    }
  
    .navbar-brand-2.navbar-brand-white {
      width: 90px;
      height: 40px;
    }
  
    .nav-menu-wrapper-2 {
      background-color: var(--purle);
      border-radius: 0;
      height: auto;
      overflow: scroll;
    }
  
    .nav-menu {
      border-radius: 0;
      flex-direction: column;
      padding-top: 90px;
      padding-left: 0;
      padding-right: 0;
      position: static;
    }
  
    .nav-link-2 {
      margin-left: 0;
      margin-right: 0;
      padding-bottom: 5px;
      padding-left: 0;
      padding-right: 0;
      font-size: 40px;
      line-height: 50px;
    }
  
    .nav-link-2.w--current {
      padding-bottom: 5px;
      padding-left: 0;
      padding-right: 0;
      font-family: Axiforma, sans-serif;
    }
  
    .nav-button-wrapper {
      width: auto;
      margin-top: 20px;
    }
  
    .menu-button-2 {
      padding-right: 0;
    }
  
    .menu-button-2.close.w--open {
      top: 20px;
    }
  
    .hero-banner {
      background-image: url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/6662b7515b70d6fdb83e4131_Frame-1597882238.webp"), url("https://cdn.prod.website-files.com/656c7ff2832a550790e715a9/6662b756ff85b1f79b00ec55_Frame-124.webp");
      background-position: 50%, 0%;
      background-repeat: repeat-y, repeat-y;
      background-size: cover, cover;
      background-attachment: scroll, scroll;
      height: 100%;
      padding-bottom: 154px;
    }
  
    .hero-banner.hero-security {
      height: 100%;
      padding-top: 60px;
      padding-bottom: 60px;
    }
  
    .site-container {
      max-width: 100%;
    }
  
    .image-58 {
      width: 90px;
      height: 40px;
    }
  
    .image-58.logo-black {
      width: 90px;
      margin-top: 0;
    }
  
    .image-58.logo-white {
      display: none;
      position: absolute;
      inset: 0% auto 0% 4px;
    }
  
    .buttonprimary.mobonly {
      z-index: 99;
      padding: 6px 20px;
      font-family: Axiforma, sans-serif;
      font-size: 16px;
      font-weight: 700;
      position: relative;
    }
  
    .buttonprimary.mobonly:hover {
      background-color: var(--hover-green);
    }
  
    .container-6 {
      max-width: none;
    }
  
    .nav-menu-three {
      flex-direction: column;
    }
  
    .nav-dropdown-3 {
      margin-left: 0;
      margin-right: 0;
    }
  
    .nav-dropdown-toggle-3 {
      left: 0;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.w--open {
      z-index: 1;
      padding-top: 10px;
    }
  
    .nav-dropdown-list-3.shadow-three.mobile-shadow-hide.feature.w--open {
      z-index: 99;
    }
  
    .wrap_resorces {
      overflow: auto;
    }
  
    .quick-stack-2 {
      height: auto;
    }
  
    .feature-stack {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-right: 0;
      overflow: auto;
    }
  
    .features-wrap {
      border-radius: 20px;
    }
  
    .features-wrap.pink {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .features-wrap._9c3afa {
      border-radius: 20px;
    }
  
    .heading-27 {
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 10px;
      padding-bottom: 10px;
      font-size: 24px;
      line-height: 24px;
    }
  
    .heading-27.shadow {
      text-shadow: none;
      font-family: Axiforma, sans-serif;
    }
  
    .image-60 {
      width: 105px;
      height: 70px;
      position: absolute;
      inset: auto 0 3px auto;
    }
  
    .image-60.image-60-1 {
      width: 77px;
      height: 70px;
      bottom: -3px;
    }
  
    .image-60.image-60-2 {
      width: 72px;
      bottom: -2px;
      right: 2px;
    }
  
    .image-60.image-60-3 {
      width: 79px;
      height: 64px;
      bottom: 1px;
      right: 1px;
    }
  
    .image-60.image-60-4 {
      width: 73px;
      height: 80px;
      top: -8px;
      right: -1px;
    }
  
    .image-60.image-60-4.show-mobile {
      top: -3px;
      right: 1px;
    }
  
    .image-60.image-60-5 {
      height: 72px;
      top: -4px;
      right: -10px;
    }
  
    .nav-menu-2 {
      flex-direction: column;
    }
  
    .nav-button-wrapper-2 {
      width: auto;
    }
  
    .mob-btn-s {
      z-index: 999999;
      font-family: Axiforma, sans-serif;
      font-weight: 700;
      position: relative;
    }
  
    .mob-btn-p {
      z-index: 999999;
      height: 50px;
      font-family: Axiforma, sans-serif;
      font-weight: 700;
      position: relative;
    }
  
    .mob-btn-p:hover {
      background-color: var(--hover-green);
    }
  
    .mobile-margin-top-11-mob {
      display: block;
    }
  
    .h2-green {
      max-width: 181px;
      margin-left: auto;
      margin-right: auto;
      line-height: 35px;
    }
  
    .h2-green.h2-green-1 {
      box-sizing: border-box;
      aspect-ratio: auto;
      max-width: 500px;
      margin: 34px auto 53px;
      font-family: Brcandor Bf light, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 20px;
    }
  
    .h2-green.font-48px-m {
      font-size: 48px;
      line-height: 41px;
    }
  
    .h2-green.font-48px-m._w-100 {
      width: 100%;
      max-width: 100%;
    }
  
    .wrap-container {
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .h1 {
      color: var(--elements-webflow-library-neutral--100);
      -webkit-text-stroke-color: var(--elements-webflow-library-neutral--100);
      margin-top: 41px;
      margin-bottom: 6px;
      padding-top: 49px;
      font-size: 70px;
      line-height: 70px;
    }
  
    .wrap-capsuls {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: 40px;
      margin-bottom: 40px;
    }
  
    .wrap-capsuls.m-1100 {
      margin-top: 14px;
      margin-bottom: 20px;
    }
  
    .wrap-capsuls.wrap-capsuls-security {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .wrap-capsuls.wrap-capsuls-mobile {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      margin-top: -10px;
      margin-bottom: 28px;
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .capsule {
      grid-column-gap: 3px;
      grid-row-gap: 3px;
      border-radius: 30px;
      justify-content: space-between;
      align-items: center;
      height: 45px;
      padding-left: 5px;
      padding-right: 5px;
    }
  
    .capsule.border-purple {
      grid-column-gap: 7px;
      grid-row-gap: 7px;
      justify-content: space-between;
      align-items: center;
      height: 48px;
    }
  
    .capsule.border-purple.transcapsule {
      height: 54px;
      padding-bottom: 0;
      padding-left: 10px;
      box-shadow: 0 2px 5px #0000001a;
    }
  
    .capsule.capsule-home {
      grid-column-gap: 5px;
      grid-row-gap: 5px;
      height: 50px;
    }
  
    .heading-28 {
      text-align: left;
      width: 100%;
      margin-top: 5px;
      margin-bottom: 0;
      font-size: 12px;
      line-height: 16px;
    }
  
    .heading-28.heading-28-text-left {
      margin-top: 3px;
      padding-left: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 12px;
    }
  
    .image-62 {
      object-fit: contain;
      width: 40px;
      height: 40px;
    }
  
    .image-62.img-24px {
      width: 24px;
      height: 24px;
      margin-left: 4px;
      padding-left: 0;
    }
  
    .image-62.img-23px {
      background-color: var(--elements-webflow-library-neutral--100);
      width: 23px;
      height: 23px;
    }
  
    .wrap-button {
      flex-flow: wrap;
      max-width: 100%;
      margin-top: 0;
      padding-top: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .wrap-button.wrap-button-2 {
      flex-flow: column-reverse;
      margin-top: 11px;
    }
  
    .join-now {
      border-radius: 30px;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
      line-height: 24px;
    }
  
    .join-now.view-now {
      margin-top: 32px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .join-now.shadow {
      min-width: 100%;
      padding-left: 40px;
      padding-right: 40px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .join-now.see-story {
      border-radius: 30px;
    }
  
    .join-now.learn-more {
      border-radius: 30px;
      height: 50px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
    }
  
    .join-now.learn-more.min-100 {
      min-width: auto;
      font-size: 15px;
    }
  
    .join-now.learn-more.min-100.see-prices {
      min-width: 100%;
      height: 46px;
      font-size: 16px;
    }
  
    .join-now.learn-more.min-100.btn-green {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
    }
  
    .join-now.learn-more.btn-small-mob {
      width: 100%;
      min-width: auto;
      font-size: 15px;
    }
  
    .join-now.purple-bg {
      height: 50px;
    }
  
    .join-now.radius-0 {
      background-color: var(--primary);
      height: 40px;
    }
  
    .join-now.btn-normal-font {
      font-family: Brcandor Bf Semi Bold, sans-serif;
      font-weight: 600;
    }
  
    .join-now.btn-normal-font.jn-hover {
      background-color: var(--yellow);
      height: 50px;
      margin-top: 28px;
      margin-bottom: -18px;
    }
  
    .join-now.compliance {
      min-width: 100%;
    }
  
    .join-now.jn-hover {
      height: 50px;
      font-family: Axiforma, sans-serif;
    }
  
    .join-now.purplebtn {
      height: 50px;
    }
  
    .heading-29 {
      margin-top: 17px;
      margin-bottom: 5px;
      padding-top: 5px;
      padding-bottom: 42px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 27px;
    }
  
    .heading-30 {
      font-size: 40px;
      line-height: 45px;
    }
  
    .heading-30.text-m-40px {
      font-size: 40px;
    }
  
    .heading-30.text-m-40px.font-48-m {
      box-sizing: border-box;
      text-align: center;
      width: auto;
      max-width: none;
      height: auto;
      margin-top: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding-top: 0;
      padding-left: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 60px;
      line-height: 50px;
      overflow: hidden;
    }
  
    .heading-30.text-m-48 {
      font-size: 48px;
      line-height: 40px;
    }
  
    .benifits {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      border-radius: 20px;
      align-content: center;
      height: 220px;
      padding: 10px;
    }
  
    .benifits.green {
      background-color: #50cc6a;
      border-radius: 20px;
    }
  
    .benifits.purple.benifitsoc, .benifits.pink.benifitsoc {
      height: 250px;
    }
  
    .benifits.benifits-oc {
      justify-content: center;
      height: 250px;
    }
  
    .benifits.orange {
      background-color: orange;
    }
  
    .benifits.orange.benifitsoc {
      height: 250px;
    }
  
    .heading-31 {
      text-align: center;
      margin-top: 7px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 25px;
      font-weight: 700;
      line-height: 30px;
    }
  
    .image-63 {
      width: 50px;
      height: 50px;
    }
  
    .heading-32 {
      margin-top: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 22px;
    }
  
    .heading-33 {
      color: var(--base);
      font-family: Axiforma REAL, sans-serif;
      font-size: 24px;
      line-height: 26px;
    }
  
    .purple {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .purple.d-block {
      display: block;
    }
  
    .brix---slider-nav {
      margin-top: 28px;
    }
  
    .brix---grid-6-columns-logo-strip {
      grid-column-gap: 48px;
      grid-row-gap: 32px;
    }
  
    .brix---text-300-bold {
      font-size: 17px;
      line-height: 21px;
    }
  
    .brix---mg-bottom-48px-2 {
      margin-bottom: 32px;
    }
  
    .brix---container-default-5 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .brix---section-small {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .marquie {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
    }
  
    .text-block-18 {
      padding-top: 5px;
      padding-bottom: 5px;
      font-size: 14px;
    }
  
    .text-block-19 {
      font-size: 15px;
    }
  
    .quick-stack-3 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      margin-top: -14px;
    }
  
    .quick-stack-3.quick-stack-3-oc {
      margin-top: 40px;
    }
  
    .quick-stack-3.scrll-stack-section {
      grid-column-gap: 21px;
      grid-row-gap: 21px;
      margin-top: 0;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .div-block-63 {
      margin-bottom: 10px;
    }
  
    .heading-34 {
      font-size: 12px;
      line-height: 14px;
    }
  
    .quick-stack-4 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      padding-bottom: 0;
    }
  
    .image-64 {
      width: 150px;
      max-width: 100%;
    }
  
    .trading-technology {
      background-image: none;
      margin-top: 0;
      padding-top: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .tabs-menu {
      flex-flow: row;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 20px;
      padding-bottom: 2px;
      display: flex;
      overflow: auto;
    }
  
    .tabs-content {
      height: 100%;
    }
  
    .text-block-20 {
      margin-top: 2px;
      margin-bottom: 5px;
      font-size: 18px;
      line-height: 24px;
    }
  
    .paragraph-29 {
      font-size: 14px;
      line-height: 22px;
    }
  
    .tab-link {
      background-image: linear-gradient(315deg, #fff, #ed64aecc);
      width: 250px;
      min-width: 250px;
      max-width: 250px;
      height: auto;
      padding: 15px;
      display: block;
    }
  
    .tab-link.w--current {
      height: auto;
    }
  
    .image-65 {
      object-fit: fill;
      border-radius: 20px;
      width: 100%;
      height: 250px;
    }
  
    .wrap-trading {
      background-image: linear-gradient(#fff, #e61460bf);
    }
  
    .wrap-trading.phn-gradiant {
      background-image: linear-gradient(#ffffffbf, #e61460bf);
    }
  
    .wrap-trading.wrap-trading-3tabs {
      background-image: linear-gradient(#f8189480, #ffffff80);
      border-radius: 20px;
      margin-top: 40px;
    }
  
    .wrap-trading.wrap-tradingmob {
      background-image: linear-gradient(-180deg, #fff, #e61460bf);
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px;
      margin-bottom: 20px;
    }
  
    .trade-header {
      padding-top: 60px;
      padding-bottom: 0;
    }
  
    .trade-header.trade-header-price {
      padding-top: 40px;
    }
  
    .trade-header.trade-header-mob {
      padding-top: 40px;
      padding-bottom: 0;
    }
  
    .trade-header.trade-header-vc {
      margin-top: 0;
      padding-top: 0;
    }
  
    .heading-35 {
      margin-bottom: 20px;
    }
  
    .heading-35.m-text-center {
      text-align: center;
    }
  
    .heading-35.m-text-center.font-32px-m {
      font-size: 32px;
      line-height: 40px;
    }
  
    .heading-35.m-text-center.mb-50px {
      margin-bottom: 50px;
    }
  
    .heading-35.m-text-center.title-roadmap {
      margin-top: 30px;
      margin-bottom: 60px;
    }
  
    .heading-35.heading-35-small {
      text-align: center;
      font-size: 24px;
      line-height: 30px;
    }
  
    .heading-35.font-35-m {
      font-size: 32px;
    }
  
    .heading-35.viewchallenges {
      text-align: center;
    }
  
    .text-block-21 {
      width: 100%;
      height: 48px;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Axiforma, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .text-block-21.sky-bg {
      padding-left: 20px;
      padding-right: 20px;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .text-block-21.green-bg {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      flex-flow: row;
      width: 70%;
      min-width: auto;
      height: 48px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .text-block-21.green-bg:hover {
      background-color: var(--hover-green);
    }
  
    .text-block-21.text-nature.textwhite {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .link-block-6 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      flex-flow: row;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      justify-content: space-between;
      align-items: center;
      display: flex;
    }
  
    .link-block-6:hover, .link-block-6:active {
      grid-column-gap: 5px;
      grid-row-gap: 5px;
    }
  
    .get-funded {
      padding-bottom: 50px;
    }
  
    .section-header.section-header-2 {
      margin-top: 0;
    }
  
    .section-header.section-header-mobile {
      text-align: center;
    }
  
    .section-header.section-header-mobile.gap-50 {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
    }
  
    .section-header.m-mb-30px {
      margin-top: 0;
      margin-bottom: 30px;
    }
  
    .section-header.section-header-top.mb-30px {
      margin-bottom: 30px;
    }
  
    .heading-37 {
      text-align: center;
      margin-top: 68px;
      margin-bottom: 50px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 55px;
      font-weight: 700;
      line-height: 60px;
      text-decoration: none;
      overflow: visible;
    }
  
    .heading-37.text-center.m-text-36 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 36px;
    }
  
    .link-block-7 {
      border-radius: 30px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
    }
  
    .link-block-7.view-pricing {
      width: 100%;
    }
  
    .link-block-7.hvr-purple {
      height: 50px;
      margin-top: 0;
    }
  
    .quick-stack-5 {
      margin-top: 10px;
    }
  
    .counter-item {
      height: auto;
      margin-bottom: 20px;
      padding-bottom: 20px;
    }
  
    .counter-item.counter-item-bw {
      margin-bottom: 25px;
      padding-bottom: 25px;
    }
  
    .counter-totle {
      justify-content: flex-start;
      align-items: flex-start;
      margin-bottom: 0;
    }
  
    .heading-39 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 100px;
      font-weight: 700;
      line-height: 100px;
    }
  
    .heading-39.purple {
      font-family: Axiforma REAL, sans-serif;
      position: relative;
    }
  
    .heading-39.heading-39-2 {
      margin-bottom: 0;
      font-size: 90px;
      line-height: 80px;
    }
  
    .heading-39.heading-39-2.purple.font-90px {
      font-size: 60px;
      line-height: 80px;
    }
  
    .heading-39.heading-39-2.red.font-60px {
      font-size: 60px;
    }
  
    .heading-39.heading-39-2.red.font-50px {
      font-size: 80px;
      line-height: 80px;
    }
  
    .heading-39.orange {
      color: #ff9c00;
    }
  
    .heading-40 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 24px;
      line-height: 32px;
    }
  
    .payout {
      background-image: linear-gradient(-89.92deg, #eeeeef80, #64ed8080);
      margin-top: 46px;
      margin-bottom: 20px;
      padding: 31px 20px 20px;
    }
  
    .div-block-65 {
      margin-top: 16px;
      padding-bottom: 7px;
    }
  
    .reward-cap {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      border-style: solid;
      border-width: 3px;
      border-radius: 19px;
      margin-bottom: 6px;
      padding: 12px;
      line-height: 40px;
    }
  
    .heading-41 {
      color: var(--neutral);
      margin-top: 10px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      line-height: 22px;
    }
  
    .purple-cap {
      text-transform: none;
    }
  
    .get-started {
      padding-top: 50px;
    }
  
    .heading-42 {
      font-weight: 500;
    }
  
    .heading-44 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-44.m-text-center {
      text-align: center;
    }
  
    .quick-stack-6 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .step-item {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      background-color: var(--accent);
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      width: 260px;
      display: grid;
    }
  
    .image-67 {
      display: none;
    }
  
    .text-block-22 {
      margin-top: 0;
      font-size: 14px;
      line-height: 18px;
    }
  
    .number {
      justify-content: center;
      align-items: center;
      width: 40px;
      min-width: 40px;
      height: 39px;
      margin-bottom: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
      line-height: 20px;
    }
  
    .div-block-67 {
      height: 50px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .div-block-67.div-block-67-1 {
      justify-content: flex-start;
      align-items: flex-start;
      margin-top: 15px;
    }
  
    .heading-45 {
      margin-top: 5px;
      margin-bottom: 0;
      font-size: 24px;
      line-height: 17px;
    }
  
    .heading-45.purple {
      line-height: 13px;
    }
  
    .heading-45.pink {
      margin-bottom: 0;
    }
  
    .heading-45.sky-text {
      color: var(--accent);
    }
  
    .heading-46 {
      font-size: 19px;
      line-height: 24px;
    }
  
    .heading-47 {
      width: 100%;
      margin-bottom: 28px;
      font-size: 40px;
      line-height: 45px;
    }
  
    .heading-47.text-center {
      width: auto;
    }
  
    .heading-47.text-center.text-white.px-15 {
      margin-top: 16px;
      padding-bottom: 0;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .heading-47.text-center.text-small {
      font-size: 36px;
    }
  
    .heading-47.text-center.alltradersh {
      font-size: 24px;
    }
  
    .heading-47.text-center._8-hours {
      margin-top: 20px;
      position: relative;
    }
  
    .heading-47.text-center.font-32-m {
      margin-bottom: 0;
      font-size: 32px;
    }
  
    .heading-47.text-center.font-48-m {
      font-size: 48px;
      line-height: 41px;
    }
  
    .heading-47.text-center.font-48px {
      font-size: 48px;
    }
  
    .heading-47.text-center.mb-0 {
      margin-bottom: 0;
    }
  
    .heading-47.pink-text {
      margin-bottom: 0;
      font-size: 32px;
      line-height: 41px;
    }
  
    .heading-47.yellow.right {
      justify-content: center;
      align-items: flex-end;
      width: auto;
      font-size: 32px;
    }
  
    .heading-47.text-white {
      margin-top: 22px;
    }
  
    .heading-47.m-text-center {
      text-align: center;
      width: auto;
      margin-top: 14px;
    }
  
    .heading-47.m-text-center.font-32px-m {
      font-size: 32px;
    }
  
    .heading-47.m-text-center.whitetext {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .heading-47.headng-small {
      font-size: 28px;
    }
  
    .heading-47.heading-47-3 {
      text-align: center;
    }
  
    .heading-47.your-partner--h {
      text-align: center;
      margin-top: 30px;
      margin-bottom: 0;
    }
  
    .heading-47.font-32px {
      font-size: 32px;
    }
  
    .heading-47.text-24px-center {
      text-align: center;
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-47.margin-bottom-0 {
      width: auto;
      margin-bottom: 0;
    }
  
    .heading-47.margin-bottom-0.font-size-32px {
      font-size: 32px;
      line-height: 40px;
    }
  
    .heading-47.heading-47-mb-10 {
      margin-bottom: 10px;
    }
  
    .tabs-2 {
      margin-top: 0;
    }
  
    .tabs-menu-2 {
      border-radius: 30px;
      justify-content: space-between;
      max-width: 260px;
      margin-top: 0;
      margin-bottom: 30px;
    }
  
    .tabs-menu-2.tabs-menu-price {
      margin-top: 10px;
      margin-bottom: 30px;
    }
  
    .tab-1 {
      border-top-left-radius: 30px;
      border-bottom-left-radius: 30px;
      width: 50%;
      height: 50px;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 600;
      line-height: 24px;
    }
  
    .tab-1.w--current {
      border-radius: 30px;
      width: 100%;
      height: 50px;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Axiforma, sans-serif;
      font-size: 20px;
      font-weight: 700;
      line-height: 24px;
      right: auto;
    }
  
    .text-block-23 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 600;
    }
  
    .tab-link-tab-2 {
      border-radius: 30px;
      width: 100%;
      height: 50px;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 600;
    }
  
    .tab-link-tab-2.w--current {
      border-radius: 30px;
      width: 50%;
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 24px;
      left: auto;
    }
  
    .quick-stack-7 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      margin-top: 0;
      margin-left: 0;
      margin-right: 0;
      padding: 0;
    }
  
    .price-card {
      background-color: var(--elements-webflow-library-neutral--100);
      border-style: none;
      margin-bottom: 20px;
    }
  
    .price-card.border-none.green-bg {
      border-radius: 20px;
    }
  
    .price-card.level-1-border {
      border: 3px solid var(--neutral);
      border-radius: 15px 15px 20px 20px;
    }
  
    .price-numbers {
      padding-top: 20px;
    }
  
    .price-numbers.asset-bg {
      background-color: #3667e9;
    }
  
    .price-numbers.red-bg {
      border-radius: 20px;
    }
  
    .price-numbers.price-numbers-border {
      border: 3px solid #000;
      border-bottom-style: none;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
    }
  
    .per-challenge {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      justify-content: flex-start;
      margin-top: 15px;
    }
  
    .per-challenge.per-challenge-pp {
      max-width: 100%;
    }
  
    .heading-48.white-text.font-48px-m {
      font-size: 48px;
    }
  
    .heading-48.font-48px-m {
      font-size: 48px;
      line-height: 41px;
    }
  
    .heading-49 {
      margin-top: 0;
      font-size: 32px;
      line-height: 32px;
    }
  
    .heading-49.font-32px-m {
      font-size: 32px;
      line-height: 32px;
    }
  
    .text-block-24 {
      margin-top: 10px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 500;
    }
  
    .text-block-25 {
      font-family: Axiforma, sans-serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 32px;
    }
  
    .text-block-26 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
      line-height: 24px;
    }
  
    .link-block-8 {
      height: 42px;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
      line-height: 24px;
    }
  
    .link-block-8.how-it-works {
      border-radius: 30px;
      height: 50px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .price-features {
      padding-bottom: 20px;
      display: none;
    }
  
    .most-valuable {
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      position: relative;
    }
  
    .image-70 {
      object-fit: contain;
      width: 20px;
    }
  
    .div-block-69.div-block-69-pp {
      margin-top: 0;
      margin-bottom: 80px;
    }
  
    .link-block-10 {
      border-radius: 30px;
      min-width: 100%;
      height: 50px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .link-block-10.reject-payouts {
      width: 250px;
      min-width: auto;
    }
  
    .traders-love.traders-love-move {
      border-radius: 20px;
      margin-top: 80px;
      padding-top: 40px;
    }
  
    .image-71 {
      width: 90px;
      height: 80px;
      position: static;
    }
  
    .div-block-70 {
      flex-flow: row;
      justify-content: center;
      align-items: flex-end;
      margin-top: 20px;
      margin-bottom: 0;
    }
  
    .heading-51 {
      color: var(--gray);
      width: auto;
      padding-bottom: 18px;
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
    }
  
    .heading-51.text-left {
      margin-top: 0;
      margin-bottom: 10px;
    }
  
    .heading-51.text-left.mt-20.m-text-center, .heading-51.text-left.mobile-text-center {
      text-align: center;
    }
  
    .heading-51.text-left.heart-text {
      margin-top: 0;
    }
  
    .heading-51.text-left.heart-text.heart-text-16 {
      margin-top: 15px;
      font-size: 16px;
      line-height: 20px;
    }
  
    .heading-51.text-white {
      color: var(--elements-webflow-library-neutral--100);
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
    }
  
    .heading-51.m-text-left {
      padding-bottom: 0;
    }
  
    .heading-51.font-24px-m {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-51.hide {
      display: none;
    }
  
    .heading-51.textwhite {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .text-block-30 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .quick-stack-8 {
      grid-column-gap: 40px;
      grid-row-gap: 40px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-71 {
      height: auto;
      bottom: 0;
    }
  
    .div-block-71.sky-gradiant {
      background-image: linear-gradient(305deg, #0070d8, #6ca6ff);
      border-radius: 25px;
      padding-top: 1px;
    }
  
    .div-block-71.pink-gradiant {
      background-image: linear-gradient(305deg, #d800c2, #eeccde);
    }
  
    .div-block-71.green-gradiant {
      background-image: linear-gradient(305deg, #00d849, #6cfc8c);
    }
  
    .div-block-71.gradiant-red {
      background-image: linear-gradient(305deg, #870f0f, #ed1a1a);
    }
  
    .heading-52 {
      font-family: Axiforma, sans-serif;
      font-weight: 700;
      line-height: 32px;
    }
  
    .heading-52.heading-52-2 {
      font-size: 24px;
    }
  
    .paragraph-30 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 400;
      line-height: 24px;
    }
  
    .funded-challenge {
      background-image: linear-gradient(#fefeffbf, #64ed80bf);
      border-radius: 20px;
      margin-top: 10px;
      margin-bottom: 80px;
    }
  
    .funded-challenge.funded-challenge-vw {
      margin-bottom: 30px;
    }
  
    .quick-stack-9 {
      background-image: none;
      margin-top: 4px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-72 {
      border-width: 3px;
      border-radius: 20px;
      height: 200px;
      padding: 15px;
    }
  
    .heading-53 {
      margin-top: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 24px;
      font-weight: 700;
    }
  
    .quick-stack-10 {
      margin-bottom: 20px;
    }
  
    .future-profits {
      border-radius: 20px;
      margin-top: 50px;
      padding-bottom: 60px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .quick-stack-11 {
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .heading-54 {
      line-height: 32px;
    }
  
    .heading-54.px-15 {
      padding-left: 15px;
      padding-right: 15px;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .quick-stack-12 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .payouts-fast {
      margin-top: 0;
    }
  
    .payouts-fast.payouts-fast-price {
      margin-top: 0;
      margin-bottom: 30px;
      padding-top: 0;
    }
  
    .div-block-74 {
      border-width: 3px;
      border-radius: 20px;
      justify-content: flex-start;
      align-items: flex-start;
      height: 200px;
      padding: 20px 10px;
      box-shadow: 0 2px 5px #6e00d81a;
    }
  
    .div-block-74.sky-border {
      justify-content: center;
      align-items: flex-start;
    }
  
    .div-block-74.trade-feature {
      border-width: 3px;
      border-radius: 20px;
      width: 100%;
      height: 170px;
    }
  
    .div-block-74.trade-feature.yellow-b {
      padding: 10px 5px;
    }
  
    .div-block-74.trade-feature.green-b {
      justify-content: flex-start;
      align-items: center;
    }
  
    .heading-55 {
      height: 40px;
      font-size: 25px;
      line-height: 24px;
    }
  
    .image-74 {
      width: 44px;
      height: 44px;
    }
  
    .quick-stack-13 {
      margin-top: 0;
      padding-top: 0;
    }
  
    .latest-rewards {
      background-image: linear-gradient(#001433, #0869ff);
      border-radius: 20px;
      padding-top: 30px;
      padding-bottom: 40px;
    }
  
    .swiper-container.swiper--bottom.swiper-review {
      margin-bottom: 40px;
    }
  
    .heading-56 {
      -webkit-text-stroke-width: 1px;
      min-width: 980px;
      margin-bottom: 0;
      line-height: 40px;
    }
  
    .tradingspam {
      background-color: #64ed80;
      border-radius: 8px;
      flex-flow: row;
      justify-content: center;
      align-items: center;
      padding-top: 3px;
      font-size: 30px;
      line-height: 35px;
    }
  
    .image-75 {
      width: 86%;
      height: 100%;
      margin-top: 20px;
      margin-bottom: 10px;
    }
  
    .div-block-75 {
      padding-top: 30px;
    }
  
    .div-block-76 {
      grid-column-gap: 13px;
      grid-row-gap: 13px;
    }
  
    .text-block-31 {
      text-align: left;
      font-family: Axiforma REAL, sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 32px;
    }
  
    .image-76.img-24px, .image-77.img-24px, .image-78.img-24px {
      width: 24px;
      height: 24px;
    }
  
    .heading-57.m-text-center {
      text-align: center;
      font-family: Axiforma, sans-serif;
    }
  
    .heading-58 {
      margin-top: 20px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
    }
  
    .heading-58.m-text-center {
      text-align: center;
    }
  
    .div-block-78 {
      margin-top: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-79 {
      border-radius: 20px;
      padding-left: 10px;
      padding-right: 7px;
    }
  
    .div-block-80 {
      background-image: linear-gradient(92deg, #fff 70%, #af4dd800);
      width: 71%;
      height: 80px;
      margin-top: 12px;
    }
  
    .paragraph-31 {
      color: var(--neutral);
      font-family: Brcandor Bf Semi Bold, sans-serif;
      font-size: 11px;
      font-weight: 600;
      line-height: 14px;
    }
  
    .heading-59 {
      margin-bottom: 5px;
      font-size: 24px;
      line-height: 32px;
    }
  
    .div-block-81 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      margin-top: -20px;
      display: grid;
    }
  
    .image-79 {
      width: 100%;
    }
  
    .section-5 {
      padding-top: 50px;
      padding-bottom: 0;
    }
  
    .section-6 {
      border-radius: 20px;
      margin-top: 10px;
    }
  
    .div-block-82 {
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .text-block-32 {
      font-weight: 400;
    }
  
    .quick-stack-14 {
      margin-top: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-80 {
      text-align: center;
      width: 100%;
      height: 30px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-83 {
      flex-flow: column;
    }
  
    .image-81 {
      height: 70px;
      margin-bottom: 20px;
    }
  
    .div-block-84 {
      flex-flow: column;
      justify-content: center;
      align-items: center;
    }
  
    .section-8 {
      background-image: linear-gradient(#6e00d8, #fff);
      border-radius: 20px;
    }
  
    .section-8.section-8-reviews {
      background-image: none;
    }
  
    .image-82 {
      width: 36px;
      height: 36px;
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .div-block-85 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .text-block-34.btn-small-text-mob {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 15px;
      font-weight: 700;
    }
  
    .link-block-11.border-black-btn {
      height: 50px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .link-block-11.m-btn-text-small {
      font-size: 11px;
    }
  
    .link-block-11.btn-small-mob {
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 14px;
      font-weight: 700;
    }
  
    .link-block-11.btn-small-mob.hvr-purple:hover {
      border-color: var(--purle);
      background-color: var(--purle);
    }
  
    .swiper.mysswiper {
      display: block;
    }
  
    .quick-stack-15 {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .cell-6 {
      justify-content: center;
      align-items: center;
    }
  
    .amazing-for-traders {
      border-radius: 20px;
      margin-top: 60px;
      margin-bottom: 80px;
      padding-top: 25px;
      padding-bottom: 20px;
    }
  
    .amazing-for-traders.aft-ourcha {
      margin-top: 50px;
      margin-bottom: 60px;
    }
  
    .green.green-starr {
      position: relative;
    }
  
    .div-block-86 {
      padding: 20px 10px;
    }
  
    .div-block-86.purple-bg {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .text-block-36 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 22px;
    }
  
    .heading-63 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-64 {
      max-width: 100%;
      height: auto;
      margin-bottom: 0;
      font-size: 18px;
      line-height: 19px;
    }
  
    .heading-64.heading-64-black {
      color: var(--base);
    }
  
    .quick-stack-16 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .text-block-37 {
      font-size: 16px;
      line-height: 24px;
    }
  
    .paragraph-32 {
      margin-top: 10px;
      margin-bottom: 0;
      font-family: Brcandor Bf Medium, sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 15px;
    }
  
    .image-83 {
      border-radius: 10px;
      height: 250px;
    }
  
    .tab-pane-tab-1.tab-panel-custom {
      height: 100%;
    }
  
    .section-9 {
      background-image: linear-gradient(0deg, #8df9a50d, #64ed8080);
      border-radius: 20px;
      margin-top: 80px;
    }
  
    .text-block-38 {
      margin-top: 0;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 14px;
      font-weight: 700;
    }
  
    .cell-7 {
      justify-content: center;
      align-items: center;
    }
  
    .image-84 {
      width: 30px;
      height: 30px;
    }
  
    .image-85 {
      height: 97px;
    }
  
    .image-85.g-pay {
      height: 97px;
      margin-top: 0;
      position: relative;
      top: 0;
    }
  
    .section-10 {
      margin-top: 50px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .section-10.stories-checkout {
      margin-bottom: 60px;
    }
  
    .div-block-87 {
      border-radius: 20px;
      padding-bottom: 30px;
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .quick-stack-17 {
      grid-column-gap: 3px;
      grid-row-gap: 3px;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    .text-green.text-large {
      font-size: 50px;
    }
  
    .text-green.text-large.font-64px {
      font-size: 64px;
    }
  
    .join-our-community {
      margin-top: 80px;
      padding-top: 20px;
    }
  
    .join-our-community.joc-price {
      margin-bottom: 60px;
    }
  
    .join-our-community.join-our-community-reviews {
      margin-top: 50px;
    }
  
    .join-our-community.joc-vc {
      margin-top: 10px;
    }
  
    .image-86 {
      height: 48px;
      margin-top: 40px;
    }
  
    .quick-stack-18 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      padding: 0;
    }
  
    .image-87 {
      width: 100px;
      height: 53px;
    }
  
    .wrap-marque-item {
      height: 124px;
    }
  
    .wrap-marque-item._w-100 {
      height: 170px;
    }
  
    .heading-66 {
      font-size: 32px;
      line-height: 31px;
    }
  
    .quick-stack-19 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .section-12 {
      background-image: linear-gradient(#03efff80, #f5fdfe80);
      padding-bottom: 0;
    }
  
    .div-block-91 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-91.div-full {
      width: 100%;
    }
  
    .text-block-42 {
      text-align: center;
    }
  
    .cell-8 {
      justify-content: center;
      align-items: center;
    }
  
    .security-powered {
      border-radius: 20px;
      margin-top: 50px;
      margin-bottom: 80px;
      padding-top: 40px;
      padding-bottom: 40px;
    }
  
    .image-89 {
      height: auto;
      margin-bottom: 20px;
    }
  
    .quick-stack-22 {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .transparency-bullo {
      border-radius: 20px;
      padding-top: 20px;
    }
  
    .transparency-bullo.transprancy-transprancy {
      border-radius: 20px;
    }
  
    .transparency-bullo.show-mobile.trans-bullo-mobile {
      background-image: linear-gradient(351deg, #64ed80cc, #fff0);
      margin-top: 0;
    }
  
    .image-90 {
      width: 120px;
      margin-bottom: 40px;
    }
  
    .heading-67 {
      width: 100%;
      font-family: Brcandor Bf Semi Bold, sans-serif;
      font-size: 14px;
      font-weight: 600;
      line-height: 20px;
    }
  
    .heading-67.transcapsuletext {
      margin-top: 0;
      margin-bottom: 0;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .div-block-94 {
      margin-top: 0;
    }
  
    .support-faqs {
      background-image: linear-gradient(0deg, #efefee0d 47%, #fbe30d);
      border-radius: 20px;
      margin-top: 80px;
      padding-top: 60px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .support-faqs.mt-30px {
      margin-top: 30px;
      padding-top: 40px;
    }
  
    .support-faqs.show-mobile {
      margin-top: 80px;
      padding-top: 40px;
    }
  
    .div-block-96 {
      margin-bottom: 40px;
    }
  
    .div-block-97 {
      margin-bottom: 60px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .div-block-97.faq-support-button {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      margin-top: 30px;
      margin-bottom: 60px;
    }
  
    .quick-stack-23 {
      margin-top: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .small-heading.text-purple {
      top: 0;
    }
  
    .small-heading.text-purple.font-32px {
      line-height: 41px;
    }
  
    .small-heading.text-purple.font-32px.dblock {
      display: block;
      top: 0;
      bottom: 20px;
    }
  
    .div-block-98 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .support-powered-by {
      margin-top: 60px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .support-powered-by.spb-pp {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  
    .quick-stack-24 {
      grid-column-gap: 30px;
      grid-row-gap: 30px;
      text-align: center;
      padding-left: 0;
      padding-right: 0;
    }
  
    .site-footer {
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-92, .div-block-100 {
      border-radius: 20px;
    }
  
    .heading-68 {
      margin-top: 0;
    }
  
    .div-block-101 {
      width: 201px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .gradiant-btn {
      background-image: none;
      border-radius: 30px;
      width: 100%;
      min-width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .gradiant-btn:hover {
      border-color: var(--purle);
      background-color: var(--purle);
    }
  
    .quick-stack-25 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
    }
  
    .frame-236 {
      border-top: 1px solid var(--elements-webflow-library-neutral--100);
    }
  
    .frame-227 {
      margin-top: 0;
      margin-bottom: 0;
    }
  
    .link-block-12 {
      line-height: 32px;
    }
  
    .image-93 {
      height: 30px;
    }
  
    .div-block-102 {
      flex-flow: column;
      max-width: 100%;
      margin-bottom: 60px;
    }
  
    .image-94, .image-95 {
      height: auto;
    }
  
    .image-96, .image-97 {
      height: 42px;
    }
  
    .image-99 {
      height: 40px;
    }
  
    .image-100 {
      height: 50px;
    }
  
    .div-block-104 {
      margin-top: 30px;
    }
  
    .text-block-45 {
      line-height: 20px;
      position: relative;
      top: -8px;
    }
  
    .image-105 {
      width: 100%;
      height: auto;
    }
  
    .heading-73 {
      text-align: left;
      margin-bottom: 20px;
    }
  
    .heading-73.font-32-m {
      font-size: 32px;
      line-height: 37px;
    }
  
    .heading-73.font-32-m.m-text-center {
      text-align: center;
    }
  
    .div-block-108 {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 30px;
    }
  
    .paragraph-33 {
      font-size: 12px;
      line-height: 18px;
    }
  
    .paragraph-34 {
      font-size: 11px;
    }
  
    .image-106 {
      width: 220px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .image-109 {
      height: 90px;
      margin-bottom: 0;
    }
  
    .image-110 {
      border-radius: 20px;
      width: 100%;
      margin-top: 30px;
    }
  
    .quick-stack-26 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .image-111 {
      object-fit: cover;
      height: 200px;
    }
  
    .image-112 {
      object-fit: cover;
      object-position: 50% 50%;
      height: 360px;
      margin-bottom: -22px;
    }
  
    .image-112.h-305 {
      height: 305px;
    }
  
    .image-113 {
      width: 100%;
      margin-top: -35px;
      margin-bottom: 42px;
      padding-top: 0;
      padding-bottom: 0;
    }
  
    .image-114 {
      object-fit: cover;
      object-position: 100% 50%;
      border-radius: 20px;
      width: 100%;
      height: 60px;
      margin-top: 15px;
      padding-top: 0;
    }
  
    .text-block-46 {
      font-size: 15px;
    }
  
    .see-all-benefits {
      border-top: 1px solid #ffffff1a;
      border-bottom-right-radius: 15px;
      border-bottom-left-radius: 15px;
      padding-bottom: 15px;
      position: relative;
    }
  
    .text-block-47 {
      line-height: 18px;
    }
  
    .text-block-47.tap-to-collapse {
      opacity: 0;
      position: absolute;
    }
  
    .div-block-110.m-text-center {
      flex-flow: column;
      justify-content: center;
      align-items: center;
      display: flex;
    }
  
    .image-116 {
      width: 44px;
      height: 44px;
    }
  
    .site-map-banner {
      padding-top: 20px;
      padding-bottom: 0;
    }
  
    .link-block-13 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .link-block-13.link-block-13-2 {
      text-align: center;
      width: auto;
      margin-left: auto;
      margin-right: auto;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 12px;
      font-weight: 700;
      line-height: 55px;
    }
  
    .link-block-13.link-block-13-2._w-178 {
      width: auto;
      height: 40px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
      line-height: 40px;
    }
  
    .link-block-13.link-block-13-2._w-151 {
      width: 151px;
      height: 40px;
      line-height: 40px;
    }
  
    .link-block-13.success-stories-btn {
      width: 204px;
      height: 40px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
    }
  
    .quick-stack-27 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      margin-top: 10px;
    }
  
    .link-block-14 {
      padding-top: 12px;
      font-size: 22px;
    }
  
    .quick-stack-28 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .carrer-home {
      background-image: linear-gradient(0deg, #fff 53%, #ff41a8bf);
      padding-top: 30px;
      padding-bottom: 0;
    }
  
    .div-block-112 {
      margin-top: 10px;
      margin-bottom: 20px;
    }
  
    .quick-stack-29 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .button-10 {
      width: 100%;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .text-block-49 {
      font-size: 16px;
      line-height: 24px;
    }
  
    .text-block-50 {
      font-size: 12px;
    }
  
    .image-120 {
      height: 45px;
    }
  
    .pro-treaders {
      padding-bottom: 80px;
    }
  
    .image-121 {
      height: 70px;
    }
  
    .heading-74 {
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-74.text-left {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-74.text-left.m-text-center {
      text-align: center;
      margin-bottom: 0;
    }
  
    .legal-banner {
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px;
      padding-bottom: 40px;
    }
  
    .button-11 {
      color: #3886ff;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 600;
    }
  
    .button-11.button-11-transparent {
      border-radius: 30px;
      height: 45px;
      font-size: 14px;
    }
  
    .quick-stack-30 {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
    }
  
    .trading-calculator.economic-calendar {
      background-image: linear-gradient(#03efff80, #03efff29);
    }
  
    .trading-calculator.trak-new {
      background-image: linear-gradient(#ff038b80, #f5fdfe80 54%);
    }
  
    .code-embed-2 {
      max-width: 100%;
    }
  
    .brix---slider-nav-2 {
      margin-top: -30px;
    }
  
    .brix---grid-6-columns-logo-strip-2 {
      grid-column-gap: 48px;
      grid-row-gap: 32px;
    }
  
    .brix---grid-6-columns-logo-strip-2.brix---grid-4-columns-logo-strip-2 {
      grid-column-gap: 0px;
      grid-template-columns: 1fr;
    }
  
    .brix---text-300-bold-2 {
      font-size: 17px;
      line-height: 21px;
    }
  
    .brix---mg-bottom-48px-3 {
      margin-bottom: 32px;
    }
  
    .brix---container-default-6 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .brix---section-small-2 {
      padding-top: 0;
      padding-bottom: 64px;
      display: block;
    }
  
    .update-info {
      min-height: auto;
    }
  
    .text-block-52 {
      margin-bottom: 10px;
    }
  
    .heading-76 {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 18px;
      font-weight: 700;
    }
  
    .text-block-53 {
      font-family: Brcandor Bf Regular, sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 19px;
    }
  
    .image-123 {
      height: 140px;
    }
  
    .brix---slider-nav-3 {
      margin-top: 28px;
    }
  
    .brix---section-small-3 {
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .button-12 {
      width: 100%;
      height: 50px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
    }
  
    .div-block-117 {
      margin-bottom: 0;
    }
  
    .heading-78 {
      font-size: 18px;
      line-height: 25px;
    }
  
    .text-field-5, .text-field-5.textarea {
      font-size: 14px;
    }
  
    .trade-list {
      flex-flow: column;
      justify-content: flex-start;
      margin-bottom: 20px;
      display: block;
    }
  
    .heading-79 {
      word-break: break-all;
      margin-bottom: 0;
      font-size: 20px;
      line-height: 48px;
    }
  
    .heading-79.name-title {
      margin-top: 0;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px;
    }
  
    .heading-79.name-title.heading-79-2 {
      word-break: keep-all;
      font-weight: 400;
    }
  
    .transparence-info {
      padding-top: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  
    .section-14 {
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px;
      margin-bottom: 60px;
    }
  
    .success-stories {
      background-image: linear-gradient(#03efff80, #f0fdfe82 100%, #f5fdfe80);
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
    }
  
    .image-125 {
      height: 40px;
    }
  
    .div-block-125 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .text-block-55 {
      margin-top: 10px;
    }
  
    .review-info.review-info-bg {
      background-image: linear-gradient(275deg, #6e00d8, #cea9f2);
      margin-top: -30px;
      position: relative;
      top: -40px;
    }
  
    .heading-80 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .heading-81 {
      font-size: 14px;
      line-height: 19px;
    }
  
    .image-126 {
      height: 32px;
    }
  
    .div-block-126 {
      text-align: center;
      width: 100%;
    }
  
    .image-127 {
      border-radius: 25px 25px 0 0;
      height: 350px;
      top: 0;
    }
  
    .btn-contat-wrap {
      text-align: center;
      flex-flow: column;
      display: block;
    }
  
    .link-block-15 {
      height: 50px;
    }
  
    .image-128 {
      width: 140px;
      height: auto;
      margin-top: 20px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .quick-stack-32 {
      padding-top: 0;
    }
  
    .link-block-16 {
      height: 50px;
    }
  
    .link-block-16.btn-w-100 {
      width: 100%;
    }
  
    .form-block-6 {
      margin-top: 80px;
    }
  
    .field-label-2, .text-field-6 {
      font-size: 16px;
    }
  
    .div-block-127 {
      width: 100%;
    }
  
    .pricing-banner {
      background-image: linear-gradient(0deg, #ffffffbf 42%, #ff41a8bf);
      margin-bottom: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 30px;
    }
  
    .pricing-banner.our-challanges {
      padding-top: 30px;
    }
  
    .pricing-banner.review-banner {
      background-image: linear-gradient(#6e00d8, #fefcff 54%, #fff);
    }
  
    .pricing-banner.transparences {
      background-image: linear-gradient(#64ed80, #fff 27%);
    }
  
    .pricing-banner.roadmap-banner {
      background-image: linear-gradient(#6e00d8, #fff);
      padding-left: 0;
      padding-right: 0;
    }
  
    .pricing-banner.view-challenges {
      margin-bottom: 40px;
    }
  
    .link-block-17 {
      height: 50px;
      margin-top: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 18px;
      font-weight: 700;
    }
  
    .link-block-17.link-block-17-w-100 {
      margin-bottom: 0;
      font-size: 20px;
      font-weight: 700;
    }
  
    .link-block-17.link-block-17-roadmap {
      width: 90%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      font-size: 20px;
      top: 30px;
      left: auto;
    }
  
    .link-block-17.view-challenges {
      margin-bottom: 0;
    }
  
    .heading-82 {
      font-size: 70px;
      line-height: 80px;
    }
  
    .image-132 {
      height: 60px;
    }
  
    .text-block-57 {
      font-weight: 700;
    }
  
    .image-133 {
      height: 30px;
    }
  
    .cell-22 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .cell-23 {
      justify-content: flex-start;
      align-items: flex-start;
      padding-left: 20px;
    }
  
    .cell-23.hide-mob {
      display: none;
    }
  
    .text-block-58 {
      font-size: 20px;
    }
  
    .quick-stack-33 {
      margin-bottom: 20px;
    }
  
    .heading-83 {
      font-size: 28px;
      line-height: 32px;
    }
  
    .paragraph-36, .heading-84 {
      margin-bottom: 20px;
    }
  
    .visualise-your-decisions {
      margin-top: 80px;
      padding-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-137 {
      object-fit: cover;
    }
  
    .heading-85 {
      margin-bottom: 20px;
    }
  
    .heading-85.m-text-center {
      text-align: center;
      font-family: Axiforma REAL, sans-serif;
    }
  
    .paragraph-37 {
      margin-top: 10px;
      font-family: Brcandor Bf Regular, sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 34px;
    }
  
    .image-139 {
      width: 90%;
      height: auto;
    }
  
    .heading-86 {
      margin-top: 30px;
      margin-bottom: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 39px;
    }
  
    .paragraph-38.m-text-center {
      text-align: center;
    }
  
    .every-trader {
      background-image: linear-gradient(304deg, #08effe40, #ffffff40);
      border-radius: 40px;
      height: 200px;
    }
  
    .heading-87 {
      margin-bottom: 5px;
      line-height: 32px;
    }
  
    .paragraph-39 {
      color: var(--neutral);
      font-family: Axiforma REAL, sans-serif;
      font-weight: 700;
    }
  
    .security-info {
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .heading-88 {
      font-size: 32px;
    }
  
    .image-144 {
      height: 60px;
    }
  
    .heading-89 {
      margin-top: 0;
      margin-bottom: 40px;
      font-size: 20px;
      line-height: 30px;
    }
  
    .div-block-137 {
      margin-bottom: 0;
    }
  
    .div-block-137.div-block-137-center {
      margin-top: 100px;
    }
  
    .section-16 {
      padding-top: 60px;
      padding-bottom: 0;
    }
  
    .image-145 {
      height: 100%;
    }
  
    .cell-26 {
      padding-top: 0;
    }
  
    .paragraph-40 {
      margin-top: 20px;
      font-size: 20px;
      line-height: 27px;
    }
  
    .always-safe-secure {
      padding-left: 25px;
      padding-right: 25px;
    }
  
    .image-146 {
      max-width: 100%;
    }
  
    .enterprise-grade {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-140.pink-bg {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .heading-90 {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
    }
  
    .paragraph-42 {
      font-size: 14px;
      line-height: 20px;
    }
  
    .image-148 {
      max-width: 100%;
    }
  
    .section-18 {
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .heading-91 {
      font-size: 24px;
    }
  
    .div-block-142 {
      margin-top: 40px;
      margin-bottom: 0;
    }
  
    .heading-92 {
      font-size: 16px;
      line-height: 24px;
    }
  
    .quick-stack-39, .quick-stack-40 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .quick-stack-41 {
      padding-left: 0;
      padding-right: 10px;
    }
  
    .cell-28 {
      justify-content: center;
      align-items: center;
    }
  
    .div-block-144 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }
  
    .div-block-145 {
      margin-bottom: 0;
      padding-top: 0;
    }
  
    .image-151 {
      height: 100%;
    }
  
    .section-19 {
      margin-bottom: 60px;
    }
  
    .heading-93 {
      font-size: 20px;
      line-height: 32px;
    }
  
    .image-152 {
      height: auto;
    }
  
    .image-153 {
      max-width: 80%;
      height: auto;
      display: block;
    }
  
    .image-153.image-153-70 {
      max-width: 70%;
    }
  
    .image-153.image-153-50 {
      max-width: 50%;
    }
  
    .image-153.image-153-full {
      width: 100%;
      max-width: 100%;
    }
  
    .div-block-147 {
      grid-column-gap: 50px;
      grid-row-gap: 50px;
      text-align: center;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      justify-items: center;
      display: grid;
    }
  
    .div-block-147.grid-1-m {
      grid-column-gap: 35px;
      grid-row-gap: 35px;
      grid-template-columns: 1fr;
    }
  
    .div-block-148 {
      grid-template-columns: 1fr;
      justify-items: center;
    }
  
    .div-block-149 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-150 {
      text-align: center;
    }
  
    .div-block-151 {
      width: 150px;
    }
  
    .div-block-152 {
      max-width: 310px;
      margin-bottom: 30px;
    }
  
    .hide-mobile {
      display: none;
    }
  
    .show-mobile {
      display: block;
    }
  
    .show-mobile.m-w-100, .show-mobile.quick-stack-29 {
      width: 100%;
    }
  
    .paragraph-44 {
      color: var(--neutral);
      margin-top: 5px;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
      line-height: 18px;
    }
  
    .text-block-60 {
      font-size: 20px;
      line-height: 24px;
    }
  
    .div-block-153 {
      max-width: 210px;
      margin-top: 10px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-154 {
      width: 150px;
    }
  
    .image-155 {
      display: none;
    }
  
    .div-block-155 {
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .quick-stack-43 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      margin-top: -10px;
      padding-top: 0;
    }
  
    .quick-stack-43.show-mob {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .image-156 {
      object-fit: contain;
      width: 100%;
      height: 235px;
    }
  
    .image-156.discord {
      object-fit: contain;
      height: 226px;
    }
  
    .hide-mob {
      display: none;
    }
  
    .text-span-6 {
      margin-left: 5px;
      margin-right: 5px;
      font-size: 18px;
      line-height: 22px;
    }
  
    .cell-30 {
      grid-column-gap: 20px;
      grid-row-gap: 20px;
      justify-content: center;
      align-items: center;
    }
  
    .cell-31 {
      justify-content: center;
      align-items: center;
    }
  
    .text-block-61 {
      color: var(--neutral);
      font-family: Brcandor Bf Bold, sans-serif;
    }
  
    .text-block-61.show-mobile {
      text-align: center;
      margin-top: 10px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }
  
    .div-block-156 {
      text-align: center;
      margin-bottom: 20px;
    }
  
    .bold-text {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .text-block-62 {
      color: #333;
      font-family: Axiforma REAL, sans-serif;
      font-size: 12px;
      line-height: 16px;
    }
  
    .div-block-157 {
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .amazing-payout-rewards {
      margin-top: 60px;
    }
  
    .quick-stack-44 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      padding: 0;
    }
  
    .div-block-159 {
      max-width: 200px;
      margin-bottom: 40px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .reviewblock {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      background-image: linear-gradient(283deg, #e4edfe, #fbfcfe);
      border-radius: 40px;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: auto;
      padding: 20px;
      box-shadow: 0 2px 5px #0000001a;
    }
  
    .paragraph-45 {
      font-size: 12px;
      line-height: 16px;
    }
  
    .paragraph-46 {
      margin-bottom: 0;
    }
  
    .paragraph-47 {
      color: var(--neutral);
      font-family: Brcandor Bf Medium, sans-serif;
      font-weight: 500;
    }
  
    .paragraph-48 {
      font-size: 18px;
      font-weight: 400;
      line-height: 22px;
    }
  
    .link-block-18 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      background-color: var(--elements-webflow-library-neutral--100);
      color: var(--neutral);
      border-radius: 20px;
      justify-content: center;
      align-items: center;
      width: auto;
      height: 40px;
      margin-left: auto;
      margin-right: auto;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      box-shadow: 0 2px 5px #00000040;
    }
  
    .link-block-18.mb-20p {
      margin-bottom: 20px;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .link-block-18.gap-5 {
      grid-column-gap: 5px;
      grid-row-gap: 5px;
    }
  
    .image-157 {
      color: var(--neutral);
      width: 20px;
      height: 20px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 12px;
      font-weight: 700;
    }
  
    .div-block-160 {
      margin-bottom: 20px;
    }
  
    .heading-94 {
      color: var(--elements-webflow-library-neutral--100);
      text-align: center;
      margin-bottom: 0;
      font-family: Brcandor Bf Semi Bold, sans-serif;
      font-size: 12px;
      font-weight: 600;
    }
  
    .heading-94.font-14px {
      font-family: Axiforma REAL, sans-serif;
      font-size: 14px;
    }
  
    .div-block-161 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      border: 3px solid var(--red);
      border-radius: 20px;
      flex-flow: column;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      height: 100%;
      padding: 10px;
      display: flex;
      position: relative;
      box-shadow: inset 0 2px 20px #fdfafa40;
    }
  
    .div-block-161.div-block-161-green {
      border-color: var(--primary);
    }
  
    .div-block-161.div-block-161-yellow {
      border-color: var(--yellow);
      justify-content: center;
      align-items: center;
    }
  
    .div-block-161.div-block-161-pink {
      border-color: var(--accent-pink);
      justify-content: space-between;
      align-items: stretch;
    }
  
    .image-158 {
      object-fit: contain;
    }
  
    .heading-95 {
      color: var(--elements-webflow-library-neutral--100);
      text-align: center;
      height: 50px;
      margin-top: 20px;
      margin-bottom: 0;
      padding: 0;
      font-family: Axiforma REAL, sans-serif;
      font-size: 21px;
      font-weight: 600;
    }
  
    .heading-96 {
      color: var(--elements-webflow-library-neutral--100);
      text-align: center;
      height: 65px;
      margin-top: 10px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 20px;
    }
  
    .div-block-162 {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 0;
    }
  
    .div-block-163 {
      margin-top: 20px;
    }
  
    .div-block-164 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .div-block-165 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-159 {
      margin-bottom: 40px;
    }
  
    .block-width {
      width: 234.281px;
    }
  
    .link-block-19, .div-block-166 {
      margin-bottom: 40px;
    }
  
    .div-block-167 {
      margin-bottom: 60px;
    }
  
    .div-block-168 {
      margin-top: 50px;
    }
  
    .div-block-169 {
      margin-top: 20px;
    }
  
    .batter-trading {
      background-color: #6e00d8;
      position: relative;
      bottom: 0;
    }
  
    .trading-h2 {
      padding-left: 0;
      padding-right: 0;
      font-family: Axiforma, sans-serif;
      font-size: 11.3vw;
      font-weight: 700;
      line-height: 49px;
      display: block;
    }
  
    .explore-support-centre {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      color: #080f1a80;
      margin-top: 10px;
      font-family: Brcandor Bf Bold, sans-serif;
      text-decoration: none;
      display: flex;
    }
  
    .heading-97 {
      color: var(--accent-pink);
      text-align: center;
      margin-bottom: 0;
      font-family: Axiforma, sans-serif;
      font-size: 32px;
      font-weight: 700;
      line-height: 41px;
    }
  
    .heading-97.green {
      color: var(--primary);
    }
  
    .heading-97.text-green {
      color: #64ed80;
    }
  
    .heading-98 {
      color: #fefeff;
      text-align: center;
      margin-top: 10px;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .heading-98.heading-98-1 {
      padding-left: 15px;
    }
  
    .div-block-170 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      margin-bottom: 20px;
      padding-left: 0;
      padding-right: 0;
      display: grid;
    }
  
    .link-block-20 {
      border: 1px solid var(--elements-webflow-library-neutral--100);
      color: var(--elements-webflow-library-neutral--100);
      text-align: center;
      width: 100%;
      height: 50px;
      margin-top: 20px;
      text-decoration: none;
      display: block;
    }
  
    .text-block-63 {
      border-radius: 20px;
      justify-content: center;
      align-items: center;
      width: 90%;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      display: flex;
    }
  
    .tap-to-collapse {
      opacity: 0;
      font-family: Axiforma REAL, sans-serif;
      font-weight: 400;
      line-height: 18px;
      position: absolute;
    }
  
    .image-161 {
      width: 100%;
    }
  
    .image-161.px-10 {
      margin-right: 10px;
      padding-left: 10px;
    }
  
    .image-162 {
      width: 100%;
      height: 100%;
    }
  
    .image-163, .image-164 {
      width: 100%;
    }
  
    .cell-32 {
      display: none;
    }
  
    .image-165 {
      width: 80px;
      height: 34px;
    }
  
    .div-block-171 {
      margin-top: -10px;
    }
  
    .image-166 {
      width: 110px;
    }
  
    .div-block-172 {
      grid-column-gap: 5px;
      grid-row-gap: 5px;
      justify-content: center;
      align-items: flex-end;
      display: flex;
    }
  
    .text-block-64 {
      color: var(--elements-webflow-library-neutral--100);
      position: relative;
      top: 3px;
    }
  
    .image-167 {
      object-fit: contain;
      width: 80px;
      height: 80px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .image-168 {
      object-fit: contain;
    }
  
    .text-block-65 {
      color: var(--neutral);
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .image-169 {
      width: 25px;
      height: 25px;
      position: relative;
    }
  
    .heading-100 {
      margin-top: 0;
      margin-bottom: 0;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 20px;
    }
  
    .div-block-173 {
      grid-column-gap: 8px;
      grid-row-gap: 8px;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      display: flex;
    }
  
    .image-172 {
      height: 26px;
    }
  
    .div-block-177 {
      grid-column-gap: 10px;
      grid-row-gap: 0px;
      margin-top: 15px;
    }
  
    .div-block-179 {
      height: 50%;
    }
  
    .div-block-180 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      grid-template-columns: 1fr 1fr;
      place-content: center;
      align-items: center;
      width: 100%;
      max-width: 100%;
      margin-top: 50px;
      margin-bottom: 0;
      display: flex;
    }
  
    .div-block-180.div-block-180-mob {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .star-top {
      position: absolute;
      top: -25px;
    }
  
    .image-178 {
      object-fit: cover;
      padding-left: 0;
    }
  
    .image-179 {
      margin-bottom: 20px;
    }
  
    .link-block-22 {
      width: 100%;
    }
  
    .div-block-181 {
      width: 100%;
      margin-top: 20px;
    }
  
    .image-181, .div-block-182 {
      width: 100%;
    }
  
    .image-182 {
      width: 79%;
      margin-top: 10px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 0;
      padding-right: 0;
    }
  
    .image-183 {
      width: 25px;
    }
  
    .image-184 {
      border-radius: 15px;
    }
  
    .div-block-184 {
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-185 {
      grid-column-gap: 15px;
      grid-row-gap: 15px;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
      margin-bottom: 20px;
      padding-right: 10px;
      display: flex;
    }
  
    .body-4 {
      font-family: Brcandor Bf Regular, sans-serif;
    }
  
    .image-185 {
      width: 40px;
      height: 40px;
    }
  
    .div-block-186 {
      background-image: linear-gradient(79deg, #de8796, #ff08ab);
      border-radius: 20px;
      padding: 20px;
    }
  
    .div-block-186._186-green {
      background-image: linear-gradient(79deg, #41b245, #64ed80);
    }
  
    .heading-101 {
      color: var(--elements-webflow-library-neutral--100);
      word-break: normal;
      margin-top: 0;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 19px;
      font-weight: 700;
      line-height: 27px;
    }
  
    .link-block-23 {
      text-decoration: none;
    }
  
    .text-block-71 {
      background-color: var(--primary);
      color: var(--neutral);
      text-align: center;
      border-radius: 20px;
      justify-content: center;
      align-items: center;
      height: 35px;
      margin-top: 10px;
      padding-left: 10px;
      padding-right: 10px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      display: flex;
    }
  
    .text-block-71.text-block-71-2 {
      border: 1px solid var(--elements-webflow-library-neutral--100);
      background-color: var(--purle);
      color: var(--elements-webflow-library-neutral--100);
      padding-left: 10px;
      padding-right: 10px;
    }
  
    .image-186 {
      width: 100%;
      margin-top: 10px;
    }
  
    .image-187 {
      object-fit: contain;
      width: 80px;
      height: 80px;
    }
  
    .div-block-187 {
      margin-bottom: 20px;
    }
  
    .green--star {
      color: var(--primary);
      position: absolute;
      top: -7px;
    }
  
    .text-block-72 {
      color: var(--neutral);
      margin-top: 8px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 18px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .text-block-73 {
      line-height: 24px;
    }
  
    .image-188 {
      border-top-color: #8596b2;
      margin-top: 10px;
      margin-left: auto;
      margin-right: auto;
      padding-top: 10px;
    }
  
    .image-189 {
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-188 {
      background-color: #00000073;
      height: 510px;
      padding-top: 25px;
      padding-bottom: 25px;
    }
  
    .final-cta-overlay {
      color: #00000073;
      background-color: #00143352;
    }
  
    .final-cta-social-content {
      grid-column-gap: 20px;
      grid-row-gap: 0px;
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    .final-cta-image._1, .final-cta-image._2, .final-cta-image._3 {
      border-radius: 20px;
    }
  
    .final-cta-image._4 {
      object-fit: contain;
      height: 100%;
      display: none;
    }
  
    .final-cta-image._5 {
      display: none;
    }
  
    .background-video {
      width: 100%;
      height: 0;
    }
  
    .nav-menu-content {
      z-index: 9999;
      grid-column-gap: 60px;
      grid-row-gap: 60px;
      background-color: var(--purle);
      flex-flow: column;
      justify-content: flex-end;
      align-items: stretch;
      width: 100%;
      height: auto;
      padding-left: 20px;
      padding-right: 20px;
      display: flex;
      position: relative;
      overflow: auto;
    }
  
    .image-190 {
      display: none;
    }
  
    .image-192 {
      height: 24px;
    }
  
    .sitemapmenu {
      margin-bottom: 10px;
      font-family: Brcandor Bf Medium, sans-serif;
      font-weight: 500;
    }
  
    .logo-white {
      width: 90px;
      height: 40px;
      display: none;
      position: absolute;
      inset: 0% auto auto 4px;
    }
  
    .image-194 {
      height: 70px;
    }
  
    .quick-stack-47 {
      grid-column-gap: 5px;
      grid-row-gap: 5px;
    }
  
    .text-block-76 {
      line-height: 40px;
    }
  
    .div-block-191 {
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .text-block-77 {
      line-height: 20px;
    }
  
    .block-full {
      width: 100%;
      display: block;
    }
  
    .text-block-78 {
      line-height: 40px;
    }
  
    .div-block-192.show-mobile {
      display: flex;
    }
  
    .div-block-193 {
      margin-bottom: 80px;
    }
  
    .div-block-194 {
      margin-bottom: 10px;
    }
  
    .review-list-mob {
      display: block;
    }
  
    .div-block-195 {
      margin-top: 10px;
      margin-bottom: 30px;
    }
  
    .image-195 {
      height: 26px;
    }
  
    .div-block-198 {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .div-block-199 {
      text-align: center;
    }
  
    .div-block-200 {
      margin-top: 30px;
    }
  
    .image-196 {
      width: 60px;
      height: 60px;
    }
  
    .heading-102 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .number-2 {
      justify-content: center;
      align-items: center;
      width: 40px;
      min-width: 40px;
      height: 39px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
      line-height: 20px;
    }
  
    .quick-stack-49 {
      padding-left: 0;
      padding-right: 0;
    }
  
    .link-block-25 {
      min-width: 100%;
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
    }
  
    .heading-104 {
      margin-top: 5px;
      margin-bottom: 0;
      font-size: 24px;
      line-height: 17px;
    }
  
    .heading-104.purple {
      line-height: 13px;
    }
  
    .text-block-80 {
      margin-top: 0;
      font-size: 12px;
      line-height: 16px;
    }
  
    .image-198 {
      display: none;
    }
  
    .step-item-2 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
      background-color: #3667e9;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      width: 260px;
      display: grid;
    }
  
    .heading-105 {
      font-size: 24px;
      line-height: 24px;
    }
  
    .image-199 {
      height: 60px;
    }
  
    .text-block-81 {
      font-weight: 700;
    }
  
    .quick-stack-50 {
      grid-column-gap: 0px;
      grid-row-gap: 0px;
    }
  
    .heading-106 {
      font-family: Axiforma, sans-serif;
      font-size: 100px;
      font-weight: 700;
      line-height: 100px;
    }
  
    .heading-106.purple {
      position: relative;
    }
  
    .heading-107 {
      margin-bottom: 20px;
      font-size: 40px;
      line-height: 41px;
    }
  
    .div-block-203 {
      height: 50px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .counter-totle-2 {
      justify-content: flex-start;
      align-items: flex-start;
    }
  
    .heading-108 {
      margin-bottom: 20px;
      font-size: 40px;
      line-height: 41px;
    }
  
    .join-now-2 {
      border-radius: 30px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
      line-height: 24px;
    }
  
    .join-now-2.shadow {
      min-width: 100%;
      padding-left: 40px;
      padding-right: 40px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .div-block-204 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-205, .image-200 {
      width: 100%;
    }
  
    .image-202 {
      height: 100%;
    }
  
    .div-block-208 {
      width: 100%;
      margin-top: 20px;
    }
  
    .image-206 {
      max-width: 100%;
    }
  
    .quick-stack-53 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
    }
  
    .div-block-213 {
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;
    }
  
    .section-23 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .section-23.perfitfi {
      margin-top: 60px;
      margin-bottom: 70px;
    }
  
    .div-block-216 {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  
    .div-block-217 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .div-block-218 {
      margin-left: 20px;
      margin-right: 20px;
    }
  
    .div-block-219 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .image-208 {
      object-fit: cover;
      margin-right: 0;
    }
  
    .wrap-road-image {
      height: 100%;
      position: absolute;
      top: 30px;
      left: auto;
    }
  
    .contain-time-line {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .border-line {
      border-color: #fafcff40;
    }
  
    .heading-109 {
      font-size: 24px;
    }
  
    .paragraph-51 {
      word-break: break-all;
      font-size: 16px;
      line-height: 24px;
    }
  
    .paragraph-51.natural {
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 22px;
    }
  
    .image-211 {
      width: 25px;
      height: 25px;
    }
  
    .div-block-220 {
      margin-top: 30px;
    }
  
    .heading-110 {
      text-align: left;
      width: 100%;
      font-size: 12px;
      line-height: 16px;
    }
  
    .text-block-84 {
      font-size: 20px;
    }
  
    .section-24 {
      height: 94vh;
      margin-bottom: 0;
    }
  
    .section-24._404banner {
      border-bottom-right-radius: 20px;
      border-bottom-left-radius: 20px;
      margin-bottom: 60px;
    }
  
    .div-block-229 {
      margin-top: 0;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .heading-111 {
      font-size: 64px;
      line-height: 41px;
    }
  
    .heading-112 {
      margin-top: 25px;
      margin-bottom: 60px;
      font-size: 36px;
      line-height: 41px;
    }
  
    .heading-113 {
      margin-bottom: 50px;
      line-height: 32px;
    }
  
    .link-block-26 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      height: 50px;
      font-size: 16px;
      line-height: 24px;
    }
  
    .link-block-26.w--current {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      border-radius: 30px;
      width: 100%;
      height: 50px;
      margin-top: 60px;
      font-size: 16px;
      line-height: 24px;
    }
  
    .image-218 {
      height: 22px;
    }
  
    .div-block-230 {
      width: 100%;
      margin-top: 0;
    }
  
    .text-block-85 {
      margin-top: 6px;
    }
  
    .image-219 {
      height: 70px;
      font-family: Brcandor Bf Bold, sans-serif;
      font-weight: 700;
    }
  
    .cookies {
      background-color: var(--elements-webflow-library-neutral--100);
      border-radius: 20px;
    }
  
    .heading-115 {
      font-size: 19px;
    }
  
    .text-block-86 {
      margin-top: 0;
      font-size: 14px;
      line-height: 18px;
    }
  
    .cookie-icon-wrapper {
      justify-content: flex-start;
      align-items: center;
    }
  
    .cookie-button {
      padding-left: 32px;
      padding-right: 32px;
    }
  
    .cookie-button.margin-right-20 {
      height: 44px;
      margin-right: 10px;
      font-size: 15px;
    }
  
    .cookie-row-2 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .cookie-heading-wrapper {
      justify-content: flex-start;
      align-items: flex-start;
      margin-bottom: 0;
    }
  
    .cookie-buttons {
      margin-top: 15px;
    }
  
    .cookie-banner {
      z-index: 99999999;
      width: 75%;
      margin-bottom: 10px;
      margin-right: 10px;
      display: block;
    }
  
    .cookie-row {
      padding: 15px;
    }
  
    .div-block-231 {
      margin-top: 40px;
    }
  
    .div-block-232 {
      background-image: linear-gradient(#ffffffbf, #e61460bf);
    }
  
    .div-block-233 {
      margin-bottom: 20px;
    }
  
    .image-223 {
      width: 100%;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .heading-116 {
      font-size: 24px;
      line-height: 32px;
    }
  
    .text-block-87 {
      font-size: 16px;
      line-height: 24px;
    }
  
    .heading-117 {
      line-height: 24px;
    }
  
    .detailed {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .text-block-88 {
      font-size: 16px;
      line-height: 24px;
    }
  
    .cookie-modal_button-wrap.is-small {
      justify-content: space-between;
      padding: 1.25rem;
    }
  
    .cookie-modal_closebutton {
      margin-top: 1rem;
      margin-right: 1rem;
    }
  
    .cookie-modal_content-wrap.is-small {
      padding-bottom: 1.25rem;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
  
    .cookie-popup_component {
      max-width: 100%;
      inset: auto 0% 0%;
    }
  
    .cookie-modal_component {
      max-width: 100%;
    }
  
    .cookie-modal_button {
      flex: auto;
      padding-left: 1.25em;
      padding-right: 1.25em;
    }
  
    .image-224 {
      margin-top: 5px;
      margin-bottom: 5px;
    }
  
    .image-225 {
      width: 26px;
      height: 26px;
    }
  
    .image-226 {
      margin-bottom: 10px;
    }
  
    .div-block-236 {
      grid-column-gap: 10px;
      grid-row-gap: 10px;
      justify-content: center;
      align-items: center;
    }
  
    .image-227 {
      object-fit: contain;
      width: 100px;
      height: 40px;
    }
  
    .div-block-238 {
      margin-top: 40px;
    }
  
    .image-228 {
      height: 21px;
    }
  
    .image-229 {
      height: 30px;
    }
  
    .text-block-92, .text-block-93 {
      font-size: 18px;
    }
  
    .bold-text-4 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .text-block-95 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
    }
  
    .text-block-97 {
      font-family: Axiforma REAL, sans-serif;
    }
  
    .text-span-11 {
      color: var(--accent-pink);
    }
  
    .text-span-12 {
      color: var(--accent-pink);
      font-size: 65px;
    }
  
    .text-span-14, .text-span-15, .text-span-16 {
      color: var(--accent);
    }
  
    .text-span-18 {
      color: var(--accent-pink);
    }
  
    .heading-119 {
      color: var(--neutral);
      text-align: center;
      margin-top: 20px;
      margin-bottom: 0;
      font-family: Axiforma, sans-serif;
      font-size: 40px;
      font-weight: 700;
      line-height: 45px;
    }
  
    .grayclr {
      color: var(--gray);
    }
  
    .div-block-246 {
      margin-bottom: 40px;
    }
  
    .text-span-32, .text-span-33 {
      color: var(--gray);
    }
  
    .div-block-247 {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .text-span-34, .text-span-35 {
      color: var(--gray);
    }
  
    .bold-text-5 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 22px;
    }
  
    .skyclr {
      color: var(--accent);
    }
  
    .bold-text-6 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
    }
  
    .bold-text-7 {
      font-size: 16px;
      line-height: 22px;
    }
  
    .bold-text-8 {
      font-family: Axiforma REAL, sans-serif;
      font-size: 14px;
      font-weight: 500;
    }
  
    .bold-text-9 {
      font-weight: 500;
    }
  
    .bold-text-10 {
      padding-right: 0;
    }
  
    .bold-text-11 {
      font-family: Axiforma REAL, sans-serif;
      font-weight: 500;
    }
  
    .bold-text-12 {
      font-size: 50px;
      line-height: 45px;
    }
  
    .text-span-36 {
      color: #fff;
    }
  
    .bold-text-13 {
      font-family: Axiforma, sans-serif;
      font-size: 37px;
    }
  
    .text-span-37 {
      font-size: 40px;
    }
  
    .cell-39, .cell-40, .cell-41 {
      padding-left: 0;
    }
  
    .whitetext {
      color: var(--elements-webflow-library-neutral--100);
    }
  
    .div-block-248 {
      padding-top: 30px;
    }
  
    .div-block-252 {
      margin-bottom: 40px;
    }
  
    .div-block-254 {
      text-align: center;
    }
  
    .text-span-39 {
      color: var(--accent);
    }
  
    .div-block-261 {
      width: 100%;
    }
  
    .image-234 {
      width: 25px;
      height: 25px;
    }
  
    .avg-box {
      padding-bottom: 20px;
    }
  
    .heading-124 {
      font-size: 20px;
      line-height: 26px;
    }
  
    .image-235 {
      width: 30px;
      height: 30px;
    }
  
    .bullo-content {
      padding-top: 24px;
    }
  
    .heading-126 {
      margin-top: 20px;
      margin-bottom: 20px;
      padding-bottom: 10px;
    }
  
    .heading-127 {
      margin-top: 0;
      font-family: Brcandor Bf Bold, sans-serif;
      font-size: 28px;
      font-weight: 500;
    }
  
    .header-logo {
      padding-bottom: 0;
    }
  
    .overlay_img.overlay_img_phone {
      display: none;
      inset: 0%;
    }
  
    .progres-row {
      margin-top: -20px;
    }
  
    .text-block-99 {
      max-width: 98px;
      margin-top: 10px;
      margin-left: auto;
      margin-right: auto;
    }
  
    .image-239 {
      max-width: 68%;
      margin-left: 26px;
    }
  
    .footer-bottom {
      margin-top: 60px;
    }
  
    .heading-130 {
      font-size: 12px;
    }
  
    .image-241 {
      text-align: center;
      max-width: 50%;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }
  }
  
  #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f79-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f7f-90e715a8, #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f86-90e715a8, #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f8f-90e715a8, #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f98-90e715a8 {
    order: 0;
    justify-self: center;
  }
  
  #w-node-da1287d3-3e72-0901-7e7f-ce832fa9d513-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-ade2d2cd-9ab4-6442-5ef3-79e05b054da5-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }
  
  #w-node-_88325f97-65cc-a4b2-e1ab-540b135bed38-90e715a8, #w-node-_88325f97-65cc-a4b2-e1ab-540b135bee4a-90e715a8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_6d96535b-57bd-7a79-cb0b-39e919b4bb39-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_6bf8f2e7-05c7-e275-e532-b03e061a0b47-90e715a8, #w-node-_6bf8f2e7-05c7-e275-e532-b03e061a0b4f-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_6518e280-4bde-9399-577a-ce3eb6903eea-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_9ad81765-8a04-9933-96ed-93ca7d8b03cc-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: none;
  }
  
  #w-node-b1f9e773-e4be-faba-d21d-3c5ea573f5ef-90e715a8, #w-node-b1f9e773-e4be-faba-d21d-3c5ea573f5f0-90e715a8, #w-node-b1f9e773-e4be-faba-d21d-3c5ea573f5ff-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_0f83e817-31fb-f563-28dc-cafeaa501ba0-90e715a8, #w-node-_6ff54d2c-4b74-8be5-973e-7d5e6de4193a-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339d820-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339d864-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339d876-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339d87c-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339d887-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339d890-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339d899-90e715a8 {
    order: 0;
    justify-self: center;
  }
  
  #w-node-d1c278a4-c4d2-b961-48c6-113d6ba2712d-90e715a8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-d1c278a4-c4d2-b961-48c6-113d6ba273a0-90e715a8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-d1c278a4-c4d2-b961-48c6-113d6ba274ba-90e715a8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-d1c278a4-c4d2-b961-48c6-113d6ba277a9-90e715a8 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e208-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e25d-90e715a8, #w-node-faa747ea-12bb-add0-54a3-1270de404518-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e295-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e2a3-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    display: none;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e337-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e34c-90e715a8, #w-node-_295f112d-5a7a-9b7c-1152-3e41a253edd7-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e390-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3b3-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3b4-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3c9-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3e9-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e50e-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr .5fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e5a3-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e5ef-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e611-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_38c81846-7ecc-2e98-e23e-54c07339e61d-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e621-90e715a8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_971cf8ca-76df-834a-ed2c-eb21029ad6c4-029ad6ae {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr 1fr;
  }
  
  #w-node-_88c29b34-71b3-5855-414e-438484b2d3ef-029ad6ae, #w-node-afd69720-d53e-60ab-98f7-e956390758e5-029ad6ae {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-a1e41f4d-6992-3008-bbed-f11407721059-07721050 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_12f79db7-212d-8768-be5b-409a2751e158-2751e157 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }
  
  #w-node-_63260878-e687-70e3-abf6-7d126111e337-6111e32c, #w-node-_46fc2bed-786a-3259-d915-03705891a9db-5891a9cc, #w-node-_46fc2bed-786a-3259-d915-03705891a9dc-5891a9cc {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_11848098-a570-3bd2-a149-a22bf076fe15-f076fe0b {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_11848098-a570-3bd2-a149-a22bf0770088-f076fe0b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-_11848098-a570-3bd2-a149-a22bf07701a2-f076fe0b {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_11848098-a570-3bd2-a149-a22bf0770491-f076fe0b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-aeebcdaa-80c0-56e6-9705-843e2837c21e-2837c20b {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5ae-0b8cc59a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5dc-0b8cc59a {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-a9aeba12-2562-4fc9-b065-35cb70afc99d-70afc989 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-a9aeba12-2562-4fc9-b065-35cb70afc9ba-70afc989 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_9ddc8479-4866-cac9-21f5-5c79d13b3eec-d13b3eec {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-fc6871a1-697d-15fa-d976-2c06e0780033-e0780031 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr .5fr;
  }
  
  #w-node-_7b09f55c-3384-7cf9-7db2-87aa95eb6d53-95eb6d51, #w-node-_7b09f55c-3384-7cf9-7db2-87aa95eb6d6b-95eb6d51 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-bd52bc26-b24f-ae18-2b8b-bca4b77a2b68-95eb6d51, #w-node-ade9ab54-0231-ea1c-f845-bd208b5eb516-95eb6d51 {
    justify-self: center;
  }
  
  #w-node-ef056416-2212-839b-cf81-fd6b8960846d-8960846d {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_08a5fecd-abdb-d881-625d-e62f0eabd42f-0eabd42d {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }
  
  #w-node-_58fc383f-f055-bf31-03d4-b0a340bdb978-40bdb976 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_96f99581-bd69-1384-3660-9dba504bb07e-504bb076, #w-node-_1b8e23bd-acd7-5a5f-c1ed-d3c7daa52824-daa52815, #w-node-_1b8e23bd-acd7-5a5f-c1ed-d3c7daa52825-daa52815, #w-node-_4acf184e-b1e1-3325-2b9f-ba39e5991bdf-e5991bcc {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-fc69dad1-fe90-6ebc-ff08-022184354981-e31f54fe {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
  
  #w-node-_4530b61b-3a76-4fac-9505-1a75aec0103b-514dbf66 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-e3343c29-f4f4-fb83-8e46-bd77a65bdac2-514dbf66, #w-node-e3343c29-f4f4-fb83-8e46-bd77a65bdac6-514dbf66 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-ecc0fd93-bc35-de33-7cf7-830665ec6550-514dbf66 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-_695297db-7959-20ec-c7fa-eb183ec86723-514dbf66, #w-node-_695297db-7959-20ec-c7fa-eb183ec86727-514dbf66 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-dfa74436-931f-820e-0014-ab62e9030bbe-298eb91f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-dfa74436-931f-820e-0014-ab62e9030bf1-298eb91f {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-c6997385-6fb6-7ac8-852d-2e355466976a-b325285a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_7d3ef6eb-6267-6ab5-743f-86a65b5aea7f-b325285a {
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    display: none;
  }
  
  #w-node-_11bf31d7-7d94-e5f5-9a9e-b1a15f0564e4-2fa8b8ae {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_24537bbd-fa8c-bb31-1f10-cc5f0a99c8d8-5441e067, #w-node-d36efa55-cc75-1de6-8d37-bad97349f57c-5441e067, #w-node-a2003746-856a-08f0-e07f-f5dc8657c130-5441e067, #w-node-_33464ad2-3ef6-f78f-d0f4-87d138085f42-5441e067 {
    align-self: start;
  }
  
  #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d0b-43ebc96b, #w-node-_7cf97f49-e1c5-4ab8-1719-5199c2764ce1-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d24-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d3d-43ebc96b {
    grid-template-rows: auto;
    grid-template-columns: .4fr 1fr;
  }
  
  #w-node-_49e25503-9d08-2627-249c-b414de418467-43ebc96b {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: none;
  }
  
  #w-node-_90ff4e93-72da-faf2-1133-dd928b2a16b3-43ebc96b, #w-node-_90ff4e93-72da-faf2-1133-dd928b2a16f6-43ebc96b, #w-node-_90ff4e93-72da-faf2-1133-dd928b2a16fa-43ebc96b {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_76e00e65-519f-81d6-0d0a-3e0f5914f0b9-3656417a, #w-node-_76e00e65-519f-81d6-0d0a-3e0f5914f0b9-959419e9 {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr 1fr;
  }
  
  #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-3d692973 {
    grid-template-rows: auto;
    grid-template-columns: .8fr 1fr;
  }
  
  #w-node-_92f54951-ed7f-9d39-2f8f-af738c8dbfea-3d692973, #w-node-d271843a-bc39-9ee6-d118-ac0483e48025-3d692973, #w-node-_3b79b130-750c-94ad-e7d1-63480b52d945-3d692973, #w-node-_3b79b130-750c-94ad-e7d1-63480b52d95a-3d692973 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-d181cc89-1cf7-0484-0f83-720a769d36d2-769d36c8, #w-node-d181cc89-1cf7-0484-0f83-720a769d37e4-769d36c8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-40a0d092 {
    grid-template-rows: auto;
    grid-template-columns: .8fr 1fr;
  }
  
  #w-node-_39d611a4-a436-34f7-43a7-98e1b11e70a5-40a0d092 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-cb065f46-22f6-c7d4-082b-0e6a2315967e-40a0d092 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  
  #w-node-a590ae64-9c57-a6bb-4e48-5f1f89947425-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.25fr;
  }
  
  #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc188-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc18e-2a1f7207, #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc195-2a1f7207, #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc19e-2a1f7207, #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc1a7-2a1f7207 {
    order: 0;
    justify-self: center;
  }
  
  #w-node-affc4dda-0d5e-b298-8cec-630baeeceefe-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-affc4dda-0d5e-b298-8cec-630baeecef0a-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_0a7d76f6-59b0-91c8-5e53-908f0628ade3-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }
  
  #w-node-_04b390ef-2ccf-b6dc-d598-15471fac431c-2a1f7207, #w-node-_3fcc07b3-64ca-fb04-2d8b-014ff380f983-2a1f7207, #w-node-ced45f3b-2a00-d3de-2df1-793140d803cd-2a1f7207, #w-node-ced45f3b-2a00-d3de-2df1-793140d803e2-2a1f7207 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }
  
  #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a2a-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr .5fr;
  }
  
  #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a3c-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a4b-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a69-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
  }
  
  #w-node-ce17c9b7-2b1a-483e-cb06-c5aad0623541-0dc47e7c, #w-node-ce17c9b7-2b1a-483e-cb06-c5aad0623545-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f24-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr .5fr;
  }
  
  #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f38-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f47-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f65-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1fr .5fr;
  }
  
  #w-node-_39f79b9f-4d74-0c7a-dd26-eed1094ea6f2-0dc47e7c {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr .5fr;
  }
  
  #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-1f2e2cf2 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }
  
  #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-1f2e2cf2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-b4b770f5-b7a8-4470-7ff4-7c782868cddf-1f2e2cf2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-1f2e2cf2, #w-node-_8ef6a5d6-8ca2-bb7f-bef8-f0ceaa9d51bc-1f2e2cf2, #w-node-_8ef6a5d6-8ca2-bb7f-bef8-f0ceaa9d51d1-1f2e2cf2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_96927217-fd0f-81c6-a359-f328befd4fd7-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr .5fr;
  }
  
  #w-node-_23a15175-13bc-c9b9-7ca3-e05df8460226-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: .75fr .75fr;
  }
  
  #w-node-_505e4948-462e-60c2-0206-46fcac2aeee3-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_548dcc8a-7b61-3644-5a33-c3158c790ab7-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-aeb00c9b-fa03-30b5-5d25-cc6fee6270a5-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_176bb329-114e-2a76-c140-d54eed9a97b5-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-a6a71b3e-917a-bd5b-10af-ecf5124f3885-5cf56458 {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
  }
  
  #w-node-a590ae64-9c57-a6bb-4e48-5f1f89947425-ad1f8f03 {
    grid-template-rows: auto;
    grid-template-columns: 2.25fr 1.25fr;
  }
  
  #w-node-_83a731d9-aff9-c4b9-518f-25a3f1009627-ad1f8f03 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-_06e91f87-7f1e-7bdf-d9e5-e9a046f02759-ad1f8f03 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_0e7bf260-ffd8-0a71-d27d-dfbd92a126b2-ad1f8f03 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  #w-node-_51f1a62d-98d3-758e-dcdb-c61d7270703f-ad1f8f03 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr .5fr;
  }
  
  #w-node-_58acde48-a0b2-eae5-9759-910fd94637a0-a3f047c8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr .75fr;
  }
  
  #w-node-_6f00776e-4cd0-02f1-852d-2eb19d1c3bfa-a3f047c8, #w-node-_6f00776e-4cd0-02f1-852d-2eb19d1c3bfe-a3f047c8 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-bdb4e882 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
  }
  
  #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-bdb4e882 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-_765c4c47-8358-1018-3674-0d9d2f90f19f-bdb4e882 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1.5fr;
  }
  
  #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-bdb4e882 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  #w-node-b4b770f5-b7a8-4470-7ff4-7c782868cddf-bdb4e882 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
  
  #w-node-a1774dc9-4c50-3419-9d90-20f6f736e711-f736e710, #w-node-a1774dc9-4c50-3419-9d90-20f6f736e72b-f736e710 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  
  @media screen and (min-width: 1280px) {
    #w-node-ade9ab54-0231-ea1c-f845-bd208b5eb516-95eb6d51 {
      place-self: center;
    }
  }
  
  @media screen and (max-width: 991px) {
    #w-node-ca74aba0-e456-b4b8-9a91-1d962b481f79-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-ade2d2cd-9ab4-6442-5ef3-79e05b054da5-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: .75fr;
    }
  
    #w-node-_88325f97-65cc-a4b2-e1ab-540b135bed38-90e715a8, #w-node-_88325f97-65cc-a4b2-e1ab-540b135bee4a-90e715a8 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_6518e280-4bde-9399-577a-ce3eb6903eea-90e715a8, #w-node-_0f83e817-31fb-f563-28dc-cafeaa501ba0-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d820-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d876-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-d1c278a4-c4d2-b961-48c6-113d6ba2712d-90e715a8, #w-node-d1c278a4-c4d2-b961-48c6-113d6ba274ba-90e715a8 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e208-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e295-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e34c-90e715a8, #w-node-_295f112d-5a7a-9b7c-1152-3e41a253edd7-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e390-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3e9-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e50e-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1.5fr;
    }
  
    #w-node-a1e41f4d-6992-3008-bbed-f11407721059-07721050 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    #w-node-_12f79db7-212d-8768-be5b-409a2751e158-2751e157 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      display: grid;
    }
  
    #w-node-_12f79db7-212d-8768-be5b-409a2751e190-2751e157 {
      order: -9999;
    }
  
    #w-node-_63260878-e687-70e3-abf6-7d126111e337-6111e32c {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_46fc2bed-786a-3259-d915-03705891a9dc-5891a9cc {
      display: grid;
    }
  
    #w-node-_11848098-a570-3bd2-a149-a22bf076fe15-f076fe0b, #w-node-_11848098-a570-3bd2-a149-a22bf07701a2-f076fe0b {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-aeebcdaa-80c0-56e6-9705-843e2837c21e-2837c20b {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5ae-0b8cc59a {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5dc-0b8cc59a {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-fc6871a1-697d-15fa-d976-2c06e0780033-e0780031 {
      grid-template-rows: auto;
      grid-template-columns: 1.5fr;
    }
  
    #w-node-_08a5fecd-abdb-d881-625d-e62f0eabd42f-0eabd42d {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      display: grid;
    }
  
    #w-node-_08a5fecd-abdb-d881-625d-e62f0eabd49b-0eabd42d {
      order: -9999;
    }
  
    #w-node-_58fc383f-f055-bf31-03d4-b0a340bdb978-40bdb976 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_1b8e23bd-acd7-5a5f-c1ed-d3c7daa52825-daa52815 {
      display: grid;
    }
  
    #w-node-_4acf184e-b1e1-3325-2b9f-ba39e5991bdf-e5991bcc {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-dfa74436-931f-820e-0014-ab62e9030bbe-298eb91f {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-dfa74436-931f-820e-0014-ab62e9030bf1-298eb91f {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-c6997385-6fb6-7ac8-852d-2e355466976a-b325285a {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
  
    #w-node-_11bf31d7-7d94-e5f5-9a9e-b1a15f0564e4-2fa8b8ae {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d0b-43ebc96b, #w-node-_7cf97f49-e1c5-4ab8-1719-5199c2764ce1-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d24-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d3d-43ebc96b {
      grid-template-rows: auto;
      grid-template-columns: .8fr;
    }
  
    #w-node-_49e25503-9d08-2627-249c-b414de418467-43ebc96b {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_76e00e65-519f-81d6-0d0a-3e0f5914f0b9-3656417a, #w-node-_76e00e65-519f-81d6-0d0a-3e0f5914f0b9-959419e9 {
      grid-template-rows: auto;
      grid-template-columns: 1.25fr;
    }
  
    #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-3d692973 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_3b79b130-750c-94ad-e7d1-63480b52d95a-3d692973 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-d181cc89-1cf7-0484-0f83-720a769d36d2-769d36c8, #w-node-d181cc89-1cf7-0484-0f83-720a769d37e4-769d36c8 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-40a0d092 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_39d611a4-a436-34f7-43a7-98e1b11e70a5-40a0d092 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-cb065f46-22f6-c7d4-082b-0e6a2315967e-40a0d092 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr 1fr;
    }
  
    #w-node-a590ae64-9c57-a6bb-4e48-5f1f89947425-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-a590ae64-9c57-a6bb-4e48-5f1f89947427-2a1f7207 {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc188-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-affc4dda-0d5e-b298-8cec-630baeeceefe-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_0a7d76f6-59b0-91c8-5e53-908f0628ade3-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      display: grid;
    }
  
    #w-node-_0a7d76f6-59b0-91c8-5e53-908f0628ae4f-2a1f7207 {
      order: -9999;
    }
  
    #w-node-ced45f3b-2a00-d3de-2df1-793140d803e2-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-0dc47e7c {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_9615e5a9-9b84-06d3-73dd-6fa5b738ddc9-0dc47e7c {
      place-self: center;
    }
  
    #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f65-0dc47e7c {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_39f79b9f-4d74-0c7a-dd26-eed1094ea6f2-0dc47e7c {
      grid-template-rows: auto;
      grid-template-columns: 1.5fr;
    }
  
    #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-b4b770f5-b7a8-4470-7ff4-7c782868cddf-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_96927217-fd0f-81c6-a359-f328befd4fd7-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1.5fr;
    }
  
    #w-node-_548dcc8a-7b61-3644-5a33-c3158c790ab7-5cf56458, #w-node-aeb00c9b-fa03-30b5-5d25-cc6fee6270a5-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-a6a71b3e-917a-bd5b-10af-ecf5124f3885-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-a590ae64-9c57-a6bb-4e48-5f1f89947425-ad1f8f03 {
      grid-template-rows: auto;
      grid-template-columns: 2.25fr;
    }
  
    #w-node-_83a731d9-aff9-c4b9-518f-25a3f1009627-ad1f8f03 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_51f1a62d-98d3-758e-dcdb-c61d7270703f-ad1f8f03 {
      grid-template-rows: auto;
      grid-template-columns: 1.5fr;
    }
  
    #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_765c4c47-8358-1018-3674-0d9d2f90f19f-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      display: grid;
    }
  
    #w-node-_765c4c47-8358-1018-3674-0d9d2f90f1d7-bdb4e882 {
      order: -9999;
    }
  
    #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-b4b770f5-b7a8-4470-7ff4-7c782868cddf-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-a1774dc9-4c50-3419-9d90-20f6f736e72b-f736e710 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media screen and (max-width: 767px) {
    #w-node-da1287d3-3e72-0901-7e7f-ce832fa9d513-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-ade2d2cd-9ab4-6442-5ef3-79e05b054da5-90e715a8, #w-node-_6d96535b-57bd-7a79-cb0b-39e919b4bb39-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339d820-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d864-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e208-90e715a8, #w-node-faa747ea-12bb-add0-54a3-1270de404518-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e34c-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e5ef-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e611-90e715a8, #w-node-_971cf8ca-76df-834a-ed2c-eb21029ad6c4-029ad6ae {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-a1e41f4d-6992-3008-bbed-f11407721059-07721050 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_63260878-e687-70e3-abf6-7d126111e337-6111e32c, #w-node-_46fc2bed-786a-3259-d915-03705891a9dc-5891a9cc, #w-node-aeebcdaa-80c0-56e6-9705-843e2837c21e-2837c20b {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5ae-0b8cc59a {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_78663f44-1ef7-f347-dbf6-32380b8cc5dc-0b8cc59a, #w-node-a9aeba12-2562-4fc9-b065-35cb70afc99d-70afc989, #w-node-a9aeba12-2562-4fc9-b065-35cb70afc9ba-70afc989 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_7b09f55c-3384-7cf9-7db2-87aa95eb6d6b-95eb6d51 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_96f99581-bd69-1384-3660-9dba504bb07e-504bb076, #w-node-_1b8e23bd-acd7-5a5f-c1ed-d3c7daa52825-daa52815, #w-node-_4acf184e-b1e1-3325-2b9f-ba39e5991bdf-e5991bcc, #w-node-_4530b61b-3a76-4fac-9505-1a75aec0103b-514dbf66, #w-node-ecc0fd93-bc35-de33-7cf7-830665ec6550-514dbf66 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-dfa74436-931f-820e-0014-ab62e9030bbe-298eb91f {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-dfa74436-931f-820e-0014-ab62e9030bf1-298eb91f {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-c6997385-6fb6-7ac8-852d-2e355466976a-b325285a {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_11bf31d7-7d94-e5f5-9a9e-b1a15f0564e4-2fa8b8ae {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d0b-43ebc96b, #w-node-_7cf97f49-e1c5-4ab8-1719-5199c2764ce1-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d24-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d3d-43ebc96b, #w-node-_49e25503-9d08-2627-249c-b414de418467-43ebc96b, #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-3d692973 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-d271843a-bc39-9ee6-d118-ac0483e48025-3d692973, #w-node-_3b79b130-750c-94ad-e7d1-63480b52d95a-3d692973 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-40a0d092 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-cb065f46-22f6-c7d4-082b-0e6a2315967e-40a0d092 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-affc4dda-0d5e-b298-8cec-630baeeceefe-2a1f7207, #w-node-affc4dda-0d5e-b298-8cec-630baeecef0a-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_3fcc07b3-64ca-fb04-2d8b-014ff380f983-2a1f7207, #w-node-ced45f3b-2a00-d3de-2df1-793140d803e2-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_29e6ce7e-9671-98f1-96af-ca7dd9508427-0dc47e7c, #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a2a-0dc47e7c, #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a3c-0dc47e7c, #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a4b-0dc47e7c, #w-node-_9b1d937e-ce1a-f002-ddce-3e7332b28a69-0dc47e7c, #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f24-0dc47e7c, #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f38-0dc47e7c, #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f47-0dc47e7c, #w-node-_4fabcc82-bf2d-fb65-8268-0b8d2c8f4f65-0dc47e7c, #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-1f2e2cf2, #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-1f2e2cf2, #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_8ef6a5d6-8ca2-bb7f-bef8-f0ceaa9d51d1-1f2e2cf2 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-_23a15175-13bc-c9b9-7ca3-e05df8460226-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_23a15175-13bc-c9b9-7ca3-e05df8460228-5cf56458 {
      order: -9999;
    }
  
    #w-node-_505e4948-462e-60c2-0206-46fcac2aeee3-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_548dcc8a-7b61-3644-5a33-c3158c790ab7-5cf56458 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  
    #w-node-aeb00c9b-fa03-30b5-5d25-cc6fee6270a5-5cf56458, #w-node-_83a731d9-aff9-c4b9-518f-25a3f1009627-ad1f8f03, #w-node-_0e7bf260-ffd8-0a71-d27d-dfbd92a126b2-ad1f8f03, #w-node-_58acde48-a0b2-eae5-9759-910fd94637a0-a3f047c8, #w-node-_8a6a73bf-40d3-297c-6e01-8646aa4f5f02-bdb4e882, #w-node-_0d277f96-b813-b857-86a3-e332814f6ea1-bdb4e882, #w-node-_34f98996-5c90-dc01-9546-318bbb72bbd5-bdb4e882 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-a1774dc9-4c50-3419-9d90-20f6f736e72b-f736e710 {
      grid-template-rows: auto;
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media screen and (max-width: 479px) {
    #w-node-_2e9f195f-034b-2635-edcb-79964a4419a8-90e715a8 {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    #w-node-_88325f97-65cc-a4b2-e1ab-540b135bed38-90e715a8, #w-node-_88325f97-65cc-a4b2-e1ab-540b135bee4a-90e715a8 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_6bf8f2e7-05c7-e275-e532-b03e061a0b47-90e715a8, #w-node-_6bf8f2e7-05c7-e275-e532-b03e061a0b4f-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-eccc5559-5a70-9edf-85c2-661a8162d763-90e715a8 {
      justify-self: start;
    }
  
    #w-node-eccc5559-5a70-9edf-85c2-661a8162d764-90e715a8 {
      justify-self: end;
    }
  
    #w-node-_6518e280-4bde-9399-577a-ce3eb6903eea-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_9ad81765-8a04-9933-96ed-93ca7d8b03cc-90e715a8 {
      display: grid;
    }
  
    #w-node-b1f9e773-e4be-faba-d21d-3c5ea573f5ff-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d7c4-90e715a8 {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d876-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d897-90e715a8 {
      place-self: center;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d97b-90e715a8 {
      justify-self: start;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339d97c-90e715a8 {
      justify-self: end;
    }
  
    #w-node-d1c278a4-c4d2-b961-48c6-113d6ba2712d-90e715a8, #w-node-d1c278a4-c4d2-b961-48c6-113d6ba274ba-90e715a8 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e25d-90e715a8, #w-node-faa747ea-12bb-add0-54a3-1270de404518-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e295-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e2a3-90e715a8 {
      display: grid;
    }
  
    #w-node-_295f112d-5a7a-9b7c-1152-3e41a253edd7-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_295f112d-5a7a-9b7c-1152-3e41a253edf6-90e715a8 {
      place-self: center;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e390-90e715a8 {
      display: none;
    }
  
    #w-node-_38c81846-7ecc-2e98-e23e-54c07339e3c9-90e715a8, #w-node-_38c81846-7ecc-2e98-e23e-54c07339e5a3-90e715a8 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_971cf8ca-76df-834a-ed2c-eb21029ad6e6-029ad6ae, #w-node-_971cf8ca-76df-834a-ed2c-eb21029ad713-029ad6ae {
      align-self: start;
    }
  
    #w-node-_46fc2bed-786a-3259-d915-03705891a9dc-5891a9cc {
      display: grid;
    }
  
    #w-node-_11848098-a570-3bd2-a149-a22bf076fe15-f076fe0b, #w-node-_11848098-a570-3bd2-a149-a22bf07701a2-f076fe0b {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_9ddc8479-4866-cac9-21f5-5c79d13b3eec-d13b3eec {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_1b8e23bd-acd7-5a5f-c1ed-d3c7daa52825-daa52815, #w-node-_7d3ef6eb-6267-6ab5-743f-86a65b5aea7f-b325285a {
      display: grid;
    }
  
    #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d0b-43ebc96b, #w-node-_7cf97f49-e1c5-4ab8-1719-5199c2764ce1-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d24-43ebc96b, #w-node-c09e022b-ed1b-a7b3-8603-f0190a147d3d-43ebc96b {
      display: none;
    }
  
    #w-node-d181cc89-1cf7-0484-0f83-720a769d36d2-769d36c8, #w-node-d181cc89-1cf7-0484-0f83-720a769d37e4-769d36c8, #w-node-_39d611a4-a436-34f7-43a7-98e1b11e70a5-40a0d092 {
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-fa2be551-a6d9-fa5c-f126-04c72e3bc188-2a1f7207 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  
    #w-node-_8b14f174-cee4-da17-78ba-bf14d3e06eb4-5cf56458 {
      grid-area: span 1 / span 1 / span 1 / span 1;
    }
  
    #w-node-_23a15175-13bc-c9b9-7ca3-e05df8460228-5cf56458 {
      order: 9999;
    }
  
    #w-node-_505e4948-462e-60c2-0206-46fcac2aeeeb-5cf56458 {
      order: -9999;
    }
  
    #w-node-_548dcc8a-7b61-3644-5a33-c3158c790ab7-5cf56458, #w-node-_176bb329-114e-2a76-c140-d54eed9a97b5-5cf56458, #w-node-a6a71b3e-917a-bd5b-10af-ecf5124f3885-5cf56458, #w-node-_06e91f87-7f1e-7bdf-d9e5-e9a046f02759-ad1f8f03 {
      grid-template-rows: auto;
      grid-template-columns: 1fr;
    }
  }
  
  @font-face {
    font-family: 'Axiforma';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096af7dd8937e5c7b868_Axiforma-BlackItalic.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096ad68f517d6675bc66_Axiforma-BlackItalic.woff') format('woff'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a9e5fe3bc58c016ee_Axiforma-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a961b9df62d84df7a_Axiforma-ExtraBold.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096adc9511c27a66b074_Axiforma-Bold.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096af0f342b7fef5f47a_Axiforma-ExtraBold.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096ae3309b2a7db5ab3d_Axiforma-Bold.woff') format('woff'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a0dceef1aa9f4b43c_Axiforma-ExtraBold.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a9ef26148dcca6134_Axiforma-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a3c9aa2976802612e_Axiforma-BoldItalic.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a34b5039ec31c40b2_Axiforma-BoldItalic.eot') format('embedded-opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096aa0b26944b4740627_Axiforma-BookItalic.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a308cae034ae14338_Axiforma-BookItalic.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096ad7912758ec7e7684_Axiforma-BookItalic.woff') format('woff'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096afe5d37e181331a6a_Axiforma-BookItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a5f7e3a83224db1a5_Axiforma-Heavy.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a4761dd6c6ac86c4b_Axiforma-Black.woff2') format('woff2'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096ac07da265860c6d77_Axiforma-Black.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a53ecc6f76c541e41_Axiforma-Heavy.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a05b5accde09bb8f3_Axiforma-Black.woff') format('woff'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096afbe3424a4aea963d_Axiforma-Heavy.woff') format('woff'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a30dcfc8e3126dd7e_Axiforma-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma Book';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096acd2acecae73b721c_Axiforma-Book.eot') format('embedded-opentype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a4d4aba8d70f0b2e9_Axiforma-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715be_HelveticaNeue%20BlackCond.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715d9_HelveticaNeue.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue HV';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715bd_HelveticaNeueHv.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715c4_HelveticaNeue%20Light.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715c4_HelveticaNeue%20Light.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715c4_HelveticaNeue%20Light.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715c4_HelveticaNeue%20Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715d8_HelveticaNeue%20Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: ' Helveticaneu BD';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715bc_HelveticaNeueBd.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helveticaneue';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715d6_HelveticaNeue%20Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helvetica Bold';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e715dd_Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Helvetica Regular';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/656c7ff2832a550790e71616_Helvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096b106d5cc2f9abbfd7_Axiforma-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096b2eef4636b342d5d9_Axiforma-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a30dcfc8e3126dd7e_Axiforma-Black.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a6127616bdc192f56_Axiforma-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096b3407226d43bd19e4_Axiforma-Regular.ttf') format('truetype'), url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a65615631d993c54d_Axiforma-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096ac95e5224667f2be5_Axiforma-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096a9ef26148dcca6134_Axiforma-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Axiforma REAL';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6662096afe5d37e181331a6a_Axiforma-BookItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Brcandor Bf Bold';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/663872e14ec4d6191457cb1d_BRCandor-Bold-BF6551984434a53.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Brcandor Bf Semi Bold';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/6638731ebfd2b7631feb5056_BRCandor-SemiBold-BF655198444222b.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Brcandor Bf Medium';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/663873596f4511ef50db6f00_BRCandor-Medium-BF655198440bb69.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Brcandor Bf Regular';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/663873841b53c61dc6c73565_BRCandor-Regular-BF65519844306f6.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Brcandor Bf light';
    src: url('https://uploads-ssl.webflow.com/656c7ff2832a550790e715a9/663873b624e5ffcca585e2ac_BRCandor-Light-BF6551984540128.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }