.investors__title {
    text-align: center;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase
}

.investors__content {
    display: flex;
    overflow: hidden
}

.investors__list {
    padding: 8px 0;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 250%;
    gap: 10px
}

@media screen and (max-width: 1000px) {
    .investors__list {
        grid-template-columns: repeat(5, 1fr)
    }
}

@media screen and (max-width: 380px) {
    .investors__list {
        grid-template-columns: repeat(2, 1fr)
    }
}

.investors--marquee .investors__list {
    display: flex;
    min-width: unset;
    gap: unset
}

@media screen and (max-width: 1000px) {
    .investors--marquee .investors__list {
        animation: marqueeLoop 25s linear infinite
    }
}

@media screen and (max-width: 380px) {
    .investors--marquee .investors__list {
        animation: marqueeLoop 10s linear infinite
    }
}

.investors__item {
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    flex-grow: 1;
    height: 56px
}

.investors__item img {
    display: block;
    max-width: 100%
}

.investors--marquee .investors__item {
    min-width: 128px
}

@keyframes marqueeLoop {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

.review-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.review-marquee__inner {
    display: flex;
    align-items: stretch;
    animation: marqueReviews 28s linear infinite;
}

.investors__list.review-marquee__inner {
    animation: marqueReviews 50s linear infinite;
}

.review-marquee:hover .review-marquee__inner {
    animation-play-state: paused
}

.review-marquee__item {
    width: min-content
}

.investors__item.review-marquee__item {
    width: 100%
}

.reviews__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px
}

@media screen and (max-width: 1275px) {
    .reviews__content {
        gap: 24px
    }
}

.reviews .slick {
    width: 100%
}

.reviews__btn {
    min-width: 200px
}

@media screen and (max-width: 560px) {
    .reviews__btn {
        min-width: 150px
    }
}

.review {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 42.5px;
    border: 1px solid var(--secondary-light, #EEE);
    border-radius: 32px;
    min-height: 100%
}

@media screen and (max-width: 1275px) {
    .review {
        padding: 24px
    }
}

.review__head {
    margin-bottom: 32px
}

@media screen and (max-width: 1275px) {
    .review__head {
        margin-bottom: 24px
    }
}

.review__head img {
    width: auto;
    max-width: 145px;
    height: 28px;
    object-fit: contain
}

.review__content {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px
}

@media screen and (max-width: 1275px) {
    .review__content {
        font-size: 12px
    }
}

.review__author {
    display: flex;
    align-items: center;
    gap: 16px
}

.review__author-img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

.review__author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.review__author-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2
}

@media screen and (max-width: 1275px) {
    .review__author-name {
        font-size: 12px
    }
}

.review__author-role {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5
}

.review-marquee .review {
    width: 416px;
    margin-right: 16px;
    min-height: 100%
}

@media screen and (max-width: 780px) {
    .review-marquee .review {
        width: 288px
    }
}

