.wf-loading * {
    opacity: 0;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Focus state style for keyboard navigation for the focusable elements */
  *[tabindex]:focus-visible,
  input[type="file"]:focus-visible {
    outline: 0.125rem solid #4d65ff;
    outline-offset: 0.125rem;
  }

  /* Get rid of top margin on first element in any rich text element */
  .w-richtext> :not(div):first-child,
  .w-richtext>div:first-child> :first-child {
    margin-top: 0 !important;
  }

  /* Get rid of bottom margin on last element in any rich text element */
  .w-richtext>:last-child,
  .w-richtext ol li:last-child,
  .w-richtext ul li:last-child {
    margin-bottom: 0 !important;
  }


  /* Make sure containers never lose their center alignment */
  .container-medium,
  .container-small,
  .container-large {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  /* Apply "..." after 3 lines of text */
  .text-style-3lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* Apply "..." after 2 lines of text */
  .text-style-2lines {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* Adds inline flex display */
  .display-inlineflex {
    display: inline-flex;
  }

  /* These classes are never overwritten */
  .hide {
    display: none !important;
  }

  @media screen and (max-width: 991px) {

    .hide,
    .hide-tablet {
      display: none !important;
    }
  }

  @media screen and (max-width: 767px) {
    .hide-mobile-landscape {
      display: none !important;
    }
  }

  @media screen and (max-width: 479px) {
    .hide-mobile {
      display: none !important;
    }
  }





  @keyframes slideup {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  @keyframes fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes picIn {
    from {
      opacity: 0;
      transform: scale(0.7);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .btn-main,
  .btn-main-black,
  .btn-secondary {
    transition: background-color 0.4s ease;
  }

  .btn-main:hover {
    background-color: #ebebeb;
  }

  .btn-main-black:hover {
    background-color: #1f2021;
  }

  .btn-secondary {
    background-color: rgba(255, 255, 255, 0.16);
  }

  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.36);
  }

  .btn-main .btn-arrow,
  .btn-main-black .btn-arrow,
  .btn-secondary .btn-arrow {
    transition: transform 0.4s ease;
  }

  .btn-main:hover .btn-arrow,
  .btn-main-black:hover .btn-arrow,
  .btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
  }

  .dd_link-block:hover .title_s {
    color: #fff;
  }

  .dd_link-block .dd_icon-shine {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dd_link-block:hover .dd_icon-shine {
    opacity: 1;
  }

  .nav_dd-toggle:hover {
    color: #fff;
  }

  .dd_cta:hover {
    background-color: #252627;
  }

  .benefit_main-card:hover .benefit_main-card-visual,
  .benefit_card:hover .benefits_card-image {
    transform: translateY(-8px);
  }

  .deposit_logo:hover .deposit_icon {
    transform: translateY(-4px);
  }

  .footer_sm-link .footer_sm-shine {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .footer_sm-link:hover .footer_sm-shine {
    opacity: 1;
  }

  .home-header_component,
  .h1_animation,
  .p_animation,
  .home-header_image,
  .navbar_component,
  .header_tag.is-service,
  .service-header_container,
  .tab-content_top-heading,
  .tab-content_top-grid,
  .platform_tab-content,
  .platform_tab-image,
  .service-details_top,
  .market-card {
    animation: slideup 0.45s ease backwards;
  }

  .home-header_component,
  .h1_animation,
  .tab-content_top-heading {
    animation-delay: 0.0s;
  }

  .p_animation,
  .home-header_image,
  .tab-content_top-grid,
  .platform_tab-image,
  .market-card {
    animation-delay: 0.2s;
  }

  .navbar_component,
  .header_tag.is-service {
    animation: fade 0.85s ease backwards;
    animation-delay: 0.3s;
  }

  .service-header_container {
    animation: fade 0.45s ease backwards;
  }

  .macbook-pic,
  .macbook-pic2 {
    animation: picIn 1.5s cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .profit_table-link:hover .icon-flex-center {
    transform: translateX(4px);
  }

  .rm_products_grid{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }