/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
@font-face {
    font-family: 'Inter Tight';
    src: url('./../../assets/fonts/InterTight-VariableFont_wght.ttf') format('truetype');
}

html, body {
    font-family: 'Inter Tight';
    font-variation-settings: 'wght' 400, 'wdth' 100;
    font-size: 16px;
    color: black;
}
html {
    background: white;
}
* {
    font-family: 'Inter Tight';
}
.logo {
    display: flex;
    align-items: center;
}

.logo__icon {
    margin-right: 2.5px;
}

.logo__icon img {
    width: 24px;
    height: auto;
}

.logo__text {
    font-size: 21px;
    font-variation-settings: "wght" 800, "wdth" 100;
    text-transform: lowercase;
    letter-spacing: -1.13px;
    padding-bottom: 4px;
    cursor: default;
    color: black;
}
.header {
    padding: 20px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.section_header {
    position: relative;
}
.section.section_header::after {
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(to top, rgb(238 63 31 / 25%) 52%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}
.promolabel {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
.promolabel-main {
    background-color: rgb(240 64 31 / 0.23);
    color: rgb(240 64 31 / 1);
    font-size: 17px;
    font-variation-settings: "wght" 600, "wdth" 100;
    padding: 7px 13.5px 7px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.promolabel-main__icon {
    width: 24px;
    height: 24px;
}
.burger {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* gap: 3px; */
    cursor: pointer;
    /* background-color: #ccc; */
    padding: 12px 15px;
    right: -5px;
    transition: 1s;
}
.burger::before {
    content: "";
    width: 18px;
    height: 2px;
    background-color: black;
    display: block;
    border-radius: 2px;
    right: 5px;
    position: absolute;
    top: 8.5px;
    transition: 1s;
}
.burger::after {
    content: "";
    width: 15px;
    height: 2px;
    background-color: black;
    display: block;
    border-radius: 2px;
    right: 5px;
    position: absolute;
    top: 13.5px;
}
.section-intro {
    margin-bottom: 50px;
}
.section-intro--header {
    color: white;
    text-align: center;
}
.section-intro__title {
    font-size: 66px;
    font-variation-settings: "wght" 600, "wdth" 100;
    line-height: 65px;
    margin-bottom: 20px;
    color: black;
}
.section-intro__desc {
    color: rgb(255, 255, 255, 0.6);
    margin-bottom: 14px;
    display: none;
}
.section-intro__criterion {
    color: black;
    font-size: 18px;
    margin-bottom: 40px;
}
.section-intro__desc b {
    color: white;
    font-variation-settings: "wght" 600, "wdth" 100;
}
.btn {
    padding: 14px 24px;
    outline: 0;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    font-size: 20px;
    font-variation-settings: "wght" 500, "wdth" 100;
    transition: 0.15s;
}
.btn_primary {
    background-color: #f0401f;
    color: #fff;
}
.btn_primary:hover {
    background-color: rgb(240 64 31 / 88%);
}
.btn_primary:active {
    background-color: #d5381b;
}
.btn_blue {
    background-color: #005FFF;
    color: white;
}

.section-intro--actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 10;
}
.section-intro--actions .btn_gray {
    background-color: rgb(255, 255, 255, 0.2);
    color: white;
}
/*.slider__slide {
    text-align: center;
}*/
/*.slider__slide img {
    width: 80%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}*/
#prevSlide, #nextSlide {
    background-color: #00000096;
    border-radius: 100px;
    display: flex;
    padding: 5px;
    border: 0;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}
#prevSlide {
    position: relative;
    left: 0;
}
#nextSlide {
    position: relative;
    right: 0;
}
#prevSlide > img, #nextSlide > img {
    width: 9px;
    height: auto;
}
#nextSlide > img {
    transform: rotateZ(180deg);
}
.slider * {
    transition: 1s;
}
.slider { 
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0;
    margin-top: -180px;
}
.slider--nav {
    display: flex;
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(50% + 90px - 15px);
    padding: 0px 29px;

}
.slider--viewport {
    overflow: hidden;
    width: 100%;
}
.slider-slides {
    display: flex;
    transform: translateX(0%);
}
.slider__slide {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    padding: 180px 10% 0;
    overflow: hidden;
}
.slider__slide-firstPart {
    position: relative;
    flex: 0 0 24%;
    display: flex;
    padding-right: 2px;

}
.slider__slide-firstPart > img {
/*    box-shadow: -45px 2px 89px 89px rgb(238 63 31 / 25%);*/
    border-top-left-radius: 61px;
    border-top-right-radius: 61px;
    position: relative;
}
.slider__slide-firstPart::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    box-shadow: 0 2px 89px 89px rgb(238 63 31 / 25%);
}
.slider__slide-secondPart::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    box-shadow: 0 2px 89px 89px rgb(238 63 31 / 25%);
}
.slider__slide-secondPart {
    position: relative;
    flex: 0 0 76%;
    display: flex;
    padding-left: 2px;
}
/*.slider__slide-secondPart > img {
    box-shadow: 152px 2px 89px 89px rgb(238 63 31 / 25%);
}*/
.slider__slide img {
/*    width: 100%;
    max-width: initial;*/
    max-width: 100%;
    height: auto;
    display: flex;
}

