@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");

.app-wrapper {
    width: 100%;
    margin-top: 70px;
}

.app-wrapper .header-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 64px;
}

.app-wrapper .header__left {
    flex: 0 1 585px;
}

.app-wrapper .header__logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 77px;
    line-height: 94px;
    color: var(--dark-100);
    margin: -16px 0 24px;
}

.app-wrapper .header__description {
    flex: 0 1 585px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-wrapper .header__text-bold {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-100);
}

.app-wrapper .header__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-60);
}

.app-wrapper .header__text:last-of-type {
    margin-bottom: 17px;
}

.header__custom-list {
    display: flex;
    flex-wrap: wrap;
    color: var(--dark-80);
    font-weight: 600;
    line-height: 140%;
    list-style-type: none;
    counter-reset: item;
}

.header__custom-list li {
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.header__custom-list li::before {
    content: counter(item);
    counter-increment: item;
    color: var(--white);
    background-color: var(--dark-100);
    border-radius: 50%;
    padding: 4px 12px;
    margin-right: 8px;
}

.header__custom-list li::after {
    content: "";
    display: inline-block;
    height: 1.5em;
    width: 2px;
    background-color: #CFCFCF;
    margin: 0 8px;
}

.header__custom-list li:nth-last-child(1)::after {
    content: none;
}

.app-wrapper .header__buttons {
    display: flex;
    gap: 23px;
}

.app-wrapper .doc-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 24px;
    background: #EDF7F3;
    border-radius: 8px;
}

.app-wrapper .doc-button__text {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-wrapper .image-block {
    display: flex;
    position: relative;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 150px;
}

.app-wrapper .image-block > img {
    width: 100%;
}

.app-wrapper .features {
    margin-bottom: 150px;
}

.app-wrapper .features__header {
    margin-bottom: 64px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: var(--dark-100);
}

.app-wrapper .features-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.app-wrapper .feature {
    flex: 1 1 380px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #EDF7F3;
    border-radius: 16px;
}

.app-wrapper .feature__description {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-80);
}

.app-wrapper .cm-s-material-darker.CodeMirror {
    background-color: var(--dark-100);
    width: 100%;
    height: 500px;
    padding-bottom: 32px;
}

.app-wrapper .CodeMirror-scrollbar-filler {
    display: none !important;
}

.app-wrapper div::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    background-color: transparent;
}

.app-wrapper div::-webkit-scrollbar-corner {
    background-color: var(--dark-100);
}

.app-wrapper div::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

.app-wrapper div::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    background-color: var(--dark-60);
}

.tariffs-use-switch-wrapper {
    display: flex;
    justify-content: center;
    color: var(--white);
}

.tariffs-use-switch-wrapper.light {
    max-width: 240px;
    color: var(--dark-80);
}

.tariffs-use-switch {
    display: flex;
    gap: 4px;
    background-color: var(--dark-100);
    border-radius: 8px;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.10);
    padding: 4px;
}

.tariffs-use-switch-wrapper.light .tariffs-use-switch {
    background-color: var(--dark-10);
}

.tariffs-use-switch .active {
    background-color: var(--green);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s linear;
}

.tariffs-use-switch-wrapper.light .tariffs-use-switch .active{
    color: var(--white);
    background-color: var(--dark-100);
}

.tariffs-use-switch button {
    padding: 5px 8px;
    transition: all 0.2s linear;
}

.individual-tariffs, .commercial-tariffs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 64px 24px;
    margin-bottom: 32px;
}

.tariffs-use-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 calc(50% - 12px);
    border-radius: 16px;
    border: 1px solid var(--dark-10);
    padding: 16px;
}

.commercial-tariffs .tariffs-use-item {
    flex: 1 1 calc(33% - 12px);

    @media screen and (max-width: 960px) {
        flex: 1 1 calc(50% - 12px);
    }
}

