.background {
  height: 100%;
  color: white;
  background-color: rgb(65, 50, 69);
}

.mt-5 {
  font-family: SourceSansPro-Semibold, sans-serif;
}

.button {
  font-family: SourceSansPro-Regular, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #e64446;
  border: none;
  border-radius: unset;
  height: 44px;
  width: 103px;
}
.button:hover {
  transition: 0.4s;
  background-color: #ff8586;
}
.button:active {
  transition: 0.4s;
  background-color: #c43133;
}
body.off-scroll {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

@media (min-width: 320px) and (max-width: 1370px) {
  @keyframes ViewportEnterEffect {
    0% {
      opacity: 0;
      -webkit-transform: translateY(120%);
      transform: translateY(120%);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .loader__container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .btn.btn__signup, .btn.btn__login {
    transform: none !important;
    transition: none !important;
  }
  .btn.btn__signup:hover span, .btn.btn__login:hover span {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn.btn__signup:hover span:nth-child(2), .btn.btn__login:hover span:nth-child(2) {
    display: none;
  }
  .desktop-show {
    display: none;
  }
  .adaptive-show {
    display: block;
  }
  .nav.wf-section {
    height: 68px;
  }
  .header__wrapper.active {
    background-color: #fff;
  }
  .header__wrapper.header__inner {
    padding-left: 24px;
    padding-right: 29px;
    padding-bottom: 0;
    padding-top: 0;
    height: 68px;
  }
  .header__wrapper.header__inner .logo {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
  }
  .mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
  }
  .mobile-menu--button {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    width: 74px;
  }
  .mobile-menu--button .ico-menu {
    width: 22px;
    height: 22px;
    position: relative;
    margin-left: 10px;
    transition: all 0.25s ease-out;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .mobile-menu--button .ico-menu::before, .mobile-menu--button .ico-menu::after {
    content: "";
    position: relative;
    width: 22px;
    height: 1.4px;
    background: #000000;
    border-radius: 0.5px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translate3d(0, -5px, 0) rotate(0deg);
    top: 6px;
  }
  .mobile-menu--button .ico-menu::after {
    top: -5px;
    transform: translate3d(0, 5px, 0) rotate(0deg);
  }
  .mobile-menu--button.active .ico-menu::before {
    transform: translateZ(0) rotate(45deg);
  }
  .mobile-menu--button.active .ico-menu::after {
    transform: translateZ(0) rotate(-45deg);
  }
  .mobile-menu--list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: fixed;
    width: 100%;
    height: calc(100vh - 68px);
    left: 0;
    top: 68px;
    background-color: #fff;
    padding-top: 48px;
    padding-left: 24px;
    padding-right: 24px;
    overflow-y: auto;
    grid-row-gap: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  .mobile-menu--list > div {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .mobile-menu--list.active {
    opacity: 1;
  }
  .mobile-menu--list.active .active-items {
    margin-bottom: 60px;
  }
  .mobile-menu--list.close-anim {
    opacity: 0;
  }
  .mobile-menu--list .nav__link {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    display: block;
    text-align: center;
    margin-bottom: 28px;
    margin-right: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    animation-duration: 1.2s;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-name: ViewportEnterEffect;
    animation-delay: 0ms;
  }
  .mobile-menu--list .nav__link:nth-child(2) {
    animation-delay: 60ms;
  }
  .mobile-menu--list .nav__link:nth-child(3) {
    animation-delay: 120ms;
  }
  .mobile-menu--list .nav__link:nth-child(4) {
    animation-delay: 180ms;
  }
  .mobile-menu--list .nav__link:nth-child(5) {
    animation-delay: 240ms;
  }
  .mobile-menu--list .nav__link:nth-child(6) {
    animation-delay: 300ms;
  }
  .mobile-menu--list .nav__link:nth-child(7) {
    animation-delay: 360ms;
  }
  .mobile-menu--list .nav__link:focus {
    color: #000;
  }
  .mobile-menu--list .nav__link:hover::before {
    display: none;
  }
  .mobile-menu--list .nav__link.download-link-adaptive {
    display: flex;
    justify-content: center;
    line-height: 100%;
    align-items: center;
  }
  .mobile-menu--list .nav__link.download-link-adaptive:before {
    display: none;
  }
  .mobile-menu--list .nav__link.download-link-adaptive div {
    margin-left: 6px;
    width: 24px;
  }
  .mobile-menu--list .btn {
    animation-duration: 1.2s;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-name: ViewportEnterEffect;
    animation-delay: 360ms;
  }
  .mobile-menu--list .btn.btn__login {
    width: 100%;
    margin-right: 0;
    margin-top: 16px;
    order: 8;
    height: 60px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 92px;
    display: flex;
    align-items: center;
  }
  .mobile-menu--list .btn.btn__signup {
    width: 100%;
    margin-top: 20px;
    height: 60px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    display: flex;
    align-items: center;
  }
  .mobile-menu--list .btn.btn__signup span {
    width: 100%;
  }
  .wrapper {
    width: 100%;
    padding: 0 24px;
  }
  .hero {
    height: 100%;
  }
  .hero__content {
    padding-top: 40px;
    width: 100%;
    margin-bottom: 64px;
  }
  .hero__content h1.title-h1 {
    font-weight: 400;
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 12px;
    height: auto;
  }
  .hero__content h1.title-h1 span {
    position: relative;
    transition: none;
  }
  .hero__content .hero__description {
    height: auto;
    margin-bottom: 26px;
  }
  .hero__content .hero__description span {
    transition: none;
    position: relative;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
  }
  .hero__content .hero__button {
    height: auto;
  }
  .hero__content .hero__button .d-flex {
    justify-content: space-between;
  }
  .hero__content .hero__button > div {
    position: relative;
    transition: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
  }
  .hero__content .hero__button > div a {
    flex: 0 50%;
    width: auto !important;
    padding: 0 !important;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 52px;
  }
  .hero__content .hero__button > div a * {
    height: 20px;
  }
  .hero__content .hero__button > div a:first-child {
    margin-right: 12px !important;
  }
  .hero__content .hero__button > div a img {
    height: 18px;
    margin-right: 8px;
  }
  .hero__content .hero__button > div a p {
    margin: 0;
  }
  .hero__img {
    position: relative;
    width: calc(100% + 48px);
    max-width: inherit;
    height: 482px;
    top: 0;
    left: -24px;
  }
  .title-h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
  }
  .services {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .services__list {
    display: block;
  }
  .services__item {
    min-width: inherit;
    padding: 22px 0 0 0;
    border-left: 0;
    border-top: 1px solid #000;
  }
  .services__item-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 22px;
  }
  .services__item-title {
    display: flex;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    line-height: 100%;
  }
  .services__item-title.mb-4 {
    margin-bottom: 6px;
  }
  .services .title-h2 {
    margin-bottom: 36px;
  }
  .digital-features {
    margin-bottom: 0;
    padding-top: 96px;
  }
  .digital-features .wrapper {
    padding: 0;
  }
  .digital-features .wrapper .gallery {
    border-radius: 0;
    display: block;
    padding: 0;
    height: 811px;
  }
  .digital-features .wrapper .gallery .gallery__tab {
    display: block;
    padding-top: 80px;
  }
  .digital-features .wrapper .gallery .gallery-item__content {
    padding: 0;
  }
  .digital-features .wrapper .gallery .gallery-item__title.mb-10 {
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 8px;
    padding: 0 24px;
  }
  .digital-features .wrapper .gallery .gallery-item__description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    padding: 0 24px;
  }
  .digital-features .wrapper .gallery .slide-name {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    color: #fff;
    margin: 32px auto 48px;
    text-align: center;
    width: 147px;
    display: flex;
    justify-content: space-between;
  }
  .digital-features .wrapper .gallery .gallery__img {
    padding-top: 56px;
  }
  .digital-features .wrapper .gallery .gallery__img .image-contain {
    width: 279px;
    height: auto;
  }
  .digital-features .wrapper .gallery .tabs-avatar-quote {
    display: block;
  }
  .digital-features .title-h2.digital-features__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
    color: #000000;
    padding: 0 24px;
    margin-bottom: 96px;
  }
  .digital-features .title-h2.digital-features__title img {
    margin-top: 28px;
  }
  .banking-experience {
    padding-bottom: 64px;
    padding-top: 80px;
  }
  .banking-experience .banking-experience__title {
    width: 100%;
    margin-bottom: 40px !important;
  }
  .banking-experience .experience-card__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }
  .banking-experience .experience-card__description {
    margin: 6px 0 24px;
  }
  .banking-experience .experience-card__description br {
    display: none;
  }
  .banking-experience .experience-card.experience-card--gray-bg.experience-card--small {
    padding: 32px 24px 24px 24px;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large {
    width: 100%;
    padding: 0;
    background: none;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .adaptive-show {
    left: -24px;
    width: 100vw;
    position: relative;
    margin-top: 40px;
  }
  .banking-experience .experience-card__title--large.mb-290 {
    margin: 40px 0 0 0;
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    color: #000000;
  }
  .banking-experience .experience-card__points {
    display: block;
    margin-top: 12px;
    padding-top: 24px;
    border-top: 1px solid #000;
    color: #000;
  }
  .banking-experience .experience-card__points .experience-card__point {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    margin-bottom: 20px;
  }
  .banking-experience .experience-card__points .experience-card__point br {
    display: none;
  }
  .banking-experience .experience-cards {
    height: auto;
    grid-row-gap: 24px;
  }
  .ai-features {
    padding-bottom: 64px;
    padding-top: 64px;
  }
  .ai-features .title-h2.ai-features__title {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
  }
  .ai-features .ai-cards {
    display: block;
  }
  .ai-features .ai-cards .ai-card {
    height: 425px;
    margin-top: 24px;
    text-align: center;
  }
  .ai-features .ai-cards .ai-card__content {
    padding: 30px 30px 0 30px;
  }
  .ai-features .ai-cards .ai-card__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
  }
  .investments {
    margin-bottom: 64px;
  }
  .investments .investments__title.mb-72 {
    margin-top: 64px;
    margin-bottom: 48px;
    width: 100%;
  }
  .investments .investments-items {
    grid-row-gap: 40px;
  }
  .investments .investment-item__description {
    margin-bottom: 12px;
  }
  .investments .investment-item__description br {
    display: none;
  }
  .investments .investment-item__title {
    font-size: 26px;
  }
  .investments .investment-item__icon.mb-24 {
    margin-bottom: 20px;
    width: 68px;
    height: 68px;
  }
  .investments .investment-item__icon.mb-24 img {
    width: 24px;
    height: 24px;
  }
  .applications {
    padding: 0;
  }
  .applications__content {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .applications__content .title-h2.mb-16 {
    margin-bottom: 0;
  }
  .applications__content .applications__description {
    margin-bottom: 24px;
    margin-top: 14px;
  }
  .applications__img-mobile-box {
    display: block;
    background: #F7F8FA;
    padding: 64px 24px;
    position: relative;
  }
  .applications__img-mobile-box img {
    width: 698px;
    max-width: none;
    opacity: 0;
    z-index: 1;
  }
  .applications__img-mobile-box .shadow {
    position: absolute;
    left: 24px;
    top: 64px;
    opacity: 1;
    z-index: 0;
  }
  .applications__img-mobile-box-wrap {
    display: block;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 32px;
  }
  .applications__img-mobile-box-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 13px;
  }
  .applications__img-mobile-box-wrap::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
    height: 2px;
  }
  .applications__img-mobile-box-wrap::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 13px;
  }
  .applications .applications-links__item {
    height: auto;
    padding: 18px 0;
  }
  .mentions {
    padding: 64px 0;
  }
  .mentions__content {
    display: block;
  }
  .mentions__title {
    margin-bottom: 48px !important;
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
  }
  .mentions .mentions-item {
    margin-bottom: 36px;
    padding-left: 20px;
    min-height: inherit !important;
    font-weight: 400;
  }
  .mentions .mentions-item:last-child {
    margin-bottom: 0;
  }
  .mentions .mentions-item__link {
    position: relative;
    margin-top: 53px;
    font-weight: 500;
  }
  .mentions .mentions-item__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
  }
  .partners {
    padding-bottom: 96px;
    padding-top: 64px;
  }
  .partners__description {
    margin: 14px 24px 48px;
  }
  .subscription__content {
    padding: 48px 24px 72px;
  }
  .subscription__img {
    height: 375px;
    background-size: contain;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .subscription__description {
    margin-top: 14px;
    margin-bottom: 28px;
  }
  .subscription .big-wrapper {
    width: 100%;
  }
  .subscription .big-wrapper.big-wrapper--flex {
    display: block;
  }
  .subscription .next-section {
    display: none;
  }
  .membership {
    padding-bottom: 0;
    margin-bottom: 32px;
  }
  .membership__list {
    display: block;
    flex-wrap: wrap;
    grid-column-gap: 0;
    grid-row-gap: 0;
    text-align: center;
  }
  .membership__list > div {
    max-width: 279px;
    margin: 0 auto 32px;
  }
  .membership__list .mb-20 {
    margin-bottom: 16px;
  }
  .membership__switch-btn {
    margin-bottom: 40px;
    width: 100%;
  }
  .membership__description {
    margin-bottom: 22px;
  }
  .membership__description br {
    display: none;
  }
  .membership h2.membership__title {
    margin-top: 64px;
    margin-bottom: 14px;
  }
  .ContactUs {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    padding-bottom: 64px;
  }
  .ContactUs br {
    display: none;
  }
  .ContactUs h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    margin-bottom: 14px;
    margin-top: 64px;
  }
  .ContactUs .two-steps {
    display: block;
    height: auto;
    margin-top: 32px;
    margin-bottom: 48px;
  }
  .ContactUs .two-steps > a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 64px;
  }
  .ContactUs .two-steps > a:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ContactUs .form-contact .ml-32 {
    margin: 0;
  }
  .ContactUs .form-contact [name=message] {
    margin-bottom: 36px;
  }
  .ContactUs .form-contact .flex-box input {
    width: 100%;
    margin-bottom: 32px;
  }
  .footer {
    padding-top: 48px;
  }
  .footer__text {
    margin-top: 4px;
  }
  .footer__label {
    margin-top: 20px;
    margin-bottom: 2px;
  }
  .footer a.footer__text--large {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
  }
  .footer .ml-128 {
    margin-left: 0;
  }
  .footer .ml-32 {
    margin-left: 0;
  }
  .footer .mb-64 {
    margin-bottom: 40px;
  }
  .footer .mb-28 {
    margin: 0;
  }
  .footer .copyright {
    margin-top: 48px;
  }
  .flex-box {
    display: block;
  }
  .body .wpcc-container {
    padding: 22px 24px;
  }
  .style-scroll {
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 24px;
    bottom: 64px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 13px;
    overflow: hidden;
  }
  .style-scroll > div {
    background: #000000;
    border-radius: 13px;
    position: absolute;
    height: 2px;
    width: 163px;
  }
  .success-form {
    height: 355px;
    padding: 0 56px;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
  }
  .success-form br {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .wrapper {
    padding: 0 48px;
  }
  .mobile-menu--list .nav__link.download-link-adaptive div {
    width: 40px;
  }
  .mobile-menu--list .nav__link {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
  }
  .hero__content {
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 72px;
    margin-bottom: 80px;
  }
  .hero__content > div {
    width: auto;
  }
  .hero__content h1.title-h1 {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 60px;
    line-height: 68px;
  }
  .hero__content .hero__description {
    width: 470px;
    margin-bottom: 28px;
  }
  .hero__content .hero__description span {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }
  .hero__content .d-flex {
    justify-content: center !important;
  }
  .hero__content .btn.btn__w-154.mr-10 {
    margin-right: 10px !important;
  }
  .hero__content .btn.btn__w-154, .hero__content .btn__download {
    max-width: 154px !important;
    height: 48px !important;
    flex: auto !important;
  }
  .gallery__tab-link.mr-12 {
    width: 60px;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
  }
  .digital-features .wrapper .gallery .gallery-item__description {
    padding: 0;
  }
  .digital-features .wrapper .gallery {
    height: 820px;
  }
  .banking-experience .experience-card__points .experience-card__point {
    margin-right: 0;
    max-width: 100%;
  }
  .investments .investment-item__title {
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
  }
  .investments .investment-item__description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
  }
  .hero__img {
    height: 448px;
    width: 100vw;
    left: -48px;
  }
  .hero__learn-more {
    left: auto;
    right: -12px;
    z-index: 1;
    color: #fff;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
  }
  .hero__learn-more::before {
    background: #fff;
  }
  h2.title-h2 {
    font-weight: 400;
    font-size: 48px;
    line-height: 62px;
  }
  .services {
    padding: 88px 0;
  }
  .services__item {
    padding: 0 0 0 20px;
    border-top: 0;
    border-left: 1px solid;
  }
  .services__item-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    padding: 0;
    margin-bottom: 4px;
  }
  .services__item-description {
    margin-bottom: 32px;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
  }
  .digital-features {
    padding: 88px 0;
  }
  .digital-features h2.title-h2.digital-features__title {
    font-weight: 400;
    font-size: 50px;
    line-height: 64px;
    padding: 0;
    margin-bottom: 56px;
  }
  .digital-features h2.title-h2.digital-features__title .adaptive-show {
    display: none;
  }
  .digital-features .wrapper .gallery {
    margin: 0 48px;
    width: auto;
    text-align: center;
  }
  .digital-features .wrapper .gallery .adaptive-show.slide-name {
    display: none;
  }
  .digital-features .wrapper .gallery .gallery__tab {
    padding-top: 103px;
  }
  .digital-features .wrapper .gallery .gallery-item__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .digital-features .wrapper .gallery .gallery-item__title.mb-10 {
    font-size: 36px;
    line-height: 46px;
    padding: 0;
    margin-bottom: 10px;
  }
  .digital-features .wrapper .gallery .desktop-show {
    display: block;
  }
  .digital-features .wrapper .gallery .gallery__img {
    margin-top: 155px;
    height: 410px;
  }
  .digital-features .wrapper .gallery .step-tab-menu {
    top: 350px;
    bottom: auto;
    left: 50%;
    margin-left: -135px;
  }
  .banking-experience .title-h2.banking-experience__title.mb-64 {
    margin-bottom: 56px !important;
  }
  .banking-experience .experience-card__title {
    font-weight: 400;
    font-size: 28px;
    line-height: 38px;
  }
  .banking-experience .experience-card.experience-card--gray-bg.experience-card--small {
    padding: 48px;
  }
  .banking-experience img {
    height: 280px;
    width: 100%;
  }
  .banking-experience .experience-card__description br {
    display: block;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .adaptive-show {
    left: -48px;
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .adaptive-show img {
    width: 100vw;
    height: auto;
  }
  .banking-experience .experience-card__points {
    padding-top: 22px;
  }
  .ai-features {
    padding-top: 88px;
  }
  .ai-features .title-h2.ai-features__title {
    font-weight: 400;
    font-size: 50px;
    line-height: 62px;
    margin-bottom: 64px;
  }
  .ai-features .ai-cards {
    margin-left: -48px;
    width: 100vw;
  }
  .ai-features .ai-cards .slick-slide .ai-card {
    max-width: 342px;
    flex: auto;
  }
  .ai-features .ai-cards .slick-active {
    height: 480px;
  }
  .ai-features .ai-cards .slick-active ~ div {
    text-align: right;
  }
  .ai-features .ai-cards .slick-active .ai-card {
    margin-top: -10px;
    height: 480px;
    max-width: 100%;
  }
  .investments .investments-items {
    display: flex;
    grid-column-gap: 40px;
  }
  .investments .investments-items .investment-item {
    flex: 0 316px;
  }
  .applications__img {
    display: none;
  }
  .applications__img-mobile-box {
    padding: 64px 48px;
  }
  .applications__img-mobile-box img {
    opacity: 1;
    width: 100%;
  }
  .applications__img-mobile-box .shadow {
    display: none;
  }
  .applications__img-mobile-box .style-scroll {
    display: none;
  }
  .applications__content {
    max-width: 100%;
  }
  .applications__content .title-h2.mb-16 {
    max-width: 480px;
    text-align: center;
  }
  .applications__content .applications__description {
    min-width: 480px;
    max-width: 480px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 16px;
  }
  .applications__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 62px !important;
  }
  .applications-links {
    width: 100%;
  }
  .partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .partners .partners-logos {
    width: 100%;
  }
  .subscription__img {
    height: 512px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .subscription__content {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 96px 48px 123px;
  }
  .subscription__content .subscription__description {
    margin-top: 16px;
    margin-bottom: 30px;
  }
  .membership__list {
    display: flex;
    grid-column-gap: 40px;
  }
  .membership__list > div {
    margin: 0;
    min-width: 316px;
    max-width: 316px;
    flex: 0 316px;
    margin-bottom: 40px;
  }
  .membership__switch-btn {
    margin-bottom: 56px;
    width: 280px;
  }
  .membership__description {
    width: 500px;
    margin: 0 auto 28px;
  }
  .membership h2.membership__title {
    margin-bottom: 16px;
    margin-top: 88px;
  }
  .membership {
    margin-bottom: 48px;
  }
  .ContactUs h2 {
    margin: 88px 0 16px 0;
  }
  .ContactUs .wrapper > div {
    max-width: 500px;
    margin: 0 auto;
  }
  .ContactUs .wrapper > div.success-form {
    max-width: 100%;
  }
  .ContactUs .two-steps {
    display: flex;
    margin-top: 56px;
  }
  .ContactUs .two-steps > a:first-child {
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .flex-box {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-box > div {
    width: 50%;
  }
  .flex-box > div:first-child {
    width: 100%;
    display: flex;
  }
  .flex-box > div:first-child > div {
    flex: 0 50%;
  }
  .flex-box > div:first-child .footer__label {
    margin-top: 16px;
  }
  .flex-box .footer__label {
    margin-top: 40px;
  }
  .mobile-menu--list {
    padding-left: 48px;
  }
  .mobile-menu--list a.btn.btn__signup {
    width: 320px;
    margin-right: 16px;
    margin-top: 72px;
  }
  .mobile-menu--list a.btn.btn__login {
    width: 320px;
    margin-top: 72px;
  }
  .subscription .next-section {
    display: flex;
    margin-left: -87px;
    left: 50%;
    bottom: 40px;
  }
  .mentions {
    padding: 88px 0;
  }
  .mentions__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 62px;
    margin-bottom: 56px !important;
  }
  .ai-features .ai-cards .ai-card__title {
    line-height: 34px;
    text-align: left;
  }
  .ai-features .ai-cards .ai-card__content {
    padding: 38px 38px 0 38px;
  }
  .ai-features .ai-cards .slick-active .ai-card {
    margin-top: 0;
  }
  .ai-card__subtitle {
    text-align: left;
  }
}
@media (min-width: 1024px) and (max-width: 1370px) {
  h2.title-h2, .title-h2 {
    font-weight: 400;
    font-size: 48px;
    line-height: 62px;
  }
  .hero__learn-more {
    left: auto;
    right: 0;
    color: #fff;
  }
  .hero__learn-more::before {
    background-color: #fff;
  }
  .gallery__tab-link {
    width: 60px;
    text-align: center;
  }
  .ai-features .ai-cards .ai-card__title {
    line-height: 34px;
    text-align: left;
  }
  .ai-features .ai-cards .ai-card__content {
    padding: 38px 38px 0 38px;
  }
  .ai-card__subtitle {
    text-align: left;
  }
  .hero__content {
    padding-top: 0;
    margin-bottom: 154px;
  }
  .hero__content .hero__button div.d-flex {
    justify-content: center;
  }
  .hero__content .hero__button div.d-flex a.btn, .hero__content .hero__button div.d-flex a.btn__download {
    width: 154px !important;
    min-width: 154px !important;
    max-width: 154px !important;
  }
  .hero__content h1.title-h1 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
    margin-top: 153px;
    margin-bottom: 16px;
  }
  .hero__content .hero__description {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .hero__img {
    height: 627px;
    width: 100vw;
    left: -80px;
  }
  .services {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .services .title-h2 {
    width: 672px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }
  .services .services__list {
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
  }
  .services .services__list .services__item {
    border-top: 0;
    padding: 0 0 0 20px;
    border-left: 1px solid;
  }
  .services .services__item-description {
    margin-bottom: 32px;
  }
  .digital-features {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .digital-features .title-h2.digital-features__title {
    padding: 0;
    font-size: 50px;
    line-height: 64px;
    margin-bottom: 56px;
  }
  .digital-features .title-h2.digital-features__title .adaptive-show {
    display: none;
  }
  .digital-features .wrapper .gallery {
    margin: 0 80px;
    width: auto;
    text-align: center;
    height: 960px;
  }
  .digital-features .wrapper .gallery .gallery__tab {
    padding-top: 142px;
  }
  .digital-features .wrapper .gallery .gallery-item__description, .digital-features .wrapper .gallery .gallery-item__title.mb-10 {
    max-width: 424px;
    margin-left: auto;
    margin-right: auto;
  }
  .digital-features .wrapper .gallery .gallery-item__description {
    margin-bottom: 186px;
  }
  .digital-features .wrapper .gallery .gallery-item__title.mb-10 {
    font-size: 36px;
    line-height: 46px;
    padding: 0;
    margin-bottom: 10px;
  }
  .digital-features .wrapper .gallery .adaptive-show {
    display: none;
  }
  .digital-features .wrapper .gallery .desktop-show {
    display: block;
  }
  .digital-features .wrapper .gallery .step-tab-menu.w-tab-menu {
    margin-left: -125px;
    left: 50%;
    top: 420px;
  }
  .digital-features .wrapper .gallery .gallery__img {
    height: 480px;
  }
  .banking-experience {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .banking-experience .banking-experience__title {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
  }
  .banking-experience .experience-cards {
    grid-column-gap: 32px;
  }
  .banking-experience .experience-card.experience-card--gray-bg.experience-card--small {
    flex: 0 416px;
    padding: 40px;
    width: auto;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large {
    background-color: #f7f8fa;
    background-image: url("/shared/assets/images/Solution for Partner Banks.jpg");
    background-position: 50% 50%;
    background-size: cover;
    height: 500px;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .adaptive-show {
    display: none;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .experience-card__title--large.mb-290 {
    font-size: 36px;
    line-height: 46px;
    color: #fff;
    margin-left: 40px;
    margin-top: 40px;
    margin-bottom: 215px;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .experience-card__points {
    margin: 0 40px 32px;
    display: flex;
    border-color: #fff;
    padding-top: 16px;
    grid-column-gap: 26px;
  }
  .banking-experience .experience-card.experience-card--bg-img.experience-card--large .experience-card__points .experience-card__point {
    color: #fff;
    margin: 0;
    flex: 0 244px;
  }
  .mobile-menu--list {
    padding-left: 48px;
  }
  .mobile-menu--list a.btn.btn__signup {
    width: 48%;
    margin-right: 16px;
    margin-top: 72px;
  }
  .mobile-menu--list a.btn.btn__login {
    width: 48%;
    margin-top: 72px;
  }
  .ai-features {
    padding-top: 88px;
  }
  .ai-features .title-h2.ai-features__title {
    font-weight: 400;
    font-size: 50px;
    line-height: 62px;
    margin-bottom: 64px;
  }
  .ai-features .ai-cards {
    margin-left: -48px;
    width: 100vw;
  }
  .ai-features .ai-cards .slick-slide .ai-card {
    max-width: 342px;
    flex: auto;
  }
  .ai-features .ai-cards .slick-active {
    height: 480px;
  }
  .ai-features .ai-cards .slick-active ~ div {
    text-align: right;
  }
  .ai-features .ai-cards .slick-active .ai-card {
    margin-top: 0;
    height: 480px;
    max-width: 374px;
  }
  .wrapper {
    padding: 0 80px;
  }
  .flex-box {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-box > div:nth-child(4) {
    margin-left: 265px;
    margin-top: -35px;
  }
  .flex-box > div:nth-child(5) {
    margin-top: -35px;
  }
  .flex-box > div {
    flex: 0 266px;
  }
  .footer a.footer__text--large {
    font-size: 20px;
    line-height: 30px;
  }
  .ContactUs .form-contact .flex-box {
    flex-wrap: nowrap;
  }
  .ContactUs .form-contact .flex-box input {
    width: 50%;
  }
  .ContactUs .form-contact .flex-box input:first-child {
    margin-right: 32px;
  }
  .ContactUs {
    padding-bottom: 112px;
  }
  .ContactUs h2 {
    margin: 88px 0 16px 0;
  }
  .ContactUs .wrapper > div {
    max-width: 500px;
    margin: 0 auto;
  }
  .ContactUs .wrapper > div.success-form {
    width: 100%;
    max-width: 100%;
  }
  .ContactUs .wrapper > div.success-form br {
    display: block;
  }
  .ContactUs .two-steps {
    display: flex;
    margin-top: 56px;
  }
  .ContactUs .two-steps > a:first-child {
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .membership__list {
    display: flex;
    grid-column-gap: 36px;
  }
  .membership__list > div {
    margin: 0;
    min-width: 264px;
    max-width: 264px;
    flex: 0 264px;
    margin-bottom: 48px;
    text-align: left;
  }
  .membership__switch-btn {
    margin-bottom: 56px;
    width: 280px;
  }
  .membership__description {
    width: 500px;
    margin: 0 auto 28px;
  }
  .membership h2.membership__title {
    margin-bottom: 16px;
    margin-top: 88px;
  }
  .membership {
    margin-bottom: 48px;
  }
  .subscription__img {
    height: 683px;
    background-size: cover;
  }
  .subscription__content {
    height: 683px;
    padding-top: 166px;
    text-align: center;
  }
  .subscription__content > * {
    margin-left: auto;
    margin-right: auto;
  }
  .subscription__content .d-flex {
    width: 100%;
    justify-content: center;
  }
  .subscription__description {
    width: 480px;
    max-width: 480px;
  }
  .subscription .next-section {
    display: flex;
    margin-left: -87px;
    left: 50%;
    bottom: 40px;
  }
  .partners > * {
    margin-left: auto;
    margin-right: auto;
  }
  .partners {
    padding: 112px 0;
  }
  .partners .partners-logos {
    width: 100%;
  }
  .mentions {
    padding: 112px 0;
  }
  .mentions .mentions-item {
    max-width: 672px;
    margin: 0 auto 44px auto;
  }
  .applications img {
    opacity: 1;
    width: 100%;
  }
  .applications .shadow {
    display: none;
  }
  .applications .style-scroll {
    display: none;
  }
  .applications .applications__img-mobile-box-wrap {
    padding: 0;
  }
  .applications .applications__img-mobile-box {
    padding: 80px;
  }
  .applications .applications__content {
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 88px 0 78px !important;
  }
  .applications .mentions__title {
    font-weight: 400;
    font-size: 48px;
    line-height: 62px;
    margin-bottom: 64px !important;
  }
  .applications .applications__img {
    display: none;
  }
  .applications .applications-links__link {
    white-space: nowrap;
  }
  .applications .applications__content {
    max-width: 100%;
    padding: 88px 0;
  }
  .applications .applications__content .title-h2.mb-16 {
    max-width: 480px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .applications .applications__content .applications__description {
    min-width: 480px;
    max-width: 480px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .investments {
    margin-bottom: 88px;
  }
  .investments .wrapper .investments-items {
    margin-left: 43px;
    margin-right: 43px;
  }
}
.features {
  padding: 20px 12px 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 10px;
  min-width: 290px;
  width: 50%;
  flex-basis: 50%;
  flex-grow: 1;
}
.features .feature__image {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f7f7ed;
  background-repeat: no-repeat;
  background-size: 54px;
  background-position: center;
}
.features .feature__image--transfers {
  background-image: url("/shared/assets/images/svg/transfer-ic.svg");
}
.features .feature__image--team {
  background-image: url("/shared/assets/images/svg/question-ic.svg");
}
.features .feature__image--conversion {
  background-image: url("/shared/assets/images/svg/euro-ic.svg");
}
.features .feature__title {
  margin-bottom: 0;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.25;
  color: #053e5e;
  padding-top: 16px;
  padding-bottom: 20px;
  text-align: center;
}
.features .feature__line {
  padding-bottom: 20px;
  align-self: center;
  width: 60px;
  height: 1px;
  border-top: 1px solid #93AFBF;
  background: none;
}
.features .feature__description {
  margin-bottom: 0;
  width: 100%;
  opacity: 0.7;
  font-family: "Lato-Regular", sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: normal;
  color: #053e5e;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .features {
    padding: 40px 60px 35px;
  }
  .features .feature {
    width: 50%;
    max-width: 290px;
    padding-bottom: 30px;
  }
  .features .feature__description {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .features {
    padding: 61px 76px 51px;
  }
  .features .feature {
    max-width: 381px;
  }
  .features .feature__image {
    width: 120px;
    height: 120px;
    background-size: 68px;
  }
  .features .feature__title {
    padding-top: 30px;
    padding-bottom: 32px;
    font-size: 26px;
    max-width: 341px;
  }
  .features .feature__line {
    width: 70%;
    padding-bottom: 32px;
  }
  .features .feature__description {
    font-size: 18px;
    line-height: 1.56;
    padding: 0;
  }
}
@media (min-width: 1920px) {
  .features {
    padding: 61px 0 51px;
  }
}
.financing-info {
  display: flex;
  position: relative;
  width: 100%;
  max-height: 810px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  margin: 0 auto;
}
.financing-info .financing-info__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.financing-info .financing-info__wrapper .financing__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: normal;
  text-align: center;
  color: #053e5e;
  margin-bottom: -2px;
}
.financing-info .financing-info__wrapper .investments-title {
  margin-bottom: 8px;
}
.financing-info .financing-info__wrapper .coming-soon {
  font-size: 19px !important;
}
.financing-info .financing-info__wrapper .line5 {
  width: 100px;
  height: 1px;
  background-color: #053e5e;
  margin: 19px 0 21px;
}
.financing-info .financing-info__wrapper .financing_subtitle {
  width: 100%;
  opacity: 0.7;
  font-family: "Lato-Regular", sans-serif;
  font-size: 15px;
  margin-top: 16px;
  line-height: 22px;
  text-align: center;
  color: #053e5e;
  margin-bottom: 40px;
}
.financing-info .financing-info__wrapper .financing_subtitle .financing-info__break {
  display: none;
}

.financing-info__payments {
  background-color: #f4f4f7;
  background-image: url("/shared/assets/images/payments-bg-sm.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  height: 540px;
  margin-bottom: 40px;
}

.financing-info__payments1 {
  background-color: #f4f4f7;
  background-image: url("/shared/assets/images/payments-bg-sm.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  height: 540px;
  margin-bottom: 40px;
}

.financing-info__investments {
  padding: 0;
}
.financing-info__investments .financing-info__wrapper--investments {
  padding: 0 15px;
}

.financing-info__wrapper--investments-img {
  background: url("/shared/assets/images/investments-background-new.png") no-repeat;
  width: 100%;
  height: 435px;
  background-size: 100% auto;
}

.financing-info__card {
  margin-top: 50px;
}
.financing-info__card .financing-info__wrapper__card-bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 238px;
  height: 300px;
  margin-bottom: 37px;
  position: relative;
  left: 3px;
  background: url("/shared/assets/images/card.png") no-repeat;
  background-size: contain;
}
.financing-info__card .financing-info__wrapper__card-bg .financing-info__wrapper--card-img {
  background: url("/shared/assets/images/card--black.jpg") no-repeat top center;
  background-size: contain;
  position: absolute;
  width: 280px;
  height: 220px;
  top: -93px;
  right: -96px;
}
.financing-info__card .financing-info__wrapper__card-bg .financing-info__card--title {
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 34px;
  margin: 0px 30px 18px 35px;
  min-width: 171px;
}
.financing-info__card .financing-info__wrapper--card {
  padding-bottom: 10px;
}
.financing-info__card .financing-info__wrapper--card .card-title {
  letter-spacing: -0.8px;
}
.financing-info__card .financing-info__wrapper--card .card-subtitle {
  margin: 0 !important;
}
.financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 230px;
  height: 80px;
  margin: 19px auto 0;
}
.financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .card-subtitle__applepay {
  font-family: "Ubuntu", sans-serif;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #053e5e;
  margin: 0;
}
.financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay--logo {
  background: url("/shared/assets/images/png/apple-pay--logo.png") no-repeat 0 center;
  width: 90px;
  height: 45px;
  background-size: cover;
}

.financing-info__business {
  padding: 0;
  justify-content: flex-start;
  height: 483px;
  align-items: center !important;
}
.financing-info__business .financing-info__business--bg {
  background: url("/shared/assets/images/business-crop1.jpg") no-repeat;
  min-width: 320px;
  width: 100%;
  height: 213px;
  background-size: cover;
  margin-top: 19px;
  margin-bottom: 30px;
  min-height: 44%;
}
.financing-info__business .financing-info__wrapper--business {
  padding: 0 16px;
  margin-top: 0 !important;
}
.financing-info__business .business-title {
  text-align: left !important;
}
.financing-info__business .business-subtitle {
  margin-bottom: 25px;
}

@media (min-width: 447px) and (max-width: 767px) {
  .financing-info__payments {
    height: 680px;
  }
  .financing-info__wrapper--investments-img {
    height: 535px;
  }
  .financing-info__business {
    height: 583px;
  }
  .financing-info__business .financing-info__business--bg {
    height: 413px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .financing-info {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    justify-content: flex-end;
    align-items: flex-start;
    height: 489px;
    flex-direction: row;
  }
  .financing-info .financing-info__wrapper {
    align-items: flex-start;
  }
  .financing-info .financing-info__wrapper .financing__title {
    font-size: 40px;
    text-align: left;
    line-height: 46px;
    margin-bottom: 3px;
  }
  .financing-info .financing-info__wrapper .investments-title {
    margin-bottom: 0;
  }
  .financing-info .financing-info__wrapper .line5 {
    margin: 20px 0;
  }
  .financing-info .financing-info__wrapper .financing_subtitle {
    padding: 0;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
  }
  .financing-info__wrapper--payments {
    margin: 86px 40px 0 0;
    max-width: 325px;
    padding: 0;
  }
  .financing-info__payments {
    background: url("/shared/assets/images/payments-bg-tablet.png") no-repeat 0 0;
    background-size: cover;
    max-width: 100%;
  }
  .financing-info__investments {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .financing-info__wrapper--investments-img {
    background-image: url("/shared/assets/images/investments-background-new.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 351px;
    height: 377px;
    margin: 60px 27px 0 10px;
  }
  .financing-info .financing-info__break {
    display: block;
  }
  .financing-info__investments .financing-info__wrapper--investments {
    margin: 60px 0 0 64px;
    max-width: 300px;
    padding: 0 !important;
  }
  .financing-info__card {
    padding: 0;
    align-items: flex-start;
    justify-content: space-between;
    height: 340px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .financing-info__card .financing-info__wrapper__card-bg {
    margin-left: 64px;
    max-width: 252px;
  }
  .financing-info__card .financing-info__wrapper__card-bg .financing-info__wrapper--card-img {
    top: -103px;
    right: -104px;
    width: 298px;
  }
  .financing-info__card .financing-info__wrapper__card-bg .financing-info__card--title {
    margin: 0px 30px 23px 37px;
  }
  .financing-info__card .financing-info__wrapper--card {
    width: 325px;
    margin: 40px 60px 0 70px;
  }
  .financing-info__card .financing-info__wrapper--card .card-title {
    margin-bottom: 20px;
  }
  .financing-info__card .financing-info__wrapper--card .card-subtitle {
    margin-bottom: 0;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 10px 0 0 0;
    height: 50px;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .card-subtitle__applepay {
    margin: 0;
  }
  .financing-info__business {
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 325px;
  }
  .financing-info__business .financing-info__business--bg {
    background: url("/shared/assets/images/business-crop1.jpg") no-repeat;
    max-width: 384px;
    height: 324px;
    margin: 0;
    background-size: cover;
  }
  .financing-info__business .financing-info__wrapper--business {
    max-width: 258px;
    margin: 25px 67px 0 59px;
    padding: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1919.98px) {
  .financing-info {
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 620px;
    flex-direction: row;
  }
  .financing-info .financing-info__wrapper {
    align-items: flex-start;
  }
  .financing-info .financing-info__wrapper .line5 {
    width: 233px;
    margin: 32px 0;
  }
  .financing-info .financing-info__wrapper .financing__title {
    font-size: 48px;
    text-align: left;
    line-height: 54px;
    letter-spacing: -0.14px;
  }
  .financing-info .financing-info__wrapper .financing_subtitle {
    width: 100%;
    padding: 0;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
  }
  .financing-info .financing-info__wrapper .investments-subtitle {
    width: 101%;
  }
  .financing-info__break {
    display: block !important;
    margin-bottom: 15px;
  }
  .financing-info__payments {
    max-width: 100%;
    margin: 0 auto;
    background: #f4f4f7 url("/shared/assets/images/payments.png") no-repeat;
    background-size: cover;
    padding: 0;
    height: 613px;
    position: relative;
  }
  .financing-info__wrapper--payments {
    max-width: 410px;
    position: absolute;
    left: 55%;
    top: 115px;
  }
  .financing-info__wrapper--payments .payments-title {
    margin-bottom: 3px !important;
  }
  .financing-info__wrapper--payments .payments-subtitle {
    margin-top: 10px;
    max-width: 390px;
  }
  .financing-info__investments {
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1440px;
    width: 100%;
    margin: 17px auto 0;
  }
  .financing-info__wrapper--investments-img {
    background: url("/shared/assets/images/investments-background-new.png") no-repeat;
    height: 580px;
    width: 542px;
    background-size: contain;
    margin: 64px 177px 0 0;
  }
  .financing-info__investments .financing-info__wrapper--investments {
    margin: 141px 0 0 190px;
    max-width: 460px;
    padding: 0;
  }
  .financing-info__card {
    max-width: 1440px;
    padding: 0;
    justify-content: flex-start;
    margin: 53px auto 0;
  }
  .financing-info__card .financing-info__wrapper__card-bg {
    background: url("/shared/assets/images/card.png") no-repeat;
    background-size: contain;
    max-width: 375px;
    width: 100%;
    height: 510px;
    margin-left: 188px;
    margin-bottom: 0;
    top: 23px;
    z-index: 5;
  }
  .financing-info__card .financing-info__wrapper--card {
    width: 100%;
    position: relative;
    top: 120px;
    left: 145px;
  }
  .financing-info__card .financing-info__wrapper--card .card-title {
    margin-bottom: 10px;
  }
  .financing-info__card .financing-info__wrapper--card .card-subtitle {
    max-width: 440px;
    padding-bottom: 10px;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .card-subtitle__applepay {
    width: 330px;
    height: 26px;
    font-size: 26px;
    line-height: 26px;
    color: #053e5e;
    text-align: left;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .financing-info__wrapper--card__applepay--logo {
    width: 149px;
    height: 73px;
    position: relative;
    margin-left: 20px;
  }
  .financing-info__business {
    max-width: 100%;
    margin: 94px 0 0 auto;
    flex-direction: row-reverse;
    justify-content: space-between;
    min-height: 520px;
    height: 520px;
    padding: 0;
  }
  .financing-info__business .financing-info__business--bg {
    background: url("/shared/assets/images/business-crop1.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
    height: 520px;
    margin: 0;
  }
  .financing-info__business .financing-info__wrapper--business {
    max-width: 380px;
    margin: 139px 137px 0 190px;
    padding: 0;
  }
  .business-title {
    margin-bottom: 5px !important;
  }
}
@media (min-width: 1800px) {
  .financing-info {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    max-height: 620px;
  }
  .financing-info .financing-info__wrapper {
    align-items: flex-start;
  }
  .financing-info .financing-info__wrapper .line5 {
    width: 233px;
    margin: 30px 0;
  }
  .financing-info .financing-info__wrapper .financing__title {
    font-size: 50px;
    text-align: left;
    line-height: 54px;
    letter-spacing: -0.14px;
  }
  .financing-info .financing-info__wrapper .financing_subtitle {
    width: 100%;
    padding: 0;
    text-align: left;
    font-size: 18px;
    line-height: 28px;
  }
  .financing-info .financing-info__wrapper .investments-title {
    margin: 0;
    padding-bottom: 6px;
  }
  .financing-info .financing-info__wrapper .investments-subtitle {
    width: 101%;
  }
  .financing-info__break {
    display: block !important;
    margin-bottom: 15px;
  }
  .financing-info__payments {
    background: url("/shared/assets/images/payments-bg.png") no-repeat;
    background-size: cover;
    height: 613px;
    margin: 0;
  }
  .financing-info__payments1 {
    background: #f3f4f6 url("/shared/assets/images/payments-bg-1.png") no-repeat left center;
    background-size: contain;
    height: 613px;
    margin: 0;
  }
  .financing-info__wrapper--payments {
    max-width: 410px;
    position: absolute;
    left: 55%;
    top: 115px;
  }
  .financing-info__wrapper--payments .payments-title {
    padding-bottom: 5px;
  }
  .financing-info__wrapper--payments .payments-subtitle {
    margin-top: 10px;
    max-width: 390px;
  }
  .financing-info__investments {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .financing-info__wrapper--investments-img {
    background: url("/shared/assets/images/investments-background-new.png") no-repeat;
    height: 580px;
    width: 542px;
    background-size: contain;
    margin: 81px 384px 0 0;
  }
  .financing-info__investments .financing-info__wrapper--investments {
    margin: 198px 0 0 383px;
    max-width: 460px;
    padding: 0;
  }
  .financing-info__investments .financing-info__wrapper--investments .line5 {
    margin: 31px 0 31px 0;
  }
  .financing-info__card {
    margin: 54px auto 0 192px;
    padding: 0;
  }
  .financing-info__card .financing-info__wrapper__card-bg {
    background-size: contain;
    max-width: 375px;
    width: 100%;
    height: 450px;
    margin-left: 181px;
    top: 40px;
  }
  .financing-info__card .financing-info__wrapper__card-bg .financing-info__card--title {
    display: none;
  }
  .financing-info__card .financing-info__wrapper--card {
    width: 100%;
    position: relative;
    top: 136px;
    left: 150px;
  }
  .financing-info__card .financing-info__wrapper--card .card-title {
    display: block;
  }
  .financing-info__card .financing-info__wrapper--card .card-subtitle {
    max-width: 440px;
    padding-bottom: 10px;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay {
    width: 100%;
    margin: 25px 0 0;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .card-subtitle__applepay {
    font-size: 24px;
    line-height: 26px;
    color: #053e5e;
    padding-right: 118px;
    padding-top: 10px;
  }
  .financing-info__card .financing-info__wrapper--card .financing-info__wrapper--card__applepay .financing-info__wrapper--card__applepay--logo {
    width: 149px;
    height: 73px;
  }
  .financing-info__business {
    margin: 130px 0 83px;
    flex-direction: row-reverse;
    max-width: 100%;
    min-height: 633px;
    justify-content: space-between;
  }
  .financing-info__business .financing-info__business--bg {
    background-size: cover;
    background-position: right center;
    height: 716px;
    margin: 0;
    max-width: 50%;
  }
  .financing-info__business .financing-info__wrapper--business {
    max-width: 380px;
    margin: 140px 90px 0 383px;
    padding: 0;
  }
  .financing-info__business .financing-info__wrapper--business .line5 {
    margin: 32px 0 28px;
  }
  .business-title {
    padding-bottom: 5px;
  }
}
.main-screen {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  background-image: url("/shared/assets/images/banner.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.main-screen .banner {
  width: 100%;
  height: 100%;
  min-height: 253px;
}
.main-screen .offer {
  max-width: 720px;
  padding: 20px 15px 0 15px;
}
.main-screen .offer__title {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  min-width: 319px;
  height: 119px;
  font-size: 50px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: normal;
  color: #053e5e;
}
.main-screen .offer__separator {
  margin: 20px 0;
  width: 100px;
  height: 1px;
  background-color: #051723;
}
.main-screen .offer__description {
  font-family: "Lato-Regular", sans-serif;
  height: 84px;
  margin: 32px 0 47px;
  opacity: 0.7;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  color: #053e5e;
  text-align: left;
}
.main-screen .offer__cta {
  margin-top: 16px;
  width: 145px;
  height: 54px;
}
.main-screen .offer__scroll-down {
  display: none;
}
.main-screen .app-btn {
  display: inline-block;
  background-image: url("/shared/assets/images/svg/app-btn.svg");
  width: 166px;
  height: 56px;
  position: relative;
}
.main-screen .app-btn:before {
  content: "";
  background-image: url("/shared/assets/images/svg/app-btn-hover.svg");
  position: absolute;
  width: 254px;
  height: 144px;
  left: -44px;
  top: -44px;
  display: none;
}
.main-screen .app-btn:hover:before {
  display: block;
}

@media (max-width: 1024px) {
  .main-screen {
    height: 809px;
    background-image: url("/shared/assets/images/banner-table3.png");
    background-size: contain;
  }
  .main-screen .banner {
    display: none;
  }
  .main-screen .offer {
    padding-top: 149px;
    text-align: center;
    margin: 0 auto;
  }
  .main-screen .offer__title {
    font-size: 44px;
    line-height: 1.05;
    height: auto;
    margin-bottom: 16px;
  }
  .main-screen .offer__separator {
    width: 233px;
    margin: 30px 0;
  }
  .main-screen .offer__description {
    font-size: 16px;
    line-height: 1.38;
    margin: 0 0 16px 0;
    text-align: center;
  }
  .main-screen .offer .app-btn {
    margin: 0;
  }
  .main-screen .offer__cta {
    width: 188px;
    height: 59px;
    font-size: 16px;
    letter-spacing: 0.23px;
  }
}
@media (min-width: 1200px) {
  .main-screen {
    flex-direction: row;
    flex-flow: row-reverse;
    margin-top: 120px;
    min-height: 646px;
    padding-top: 116px;
  }
  .main-screen .banner {
    width: 50%;
    height: 100%;
    background-position: right bottom;
  }
  .main-screen .offer {
    width: 50%;
    padding: 0;
  }
  .main-screen .offer .offer-inner {
    margin: 0 121px 0 auto;
    width: 440px;
  }
}
@media (min-width: 1920px) {
  .main-screen .offer .offer-inner {
    margin: 0 143px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main-screen .offer__cta {
    margin-top: 72px;
  }
}
@media (max-width: 426px) {
  .main-screen {
    min-height: 500px;
    max-height: 100vh;
    background-image: url("/shared/assets/images/banner-mobile3.png");
    background-size: contain;
  }
  .main-screen .banner {
    display: none;
  }
  .main-screen .offer {
    padding-top: 115px;
    text-align: center;
    margin: 0 auto;
  }
  .main-screen .offer__title {
    font-size: 30px;
    line-height: 1.13;
    height: auto;
    width: 289px;
    margin-bottom: 16px;
  }
  .main-screen .offer__description {
    font-size: 14px;
    line-height: 1.43;
    width: 289px;
    min-width: 289px;
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.container {
  background-color: #F5FBFF;
  min-width: 100%;
  padding: 24px 15px 37px;
  margin-top: 20px;
  background-image: url("/shared/assets/images/svg/pricing.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  min-height: 469px;
  display: flex;
  justify-content: center;
}
.container--content {
  width: 1060px;
  margin-bottom: 100px;
}
.container .pricing--main-box {
  box-shadow: 0 23px 35px rgba(5, 62, 94, 0.1);
  padding: 0 77px 32px 77px;
  background: #fff;
  position: relative;
}
.container .pricing--bg {
  position: absolute;
}
.container .pricing--title {
  font-family: "Ubuntu-Regular";
  font-size: 48px;
  line-height: 54px;
  color: #053E5E;
  margin-top: 50px;
  margin-bottom: 54px;
}
.container .pricing--price {
  position: absolute;
  right: 77px;
  top: -23px;
  width: 161px;
  height: 144px;
  text-align: center;
  padding-top: 30px;
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
}
.container .pricing--price > div {
  color: #fff;
  z-index: 2;
  position: relative;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 17px;
}
.container .pricing--price > div:first-child {
  font-size: 48px;
  line-height: 55px;
}
.container .pricing--price svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.container .logo-head {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: #053E5E;
}
.container .sub-label {
  font-size: 14px;
  line-height: 18px;
  color: #9BB2BF;
}

@media (max-width: 768px) {
  .container--content {
    width: 100%;
  }
  .container .pricing--main-box {
    padding: 0 27px 32px 27px;
  }
  .container .pricing--main-box li {
    min-width: auto;
  }
  .container .pricing--price {
    top: -15px;
    padding-top: 5px;
    right: -15px;
  }
  .container .pricing--price svg {
    height: 100px;
  }
  .container .logo-head {
    padding-top: 80px;
  }
}
.partnerships {
  padding: 24px 15px 37px;
  display: block;
}
.partnerships__title {
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 1.27;
  letter-spacing: -0.14px;
  color: #053e5e;
  text-align: center;
}
.partnerships__companies {
  display: flex;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1440px;
}
.partnerships__companies__logo {
  width: 80px;
  height: 80px;
  transition: 0.5s;
}
.partnerships__companies .l-three-nine {
  background: url("/shared/assets/images/png/partnership-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68%;
}
.partnerships__companies .l-three-nine:hover {
  background: url("/shared/assets/images/png/partnership-1--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68%;
}
.partnerships__companies .plaid {
  background: url("/shared/assets/images/png/partnership-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .plaid:hover {
  background: url("/shared/assets/images/png/partnership-2--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .cc {
  background: url("/shared/assets/images/png/cc.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .cc:hover {
  background: url("/shared/assets/images/png/cc-bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .forbes {
  background: url("/shared/assets/images/png/partnership-4.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .forbes:hover {
  background: url("/shared/assets/images/png/partnership-4--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .wk {
  background: url("/shared/assets/images/png/wealthkernel.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .wk:hover {
  background: url("/shared/assets/images/png/wealthkernel--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .mastercard {
  background: url("/shared/assets/images/svg/MC-llogo-default.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 57% !important;
}
.partnerships__companies .mastercard:hover {
  background: url("/shared/assets/images/svg/MC-llogo-hover.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.partnerships__companies .modulur {
  background: url("/shared/assets/images/png/partnership-6.png");
  background-repeat: no-repeat;
  background-position: center 20px;
  background-size: contain;
}
.partnerships__companies .modulur:hover {
  background: url("/shared/assets/images/png/partnership-6--bl.png");
  background-repeat: no-repeat;
  background-position: center 20px;
  background-size: contain;
}
.partnerships__companies .lbs {
  background: url("/shared/assets/images/png/partnership-7.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.partnerships__companies .lbs:hover {
  background: url("/shared/assets/images/png/partnership-7--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.partnerships__companies .wisealpha {
  background: url("/shared/assets/images/png/wisealpha.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.partnerships__companies .wisealpha:hover {
  background: url("/shared/assets/images/png/wisealpha--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
}
.partnerships__companies .cbh {
  background: url("/shared/assets/images/png/partnership-8.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.partnerships__companies .cbh:hover {
  background: url("/shared/assets/images/png/partnership-8--bl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (min-width: 375px) {
  .partnerships__companies__logo {
    width: 68px;
    height: 80px;
    background-position: center !important;
    background-size: 65% !important;
  }
  .partnerships__companies__logo.l-three-nine {
    background-size: 45% !important;
  }
  .partnerships__companies__logo.mastercard {
    background-size: 90% !important;
  }
}
@media (min-width: 576px) {
  .partnerships {
    padding: 60px 15px 20px;
  }
  .partnerships__title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .partnerships__title {
    font-size: 40px;
  }
  .partnerships__companies__logo {
    width: 129px;
    height: 150px;
    background-position: center !important;
    background-size: 75% !important;
  }
  .partnerships__companies__logo.l-three-nine {
    background-size: 56% !important;
  }
  .partnerships__companies__logo.lbs {
    background-size: 60% !important;
  }
}
@media (min-width: 1200px) {
  .partnerships {
    padding: 74px 0 94px;
  }
  .partnerships__title {
    font-size: 48px;
    margin-bottom: 45px;
  }
  .partnerships__companies__logo {
    width: 236px;
    height: 150px;
    background-position: center !important;
    background-size: 55% !important;
  }
  .partnerships__companies__logo.l-three-nine {
    background-size: 38% !important;
  }
  .partnerships__companies__logo.lbs {
    background-size: 40% !important;
  }
  .partnerships__companies__logo.modulur {
    background-position: center 90px !important;
  }
}
@media (min-width: 1400px) {
  .partnerships {
    padding: 74px 0 94px;
  }
  .partnerships__title {
    font-size: 48px;
    margin-bottom: 45px;
  }
  .partnerships__companies__logo {
    width: 284px;
    height: 250px;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}
.modal.isOpen {
  display: flex;
}
.modal__overlay {
  background-color: #053e5e;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
}
.modal__window {
  position: relative;
  padding: 44px 0 0 42px;
  background: #ffffff;
  width: 60%;
  height: 60%;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .modal__window {
    width: 100%;
    height: 100%;
  }
}
.modal__window__header__btn-close {
  background-image: url("/shared/assets/images/svg/close-ic.svg");
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.modal__window__content {
  height: 100%;
  padding-right: 50px;
  padding-bottom: 50px;
  overflow-y: scroll;
  font-family: SourceSansPro-Regular, sans-serif;
  font-size: 18px;
}
.modal__window__content h1 {
  font-family: SourceSansPro-Semibold, sans-serif;
  color: #053e5e;
}
.modal__window__content b {
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 22px;
}
.modal__window__content .intext-b {
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 18px;
}
.modal__window__content .fortu-image {
  width: 250px;
  margin-top: 100px;
  margin-bottom: 20px;
}
.modal__window__content .bottom-blank {
  margin-bottom: 350px;
}
.modal__window__content .ol-indent {
  margin-left: 25px;
}
.modal__window__content .ol-indent p {
  margin-bottom: 3px;
}
.modal__window__content .last-p {
  margin-bottom: 24px !important;
}
.modal__window__content .bold-header {
  margin-left: -25px;
}
.modal__window__content .trading-gap {
  margin-top: 100px;
  margin-bottom: 700px !important;
}
.modal__window__content .wk-no-space {
  margin-left: -25px;
}
.modal__window__shadow {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: inset 0 -80px 50px -60px rgb(255, 255, 255);
}
.get-the-app-float-bg {
  width: 100%;
  position: fixed;
  padding: 0 0 28px 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.2));
  bottom: -100px;
  left: 0;
  z-index: 100;
  transition: all 0.3s ease-out;
}
.get-the-app-float-bg.showBtn {
  bottom: 0;
}
.get-the-app-float-bg.showBtn.up-cookie {
  bottom: 76px;
}

.get-the-app-float-content {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .get-the-app-float-content {
    padding: 0 83px;
  }
}
@media (max-width: 1024px) {
  .get-the-app-float-content {
    padding: 0 15px;
  }
}

.up-cookie {
  bottom: 76px;
}

.get-the-app-float {
  height: 60px;
  width: 150px;
}
@media (max-width: 768px) {
  .get-the-app-float {
    height: 50px;
    width: 100px;
    font-size: 13px;
  }
}
@media (max-width: 425px) {
  .get-the-app-float {
    height: 45px;
    width: 100px;
    font-size: 13px;
  }
}
@media (max-width: 320px) {
  .get-the-app-float {
    height: 38px;
    width: 98px;
    font-size: 12px;
  }
}
.blog-content {
  padding: 0 15px;
}
.blog-content .title {
  margin-top: 86px;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 54px;
  color: #053e5e;
}
.blog-content .month {
  margin-top: 58px;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 30px;
  line-height: 30px;
  color: #053e5e;
}
.blog-content .separator {
  width: 60px;
  height: 1px;
  margin: 20px auto 49px;
  background-color: #053e5e;
}
.blog-content .posts {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.blog-content .posts .post {
  min-width: 290px;
  width: 100%;
  max-width: 405px;
}
.blog-content .posts .post__picture {
  display: block;
  width: 100%;
}
.blog-content .posts .post__date {
  margin-top: 22px;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.blog-content .posts .post a:hover {
  text-decoration: none;
}
.blog-content .posts .post__title {
  margin: 15px 0 12px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #053e5e;
}
.blog-content .posts .post__content {
  font-family: "Lato-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.blog-content .posts .post__read-more {
  display: block;
  margin: 22px 0 30px;
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 16px;
  color: #053e5e;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .blog-content .posts {
    max-width: 1440px;
    margin: 0 auto;
    justify-content: left;
  }
  .blog-content .posts .post {
    width: 33%;
  }
  .blog-content .posts .post:nth-child(3n+2) {
    max-width: 460px;
    padding: 0 30px;
  }
  .blog-content .title {
    margin-top: 193px;
  }
}
@media (min-width: 1920px) {
  .blog-content .posts {
    justify-content: left;
  }
  .blog-content .posts .post {
    max-width: 460px;
    width: 33%;
  }
  .blog-content .posts .post:nth-child(3n+2) {
    max-width: 520px;
    width: 520px;
    padding: 0 30px;
  }
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.context-box {
  max-width: 1059px;
  margin: 0 auto;
}
.context-box--title {
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #053e5e;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 54px;
}

.about-us {
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: #053e5e;
}
.about-us .seedrs {
  position: relative;
}
.about-us .seedrs.down .ovals {
  transform: translate(0, -10px);
}
.about-us .seedrs.up .ovals {
  transform: translate(0, 10px);
}
.about-us .seedrs.left .ovals {
  transform: translate(-10px, 0);
}
.about-us .seedrs.right .ovals {
  transform: translate(10px, 0);
}
.about-us .seedrs--box {
  margin: 0 auto;
  max-width: 770px;
  text-align: center;
  position: relative;
}
.about-us .seedrs--box a {
  width: 230px;
  height: 60px;
  border: solid 2px rgba(5, 62, 94, 0.2);
  display: inline-block;
  line-height: 60px;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  color: rgb(5, 62, 94);
  margin-bottom: 116px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.about-us .seedrs--box a:hover {
  border-color: rgb(5, 62, 94);
}
.about-us .seedrs--logo {
  margin-bottom: 52px;
  margin-top: 44px;
}
.about-us .seedrs--title {
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 24px;
}
.about-us .seedrs--text {
  font-family: "Lato-Regular", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 30px;
}
.about-us .seedrs .ovals {
  transform: translate(0, 0);
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-us .seedrs .ovals > div {
  position: absolute;
}
.about-us .seedrs .ovals > div.oval-12 {
  top: -80px;
  left: 50%;
  margin-left: -23px;
  width: 46px;
  height: 60px;
  background: url("/shared/assets/images/svg/oval/oval-copy-12.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-6 {
  top: 44px;
  right: 45px;
  width: 42px;
  height: 49px;
  background: url("/shared/assets/images/svg/oval/oval-copy-6.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-5 {
  width: 141px;
  height: 144px;
  right: -261px;
  top: 93px;
  background: url("/shared/assets/images/svg/oval/oval-copy-5.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-10 {
  width: 116px;
  height: 106px;
  right: -58px;
  bottom: 98px;
  background: url("/shared/assets/images/svg/oval/oval-copy-10.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-13 {
  width: 29px;
  height: 40px;
  left: 50%;
  margin-left: 14.5px;
  bottom: 38px;
  background: url("/shared/assets/images/svg/oval/oval-copy-13.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-16 {
  width: 94px;
  height: 91px;
  left: -94px;
  bottom: 142px;
  background: url("/shared/assets/images/svg/oval/oval-copy-16.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-8 {
  width: 193px;
  height: 223px;
  left: -373px;
  bottom: 200px;
  background: url("/shared/assets/images/svg/oval/oval-copy-8.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval-15 {
  width: 36px;
  height: 32px;
  right: -308px;
  bottom: 28px;
  background: url("/shared/assets/images/svg/oval/oval-copy-15.svg") no-repeat 0 0;
}
.about-us .seedrs .ovals > div.oval {
  width: 46px;
  height: 60px;
  left: -23px;
  top: 21px;
  background: url("/shared/assets/images/svg/oval/oval.svg") no-repeat 0 0;
}
.about-us__carousel-board .slick-list {
  overflow: visible;
}
.about-us__carousel-board .slick-slide > div {
  margin: 0 42px 0 0;
}
.about-us__carousel-img img {
  width: 130px;
  height: 130px;
}
.about-us__carousel-name {
  font-size: 26px;
  line-height: 2.08;
}
.about-us__carousel-description {
  opacity: 0.6;
  font-family: "Lato-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
.about-us__carousel-btn {
  margin-top: 10px;
}
.about-us__carousel-btn button {
  cursor: pointer;
  outline: 0;
  border: 0;
  border-radius: 50%;
  background-color: #F3F9FC;
}
.about-us__carousel-btn button:hover {
  box-shadow: 0 10px 23px rgba(5, 62, 94, 0.14);
  background-color: #fff;
}
.about-us__carousel-btn button:last-child img {
  transform: rotate(180deg);
}
.about-us__carousel-type {
  opacity: 0.8;
  font-family: "Lato-Regular", sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.86;
  letter-spacing: normal;
  color: #053e5e;
  margin-top: -24px;
}
.about-us--fortu-news {
  background-color: #f2faff;
  height: 236px;
  margin-top: 72px;
  position: relative;
  color: #053e5e;
}
.about-us--fortu-news:before {
  content: "";
  display: block;
  position: absolute;
  top: -71px;
  right: 0;
  height: 307px;
  width: 672px;
  background: url("/shared/assets/images/svg/subscribe-bg.svg") no-repeat 0 0;
}
.about-us--fortu-news button {
  background: url("/shared/assets/images/svg/icons-sent-ic.svg") no-repeat center center;
  width: 42px;
  height: 42px;
  border: 0;
  outline: 0;
  cursor: pointer;
  z-index: 1;
  margin-left: -42px;
}
.about-us--fortu-news input {
  height: 42px;
  background: transparent;
  width: 431px;
  border: 0;
  border-bottom: 1px solid rgba(5, 62, 94, 0.4);
  font-size: 20px;
  font-family: "Lato-Regular", sans-serif;
  float: left;
  outline: 0;
  color: #265773;
  padding-bottom: 20px;
  margin-top: 10px;
}
.about-us--fortu-news input::placeholder {
  opacity: 0.6;
  color: #265773;
}
.about-us--fortu-news form {
  clear: both;
}
.about-us--subscribe-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  margin-bottom: 20px;
  padding-top: 35px;
  color: #053e5e;
}
.about-us--subscribe-text {
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 14px;
  color: #93afbf;
  max-width: 430px;
  margin-top: 17px;
  margin-bottom: 2px;
}
.about-us--team-info {
  background: #f7f7ed;
  clear: both;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 13px 12px 0 rgba(156, 156, 146, 0.2);
}
.about-us--team-info img {
  float: right;
}
.about-us--team-info-text {
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.44;
  letter-spacing: normal;
  margin-top: 44px;
  margin-left: 56px;
  max-width: 434px;
  font-family: "Lato-Regular", sans-serif;
}
.about-us--team-info-text img {
  display: block;
  float: none;
  margin-bottom: 44px;
}
.about-us--team-info-text-title {
  font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  margin-bottom: 10px;
  font-family: "Ubuntu", sans-serif;
}

@media (max-width: 1024px) {
  .about-us .context-box {
    margin: 0 20px;
  }
}
@media (max-width: 769px) {
  .about-us__carousel-btn {
    display: none;
  }
  .about-us__carousel-board .slider > div {
    text-align: center;
    padding: 32px 32px 0 32px;
  }
  .about-us__carousel-description, .about-us__carousel-type {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.42;
    letter-spacing: normal;
  }
  .about-us__carousel-type {
    margin-top: -12px;
    margin-bottom: 12px;
  }
  .about-us__carousel-name {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 3;
    letter-spacing: normal;
  }
  .about-us__carousel-img img {
    width: 100px;
    height: 100px;
  }
  .about-us .context-box--title {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
    margin: 0;
  }
  .about-us--team-info {
    margin: 0 24px 32px 24px;
    text-align: center;
  }
  .about-us--team-info > img {
    width: 272px;
    height: 204px;
    float: none;
  }
  .about-us--team-info-text-title {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 16px;
  }
  .about-us--team-info-text {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: center;
    margin: 24px;
    display: inline-block;
  }
  .about-us--team-info-text img {
    display: inline-block;
    width: 103px;
    margin-bottom: 24px;
  }
  .about-us--fortu-news {
    min-height: 355px;
  }
  .about-us--fortu-news:before {
    width: 320px;
    height: 119px;
    bottom: 0;
    top: auto;
    background-size: cover;
  }
  .about-us--fortu-news form {
    margin: 0 32px;
  }
  .about-us--fortu-news form input {
    width: 100%;
  }
  .about-us--subscribe-text {
    margin: 0 32px;
  }
  .about-us--subscribe-title {
    font-size: 24px;
    margin: 29px auto;
    padding-top: 29px;
    width: 204px;
    text-align: center;
  }
  .about-us .seedrs--logo {
    width: 138px;
    margin-bottom: 37px;
    margin-top: 10px;
  }
  .about-us .seedrs--title {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: center;
  }
  .about-us .seedrs--text {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: center;
    padding: 0 16px;
  }
  .about-us .seedrs .ovals > div {
    position: absolute;
  }
  .about-us .seedrs .ovals > div.oval-12 {
    top: -70px;
    left: 50%;
    margin-left: -23px;
    width: 24px;
    height: 30px;
    background-size: contain;
  }
  .about-us .seedrs .ovals > div.oval-6 {
    top: -16px;
    right: 75px;
    width: 10px;
    height: 12px;
    background-size: contain;
  }
  .about-us .seedrs .ovals > div.oval-10 {
    display: none;
  }
  .about-us .seedrs .ovals > div.oval-5 {
    width: 43px;
    height: 72px;
    right: auto;
    top: 10px;
    left: -10px;
    background-size: contain;
    opacity: 0.5;
  }
  .about-us .seedrs .ovals > div.oval-15 {
    width: 22px;
    height: 20px;
    right: 5px;
    bottom: auto;
    top: 82px;
    background-size: contain;
  }
  .about-us .seedrs .ovals > div.oval-13 {
    width: 14px;
    height: 18px;
    left: 37px;
    top: 55px;
    bottom: auto;
    background-size: contain;
  }
  .about-us .seedrs .ovals > div.oval-8 {
    width: 59px;
    height: 68px;
    top: -30px;
    left: auto;
    bottom: auto;
    right: 0;
    background-size: contain;
  }
  .about-us .seedrs .ovals > div.oval {
    width: 19px;
    height: 22px;
    left: 60px;
    top: -9px;
    background-size: contain;
  }
  .about-us-header {
    min-height: 650px !important;
  }
  .about-us-header .about-us-header__carousel {
    max-width: 100%;
    padding: 89px 37px 0;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
  }
  .about-us-header .about-us-header__carousel h2 {
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: normal;
  }
  .about-us-header .about-us-header__carousel .slick-slide {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    text-align: left;
    padding-right: 5px;
  }
  .navigation.white {
    color: #fff;
  }
  .navigation.white .menu-left .burger__line {
    background: #fff;
  }
  .navigation.white .menu-right a {
    color: #fff;
    border-color: #fff;
  }
}
.about-us-header {
  width: 100%;
  background: #053e5e url("/shared/assets/images/bigben.jpg") no-repeat center center;
  background-size: cover;
  min-height: 758px;
  display: flex;
  justify-content: center;
  margin-bottom: 54px;
}
.about-us-header__carousel {
  padding-top: 236px;
  max-width: 843px;
  color: #fff;
}
.about-us-header__carousel .slick-prev {
  left: -108px;
}
.about-us-header__carousel .slick-next {
  right: -108px;
}
.about-us-header__carousel .slick-next:before {
  transform: rotate(180deg);
}
.about-us-header__carousel .slick-prev, .about-us-header__carousel .slick-next {
  width: 44px;
  height: 100%;
  top: 0;
  transform: translate(0);
}
.about-us-header__carousel .slick-prev:before, .about-us-header__carousel .slick-next:before {
  content: "";
  width: 44px;
  height: 44px;
  display: block;
  background: url("/shared/assets/images/svg/arrow-carousel.svg") no-repeat center center;
}
.about-us-header__carousel h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 60px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: normal;
  margin-bottom: 38px;
}
.about-us-header__carousel .slick-dots {
  text-align: left;
  bottom: -55px;
}
.about-us-header__carousel .slick-dots li.slick-active button {
  background-color: rgb(255, 255, 255);
}
.about-us-header__carousel .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  padding: 0;
}
.about-us-header__carousel .slick-dots li button:before {
  display: none;
}
.about-us-header__carousel .slick-slide {
  min-height: 206px;
  font-family: "Lato-Regular", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: justify;
}
.wealth-head {
  background: #053e5e url("/shared/assets/images/wealth-bg.png") no-repeat center center;
  background-size: cover;
  min-height: 766px;
}
.wealth-head .coming-soon-text-head {
  margin-bottom: -25px;
  color: #fff;
  margin-top: 15px;
  font-size: 20px;
  font-weight: bold;
}
.wealth-head--title {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 50px;
  line-height: 58px;
  color: #fff;
  max-width: 713px;
}
.wealth-head--text {
  position: absolute;
  left: 83px;
  top: 223px;
}
@media (max-width: 768px) {
  .wealth-head--text {
    left: 32px;
  }
}
@media (min-width: 1920px) {
  .wealth-head--text {
    left: 0;
  }
}
.wealth-head--label {
  font-family: "Lato-Regular", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-top: 16px;
  color: #fff;
  max-width: 600px;
}
.wealth-head--form {
  margin-top: 60px;
}
.wealth-head--form input {
  width: 367px;
  height: 60px;
  background: #FFFFFF;
  border: 0;
  border-radius: 8px;
  text-indent: 27px;
}
.wealth-head--form button {
  background: #fff;
  border: 0;
  width: 60px;
  height: 60px;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  border-radius: 8px;
  margin-left: -20px;
}
.wealth-head--form form {
  display: flex;
}
.wealth-head .capital-at-risk {
  font-family: "Lato-Regular", sans-serif;
  font-size: 18px;
  line-height: 28px;
  border-block-width: 1px;
  border-bottom-style: solid;
  color: #fff;
}
.wealth-head .capital-at-risk:hover {
  text-decoration: none;
}
@media (max-width: 1024px) {
  .wealth-head .capital-at-risk {
    left: 150px;
  }
}
@media (max-width: 768px) {
  .wealth-head .capital-at-risk {
    left: 32px;
    top: 460px;
  }
}
@media (min-width: 1920px) {
  .wealth-head .capital-at-risk {
    left: 0;
  }
}

.graphic-wealth {
  background-color: #F3F9FC;
  min-height: 602px;
  position: relative;
}
.graphic-wealth--bg {
  background: url("/shared/assets/images/svg/graphic-wealth-bg.svg") no-repeat left bottom;
  min-height: 595px;
  background-size: cover;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.graphic-wealth .union {
  background: url("/shared/assets/images/svg/Union.svg") no-repeat left top;
  background-size: cover;
  width: 470px;
  height: 200px;
  padding: 42px 62px 0 55px;
  position: absolute;
  top: 225px;
  left: 253px;
  font-weight: normal;
  font-size: 32px;
  line-height: 41px;
  font-family: "Ubuntu", sans-serif;
  color: #053E5E;
}

.save-time {
  background-color: #F3F9FC;
  padding: 119px 0 67px 0;
  position: relative;
}
.save-time .white-box-radius {
  padding: 68px 198px 0 674px;
  position: relative;
}
.save-time .phone-moc {
  background: url("/shared/assets/images/png/3 1.png") no-repeat left top;
  height: 521px;
  width: 320px;
  position: absolute;
  left: 189px;
  bottom: -75px;
  z-index: 2;
}

.pick-basket {
  background-color: #F3F9FC;
  padding: 175px 0 62px 0;
  position: relative;
}
.pick-basket .white-box-radius {
  padding: 104px 172px 0 678px;
  position: relative;
}
.pick-basket .phone-moc {
  background: url("/shared/assets/images/png/1 8.png") no-repeat left top;
  width: 320px;
  height: 528px;
  position: absolute;
  left: 180px;
  bottom: -62px;
}

.wealth-green-line {
  background: url("/shared/assets/images/svg/green-line.svg") no-repeat center;
  width: 100%;
  height: 589px;
  position: absolute;
  z-index: 1;
  background-size: contain;
  top: 0;
}

.wealth-green-line2 {
  background: url("/shared/assets/images/svg/green-line2.svg") no-repeat bottom center;
  width: 100%;
  height: 702px;
  position: absolute;
  z-index: 1;
  top: 0;
}

.get-detailed .white-box-radius {
  padding: 103px 546px 75px 81px;
  height: auto;
  width: 1088px;
  position: relative;
  background-color: #F3F9FC;
  margin-top: 126px;
  margin-bottom: 113px;
}
.get-detailed .phone-moc {
  background: url("/shared/assets/images/png/2 1.png") no-repeat left top;
  height: 552px;
  width: 320px;
  position: absolute;
  right: 109px;
  bottom: -113px;
}

.white-box-radius {
  width: 100%;
  max-width: 1356px;
  height: 375px;
  background: #FFFFFF;
  border-radius: 59px;
  color: rgba(5, 62, 94, 0.7);
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
  font-family: "Lato-Regular", sans-serif;
}
.white-box-radius--title {
  font-size: 36px;
  line-height: 44px;
  color: #053E5E;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 18px;
}
.white-box-radius--comingsoon {
  color: #053E5E;
  font-family: "Lato-Regular", sans-serif;
  font-style: normal;
  font-weight: 600;
  margin-top: 17px;
  font-size: 18px;
  line-height: 28px;
}

.wealth-steps {
  background: url("/shared/assets/images/svg/wealth-step-bg.svg") no-repeat left top;
  background-size: cover;
  padding-top: 33px;
  margin-top: 33px;
  position: relative;
  font-family: "Ubuntu", sans-serif;
  color: #053E5E;
  padding-bottom: 50px;
}
.wealth-steps--title {
  margin-top: 182px;
  font-style: normal;
  font-weight: normal;
  font-size: 44px;
  line-height: 54px;
  margin-left: 200px;
  max-width: 593px;
  color: #053E5E;
}
.wealth-steps--line-bg {
  background: url("/shared/assets/images/svg/line-steps.svg") no-repeat left top;
  position: absolute;
  top: 313px;
  left: 0;
  width: 100%;
  height: 282px;
  background-size: cover;
  z-index: 1;
}
.wealth-steps--ico {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  font-size: 44px;
  line-height: 54px;
  background-color: #fff;
  box-shadow: 0 38px 46px rgba(5, 62, 94, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wealth-steps--ico-comingsoon {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  font-size: 44px;
  line-height: 54px;
  background-color: #fff;
  box-shadow: 0 38px 46px rgba(5, 62, 94, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(5, 62, 94, 0.2);
}
.wealth-steps--title-item {
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 16px;
  margin-top: 36px;
}
.wealth-steps--title-item-comingsoon {
  opacity: 0.3;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 16px;
  margin-top: 36px;
}
.wealth-steps--item-text {
  opacity: 0.7;
  font-size: 16px;
  line-height: 24px;
  font-family: "Lato-Regular", sans-serif;
}
.wealth-steps--item-text-comingsoon {
  opacity: 0.3;
  font-size: 16px;
  line-height: 24px;
  font-family: "Lato-Regular", sans-serif;
}
.wealth-steps--item-text-bold {
  font-size: 16px;
  line-height: 24px;
  font-family: "Lato-Regular", sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-top: 17px;
  color: #053E5E;
  opacity: 0.9;
}
.wealth-steps ul {
  list-style: none;
  margin: 81px 160px 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  position: relative;
}
.wealth-steps ul li {
  flex: 1;
  margin: 0 37px;
}

.bg-linear-gradient {
  background: linear-gradient(180deg, #F4F5FF 0%, #C9E7F8 100%);
}

.join-the-fortu {
  min-height: 824px;
  position: relative;
  margin-top: 145px;
}
.join-the-fortu__bg {
  background: url("/shared/assets/images/png/Free_iPhone_11_Pro_Mockup_31.png") no-repeat right top;
  width: 462px;
  height: 595px;
  margin-right: 60px;
}
.join-the-fortu--form {
  font-family: "Lato-Regular", sans-serif;
  width: 457px;
  color: #053E5E;
}
.join-the-fortu--form form {
  display: flex;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.0561848);
}
.join-the-fortu--form input {
  width: 407px;
  height: 60px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  text-indent: 24px;
  font-family: "SourceSansPro-Regular", sans-serif;
  font-size: 18px;
  line-height: 23px;
  border-radius: 8px;
  outline: none;
}
.join-the-fortu--form button {
  height: 60px;
  border: 0;
  width: 60px;
  background: #fff;
  color: #fff;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  margin-left: -10px;
}
.join-the-fortu--title {
  font-family: "Ubuntu", sans-serif;
  font-size: 36px;
  line-height: 44px;
}
.join-the-fortu--text {
  font-size: 18px;
  line-height: 28px;
  font-family: "Lato-Regular", sans-serif;
  opacity: 0.7;
  margin-top: 16px;
  margin-bottom: 23px;
}
.join-the-fortu--capital-risk {
  margin-top: 34px;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .join-the-fortu--capital-risk {
    font-size: 14px;
    line-height: 22px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    width: fit-content;
    margin: 0 auto;
    margin-top: 25px;
  }
}
.join-the-fortu .wealth-box-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .join-the-fortu .wealth-box-content {
    display: block;
    flex-wrap: wrap;
  }
}

.risk {
  padding: 0 260px 116px;
}
@media (min-width: 1200px) and (max-width: 1919.98px) {
  .risk {
    padding: 0 82px 116px;
  }
}
.risk .white-box-radius {
  max-width: 100%;
  padding: 39px 48px;
  border-radius: 32px;
  height: auto;
}
.risk .white-box-radius .text {
  opacity: 0.7;
  font-size: 18px;
  line-height: 26px;
  font-family: "Lato-Regular", sans-serif;
  margin-top: 25px;
}
.risk .white-box-radius .title {
  font-size: 24px;
  line-height: 28px;
  font-family: "Ubuntu", sans-serif;
  color: #053E5E;
  opacity: 1;
}

.baskets {
  margin-bottom: 108px;
}
.baskets--title {
  margin-left: 200px;
  margin-top: 87px;
  font-style: normal;
  font-weight: normal;
  font-family: "Ubuntu", sans-serif;
  font-size: 44px;
  line-height: 54px;
  max-width: 593px;
  color: #053E5E;
  margin-bottom: 44px;
}
.baskets .basket-slide-title {
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  font-size: 22px;
  line-height: 100%;
  color: #FFFFFF;
  margin: 32px;
  z-index: 1;
  position: relative;
}
@media (max-width: 769px) {
  .baskets .basket-slide-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin: 24px 12px;
  }
}
.baskets .circle-items {
  position: absolute;
  bottom: 22px;
  left: 32px;
  display: flex;
}
.baskets .circle-items > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: -20px;
  background: rgba(243, 248, 251, 0.7);
  backdrop-filter: blur(4px);
}
.baskets .slick-slide {
  width: 360px !important;
}
.baskets .slick-track {
  margin-left: 200px;
}
.baskets--slide-item {
  border-radius: 12px;
  width: 336px;
  height: 204px;
  overflow: hidden;
  position: relative;
}
.baskets--slide-item .slide-bg {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 204px;
  left: 0;
  top: 0;
}
@media (max-width: 522px) {
  .baskets--slide-item .slide-bg {
    width: 156px;
    height: 196px;
    border-radius: 14px;
  }
}
.baskets--slide-item .slide-bg--1 {
  background: url("/shared/assets/images/svg/Group 95.svg") left top no-repeat;
}
.baskets--slide-item .slide-bg--2 {
  background: url("/shared/assets/images/svg/Group 96.svg") left top no-repeat;
}
.baskets--slide-item .slide-bg--3 {
  background: url("/shared/assets/images/svg/Group 97.svg") left top no-repeat;
}
.baskets--slide-item-image {
  width: 100%;
  min-height: 205px;
  max-height: 205px;
  overflow: hidden;
}
.baskets--slide-item-image img {
  min-width: 100%;
  height: 100%;
}
.baskets--carousel-description {
  font-size: 14px;
  color: #053E5E;
  opacity: 0.5;
  margin-left: 32px;
  margin-top: 19px;
}
.baskets--carousel-name {
  margin-left: 32px;
  font-size: 22px;
  color: #053E5E;
  margin-bottom: 24px;
}
.baskets .context-box {
  max-width: 100%;
}
.baskets .about-us__carousel-btn {
  margin-top: 44px;
  margin-left: 200px;
  z-index: 1;
  position: relative;
  display: block;
}
.baskets .about-us__carousel-btn button {
  cursor: pointer;
  outline: 0;
  border: 0;
  border-radius: 50%;
  background-color: #F3F9FC;
}
.baskets .about-us__carousel-btn button:hover {
  box-shadow: 0 10px 23px rgba(5, 62, 94, 0.14);
  background-color: #fff;
}
.baskets .about-us__carousel-btn button.next-c-btn img {
  transform: rotate(180deg);
}

.box-title {
  margin-left: 200px;
  margin-top: 87px;
  font-style: normal;
  font-weight: normal;
  font-family: "Ubuntu", sans-serif;
  font-size: 44px;
  line-height: 54px;
  max-width: 593px;
  color: #053E5E;
  margin-bottom: 24px;
}

.subscription-fees {
  overflow: hidden;
}
.subscription-fees--box {
  position: relative;
  max-width: 1142px;
  width: 100%;
  height: 397px;
  border-radius: 32px;
  margin: 44px auto 0;
  background: #ffffff url("/shared/assets/images/subscription-fees-bg.jpg") no-repeat left bottom;
  display: flex;
  color: #053E5E;
}
.subscription-fees--right {
  margin-top: 79px;
  margin-left: 72px;
  font-weight: normal;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  line-height: 120%;
}
.subscription-fees--right table {
  width: 514px;
  text-align: right;
}
.subscription-fees--right table .header {
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: #053E5E;
  opacity: 0.4;
}
.subscription-fees--right table .header td {
  padding-bottom: 17px;
}
.subscription-fees--right table td {
  padding-bottom: 24px;
}
.subscription-fees--right table td:first-child {
  text-align: left;
}
.subscription-fees--right-title {
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 47px;
}
.subscription-fees--left {
  width: 456px;
  max-width: 456px;
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  position: relative;
}
.subscription-fees--left:before {
  content: "";
  position: absolute;
  left: 100%;
  height: 321px;
  width: 1px;
  background: #98AEBD;
  top: 35px;
}
.subscription-fees--price {
  font-size: 110px;
  line-height: 100%;
  font-weight: 300;
  width: 100%;
  text-align: center;
  margin-top: 73px;
  position: relative;
}
.subscription-fees--per-month {
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
}
.subscription-fees--graf-text {
  font-weight: normal;
  font-size: 20px;
  line-height: 120%;
  background: #FFFFFF;
  box-shadow: 0 4px 37px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  left: 75px;
  top: 322px;
  position: absolute;
  padding: 10px 12px;
}
@media (min-width: 1024px) {
  .subscription-fees .box-title {
    max-width: 1142px;
    margin: 0 auto;
    padding-left: 50px;
  }
}

@media (max-width: 1024px) {
  .save-time .white-box-radius, .pick-basket .white-box-radius {
    padding-left: 450px;
    padding-right: 90px;
    padding-top: 80px;
  }
  .save-time .phone-moc, .pick-basket .phone-moc {
    left: 80px;
  }
  .wealth-head--text {
    left: 150px;
  }
  .baskets--title, .baskets .slick-track {
    margin-left: 150px;
  }
  .wealth-steps ul {
    margin: 81px 30px 0;
  }
  .subscription-fees--right table {
    width: 100%;
  }
  .subscription-fees--right table td:not(:first-child) {
    padding-left: 10px;
  }
  .join-the-fortu {
    background-position: -180px center;
  }
}
.mobile {
  display: none;
}

@media (max-width: 768px) {
  .custom-app .mobile {
    display: block;
  }
  .custom-app .risk {
    padding: 0 0 64px;
  }
  .custom-app .risk .white-box-radius {
    padding-top: 22px !important;
  }
  .custom-app .risk .white-box-radius .text {
    font-size: 12px;
    line-height: 18px;
    margin-top: 12px;
  }
  .custom-app .risk .white-box-radius .title {
    font-size: 16px;
    line-height: 18px;
  }
  .custom-app .save-time {
    padding-top: 1px;
  }
  .custom-app .save-time .wealth-green-line {
    height: 150px;
  }
  .custom-app .save-time .white-box-radius {
    margin-top: 277px;
  }
  .custom-app .save-time .white-box-radius > div:not(:first-child) {
    background: #fff;
  }
  .custom-app .save-time .phone-moc {
    top: -277px;
    height: 277px;
  }
  .custom-app .get-detailed {
    background-color: #F3F9FC;
    padding-top: 56px;
  }
  .custom-app .get-detailed .white-box-radius {
    padding-top: 338px;
    background: #fff;
  }
  .custom-app .get-detailed .white-box-radius .phone-moc {
    top: -59px;
    background: url("/shared/assets/images/png/2 1-mobile.png") no-repeat left top;
  }
  .custom-app .pick-basket {
    background-color: #F3F9FC;
    padding-top: 123px;
  }
  .custom-app .pick-basket .white-box-radius {
    padding-top: 338px;
    background: #fff;
  }
  .custom-app .pick-basket .white-box-radius .phone-moc {
    top: -59px;
    background: url("/shared/assets/images/png/1 8-mobile.png") no-repeat left top;
  }
  .custom-app .join-the-fortu {
    background-position: center top;
    background-size: 320px 343px;
    min-height: auto;
    margin-bottom: 64px;
    padding-top: 0;
  }
  .custom-app .join-the-fortu__bg {
    background-size: 320px 343px;
    width: 100%;
    height: 343px;
    background-position: center;
  }
  .custom-app .join-the-fortu--form {
    position: relative;
    right: auto;
    top: auto;
    width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .custom-app .join-the-fortu--form form {
    box-shadow: none;
    justify-content: center;
  }
  .custom-app .join-the-fortu--form input {
    height: 42px;
    border-radius: 8px;
    width: 261px;
  }
  .custom-app .join-the-fortu--form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    text-indent: -1000px;
    overflow: hidden;
    border-radius: 8px;
    margin-left: -10px;
  }
  .custom-app .join-the-fortu--form button svg {
    display: block;
  }
  .custom-app .wealth-head--text {
    left: 0;
    width: 100%;
    padding: 0 32px;
  }
  .custom-app .wealth-head--form {
    margin-top: 35px;
  }
  .custom-app .wealth-head--form input {
    width: 261px;
    height: 42px;
    border-radius: 8px;
  }
  .custom-app .wealth-head--form button {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-indent: -1000px;
    overflow: hidden;
    border-radius: 8px;
    margin-left: -10px;
  }
  .custom-app .wealth-head--form button svg {
    display: block;
  }
  .custom-app .wealth-head--title {
    font-weight: normal;
    font-size: 32px;
    line-height: 40px;
  }
  .custom-app .wealth-head--label {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
  }
  .custom-app .baskets--title {
    font-weight: normal;
    font-size: 24px;
    line-height: 26px;
    color: #053E5E;
    text-align: center;
    margin-left: 0;
    margin-top: 44px;
    margin-bottom: 24px;
  }
  .custom-app .subscription-fees {
    position: relative;
  }
  .custom-app .subscription-fees--price-box {
    height: 291px;
    width: 90%;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 8px;
    margin: 0 auto;
    color: #053e5e;
    position: relative;
  }
  .custom-app .subscription-fees--price {
    margin-top: 49px;
    font-weight: 300;
    font-size: 64px;
    line-height: 54px;
  }
  .custom-app .subscription-fees--per-month {
    font-weight: normal;
    font-size: 20px;
    line-height: 36px;
  }
  .custom-app .subscription-fees--graf-text {
    z-index: 1;
    width: 235px;
    height: 45px;
    font-size: 16px;
    line-height: 120%;
    top: 211px;
    left: 44%;
    margin-left: -92px;
    padding: 13px 16px;
    font-family: "Ubuntu", sans-serif;
  }
  .custom-app .subscription-fees--right-title {
    margin: 32px auto 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    width: 90%;
    padding-left: 20px;
    color: #053E5E;
  }
  .custom-app .subscription-fees--w-box {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 18px 24px;
    margin: 0 auto 16px auto;
    width: 90%;
    color: #053E5E;
    font-family: "Ubuntu", sans-serif;
  }
  .custom-app .subscription-fees--table {
    display: flex;
  }
  .custom-app .subscription-fees--table > div {
    width: 50%;
    font-size: 12px;
    line-height: 120%;
  }
  .custom-app .subscription-fees--w-box-title {
    font-weight: normal;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 29px;
    color: #053E5E;
  }
  .custom-app .subscription-fees .wealth-steps--line-bg {
    top: 260px;
  }
  .custom-app .subscription-fees .box-title {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    text-align: center;
    font-weight: normal;
    font-size: 24px;
    line-height: 26px;
    margin-top: 60px;
  }
  .custom-app .wealth-steps {
    text-align: center;
    padding-bottom: 9px;
  }
  .custom-app .wealth-steps--line-bg {
    background-size: 900px;
  }
  .custom-app .wealth-steps--title {
    margin-left: 0;
    font-weight: normal;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    margin-top: 67px;
  }
  .custom-app .wealth-steps--ico {
    font-size: 32px;
    width: 75px;
    height: 75px;
    margin: 0 auto;
  }
  .custom-app .wealth-steps--ico-comingsoon {
    font-size: 32px;
    width: 75px;
    height: 75px;
    margin: 0 auto;
  }
  .custom-app .wealth-steps--title-item {
    margin-top: 23px;
    font-size: 18px;
  }
  .custom-app .wealth-steps--title-item-comingsoon {
    margin-top: 23px;
    font-size: 18px;
  }
  .custom-app .wealth-steps--item-text {
    font-size: 14px;
    line-height: 22px;
  }
  .custom-app .wealth-steps--item-text-comingsoon {
    font-size: 14px;
    line-height: 22px;
  }
  .custom-app .wealth-steps--line-bg.mobile {
    top: 139px;
  }
  .custom-app .wealth-steps--line-bg {
    top: 400px;
  }
  .custom-app .wealth-steps ul {
    margin-top: 59px;
    display: block;
  }
  .custom-app .wealth-steps ul li {
    margin: 0 0 39px 0;
  }
  .custom-app .graphic-wealth--bg {
    background: url("/shared/assets/images/svg/graphic-wealth-bg.svg") no-repeat -100px center;
  }
  .custom-app .graphic-wealth .union {
    width: 205px;
    height: 92px;
    padding: 14px 14px 14px 23px;
    left: 57px;
    top: 89px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
  }
  .custom-app .white-box-radius {
    padding: 32px 20px;
    margin: 0 auto;
    width: 90%;
    height: auto;
    border-radius: 22px;
    text-align: center;
    font-family: "SourceSansPro-Regular", sans-serif;
  }
  .custom-app .white-box-radius--title {
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }
  .custom-app .white-box-radius .phone-moc {
    width: 188px;
    left: 50%;
    margin-left: -94px;
    background-size: 100%;
  }
  .not-mobile {
    display: none;
  }
}
@media (max-width: 522px) {
  .custom-app .join-the-fortu--title {
    font-size: 24px;
  }
  .custom-app .join-the-fortu--text {
    font-size: 14px;
    line-height: 22px;
  }
  .baskets .about-us__carousel-btn {
    margin-left: 30px;
  }
  .baskets .slick-track {
    margin-left: 29px;
  }
  .baskets .slick-slide > div {
    margin-right: 0 !important;
  }
  .baskets .slick-slide {
    width: 176px !important;
  }
}
.wealth-box-content {
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}
.post-page {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}
.post-page .header {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #053e5e url("/shared/assets/images/png/post-header.png") no-repeat center center;
  background-size: cover;
}
.post-page .header__inner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(5, 62, 94, 0.6);
}
.post-page .header__title {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
}
.post-page .header__subtitle {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}
.post-page .content {
  padding: 30px 15px;
  display: flex;
  flex-wrap: wrap;
}
.post-page .content .article {
  width: 100%;
}
.post-page .content .article__title {
  font-size: 16px;
  line-height: 1.45;
  color: #053e5e;
}
.post-page .content .article__body {
  font-family: "Lato-Regular", sans-serif;
}
.post-page .content .article__body__image {
  display: block;
  width: 100%;
}
.post-page .content .sidebar {
  width: 100%;
  padding-top: 30px;
}
.post-page .content .sidebar__list {
  display: flex;
  flex-direction: column;
}
.post-page .content .sidebar__list__item {
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.post-page .content .sidebar__list__item .item__date {
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 8px;
}
.post-page .content .sidebar__list__item .item__title {
  font-size: 16px;
  color: #053e5e;
  margin-bottom: 12px;
}
.post-page .content .sidebar__list__item .item__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.post-page .content .sidebar__list__item .item__link .item__icon {
  display: block;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  border: 1px solid #053e5e;
  background-image: url("/shared/assets/images/svg/arrow--marine.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
.post-page .content .sidebar__list__item .item__link:hover {
  text-decoration: none;
}
.post-page .content .sidebar__list__item .item__link:hover .item__icon {
  background-color: #c43133;
  background-image: url("/shared/assets/images/svg/arrow-white.svg");
  border-color: #c43133;
}

@media (min-width: 1200px) {
  .post-page .header {
    min-height: 460px;
  }
  .post-page .header__inner {
    min-height: 460px;
  }
  .post-page .header__title {
    padding-top: 60px;
    font-size: 50px;
    line-height: 65px;
    max-width: 844px;
  }
  .post-page .header__subtitle {
    padding-top: 40px;
    font-size: 18px;
    line-height: 1;
  }
  .post-page .content {
    padding: 50px 0;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: center;
  }
  .post-page .content .article {
    width: 60%;
    max-width: 750px;
  }
  .post-page .content .article__title {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 24px;
  }
  .post-page .content .article__body {
    font-size: 16px;
    line-height: 1.75;
  }
  .post-page .content .sidebar {
    padding: 0 0 0 50px;
    width: 30%;
    max-width: 300px;
  }
  .post-page .content .sidebar__list__item .item__date {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .post-page .content .sidebar__list__item .item__title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.5;
  }
  .post-page .content .sidebar__list__item .item__link {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (min-width: 1920px) {
  .post-page .content {
    padding: 50px 0;
    max-width: 1800px;
    margin: 0 auto;
    justify-content: center;
  }
  .post-page .content .article {
    width: 60%;
    max-width: 940px;
  }
  .post-page .content .sidebar {
    padding: 0 0 0 50px;
    width: 30%;
    max-width: 500px;
  }
}
.hiring__hero {
  width: 100%;
  background: #053e5e url("/shared/assets/images/png/hiring-header.png") no-repeat center center;
  background-size: cover;
  min-height: 253px;
}
.hiring__hero__title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 34px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  position: relative;
  top: 100px;
}
.hiring__hero__subtitle {
  font-family: "Lato-Regular", sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  top: 95px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hiring__hero__title {
    font-size: 50px;
  }
  .hiring__hero__subtitle {
    font-size: 16px;
    max-width: 391px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .hiring__hero {
    height: 483px;
  }
  .hiring__hero__title {
    top: 196px;
    font-size: 60px;
    line-height: 66px;
    position: relative;
    left: 8px;
  }
  .hiring__hero__subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    color: #fff;
    text-align: center;
    max-width: 391px;
    top: 217px;
    left: 8px;
  }
}
@media screen and (min-width: 1441px) {
  .hiring__hero {
    height: 613px;
  }
  .hiring__hero__title {
    top: 260px;
  }
  .hiring__hero__subtitle {
    top: 280px;
  }
}
.positions {
  background-color: #f7faff;
  height: 100%;
  padding-bottom: 15px;
}
.positions__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1059px;
  width: 100%;
}
.positions__wrapper__title {
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 34px;
  letter-spacing: 0;
  color: #053e5e;
  margin: 10px 0;
}
.positions__wrapper .no-vacancies {
  margin: 109px auto 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.positions__wrapper .no-vacancies__img {
  display: block;
  width: 180px;
  height: 215px;
}
.positions__wrapper .no-vacancies__title {
  margin-top: 25px;
  max-width: 500px;
  text-align: center;
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  color: #053e5e;
}

@media screen and (min-width: 768px) {
  .positions {
    padding-bottom: 60px;
  }
  .positions__wrapper {
    padding: 6px 6px;
  }
  .positions__wrapper__title {
    font-size: 40px;
    margin: 40px 0 50px 0;
  }
}
@media screen and (min-width: 768px) {
  .positions__wrapper .no-vacancies__title {
    font-size: 20px;
  }
}
.positions__card {
  box-shadow: 0 30px 26px 0 rgba(10, 39, 55, 0.06);
  background-color: #fff;
  width: 100%;
  display: flex;
  min-height: 128px;
  margin-bottom: 10px;
  cursor: pointer;
}
.positions__card:hover {
  transition: 0.1s ease-in;
  box-shadow: 10px 20px 26px 15px rgba(10, 39, 55, 0.1);
}
.positions__card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 15px 15px;
  position: relative;
}
.positions__card__content__title {
  font-family: SourceSansPro-Semibold, sans-serif;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.06px;
  color: #053e5e;
}
.positions__card__content__about {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  margin-top: 5px;
}
.positions__card__content__about__subtitle {
  font-family: SourceSansPro-Regular, sans-serif;
  font-size: 16px;
  color: #053e5e;
  margin-bottom: 0;
  padding-left: 20px;
}
.positions__card__content__about__subtitle::before {
  content: "";
  width: 15px;
  height: 20px;
  background: url("/shared/assets/images/svg/gps.svg") no-repeat;
  background-size: contain;
  position: absolute;
  left: -2px;
  top: 4px;
}
.positions__card__content__about__info {
  display: flex;
  margin-top: 10px;
}
.positions__card__content__about__info__subtitle--opacity {
  color: #bababa;
  font-size: 14px;
  font-family: SourceSansPro-Regular, sans-serif;
}
.positions__card__content__about__info__subtitle--opacity:first-child {
  margin-right: 15px;
}
.positions__card__content .positions__wrapper__card__link {
  display: none;
  width: 33px;
  height: 33px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #053e5e;
  right: 27px;
  top: 45px;
  outline: none;
}
.positions__card__content .positions__wrapper__card__link:hover {
  background-color: #e64446;
  transition: 0.2s ease-in;
  border-color: #e64446;
}
.positions__card__content .positions__wrapper__card__link:hover:before {
  background: url("/shared/assets/images/svg/arrow-ic.svg") no-repeat;
}
.positions__card__content .positions__wrapper__card__link:active {
  background-color: #c43133;
  transition: 0.2s ease-in;
  border-color: #c43133;
}
.positions__card__content .positions__wrapper__card__link:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/shared/assets/images/svg/arrow-ic-marine.svg") no-repeat;
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 12;
}
.positions__card__content .positions__wrapper__card__link--open:before {
  transform: rotate(180deg);
}
.positions__card__content .positions__wrapper__card__link--open:hover:before {
  transform: rotate(180deg);
}
.positions__card__content--hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .positions__card__content {
    position: relative;
    padding: 27px 40px;
  }
  .positions__card__content__title {
    font-size: 26px;
    letter-spacing: -0.07px;
    margin-bottom: 14px;
  }
  .positions__card__content__about {
    flex-direction: row;
    margin-top: 0;
  }
  .positions__card__content__about__subtitle {
    margin-right: 46px;
    margin-left: 34px;
    font-size: 18px;
    line-height: 28px;
    position: relative;
    padding-left: 0;
  }
  .positions__card__content__about__subtitle::before {
    width: 20px;
    height: 25px;
    left: -31px;
    top: 4px;
  }
  .positions__card__content__about__info {
    margin-top: 1px;
    justify-content: space-between;
  }
  .positions__card__content__about__info__subtitle--opacity {
    font-size: 18px;
    line-height: 28px;
  }
  .positions__card__content__about__info__subtitle--opacity:first-child {
    margin-right: 30px;
  }
  .positions__card__content .positions__wrapper__card__link {
    display: block;
    width: 66px;
    height: 66px;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #053e5e;
    right: 27px;
    top: 31px;
  }
  .positions__card__content .positions__wrapper__card__link:before {
    content: "";
    width: 23px;
    height: 25px;
    position: absolute;
    top: 20px;
    left: 19px;
  }
}
.embed-container {
  position: relative;
  padding-bottom: 76.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.custom-terms-container {
  padding: 20px 20%;
}
.custom-terms-container .custom-account-terms p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 2.5rem;
}
.custom-terms-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-terms-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-terms-container .custom-account-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}
.custom-terms-container .fortu-image {
  width: 400px;
}
.custom-terms-container p p {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .custom-terms-container {
    padding: 20px 10%;
  }
  .fortu-image {
    width: 200px !important;
  }
}
.custom-terms-container {
  padding: 20px 20%;
}
.custom-terms-container .custom-account-terms p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 2.5rem;
}
.custom-terms-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-terms-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-terms-container .custom-account-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}
.custom-terms-container .fortu-image {
  margin-top: 200px;
  width: 400px;
}
.custom-terms-container .bottom-blank {
  margin-bottom: 400px;
}

@media (max-width: 768px) {
  .custom-terms-container {
    padding: 20px 10%;
  }
  .fortu-image {
    width: 200px !important;
  }
}
.custom-terms-container {
  padding: 20px 20%;
}
.custom-terms-container .custom-account-terms p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 2.5rem;
}
.custom-terms-container .custom-account-terms {
  margin-bottom: 150px;
}
.custom-terms-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-terms-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-terms-container .custom-account-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}
.custom-terms-container .fortu-image {
  width: 300px;
}
.custom-terms-container .bottom-blank {
  margin-bottom: 550px;
}
.custom-terms-container .last-p {
  margin-bottom: 40px !important;
}
.custom-terms-container .note-title {
  font-size: 14px;
  font-style: italic;
}
.custom-terms-container p p {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .custom-terms-container {
    padding: 20px 10%;
  }
  .custom-terms-container .fortu-image {
    width: 200px;
  }
}
.business-page .nav .header__wrapper {
  background: #000;
}
.business-page .nav .header__wrapper a {
  color: #fff;
}
.business-page .nav .header__wrapper a.nav__link_grey {
  color: rgba(255, 255, 255, 0.3);
}
.business-page .nav .header__wrapper a.nav__link_grey:hover {
  color: #fff;
}
.business-page .btn__demo {
  width: 150px;
  height: 44px;
  color: #000 !important;
  background-color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-page .ContactUs .wrapper {
  margin-top: 64px;
}
.business-page .office-address {
  height: 560px;
  width: 100%;
  background: url(/shared/assets/images/9.jpg);
  background-size: 100%;
  position: relative;
}
.business-page .office-address__text {
  position: absolute;
  right: 120px;
  top: 270px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.business-page .our-goal {
  height: 642px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-page .our-goal__text {
  width: 778px;
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
  color: #000;
  text-align: center;
  margin-bottom: 36px;
}
.business-page .persons {
  display: flex;
  justify-content: center;
}
.business-page .person {
  position: relative;
  width: 226px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  color: #000000;
}
.business-page .person__image {
  position: relative;
  margin-right: 23px;
  width: 60px;
}
.business-page .person__image-ico {
  position: absolute;
  bottom: 0;
  right: -4px;
}
.business-page .person__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.4);
}
.business-page .designed {
  display: flex;
  height: 675px;
}
.business-page .designed > div {
  flex: 1;
}
.business-page .designed__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 62px;
}
.business-page .designed__text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.business-page .designed__text-wrap {
  width: 480px;
}
.business-page .designed__image {
  position: relative;
  background: #000;
  background-image: url(/shared/assets/images/team.jpg);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.business-page .designed__image-text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  font-weight: 400;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
}
.business-page .designed__description {
  margin-top: 18px;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 32px;
}
.business-page .designed__logos {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
.business-page .designed .designed__text {
  background-color: #F7F8FA;
}
.business-page .mobile-menu--button {
  color: #fff;
}
.business-page .mobile-menu--button .ico-menu::after, .business-page .mobile-menu--button .ico-menu::before {
  background: #fff;
}
.business-page .saas {
  background: #000000;
  padding: 144px 0;
  color: #fff;
}
.business-page .saas__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 62px;
  text-align: center;
  margin-bottom: 96px;
}
.business-page .saas__items {
  display: flex;
  grid-column-gap: 43px;
}
.business-page .saas__item-title {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 40px;
}
.business-page .saas__item-description {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  width: 267px;
}
.business-page .saas__item-img {
  margin-bottom: 40px;
}
.business-page .privat-banks {
  display: flex;
  height: 720px;
}
.business-page .privat-banks > div {
  flex: 1;
}
.business-page .privat-banks__items {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(/shared/assets/images/privat-banks__items.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
}
.business-page .privat-banks__items-wrap {
  text-align: center;
}
.business-page .privat-banks__items-wrap * {
  display: inline-block;
}
.business-page .privat-banks__border-item {
  border: 1px solid #000000;
  border-radius: 66px;
  width: 480px;
  height: 84px;
  margin-bottom: 14px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 30px;
}
.business-page .privat-banks__border-item:first-child {
  margin-top: 0;
}
.business-page .privat-banks__border-item:last-child {
  margin-bottom: 0;
}
.business-page .privat-banks .designed__description {
  margin-bottom: 0;
}
.business-page .main-box {
  height: 760px;
  background: #000;
  color: #fff;
  display: flex;
  position: relative;
  overflow: hidden;
}
.business-page .main-box__left {
  position: relative;
  flex: 1;
  z-index: 1;
}
.business-page .main-box__title {
  font-weight: 400;
  font-size: 68px;
  line-height: 78px;
  position: absolute;
  left: 120px;
  top: 120px;
  width: 700px;
}
.business-page .main-box__description {
  position: absolute;
  left: 324px;
  top: 398px;
  width: 496px;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
}
.business-page .main-box__image {
  width: 556px;
  min-width: 556px;
  background-image: url(/shared/assets/images/main-business.jpg);
  background-position: 0 40px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  z-index: 1;
}
.business-page .main-box__scroll-btn {
  position: absolute;
  left: 40px;
  bottom: 120px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.3);
  transform: rotate(-90deg);
  display: flex;
  z-index: 1;
}
.business-page .main-box__scroll-btn svg {
  transform: rotate(90deg);
  margin-right: 7px;
}
.business-page .main-box .btn__demo {
  height: 48px;
  width: 154px;
  margin-top: 32px;
}
.business-page .main-box .bg-main {
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  width: 1180px;
  height: 516px;
  left: 260px;
  bottom: 0;
}
@media (min-width: 320px) and (max-width: 1300px) {
  .business-page .privat-banks, .business-page .saas__items, .business-page .main-box {
    display: block;
  }
  .business-page .designed__text-wrap, .business-page .our-goal__text, .business-page .privat-banks__border-item {
    width: 100%;
  }
  .business-page .privat-banks {
    padding-top: 64px;
    height: auto;
  }
  .business-page .designed__text {
    padding: 0 24px 40px;
  }
  .business-page .designed__description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    margin-top: 14px;
  }
  .business-page .vertical-line {
    border: 0;
  }
  .business-page .privat-banks__items {
    display: block;
    height: 479px;
  }
  .business-page .privat-banks__border-item {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
  }
  .business-page .designed__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
  }
  .business-page .bg-main {
    display: none;
  }
  .business-page .main-box {
    overflow: visible;
    height: auto;
  }
  .business-page .main-box__left {
    padding: 40px 24px 64px 24px;
  }
  .business-page .main-box__title, .business-page .main-box__description {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
  }
  .business-page .main-box__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    text-align: center;
  }
  .business-page .main-box__description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    margin-top: 12px;
  }
  .business-page .main-box__scroll-btn {
    display: none;
  }
  .business-page .main-box__image {
    min-width: auto;
    width: 100%;
    height: 482px;
    background-position: center;
    background-size: cover;
  }
  .business-page .main-box .btn__demo {
    width: 100%;
    height: 52px;
    margin-top: 26px;
  }
  .business-page .saas {
    padding: 64px 0;
  }
  .business-page .saas__title {
    font-weight: 400;
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 56px;
    padding: 0 24px;
  }
  .business-page .saas__item-title {
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }
  .business-page .saas__item-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    width: 100%;
    margin-bottom: 52px;
  }
  .business-page .saas__item-img {
    text-align: center;
    margin-bottom: 24px;
  }
  .business-page .designed {
    display: block;
    height: auto;
  }
  .business-page .designed__image {
    width: 100%;
    height: 375px;
  }
  .business-page .designed__logos {
    justify-content: center;
  }
  .business-page .designed .designed__text {
    padding: 64px 24px;
  }
  .business-page .our-goal {
    height: auto;
    display: block;
    padding: 144px 24px;
  }
  .business-page .our-goal__text {
    font-weight: 400;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
  }
  .business-page .our-goal .persons {
    display: block;
    text-align: center;
  }
  .business-page .our-goal .persons .person {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .business-page .our-goal .persons .person__image {
    margin: 0 0 20px 0;
  }
  .business-page .our-goal .persons .person__info {
    width: 100%;
  }
  .business-page .office-address {
    height: 440px;
    background-size: auto 100%;
    background-position: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .business-page .office-address__text {
    position: relative;
    right: auto;
    top: auto;
  }
  .business-page .mobile-menu--list {
    background-color: #000;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  .business-page .designed__text {
    padding: 88px 104px 72px;
  }
  .business-page .privat-banks__items {
    height: 563px;
  }
  .business-page .saas__items {
    text-align: center;
  }
  .business-page .saas__item-description {
    max-width: 316px;
    display: inline-block;
  }
  .business-page .main-box__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    font-size: 60px;
    line-height: 68px;
  }
  .business-page .main-box__description {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 30px;
  }
  .business-page .main-box .btn__demo {
    margin-left: auto;
    margin-right: auto;
    width: 154px;
    margin-top: 28px;
  }
  .business-page .main-box__image {
    width: 490px;
    height: 635px;
    margin-left: auto;
    margin-right: 0;
  }
  .business-page .main-box__left {
    padding-bottom: 72px;
  }
  .business-page .main-box__scroll-btn {
    display: flex;
    left: -20px;
  }
  .business-page .designed__title {
    font-size: 48px;
    line-height: 62px;
  }
  .business-page .designed__text {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .business-page .designed__title, .business-page .designed__description, .business-page .our-goal__text {
    margin-left: auto;
    margin-right: auto;
    width: 560px;
  }
  .business-page .designed__description {
    margin-top: 16px;
  }
  .business-page .privat-banks {
    padding: 0;
  }
  .business-page .saas {
    padding: 88px 0;
  }
  .business-page .saas__title {
    margin-bottom: 64px;
  }
  .business-page .saas__item-img {
    margin-bottom: 32px;
  }
  .business-page .saas__item-title {
    margin-bottom: 8px;
  }
  .business-page .saas__item-description {
    margin-bottom: 56px;
  }
  .business-page .designed__image {
    height: 499px;
    background-size: cover;
  }
  .business-page .our-goal__text {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 28px;
  }
  .business-page .our-goal {
    padding: 259px 0;
  }
  .business-page .our-goal .persons .person {
    flex-wrap: nowrap;
  }
  .business-page .our-goal .persons .person .person__image {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .business-page .our-goal .persons .person .person__info {
    width: auto;
  }
  .business-page .office-address {
    height: 499px;
  }
  .business-page .office-address__text {
    top: 270px;
    right: 48px;
    position: absolute;
  }
}
.custom-usage-container {
  padding: 20px 20%;
  font-size: 14px;
}
.custom-usage-container h3 {
  color: rgba(59, 28, 61, 0.9);
}
.custom-usage-container .chapter p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 22px;
}
.custom-usage-container .custom-ul-li-filled li {
  list-style-type: circle;
}

.title-text {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 22px;
}

.text-uppercase {
  text-transform: uppercase;
}

.sub-line {
  margin-left: 30px;
}

.sub-sub-line {
  margin-left: 60px;
}

.modal__window__content .custom-usage-container > div {
  background-color: #fff;
  margin: 0 auto;
}
.modal__window__content .custom-usage-container > div * {
  font-size: 14px;
}

.modal__window__content .custom-usage-container {
  width: 100%;
  padding: 0;
}

@media (max-width: 768px) {
  .custom-usage-container {
    padding: 20px 10%;
  }
}
.custom-policy-container {
  padding: 20px 20%;
}
.custom-policy-container .custom-order-execution p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 2.5rem;
}
.custom-policy-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-policy-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-policy-container .custom-order-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .custom-policy-container {
    padding: 20px 10%;
  }
}
.custom-policy-container {
  padding: 20px 20%;
}
.custom-policy-container .custom-fortu-wealth p:first-child,
.custom-policy-container .custom-personal-data p:first-child,
.custom-policy-container .custom-international-transfers p:first-child,
.custom-policy-container .custom-keep-personal-data p:first-child,
.custom-policy-container .custom-confidentiality-security p:first-child,
.custom-policy-container .custom-your-rights p:first-child,
.custom-policy-container .custom-cookies-box p:first-child,
.custom-policy-container .custom-how-and-why-use-cookies p:first-child,
.custom-policy-container .custom-using-browser p:first-child,
.custom-policy-container .custom-regularly-review p:first-child,
.custom-policy-container .custom-contact-us p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
}
.custom-policy-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-policy-container .custom-use-personal-data p:first-child,
.custom-policy-container .custom-share-data p:first-child,
.custom-policy-container .custom-subject-access-rights p:first-child,
.custom-policy-container .custom-other-websites p:first-child,
.custom-policy-container .custom-transfers-your-personal-data p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
}
.custom-policy-container .custom-cookies-box .custom-use-of-cookies {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
}
.custom-policy-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-policy-container .custom-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
}

@media (max-width: 768px) {
  .custom-policy-container {
    padding: 20px 10%;
  }
}
.custom-usage-container {
  padding: 20px 20%;
}
.custom-usage-container h3 {
  color: rgba(59, 28, 61, 0.9);
}
.custom-usage-container .chapter p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 22px;
}
.custom-usage-container .custom-ul-li-filled li {
  list-style-type: circle;
}

@media (max-width: 768px) {
  .custom-usage-container {
    padding: 20px 10%;
  }
}
.custom-policy-container {
  padding: 20px 20%;
}
.custom-policy-container .custom-wealth-terms p:first-child {
  color: rgba(59, 28, 61, 0.9);
  font-weight: bold;
  font-size: 2.5rem;
}
.custom-policy-container .custom-color-violet {
  color: rgba(59, 28, 61, 0.9);
}
.custom-policy-container .custom-ul-li-filled li {
  list-style-type: circle;
}
.custom-policy-container .custom-wealth-bold-headers ol div > li {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}
.custom-policy-container .fortu-image {
  width: 400px;
}
.custom-policy-container .last-p {
  margin-bottom: 24px !important;
}
.custom-policy-container .trading-top-gap {
  margin-top: 200px;
  margin-top: 700px;
}
.custom-policy-container .trading-gap {
  margin-top: 200px;
  margin-bottom: 500px;
}
.custom-policy-container .schedule-p {
  font-weight: bold;
  color: rgba(59, 28, 61, 0.9);
  font-size: 1.2rem;
}
.custom-policy-container p p {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .custom-policy-container {
    padding: 20px 10%;
  }
}