.features {
    background-color: #F5F5F7;
    padding: 53px 45px;
}
.features-header__title {
    font-size: 56px;
    font-variation-settings: "wght" 700, "wdth" 100;
    margin-bottom: 16px;
    line-height: 64px;
}
.features-header__desc {
    font-size: 24px;
    line-height: 36px;
    color: rgb(0, 0, 0, 0.6);
}
.features-row-item {
    background-color: white;
    border-radius: 18px;
    flex: 0 0 33.333333%;
    clip-path: border-box;
    display: flex;
    flex-direction: column;
justify-content: space-between;
}
.features-row-item_featureCards {
    justify-content: unset;
}
.features-row-item_black {
    background-color: black;
}
.features-row-item_black .features-row-item__title {
    color: white;
}
.features-row-item_black .features-row-item__desc {
    color: rgb(255, 255, 255, 0.6);
}

.features-row-item_black .features-row-item__desc b {
    color: white;
}
.features-row-item .chart img {
    max-width: 100%;
    height: auto;
}
.features-row-item__title {
    font-size: 24px;
    font-variation-settings: "wght" 700, "wdth" 100;
    margin-bottom: 10px;
    line-height: 28px;
}
.features-row_featureCards .features-row-item__title {
    font-size: 22px;
}
.features-row-item__desc {
    font-size: 16px;
    margin-bottom: 10px;
    color: rgb(0, 0, 0, 0.6);
    line-height: 23px;
}
.features-row-item__desc b {
    font-variation-settings: "wght" 600, "wdth" 100;
    color: black;
}
.revenue__label {
    font-size: 18px;
    font-variation-settings: "wght" 500, "wdth" 100;
    margin-bottom: 8px;
}
.revenue-value {
    display: flex;
    align-items: center;
}
.revenue-value__value {
    color: #F0401F;
    font-variation-settings: "wght" 600, "wdth" 100;
    font-size: 26px;
    margin-right: 12px;
}
.diff__percent {
    color: #66C61C;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.diff {
    display: flex;
    align-items: center;
}
.diff__icon {
    display: flex;
    margin-right: 6px;
}
.TabsPeriod {
    display: flex;
    align-items: center;
    background-color: #f4f4f5;
    padding: 3px;
    border-radius: 8px;
    white-space: nowrap;
}

.TabsPeriod__item {
    display: flex;
    padding: 7px 10px;
    margin-right: 2px;
    cursor: pointer;
    border-radius: 6px;
}

.TabsPeriod__item:nth-child(5) {
    order: 6;
    transition: order none;
}

.TabsPeriod__item:hover {
    background-color: white;
}

.TabsPeriod__item:hover span {
    color: black;
}

.TabsPeriod__item:last-child {
    margin-right: 0;
    padding: 7px 9px;
}

.TabsPeriod__item:last-child img {
    width: 16px;
    height: auto;
}

.TabsPeriod__item span {
    color: #818181;
}

.TabsPeriod__item_selected {
    font-variation-settings: "wght" 500, "wdth" 100;
    background-color: white;
}