.commercial-tariffs .tariffs-use-item .tariffs-use-item-title {
    margin-bottom: 24px;
}

.tariffs-use-item-number {
    align-self: start;
    padding: 14px 19px;
    color: var(--green);
    background-color: var(--green-10);
    border-radius: 16px;
    font-weight: 600;
}

.tariffs-use-item-title {
    color: var(--dark-100);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.tariffs-use-item-description {
    color: var(--dark-60);
    line-height: 140%;
    list-style-type: disc;
    list-style-position: inside;
}

.tariffs-use-item-description li {
    text-indent: -23px;
    padding-left: 20px;
}

.app-wrapper .tutorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 150px;
}

.app-wrapper .tutorial:nth-child(even) .tutorial-content {
    order: 2;
}

.app-wrapper .tutorial-title {
    color: var(--dark-100);
    font-size: 34px;
    font-weight: 700;
}

.app-wrapper .tutorial-description {
    color: var(--dark-80);
    font-weight: 400;
    line-height: 140%;
}

.tutorial-description a {
    text-decoration: underline;
}

.app-wrapper .tutorial-benefits-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.app-wrapper .tutorial-benefits-list li {
    background: url('../../assets/icons/list_check_green.svg') no-repeat left center;
    background-size: 16px 16px;
    font-size: 16px;
    padding-left: 20px;
}

.tutorial-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tutorial-controls-title {
    color: var(--dark-100);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.tutorial-controls-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tutorial-controls-item-text {
    color: var(--green);
    line-height: 140%;
}

.tutorial-controls-item-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../../assets/icons/arrow_small_right_black.svg") no-repeat center center / cover;
}

.app-wrapper .tutorial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 483px;
}

.app-wrapper .tutorial-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-wrapper .tutorial__step {
    display: flex;
    gap: 16px;
}

.app-wrapper .tutorial__step-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    white-space: nowrap;
    width: 64px;
    height: 25px;
    padding: 4px 12px;
}

.app-wrapper .tutorial__step-text {
    flex: 1 1 404px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--dark-60);
}

.app-wrapper .tutorial-image {
    flex: 0 0 581px;
    height: 581px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 64px;
    padding: 125px 0;
    background-size: cover;
    border-radius: 100%;
    transition: all 0.4s ease;
}

.tutorial-equity-image {
    background: url("../../assets/images/backtesting_api.jpg") no-repeat;
}

.tutorial-future-options-image {
    background: url("../../assets/images/future_options.jpg") no-repeat;
}

.tutorial-api-options-image {
    background: url("../../assets/images/api_options.png") no-repeat;
}

.tutorial-earnings-api-image {
    background: url("../../assets/images/earnings_api.png") no-repeat;
}

.app-wrapper .tutorial-image-text {
    max-width: 464px;
    font-weight: 700;
    font-size: 56px;
    line-height: 68px;
    text-align: center;
    color: var(--white);
}

.app-wrapper .use-cases {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 86px;
}

.app-wrapper .use-cases-header {
    margin-bottom: 64px;
}

.app-wrapper .use-case {
    flex: 1 1 45%;
}

.app-wrapper .use-case__offers {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--dark-100);
    margin-bottom: 16px;
}

.app-wrapper .use-case__header {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--dark-100);
    margin-bottom: 24px;
}

.app-wrapper .use-case__list {
    list-style: none;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    color: var(--dark-60);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.app-wrapper .use-case__list-item-green {
    position: relative;
    padding: 4px 8px 4px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    background: var(--green);
    border-radius: 24px;
    color: var(--green-10);
}

.app-wrapper .use-case__list-item-green:before {
    position: absolute;
    left: 8px;
    top: 5px;
    content: '';
    display: block;
    background-color: var(--white);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-top: 6px;
}

.app-wrapper .use-case__list-item {
    position: relative;
    padding: 4px 8px 4px 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    border-radius: 24px;
    color: var(--dark-60);
}

.app-wrapper .use-case__list-item:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: '';
    display: block;
    background-color: var(--green);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-top: 6px;
}

