* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}
body {
  position: relative;
}
.reg-form-block .form-title {
  margin-top: 16px;
  color: #000;
  font-family: Satoshi;
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
}
.reg-form-block h3 {
  color: #38414e;
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 28px;
}
.header-container {
  width: 100%;
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
header {
  width: 100%;
  background-color: #fff;
  border-radius: 64px;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 40px;
  a {
    text-decoration: none;
    color: #000;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    border-bottom: 3px solid transparent;
    transition: all 0.5s linear;
  }
  a.active,
  a:hover {
    border-bottom: 3px solid #2671cb;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: 12px;
  padding-inline: 16px 20px;
  p {
    color: #000;
    font-family: Satoshi;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
  }
}
.container {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 0px;
}
.hero {
  min-height: 100vh;
  background-image: url("/img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.get-started-button {
  text-decoration: none;
  cursor: pointer;
  border-radius: 66px;
  padding-block: 6px;
  padding-inline: 6px 20px;
  background: #0b0b0b;
  box-shadow: 0 4px 5px 0 rgba(255, 255, 255, 0.25) inset;
  display: flex;
  align-items: center;
  gap: 12px;
  p {
    color: #fff;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .arrow {
    overflow: hidden;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 48px;
    border: 0.192px solid #6e6e6e;
    background: #131313;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
  }
  .arrow .arrow-svg {
    transition: transform 0.3s ease-in-out;
  }
}
.get-started-button:hover .arrow svg,
.talk-expert-button:hover .arrow svg {
  animation: flyArrow 0.5s forwards;
}
.arrow-between-cards .arrow svg {
  animation: none !important;
}
.get-started-button .arrow .menu-svg {
  display: none;
}
@keyframes flyArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(30px);
    opacity: 0;
  }
  50% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.mobile-menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 16px;
  z-index: 200;
}
.mobile-menu {
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  padding: 6px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.mobile-menu .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu .mobile-arrow-svg,
.mobile-menu .btn-title-mobile {
  display: block !important;
}
.mobile-menu-container.active {
  display: flex;
}
.mobile-menu .center {
  padding-inline: 10px;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  overflow: scroll;

  .navigation {
    width: 100%;
  }
  .navigation nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
  }
  .nav-company {
    gap: 16px !important;
  }
  .navigation nav .links {
    color: #000;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1.4px solid #2671cb;
  }
  .nav-title {
    color: #2671cb;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .nav-item-title {
    color: #000;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
  }
  .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-item .arrow-up {
    background: #2671cb;
    border-radius: 50px;
    border: 0.125px solid #d3d3d3;
    box-shadow: 0 0 6.4px 0 rgba(255, 255, 255, 0.15) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
}
.mobile-menu .bottom {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-inline: 10px;
  gap: 20px;
  .get-started-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-inline: 20px 6px;
  }
  .bottom-p {
    color: #657791;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
  }
}
footer {
  padding-block: 150px 40px;
  overflow: hidden;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  position: relative;
}
.title-icon-block {
  width: fit-content;
  padding-block: 6px;
  padding-inline: 6px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 149px;
  border: 1px solid #e3ecf5;
  background: #fff;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
  .icon {
    width: 48px;
    height: 48px;
    background: #2671cb;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
    padding: 12px;
    border-radius: 100%;
  }
  .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .title {
    color: #000;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
  }
}

.reg-form-block {
  grid-column: span 4;
  background-image: url("/img/form-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  backdrop-filter: blur(6px);
  min-height: 610px;
  padding: 32px;
  z-index: 3;

  .title-icon-block {
    background: #f4f8fc !important;
  }
}
.footer-nav {
  grid-column: span 8;
  border-radius: 32px;
  background: #f4f8fc;
  position: relative;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-image: url("/img/footer-nav-bg.png");
  background-position: right bottom;
  background-size: 40vw auto;
  background-repeat: no-repeat;
  img {
    position: absolute;
    top: -80px;
    right: 46px;
  }
  .bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .bottom .left p {
    color: #38414e;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
  }
  .bottom .right {
    display: flex;
    align-items: start;
    flex-direction: column;
    padding-right: 14px;
  }
  .bottom .right .make-decisions-p {
    color: #000;
    text-align: center;
    -webkit-text-stroke-width: 0.54px;
    -webkit-text-stroke-color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
    text-align: left;
  }
  .bottom .right .invest-p {
    color: #2671cb;
    -webkit-text-stroke-width: 0.54px;
    -webkit-text-stroke-color: #2671cb;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
  }
  .bottom .right .secure-p {
    color: #38414e;
    font-family: Satoshi;
    font-size: 22px;
    font-weight: 500;
    line-height: 120%;
    margin-top: 12px;
  }
  .top {
    display: flex;
    align-items: start;
    gap: 66px;
  }
  .top .nav-title {
    color: #2671cb;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 16px;
  }
  .top nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .top nav a {
    color: #000;
    font-family: Satoshi;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: none;
  }
  .top nav a.active {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-color: #2671cb;
    text-decoration-thickness: 7%;
    text-underline-offset: 13%;
    text-underline-position: from-font;
  }
}

.footer-bottom {
  position: relative;
  grid-column: span 12;
  border-radius: 32px;
  background: #f4f8fc;
  padding-inline: 32px;
  background-image: url("/img/footer-bottom-bg.png");
  background-position: right bottom;
  background-size: 40vw 100%;
  background-repeat: no-repeat;
  .content {
    padding-block: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-block: 32px;
  }
  p {
    color: #38414e;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
  }
}
.designed {
  background-image: url("/img/designed-block.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.designed-block {
  padding-block: 200px;
  display: flex;
  align-items: top;
  justify-content: center;
  gap: 152px;
  .shield {
    padding-block: 48px;
    object-fit: contain;
  }
}
.designed-info-block {
  max-width: 638px;
  .title-icon-block {
    background: #fff;
  }
  .get-started-button {
    width: fit-content;
  }

  .context {
    color: #38414e;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 64px;
    margin-top: 12px;
  }
}
.main-section-title {
  .section-title,
  h3 {
    color: #000;
    -webkit-text-stroke-width: 0.54px;
    -webkit-text-stroke-color: #000;
    font-family: Satoshi;
    font-size: 58px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
    text-align: left;
  }
  h3 {
    color: #2671cb !important;
    -webkit-text-stroke-color: #2671cb !important;
  }
  .section-title {
    margin-top: 32px;
  }
  .subtitle {
    display: flex;
    align-items: center;
    column-gap: 16px;
    flex-wrap: wrap;
    row-gap: 0px;
  }
  .icons {
    border-radius: 14px;
    border: 0.138px solid #d3d3d3;
    background: #2671cb;
    box-shadow: 0 0 7px 0 rgba(255, 255, 255, 0.15) inset;
    padding: 10px 17px;
    height: 48px;
  }
}
.powerful-tools-block {
  padding-block: 150px 128px;

  .ptb-content {
    display: flex;

    gap: 20px;
    margin-top: 64px;
  }
  .ptb-menu {
    flex: 3;
  }
  .ptb-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 130px;
  }
  .ptb-cards {
    flex: 9;
  }
  .ptb-menu-item {
    padding: 12px 20px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.5s linear;
  }
  .ptb-menu-item.active {
    background: #2671cb;
    svg path {
      fill: #fff;
    }
    p {
      color: #fff;
    }
  }
  .ptb-menu-item p {
    color: #000;
    text-align: justify;
    font-family: Satoshi;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
  }
  .ptb-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .ptb-card {
    display: flex;
    border-radius: 32px;
    border: 1px solid #e3ecf5;
    background: #f4f8fc;
    position: sticky;
    top: 130px;
  }
  .ptb-card-info {
    padding: 32px;
    min-width: 390px;
  }
  .ptb-card img {
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    object-fit: cover;
  }
  .ptb-card-title {
    color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
    margin-bottom: 28px;
  }
  .ptb-card-subtitle {
    color: #38414e;
    font-family: Satoshi;
    font-size: 22px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 28px;
  }
  .ptb-card-info .icon-container {
    border-radius: 150px;
    border: 1px solid #e3ecf5;
    background: #f4f8fc;
    box-shadow:
      0 8px 15px 0 rgba(0, 50, 172, 0.1),
      0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
    padding: 6px;
    max-width: fit-content;
    margin-bottom: 20px;
  }
  .ptb-card-info .icon-block {
    background: #2671cb;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
    padding: 12px;
    border-radius: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
  }
  .ptb-card-list {
    list-style: none;
    padding-left: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    li {
      color: #38414e;
      font-family: Satoshi;
      font-size: 16px;
      font-weight: 500;
      line-height: 120%;
      position: relative;
    }
  }
  .ptb-card-list li::before {
    content: "";
    display: block;
    height: 100%;
    width: 4px;
    border-radius: 3px;
    background: #2671cb;
    top: 0;
    left: -20px;
    position: absolute;
  }
  .ptb-card-list::before {
    content: "";
    display: block;
    height: 100%;
    width: 4px;
    border-radius: 149px;

    background: #f4f8fc;
    box-shadow:
      0 8px 15px 0 rgba(0, 50, 172, 0.1),
      0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
    top: 0;
    left: 0px;
    position: absolute;
  }
}

.calculator-section {
  background-image: url("/img/calculator-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.calc-block {
  padding-block: 150px 138px;
  max-width: 1034px;
  display: flex;
  align-items: center;
  flex-direction: column;
  .title-icon-block {
    margin-bottom: 32px;
  }
  .main-section-title {
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
    h2 {
      margin-top: 0px;
    }
  }
  .under-title {
    color: #38414e;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 106px;
  }
  .calculator {
    width: 100%;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .info-part {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .info-part .info-title {
    color: #000;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .slider-description,
  .top-slider-description {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    p {
      color: #38414e;
      text-align: justify;
      font-family: Satoshi;
      font-size: 18px;
      font-weight: 500;
      text-transform: capitalize;
    }
  }
  .anount-block input {
    border-radius: 8px;
    border: 1px solid #d8e3f1;
    background: #f4f8fc;
    width: 100%;
    box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
    padding: 12px;
    color: #000;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .change-perion-block {
    position: relative;
  }
  .change-perion-block .active-block {
    margin-bottom: 16px;

    border-radius: 8px;
    border: 1px solid #d8e3f1;
    background: #f4f8fc;
    width: 100%;
    padding: 12px;
    box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    p {
      color: #000;
      font-family: Satoshi;
      font-size: 24px;
      font-weight: 500;
    }
  }
  .change-perion-block .unactive-block {
    border-radius: 8px;
    border: 1px solid #d8e3f1;
    background: #2671cb;
    padding: 12px;
    width: 100%;

    box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
    p {
      color: #fff;
      font-family: Satoshi;
      font-size: 24px;
      font-weight: 500;
    }
  }
  .apc-arrow {
    transform: rotate(0deg);
    transition: transform 0.2s linear;
  }
  .apc-arrow.down {
    transform: rotate(180deg);
  }
  .unactive-blocks {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 8px));
    z-index: 10;
    transition:
      opacity 0.3s linear,
      visibility 0.3s;
  }

  .unactive-blocks.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .top-slider-description {
    display: flex !important;
  }
  .slider-description {
    display: none;
  }

  .slider-description.active {
    display: flex;
  }

  .slider-wrapper {
    width: 100%;
  }

  .custom-track {
    width: 100%;
    height: 12px;
    border-radius: 15px;
    background: linear-gradient(
      270deg,
      #f9fafa 96.37%,
      rgba(197, 216, 238, 0.83) 97.12%,
      rgba(181, 206, 235, 0.84) 97.33%,
      #2772cb 100%
    );
    position: relative;
    cursor: pointer;
    margin-bottom: 8px;
  }

  .fill {
    height: 100%;
    width: 0%;
    border-radius: 15px;
    background: linear-gradient(
      270deg,
      #f9fafa 0.08%,
      rgba(197, 216, 238, 0.83) 7.16%,
      #2772cb 100%
    );
    position: absolute;
  }

  .thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
  }
  .buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .buttons a {
    width: fit-content;
  }
  .buttons .talk-expert-button {
    border-radius: 101px;
    background: #2671cb;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
  }
  .buttons .talk-expert-button .arrow {
    background: #2671cb;

    border: 0.15px solid #d3d3d3;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
  }
  .chart-part {
    grid-column: span 1;
    border-radius: 20px;
    border: 0.1px solid #d3d3d3;
    background: #5e96d8;
    box-shadow: 0 0 7px 0 rgba(255, 255, 255, 0.15) inset;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .chart-part .time-block {
    border-radius: 12px;
    border: 0.704px solid #e3ecf5;
    background: #fff;
    padding: 6px;
    box-shadow:
      0 5.63px 10.556px 0 rgba(0, 50, 172, 0.1),
      0 0 8.444px 0 rgba(0, 50, 172, 0.1) inset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    p {
      color: #000;
      font-family: Satoshi;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.5s ease;
    }
    .active-theme {
      display: block;
      color: #fff;
      font-family: Satoshi;
      text-align: center;
      font-size: 18px;
      font-weight: 500;
      border-radius: 8px;
      background: #0b0b0b;
      padding: 6px 16px;
      box-shadow: 0 1.407px 8.444px 0 rgba(255, 255, 255, 0.25) inset;
    }
  }
  .chart-part .time-bar {
    display: none;
    align-items: center;
    justify-content: space-between;
    p {
      color: #3a3a3a;
      font-family: Satoshi;
      font-size: 12px;
      font-weight: 400;
    }
  }
  .chart-part .time-bar.active {
    display: flex;
  }

  .chart-block {
    min-height: 342px;
    background-image: url("/img/chart-low.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    .description,
    .time {
      z-index: 10;
    }
  }
  .chart-block::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/img/chart-high.png");
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  .chart-block.img-high::before {
    opacity: 1;
  }
  .chart-block .total-title {
    color: #000;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
  .chart-block .total {
    color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .chart-block .selected-days {
    border-radius: 8px;
    background: #0b0b0b;
    box-shadow: 0 1.407px 8.444px 0 rgba(255, 255, 255, 0.25) inset;
    padding: 6px 8px;
    color: #fff;
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14.778px;
    display: block;
    max-width: fit-content;
  }
  .chart-block .description {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-inline: 8px;
    padding-top: 10px;
  }
  .chart-block .percents {
    display: block;
    max-width: fit-content;
    padding: 6px;
    border-radius: 8px;
    border: 0.138px solid #d3d3d3;
    background: #2671cb;
    box-shadow: 0 0 7px 0 rgba(255, 255, 255, 0.15) inset;
    color: #fff;
    font-family: Satoshi;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
  }
}
.build-simplify-section {
  padding-block: 150px;
  overflow-x: hidden;
  .bs-cards-container {
    margin-top: 64px;
    width: 100%;
  }
  .bs-cards-wrapper {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    padding-right: 50px;
  }
  .bs-card-item {
    flex-shrink: 0;
    min-width: 770px !important;
    max-height: fit-content;
    padding: 32px;
    border-radius: 32px;
    background: #2671cb;
    box-shadow:
      0 175px 49px 0 rgba(0, 50, 172, 0),
      0 112px 45px 0 rgba(0, 50, 172, 0.01),
      0 63px 38px 0 rgba(0, 50, 172, 0.05),
      0 28px 28px 0 rgba(0, 50, 172, 0.09),
      0 7px 15px 0 rgba(0, 50, 172, 0.1);
  }
  .main-section-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    .section-title {
      margin-top: 0px;
    }
  }
  .card-stat-title h4 {
    color: #fff;
    font-family: Satoshi;
    font-size: 156px;
    font-weight: 700;
    line-height: 120%;
    position: relative;
  }
  .section-subtitle {
    color: #38414e;
    font-family: Satoshi;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    max-width: 742px;
    margin-top: 12px;
  }
  .card-stat-title p {
    color: #fff;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
  }
  .bs-card-item:nth-child(2) {
    background: #5e96d8;
    margin-top: 148px;
  }
  .bs-card-item:nth-child(3) {
    background: #f4f8fc;
    margin-top: 74px;
    p,
    h4,
    h4:after {
      color: #2671cb !important;
    }
    .card-picture {
      background: #2671cb;
    }
  }
  .bs-card-item:nth-child(4) {
    background-color: none;
    background-image: url(/img/card4-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 42px;
    .get-started-button {
      max-width: fit-content;
    }
    .white-small {
      border-radius: 149px;
      border: 1px solid #e3ecf5;
      background: #f4f8fc;
      box-shadow:
        0 8px 15px 0 rgba(0, 50, 172, 0.1),
        0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
      padding: 4px 12px 4px 4px;
    }
    .white-small .btn-title {
      color: #000;
      font-family: Satoshi;
      font-size: 16px;
      font-weight: 500;
      text-transform: capitalize;
    }
    .white-small .arrow {
      padding: 8px;
      background: #2671cb;
      height: 32px;
      width: 32px;
    }
    h4 {
      color: #fff;
      font-family: Satoshi;
      font-size: 32px;
      font-weight: 500;
      line-height: 120%;
      text-transform: capitalize;
      margin-bottom: 6px;
    }
    .content p {
      color: #fff;
      font-family: Satoshi;
      font-size: 18px;
      font-weight: 500;
      line-height: 21px;
      max-width: 406px;
    }
    img {
      position: absolute;
      bottom: 0;
      right: 32px;
      max-width: 238px;
    }
  }
  .bs-card-item:nth-child(1),
  .bs-card-item:nth-child(3) {
    .card-stat-title h4:after {
      content: "+";
      font-size: 76px;
      position: absolute;
      right: -45px;
      top: -40px;
      z-index: 3;
      color: white;
    }
  }
  .bs-card-item .card-description {
    margin-top: 86px;
    color: #fff;
    font-family: Satoshi;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    max-width: 476px;
  }
  .bs-card-item .card-picture {
    max-width: 132px;
    padding: 32px;
    margin-block: 30px 20px;
    margin-inline: 24px;
    border-radius: 100%;
    border: 1px solid #d3d3d3;
    box-shadow: 0 0 21.12px 0 rgba(255, 255, 255, 0.15) inset;
  }
  .bs-card-item .card-top-part {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
}

.simple-path-section {
  padding-block: 150px;
}
.simple-path-section .title-icon-block {
  margin-inline: auto;
  margin-bottom: 32px;
}
.simple-path-section .section-title {
  margin-top: 0px;
}
.simple-path-section .main-section-title {
  display: flex;
  column-gap: 16px;
  align-items: center;
  margin-inline: auto;
  flex-wrap: wrap;
  max-width: 720px;
  justify-content: center;
}
.simple-path-section .under-title {
  color: #38414e;
  text-align: center;
  font-family: Satoshi;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  max-width: 606px;
  margin-inline: auto;
  margin-top: 12px;
  margin-bottom: 64px;
}
.simple-cards-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.simple-card {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  background: #fff;
  padding: 20px 32px;
  grid-column: span 1;
  min-height: 434px;
  gap: 8px;
  box-shadow:
    0 175px 49px 0 rgba(0, 50, 172, 0),
    0 112px 45px 0 rgba(0, 50, 172, 0.01),
    0 63px 38px 0 rgba(0, 50, 172, 0.05),
    0 28px 28px 0 rgba(0, 50, 172, 0.09),
    0 7px 15px 0 rgba(0, 50, 172, 0.1);
  transition: all 0.7s linear;
}
.simple-card img {
  max-height: 260px;
  max-width: 100%;
  z-index: 10;
}
.simple-card .center-ellips {
  max-width: 404px;
  max-height: 232px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(38, 113, 203, 0.4);
  filter: blur(50px);
  border-radius: 100%;
}
.simple-card.active-card {
  border-radius: 32px;
  background: #2671cb;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  .simple-card-description {
    color: white;
  }
}
.simple-card.active-card .center-ellips {
  background: rgba(255, 255, 255, 0.6);
  filter: blur(50px);
}
.simple-card .talk-expert-button,
.simple-card .talk-expert-button .arrow {
  background: #2671cb;
  box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
  border: 0.192px solid #d3d3d3 !important;
}
.card-title-icon-block .icon {
  padding: 0px !important;
}
.card-title-icon-block p {
  color: #fff;
  text-align: center;
  font-family: Satoshi;
  font-size: 32px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 150%;
}
.simple-card-description {
  color: #38414e;
  text-align: center;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  max-width: 374px;
  margin-inline: auto;
}
.arrow-between-cards {
  display: none;
  padding: 16px;
  border-radius: 100%;
  z-index: 10;
  background: #f4f8fc;
  box-shadow: 0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
}
.arrow-between-cards .arrow {
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2671cb;
  border-radius: 100%;
}
.simple-arrow-block {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(64%, -50%);
  padding: 16px;
  border-radius: 100%;
  z-index: 10;
  background: #f4f8fc;
  box-shadow: 0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
}
.simple-arrow-block .arrow {
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2671cb;
  border-radius: 100%;
}
.card-title-icon-block {
  margin-bottom: 0px !important;
}
.simple-path-section .main-section-title.tablet {
  display: none;
}
.simple-path-section .main-section-title .subtitle {
  justify-content: center;
}
.hero-container {
  padding-block: 92px 82px;
}
.spots-block {
  border-radius: 0 0 20px 20px;
  background: #2671cb;
  max-width: 726px;
  margin-inline: auto;
  padding: 32px 10px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.spots-block .subtitle {
  color: #fff;
  font-family: "SF Mono";
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.spots-block .count {
  color: #2671cb;
  font-family: "SF Mono";
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
}
.hero .main-section-title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 830px;
  margin-inline: auto;
  margin-top: 32px;
  margin-bottom: 12px;
  h2 {
    margin-top: 0px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero .phone {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin-inline: auto;
}
.hero .main-section-title .icons img {
  width: 40px;
  height: 38px;
}
.hero .main-section-title .icons {
  height: auto;
}
.hero .under-title {
  color: #38414e;
  text-align: center;
  font-family: Satoshi;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  max-width: 518px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.hero .buttons {
  margin-bottom: 126px;
}
.people-cards-block {
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  padding: 16px;
  max-width: 376px;
  min-width: 202px;
  flex: 1;
}
.people-card {
  min-height: 314px;
  background-image: url("/img/people-card1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: 10px;
  padding-block: 10px 14px;
  border-radius: 20px;
  transition: all 0.5s ease;
}
.people-card .top-name-part {
  display: flex;
  padding: 2px 5px 2px 2px;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  border: 1px solid #e3ecf5;
  background: #fff;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
  max-width: fit-content;
  .icon {
    width: 20px;
    height: 20px;
    background: #2671cb;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.people-card .p-name {
  color: #000;
  text-align: justify;
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 500;
}
.hero-content-block {
  max-width: 1044px;
  margin-inline: auto;
  position: relative;
  z-index: 11;
}
.p-quote-block {
  border-radius: 20px;
  border: 1px solid #e3ecf5;
  background: #fff;
  box-shadow:
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset,
    0 8px 15px 0 rgba(0, 50, 172, 0.1);
  padding-inline: 10px;
  padding-block: 12px 10px;
  position: relative;
  img {
    position: absolute;
    left: -10px;
    top: -44px;
    opacity: 0.5;
  }
}
.p-quote-block .quote {
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: Satoshi;
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-indent: 46px;
}
.hero-content-block {
  display: flex;
  align-items: start;
  gap: 294px;
}
.hero-chart-block {
  margin-top: 170px;
  border-radius: 32px;
  background: #fff;
  padding: 8px;
  flex: 1;
  max-width: fit-content;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
}
.hero .buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  a {
    max-width: fit-content;
  }
  a.talk-expert-button {
    background: #2671cb;
    .arrow {
      background: #2671cb;
      box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
      border: 0.15px solid #d3d3d3;
    }
  }
}
#chart-img {
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
  width: 100%;
}
.hero .tablet {
  display: none;
}
.hero .desktop {
  display: block;
}
.hero .mobile {
  display: none;
}
.trusted-insights-section {
  padding-block: 150px;
}
.trusted-insights-section .title-icon-block {
  margin-inline: auto;
  margin-bottom: 32px;
}
.trusted-insights-section .main-section-title {
  display: flex;
  align-items: center;
  column-gap: 16px;
  max-width: 702px;
  margin-inline: auto;
  flex-wrap: wrap;
  justify-content: center;
  h2 {
    margin-top: 0px;
  }
}
.trusted-insights-section .under-title {
  color: #38414e;
  text-align: center;
  font-family: Satoshi;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  max-width: 568px;
  margin-inline: auto;
  margin-top: 12px;
  margin-bottom: 64px;
}
.tis-content-main {
  display: grid;
  max-width: 1296px;
  margin-inline: auto;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.tis-content-main .auto-invest-block {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
}
.auto-invest-block .graphic-block {
  min-height: 212px;
  position: relative;
  overflow: hidden;
}
.auto-invest-block .graphic-block img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 8;
}
.data-flow {
  position: absolute;
  inset: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 7;
  display: flex;
  justify-content: space-around;
}
.data-flow-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  p {
    color: #2670cbc5;
    font-family: "SF Mono";
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
  }
}
.data-flow-column.betw {
  justify-content: space-between;
}

.auto-invest-block .ps {
  color: #38414e;
  font-family: Satoshi;
  font-size: 14px;
  font-weight: 500;
}
.tis-content-main .button-top {
  display: flex;
  height: 60px;
  width: 60px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  border-radius: 149px;
  border: 1px solid #e3ecf5;
  background: #f4f8fc;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
  .pic {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2671cb;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
    border: 0.15px solid #d3d3d3;
    border-radius: 100%;
    padding: 12px;
  }
  .pic img {
    width: 100%;
  }
}
.auto-invest-block .top-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auto-invest-block .left-part {
  h3 {
    color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
  }
  p {
    color: #000;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
  }
}
.total-revenue-block {
  grid-column: span 3;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.total-revenue-block .left-part {
  p {
    color: #000;
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
  }
  h3 {
    color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
  }
}
.total-revenue-block .top-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.total-revenue-block .graph-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex: 7;
}
.total-revenue-block .graph {
  overflow: hidden;

  max-height: 214px;
  height: 100%;
  background-image: url("/img/tis-graph-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex: 8;
  align-items: flex-end;
  gap: 8px;
  justify-content: space-between;
  .graph-column {
    flex: 1;
    width: 100%;
    border-radius: 12px;
    background: #d5e4f5;
  }
}
.total-revenue-block .graph .graph-column:nth-child(1) {
  height: 24%;
}
.total-revenue-block .graph-column:nth-child(2) {
  height: 62%;
}
.total-revenue-block .graph-column:nth-child(3) {
  height: 48%;
}
.total-revenue-block .graph-column:nth-child(4) {
  height: 78%;
}
.total-revenue-block .graph-column:nth-child(5) {
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, #2772cb 0.18%, #d5e4f5 99.82%);
}

.total-revenue-block .graph-block .legend {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  flex: 1;
  p {
    color: #3a3a3a;
    font-family: Satoshi;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 12.226px;
  }
  p.active {
    color: #fff;
    font-family: Satoshi;
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
    background: #0b0b0b;
    box-shadow: 0 1.407px 8.444px 0 rgba(255, 255, 255, 0.25) inset;
    padding: 6px 8px;
    max-width: fit-content;
  }
}
.investors-block {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 175px 49px 0 rgba(0, 50, 172, 0),
    0 112px 45px 0 rgba(0, 50, 172, 0.01),
    0 63px 38px 0 rgba(0, 50, 172, 0.05),
    0 28px 28px 0 rgba(0, 50, 172, 0.09),
    0 7px 15px 0 rgba(0, 50, 172, 0.1);
  .title-icon-block .icon {
    padding: 6px;
    width: 36px;
    height: 36px;
  }
  .title-icon-block .title {
    font-size: 16px;
  }
  .title-icon-block {
    position: absolute;

    gap: 8px;
    top: 20px;
    left: 20px;
  }
}
.inv-block-swiper {
  height: 100%;
}
.inv-block-swiper-slide {
  overflow: hidden;
  position: relative;
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 76px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  .descr {
    color: #38414e;
    font-family: Satoshi;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    margin-top: 90px;
  }
  .inv-name {
    color: #000;
    font-family: Satoshi;
    font-size: 32px;
    font-weight: 500;
  }
  .investor-img {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
  }
  .inv-top-block,
  .p-quote-block {
    z-index: 10;
  }
}

.performance-block {
  grid-column: span 2;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  height: 346px;

  background-image: url("/img/tis-performans.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.performance-block h3 {
  margin-top: 20px;
  padding-inline: 20px;
  color: #000;
  font-family: Satoshi;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.performance-block .list-button {
  margin-left: 20px;
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 1.407px 8.444px 0 rgba(255, 255, 255, 0.25) inset;
  display: flex;
  gap: 4px;
  max-width: fit-content;
  padding: 6px 8px 8px 12px;
  align-items: center;
  p {
    color: #fff;
    font-family: Satoshi;
    font-size: 16px;
    font-weight: 500;
    line-height: 14px;
  }
}
.flexible-access-block {
  border-radius: 32px;
  background: #fff;
  max-height: 346px;
  box-shadow: 0 8px 15px 0 rgba(0, 50, 172, 0.1);
  grid-column: span 4;
  padding: 20px;
  position: relative;
  .card-pic {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  video {
    width: 100%;
    height: 100%;
    max-height: 212px;
  }
  .button-top {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
}
.flexible-access-block .arrow-circle-button {
  border-radius: 66px;
  z-index: 10;
  background: #0b0b0b;
  box-shadow: 0 4px 5px 0 rgba(255, 255, 255, 0.25) inset;
  position: absolute;
  bottom: 20px;
  padding: 6px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  .arrow-right {
    background: #131313;
    border-radius: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.15px solid #6e6e6e;
    box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
  }
}
.fab-swiper-pagination,
.inv-block-swiper-pagination {
  border-radius: 149px;
  border: 1px solid #e3ecf5;
  background: #f4f8fc;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
  max-width: fit-content;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: 20px !important;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  .swiper-pagination-bullet {
    background: #bcd3ef !important;
    opacity: 1;
    margin: 0px !important;
    height: 6px !important;
    width: 6px !important;
  }
  .swiper-pagination-bullet-active {
    background: #2671cb !important;
    transform: scale(1.33);
  }
}
.fab-swiper-buttons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.inv-block-swiper-button-prev {
  left: 20px !important;
}
.inv-block-swiper-button-next {
  right: 20px !important;
}
.inv-block-swiper-button-prev,
.inv-block-swiper-button-next {
  top: auto !important;
  bottom: 20px !important;
  width: fit-content !important;
  height: fit-content !important;
  border-radius: 149px;
  border: 1px solid #e3ecf5;
  background: #f4f8fc;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
}
.inv-block-swiper-button-next:hover,
.inv-block-swiper-button-prev:hover {
  background: #2671cb;
  svg path {
    fill: white !important;
  }
}
.fab-swiper-button-next,
.fab-swiper-button-prev {
  position: static !important;
  width: fit-content !important;
  height: fit-content !important;
  border-radius: 149px;
  border: 1px solid #e3ecf5;
  background: #f4f8fc;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 15px 0 rgba(0, 50, 172, 0.1),
    0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
}
.fab-swiper-button-next:hover,
.fab-swiper-button-prev:hover {
  background: #2671cb;
  svg path {
    fill: white !important;
  }
}
.fab-swiper {
  height: 100%;
}
.fab-swiper-wrapper {
  height: 100% !important;
}
.fab-swiper-slide .top-title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  h3 {
    color: #000;
    font-family: Satoshi;
    font-size: 26px;
    font-weight: 500;
  }
  p {
    color: #38414e;
    font-family: Satoshi;
    font-size: 14px;
    font-weight: 500;
  }
}
.inv-block-swiper-slide .investor-img {
  object-fit: cover;
}
.tis-content-main.mobile {
  display: none;
}
@media (max-width: 1560px) {
  .container {
    padding-inline: 16px;
  }
}
@media (max-width: 1440px) {
  .powerful-tools-block {
    padding-block: 80px 60px;

    .ptb-card {
      flex-direction: column;

      img {
        width: 100%;
        max-height: 300px;
        border-radius: 32px 32px 0 0;
      }
    }
  }
}
@media (max-width: 1200px) {
  .investor-img {
    bottom: 0 !important;
  }
  .performance-block h3 {
    font-size: 24px;
  }
  .inv-block-swiper-slide .investor-img {
    object-fit: cover;
    bottom: -70px !important;
  }
}
@media (max-width: 1100px) {
  .reg-form-block {
    grid-column: span 5;
  }
  .footer-nav {
    grid-column: span 7;
  }
  .footer-nav {
    img {
      position: absolute;
      top: -80px;
      right: -20px;
      z-index: 3;
    }
  }
  .footer-nav .top {
    gap: 30px;
  }
  .people-cards-block {
    min-width: 202px !important;
  }
  .hero-content-block {
    gap: 10%;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .card-title-icon-block p {
    font-size: 24px;
    line-height: 200%;
  }
  .card-title-icon-block .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .auto-invest-block {
    grid-column: span 5 !important;
  }
  .total-revenue-block {
    grid-column: span 5 !important;
  }
  .performance-block {
    grid-column: span 4 !important;
    background-size: 100% 90% !important;
  }
  .flexible-access-block {
    min-height: 346px !important;
    max-height: fit-content !important;
  }
  .investors-block,
  .flexible-access-block {
    grid-column: span 5 !important;
  }
}
@media (max-width: 900px) {
  header .get-started-button .arrow .menu-svg {
    display: block;
  }
  header .get-started-button .arrow .arrow-svg {
    display: none;
  }
  header .get-started-button p {
    display: none;
  }
  header .get-started-button {
    padding-inline: 6px;
  }
  header nav {
    display: none;
  }
  .header-container {
    top: 16px;
  }
  header {
    padding: 6px;
  }

  .reg-form-block {
    grid-column: span 12;
  }
  .footer-nav {
    grid-column: span 12;
  }
  .footer-nav {
    img {
      position: absolute;
      top: -20px;
      right: 0px;
      z-index: 3;
    }
  }
  footer {
    padding-block: 100px 20px;
  }
  .designed-block {
    flex-direction: column-reverse;
    align-items: center;
    gap: 80px;
  }
  .designed-info-block {
    max-width: 100%;
    .get-started-button .btn-title {
      display: block;
    }
    .get-started-button {
      padding-right: 20px;
    }
  }
  .designed-block {
    padding-block: 100px;
  }
  .designed {
    background-image: url("/img/designed-block-mobile.png");
    background-size: 100% 100%;
  }
  .calculator-section {
    background-image: url(/img/calculator-bg-mobile.png);
  }
  .mobile-menu .get-started-button {
    padding-inline: 6px;
  }
  .simple-arrow-block {
    display: none;
  }
  .simple-cards-block {
    max-width: 600px;
    margin-inline: auto;
    gap: 16px;
  }
  .simple-card {
    grid-column: span 3;
    padding: 12px 20px;
  }
  .arrow-between-cards {
    display: block;
    max-width: fit-content;
    margin-inline: auto;
    grid-column: span 3;
  }
  .simple-path-section {
    padding-block: 80px;
  }
  .simple-path-section .main-section-title.desktop {
    display: none;
  }
  .simple-path-section .main-section-title.tablet {
    display: flex;
  }
  .spots-block {
    max-width: 90%;
    transform: translateY(-26px);
  }
  .hero .main-section-title h2,
  .hero .main-section-title h3 {
    font-size: 40px;
  }
  .hero .desktop {
    display: none;
  }
  .hero .tablet {
    display: block;
  }
}
@media (max-width: 800px) {
  .build-simplify-section {
    padding-block: 80px;
  }
  .build-simplify-section .main-section-title {
    justify-content: center;
    row-gap: 6px;
  }
  .build-simplify-section .title-icon-block {
    margin-inline: auto;
  }
  .build-simplify-section .section-subtitle {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }
  .build-simplify-section .bs-cards-container {
    margin-top: 32px;
  }
  .bs-cards-wrapper {
    flex-direction: column;
    padding-right: 16px !important;
    width: 100% !important;
  }
  .build-simplify-section .bs-card-item {
    min-width: auto !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .hero .buttons {
    margin-bottom: 160px;
  }
  .hero {
    background-image: url("/img/hero-bg-mobile.png");
  }
  .tis-content-main.desktop {
    display: none !important;
  }
  .tis-content-main.mobile {
    display: flex;
    flex-direction: column;
    gap: 64px;
    .swiper {
      max-width: 100% !important;
    }
  }
  .tis-content-main .investors-block {
    height: 800px;
  }
  .inv-block-swiper-slide .investor-img {
    bottom: -170px !important;
  }
  .inv-block-swiper-slide {
    height: 100%;
  }
  .performance-block h3 {
    margin-top: 0px;
    padding-top: 20px;
  }
  .ti-mob-first-swiper,
  .ti-mob-second-swiper {
    overflow: visible !important;
  }
  .ti-mob-first-swiper-wrapper,
  .ti-mob-second-swiper-wrapper {
    align-items: stretch;
  }
  .tis-content-main {
    overflow: hidden;
  }
  .auto-invest-block .top-title-block {
    z-index: 10;
  }
  .ti-mob-first-swiper-slide,
  .ti-mob-second-swiper-slide {
    height: auto !important;
  }
  .performance-block {
    height: 100%;
  }
  .inv-block-swiper {
    height: 100% !important;
  }
  .total-revenue-block {
    height: 100%;
  }
  .total-revenue-block .graph {
    height: 206px;
  }
  .flexible-access-block {
    height: 346px;
  }
  .swiper-pagination {
    bottom: -40px !important;
    border-radius: 149px;
    border: 1px solid #e3ecf5;
    background: #f4f8fc;
    box-shadow:
      0 8px 15px 0 rgba(0, 50, 172, 0.1),
      0 0 12px 0 rgba(0, 50, 172, 0.1) inset;
    max-width: fit-content;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    .swiper-pagination-bullet {
      background: #bcd3ef !important;
      opacity: 1;
      margin: 0px !important;
      height: 6px !important;
      width: 6px !important;
    }
    .swiper-pagination-bullet-active {
      background: #2671cb !important;
      transform: scale(1.33);
    }
  }
  .fab-swiper .fab-swiper-pagination {
    bottom: 38px !important;
  }
  .trusted-insights-section .under-title {
    font-size: 16px;
  }
  .trusted-insights-section .p-quote-block .quote {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 700px) {
  .reg-form-block .form-title {
    font-size: 26px;
  }
  .reg-form-block h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .ptb-menu {
    display: none;
  }
  .ptb-card-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .ptb-card-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .ptb-card-list {
    gap: 20px;
  }
  .ptb-card-list li {
    font-size: 12px;
  }
  .powerful-tools-block .ptb-card-info {
    padding: 16px;

    min-width: auto;
  }
  .ptb-card {
    border-radius: 20px !important;
    top: 120px !important;
    position: static !important;
  }
  .ptb-card img {
    border-radius: 20px 20px 0 0 !important;
  }
  .powerful-tools-block .ptb-content {
    margin-top: 32px;
  }
  .powerful-tools-block {
    padding-block: 80px;
  }
  .calculator-section .calculator {
    display: flex;
    flex-direction: column-reverse;
  }
  .calc-block .main-section-title {
    column-gap: 12px;
    row-gap: 6px;
    justify-content: center;
    h2,
    h3 {
      font-size: 30px;
    }
  }
  .calc-block .calculator {
    padding: 12px;
  }
  .calc-block .chart-part {
    padding: 10px;
  }
  .calc-block .anount-block input {
    font-size: 18px;
  }
  .calc-block .info-part .info-title {
    font-size: 18px;
  }
  .slider-wrapper {
    padding-inline: 10px;
  }
  .change-perion-block p {
    font-size: 18px !important;
  }
  .calc-block .slider-description p,
  .calc-block .top-slider-description p {
    font-size: 14px !important;
  }
  .calc-block .under-title {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 32px;
  }
  .calc-block .title-icon-block {
    margin-bottom: 12px;
  }
  .calc-block {
    padding-block: 80px 62px;
  }
  .calc-block .buttons {
    gap: 4px;
  }
  .bs-card-item {
    max-width: 86%;
    padding: 12px !important;
  }
  .bs-card-item:nth-child(2) {
    align-self: end;
  }
  .bs-card-item:nth-child(3) {
    align-self: center;
  }
  .bs-card-item:nth-child(1),
  & .bs-card-item:nth-child(3) {
    .card-stat-title h4:after {
      font-size: 56px !important;
      right: -30px !important;
      top: -26px !important;
    }
  }
  .bs-card-item:nth-child(4) {
    max-width: 100% !important;
    min-height: 358px;
    max-height: none !important;
    overflow: hidden;
    gap: 12px !important;
    background-size: cover !important;
    .get-started-button {
      max-width: none !important;
      z-index: 10;
      justify-content: space-between;
      flex-direction: row-reverse;
      padding-inline: 20px 6px;
    }
    .get-started-button.white-small {
      max-width: fit-content !important;
      justify-content: start;
      flex-direction: row;
      padding-inline: 4px 20px;
    }
    .content p {
      max-width: 100% !important;
      margin-bottom: 314px;
    }
    img {
      right: 50% !important;
      bottom: -20px !important;
      transform: translateX(50%);
    }
  }
  .build-simplify-section {
    .card-stat-title h4 {
      color: #fff;
      font-family: Satoshi;
      font-size: 98px;
      font-weight: 700;
      line-height: 120%;
    }
  }
  .trusted-insights-section {
    padding-block: 80px;
  }
  .auto-invest-block .left-part h3 {
    font-size: 26px;
  }
  .auto-invest-block .left-part p,
  .auto-invest-block .ps {
    font-size: 14px;
  }
  .tis-content-main .investors-block {
    height: 700px;
  }
  .inv-block-swiper-slide .investor-img {
    bottom: -200px !important;
  }
}
@media (max-width: 600px) {
  .footer-bottom p {
    font-size: 12px;
  }
  .footer-nav .top {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav .bottom {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: start;
  }
  .footer-nav {
    gap: 32px;
  }
  .footer-nav .bottom .left p {
    font-size: 14px;
  }
  .footer-nav .bottom .right .secure-p {
    font-size: 18px;
  }
  .footer-nav .bottom .right .make-decisions-p,
  .footer-nav .bottom .right .invest-p {
    font-size: 26px;
  }
  .footer-nav {
    background-image: url("/img/footer-nav-bg2.png");
    background-position: left bottom;
    background-size: 90vw auto;
  }
  .footer-bottom {
    background-image: url("/img/footer-bottom-bg2.png");
    background-position: left bottom;
    background-size: 90vw 100%;
  }
  footer {
    padding-block: 80px 16px;
  }

  .designed-block {
    padding-block: 80px;
  }
  .calc-block .chart-block {
    min-height: 240px !important;
  }
  .bs-card-item .card-description {
    margin-top: 94px !important;
    font-size: 16px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .bs-card-item {
    border-radius: 20px !important;
  }
  .simple-path-section .title-icon-block .title {
    font-size: 16px;
  }
  .simple-path-section .under-title {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .simple-card {
    min-height: 306px;
  }
  .hero .get-started-button {
    max-width: 100% !important;
    width: 100%;
    flex-direction: row-reverse;
    padding-inline: 20px 6px;
    justify-content: space-between;
  }
  .hero .under-title {
    font-size: 18px;
  }
  .hero .desktop-mobile {
    display: none;
  }
  .hero .mobile {
    display: block;
  }
  .hero .talk-expert-button.mobile {
    position: relative;
    display: flex;
    z-index: 12;
    background: #2671cb;
    .arrow {
      background: #2671cb;
      border: 0.15px solid #d3d3d3;
      box-shadow: 0 0 7.68px 0 rgba(255, 255, 255, 0.15) inset;
    }
  }
  .hero .phone {
    bottom: 150px;
  }
  .hero-content-block {
    flex-direction: column;
    gap: 34px;
    margin-bottom: 30px;
    margin-top: 160px;
  }
  .hero-chart-block {
    margin-top: 0px;
    align-self: flex-end;
    max-width: 60%;
    border-radius: 16px;
  }
  .people-cards-block {
    max-width: 52%;
    padding: 8px;
    border-radius: 16px;
  }
  .people-card {
    min-height: 152px;
  }
  .p-quote-block .quote {
    font-size: 8px;
    line-height: 11px;
    text-indent: 20px;
  }
  .p-quote-block {
    padding: 6px;
    border-radius: 8px;
    img {
      width: 46px;
      top: -18px;
    }
  }
  .hero .buttons {
    margin-bottom: 70px;
  }
  .people-card .p-name {
    font-size: 10px;
  }
  .spots-block .subtitle {
    font-size: 14px;
  }
  .spots-block .count {
    font-size: 14px;
  }
  .tis-content-main .investors-block {
    height: 650px;
  }
  .inv-block-swiper-slide .investor-img {
    bottom: -70px !important;
  }
}
@media (max-width: 550px) {
  .build-simplify-section {
    .card-stat-title p {
      font-size: 26px !important;
    }
  }
  .bs-card-item {
    position: relative;
  }
  .bs-card-item .card-picture {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0 !important;
    padding: 10px !important;
    width: 44px;
    height: 44px;
    svg {
      width: 22px;
      height: 22px;
    }
  }
  .bs-card-item:nth-child(1) .card-picture {
    background: #2671cb;
    box-shadow: 0 0 0 5px #2671cb;
  }
  .bs-card-item:nth-child(2) .card-picture {
    background: #5e96d8;
    box-shadow: 0 0 0 5px #5e96d8;
  }
  .bs-card-item:nth-child(3) .card-picture {
    background: #2671cb;
    box-shadow: 0 0 0 5px #f4f8fc;
  }
}
@media (max-width: 500px) {
  .designed-info-block .get-started-button {
    width: 100%;
    padding-inline: 20px 6px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .designed-info-block .context {
    font-size: 16px;
    margin-bottom: 32px;
    margin-top: 12px;
  }
  .main-section-title .subtitle {
    gap: 8px;
  }
  .main-section-title {
    .section-title,
    h3 {
      font-size: 30px;
    }
    .icons {
      height: 38px;
      padding: 6px 10px;
      svg {
        width: 100%;
        height: 100%;
      }
    }
  }
  .calc-block .chart-part .time-block {
    font-size: 14px;
  }
  .calc-block .buttons a {
    gap: 6px;
    padding-inline: 4px 14px;
    padding-block: 4px;
  }
  .calc-block .buttons a p {
    font-size: 16px !important;
  }
  .tis-content-main .investors-block {
    height: 568px;
  }
  .inv-block-swiper-slide .investor-img {
    bottom: -70px !important;
  }
}