.TabsPeriod__item_selected span {
    color: black;
}
.period {
    display: flex;
    padding-left: 32px;
    padding-right: 32px;
}
.features-row-item--header {
    margin-bottom: 29px;
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
}
.revenue {
    margin-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
}
.features-row {
    display: grid;
    gap: 12px;
}
.chart {
    display: flex;
}
.page {
    max-width: 2240px;
    margin: 0 auto;
} 
/*.features-row_firstLine .features-row-item-statistic, .features-row_firstLine .features-row-item-body {
    height: 367px;
}*/
.features-row-item_withMobileScreen .features-row-item-body, .features-row-item_withMobileScreen .mobileScreen {
    display: flex;
    justify-content: center;
}
.features-row_firstLine {
    grid-template-columns: 1fr 1fr 1fr;
}
.features-row_secondLine {
    grid-template-columns: 1fr 1fr 1fr;
}

.features-row_fifthLine {
    grid-template-columns: 1.25fr 1fr;
}
.features-header {
    margin-bottom: 65px;
}
.features-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.features-row_secondLine .features-row-item {
    flex: 0 0 50%;
}
.features-row_featureCards {
    grid-template-columns: repeat(4, 1fr);
}
.features-row-item-body {
    padding: 0 32px 32px 32px;
}
.messagesWindow {
    background-color: #f4f4f5;
    border-radius: 15px;
    color: white;
}
.messagesWindow--containerMessages {
    padding: 10px;
}
.messagesWindow-row {
    display: flex;
}
.messagesWindow-row_right {
    justify-content: flex-end;
}
.messagesWindow-row__msg {
    background-color: rgb(0 0 0 / 5%);
    color: black;
    padding: 10px;
    display: flex;
    border-radius: 15px;
    max-width: 323px;
    font-size: 15px;
    line-height: 18px;
}
.msgInput__output {
    background-color: rgb(0 0 0 / 5%);
    color: black;
    padding: 10px;
    display: flex;
    border-radius: 15px;
    max-width: 323px;
}
.msgInput {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.msgInput--left img {
    width: 23px;
}
.msgInput--right {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.msgInput__name {
    color: rgb(255, 255, 255, 0.6);
    font-size: 12px;
}
.msgInput__output {
    font-size: 15px;
    line-height: 18px;
}
.messagesWindow--inputMsg {
    padding: 10px;
}
.messagesWindow-form__input {
    background-color: rgb(0 0 0 / 5%);
    color: black;
    padding: 7px;
    border-radius: 100px;
    font-size: 14px;
}
.messagesWindow-form__sbm {
    background-color: #4778EB;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.messagesWindow-form__sbm img {
    display: flex;
    width: 12px;
    height: 15px;
    left: 0.8px;
    position: relative;
}
.messagesWindow-form {
    display: flex;
    gap: 5px;
    align-items: center;
}
.messagesWindow-form--input {
    flex-grow: 1;
}
.features-row-item_withMobileScreen .features-row-item-body {
    padding: 0 32px 0 32px;
} 
.staff-list-item {
    border: 1px solid rgb(0, 0, 0, 10%);
    display: flex;
    border-radius: 13px;
    gap: 27px;
    padding: 10px;
    flex: 0 0 35%;
    justify-content: space-between;
}
.staff-list-item--left {
    display: flex;
    gap: 16px;
    align-items: center;
}
.staff-list-item--right {
    display: flex;
    align-items: center;
}
.staff-list-item__avatar {
    display: flex;
}
.staff-list-item__avatar img {
    width: 40px;
    height: 40px;
    border-radius: 11px;
}
.staff-list-item__name {
    font-size: 15px;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.badge_role {
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.badge_role-admin {
    color: #D10D0D;
    background-color: rgb(209, 13, 13, 0.10);
}
.badge_role-manager {
    color: #7117C0;
    background-color: rgb(113, 23, 92, 0.10);
}
.badge_role-accountant {
    color: #319328;
    background-color: rgb(49, 147, 40, 0.10);
}
.badge_role-analyst {
    color: #926B1D;
    background-color: rgb(146, 107, 29, 0.10);
}
.badge_role-marketolog {
    color: #0C628A;
    background-color: rgb(12, 98, 138, 0.10);
}
.badge_role-owner {
    color: #FF7207;
    background-color: rgb(255, 114, 7, 0.10);
}
.staff-list {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.staff {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.staff .staff-list:last-child {
    left: 41px;
    position: relative;
}
.features-row-item_staff .features-row-item-body {
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;

}
.features-row-item_staff .features-row-item--header, .features-row-item_staff .features-row-item__desc {
    margin-bottom: 0;
}
.features-row-item_staff {
    overflow: hidden;
}
.features-row_thirdLine {
    grid-template-columns: 1fr 1fr 1fr;
}
/*.features-row_thirdLine .features-row-item_withMobileScreen .features-row-item-body {
    height: 244px;
}*/
.features-row_fourthLine {
    grid-template-columns: 1fr 1fr 1fr;
}
.payments {
    display: grid;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    /* justify-content: center; */
}
/*.payments-item {
    flex: 0 0 31%;
}*/
.payments-item img {
    max-width: 100%;
}
.typesConcerts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.typesConcerts-list-item {
    background-color: #E3E4EA;
    padding: 7px 10px;
    border-radius: 8.5px;
    font-size: 14px;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.marketdata-row {
    display: flex;
    gap: 20px;
}
.marketdata-row-item img {
    width: 100%;
}
.features-row-item_final {
    background-color: #FEC739;
}
.widget_goWork-header {
    font-size: 36px;
    font-variation-settings: "wght" 600, "wdth" 100;
}
.widget_goWork-header__button {
    background-color: #000;
    color: #FEC739;
    padding: 16px 27px;
    display: flex;
    align-self: baseline;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    font-size: 20px;
        border: 1px solid black;

}
.widget_goWork-header__button > span {
    display: flex;
}
.widget_goWork-header--actions {
    display: flex;
    gap: 7px;
}
.widget_goWork-header__button_demo {
    background-color: #FEC739;
    border: 1px solid black;
    color: black;
    padding: 16px 27px;
    display: flex;
    align-self: baseline;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    font-size: 20px;
}
.widget_goWork {
    display: flex;
    flex-direction: column;
    gap: 44px;
}
.features-row-item_final .features-row-item__title {
    font-size: 40px;
    font-variation-settings: "wght" 800, "wdth" 100;
    line-height: 46px;
}
.menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    display: none;
    padding: 20px 45px;
    z-index: 11;
}
.menu.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.menu.active .burger::before {
    width: 15px;
    transform: rotate(45deg);
    top: 10px;
}
.menu.active .burger::after {
    transform: rotate(-45deg);
    top: 10px;
    /* position: relative; */
    left: 10px;
}
.menu .header {
    padding: 0;
}
.menu-info {
    color: white;
}
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.menu-list > li > a {
    font-variation-settings: "wght" 500, "wdth" 100;
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.footer-items__item a {
    cursor: pointer;
}
.contacts__label {
    color: rgb(0, 0, 0, 0.36);
    font-size: 12px;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.organization-info__label {
    color: rgb(0, 0, 0, 0.36);
    font-size: 12px;
    font-variation-settings: "wght" 500, "wdth" 100;
}
.contacts__content, .organization-info__content {
    font-size: 15px;
    font-variation-settings: "wght" 600, "wdth" 100;
    color: black;
}
.menu-info {
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.contacts, .organization-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.organization-info__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.menu-buttons .btn_gray {
    background-color: rgb(255, 255, 255, 0.2);
    color: white;
}
.menu--bottom {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.menu-info.footer-additional .organization-info__label {
    color: rgb(255 255 255 / 55%);
}

.menu-info.footer-additional .contacts__content {
    color: white;
}
.menu-info.footer-additional .organization-info__content {
    color: white;
} 
.menu-info.footer-additional .contacts__label {
    color: rgb(255 255 255 / 55%);
}
body.show-menu {
    overflow: hidden;
}
.menu--top {
    margin-bottom: 20px;
}
.features-row-item_gateways {
    justify-content: flex-start;
}
.afishaLogos {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.afishaLogos img {
    max-width: 100%;
        filter: grayscale(1);
    opacity: 0.75;
}
.animate-in {
            animation-name: enter;
            animation-duration: 0.15s;
            animation-fill-mode: forwards;
        }
        @keyframes enter {
            0% {
                opacity: 0;
                transform: translate3d(0, -5px, 0) scale(0.98);
            }
            100% {
                opacity: 1;
                transform: translate3d(0, 0, 0) scale(1);
            }
        }
        .animate-out {
            animation-name: exit;
            animation-duration: 0.25s;
            animation-fill-mode: forwards;
        }

        @keyframes exit {
            0% {
                opacity: 1;
                transform: translate3d(0, 0, 0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate3d(0, -5px, 0) scale(0.98);
            }
        }
        .llModal, .llModalCallback {
            width: 361px;
            position: relative;
            display: flex;
            padding: 20px 16px;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
            background-color: white;
            border-radius: 12px;
            border: 0.5px solid #F2F4F7;
            box-shadow: 0px 4px 16px -9px rgba(0, 0, 0, 0.25);
        }

        .llModal input:focus,
        .llModal textarea:focus,
        .llModalCallback input:focus,
        .llModalCallback textarea:focus {
            animation: blink_input_opacity_to_prevent_scrolling_when_focus 0.01s;
        }

        .llModal-body, .llModalCallback-body {
            width: 100%;
            height: 100%;
            display: flex;
        }

        .llModal-content, .llModalCallback-content {
            display: flex;
            width: 100%;
        }

        .llModal-content iframe, .llModalCallback-content iframe {
            border: 0;
            border-radius: 12px;
            width: 100%;
        }
        .llModal-header, .llModalCallback-header {
            display: flex;
            flex-direction: column;
            gap: 7.5px;
        }
        .llModal-header__title, .llModalCallback-header__title {
            font-variation-settings: "wght" 600, "wdth" 100;
            font-size: 18px;
        }
        .llModal-header__description, .llModalCallback-header__description {
            color: #737373;
            font-variation-settings: "wght" 500, "wdth" 100;
            font-size: 14px;
            line-height: 18px;
            margin-bottom: 4px;
        }
        .input-field {
            position: relative;
            width: 100%;
        }
        .input-field label {
            color: #171717;
            display: block;
            font-size: 14px;
            font-variation-settings: "wght" 500, "wdth" 100;
            margin-bottom: 8px;
        }
        .input-field input, .input-field select, .input-field textarea {
            background-color: #fff;
            border: 1.45px solid #aeb1c2cc;
            border-radius: 10px;
            color: #171717;
            font-size: 16px;
            padding: 9.75px 13px;
            width: 100%;
        }
        .llModal-headerWithIcon {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .llModal-headerWithIcon--header {
            display: flex;
        }

        .llModal-headerWithIcon__title {
            font-weight: 600;
            font-size: 18px;
        }

        .llModal-headerWithIcon__description {
            font-weight: 500;
            font-size: 14px;
            color: #737373;
        }

        .llModal-headerWithIcon--body {
            display: flex;
            flex-direction: column;
            gap: 7.5px;
            line-height: 20px;
        }

        .llModal-headerWithIcon .featuredIcon {
            padding: 6px;
            border: 6.5px solid #FEF6EE;
        }

        .llModal-footer, .llModalCallback-footer {
            display: flex;
            flex-direction: column;
            align-self: stretch;
            gap: 8px;
        }
        .llModal-footer .btn, .llModalCallback-footer .btn {
            padding: 10.25px 17px;
        }

        .llModal_forImage {
            width: fit-content;
        }

        .llModal-container, .llModalCallback-container {
            display: flex;
            width: 100vw;
            height: 100%;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1400;
            justify-content: center;
            align-items: center;
            overflow: auto;
            overscroll-behavior-y: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: rgb(224 224 224 / 70%);
        }

        .llModal-container, .llModalCallback-container {
            display: none;
        }

        .llModal-container.show, .llModalCallback-container.show {
            display: flex;
        }

        .wrapperForllModal {
            position: relative;
        }

        .wrapperForllModal_show-left .llModal {
            left: 0;
        }

        .wrapperForllModal_show-right .llModal {
            right: 0;
        }

        .ReactCrop__crop-mask {
            border-radius: 11px;
        }

        .llModal-header__close {
            position: absolute;
            cursor: pointer;
            left: 11px;
            top: -33px;
            display: flex;
        }
    .slider__slide-secondPart > img {
        border-top-left-radius: 27px;
        border-top-right-radius: 27px;
    }
.btn_primary.btn_outline {
    border: 1px solid #f0401f;
    background-color: transparent;
    color: #f0401f;
}
.callback {
    background-color: black;
    color: white;
    padding: 79px 50px 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 200px;
    position: relative;
    top: 0;
    left: 0;

}
.callback::after {
    background: radial-gradient(circle, rgb(240 64 31 / 20%) 0%, rgba(138, 37, 18, 0) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.callback-header__title {
    font-variation-settings: "wght" 700, "wdth" 100;
    font-size: 56px;
}
.callback-header__additional {
    font-variation-settings: "wght" 500, "wdth" 100;
    font-size: 24px;
}
.callback-actions__registration {
    padding: 13px 23px 13px 27px;
    border-radius: 17px;
    font-variation-settings: "wght" 600, "wdth" 100;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.callback-actions__registration > span {
    display: flex;
}
.callback-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.callback-actions__demo {
    padding: 13px 27px;
    border-radius: 17px;
    font-variation-settings: "wght" 600, "wdth" 100;
    font-size: 20px;
    background-color: rgb(255 255 255 / 0.16);;
}
.callback-header {
    display: flex;
    flex-direction: column;
    gap: 19px;

}
.callback--main {
        position: relative;
    z-index: 15;
    flex-direction: column;
    display: flex;
    gap: 44px;
}
.callback .promolabel {
    justify-content: flex-start;
    margin-bottom: 3px;
}
.callback-actions--main {
    display: flex;
    gap: 11px;
}
.footer {
    display: flex;
    position: relative;
    z-index: 15;
    gap: 41px;
    font-size: 20px;
    font-variation-settings: "wght" 600, "wdth" 100;

    justify-content: space-between;
}
.footer-items {
    display: flex;
    flex-direction: column;
    gap: 41px;
}
.footer__companyname {
    margin-top: 165px;
}
@media(max-width: 1280px) {
    .footer__companyname {
        margin-top: 36px;
    }
}
.footer-items a {
    color: white;
    text-decoration: none;
}
.mobileScreen img {
    width: 85%;
    max-width: 450px;
    height: auto;
}
.features-row_featureCards .features-row-item__desc {
    margin-bottom: 0;
}
.alert-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert {
  padding: 12px 20px;
  border-radius: 6px;
  color: white;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: fadeInOut 4s ease forwards;
  opacity: 0;
}

.alert.success { 
    background-color: #c3ffdb;
    font-variation-settings: 'wght' 500, 'wdth' 100;
    color: #027a48;
    padding: 11px 14px;
    border-radius: 11px;
}
.alert.error { background-color: #f44336; }
.alert.info { background-color: #2196f3; }
.alert.warning { background-color: #ff9800; }

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

.imgFz {
    max-width: 100%; 
    height: 200px;
    width: auto;
}

@media(max-width: 1800px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 49px;
        border-top-right-radius: 49px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 27px;
        border-top-right-radius: 27px;
    }
}
@media(max-width: 1500px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 45px;
        border-top-right-radius: 45px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
}
@media(max-width: 1400px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
}
@media (max-width: 1180px) {
    .afishaLogos {
        flex-direction: row;
        max-width: 100%;
        gap: 5px;
    }
    .imgFz {
        height: auto;
    }
    .slider__slide-firstPart > img {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 17px;
        border-top-right-radius: 17px;
    }
    .features-header__title {
        font-size: 32px;
        line-height: 38.5px;
    }
    .features-header__desc {
        font-size: 20px;
        line-height: 27.5px;
    }
    .features-row_firstLine, .features-row_secondLine, .features-row_thirdLine, .features-row_fourthLine, .features-row_fifthLine {
        grid-template-columns: 1fr;
    }
    .header {
        padding: 20px 20px;
    }
    .features {
        padding: 45px 20px;
    }
    .features-row_firstLine .features-row-item-statistic, .features-row_firstLine .features-row-item-body {
        height: auto;
    }
    .features-row-item_staff .features-row-item--header, .features-row-item_staff .features-row-item__desc {
        margin-bottom: 29px;
    }
    .staff {
        padding-bottom: 32px;
    }
    .menu {
        padding: 20px;
    }
/*    .section-intro--header {
        display: flex;
        flex-direction: column;
        text-align: left;
    }*/
    .section-intro {
        padding-left: 20px;
        padding-right: 20px;
    }
    .section-intro__title {
        font-size: 33px;
        line-height: 36px;
        order: 1;
/*        margin-bottom: 9px;*/
    }
    .section-intro__desc {
        line-height: 20px;
        order: 2;
        margin-bottom: 30px;
        font-variation-settings: 'wght' 400, 'wdth' 100;
    }
/*    .section-intro--actions {
        flex-direction: column;
    }*/
    img {
        max-width: 100%;
    }
    .staff-list-item__avatar img {
        max-width: 40px;
    }
    .marketdata-row {
        flex-direction: column;
    }
    .features-row-item_final .features-row-item__title {
        font-size: 24px;
        line-height: 29px;
    }
    /*.slider__slide img {
        width: 95%;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }*/
    .widget_goWork-header {
        font-size: 25px;
        font-variation-settings: "wght" 700, "wdth" 100;
        color: #000000c9;
    }
    .widget_goWork-header__button, .widget_goWork-header__button_demo {
        padding: 13px 23px;
        border-radius: 15px;
        font-size: 20px;
    }
    .callback {
        padding: 37px 16px 40px 16px;
    }
/*    .callback::after {
        top: -159px;
    }*/
}
#prevSlide[disabled] {
    opacity: .3;
}
@media(max-width: 1280px) {
    .features-row_featureCards {
        grid-template-columns: 1fr 1fr;
    }
    .footer {
        flex-direction: column;
    }
    .footer-items {
        flex-direction: column;
        gap: 16px;
    }
    .footer__companyname {
        order: 2;
    }
}
@media(max-width: 1024px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
}
@media(max-width: 992px) {
/*    .slider__slide {
        background-color: black;
    }*/
    .slider__slide-secondPart > img {
        border-top-left-radius: 13px;
        border-top-right-radius: 13px;
    }
    .slider__slide {
        padding: 180px 0 0;
    }
    .slider__slide > img {
        width: 180%;
        max-width: unset;
    }
    .slider { 
        width: 100%;
    }
    #prevSlide {
        left: 3px;
        background-color: #00000052;
    }
    #nextSlide {
        right: 3px;
        background-color: #00000052;
    }
    #prevSlide > img, #nextSlide > img {
        width: 9px;
    }
    .slider {
        padding: 0;
    }
    .slider__slide::after {
/*        background: linear-gradient(90deg, rgb(255 255 255 / 0%) 50%, rgb(0 0 0) 100%);*/
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
    }
    .widget_goWork-header--actions {
        flex-direction: column;
    }
    .slider--nav {
        padding: 0px 5px;
    }
}

@media(max-width: 900px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
}

@media(max-width: 800px) {
    .callback-header__title {
        font-size: 36px;
    }
    .callback-header__additional {
        font-size: 18px;
        line-height: 22px;
    }
    .slider__slide-firstPart > img {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}
    bpd {
        display: block;
    }
@media(max-width: 700px) {
    .features-row_featureCards {
        grid-template-columns: 1fr;
    }
    .features-row-item__iconFeature svg {
        width: 45px;
        height: 45px;
    }
    .features-row-item__iconFeature svg path {
        stroke-width: 4px;
    }
    bpmd {
        display: block;
    }

    .slider__slide-firstPart > img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 9px;
        border-top-right-radius: 9px;
    }
}

@media(max-width: 700px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }
}

@media(max-width: 600px) {
    .callback-actions--main {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media(max-width: 550px) {
    .payments {
    grid-template-columns: repeat(3, 1fr);
    /* justify-content: center; */
}
    .slider__slide-firstPart > img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 7px;
        border-top-right-radius: 7px;
    }
}

@media(max-width: 550px) {
    .slider__slide-firstPart > img {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }
    .slider__slide-secondPart > img {
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }
    .features-row_featureCards {
        grid-template-columns: 100%;
    }
} 

@media(max-width: 450px) {
    .section-intro__title {
        font-size: 30px;
        line-height: 33px;
    }

} 

@media(max-width: 405px) {
    .section-intro__title {
        font-size: 29px;
        line-height: 32px;
    }
} 

@media(max-width: 390px) {
    .section-intro__title {
        font-size: 28px;
        line-height: 31px;
    }
} 

@media(max-width: 380px) {
    .section-intro__title {
        font-size: 27px;
        line-height: 30px;
    }
} 