.app-wrapper .implementation {
    width: 100%;
    max-width: 100vw;
    padding: 150px 0;
    background-color: var(--green);
    border-radius: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    transform: translateY(64px);
}

.app-wrapper .implementation__upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.app-wrapper .implementation__header {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.app-wrapper .implementation__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #DBEEE6;
}

.app-wrapper .implementation__labels {
    margin: 4px 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1000px;
    justify-content: center;
}

.app-wrapper .implementation__label {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: var(--peach);
    padding: 4px 16px;
    background-color: var(--dark-80);
    border-radius: 40px;
}

.app-wrapper .implementation__see-docs {
    margin-top: 24px;
    display: flex;
    align-items: center;
    padding: 9px 16px;
    background-color: var(--green-10);
    border-radius: 8px;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.app-wrapper .implementation__button-text {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--green);
    margin-right: 13px;
}

.vs-code {
    overflow: hidden;
    padding: 214px 120px 150px 120px;
    background: url("../../assets/images/vs-code-bg.webp") center / cover no-repeat;
}

.vs-code-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 170px;
}

.vs-code-header {
    scroll-margin-top: 80px;
    max-width: 483px;
}

.vs-code-header-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 16px 0;
}

.vs-code-header-controls {
    display: inline-flex;
    gap: 8px;
}

.vs-code-header-controls .primary-button {
    width: fit-content;
    font-weight: 400;
    font-size: 15px;
}

.vs-code-description {
    max-width: 585px;
    align-self: flex-end;
    color: var(--white);
    font-size: 34px;
    line-height: normal;
    margin: 0;
}

.vs-code-description strong {
    color: var(--white);
}

.vs-code-stepper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.vs-code-step {
    flex: 1 1 calc(25% - 30px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vs-code-step-marker-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.vs-code-step-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    border-radius: 50%;
    background-color: var(--white);
    z-index: 2;
}

.vs-code-step-marker-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200dvw;
    height: 1px;
    background-color: var(--dark-20);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.vs-code-step-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.vs-code-step-description {
    color: var(--dark-20);
    font-size: 14px;
    margin-top: -8px;
}

.app-wrapper .pricing {
    margin-bottom: 150px;
    position: relative;
}

.app-wrapper .pricing__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.app-wrapper .pricing__header_title {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    color: var(--dark-100);
}

.app-wrapper .pricing__header_controls {
    display: flex;
    gap: 16px;
}

.app-wrapper .pricing-mobile {
    display: none;
}

.app-wrapper .pricing-tariffs {
    display: flex;
    justify-content: flex-end;
    align-self: flex-start;
    gap: 2px;
    position: sticky;
    bottom: 10px;
}

.app-wrapper .pricing-tariff {
    position: relative;
    flex: 1 1 329px;
    min-height: 288px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    padding: 16px;
    background-color: #EDF7F3;
    transition: all ease 0.35s;
}

.pro-use-badge, .regular-use-badge {
    width: fit-content;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 100px;
    margin-bottom: 4px;
}

.pro-use-badge {
    background-color: var(--complete-blue);
}

.regular-use-badge {
    background-color: var(--dark-100);
}

.app-wrapper .pricing-tariff__header {
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-100);
}

.app-wrapper .pricing-tariff__descr {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--dark-60);
}

.app-wrapper .pricing-tariff__price {
    margin-top: auto;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    color: var(--green);
}

.app-wrapper .pricing-tariff__trial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px;
    background: var(--green);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: var(--white);
}

.app-wrapper .tariffs-is-pinned > .pricing-tariff {
    box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0 30px 60px -30px, rgba(10, 37, 64, 0.35) 0 -2px 6px 0 inset;
}