@keyframes marqueReviews {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

.faq__head {
    margin: 0 auto;
    margin-bottom: 48px;
    text-align: center;
    max-width: 499px
}

@media screen and (max-width: 1275px) {
    .faq__head {
        margin-bottom: 24px
    }
}

.faq__head .h2-custom {
    margin-bottom: 12px
}

@media screen and (max-width: 1275px) {
    .faq__head .h2-custom {
        margin-bottom: 8px
    }
}

.faq__list {
    max-width: 842px;
    margin: 0 auto
}

.faq__item {
    width: 100%;
    border-top: 1px solid var(--secondary-light, #EEE)
}

.faq__item:last-child {
    border-bottom: 1px solid var(--secondary-light, #EEE)
}

.faq__item-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer
}

@media screen and (max-width: 1275px) {
    .faq__item-head {
        font-size: 16px;
        line-height: 1.2
    }
}

.faq__item-head .btn {
    width: 21px;
    height: 21px;
    outline: none;
    padding: 0;
    transform-origin: 50% 50%;
    transform: rotateZ(45deg);
    transition: .3s linear;
    display: flex;
    align-items: center;
    justify-content: center
}

.faq__item-head .btn:focus,
.faq__item-head .btn:active {
    border: none;
    outline: none;
    box-shadow: none
}

.faq__item-head .btn svg {
    display: block
}

.faq__item-head .btn path {
    fill: var(--secondary-darkest, #000);
    transition: .3s linear
}

.faq__item-head.collapsed .btn {
    transform: rotateZ(0deg)
}

.faq__item-head.collapsed .btn path {
    fill: var(--secondary-darker, #6a6a6a)
}

.faq__item-content {
    padding-bottom: 16px
}

@media screen and (max-width: 1275px) {
    .faq__item-content {
        font-size: 12px
    }
}

.home-stats__row {
    display: flex;
    align-items: stretch
}

@media screen and (max-width: 560px) {
    .home-stats__row {
        flex-direction: column
    }
}

.stats-last-update {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--secondary-darker, #6a6a6a);
}

.general-contacts {
    text-align: right;
    @media (max-width: 576px) {
        text-align: left;
    }
    width: 100%;
    font-size: 12px;
    color: var(--secondary-darker, #6a6a6a);
}

.investor-profile-last-update {
    text-align: left;
    margin-top: 5px;
    font-size: 14px;
    color: var(--secondary-darker, #6a6a6a);
    margin-left: 15px;
}

.stats-last-update-search {
    text-align: left;
    margin-top: 0;
    font-size: 14px;
    padding-bottom: 16px;
    color: var(--secondary-darker, #6a6a6a);
}

.stats-last-update-ai-search {
    text-align: left;
    margin-top: 0;
    font-size: 14px;
    color: var(--secondary-darker, #6a6a6a);
}

.stats-last-update a {
    color: var(--primary-darker);
    margin-left: 5px;
    @media (max-width: 357px) {
        margin-left: 0;
    }
    font-size: 14px;
}

.home-stats__item {
    text-align: center;
    position: relative;
    flex-grow: 1
}

.home-stats__item:not(:first-child) {
    padding-left: 14px
}

@media screen and (max-width: 560px) {
    .home-stats__item:not(:first-child) {
        padding-left: 0;
        padding-top: 16px
    }
}

.home-stats__item:not(:last-child) {
    padding-right: 14px
}

@media screen and (max-width: 560px) {
    .home-stats__item:not(:last-child) {
        padding-right: 0;
        padding-bottom: 16px
    }
}

.home-stats__item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: var(--secondary-light, #eee)
}

@media screen and (max-width: 560px) {
    .home-stats__item:not(:last-child):after {
        top: unset;
        right: 0;
        bottom: 0;
        height: 1px;
        width: 100%
    }
}

.home-stats .h3-custom {
    margin-bottom: 8px
}

@media screen and (max-width: 560px) {
    .home-stats .h3-custom {
        margin-bottom: 4px
    }
}

.home-stats p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5
}

@media screen and (max-width: 560px) {
    .home-stats p {
        font-size: 14px
    }
}

.home-stats__monthly-updates {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    border-radius: 34px;
    font-size: 14px;
    color: #14A34D;
    background: #E8F6ED;
    line-height: 1;
    height: 16px;
    margin-top: 7px;
}

.arrow-up {
    transform: rotate(180deg);
    margin-bottom: 5px;
}

@media screen and (max-width: 780px) {
    .home-stats__monthly-updates {
        font-size: 12px;
        height: 14px;
        margin-top: 2px;
    }
}



.get-started__container {
    box-sizing: border-box;
    padding: 48px 40px;
    border-radius: 32px;
    background: linear-gradient(225deg, #1e9fe8 0%, #1874c1 100%)
}

@media screen and (max-width: 1275px) {
    .get-started__container {
        padding: 32px
    }
}

@media screen and (max-width: 560px) {
    .get-started__container {
        padding: 24px
    }
}

.get-started__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--secondary-lightest, #fff)
}

.get-started__content .h2-custom {
    margin-bottom: 16px
}

.get-started__content .subtitle {
    margin-bottom: 32px
}

.get-started__img {
    margin-bottom: 16px
}

.get-started__btn {
    min-width: 200px
}

@media screen and (max-width: 560px) {
    .get-started__btn {
        min-width: 150px
    }
}

.landing-banner {
    padding: 16px 0 0
}

.landing-banner .btn-primary-outlined {
    display: inline-block;
    cursor: inherit;
    margin-bottom: 16px
}
.landing-banner .btn-primary-outlined--ai {
    position: relative;
    border: none;
    background: none;
    overflow: hidden;
    padding: 8px 16px 10px;
    border-radius: 34px;
    margin-bottom: 11px;
    background-clip: padding-box;
    max-width: 444px;
    width: 100%;
    text-align: left;
}

.landing-banner .btn-primary-outlined--ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(255, 40, 208) 0%, rgb(30, 159, 232) 100%);
    z-index: 1;
    border-radius: 34px;

}
.landing-banner .btn-primary-outlined--ai::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: #ecf6ff;
    /* Цвет фона кнопки */
    border-radius: 34px;
    z-index: 3;
}


 .btn-primary-outlined--ai__text{
    position: relative;
    background: url('../img/ai__stars--blue.svg') no-repeat left 0 center;
    padding-left:26px;
    z-index: 5;
    display: block;
    font-size: 12px;
}
.btn-primary-outlined--ai__backgound {
    height: 26px;
    background-color: #ecf6ff;
    width: calc(100% - 4px);
    border-radius: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    position: absolute;
    z-index: 4;


}
.btn-primary-outlined--ai__border {
    width: 29px;
    height: 29px;
    display: block;
    border: 0px solid rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    animation: border-dance 3s ease-in-out infinite alternate;
    padding: 0;
    transform: matrix(1, 0, 0, 1);
    mask-clip:border-box;
    mask-composite:add;
    mask-image:none;
    mask-mode:match-source;
    mask-origin:border-box;
    mask-repeat:repeat;
   mask-size:auto;


}
.btn-primary-outlined--ai__border--inner {
  background-image: conic-gradient(from calc(225deg), rgba(30, 159, 232) 0deg, rgb(255, 255, 255) 90deg,
        rgb(255, 40, 208, 0) 90deg);
  background-clip: border-box;
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: -45px;
  left: -45px;
  right: -45px;
  bottom: -45px;
  width: 114px;
  height: 114px;
  translate: 0px;
    transform: matrix(1, 0, 0, 1);
    mask-clip: border-box;
    mask-composite: add;
    mask-image: none;
    mask-mode: match-source;
    mask-origin: border-box;
    mask-repeat: repeat;
    mask-size: auto;

  animation: spin-around 6s infinite linear;
}

@keyframes border-dance {

    100% {
        left: calc(100% - 29px);
    }
}

@keyframes border-dance-search {

    100% {
        left: calc(100% - 31px);
    }
}
@keyframes spin-around {
0% {
    transform: translateZ(0) rotate(0);
  }

  15%,
  35%, 45%{
    transform: translateZ(0) rotate(90deg);
  }

 65%,
  85%, 95% {
    transform: translateZ(0) rotate(270deg);
  }

  100% {
    transform:translateZ(0) rotate(360deg);
    }
}
@keyframes spin-around-search {
    0% {
        transform: translateZ(0) rotate(0);
    }

    15%,
    35%{
        transform: translateZ(0) rotate(90deg);
    }

    65%,
    85% {
        transform: translateZ(0) rotate(270deg);
    }

    100% {
        transform: translateZ(0) rotate(360deg);
    }
}
/* @keyframes gradient-animation {
    0% {
        background: linear-gradient(15deg, #FF28D0 0%, #1E9FE8 100%);
    }
    25% {
        background: linear-gradient(25deg, #FF28D0 0%, #1E9FE8 100%);

    }
    35% {
        background: linear-gradient(35deg, #FF28D0 0%, #1E9FE8 100%);

    }
    45% {
        background: linear-gradient(45deg, #FF28D0 0%, #1E9FE8 100%);

    }

    50% {

        background: linear-gradient(90deg, #FF28D0 0%, #1E9FE8 100%);

    }
    55% {

        background: linear-gradient(-45deg, #FF28D0 0%, #1E9FE8 100%);

    }
    65% {
        background: linear-gradient(-35deg, #FF28D0 0%, #1E9FE8 100%);
    }
    75% {
        background: linear-gradient(-25deg, #FF28D0 0%, #1E9FE8 100%);
    }

    100% {
    background: linear-gradient(-15deg, #FF28D0 0%, #1E9FE8 100%);
    }
} */

.handle-prompt-error {
    color: red;
    text-align: center;
}

.handle-prompt-error a {
    color: red;
    text-decoration: underline;
}

.landing-banner {margin-bottom: 32px;}
.landing-banner .h1-custom {
    margin-bottom: 16px;
    max-width: 543px
}
.landing-banner__btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*max-width: 282px;*/
    gap: 16px;
}

.landing-banner .btn-custom--ai {
    display: flex;
    gap: 4px;
    align-items: center;
}

.landing-banner .btn-custom--ai::before {
    content: '';
    background: url('../img/ai__stars--blue.svg') no-repeat;
    display: block;
    width: 16px;
    height: 16px;
}

.ai-search-block__block {
    background: url('../img/ai-search__bg.png') no-repeat right center /contain, linear-gradient(266.53deg, rgba(255, 40, 208, 0.8) 0%, rgba(30, 159, 232, 0.8) 57.21%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    border-radius: 48px;
    position: relative;
}


.ai-search-block__title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 8px;

}
.ai-search-form {
    max-width: 726px;
    width: 100%;
    padding: 0 16px;
}
.ai-search-form__group {
    position: relative;
     margin-bottom: 8px;

}
.ai-search-form__textarea {
    width: 100%;
    border-radius: 16px;
    padding: 16px 48px 40px 16px;
    resize: none;
    border: 1px solid transparent;
    position: relative;
    z-index: 2;
    outline: none;
    display: block;
    scrollbar-width: none;
}

.ai-search-form__group::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    display: block;
    background: linear-gradient(266.53deg, #FF28D0 0%, #1E9FE8 100%);
    border-radius: 16px;
    z-index: 1;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}
.ai-search-form__group.disabled::before {
    background: linear-gradient(266.53deg, rgba(255, 40, 208, 0.2) 0%, rgba(30, 159, 232, 0.2) 100%);
}
.ai-search-form__group.focused::before {
    background: linear-gradient(266.53deg, #1E9FE8 0%, #FF28D0 100%);
}
.ai-search-form__textarea:disabled{
    opacity: 1;
    background: #fff;
}
.ai-search-form__textarea:disabled::placeholder {
    color: rgba(204, 204, 204, 1);
}


.ai-search-form__file {
    display: none;
}
.ai-search-form__file-label, .ai-search-form__btn {
    display: block;
    width: 34px;
    height: 34px;
    position: absolute;
    bottom: 8px;
    cursor: pointer;
    z-index: 2;
    margin-bottom: 0;
}
.ai-search-form__file:disabled+label svg rect,
.ai-search-form__btn:disabled svg rect,
.ai-search-form__btn:hover:disabled svg rect {
    fill: rgba(236, 246, 255, 1);
}
.ai-search-form__file:disabled+label svg path,
.ai-search-form__btn:disabled svg path {
    fill: rgba(122, 194, 255, 1);
}
.ai-search-form__btn:focus {
    outline: none;
}
.ai-search-form__file-label {
    left: 16px;

}
.ai-search-form__btn:disabled svg rect {
    fill: #ECF6FF;
}
.ai-search-form__btn:disabled svg path {
    fill: #A4D6FF;
}
.ai-search-form__btn:disabled {
    pointer-events: none;
}
.templates__btn:disabled svg rect {
    fill: #ECF6FF;
}
.templates__btn:disabled svg path {
    fill: #A4D6FF;
}
.chats__btn[disabled] svg rect {
    fill: #ECF6FF;
}
.chats__btn[disabled] svg path {
    fill: #A4D6FF;
}
.chats__btn[disabled] {
    pointer-events: none;
}
.ai-search-form__file-label:hover svg rect {
    fill: #e1e9f2;
}
.ai-search-form__btn:hover:not(:disabled) svg rect {
    fill: #0056b3;
}
.ai-search-form__btn {
    right: 16px;
    border: none;
    outline: none;
    background: none;
}

.ai-search-form__text {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 150%;
}
@media screen and (max-width: 1000px) {
    .landing-banner .h1-custom {
        max-width: 605px
    }
    .ai-search-block__title {
        font-size: 20px;

    }
}

.landing-banner .btn-custom {
    width: 100%;
    max-width: 200px;
    margin-bottom: 24px

}
.landing-banner .landing-banner__btn {
    max-width: 128px;
}
@media (max-width:470px) {
    .landing-banner .btn-custom {
        margin-bottom: 0;
    }
}
.landing-banner .btn-custom span {
    color: var(--primary-darker, #1874c1)
}

.landing-banner p {
    margin-bottom: 6px;
    font-size: 18px
}
@media screen and (max-width:990px) {
    .landing-banner__btns {
        justify-content: center;
        max-width: unset;
    }

   .landing-banner .btn-custom--ai {
        max-width: 140px;
    }
}

@media screen and (max-width:470px) {
    .landing-banner__btns {
        flex-direction: column;
        margin-bottom: 24px;
    }
    .landing-banner .btn-custom--ai,
    .landing-banner .btn-custom {
        width: 100%;
        max-width: unset;
    }
}
@media screen and (max-width: 1000px) {
    .landing-banner p {
        font-size: 14px
    }
}

.landing-banner p:nth-child(1) {
    margin-right: 30px
}

@media screen and (max-width: 1000px) {
    .landing-banner p:nth-child(1) {
        margin-right: unset;
        font-size: 14px
    }
}

@media screen and (max-width: 560px) {
    .landing-banner p {
        text-align: left
    }
    .ai-search-form__textarea,
    .ai-search-form__textarea::placeholder {
        font-size: 14px;
    }
    .ai-search-form__text {font-size: 12px;}
}

.landing-banner p:nth-child(2) {
    margin-bottom: 24px;
    font-size: 16px
}

@media screen and (max-width: 560px) {
    .landing-banner p:nth-child(2) {
        font-size: 14px
    }
}

.landing-banner p span {
    color: var(--primary-darker, #1874c1)
}

.landing-banner__card {
    max-width: 554px
}

@media screen and (max-width: 1000px) {
    .landing-banner__card {
        max-width: 616px
    }
}

.landing-banner__list {
    display: flex;
    align-items: center;
    gap: 16px
}

@media screen and (max-width: 1000px) {
    .landing-banner__list {
        justify-content: center
    }
}

@media screen and (max-width: 560px) {
    .landing-banner__list {
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left
    }
}

.landing-banner__item {
    display: flex;
    align-items: center;
    gap: 8px
}

.landing-banner__item svg {
    display: block;
    flex-shrink: 0
}

.landing-banner__item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5
}

@media screen and (max-width: 1000px) {
    .landing-banner__item span {
        font-size: 14px
    }
}

.landing-banner .blanker {
    position: relative;
    overflow: hidden
}

.landing-banner .row {
    position: unset
}

.landing-banner .col-12 {
    position: unset
}

@media screen and (max-width: 1000px) {
    .landing-banner .col-12:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.landing-banner__link {
    display: block
}

@media screen and (max-width: 1000px) {
    .landing-banner__link:first-child {
        margin: 0 auto
    }
}

.landing-banner__images {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end
}

.landing-banner__images>img:last-child {
    position: absolute;
    right: -12%;
    bottom: -3.7%;
    max-width: 60.1%
}

@media screen and (max-width: 1000px) {
    .landing-banner__images>img:last-child {
        position: relative;
        max-width: 130%;
        right: -27%;
        bottom: -10%;
        top: 25px
    }

    .landing-banner__images {
        margin-bottom: -20px;
    }

    .blanker {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 560px) {
    .landing-banner__images>img:last-child {
        bottom: 0;
        top: 17px
    }

    .landing-banner__images {
        margin-bottom: -20px;
    }
}

.investors-tab .row>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

@media screen and (max-width: 1370px) {
    .investors-tab .row>div {
        align-items: center
    }
}

.investors-tab .row .col-12 {
    overflow: unset
}

.investors-tab .h2-custom {
    margin-bottom: 12px
}

.investors-tab .subtitle {
    text-align: center;
    margin-bottom: 32px
}

@media screen and (max-width: 560px) {
    .investors-tab__desc {
        display: none
    }
}

.investors-tab__head {
    width: 100%;
    max-width: 516px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px
}

@media screen and (max-width: 1370px) {
    .investors-tab__head {
        max-width: unset
    }
}

.investors-tab__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--secondary-darker, #6a6a6a);
    cursor: pointer;
    transition: .3s linear
}

.investors-tab__item strong {
    color: var(--secondary-darkest, #000000)
}

.investors-tab__item a {
    color: var(--primary-darker, #1874c1);
    text-decoration: underline
}

.investors-tab__item.active {
    background: var(--primary-lightest, #ecf6ff)
}

.investors-tab__item svg {
    flex-shrink: 0
}

@media screen and (max-width: 1370px) {
    .investors-tab__item {
        justify-content: flex-start
    }
}

.investors-tab__bodies {
    position: relative
}

.investors-tab__body {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .3s linear;
    background: var(--primary-lightest, #ECF6FF);
    border-radius: 48px;
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.investors-tab__body.active {
    opacity: 1;
    position: relative;
    z-index: 1
}

.investors-tab__pills {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px
}

.investors-tab__pill {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--secondary-lightest, #fff)
}

.investors-tab__pill span {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary-darker, #1874C1)
}

.investors-tab__pill svg {
    flex-shrink: 0;
    display: block;
    width: 14px;
    height: 14px
}

.investors-tab__img {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    top: 40px;
    box-shadow: 0 24px 32px 0 rgba(24, 116, 193, .08)
}

.investors-tab__img img {
    width: 100%
}

.investors-tab__mobile {
    position: absolute;
    z-index: -5;
    opacity: 0;
    pointer-events: none
}

@media screen and (max-width: 560px) {
    .investors-tab__mobile {
        position: static;
        z-index: 1;
        opacity: 1;
        pointer-events: unset
    }
}

.investors-tab__mobile .h2-custom {
    text-align: center;
    margin-bottom: 12px
}

.investors-tab__mobile .subtitle {
    margin-bottom: 16px
}

.investors-tab__mobile .swiper {
    overflow: unset
}

.investors-tab__mobile .swiper-wrapper {
    overflow: unset
}

.investors-tab__mobile .swiper-slide {
    height: auto
}

.investors-tab__mob-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 8px;
    background: var(--primary-lightest, #ECF6FF);
    border-radius: 32px;
    box-sizing: border-box;
    height: 100%
}

.investors-tab__mob-item .investors-tab__svg {
    margin-bottom: 9px
}

.investors-tab__mob-item .investors-tab__svg svg {
    display: block;
    width: 24px;
    height: 24px
}

.investors-tab__mob-item .investors-tab__text {
    margin-bottom: 9px;
    text-align: center
}

.investors-tab__mob-item .investors-tab__pills {
    position: relative;
    flex-wrap: wrap;
    flex-grow: 1
}

.investors-tab__mob-item .investors-tab__pill {
    box-shadow: 0 26.15px 34.87px 0 rgba(var(--primary-darker, #1874c1), 0.08)
}

.investors-tab__mob-item .investors-tab__img {
    margin-top: -40px;
    top: 55px;
    overflow: unset
}

.section-clients .blanker {
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    overflow: hidden
}

@media screen and (max-width: 1000px) {
    .section-clients .blanker {
        padding: 32px
    }
}

@media screen and (max-width: 560px) {
    .section-clients .blanker {
        padding: 24px
    }
}

.section-clients .blanker .h2-custom {
    margin-bottom: 12px
}

.section-clients .blanker .subtitle {
    margin-bottom: 32px
}

.section-clients .blanker .row {
    align-self: stretch
}

.section-clients .section-clients-swiper {
    width: 100%;
    max-width: 100%;
    overflow: unset
}

.section-clients .section-clients-swiper .swiper-slide {
    background: unset;
    height: auto
}

.section-clients .section-clients-swiper .swiper-control {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

@media screen and (max-width: 1000px) {
    .section-clients .section-clients-swiper .swiper-control {
        margin-top: 24px
    }
}

@media screen and (max-width: 560px) {
    .section-clients .section-clients-swiper .swiper-control {
        margin-top: 24px
    }
}

.section-clients .section-clients-swiper .swiper-control__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    background: var(--primary-darker, #1874c1)
}

.section-clients .section-clients-swiper .swiper-control__btn--left {
    transform: rotateZ(90deg)
}

.section-clients .section-clients-swiper .swiper-control__btn--right {
    transform: rotateZ(-90deg)
}

.section-clients .section-clients-swiper .swiper-control__btn svg {
    width: 24px;
    height: 24px;
    transform-origin: center
}

.section-clients .section-clients-swiper .swiper-control__btn svg path {
    fill: var(--secondary-lightest, #fff)
}

.section-clients .section-clients-swiper .swiper-control__btn.swiper-button-disabled {
    background: var(--secondary-lightest, #fff)
}

.section-clients .section-clients-swiper .swiper-control__btn.swiper-button-disabled svg path {
    fill: var(--secondary-darker, #1874c1)
}

.clients {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 24px;
    border-radius: 44px;
    background: var(--secondary-lightest, #fff)
}

.clients__icon {
    margin-bottom: 24px
}

.clients__icon svg {
    display: block;
    width: 100%
}

.clients .h4-custom {
    margin-bottom: 8px
}

.clients p {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: center;
    color: #333333;
}

.clients img {
    width: 100%;
}

.clients-slide {
    margin-bottom: 16px;
    width: 280px;
    @media (max-width: 560px) {
        width: 320px;
    }
}

.clients .btn-custom {
    width: 100%
}

.financing .mySwiper {
    overflow: unset
}

.clients-title {
    width: 100%;
    text-align: center;
    font-size: 17px;
}

.circular-loading {
    border: 2px solid #A4D6FF;
    border-top-color: transparent;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 7px;
    left: 7px;
}

.animate-dots-first {
    animation: 1.4s .2s infinite loading-dots;
    color: rgb(106, 106, 106);
}

.animate-dots-second {
    animation: 1.4s .4s infinite loading-dots;
    color: rgb(106, 106, 106);
}

.animate-dots-third {
    animation: 1.4s .6s infinite loading-dots;
    color: rgb(106, 106, 106);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes loading-dots {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/*# sourceMappingURL=landing.css.map*/
