@font-face {
    font-family: 'fontello';
    font-display: swap;
    src: url('../fonts/fontello.woff2') format('woff2'),
        url('../fonts/fontello.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.f-icon {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body.home_web {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.portal-div{
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

.container .inner_items {
    display: flex;
}

.preloader {
    position: fixed;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: .3s all ease;
    z-index: 10000;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.text-center {
    text-align: center;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.section_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #2F3C4E;
    text-align: center;
    margin-bottom: 20px;
}

.section_subtitle {
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.button {
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    display: inline-block;
    padding: 10px 22px;
    border-radius: 7px;
    transition: .3s all ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, .3);
}

.button.button_white {
    color: #336799;
    background: #FFFFFF;
}

.button.button_white:hover {
    background: #e1e4ea;
}

.button.button_blue {
    color: #fff;
    background: #336799;
    margin-top: 40px;
}

.button.button_blue:hover {
    background-color: #5087ba;
}

.button.button_blue:active {
    background-color: #215280;
}

.button.button_blue_outline {
    background: #FFFFFF;
    border: 1px solid #336799;
    color: #336799;
}

.button.button_green {
    color: #fff;
    background: #1DBDC3;
}

.button.button_green:hover {
    background-color: #3fcfd4;
}

.button.button_green:active {
    background-color: #15abb0;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.main_section {
    background-image: url("../../../img/hero_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.inner_page {
    background-image: url("../../../img/inner_bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto
}

/* HEADER */

header {
    padding: 40px 0 45px 0;
}

header.white_header {
    padding: 25px 0 20px 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 51px -9px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: .4s all ease;
}

.main_page .white_header {
    top: -150px;
}

.main_page .white_header.show {
    top: 0;
}

header nav {
    margin-right: 40px;
}

header nav .dropdown {
    position: relative;
}

header nav .dropdown a {
    display: flex;
    align-items: center;
}

header nav .dropdown>a:after {
    content: '';
    display: block;
    width: 11px;
    height: 9px;
    background-image: url("../../../img/header_dropdown_arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
}

header.white_header nav .dropdown>a:after {
    background-image: url("../../../img/header_dropdown_arrow_blue.svg");
}

header nav .dropdown .dropdown_elements {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    z-index: 1;
    padding: 15px;
    min-width: 215px;
    opacity: 0;
    visibility: hidden;
    transition: .3s all ease;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
    border-radius: 1px;
}

header nav .dropdown:hover .dropdown_elements {
    top: 45px;
    visibility: visible;
    opacity: 1;
}

header nav .dropdown .dropdown_elements li {
    margin-bottom: 10px;
    white-space: nowrap;
}

header nav .dropdown .dropdown_elements li:last-child {
    margin-bottom: 0;
}


header nav .dropdown .dropdown_elements a {
    color: #336799;
    padding: 0;
    display: flex;
    gap: 12px;
}

header nav .dropdown .dropdown_elements a:hover {
    color: #1DBCC2;
}

header nav .dropdown .dropdown_elements a:hover svg,
header nav .dropdown .dropdown_elements a:hover path {
    fill: #1DBCC2;
}


header nav ul {
    gap: 30px;
}

header nav a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    transition: .3s all ease;
    display: inline-block;
    padding: 20px 0;

}

header.white_header nav a {
    color: #336799;
}

header nav a:hover {
    color: #336799;
}

header .header_action {
    gap: 13px;
}

header .header_action a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    display: inline-block;
    padding: 12px 25px;
    background: #189AB9;
    border-radius: 7px;
    border: 1px solid #189AB9;
}

header .header_action a.login {
    background: #FFFFFF;
    border-color: #12A5B0;
    color: #1DBAC2;
}


/* SECTION HERO */

.hero {
    padding-bottom: 180px;
}

.hero_block>div {
    flex: 0 0 auto;
    width: 50%;
}

.hero_block>div img {
    max-width: 100%;
}

.hero_titles h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #FFFFFF;
    letter-spacing: -0.022em;
    margin-bottom: 20px;
    max-width: 520px;
}

.hero_titles h2 span {
    color: #1DBCC2;
    border-bottom: 2.5px solid #1DBCC2;
}

.hero_titles .hero_description {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.021em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 520px;
}

.hero_info_graphics {
    text-align: right;
}


/* Data management for retailers*/
.for_retailers {
    padding: 70px 0 90px 0;
}

.for_retailers .action_block {
    text-align: center;
    margin-bottom: 80px;
}

.for_retailers .action_block .button {
    font-family: 'Montserrat', sans-serif;
    padding: 12px 32px;
}

.retailers_services {
    font-family: 'Montserrat', sans-serif;
}

.retailers_services .service_item {
    flex: 0 0 auto;
    width: calc(50% - 15px);
    padding: 40px 30px 30px 55px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 49px 5px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    background-repeat: no-repeat;
    background-position: calc(100% + 20px) calc(100% + 5px);
    position: relative;
}

.retailers_services .service_item:first-child {
    background-position: calc(100%) center;
    background-size: 260px;
}

.retailers_services .service_item .service_info {
    flex: 0 0 auto;
    width: calc(100% - 240px);
    padding-top: 15px;
}

.retailers_services .service_item .service_info .service_title {
    margin-bottom: 20px;
}

.retailers_services .service_item .service_info .service_title a {
    font-weight: 700;
    font-size: 24px;
    /* line-height: 36px; */
    color: #336799;
}

.retailers_services .service_item .service_info .service_description {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    min-height: 80px;
}

.retailers_services .service_item .service_info .service_action a {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    color: #1DBDC3;
    border-bottom: 1px solid #1DBDC3;
}

.service_action {
    position: absolute;
    bottom: 15px;
}

.retailers_services .service_item .service_image {
    flex: 0 0 auto;
    width: 190px;
}


/* Call to Action section */
.call_to_action {
    padding: 70px 0;
    background: #1DBDC3;
    font-family: 'Montserrat', sans-serif;
}

.call_to_action .section_title,
.call_to_action .section_subtitle {
    color: #fff
}

.call_to_action .block_action {
    text-align: center;
}

.call_to_action .block_action a {
    text-align: center;
    padding: 15px 30px;
    color: #1DBDC3;
}


/* FEATURES */
.features_section {
    padding: 75px 0 95px 0;
    font-family: 'Montserrat', sans-serif;
    background: #F2F5F7;
}

.features_section .container {
    max-width: 830px;
}

.features_section .section_title {
    margin-bottom: 70px;
}

.features_section .section_title span,
.faq .section_title span,
.price .section_title span {
    position: relative;
}

.features_section .section_title span:after,
.faq_section .section_title span:after {
    content: '';
    display: block;
    width: calc(100% - 70px);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    background: #1DBDC3;
    height: 4px;
}

.features_section .feature_item {
    flex: 0 0 auto;
    width: calc(33.333% - 27px);
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.features_section .feature_item .feature_header {
    padding: 0 35px 20px 35px;
    background: linear-gradient(322.16deg, #F7F7F7 17.11%, rgba(247, 247, 247, 0) 50.64%);
}

.features_section .feature_item .feature_header .feature_icon {
    height: 70px;
    width: 70px;
    background: #FFFFFF;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    margin: 0 auto -15px auto;
    transform: translateY(-35px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.features_section .feature_item .feature_header .feature_name {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: #336799;
    text-align: center;
}

.features_section .feature_item .feature_body {
    padding: 15px 25px 30px 25px;
    text-align: center;
}

.features_section .feature_item .feature_body .feature_description {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    min-height: 144px;
}

.features_section .feature_item .feature_body .feature_action a {
    font-size: 14px;
    display: block;
    padding: 14px 0;
    text-align: center;
    max-width: 155px;
    margin: 0 auto;
}


/* LIVE DEMO */
.live_demo {
    padding: 90px 0 150px 0;
    font-family: 'Montserrat', sans-serif;
}

.live_demo .section_title {
    margin-bottom: 37px;
}

.live_demo .section_title span {
    color: #1DBDC3;
}

.live_demo .live_action {
    text-align: center;
}

.live_demo .live_action .button {
    padding: 14px 33px;
}


/* FOOTER */
footer {
    padding: 75px 0;
    background: url("../../../img/footer_bg.jpg");
    background-size: cover;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}





.inner_page.features footer,
.inner_page.faq footer,
.inner_page.data_mapping_normalization footer,
.inner_page.price footer,
.inner_page.survey footer,
.inner_page.api footer {
    display: block;
}

footer::before {
    content: '';
    display: block;
    height: 105px;
    max-width: 420px;
    position: absolute;
    background-image: url('../../../img/ellipse.svg');
    background-repeat: no-repeat;
    background-position: center;
    /*box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);*/
    left: 0;
    right: 0;
    margin: auto;
    top: -60px;
}

footer::after {
    content: '';
    display: block;
    height: 110px;
    width: 110px;
    background-image: url(../../../img/footer_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -40px;
}

footer .footer_row>* {
    flex: 0 0 auto;
    /* width: 40%; */
}

.footer_navigation ul {
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.footer_navigation ul a {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #336799;
    transition: .3s all ease;

}

.footer_navigation ul a:hover {
    color: #1DBCC2;
}

.footer_info {
    text-align: right;
    font-size: 14px;
    line-height: 16px;
    color: #336799;
}

.footer_info .footer_contacts {
    margin-bottom: 10px;
}


/* INNER PAGES */
.sign-in-page {
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 50px;
}

.sign-in-page .finp-div {
    margin: 240px auto 0 auto;
    background: #FFFFFF;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
    border-radius: 25px;
    padding: 70px 70px 30px 70px;
    max-width: 570px;
}

.sign-in-page .finp-div .form_title,
.sign-in-page .finp-div .form_title_signin {
    text-align: center;
    color: #2F3C4E;
    position: relative;
    margin-bottom: 20px;
    font-size: 24px;
}

.sign-in-page .finp-div .form_title:after,
.sign-in-page .finp-div .form_title_signin:after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: #1DBDC3;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
}

.sign-in-page .form_description {
    color: #002B45;
    text-align: center;
    margin-bottom: 40px;
}

.sign-in-page.verification .form_description {
    margin-bottom: 20px;
}

.input_item {
    margin-bottom: 8px;
    position: relative;
}

.two_items .input_item {
    flex: 0 0 auto;
    width: calc(50% - 8px);
}

.three_items .input_item {
    flex: 0 0 auto;
    width: calc(33.333% - 8px);
}

.input_item.password_input {
    margin-bottom: 15px;
}


.input_item input[type=text],
.input_item input[type=email],
.input_item input[type=number],
.input_item input[type=tel],
.input_item input[type=password],
.input_item select {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background: #FFFFFF;
    border: 1px solid #CBCFD6;
    border-radius: 5px;
    outline: none;
    font-size: 12px;
    line-height: 24px;
}

.input_item.error input,
.input_item.error select {
    border-color: red;
}

.input_item .error_span {
    color: red;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.input_item.error .error_span {
    display: block;
}

.input_item select {
    background-color: white;
    -webkit-appearance: none;
    background-image: url('../../../img/select_arrow.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
}

a:hover {
    text-decoration: none !important;
}

.sign-up-page .input_item {
    flex: 0 0 auto;
    width: calc(50% - 8px);
}

.sign-up-page .input_item.w-100 {
    width: 100%;
}

.input_item.last_inputs {
    margin-bottom: 20px;
}

.sign-up-page .input_item input:not([type=checkbox]) {
    height: 35px;
}

.sign-up-page .input_item.form_additional {
    font-size: 10px;
    color: #B4B4B4;
    padding-left: 15px;
    margin-bottom: 30px;
}

.input_item.buttons_block {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.input_item .button {
    padding: 8px 35px;
    margin-top: 40px;
}

.input_item input::placeholder {
    color: #DADADA;
}

.input_item input:focus,
.input_item input:focus-visible {
    border-color: #336799;
}

.sign-in-page .eyecon {
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sign-in-page .remember_me {
    font-size: 10px;
    color: #B4B4B4;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.sign-in-page .remember_me label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.sign-in-page .remember_me input {
    display: none;
}

.sign-in-page .remember_me .checkmark {
    height: 11px;
    width: 11px;
    background: #FFFFFF;
    border: 0.5px solid #B4B4B4;
    border-radius: 4px;
    margin-right: 5px;
    position: relative;
}

.sign-in-page .remember_me .checkmark:after {
    content: '';
    display: block;
    position: relative;
    left: 4px;
    top: 1px;
    width: 2px;
    height: 5px;
    border: solid #336799;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    transition: .3s all ease;
}

.sign-in-page .remember_me input:checked~.checkmark:after {
    opacity: 1;
}

.sign-in-page .signup,
.sign-in-page .forgot_pass {
    padding-left: 14px;
    font-size: 10px;
}

.sign-in-page .forgot_pass a,
.sign-in-page .signup a {
    font-size: 10px;
    color: #336799;
    font-weight: 500;
}


.verification .link_item {
    margin-bottom: 40px;
    font-size: 10px;
    color: #2F3C4E;
}

.verification .link_item a {
    color: #336799;
}

.account_type_form .finp-div {
    max-width: 675px
}

/* STEP 2 Account Type*/

.account_type_form .finp-div .form_title {
    margin-bottom: 65px;
}

.account_type_form .account_types {
    margin-bottom: 55px;
}

.account_type_form .account_types .type_item {
    flex: 0 0 auto;
    width: calc(50% - 10px);
    background: #F3F9FA;
    border-radius: 15px;
    padding: 45px;
    transition: .3s all ease;
    color: #002B45;
    cursor: pointer;
}

.account_type_form .account_types .type_item input {
    display: none;
}

.account_type_form .account_types .type_item.selected {
    background: #52CCD0;
    box-shadow: 0 4px 50px -8px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.account_type_form .account_types .type_item .type_name {
    font-weight: 700;
    font-size: 20px;
    position: relative;
    margin-bottom: 30px;
}

.account_type_form .account_types .type_item .type_name:after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background-color: #002B45;
    position: absolute;
    left: 0;
    bottom: -15px;
}

.account_type_form .account_types .type_item.selected .type_name:after {
    background-color: #fff;
}

.account_type_form .account_types .type_item .account_features {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.account_type_form .account_types .type_item ul {
    font-size: 11px;
    line-height: 14px;
}


/* STEP 3 Business Information*/

.business_page .account_type {
    font-weight: 500;
    font-size: 16px;
    color: #002B45;
    text-align: center;
    margin-bottom: 35px;
}

.business_page .remember_me {
    margin-bottom: 30px;
}

/* STEP 4 PLANS PAGE */
.plans_page .finp-div {
    max-width: 1140px;
}

.plans_page .finp-div .form_title {
    margin-bottom: 55px;
}

.plans_page .price__title_large {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.plans_page .price__description {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
}

.plans_list .plan__card {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: flex-start;
}

.plans_list .plan__card:last-child {
    margin-bottom: 0;
}

.plans_list .plan__card .plan__title_group {
    flex: 0 0 auto;
    width: 220px;
    padding: 15px 0;
    border-bottom: 2px solid #F1F1F1;
}

.plans_list .plan__card:last-child .plan__title_group {
    border-bottom: none;
}

.plans_list .plan__card .price__resource_group {
    flex: 0 0 auto;
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.plans_list .plan__card .price__resource_group .price__resource_card {
    flex: 0 0 auto;
    width: calc(25% - 20px);
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 30px 25px 25px 30px;
    cursor: pointer;
}

.plans_list .plan__card .price__resource_group .price__resource_card.selected {
    outline: 3px solid #1DBDC3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.price__resource_group .price__resource_card .price__title_small {
    font-weight: 700;
    font-size: 16px;
    color: #002B45;
    margin-bottom: 8px;
}

.plans_list .plan__card .price__resource_group .price__resource_card.selected .price__title_small {
    color: #1DBDC3;
}

.price__resource_group .price__resource_card #plan__price {
    font-weight: 500;
    font-size: 20px;
    color: #002B45;
    margin-bottom: 10px;
}

.plans_list .plan__card .price__resource_group .price__resource_card.selected #plan__price {
    color: #1DBDC3;
}

.price__resource_group .price__resource_card #plan__price span {
    font-weight: 500;
    font-size: 12px;
    color: #95A1A7;
}

.plans_list .plan__card .price__resource_group .price__resource_card.selected #plan__price span {
    color: #95A1A7;
}

.price__resource_group .price__resource_card .subscribers__count {
    font-weight: 500;
    font-size: 12px;
    color: #002B45;
}

.price_footer {
    width: calc(100% - 250px);
    margin-left: auto;
    padding-top: 30px;
    border-top: 2px solid #F1F1F1;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 40px;
}

.price_footer .price_description {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #7D8B94;
}

.price_footer .final__price_block {
    width: 310px;
    text-align: center;
}

.price_footer .final__price_block .plan__final_price {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.price_footer .final__price_block .plan__final_price .price__title_large {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #7D8B94;
}

.price_footer .final__price_block .plan__final_price .price__title_small {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #002B45;
}


/* Payment page */

.payment_page .form_subtitle {
    font-weight: 700;
    font-size: 16px;
    color: #002B45;
    text-align: center;
    margin-bottom: 15px;
}

.payment_page .form_description {
    font-weight: 500;
    font-size: 13px;
    color: #B4B4B4;
    margin-bottom: 20px;
}

.payment_page .two_items .input_item {
    width: calc(50% - 20px);
}

.payment_page .quas a {
    font-weight: 700;
    font-size: 16px;
    color: #1DBDC3;
}

.payment_page .quas {
    transform: translate(7px, -3px);
}

.payment_page .remember_me {
    margin-bottom: 35px;
}

.error-div {
    margin-bottom: 10px;
}

.error-div .error_item {
    font-size: 12px;
    line-height: 20px;
    color: #BA0000;
}



/* Other Pages */
.inner_page.features,
.inner_page.faq,
.inner_page.api_connection,
.inner_page.discover,
.inner_page.price,
.inner_page.survey,
.inner_page.data_mapping_normalization,
.inner_page.cloud_asset_management,
.inner_page.gtin_sku,
.inner_page.retailer_pos_mapping,
.inner_page.smart_content_creator,
.inner_page.data_flow_automation,
.inner_page.brand_data_management,
.inner_page.api {
    background-image: none;
    font-family: 'Montserrat', sans-serif;
}

.features_filter {
    padding-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.price-filter {
    position: relative;
    right: 10%;
}

.features_filter ul {
    justify-content: flex-end;
    gap: 16px;
    list-style: none;
}

.features_filter ul li label {
    display: flex;
    gap: 7px;
    align-items: center;
    cursor: pointer;
}

.features_filter ul li input {
    display: none;
}

.features_filter ul li .checkmark {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #9CA3AF;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: .3s all ease;
}

.features_filter ul li .checkmark:after {
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    background: #1DBDC3;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: .3s all ease;
}

.features_filter ul li input:checked~.checkmark {
    border-color: #1DBDC3;
}

.features_filter ul li input:checked~.checkmark:after {
    opacity: 1;
    transform: scale(1);
}

.all_features {
    padding-bottom: 100px;
    font-family: 'Montserrat', sans-serif;
}

.margin_block {
    margin: 0px 195px;
}

.features_block .feature_item {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 180px;
    margin-top: -100px;
}

.features_block .feature_item:first-child {
    margin-top: -180px;
}

.features_block .feature_item .feature_texts,
.features_block .feature_item .feature_image {
    flex: 0 0 auto;
    width: calc(50% - 15px);
}

.features_block .feature_item .feature_texts .feature_title {
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: #2F3C4E;
    margin-bottom: 20px;
    color: #2F3C4E;
}

.features_block .feature_item .feature_texts .feature_description {
    text-align: justify;
    font-size: 15px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
}

header .header_action .menu_opener {
    padding: 0 10px;
    border: 1px solid #12A5B0;
    background-color: #fff;
    height: 100%;
    display: flex;
}

.header_action li:last-child {
    display: none;
}

.menu_opener img {
    max-width: 30px;
}

.close_menu {
    display: none;
}


/* FAQ */
body:not(.main_page) {
    padding-top: 145px;
}

.faq_section {
    margin-bottom: 120px;
}

.faq_section .section_title {
    margin-bottom: 50px;
}

.faq_block {
    max-width: 960px;
    margin: 0 auto;
}

.faq_block .faq_item {
    padding: 32px 75px 32px 50px;
    border-bottom: 3px solid rgba(205, 214, 218, 0.25);
    cursor: pointer;
    transition: .3s all ease;
    position: relative;
}

.faq_block .faq_item .faq_plus {
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    transition: .3s all ease;
}

.faq_block .faq_item.active .faq_plus {
    transform: rotate(-135deg);
}

.faq_block .faq_item .faq_plus svg rect,
.faq_block .faq_item .faq_plus svg path {
    transition: .3s all ease;
}

.faq_block .faq_item.active .faq_plus svg rect {
    fill: #1DBDC3;
}

.faq_block .faq_item.active .faq_plus svg path {
    fill: #fff;
}


.faq_block .faq_item.active {
    background: #FFFFFF;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
}

.faq_block .faq_item:last-child {
    border-bottom: none;
}

.faq_block .faq_item .faq_number {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: rgba(60, 60, 67, 0.5);
    margin-bottom: 10px;
}

.faq_block .faq_item .faq_question {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #002B45;
    margin-bottom: 25px;
    transition: .3s all ease;
}

.faq_block .faq_item.active .faq_question {
    color: #1DBDC3;
}

.faq_block .faq_item .faq_answer {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: rgba(60, 60, 67, 0.85);
    display: none;
}


/* Price Page */
.price_block {
    display: block;
    flex-wrap: wrap;
    max-width: 1026px;
    margin: 0 auto;
    /* justify-content: space-between; */
    justify-content: center;
}

.price_block .price_category {
    flex: 0 0 auto;
    width: 100%;
    /* width: calc(35.333% - 12px); */
    background: #F8F8F8;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
    transition: .3s all ease;
}


.price_block .price_category .category_name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: #1DBDC3;
    /* max-width: 205px; */
    /* margin: 0 auto 15px auto; */
    margin: 15px 0px;
    transition: .3s all ease;
}

.price_block .price_category * {
    transition: .3s all ease;
}

.price_block .price_category .category_description {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #7D8B94;
    max-width: 205px;       
    margin: 0 auto 10px auto;
    min-height: 65px;
}

.price_block .price_category .price_item {
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 20px;
}

.price_block .price_category .price_item:last-child {
    margin-bottom: 0;
}

.price_block .price_category .price_title {
    font-weight: 700;
    font-size: 14px;
    line-height: 0;
    letter-spacing: -0.01em;
    color: #002B45;
    margin-bottom: 15px;
}

.price_block .price_category .price_quantity {
    font-weight: 500;
    font-size: 20px;
    color: #002B45;
    margin-bottom: 10px;
}

.price_block .price_category .price_quantity span {
    font-weight: 500;
    font-size: 12px;
    color: #95A1A7;
}

.price_block .price_category .price_quantity span.old_price {
    text-decoration: line-through;
    margin-right: 3px;
}


.price_block .price_category .price_storage {
    font-weight: 500;
    font-size: 12px;
    color: #002B45;
}

@media (max-width: 1200px) {
    .container {
        max-width: 976px;
    }

    .hero_info_graphics img {
        width: 100%;
    }

    .hero_titles h2 {
        font-size: 33px;
    }

    .retailers_services .service_item,
    .retailers_services .service_item:first-child {
        background-size: 200px;
        padding: 30px;
    }

    .retailers_services .service_item:last-child {
        background-size: 300px !important;
    }

    .retailers_services .service_item .service_info {
        width: calc(100% - 160px);
    }

    .footer_navigation ul {
        gap: 20px;
    }
}

@media (max-width: 992px) {

    .price_block .price_category {
        /* width: calc(46.333% - 12px); */
    }

    .container,
    .features_section .container {
        max-width: 762px;
    }

    .close_menu {
        display: block;
    }

    .header_action li:last-child {
        display: block;
    }

    .main_section .header_menu {
        display: none;
    }

    header nav ul {
        gap: 20px;
    }

    header .header_menu {
        position: fixed;
        left: -100%;
        top: 0;
        background: #fff;
        height: 100vh;
        overflow-y: auto;
        width: 100%;
        max-width: 480px;
        margin-right: 0;
        padding: 30px;
        transition: .3s all ease;
        box-shadow: 5px 0 35px rgba(0, 0, 0, .15);
    }

    header .header_menu.show {
        left: 0;
    }

    header .header_menu ul {
        flex-direction: column;
    }

    header nav .dropdown .dropdown_elements {
        position: static;
        display: none;
        transition: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
    }

    .hero_block>div:first-child {
        width: 45%;
    }

    .hero_block>div:last-child {
        width: calc(55% - 30px);
    }

    .hero_titles h2 {
        font-size: 24px;
        line-height: 32px;
    }

    header nav a {
        padding: 0 10px;
    }

    header nav .close_menu {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    header nav .close_menu img {
        max-width: 35px;
    }

    .retailers_services .service_item,
    .retailers_services .service_item:first-child {
        padding: 240px 20px 20px 20px;
        background-size: 200px;
        background-position: center 20px;
    }

    .retailers_services .service_item .service_info {
        width: 100%;
    }

    .features_block .feature_item .feature_image img {
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    .last_page_right {
        display: none;
    }

    .step_block .step_checkbox_group {
        display: block !important;
    }



    .features_section .section_title span:after,
    .faq_section .section_title span:after {
        width: 100%;
    }
    

    .price_block .price_category .price_title {
        font-size: 13px;
    }

    .survey_block {
        display: block;
    }
    .survey_block>div {
        width: 100%;
    }

    .section_subtitle br {
        display: none;
    }

    .form_title {
        line-height: 20px !important;
    }

    .price_block .price_category {
        /* width: calc(45.333% - 12px); */
    }

    .service_action {
        position: relative;
        margin-top: 20px;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    header {
        padding: 25px 0 20px 0;
    }

    .hero {
        padding-bottom: 80px;
    }

    .main_section {
        background-size: cover;
    }

    .hero_action {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .header_logo img {
        max-width: 150px;
    }



    header .header_action .menu_opener {
        padding: 5px 10px;
    }

    .hero_block>div:first-child {
        margin-bottom: 40px;
    }

    .section_title {
        font-size: 24px;
        line-height: 30px;
    }

    .for_retailers {
        padding-bottom: 40px;
    }

    .retailers_services .service_item {
        margin-bottom: 30px;
        position: relative;
    }

    .retailers_services .service_item,
    .retailers_services .service_item:first-child {
        padding: 240px 20px 20px 20px;
        background-size: 200px;
        background-position: center 20px;
    }

    .retailers_services .service_item:last-child {
        background-position: calc(100% + 20px) top;
    }


    .retailers_services .service_item .service_info {
        width: 100%;
        text-align: center;
    }

    .retailers_services .service_item .service_info .service_title {
        margin-bottom: 5px;
    }

    .retailers_services .service_item .service_info .service_title a {
        font-size: 20px;
    }

    .retailers_services .service_item .service_info .service_description {
        margin-bottom: 5px;
    }

    .features_section {
        padding: 40px 0;
    }

    .features_section .features_row {
        justify-content: center;
        gap: 40px;
    }

    .features_section .feature_item {
        margin-bottom: 30px;
        width: calc(50% - 20px);
    }

    .features_section .feature_item:last-child {
        margin-bottom: 0;
    }

    .features_block .feature_item {
        /* border-bottom: 2px solid #ccc; */
        padding-bottom: 40px;
    }

    .features_block .feature_item .feature_texts,
    .features_block .feature_item .feature_image {
        width: 100%;
    }

    .features_block .feature_item .feature_image {
        order: 1;
        text-align: center;
        margin-bottom: 20px;
    }

    .features_block .feature_item .feature_image img {
        max-width: 280px;
    }

    .features_block .feature_item .feature_texts {
        order: 2;
        text-align: center;
    }

    .features_block .feature_item .feature_texts .feature_title {
        font-size: 24px;
        line-height: 32px;
        margin-top: 20px;
    }

    .features_block .feature_item .feature_texts .feature_title br {
        display: none;
    }



    .features_section .feature_item .feature_header {
        padding: 0 20px 20px 20px;
    }

    .features_section .feature_item .feature_body .feature_description {
        font-size: 14px;
        min-height: auto;
    }

    .live_demo {
        padding: 40px 0 90px 0;
    }

    footer {
        padding: 40px 0;
    }

    footer::before {
        top: -40px;
    }

    footer::after {
        height: 40px;
        width: 40px;
        background-size: contain;
        top: -5px;
    }


    footer .footer_row>* {
        width: 100%;
    }

    footer .footer_navigation {
        margin-bottom: 30px;
    }

    footer .footer_navigation ul {
        gap: 10px;
        /* flex-direction: column; */
        align-items: center;
    }

    .footer_info {
        text-align: center;
    }

    .margin_block {
        margin: 0px 150px;
    }
}

@media (max-width: 576px) {

    .container .inner_items {
        display: block !important;
    }

    .last_page_right {
        display: none;
    }

    .survey_form .last_page {
        display: block;
    }

    .step_block .step_checkbox_group {
        display: block !important;
    }

    

    .survey_block {
        display: block !important;
    }
    .survey_block>div {
        width: 100% !important;
    }
    .survey_start {
        right: 0 !important;
    }

    .form_title {
        line-height: 20px !important;
    }
    .price_block {
        display: block;
    }

    .margin_block {
        margin: 0;
    }

    .service_action {
        position: relative;
        margin-top: 20px;
    }

    .features_section .section_title span:after,
    .faq_section .section_title span:after {
        width: 100%;
    }

    .price_block .price_category .price_title {
        font-size: 11px;
        line-height: none;
    }

    .header_action li:not(:last-child) {
        display: none;
    }

    .hero_block>div:first-child,
    .hero_block>div:last-child,
    .retailers_services .service_item,
    .features_section .feature_item {
        width: 100%;
        margin-bottom: 20px;
    }

    .price_block .price_category {
        width: auto;
    }
}

.survey section .container {
    max-width: 980px;
}

.survey_info {
    margin-bottom: 90px;
}

.survey_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.privacy span {
    text-align: justify;
    font-weight: 400;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.8);
}

.survey_start {
    position: relative;
    /* right: 262px; */
}

.form_title {
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 0px;
}

.form_title_signin {
    font-size: 1.5rem;
}

.survey_form form {
    position: relative;
}

.survey_block.survey_step {
    display: flex;
}

.survey_block>div {
    flex: 0 0 auto;
    width: calc(50% - 30px);
}

.survey_block .section_title {
    text-align: left;
    margin-bottom: 20px;
}

.survey_block .section_title span {
    color: #1DBDC3;
}

.survey_block .block_image {
    /*text-align: center;*/
}

.survey_block .section_description p {
    text-align: justify;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.survey_form {
    margin-bottom: 165px;
    margin-top: 80px;
}

.survey_form .survey_block {
    align-items: flex-start;
}

.survey_form .block_text {
    padding-top: 70px;
}

.survey_form .input_item {
    margin-bottom: 20px;
}

.survey_form label {
    display: inline-block;
    font-weight: 500;
    font-size: 12px;
    color: #2F3C4E;
    margin-bottom: 3px;
}

.survey_block .survey_button {
    text-align: center;
    margin-top: 20px;
    flex: 0 0 auto;
    width: 100%;
}

.survey_form .survey_button {
    display: flex;
    justify-content: center;
}

.survey_button .button {
    padding: 15px 30px;
}

.survey_block .step_block {
    flex: 0 0 100%;
}

.survey_block .step_block span {
    font-weight: 400;
}

.step_block .block_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 30px;
}

.step_block .block_subtitle {
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.015em;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 50px;
}

.step_block .checkboxes_row {
    display: flex;
}

.step_block .checkboxes_row .inputs_row {
    width: 40%;
}

.step_block .checkboxes_row .row_item {
    flex: 0 0 auto;
    width: 50%;
}

.step_block .step_checkbox_group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step_block .inputs_row {
    flex: 0 0 auto;
    width: 25%;
}

.step_block .at_least {
    flex: 0 0 auto;
    width: 100%;
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: -0.015em;
    color: red;
    display: none;
}

.step_block .at_least.show {
    display: block;
}

.step_block .inputs_row label {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    color: #7D8B94;
    gap: 16px;
    margin-bottom: 20px;
    cursor: pointer;
}

.step_block .inputs_row input {
    display: none;
}

.step_block .inputs_row .checkmark {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid #1DBCC2;
    position: relative;
    flex: 0 0 auto;
}

.survey_block .inputs_row .checkmark::before {
    content: '';
    display: block;
    height: 35px;
    width: 35px;
    background: #F4F7FA;
    border-radius: 7px;
    position: absolute;
    left: -9px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    opacity: 0;
    transition: .3s all ease;
    transform: scale(0);
}

.survey_block .inputs_row .checkmark::after {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    transition: .3s all ease;
}

.step_block .inputs_row input:checked~.checkmark {
    background-color: #1DBCC2;
    box-shadow: 0 0 13px #F4F7FA;
}

.step_block .inputs_row input:checked~.checkmark::before {
    opacity: 1;
    transform: scale(1);
}

.step_block .inputs_row input:checked~.checkmark::after {
    opacity: 1;
}

.survey_block .step_block .block_description {
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 65px;
}

.survey_block .step_block .block_thanks {
    display: flex;
    gap: 25px;
    align-items: center;
}

.survey_block .step_block .block_thanks .block_title {
    margin-bottom: 0;
}

.survey_block .step_block .block_thanks .block_title span {
    color: #1DBDC3;
    font-weight: 700;
    font-size: 20px;
}

.survey_block .step_block .block_thanks .block_action {
    display: flex;
    gap: 20px;
    align-items: center;
}

.survey_block .step_block .block_thanks .block_action span {
    font-weight: 700;
    font-size: 20px;
    color: #2F3C4E;
}

.question_item {
    margin-bottom: 40px;
}

.question_item .question_text {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 35px;
}

.question_item .question_answers {
    display: flex;
    gap: 55px;
}

.question_item .question_answers label {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: #7D8B94;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.question_item .question_answers input {
    display: none;
}

.question_item .question_answers .checkmark {
    width: 27px;
    height: 27px;
    background: #FFFFFF;
    border: 1px solid #9CA3AF;
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question_item .question_answers .checkmark:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #1DBDC3;
    border-radius: 15px;
    position: absolute;
    transition: .3s all ease;
    transform: scale(0);
}

.question_item .question_answers input:checked~.checkmark:after {
    transform: scale(1);
}

.survey_form .last_page {
    display: flex;
    gap: 80px;
}

.survey_form .last_page .last_page_left {
    font-size: 14px;
    line-height: 21px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: -0.015em;
    padding-top: 25px;
}

.survey_form .last_page .last_page_left div {
    margin-bottom: 25px;
}

.survey_form .last_page .last_page_left div:last-of-type {
    /*font-weight: bold;*/
}

.survey_form .last_page .button {
    padding: 14px 30px;
}


/* API PAGE*/

.section_api {
    padding-top: 30px;
    margin-bottom: 175px;
}

.api_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.api_block .api_categories {
    flex: 0 0 auto;
    width: 20%;
}

.api_block .api_content {
    flex: 0 0 auto;
    width: calc(80% - 40px);
}

.api_categories ul li {
    margin-bottom: 15px;
}

.api_categories ul li a {
    font-weight: 500;
    font-size: 13px;
    color: #2F3C4E;
    transition: .3s all ease;
}

.api_categories ul li a:hover,
.api_categories ul li a.active {
    color: #1DBDC3;
}

.api_content .category_title {
    font-weight: 700;
    font-size: 24px;
    color: #2F3C4E;
    margin-bottom: 20px;
}

.api_content .category_description {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #7D8B94;
    margin-bottom: 40px;
}

.api_content .request_types {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.api_content .request_types span {
    font-weight: 700;
    font-size: 16px;
    color: #2F3C4E;
    margin-right: 10px;
}

.api_content .request_types .type_item {
    background: #F7F7F7;
    border-radius: 10px;
    display: inline-block;
    padding: 3px 24px;
    font-weight: 500;
    font-size: 11px;
    color: #1DBDC3;
    line-height: 20px;
}

.api_content .request_types .type_item.active {
    background: #1DBDC3;
    color: #FFF;
}

.api_content .request_body {
    padding: 40px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    background: #F8F8F8;
    border: 1px solid #ECECEC;
    margin-bottom: 25px;
}

.api_content .request_action {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 50px;
}

.api_content .request_description {
    margin-top: 55px;
    padding: 30px 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.1);
}

.api_content .request_description .description_title {
    font-weight: 700;
    font-size: 16px;
    color: #1DBDC3;
    margin-bottom: 60px;
}

.api_content .request_description .description_body thead {
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
}

.api_content .request_description .description_body th {
    text-align: left;
}

.api_content .request_description .description_body tbody {
    font-weight: 400;
    font-size: 12px;
}

.api_content .request_description .description_body tbody p {
    margin-bottom: 15px;
}

.api_content .request_description .description_body tbody .required {
    font-weight: 500;
}

.api_content .request_description .description_body tbody p:last-child {
    margin-bottom: 0;
}

.api_content .request_description .description_body td {
    width: 33%;
}

.api_content .request_description .description_body td,
.api_content .request_description .description_body th {
    border-bottom: 2px solid #F8F8F8;
    padding: 15px;
}

.api_content .request_description .description_body tr:last-child td {
    border-bottom: none;
}

.mt-1 {
    margin-top: 1rem;
}