.app-wrapper .tariffs-is-pinned > .pricing-empty-card {
    backdrop-filter: blur(3px);
    border-radius: 8px;
}

.app-wrapper .pricing-switcher {
    flex: 0 0 204px;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    display: none;
}

.pricing-switcher-mobile {
    display: none;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--dark-20);
}

.app-wrapper .pricing-switcher__item {
    color: var(--dark-40);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    transition: all ease 0.35s;
}

.app-wrapper .pricing-switcher__item--active {
    color: var(--green);
}

.app-wrapper .pricing-empty-card {
    flex: 0 0 162px;
}

.app-wrapper .pricing-mobile {
    display: none;
}

.app-wrapper .pricing-section__title {
    padding: 16px;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: var(--dark-main);
    border-bottom: 1px solid var(--dark-100);
    margin: 0;
}

.pricing-section__description {
    display: none;
    color: var(--dark-80);
    text-align: center;
    margin: 8px 0 12.5px;
}

.pricing-section__description:only-child {
    margin: 30.5px 0;
}

.app-wrapper .pricing-row {
    display: flex;
    gap: 2px;
}

.app-wrapper .pricing-table-item:nth-child(odd) .pricing-cell {
    background-color:var(--white);
}

.app-wrapper .pricing-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 79px;
    flex: 1 1 329px;
    padding: 16px;
    background-color: var(--dark-5);
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: var(--dark-main);
}

.app-wrapper .pricing-cell__done {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background-color: var(--green);
    margin-bottom: 8px;
}

.done-icon, .none-icon, .close-icon {
    display: inline-block;
    width: auto;
}

.app-wrapper .pricing-cell__descr {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--dark-80);
}

.app-wrapper .pricing-cell:not(.empty-pricing-cell):not(:has(img)) {
    flex: 1 1 204px;
    align-items: flex-start;
}

.app-wrapper .pricing-cell:first-child {
    flex: 0 0 204px;
    align-items: flex-start;
}

.app-wrapper .pricing-cell:has(.limit-description) {
    align-items: center;
    justify-content: center;
}

.app-wrapper .limit-description {
    color: var(--dark-100);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.app-wrapper .professional-use {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    max-width: 585px;
    margin: 0 auto 150px;
}

.app-wrapper .professional-use__header {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: var(--dark-100);
}

.app-wrapper .professional-use__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--dark-60);
}

.app-wrapper .professional-use * > a {
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
}

.app-wrapper .bottom-wrapper {
    background-color: var(--dark-100);
    padding: 120px 0 250px 0;
    margin-bottom: 300px;
    position: relative;
}

.app-wrapper .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-wrapper .bottom__text {
    flex: 0 1 585px;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    color: var(--white);
}

.app-wrapper .bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.app-wrapper .faq-button {
    flex: 1 1 40%;
    text-align: center;
    color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--white);
    padding: 10px 16px;
}

.app-wrapper .bottom-video {
    position: absolute;
    right: 20%;
    bottom: -150px;
    border-radius: 16px;
}

.app-wrapper .black-text {
    color: var(--dark-100);
}

.app-wrapper .overflow-hidden {
    overflow: hidden;
}

.excel-integration {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 150px 0;
}

.excel-integration-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.excel-integration-title, .excel-integration-description {
    max-width: 585px;
}

.excel-integration-title {
    color: var(--dark-100);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;

    @media screen and (max-width: 590px) {
        font-size: 28px;
    }
}

.excel-integration-description {
    color: var(--dark-80);
    text-align: center;
    font-size: 20px;
    line-height: 28px;

    @media screen and (max-width: 590px) {
        font-size: 16px;
    }
}

.excel-integration-guide {
    display: flex;
    gap: 30px;

    @media screen and (max-width: 960px) {
        flex-direction: column;
    }
}

.excel-integration-image {
    flex: 1 1 60%;
}

.excel-integration-steps {
    flex: 1 1 40%;
    padding: 32px;
    border-radius: 24px;
    background: var(--dark-5);
}

.excel-integration-steps-order {
    flex: 1 1 50%;
    position: relative;
    counter-reset: step;
}

.excel-integration-steps-order::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--dark-10);
    top: 0;
    bottom: 0;
    left: 36px;
    margin-left: -3px;
}

@media screen and (max-width: 590px) {
    .excel-integration-steps-order::after {
        left: 6px;
    }
}

.excel-integration-step {
    padding: 20px 35px;
    position: relative;
    background-color: inherit;
    left: 36px;
    color: var(--dark-80);
    font-size: 20px;
    line-height: normal;

    @media screen and (max-width: 590px) {
        font-size: 16px;
        padding-left: 0;
    }

    .features-timeline-item-title {
        color: var(--white);
        font-size: 28px;
        font-weight: 500;
        line-height: normal;
    }

    .features-timeline-item-description {
        color: var(--dark-40);
        line-height: normal;
    }
}

.excel-integration-step::after {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-100);
    content: counter(step);
    counter-increment: step;
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    left: -15px;
    background-color: var(--dark-10);
    border: 4px solid var(--dark-10);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.excel-integration-step:first-child {
    padding-top: 0;
}

.excel-integration-step:first-child::after {
    top: 0;
}

.excel-integration-step:last-child {
    padding-bottom: 0;
}

.excel-integration-step:last-child::after {
    bottom: 0;
    top: unset;
}

@media screen and (max-width: 590px) {
    .excel-integration-step::after {
        left: -44px;
    }
}

@media screen and (max-width: 960px) {
    .app-wrapper .header-block {
        flex-direction: column;
        justify-content: start;
    }

    .app-wrapper .header__left {
        flex-basis: 100%;
        margin-bottom: 32px;
    }

    .app-wrapper .header__description {
        flex-basis: 100%;
    }

    .app-wrapper .header__logo {
        font-size: 56px;
        line-height: 1.25;
    }

    .app-wrapper .header__buttons > * {
        flex: 1 1 45%;
    }

    .app-wrapper .features-list {
        justify-content: center;
    }

    .app-wrapper .feature {
        flex-basis: 320px;
    }

    .app-wrapper .image-block__text {
        right: 32px;
        top: 32px;
    }

    .app-wrapper .tutorial {
        margin-bottom: 100px;
    }

    .app-wrapper .tutorial-content {
        max-width: unset;
    }

    .app-wrapper .tutorial-content-reversed {
        order: 1
    }
}

@media screen and (max-width: 1280px) {
    .app-wrapper .pricing-tariffs {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 1062px) {
    .app-wrapper .tutorial {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .app-wrapper .tutorial-image {
        padding: 82px 0;
        flex-basis: 336px;
        width: 336px;
        height: 336px;
        gap: 24px;
    }

    .app-wrapper .tutorial-image-text {
        font-size: 34px;
        line-height: 41px;
    }

    .app-wrapper .use-case {
        flex-basis: auto;
    }

    .app-wrapper .pricing-cell {
        font-size: 14px;
        line-height: 17px;
        color: var(--dark-main);
        min-height: 79px;
    }

    .app-wrapper .pricing-section__title {
        font-size: 16px;
    }

    .app-wrapper .professional-use {
        max-width: 623px;
    }

    .app-wrapper .bottom__text {
        font-size: 34px;
    }

    .only-desktop-visibility {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .individual-tariffs, .commercial-tariffs {
        gap: 32px 16px;
    }

    .app-wrapper .tutorial-image-text {
        max-width: 260px;
    }

    .app-wrapper .pricing-switcher {
        height: 330px;
        flex: 0 1 185px;
    }

    .app-wrapper .pricing-switcher__item {
        font-weight: 600;
        font-size: 16px;
        padding: 0 5px;
    }

    .app-wrapper .pricing-cell-title {
        display: none;
        flex: 0 1 185px !important;
    }

    .app-wrapper .pricing-switcher {
        display: flex;
    }

    .app-wrapper .pricing-empty-card {
        display: none;
    }

    .vs-code {
        padding: 164px 40px 100px 40px;
    }

    .vs-code-inner-wrapper {
        gap: 100px;
    }

    .vs-code-description {
        align-self: flex-start;
    }

    .vs-code-step {
        flex: 1 1 calc(50% - 30px);
    }

    .app-wrapper .bottom-controls {
        flex-direction: column;
        justify-content: unset;
        align-items: unset;
        gap: 16px;
    }

    .app-wrapper .faq-button {
        order: 2;
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 767px) {
    .app-wrapper .header-block {
        margin-bottom: 100px;
    }

    .app-wrapper .header__buttons {
        flex-direction: column;
    }

    .app-wrapper .header__buttons > * {
        height: 62px;
        width: 100%;
        flex-basis: auto;
    }

    .app-wrapper .doc-button {
        display: flex;
        justify-content: center;
    }

    .app-wrapper .image-block {
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }

    .app-wrapper .features {
        margin-bottom: 100px;
    }

    .app-wrapper .features__header {
        font-size: 28px;
        line-height: 36px;
    }

    .app-wrapper .features .feature {
        flex-basis: 100%;
    }

    .app-wrapper .implementation__see-docs {
        justify-content: center;
        width: 100%;
    }

    .app-wrapper .bottom {
        flex-direction: column;
        gap: 32px;
    }

    .app-wrapper .bottom > * {
        flex-basis: auto;
    }

    .app-wrapper .bottom-video {
        width: 100%;
        right: 0;
        bottom: -150px;
        border-radius: 25px;
        padding: 16px;
    }
}

@media screen and (max-width: 960px) and (min-width: 591px) {
    .app-wrapper .pricing-section__title {
        text-align: center;
        padding: 12.5px 0 0 0;
        border-bottom: none;
    }

    .pricing-section__description {
        display: block;
    }

    .pricing-tariffs {
        flex-wrap: wrap;
    }

    .pricing-tariffs .tariff-enterprice {
        flex: 1 1 100%;
    }

    .pricing-tariffs .tariff-extended, .pricing-tariffs .tariff-backtest, .pricing-tariffs .tariff-futures, .pricing-tariffs .tariff-real-time-api {
        flex: 0 1 calc(25% - 2px);
    }

    .pricing-row .tariff-enterprice {
        display: none;
    }
}

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

    .individual-tariffs, .commercial-tariffs {
        flex-direction: column;
        gap: 16px 0;
    }

    .app-wrapper .tutorial-image-text {
        max-width: 248px;
    }

    .tariff-enterprice .pricing-tariff__price {
        margin: 24px 0 0 0;
    }

    .pricing-switcher-mobile {
        display: flex;
    }

    .app-wrapper .pricing__header_controls {
        flex-direction: column;
    }

    .app-wrapper .pricing-tariff {
        justify-content: stretch;
        min-height: unset;
    }

    .app-wrapper .pricing-tariff__price {
        margin: 16px 0;
    }

    .app-wrapper .pricing-mobile {
        display: block;
    }

    .app-wrapper .pricing-cell-title {
        display: flex;
    }

    .app-wrapper .implementation__header {
        font-size: 28px;
    }

    .app-wrapper .implementation__labels {
        margin: 16px 0 16px;
    }

    .vs-code {
        padding: 164px 16px 100px 16px;
    }

    .vs-code-header-controls {
        display: flex;
        flex-direction: column;
    }

    .vs-code-header-controls .primary-button {
        width: 100%;
    }

    .vs-code-step {
        flex: 1 1 calc(100%);
    }

    .app-wrapper .bottom-controls {
        width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .nav.nav-tabs {
        width: 83.33333333%;
        margin: 0 auto;
    }
}
