body {
    font-family: SFProDisplay-Regular, sans-serif;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    background-color: #fff;
    background-size: cover;
    /*letter-spacing: 0.15px;*/
    /*line-height: 1.5;*/
}

@font-face {
    font-family: 'SFProDisplay-Regular';
    src: url('../fonts/sfprodisplay-regular.eot');
    /* IE 9 Compatibility Mode */
    src: url('../fonts/sfprodisplay-regular.eot?#iefix') format('embedded-opentype'),
        /* IE < 9 */
        url('../fonts/sfprodisplay-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/sfprodisplay-regular.woff') format('woff'),
        /* Firefox >= 3.6, any other modern browser */
        url('../fonts/sfprodisplay-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/sfprodisplay-regular.svg#sfprodisplay-regular') format('svg');
    font-display: swap;
    /* Chrome < 4, Legacy iOS */
}

@font-face {
    font-family: 'SFProDisplay-Bold';
    src: url('../fonts/sfprodisplay-bold.eot');
    /* IE 9 Compatibility Mode */
    src: url('../fonts/sfprodisplay-bold.eot?#iefix') format('embedded-opentype'),
        /* IE < 9 */
        url('../fonts/sfprodisplay-bold.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('../fonts/sfprodisplay-bold.woff') format('woff'),
        /* Firefox >= 3.6, any other modern browser */
        url('../fonts/sfprodisplay-bold.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('../fonts/sfprodisplay-bold.svg#sfprodisplay-bold') format('svg');
    font-display: swap;
    /* Chrome < 4, Legacy iOS */
}

* {
    box-sizing: border-box;
    webkit-box-sizing: border-box;
}

abbr,
blockquote,
body,
button,
dd,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
input,
legend,
li,
ol,
p,
pre,
ul {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    list-style: none;
}

li {
    margin: 0;
    padding: 0;
}

a {
    o-transition: .3s;
    transition: .3s;
    webkit-transition: .3s;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.header {
    margin-top: 25px;
}

.container {
    width: 100%;
    max-width: 1280px;
    /*padding-right: 15px;
    padding-left: 15px;*/
    margin-right: auto;
    margin-left: auto;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo__img {
    width: 100%;
    max-width: 114px;
    margin-top: 8px
}

.nav__list {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item:not(:last-child) {
    margin-right: 18px;
}

.nav__link {
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

.nav__link:hover {
    color: #0170e2;
}

.contact_button {
    padding: 10px 34px;
    outline: none;
    cursor: pointer;
    border-radius: 11px;
    font-size: 16px;
    border: 2px solid #b2b2b2;
    background: none;
    color: #000;
    text-decoration: none;
}

.contact_button_desctop {
    display: block;
}

.contact_button_mobile {
    display: none;
}

.header__contact_button:hover {
    border: 2px solid #1bfbf;
}

.header.sticky {
    animation: headerSlideDown .95s ease forwards;
    background: #fff;
    background-color: #fff;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    position: fixed !important;
    right: 0;
    top: 0;
    webkit-animation: headerSlideDown .95s ease forwards;
    webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, .1);
    z-index: 20;
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -100px
    }

    to {
        margin-top: 0
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -100px
    }

    to {
        margin-top: 0
    }
}

.header.sticky .header-wrapper {
    padding: 5px 0
}

.phone-top-mobile {
    display: none;
}

.header__nav_mobile {
    display: none;
}

.header__mobile_part {
    display: none;
}

.popup-mobile-menu {
    background: rgba(0, 0, 0, .9);
    height: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    position: fixed;
    top: 0;
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
    z-index: 999;
}

.popup-mobile-menu-visible.popup-mobile-menu .inner {
    ms-transform: none;
    transform: none;
    webkit-transform: none;
}

.popup-mobile-menu .inner .close-menu {
    position: absolute;
    top: 15px;
    right: 104px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    color: #fff;
}

.popup-mobile-menu .inner .close-menu::after,
.popup-mobile-menu .inner .close-menu::before {
    background: #fff;
    content: "";
    height: 6px;
    border-radius: 10px;
    left: 8px;
    ms-transform-origin: 50% 50%;
    o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    position: absolute;
    top: 19px;
    transform-origin: 50% 50%;
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    webkit-transform-origin: 50% 50%;
    webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    width: 24px;
}

.popup-mobile-menu .inner .close-menu::before {
    ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    webkit-transform: rotate(-45deg);
}

.popup-mobile-menu .inner .close-menu::after {
    ms-transform: rotate(45deg);
    transform: rotate(45deg);
    webkit-transform: rotate(45deg);
}

.popup-mobile-menu .inner {
    background: #202020;
    cursor: default;
    height: 100%;
    /*max-width: 80%;*/
    ms-transform: translateX(-100%);
    o-transition: all .3s;
    overflow-y: auto;
    /*padding-top: 60px;*/
    position: relative;
    text-align: left;
    transform: translateX(-100%);
    transition: all .3s;
    webkit-transform: translateX(-100%);
    webkit-transition: all .3s;
    width: 100%;
}

.popup-mobile-menu .inner ul.mainmenu-item {
    list-style: none;
    margin: 62px 39px 20px;
    padding: 0;
}

.popup-mobile-menu .inner ul.mainmenu-item li {
    color: #fff;
    font-size: 33px;
    font-weight: 400;
}

.popup-mobile-menu .inner ul.mainmenu-item li a {
    color: #fff;
    display: block;
    o-transition: .4s;
    padding-bottom: 8px;
    padding-top: 8px;
    position: relative;
    text-decoration: none;
    transition: .4s;
    webkit-transition: .4s;
    font-family: SFProDisplay-Bold, sans-serif;
}

.popup-mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.popup-mobile-menu-visible.popup-mobile-menu {
    opacity: 1;
    visibility: visible;
}



.top-slider {
    /* height: 86vh; */
    min-height: 780px;
    margin-top: 56px;
    /*padding-top: 166px;*/
    padding-bottom: 82px;
    overflow: hidden;
}

.top-slider__container {
    margin-left: auto;
    margin-right: auto;
    width: 1280px;
    height: 100%;
    /*overflow: hidden;*/
}

.top-slider__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*padding-bottom: 160px;*/
    align-items: center;
}

.main-title {
    font-family: SFProDisplay-Bold, sans-serif;
    font-size: 72px;
    color: #000;
    margin-bottom: 31px;
    line-height: 1.1em;
}

.erm-page .main-title {
    line-height: 1.05em;
}

.gradient-text {
    background: linear-gradient(98deg, #cb5c80 14%, #6e81b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-slider__text {
    flex-basis: 56.3333333333%;
    max-width: 56.3333333333%;
}

.top-slider__text_block {
    opacity: 1;
}

.main-descr {
    font-size: 33px;
    margin-bottom: 50px;
    width: 84%;
    line-height: 1.3em;
}

.main__button {
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    min-width: 28px;
    padding: 21px 48px;
    border-radius: 40px;
    background-image: linear-gradient(to left, #6f9ff2, #5ebce0);
    color: #fff;
    text-decoration: none;
}

.main__button:hover {
    opacity: .8;
    color: #fff;
    text-decoration: none;
}


/* Слайдер */

.top-slider-screen-gallery {
    --image-count: 7;
    --lock-screen-image-width: 344px;
    --lock-screen-image-height: 620px;
    --gallery-item-width: calc(var(--lock-screen-image-width) + var(--gallery-item-gap));
    position: relative;
    width: var(--gallery-item-width);
    height: var(--lock-screen-image-height);
    overflow: visible;
    /*top: -48px;*/
    top: 0px;
    --gallery-headline-spacing-below: 1;
    --gallery-paddlenav-width-reduction: .43;
    --gallery-paddlenav-height: 102px;
    --gallery-dotnav-height-adjustment: 25px;
    --gallery-dotnav-scale: 1;
    --gallery-item-gap: 20px;
    flex-basis: 43.6666666667%;
    max-width: 43.6666666667%;
}

.top-slider-screen-gallery .gallery-item {
    width: var(--gallery-item-width);
    height: var(--lock-screen-image-height);
    position: relative;
    will-change: transform;
}

.top-slider-screen-gallery .item-container {
    display: flex;
    /*    grid-template-columns: repeat(var(--image-count),1fr);*/
    width: calc(var(--gallery-item-width)*var(--image-count));
    height: var(--lock-screen-image-height);
    position: absolute;
    top: 0;
}

.top-slider-screen-gallery .gallery-item {
    width: var(--gallery-item-width);
    height: var(--lock-screen-image-height);
    position: relative;
    will-change: transform;
}

.top-slider-screen-gallery .gallery-item .device {
    position: absolute;
    top: 0;
    left: calc(var(--gallery-item-gap)/2);
    -webkit-mask-size: var(--gallery-item-width) var(--lock-screen-image-height);
    mask-size: var(--gallery-item-width) var(--lock-screen-image-height);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-1 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_1.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-2 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_2.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-3 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_3.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-4 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_4.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-5 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_5.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-6 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_6.png);
}

.top-slider-screen-gallery #top-slider-screen-gallery-item-7 .device {
    width: 308px;
    height: 620px;
    background-size: 308px 620px;
    background-repeat: no-repeat;
    background-image: url(../img/top-slider/top_slider_gallery_screen_7.png);
}

.top-slider-screen-gallery .paddlenav {
    position: absolute;
    top: 98%;
    left: calc(var(--gallery-item-width)*(1 - var(--gallery-paddlenav-width-reduction))/2.4);
    width: calc(var(--gallery-item-width)*var(--gallery-paddlenav-width-reduction));
    height: var(--gallery-paddlenav-height);
}

.paddlenav,
.paddlenav ul {
    margin: 0;
    list-style: none;
}

.top-slider-screen-gallery .paddlenav ul {
    margin: 0;
    list-style: none;
}

.top-slider-screen-gallery .paddlenav ul {
    margin: 0;
    list-style: none;
}

.paddlenav .paddlenav-arrow.disabled,
.paddlenav .paddlenav-arrow.disabled:focus[data-focus-method=mouse]:not(input):not(textarea):not(select),
.paddlenav .paddlenav-arrow.disabled:focus[data-focus-method=touch]:not(input):not(textarea):not(select),
.paddlenav .paddlenav-arrow:disabled,
.paddlenav .paddlenav-arrow:disabled:focus[data-focus-method=mouse]:not(input):not(textarea):not(select),
.paddlenav .paddlenav-arrow:disabled:focus[data-focus-method=touch]:not(input):not(textarea):not(select) {
    opacity: .4;
}

.paddlenav-arrow-previous {
    left: 18px;
}

.paddlenav-arrow-next {
    right: 18px;
}

.top-slider-screen-gallery .paddlenav .paddlenav-arrow {
    z-index: 3;
    transform: scale(var(--gallery-headline-spacing-below));
    border-width: 0;
}

.paddlenav .paddlenav-arrow.disabled,
.paddlenav .paddlenav-arrow:disabled {
    cursor: default;
    /*opacity: 0;*/
}

.paddlenav-framed .paddlenav-arrow {
    background-color: rgba(210, 210, 215, .64);
    border-color: rgba(210, 210, 215, .64);
    color: rgba(0, 0, 0, .56);
}

.paddlenav-compact .paddlenav-arrow-next,
.paddlenav-compact .paddlenav-arrow-previous {
    margin-top: -1.5294117647rem;
}

.paddlenav .paddlenav-arrow {
    display: block;
    font-style: normal;
    overflow: hidden;
    position: absolute;
    text-align: center;
    transition: background-color 100ms linear, color 100ms linear, opacity 100ms linear;
}

.paddlenav-compact .paddlenav-arrow {
    font-weight: 300;
    width: 3.0588235294rem;
    height: 3.0588235294rem;
    border-radius: 3.0588235294rem;
    font-size: 53px;
    line-height: 1.0588235294rem;
}

.paddlenav .paddlenav-arrow-next,
.paddlenav .paddlenav-arrow-previous {
    top: 50%;
}

/*.paddlenav-compact .paddlenav-arrow-previous:after, .paddlenav-compact .paddlenav-arrow-previous:before {
    content: "\203A";
}*/
.paddlenav-compact .paddlenav-arrow-previous:after {
    content: "";
    display: inline-block;
    background: url("../img/arrow-prev.png") no-repeat top right;
    background-size: 100%;
    width: 11px;
    height: 25px;
    margin-top: 6px;
    margin-left: -4px;
}

.paddlenav-compact .paddlenav-arrow-next:after {
    content: "";
    display: inline-block;
    background: url("../img/arrow-next.png") no-repeat top right;
    background-size: 100%;
    width: 11px;
    height: 25px;
    margin-top: 6px;
    margin-left: -4px;
}

/*.paddlenav .paddlenav-arrow-previous:after {
    margin-left: -0.056em;
}*/
.paddlenav-compact .paddlenav-arrow-next:after {
    margin-right: -0.044em;
}

.gallery-item {
    transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
    transition: width 1.5s ease, opacity 2s ease;
}

.gallery-item.--hide {
    width: 0;
    opacity: 0;
    transition: width 1.5s ease, opacity 2s ease;
}

/* /Слайдер */

.section {
    padding-top: 86px;
    padding-bottom: 120px;
}

.section__grey {
    background-color: #f2f2f2;
}

.section__all-services h2 {
    margin-bottom: 68px;
}

.section-title {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    font-weight: bold;
    font-size: 60px;
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 24px;
    width: 80%;
    font-family: SFProDisplay-Bold, sans-serif;
}

.axil-brand-area .section-title {
    margin-bottom: 0;
}

.section-text {
    margin: 0 auto !important;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    line-height: 1.5em;
    text-align: center;
}

.section.section__restaurants_metrics {
    padding-bottom: 65px;
    padding-top: 75px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.round_corner_block__container {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    padding: 0;
}

.round_corners_block__item {
    list-style: none;
    width: 24%;
	display: flex;
}

.round_corners_block__item:not(:last-child) {
    margin-right: 17px;
}

.round_corners_block__inner {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    padding: 46px 20px 60px;
    border-radius: 18px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
    background-color: #fff;
    /*min-height: 395px;*/
}

.round_corners_block__inner img {
    max-height: 91px;
}

.round_corners_block_title {
    font-size: 19px;
    font-family: SFProDisplay-Bold, sans-serif;
    margin-top: 16px;
    margin-bottom: 7px;
    line-height: 1.5em;
    font-weight: 600;
    text-align: center;
}

.round_corners_block_text {
    font-size: 18px;
    font-family: SFProDisplay-Regular, sans-serif;
    line-height: 1.57em;
}

.restaurants_metrics__counter {
    font-family: SFProDisplay-Regular, sans-serif;
    background: -webkit-linear-gradient(90deg, rgb(235, 126, 70), rgb(218, 90, 123));
    background: -moz-linear-gradient(90deg, rgb(235, 126, 70), rgb(218, 90, 123));
    background: linear-gradient(90deg, rgb(235, 126, 70), rgb(218, 90, 123));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 119px;
    line-height: 1.5em;
    text-align: center;
}

.restaurants_metrics__title {
    margin-top: -5px;
    font-size: 55px;
    width: 70%;
}

.restaurants_metrics__container {
    display: flex;
    width: 100%;
    margin: 0;
    width: 87%;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 31px;
}

.restaurants_metrics__items {
    list-style: none;
    width: 33%;
}

.restaurants_metrics__items p {
    font-size: 34px;
    font-family: SFProDisplay-Bold, sans-serif;
    /*margin-top: 20px;
    margin-bottom: 15px;*/
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: 0;
}

.restaurants_metrics__items p.restaurants_metrics_gradient {
    background: linear-gradient(98deg, #cb5c80 14%, #6e81b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: SFProDisplay-Regular, sans-serif;
    font-size: 79px;
    font-weight: 400;
}

.features_container {
    margin-top: 82px;
    margin-left: -20px;
    margin-right: -20px;
}

.features_col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.features__title {
    width: 70%;
}

.features__text {
    width: 56%;
}

.features_content {
    position: relative;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 378px;
    padding: 70px 45px 72px;
    border-radius: 18px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.features_container {
    margin-top: 72px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.features_descr_top {
    font-size: 20px;
    margin-bottom: 8px;
}

.features_title {
    font-size: 31px;
    width: 70%;
    margin: auto;
    font-family: SFProDisplay-Bold, sans-serif;
    font-weight: bold;
}

.features_inner img {
    width: 100%;
    margin-top: 37px
}

.section_function {
    text-align: center;
}

.functions__container {
    margin-top: 48px;
}

.section_functions_img {
    margin-top: 45px;
    margin-bottom: 60px;
}

.functions__container_wrapper {
    --column-count: 3;
    width: 100%;
    display: grid;
    grid-gap: 17px;
    gap: 17px;
    grid-template-columns: repeat(var(--column-count), 1fr);
}

.functions__item {
    --inner-padding: 20px;
    --manual-asset-offset: 26px;
    background-color: #f5f5f7;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    /*min-height: 416px;*/
    min-height: 355px;
    padding-top: 33px;
    flex-direction: column;
}

.functions__item_title {
    font-size: 34px;
    font-family: SFProDisplay-Bold, sans-serif;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 18px;
    line-height: 1.1em;
    font-weight: 600;
    padding: 0 55px 0;
}

.functions__item_text {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 21px;
    text-align: center;
    padding: 0 55px 0;
}

.functions__item_ref {
    color: #0170e2;
    margin-bottom: 33px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #0575e7;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.functions__item_ref:hover {
    opacity: .8;
    color: #0170e2;
    border-bottom: 2px solid #3b90e7;
    text-decoration: none;
}

.functions__item_img {
    display: flex;
    width: 100%;
    height: 100%;
}

.functions__item_img_desctop {
    display: flex;
}

.functions__item_img_mobile {
    display: none;
}

.functions__item_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
}

.functions__item[class*=part-1] {
    order: 1;
}

.functions__item[class*=part-2] {
    order: 2;
}

.functions__item[class*=part-3] {
    order: 3;
}

.functions__item[class*=part-4] {
    order: 4;
}

.functions__item[class*=part-5] {
    order: 5;
}

.functions__item[class*=part-6] {
    order: 6;
}

.functions__item[class*=part-7] {
    order: 7;
}

.functions__item[class*=part-8] {
    order: 8;
}

.functions__item[class*=part-9] {
    order: 9;
}

.functions__item[class*=part-10] {
    order: 13;
}

.functions__item[class*=part-11] {
    order: 11;
}

.functions__item[class*=part-12] {
    order: 12;
}

.functions__item[class*=part-13] {
    order: 10;
}


.functions__item-part-1 {
    grid-row-end: span 2;
    flex-direction: column;
    justify-content: flex-start;
}

.functions__item-part-1 .functions__item_img {
    align-items: flex-end;
    justify-content: flex-end;
}

.functions__item-part-1 .functions__item_img picture {
    display: flex;
    align-items: flex-end;
}

.functions__item-part-1 .functions__item_img img {
    max-width: 416px;
}

.functions__item-part-2 {
    background-image: url(../img/section_functions_img2.jpg);
    background-size: 72%;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.functions__item-part-2 .functions__item_title {
    text-align: left;
}

.functions__item-part-2 .functions__item_text {
    text-align: left;
    width: 62%;
}

.functions__item-part-2 .functions__item_ref {
    text-align: left;
    margin-left: 55px;
}


.functions__item-part-7 {
    grid-column-end: span 2;
    flex-wrap: wrap;
    padding-top: 0;
    background-image: url(../img/section_functions_img7.jpg);
    background-size: 80%;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.functions__item_inner {
    position: absolute;
    z-index: 10;
}

.functions__item-part-7 .functions__item_title {
    text-align: left;
    width: 65%;
    padding-top: 33px;
}

.functions__item-part-7 .functions__item_text {
    text-align: left;
    width: 56%;
}

.functions__item-part-7 .functions__item_ref {
    text-align: left;
    margin-left: 55px;
}

.functions__item-part-7 .functions__item_img {
    display: none;
}

.functions__item-part-8 {
    grid-column-end: span 2;
    flex-wrap: wrap;
    padding-top: 0;
    background-image: url(../img/section_functions_img8.png);
    background-size: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.functions__item-part-8 .functions__item_title {
    text-align: left;
    width: 40%;
    padding-top: 57px;
}

.functions__item-part-8 .functions__item_text {
    text-align: left;
    width: 46%;
}

.functions__item-part-8 .functions__item_ref {
    text-align: left;
    margin-left: 55px;
}

.functions__item-part-8 .functions__item_img {
    display: none;
}


.functions__item-part-3 .functions__item_img {
    align-items: flex-end;

}

.functions__item-part-3 .functions__item_img picture {
    display: flex;
    align-items: flex-end;
}

.functions__item-part-3 .functions__item_img img {
    max-width: 416px;
}

.functions__item.functions__item-part-4 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
}

.functions__item-part-4 .functions__item_text {
    padding: 0px 42px 0;
    margin-bottom: 25px;
}

.functions__item-part-4 .functions__item_ref {
    margin-bottom: 14px;
}

.functions__item-part-4 .functions__item_img {
    align-items: center;
    justify-content: center;
}

.functions__item-part-4 .functions__item_img img {
    max-width: 200px;
}

.functions__item-part-5 .functions__item_title {
    padding: 0 13px 0;
}

.functions__item-part-5 .functions__item_text {
    padding: 0 30px 0;
}

.functions__item-part-5 .functions__item_img {
    align-items: center;
    justify-content: center;
}

.functions__item-part-5 .functions__item_img img {
    max-width: 200px;
}

.functions__item-part-6 .functions__item_title {
    padding: 0 20px 0;
}

.functions__item-part-6 .functions__item_img {
    align-items: flex-end;
}

.functions__item-part-6 .functions__item_img picture {
    display: flex;
    align-items: flex-end;
}

.functions__item-part-6 .functions__item_img img {
    max-width: 416px;
}

.functions__item-part-9 {
    padding-top: 0px;
}

.functions__item-part-9 .functions__item_title {
    padding: 0 20px 0;
}

.functions__item-part-9 .functions__item_text {
    padding: 0px 20px 0;
}

.functions__item-part-10 {
    padding-top: 40px;
}

.functions__item-part-10 .functions__item_img {
    justify-content: center;
    height: auto;
    padding-bottom: 19px;
}

.functions__item-part-10 .functions__item_img img {
    max-width: 138px;
}

.functions__item-part-11 {
    padding-top: 27px;
}

.functions__item-part-11 .functions__item_img {
    justify-content: center;
    height: auto;
    padding-bottom: 31px;
}

.functions__item-part-11 .functions__item_img img {
    max-width: 300px;
}

.functions__item-part-11 .functions__item_title {
    padding: 0 10px 0;
}

.functions__item-part-11 .functions__item_text {
    padding: 0 35px 0;
}

.functions__item-part-12 {
    padding-top: 25px;
}

.functions__item-part-12 .functions__item_img {
    justify-content: center;
    height: auto;
    padding-bottom: 33px;
}

.functions__item-part-12 .functions__item_img img {
    max-width: 300px;
}

.functions__item-part-13 {
    padding-top: 40px;
}

.functions__item-part-13 .functions__item_img {
    align-items: flex-end;
    justify-content: center;
}

.functions__item-part-13 .functions__item_img picture {
    display: flex;
    align-items: flex-end;
}

.functions__item-part-13 .functions__item_img img {
    max-width: 416px;
}



/*Кейсы начало*/

.section__cases {
    padding-bottom: 0 !important;
}

.section__cases-inner {
    margin-top: 40px;
}

.reviews-tabs .tabs {
    color: #000000;
}

.reviews-tabs .tabs__button-group {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
    overflow-y: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

.reviews-tabs .tabs__toggle {
    appearance: none;
    cursor: pointer;
    font-weight: bold;
    padding: 15px 19px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 90px;
    position: relative;
}

.reviews-tabs .tabs__toggle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.reviews-tabs .tabs__toggle img {
    max-width: 80px;
    max-height: 60px;
    height: auto;
}

.reviews-tabs .big__logo {
    max-width: 60px !important;
}

.reviews-tabs .big__logo--XL {
    max-width: 44px !important;
}

.reviews-tabs .big__logo--M {
    max-width: 47px !important;
}

.reviews-tabs .big__logo-box {
    padding: 15px 15px !important;
}

.reviews-tabs .small__logo-box {
    padding: 15px 9px !important;
}

.reviews-tabs .tabs__toggle.active {
    background-color: #f2f2f2;
    border-radius: 13px 13px 0 0;
}

.reviews-tabs .tabs__tab-panel {
    display: none;
}

.reviews-tabs .tabs__tab-panel.active {
    display: block;
}

.tabs__tab-pane .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.tabs__tab-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.reviews-tabs .tabs__container {
    background-color: #f2f2f2;
    padding: 40px 40px;
    margin: 0 auto;
    border-radius: 20px;
    width: 89%;
}

.reviews-tabs__chart {
    max-width: 58%;
    padding-right: 15px;
}

.reviews-tabs__text {
    max-width: 41%;
    padding-right: 15px;
    padding-left: 15px;
}

.reviews-tabs .tabs__content {
    color: #000;
}

.reviews-tabs .square {
    height: 100%;
    min-height: 500px;
}

.square img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.reviews-tabs .reviews-tabs__client {
    margin-top: 40px;
    margin-bottom: 20px;
}

.reviews-tabs .reviews-tabs__client .images {
    position: relative;
}

.reviews-tabs .reviews-tabs__client .images .images__text {
    font-size: 17px;
    text-align: center;
    color: #000;
    padding: 3px 5px;
    white-space: nowrap;
}

.reviews-tabs__tag-inner {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
}

.reviews-tabs__tag {
    display: inline-block;
    z-index: 1;
    text-align: left;
}

.reviews-tabs__tag br {
    display: none;
}

.reviews-tabs .tag-text {
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
    color: black;
}

.reviews-tabs .title_color {
    color: #2644A7;
}

.reviews-tabs .tabs__content .title {
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

.reviews-tabs .tabs__content .name {
    font-weight: 700;
    font-size: 17px;
}

.reviews-tabs .tabs__content .position {
    font-size: 17px;
}

.reviews-tabs .tabs__content p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 75px;
}

.reviews-tabs_button {
    position: relative;
    display: block;
    max-width: 210px;
    text-align: center;
    border: none;
    border-radius: 30px;
    padding: 20px 40px;
    margin-top: -40px;
    margin-bottom: 75px;
    text-decoration: none;
    background-image: linear-gradient(to left, #6f9ff2, #5ebce0);
}

.reviews-tabs .no-btn {
    margin-top: -25px !important;
}

.reviews-tabs_button-text {
    color: white;
    font-size: 18px;
}

.tabs__youtube {
    max-width: 40%;
    flex: 0 40%;
}

.tabs__list {
    max-width: 50%;
    flex: 0 50%;
    padding-left: 20px;
    padding-right: 20px;
}

.novelty__img {
    border-radius: 13px;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.youtube-link {
    cursor: pointer;
}

.reviews-tabs .reviews-tabs__client .list .item {
    margin-bottom: 15px;
}

.reviews-tabs .reviews-tabs__client .list .title {
    font-size: 35px;
    font-weight: 400;
    color: #702FFF;
    margin-bottom: 5px;
    line-height: 38px;
}

.reviews-tabs .reviews-tabs__client .list .text {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

/*Кейсы конец*/




.section_action_call {
    background-image: url(../img/section_action_call_background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.section_action_call_img img {
    width: 100%;
    max-width: 110px;
    height: auto;
    object-fit: cover;
    position: relative;
    text-align: center;
    text-align: center;
    margin-bottom: 23px;
}

.action_call-title {
    font-size: 70px;
    margin-bottom: 22px;
    width: 100%;
}

.action_call-text {
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    font-size: 34px;
    line-height: 1.3em;
    text-align: center;
    width: 50%;
    margin-bottom: 43px;
}

.get_presentation__button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    /*white-space: nowrap;*/
    font-size: 21px;
    line-height: 1.1764805882;
    font-weight: 400;
    min-width: 28px;
    padding: 20px 33px;
    border-radius: 40px;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
}

.get_presentation__button:hover {
    background-color: #dfdfdf;
    color: #000;
    text-decoration: none;
}


.experience-title {
    background: linear-gradient(98deg, #f06645 14%, #6981c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 79px;
}

.section_experience {
    padding-bottom: 0px;
}

.section_experience .section-text {
    font-size: 33px;
    width: 80%;
    line-height: 1.3em;
}

.experience_slider {
    margin-top: 119px;
}

.experience_slider h3 {
    font-size: 45px;
    font-family: SFProDisplay-Bold, sans-serif;
    margin-top: 0px;
    margin-bottom: 30px;
    line-height: 1.1em;
    font-weight: 600;
    width: 71%;
}

.experience_slider p {
    margin: 0;
    font-size: 33px;
    line-height: 1.25em;
    margin-bottom: 13px;
}

.experience_slider_images {
    flex-basis: 41.66667%;
    max-width: 41.66667%;
    position: relative;
    top: 0;
    margin-bottom: 40px;
    width: auto;
    padding-left: 114px;
}

.experience_slider_images_container {
    width: 450px;
    height: 675px;
    position: sticky;
}

.image-crm-integration {
    position: relative;
    z-index: 2;
}

.image-crm-integration {
    width: 450px;
    height: 675px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/experience_slider_image_crm_integration.png);
}

.image-free-improvements {
    width: 450px;
    height: 675px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/experience_slider_image_free_improvements.png);
}

.image-crm-marketer {
    width: 450px;
    height: 675px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/experience_slider_image_crm_marketer.png);
}

.experience_slider_text {
    flex-basis: 50%;
    max-width: 50%;
    margin-left: auto;
    text-align: left;
}

.slider_text_block {
    position: relative;
    height: 800px;
    transition: opacity .1s ease;
}

.experience_slider_marker {
    position: absolute;
    left: -63px;
    top: 6px;
    max-width: 42px;
    width: 42px;
    height: 42px;
}

.experience_slider_marker img {
    max-width: 42px;
    width: 42px;
    height: 42px;
}

.screen {
    position: absolute;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

.will-change {
    will-change: transform
}

.screen.will-change {
    will-change: opacity
}

.will-change.screen-small {
    will-change: opacity
}

.screen.hide {
    opacity: 0;
}

.hide.screen-small {
    opacity: 0;
}

.section_topics {
    padding-top: 79px;
    padding-bottom: 114px;
}

.topics__container_wrapper {
    --column-count: 3;
    width: 100%;
    display: grid;
    grid-gap: 17px;
    gap: 17px;
    grid-template-columns: repeat(var(--column-count), 1fr);
    padding-top: 44px;
}

.topics__item {
    --inner-padding: 20px;
    --manual-asset-offset: 26px;
    background-color: #f5f5f7;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    min-height: 416px;
    padding-top: 57px;
    flex-direction: column;
}

.topics__item_part_1 .topics__item_img picture {
    width: 378px;
}

.topics__item_title {
    font-size: 34px;
    font-family: SFProDisplay-Bold, sans-serif;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 18px;
    line-height: 1.1em;
    font-weight: 600;
    padding: 0 55px 0;
}

.topics__item_text {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 21px;
    text-align: center;
    padding: 0 55px 0;
}

.topics__item_ref {
    color: #0170e2;
    margin-bottom: 33px;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 2px solid #4b8be5;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
}

.topics__item_ref:hover {
    opacity: .8;
    border-bottom: 2px solid #3b90e7;
}

.topics__item_img {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
}

.topics__item_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
}

.topics__item_img picture {
    display: flex;
    align-items: flex-end;
}

.topics__item_img img {
    max-width: 416px;
}
@media only screen and (max-width: 900px) {
    .topics__item_title {
        font-size: 30px;
        padding: 0 15px;
    }
}

.section.section_clients {
    padding-bottom: 40px;
    overflow: hidden;
}

.clients_container_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1030px;
    padding-top: 48px;
    margin: auto;
}

.clients_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 52px;
    margin-bottom: 63px;
}

.clients_item_slogan {
    color: #000;
    font-size: 18px;
    line-height: 1.3em;
    text-align: left;
    padding: 42px 40px 42px 63px;
    margin-bottom: 11px;
    font-family: SFProDisplay-Bold, sans-serif;
}

.clients_item_slogan_1 {
    width: 358px;
    height: 165px;
    background-image: url(../img/section_clients_bg_1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-bottom: 18px;
}

.clients_item_slogan_2 {
    width: 374px;
    height: 172px;
    background-image: url(../img/section_clients_bg_2.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.clients_item_slogan_3 {
    width: 358px;
    height: 165px;
    background-image: url(../img/section_clients_bg_3.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.clients_item_slogan_4 {
    width: 374px;
    height: 172px;
    background-image: url(../img/section_clients_bg_4.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.clients_item_title {
    font-size: 32px;
    margin: auto;
    margin-bottom: 17px;
}

.clients_item_list {
    padding: 0;
    margin: 0;
}

ul.clients_item_list li {
    list-style: none;
    font-size: 19px;
    line-height: 1.5em;
    position: relative;
    padding-left: 29px;
    margin-top: 0;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -0.15px;
}

ul.clients_item_list li:after {
    content: "";
    background-image: url(../img/experience_slider_marker2.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 20px;
    height: 20px;
}

.clients_item_part_3 .clients_item_title {
    width: 102%;
}

.clients_item_part_4 .clients_item_title {
    width: 125%;
}

.footer {
    border-top: #d2d2d8 solid 2px;
    padding-top: 45px;
    padding-bottom: 95px;
}

.footer_container {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
}

.footer_logo {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    /*align-items: center;*/
    justify-content: space-between;
}

.footer_logo .logo__img {
    width: 100%;
    max-width: 115px;
}

.footer_copyright_text {
    width: 55%;
    padding-right: 105px;
}

.footer_nav_container {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    width: 80%;
    max-width: 997px;
    padding: 0 52px;
}

.footer_nav_container .nav__list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_nav:not(:last-child) {
    margin-right: 0px;
    width: 27%;
}

.footer_nav .nav__item:not(:last-child) {
    margin-bottom: 12px;
}

.footer_nav {
    width: 30%;
}

.footer_copyright_text h2 {
    font-size: 34px;
    font-family: SFProDisplay-Bold, sans-serif;
    margin-top: 0px;
    margin-bottom: 23px;
    line-height: 1.1em;
    font-weight: 600;
    margin-top: -7px;
}

@media only screen and (max-width: 900px) {
    .footer_copyright_text h2 {
        font-size: 28px;
    }
}
.footer_copyright_text p {
    font-size: 15px;
    line-height: 1.4em;
    padding-bottom: 24px;
    width: 80%;
}

.remarked_telegram_ref {
    font-size: 18px;
    line-height: 1.3em;
    color: #0170e2;
    text-decoration: none;
    border-bottom: 2px solid #0170e2;
}

.remarked_telegram_ref:hover {
    opacity: .8;
    border-bottom: 2px solid #3b90e7;
}

.connect-block.connect-sticky {
    animation: .95s ease forwards;
    webkit-animation: .95s ease forwards;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    display: flex;
    height: 61px;
    position: fixed;
    right: 0;
    webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    width: 320px;
    z-index: 9811;
    border-radius: 23px 0px 0px 0px;
}

.connect-block-phone {
    display: flex;
    align-items: center;
    line-height: 16px;
    margin: 10px 5px 10px 20px;
    font-family: SFProDisplay-Bold, sans-serif;
}

.connect-block-phone:hover {
    opacity: .8;
}

.connect-block a {
    text-decoration: none;
    color: #000;
    margin-right: 10px;
}

.connect-block a:last-child {
    margin-right: 0;
}

.connect-block-messengers {
    display: none;
}

.connect-block img {
    height: 40px;
    width: 40px;
}



#popup-get-presentation {
    display: none;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-name: fadeIn;
}

#popup-get-presentation.open {
    display: block;
}

#popup-sent-presentation-message {
    display: none;
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-name: fadeIn;
}

#popup-sent-presentation-message.open {
    display: block;
}

.popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(17, 17, 17, 0.5);
    transition: all 0.5s ease;
    display: none;
    z-index: 20;
}

.popup2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(17, 17, 17, 0.5);
    transition: all 0.5s ease;
    display: none;
    z-index: 20;
}

.popup__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 18px;
    max-width: 480px;
    width: 100%;
}

.popup__wrapper {
    padding: 50px;
}

.popup-close {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0;
}

.popup-close img {
    width: 40px;
}

.popup-title {
    font-size: 2.1em;
    line-height: 1em;
    margin-bottom: 26px;
    text-align: left;
    font-family: SFProDisplay-Bold, sans-serif;
}

.popup-sent-title {
    font-size: 2.1em;
    line-height: 1em;
    margin-bottom: 26px;
    text-align: left;
    font-family: SFProDisplay-Bold, sans-serif;
}

.popup-sent-text {
    font-size: 2.1em;
    line-height: 1em;
    margin-bottom: 26px;
    text-align: left;
    font-family: SFProDisplay-Bold, sans-serif;
}

.popup-agreement {
    line-height: 18px;
    margin-top: 15px;
    font-size: 12px;
}

.popup-agreement a {
    text-decoration: none;
    color: #6f9ff2;
}

.popup .popup__row {
    margin-bottom: 24px;
    position: relative;
}

.popup label {
    color: #7c7b7b;
    left: 18px;
    line-height: 28px;
    o-transition: .3s;
    top: 0px;
    transition: .3s;
    webkit-transition: .3s;
    z-index: -1;
    padding-bottom: 1px;
    position: absolute;
    top: 15px;
    font-size: 19px;
}

.popup label.active {
    font-size: 14px;
    color: #c8c8c8;
    top: 0;
}

.popup input {
    background-color: transparent;
    border-radius: 15px;
    border: 1px solid #c8c8c8;
    padding: 20px 16px 11px 16px;
    color: #000;
    width: 100%;
}

.popup .input-error input {
    border-color: #d04f4f;
    outline-color: #d04f4f;
}

.popup .input-error label {
    color: #d04f4f;
}

.popup .input-complete label {
    color: #4ac573;
}

.popup .input-complete input {
    border-color: #4ac573;
    outline-color: #4ac573;
}

.btn-success {
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    min-width: 28px;
    padding: 18px 48px;
    border-radius: 40px;
    background-image: linear-gradient(to left, #6f9ff2, #5ebce0);
    color: #fff;
    text-decoration: none;
}

.btn-success:hover {
    opacity: .4;
}

/* Страница броней */
.booking-page .section__cases {
    padding-bottom: 45px !important;
}

.reserves-examples__tab-panel {
    display: none;
}

.reserves-examples__tab-panel.active {
    display: block;
}

.reserves-examples__tab-content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-bottom: 20px;
}

.reserves-examples__tabs-item {
    appearance: none;
    cursor: pointer;
    font-weight: bold;
    padding: 4px 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 35px;
    position: relative;
    font-size: 16px;
}

.reserves-examples__tabs-item.active {
    color: #e06768;
}

.reserves-examples__tabs-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 82%;
    margin: 0 auto;
}

.reserves-examples__wrap {
    margin-bottom: 65px;
}

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

.reserves-examples__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.reserves-examples__arrow-previous,
.reserves-examples__arrow-next {
    width: 6rem;
    background: none;
    border: 0;
    cursor: pointer;
}

.booking-presentation__text-wrap {
    /*margin-bottom: 60px;*/
	width: 79%;
    margin: 0 auto 60px;
}
.booking-presentation__text-wrap p {
    font-size: 1.2em;
    margin-bottom: 1.2em;
    line-height: 1.2em;
}

/* BOOKING: metrics section start */
.section__reserves-metrics {
    padding: 150px 0 !important;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.reserves-metrics__counter {
    text-align: center;
    margin-top: 77px;
}

.reserves-metrics__counter-num {
    font-size: 100px;
    background-image: linear-gradient(to right, #eb7e46, #da5a7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reserves-metrics__title {
    line-height: 1em !important;
    margin-bottom: 0 !important;
}

.reserves-metrics__restaurants-count,
.reserves-metrics__years {
    background-image: linear-gradient(to bottom, #c26086, #8d75a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BOOKING: metrics section end */



.erm-page {
    position: relative;
}

.erm-top__section {
    position: relative;
    height: auto;
    padding-top: 98px;
    padding-bottom: 200px;
    overflow: hidden;
    background-image: url("/new-v2/img/erm/section__top-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 25px;
}

.erm-top__wrapper {
    position: relative;
    width: 61%;
}

.erm-top__img {
    position: absolute;
    display: block;
    top: 19.4%;
    right: 6.9%;
    max-width: 52%;
}

.main-tag {
    margin-bottom: 26px;
}

.main-tag span {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #6596e8;
    border-radius: 12px;
    padding: 10px 20px;
    background: #f4f9fd;
    background: linear-gradient(270deg, rgba(111, 159, 242, 0.9) 0%, rgba(94, 188, 224, 0.9) 100%);
    background: linear-gradient(270deg, #f4f7fe 0%, #f2fafd 100%);
}

.erm-page .main__button {
    display: block;
    border-radius: 16px;
    padding: 20px 40px;
    width: 317px;
}

.erm-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.erm-descriprtion-text {
    padding-top: 60px;
    padding-bottom: 90px;
    text-align: center;
}

.erm-page .erm-descriprtion-text .main__button {
    width: 225px;
    margin: 58px auto 10px;
}

.erm-descriprtion-text .section-text {
    width: 61%;
    font-size: 21px;
    line-height: 1.3em;
    margin-bottom: 17px;
}

.erm-bottom-text {
    padding-top: 60px;
    padding-bottom: 90px;
    text-align: center;
}

.erm-bottom-text .section-text {
    width: 80%;
    font-size: 21px;
    line-height: 1.3em;
    margin-bottom: 17px;
    text-align: left;
}


.section__blue {
    background: #f8f9fd;
}

.advantages {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    gap: 10px;
}

.advantages__item {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin-bottom: 15px;
    flex: 0 0 32.5%;
    max-width: 32%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 40px 60px 40px;
    align-items: center;
}

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

.erm-page .features_container {
    margin-top: 16px;
    margin-left: -5px;
    margin-right: -5px;
}

.erm-section .features_content {
    display: flex;
    background: #f8f9fc;
    border-radius: 16px;
    padding: 70px 45px 0px;
    box-shadow: none;
}

.erm-section .features_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.erm-section .features_inner img {
    margin-top: 75px;
}

.erm-section .features_col {
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 40px;
}

.erm-section .reserves-examples__arrow-previous, .erm-section .reserves-examples__arrow-next {
    width: 3.25rem;
}

.erm-section .reserves-examples__tabs-buttons {
    width: 100%;
}

.erm-section .reserves-examples__wrap {
    margin-bottom: 0;
}

.section_action_call-erm {
    background-image: url(../img/erm/section_action_call-erm-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
}

.section_action_call-erm .get_presentation__button  {
    /*line-height: 1.1764805882;*/
    font-weight: 500;
    min-width: 28px;
    padding: 20px 40px;
    border-radius: 16px;
    background: linear-gradient(270deg, #6f9ff2 0%, #5ebce0 100%);
    color: #ffffff;
}

.presentation-top__section {
    position: relative;
    height: auto;
    padding-top: 98px;
    padding-bottom: 200px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 25px;
}

.presentation-top__wrapper {
    display: flex;
    justify-content: flex-end;
}
.presentation-top__wrapper-inner {
    width: 48%;
}

.presentation-top__section .main-title {
    font-size: 64px;
}

.presentation-top__section .section-text {
    text-align: left;
    width: 78%;
    margin: 0 0 26px 0;
}

.presentation-top__section .section-text:last-child {
    margin: 0;
}

.presentation-top__img {
    position: absolute;
    display: block;
    bottom: 0;
    left: 6.9%;
    max-width: 62%;
}

@media screen and (max-width: 480px) {
  .presentation-top__img {
    max-width: 79%;
}
}

.blue-gradient {
    position: relative;
    background: linear-gradient(180deg, #eaf8ff 0, #f6f6ff 100%);
    background: -o-linear-gradient(top, #eaf8ff 0, #f6f6ff 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#eaf8ff), to(#f6f6ff));
    background: -webkit-linear-gradient(top, #eaf8ff 0, #f6f6ff 100%);
}

.presentation-description__wrapper {
    width: 50%;
}

.presentation-description__wrapper .section-text {
    width: 58%;
    margin: 100px 0 0 0;
    text-align: left;
}

.presentation-description__img-aside {
    position: absolute;
    display: block;
    bottom: 110px;
    right: 6.9%;
    max-width: 62%;
}

.presentation-columns__wrapper {
    --column-count: 4;
    width: 100%;
    display: grid;
    grid-gap: 17px;
    gap: 17px;
    grid-template-columns: repeat(var(--column-count), 1fr);
}

.presentation-columns__item {
    --inner-padding: 20px;
    --manual-asset-offset: 26px;
    background-color: #ffffff;
    border-radius: 18px;
    display: flex;
    overflow: hidden;
    /*min-height: 416px;*/
    min-height: auto;
    padding-top: 33px;
    flex-direction: column;
}

.presentation-columns__item[class*=part-1] {
    order: 1;
}

.presentation-columns__item[class*=part-2] {
    order: 2;
}

.presentation-columns__item[class*=part-3] {
    order: 3;
}

.presentation-columns__item[class*=part-4] {
    order: 4;
}

.presentation-columns__item[class*=part-5] {
    order: 5;
}

.presentation-columns__item[class*=part-6] {
    order: 6;
}

.presentation-columns__item[class*=part-6-1] {
    order: 6;
}

.presentation-columns__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
}

.presentation-columns__title {
    font-size: 28px;
    font-family: SFProDisplay-Bold, sans-serif;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 1.1em;
    font-weight: 600;
    padding: 0px 30px 0;
}

.presentation-columns__text {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 30px;
    text-align: center;
    padding: 0 30px 0;
}

.presentation-columns__item_img {
    display: flex;
    max-width: 100%;
    height: auto;
    justify-content: center;
}

.presentation-columns__item_img_desctop {
    display: flex;
    margin-bottom: 14px;
}

.presentation-columns__item_img_mobile {
    display: none;
}

.presentation-columns__item-part-1 {
    grid-row-end: span 2;
    flex-direction: column;
    justify-content: flex-start;
}

.presentation-columns__item-part-1 .presentation-columns__item_img {
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}

.presentation-columns__item-part-1 .presentation-columns__item_img.item_img--left {
    justify-content: flex-start;
}

.presentation-columns__item-part-1 h3, .presentation-columns__item-part-1 p {
    text-align: left;
}

.presentation-columns__item-part-4 {
    grid-row-end: span 2;
    flex-direction: column;
    justify-content: flex-start;
}

.presentation-columns__item-part-4 h3, .presentation-columns__item-part-4 p {
    text-align: left;
}

.presentation-columns__item-part-4 .presentation-columns__item_img {
    
    /*justify-content: flex-end;*/
    height: 100%;
    padding-left: 0;
    justify-content: flex-end;
}

.blue-gradient .presentation-columns__item-part-4 .presentation-columns__item_img {
    justify-content: flex-start;
    height: 100%;
    padding-left: 0;
    align-items: flex-end;
}

.presentation-columns__item-part-6-1 {
    justify-content: flex-end;
    /*background-image: url(../img/presentation-booking/additional6.png);
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;*/
}

.presentation__contacts-wrapper {
    display: flex;
}

.presentation__contacts-text {
    display: flex;
    flex-direction: column;
    width: 67%;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding-right: 62px;
}

.presentation__contacts-text p {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    width: 51%;
}

.presentation__contacts-img {
    display: flex    ;
    justify-content: center;
    width: 33%;
}

.presentation__contacts-list {
    display: flex;
    width: 88%;
    margin-top: 35px;
    justify-content: space-between;
    text-align: center;
}
.presentation__contacts-item {
    width: 33.33%;
}

.presentation__contacts-item:first-child {
    text-align: left;
}

.presentation__contacts-item:last-child {
    text-align: right;
}

.presentation__contacts-item a {
    text-decoration: none;
    color: #000;
    font-size: 22px;
    font-weight: 600;
}

.presentation__contacts-item a:last-child {
    text-decoration: solid 1px #000;
}

.calculate_benefit_button {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 61px;
    border-radius: 0 20px 0 0;
    background: linear-gradient(90deg, #5fbae1 0%, #6da1f0 100%);
    box-shadow: 6px -6px 32px 0 rgba(1, 2, 54, 0.12);
    cursor: pointer;
    z-index: 20;
}

.calculate_benefit_button:hover {
    opacity: .8;
}

.calculate_benefit_button a {
    font-weight: 500;
    font-size: 20px;
    color: #fff !important;
    text-decoration: none;
}

.calculate_benefit_button a:hover {
    color: #fff;
    text-decoration: none;
}


@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 1170px;
    }

    .nav__item:not(:last-child) {
        margin-right: 15px;
    }

    .header__logo img {
        width: 144px;
    }

    .top-slider__container {
        width: 1170px;
    }

    .main-title {
        font-size: 62px;
        margin-bottom: 40px;
        line-height: 1.0em;
    }

    .main-descr {
        font-size: 26px;
        margin-bottom: 40px;
        width: 84%;

    }

    .main__button {
        font-size: 17px;
        padding: 19px 43px;
    }

    .section {
        padding-top: 90px;
        padding-bottom: 109px;
    }

    .section-title {
        font-size: 54px;
        line-height: 1.1em;
    }

    .section__all-services h2 {
        margin-bottom: 54px;
    }

    .round_corners_block__inner img {
        max-height: 83px;
    }

    .round_corners_block_title {
        font-size: 16px;
        line-height: 1.4em;
    }

    .round_corners_block_text {
        font-size: 16px;
    }

    .restaurants_metrics__counter {
        font-size: 92px;
    }

    .restaurants_metrics__items p {
        font-size: 32px;
    }

    .restaurants_metrics__items p.restaurants_metrics_gradient {
        font-size: 68px;
    }

    .section.section__cases {
        padding-top: 86px;
    }

    .section-text {
        font-size: 18px;
    }

    .features_container {
        margin-top: 60px;
    }

    .features_content {
        padding: 55px 45px 65px;
    }
	
	

    .features_inner img {
        margin-top: 21px;
    }

    img .features_descr_top {
        font-size: 18px;
    }

    .features_title {
        font-size: 29px;
    }

    .section_functions_img {
        margin-top: 26px;
        margin-bottom: 47px;
        width: 78%;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .erm-top__section {
        padding-bottom: 170px;
    }

    .erm-top__img {
        top: 24.4%;
    }

    .erm-descriprtion-text {
        padding-top: 60px;
        padding-bottom: 90px;
        text-align: center;
    }

    .erm-section .features_content {
        padding: 55px 45px 0px;
    }

}

@media (max-width: 1300px) {
    .reviews-tabs .tabs__toggle {
        padding: 15px 17px;
    }

    .reviews-tabs .big__logo {
        max-width: 55px !important;
    }

    .reviews-tabs .big__logo--XL {
        max-width: 44px !important;
    }

    .reviews-tabs .big__logo--M {
        max-width: 47px !important;
    }

    .reviews-tabs .big__logo-box {
        padding: 15px 20px !important;
    }

    .reviews-tabs .small__logo-box {
        padding: 15px 9px !important;
    }

    .tabs__list {
        max-width: 60%;
        flex: 0 60%;
    }
}

@media (max-width: 1250px) {
    .reviews-tabs .tabs__toggle {
        padding: 15px 15px;
    }

    .reviews-tabs .big__logo {
        max-width: 55px !important;
    }

    .reviews-tabs .big__logo--XL {
        max-width: 44px !important;
    }

    .reviews-tabs .big__logo--M {
        max-width: 47px !important;
    }

    .reviews-tabs .big__logo-box {
        padding: 15px 18px !important;
    }

    .reviews-tabs .small__logo-box {
        padding: 15px 8px !important;
    }
}


@media only screen and (max-width:1199px) {
    .container {
        max-width: 960px;
        padding-right: 20px!important;
        padding-left: 20px!important;
    }

    .logo__img {
        max-width: 105px;
        margin-top: 6px;
    }

    .nav__item:not(:last-child) {
        margin-right: 8px;
    }

    .nav__link {
        font-size: 14px;
    }

    .header__contact_button {
        padding: 8px 27px;
        font-size: 14px;
    }

    .contact_button {
        padding: 8px 22px;
        font-size: 15px;
    }

    .top-slider {
        /* height: 86vh; */
        min-height: 600px;
        margin-top: 56px;
        padding-bottom: 60px;
    }

    .top-slider__container {
        width: 100%;
    }

    .main-title {
        font-size: 56px;
        line-height: 1em;
        margin-bottom: 23px;
    }

    .main-descr {
        font-size: 20px;
        margin-bottom: 40px;
        line-height: 1.2em;
    }

    .main__button {
        font-size: 17px;
        padding: 18px 44px;
    }

    .top-slider-screen-gallery {
        --lock-screen-image-width: 232px;
        --lock-screen-image-height: 467px;
        --gallery-item-gap: 20px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-1 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-1 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-2 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-3 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-4 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-5 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-6 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-7 .device {
        width: 232px;
        height: 467px;
        background-size: 232px 467px;
    }

    .top-slider-screen-gallery .paddlenav {
        left: calc(var(--gallery-item-width)*(1 - var(--gallery-paddlenav-width-reduction))/2);
    }

    .paddlenav-arrow-previous {
        left: 0px;
    }

    .paddlenav-arrow-next {
        right: 0px;
    }

    .section {
        padding-top: 73px;
        padding-bottom: 98px;
    }

    .section-title {
        font-size: 45px;
    }

    .section__all-services h2 {
        margin-bottom: 47px;
    }

    .round_corners_block__inner img {
        max-height: 71px;
    }

    .round_corners_block_title {
        font-size: 17px;
        margin-top: 16px;
        margin-bottom: 8px;
        line-height: 1.2em;
    }

    .round_corners_block_text {
        font-size: 15px;
        line-height: 1.5em;
    }

    .section.section__restaurants_metrics {
        padding-bottom: 30px;
    }

    .restaurants_metrics__counter {
        font-size: 97px;
    }

    .restaurants_metrics__title {
        margin-top: -5px;
        font-size: 41px;
    }

    .restaurants_metrics__container {
        margin-top: 13px;
    }

    .restaurants_metrics__items p {
        font-size: 27px;
        font-weight: 600;
    }

    .restaurants_metrics__items p.restaurants_metrics_gradient {
        font-size: 64px;
    }

    .section-text {
        font-size: 17px;
    }

    .features_container {
        margin-top: 32px;
    }

    .features_content {
        padding: 50px 45px 65px;
    }

    .features_descr_top {
        font-size: 17px;
    }

    .features_title {
        font-size: 28px;
        line-height: 1em;
    }

    .features_content {
        min-height: 603px;
    }

    .section_functions_img {
        margin-top: 23px;
        margin-bottom: 40px;
        width: 100%;
    }

    .functions__item {
        padding-top: 33x;
        min-height: 340px
    }

    .functions__item_title {
        padding: 0 30px 0;
    }

    .functions__item_text {
        padding: 0 30px 0;
    }

    .functions__item-part-2 .functions__item_ref {
        text-align: left;
        margin-left: 30px;
    }

    .functions__item-part-4 .functions__item_text {
        padding: 0px 30px 0;
        margin-bottom: 25px;
    }

    .functions__item-part-7 .functions__item_ref {
        text-align: left;
        margin-left: 30px;
    }

    /*.functions__item-part-7 .functions__item_title {
		padding-top: 0;
	}*/
    .functions__item-part-7 .functions__item_text {
        width: 50%;
    }

    .functions__item-part-7 {
        background-size: 90%;
    }

    .functions__item-part-8 {
        padding-top: 0;
        background-size: 115%;
        background-position-x: 0px;

    }

    .functions__item-part-8 .functions__item_title {
        text-align: left;
        width: 40%;
        padding-top: 33px;
    }

    .functions__item-part-8 .functions__item_ref {
        margin-left: 30px;
    }

    .functions__item-part-9 {
        padding-top: 0;
    }

    .functions__item-part-8 .functions__item_img img {
        width: 114%;
        height: auto;
        object-fit: cover;
        position: relative;
    }

    .functions__item.functions__item-part-11 {
        padding-top: 13px;
    }

    .functions__item-part-11 .functions__item_text {
        padding: 0 6px 0;
    }

    .experience-title {
        font-size: 58px;
        margin-bottom: 25px;
    }

    .reviews-tabs .tabs__content p {
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 35px;
    }

    .reviews-tabs_button {
        margin-bottom: 45px;
        margin-top: -10px;
        padding: 17px 40px;
    }


    /* Лого клиентов начало */
    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-1.jpg'] {
        width: 80%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-67.png'] {
        width: 100%;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-4.png'] {
        width: 100%;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-5.jpg'] {
        width: 100%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-6.png'] {
        width: 100%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-7.jpg'] {
        width: 100%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-8.jpg'] {
        width: 100%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-9.jpg'] {
        width: 80%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-10.jpg'] {
        width: 90%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-11.jpg'] {
        width: 90%;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-41.jpg'] {
        width: 100%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-13.jpg'] {
        width: 60%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-14.jpg'] {
        width: 100%;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-15.jpg'] {
        width: 100%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-16.jpg'] {
        width: 70%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-17.png'] {
        width: 70%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-18.jpg'] {
        width: 100%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-19.jpg'] {
        width: 100%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-20.jpg'] {
        width: 70%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-21.png'] {
        width: 70%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-22.png'] {
        width: 70%;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-23.png'] {
        width: 100%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-25.png'] {
        width: 55%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-26.png'] {
        width: 60%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-27.png'] {
        width: 80%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-28.png'] {
        width: 100%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-30.jpg'] {
        width: 60%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-31.jpg'] {
        width: 90%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-32.jpg'] {
        width: 70%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-33.jpg'] {
        width: 100%;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-24.png'] {
        width: 100%;
    }

    /* .resize .resize-3 div:nth-child(3){max-width: 25.666667%;}
    .resize .resize-3 div:nth-child(7){max-width: 25.666667%;} */

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-34.jpg'] {
        width: 100%;
        
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-35.jpg'] {
        width: 100%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-36.png'] {
        width: 70%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-37.jpg'] {
        width: 100%;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-38.jpg'] {
        width: 70%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-39.jpg'] {
        width: 60%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-40.jpg'] {
        width: 100%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-42.jpg'] {
        width: 100%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-43.png'] {
        width: 100%;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-12.png'] {
        width: 100%;
    }

    /* .resize .resize-4 div:nth-child(1){max-width: 25.666667%;}
    .resize .resize-4 div:nth-child(9){max-width: 25.666667%;} */

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-44.jpg'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-45.jpg'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-46.png'] {
        width: 70%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-47.jpg'] {
        width: 70%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-48.jpg'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-49.jpg'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-50.png'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-51.jpg'] {
        width: 100%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-52.png'] {
        width: 70%;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-53.jpg'] {
        width: 70%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-56.jpg'] {
        width: 90%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-57.jpg'] {
        width: 60%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-58.png'] {
        width: 90%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-59.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-60.jpg'] {
        width: 80%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-61.png'] {
        width: 90%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-62.jpg'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-63.jpg'] {
        width: 90%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-64.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-80.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-66.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-2.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-3.jpg'] {
        width: 80%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-74.jpg'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-54.jpg'] {
        width: 80%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-55.jpg'] {
        width: 90%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-71.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-68.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-70.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-69.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-77.png'] {
        width: 100%;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-76.png'] {
        width: 100%;
    }

    /* .resize .resize-6 div:nth-child(19){max-width: 25.666667%;} */
    /*.resize .resize-6 div:nth-child(3){max-width: 25.666667%;}
    .resize .resize-6 div:nth-child(5){max-width: 25.666667%;}
    .resize .resize-6 div:nth-child(6){max-width: 25.666667%;} */

    /* Лого клиентов конец */

    .main-tag span {
        font-size: 17px;
        padding: 9px 18px;
    }

    .clients_item {
        padding: 0 37px;
    }

    .erm-top__section {
        padding-bottom: 170px;
    }

    .erm-top__img {
        position: absolute;
        display: block;
        top: 29.4%;
        right: 2.9%;
        max-width: 52%;
    }

    .erm-descriprtion-text {
        padding-top: 40px;
        padding-bottom: 80px;
        text-align: center;
    }

    .erm-descriprtion-text .section-text {
        font-size: 17px;
    }

    .erm-section {
        padding-top: 73px;
        padding-bottom: 98px;
    }

    .erm-section .features_content {
        padding: 50px 40px 0px;
        min-height: auto;
    }
    .erm-section .features_title {
        width: 100% !important;
        font-size: 22px !important;
    }

    .erm-section .features_inner img  {
        margin-top: 55px;
    }

}

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

    /*Кейсы начало*/
    .reviews-tabs .tabs__toggle {
        height: 70px;
        padding: 15px 10px;
    }

    .reviews-tabs .tabs__toggle img {
        max-width: 65px;
    }

    .reviews-tabs .small__logo {
        width: 80px;
        margin: 0
    }

    .reviews-tabs .big__logo {
        max-width: 55px !important;
    }

    .reviews-tabs .big__logo--XL {
        max-width: 44px !important;
    }

    .reviews-tabs .big__logo--M {
        max-width: 47px !important;
    }

    .reviews-tabs .big__logo-box {
        padding: 15px 16px !important;
    }

    .reviews-tabs .small__logo-box {
        padding: 15px 8px !important;
    }

    /*Кейсы конец*/

    .booking-clients_container_wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }

    .booking-clients_item {
        margin-bottom: 60px !important;
    }
}

@media only screen and (max-width:1100px) {
    .reviews-tabs .reviews-tabs__client {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    /*
	.reviews-tabs .reviews-tabs__client .images .images__text {
		font-size: 17px;
	}
	.reviews-tabs .tabs__content .name {
		font-size: 18px;
	}
	.reviews-tabs .tabs__content .position {
	   font-size: 18px;
	}
	*/
    .reviews-tabs .reviews-tabs__client .list .text {
        font-size: 19px;
        line-height: 21px;
    }

    .section_experience .section-text {
        font-size: 28px;
        width: 80%;
        line-height: 1.3em;
    }

    .experience_slider h3 {
        font-size: 40px;
        font-family: SFProDisplay-Bold, sans-serif;
        margin-top: 0px;
        margin-bottom: 30px;
        line-height: 1.1em;
        font-weight: 600;
        width: 85%;
    }

    .experience_slider p {
        margin: 0;
        font-size: 28px;
        line-height: 1.25em;
        margin-bottom: 13px;
    }

    .experience_slider_marker {
        position: absolute;
        left: -59px;
        top: 1px;
        max-width: 42px;
        width: 42px;
        height: 42px;
    }

    .experience_slider_images {
        padding-left: 94px;
    }
	.round_corners_block__inner {
		padding: 40px 20px 50px;
	}

}

@media (max-width:915px) {
    .booking_all-services .round_corners_block__item {
        width: 48.5% !important;
        margin-left: 0;
        margin-right: 0 !important;
    }
	
    .restaurants_metrics__items p.restaurants_metrics_gradient {
        font-size: 52px;
    }
}
@media only screen and (max-width:991px) {
    .clients_container_wrapper {
        justify-content: center;
    }
}
@media only screen and (min-width: 768px) and (max-width:991px) {
    .container {
        /*max-width: 454px;*/
    }

    .top-slider__container {
        /*width: 454px;*/
    }

    .contact_button_desctop {
        display: none;
    }

    .contact_button_mobile {
        display: block;
    }

    .header__nav {
        display: none;
    }

    .header__mobile_part {
        display: flex;
        display: -ms-flexbox;
        justify-content: flex-end;
    }

    .header__nav_mobile {
        align-items: center;
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        justify-content: flex-end;
        ms-flex-align: center;
        ms-flex-pack: end;
        webkit-align-items: center;
        webkit-box-align: center;
        webkit-box-pack: end;
        webkit-justify-content: flex-end;
        margin-left: 0px;
    }

    .header__nav_mobile div {
        color: #000248;
        display: block;
        height: 15px;
        pointer-events: auto;
        position: relative;
        width: 15px;
        margin-left: 18px;
    }

    .header__nav_mobile div i {
        background: currentColor;
        height: 2px;
        left: 0;
        margin-top: -1px;
        o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        top: 50%;
        transition: all .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .header__nav_mobile div i::before {
        top: -5px;
    }

    .header__nav_mobile div i::after {
        top: 5px;
    }

    .header__nav_mobile div i::after,
    .header__nav_mobile div i::before {
        background: inherit;
        content: "";
        height: 100%;
        left: 50%;
        ms-transform: translate(-50%);
        o-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        transform: translate(-50%);
        transition: width .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transform: translate(-50%);
        webkit-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .popup-mobile-menu .inner ul.mainmenu-item li {
        font-size: 26px;
    }

    .popup-mobile-menu .inner {
        width: 400px
    }

    .popup-mobile-menu .inner .close-menu {
        right: 18px;
    }

    .experience_slider_images {
        padding-left: 10px;
    }

    .functions__item-part-8 {
        padding-top: 0;
        background-size: 133%;
        background-position-x: 0px;
    }

}

@media (max-width: 992px) {
    .erm-top__img {
        position: absolute;
        display: block;
        top: 46.4%;
        right: 2.9%;
        max-width: 47%;
    }

    /* Кейсы начало */
    .reviews-tabs .tabs__container {
        border-radius: 0;
        padding: 40px 30px;
    }

    .reviews-tabs .tabs {
        display: flex;
        flex-direction: row-reverse;
    }

    .reviews-tabs .tabs__toggle {
        padding: 15px;
        height: 100%;
        margin: 0 auto;
    }

    .reviews-tabs .tabs__toggle.active {
        border-radius: 0;
    }

    .reviews-tabs .tabs__toggle img {
        max-width: 80px;
        width: 100%;
        height: auto;
        max-height: 200px;
    }

    .reviews-tabs .big__logo {
        width: 60px;
        max-width: 60px;
        margin: 0 auto;
    }

    .reviews-tabs .big__logo--XL {
        max-width: 44px !important;
    }

    .reviews-tabs .big__logo--M {
        max-width: 47px !important;
    }

    .reviews-tabs .big-box {
        padding: 10px !important;
        margin: 0 auto;
    }

    .reviews-tabs .small__logo {
        margin: 0 auto;
    }

    .reviews-tabs .tabs .tabs__button-group {
        max-width: 20%;
        flex: 0 0 20%;
        flex-direction: column;
        padding: 0;
        margin: 0
    }

    .reviews-tabs .tabs .tabs__button-group>li {
        width: 100%;
    }

    .reviews-tabs .square {
        min-height: 300px;
    }

    .reviews-tabs .tabs__content .title {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .reviews-tabs .reviews-tabs__client {
        margin-top: 60px;
        margin-bottom: 20px
    }

    .reviews-tabs_button {
        padding: 15px 40px;
    }

    .reviews-tabs .tabs__content p {
        font-size: 14px;
    }

    .reviews-tabs .reviews-tabs__client .images img {
        width: 100%;
        object-fit: cover;
    }

    .reviews-tabs .reviews-tabs__client .images .images__text {
        font-size: 16px;

    }

    .reviews-tabs .tabs .tabs__container {
        max-width: 80%;
        flex: 0 0 80%;
    }

    .reviews-tabs .tabs__button-group {
        justify-content: start;
        align-items: flex-start;
    }

    .reviews-tabs .btn-large {
        margin-bottom: 0px;
    }

    .reviews-tabs .reviews-tabs__chart {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .reviews-tabs__text {
        max-width: 100%;
        padding-left: 0;
    }

    .reviews-tabs .btn-large {
        margin-bottom: 0px;
    }

    /* Кейсы конец */

    /* Лого клиентов начало */
    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-1.jpg'] {
        width: auto;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-4.png'] {
        width: auto;
    }

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-5.jpg'] {
        width: auto;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-6.png'] {}

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-7.jpg'] {}

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-8.jpg'] {
        width: auto;
    }

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-9.jpg'] {}

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-10.jpg'] {}

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-11.jpg'] {}

    .resize .resize-1 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-41.jpg'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-13.jpg'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-14.jpg'] {}

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-15.jpg'] {}

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-16.jpg'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-17.png'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-18.jpg'] {}

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-19.jpg'] {}

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-20.jpg'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-21.png'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-22.png'] {
        width: auto;
    }

    .resize .resize-2 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-23.png'] {}

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-25.png'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-26.png'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-27.png'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-28.png'] {}

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-30.jpg'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-31.jpg'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-32.jpg'] {
        width: auto;
    }

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-33.jpg'] {}

    .resize .resize-3 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-24.png'] {}

    /* .resize .resize-3 div:nth-child(3){max-width: 41.666667%;}
    .resize .resize-3 div:nth-child(7){max-width: 41.666667%;} */

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-34.jpg'] {
        width: auto;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-35.jpg'] {}

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-36.png'] {
        width: auto;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-37.jpg'] {}

    .resize img[src='https://remarked.ru/assets/images/logo/new-logos/logo-38.jpg'] {
        width: auto;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-39.jpg'] {
        width: auto;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-40.jpg'] {}

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-42.jpg'] {
        width: auto;
    }

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-43.png'] {}

    .resize .resize-4 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-12.png'] {}

    /* .resize .resize-4 div:nth-child(1){max-width: 41.666667%;}
    .resize .resize-4 div:nth-child(9){max-width: 41.666667%;} */

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-44.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-45.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-46.png'] {
        width: auto;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-47.jpg'] {
        width: auto;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-48.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-49.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-50.png'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-51.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-52.png'] {
        width: auto;
    }

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-53.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-54.jpg'] {}

    .resize .resize-5 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-55.jpg'] {}

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-56.jpg'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-57.jpg'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-58.png'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-59.png'] {}

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-60.jpg'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-61.png'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-62.jpg'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-63.jpg'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-64.png'] {}

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-80.png'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-66.png'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-2.png'] {
        width: auto;
    }

    .resize .resize-6 div img[src='https://remarked.ru/assets/images/logo/new-logos/logo-3.jpg'] {
        width: auto;
    }

    /* .resize .resize-6 div:nth-child(1){max-width: 41.666667%;}
    .resize .resize-6 div:nth-child(3){max-width: 41.666667%;}
    .resize .resize-6 div:nth-child(5){max-width: 41.666667%;}
    .resize .resize-6 div:nth-child(6){max-width: 41.666667%;} */
    /* Лого клиентов конец */

    .section_experience .section-text {
        font-size: 25px;
        width: 80%;
        line-height: 1.3em;
    }

    .experience_slider p {
        margin: 0;
        font-size: 25px;
        line-height: 1.25em;
        margin-bottom: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .header__mobile_part {
        display: flex;
        display: -ms-flexbox;
        justify-content: flex-end;
    }

    .contact_button_desctop {
        display: none;
    }

    .contact_button_mobile {
        display: block;
    }

    .header__nav {
        display: none;
    }

    .header__nav_mobile {
        align-items: center;
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        justify-content: flex-end;
        ms-flex-align: center;
        ms-flex-pack: end;
        webkit-align-items: center;
        webkit-box-align: center;
        webkit-box-pack: end;
        webkit-justify-content: flex-end;
        margin-left: 0px;
    }

    .header__nav_mobile div {
        color: #000248;
        display: block;
        height: 15px;
        pointer-events: auto;
        position: relative;
        width: 15px;
        margin-left: 18px;
    }

    .header__nav_mobile div i {
        background: currentColor;
        height: 2px;
        left: 0;
        margin-top: -1px;
        o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        top: 50%;
        transition: all .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .header__nav_mobile div i::before {
        top: -5px;
    }

    .header__nav_mobile div i::after {
        top: 5px;
    }

    .header__nav_mobile div i::after,
    .header__nav_mobile div i::before {
        background: inherit;
        content: "";
        height: 100%;
        left: 50%;
        ms-transform: translate(-50%);
        o-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        transform: translate(-50%);
        transition: width .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transform: translate(-50%);
        webkit-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .popup-mobile-menu .inner ul.mainmenu-item li {
        font-size: 26px;
    }

    .popup-mobile-menu .inner {
        width: 400px
    }

    .popup-mobile-menu .inner .close-menu {
        right: 18px;
    }

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

    .round_corners_block__item {
        width: 48.5%;
        margin-bottom: 14px;
    }

    .round_corners_block__item:not(:last-child) {
        margin-right: 0;
    }

    .functions__container_wrapper {
        --column-count: 2;
    }

    .experience-title {
        font-size: 50px;
        margin-bottom: 25px;
    }

    .functions__item {
        background-color: #f2f2f2;
    }

    .functions__item-part-1 {
        grid-row-end: span 1;
        flex-direction: column;
        justify-content: flex-start;
    }

    .functions__item-part-1 .functions__item_img {
        padding: 0 30px 0;
    }

    .functions__item-part-7 {
        background-size: 80%;
    }

    .functions__item-part-8 {
        padding-top: 0;
        background-size: 106%;
        background-position-x: 104px;
    }

    .experience_slider_images {
        display: none;
    }

    .experience_slider_text {
        padding-left: 60px;
        flex-basis: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 40px;
    }

    .action_call-text {
        font-size: 30px;
        width: 80%;
    }

    .section_experience .section-text {
        font-size: 25px;
        width: 90%;
        line-height: 1.3em;
    }

    .experience_slider h3 {
        font-size: 35px;
        line-height: 1.2em;
        width: 86%;
    }

    .experience_slider p {
        font-size: 22px;
    }

    .slider_text_block {
        height: auto;
        margin-bottom: 54px;
        opacity: 1 !important;
    }

    .clients_container_wrapper {
        max-width: 767px;
    }

    .clients_item_part_4 .clients_item_title {
        width: 100%;
    }

    .clients_item {
        flex-basis: 100%;
    }


    .topics__container_wrapper {
        --column-count: 1;
    }

    .footer_container {
        flex-direction: column;
    }

    .footer_logo {
        margin-bottom: 34px;
    }

    .footer_nav_container {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .footer_copyright_text {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 24px;
    }

    .footer_nav:not(:last-child) {
        width: 100%;
    }

    .footer_contact_button {
        display: none;
    }

    .booking-main__title-text {
        font-size: 52px !important;
    }

    .booking-examples__button {
        display: block;
        margin: 0 auto;
        max-width: 80%;
        border-radius: 20px;
        font-size: 18px !important;
    }

    
}

@media (max-width: 768px) {
    .advantages__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .calculate_benefit_button {
        width: 198px;
        height: 42px;
    }
    
    .calculate_benefit_button a {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .reviews-tabs .reviews-tabs__client .list .text {
        font-size: 16px;
        line-height: 18px;
    }

    .reviews-tabs .reviews-tabs__client .list .title {
        font-size: 30px;
        line-height: 35px;
    }

    /* новая страница броней начало */
	.booking-presentation__text-wrap {
		width: 100%;
	}

    .booking-presentation__text-wrap p {
        font-size: 1.1em !important;
        margin-bottom: 1.1em !important;
        line-height: 1.1em !important;
    }

    .booking-presentation__wrap {
        padding: 0 20px !important;
        text-align: left !important;
    }

    .booking__section-title {
        font-size: 35px !important;
    }

    .reserves-metrics__counter-num {
        font-size: 65px !important;
    }

    .booking-main__wrapper {
        flex-direction: column-reverse !important;
        justify-content: flex-end !important;
    }

    .booking-main__title {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .booking-main__title-wrap {
        padding: 0 15px !important;
    }

    .booking-main__subtitle {
        display: flex;
        flex-direction: row-reverse;
        padding: 0 15px;
        width: 100% !important;
    }

    .booking-main__subtitle-wrap {
        width: 60% !important;
    }

    .booking-main__title-text {
        font-size: 46px !important;
    }

    .section__booking-main {
        margin-top: 0 !important;
        background-image: url(https://remarked.ru/new-v2/img/booking-new-page/main_img-mobile.jpg) !important;
    }

    .booking-container {
        padding: 40px 0 60px !important;
    }

    .booking-examples__button {
        display: block;
        margin: 0 auto;
        max-width: 100% !important;
        border-radius: 20px;
        font-size: 21px !important;
    }
		.booking-clients__container {
		padding: 10px 0 50px;
	}
	
	.section__booking-clients {
		margin-top: 50px;
	}
	
	
	.action_call-title.section-title {
		margin-bottom: 22px;
	}
	
	.experience-title.section-title {
		margin-bottom: 22px;
	}

    .reserves-examples__tabs-inner {
        position: relative;
        z-index: 1;
    }

    .reserves-examples__arrow-previous {
        z-index: 2;
        position: absolute;
        width: 1.5rem;
        left: 30px;
    }

    .reserves-examples__arrow-next {
        z-index: 2;
        position: absolute;
        width: 1.5rem;
        right: 30px;
    }

    .reserves-examples__tabs-buttons {
        width: 100%;
    }

    .reserves-examples__tabs-item {
        height: 30px;
        padding: 4px 7px;
        font-size: 14px;
    }

    .reserves-examples__wrap {
        margin-bottom: 25px;
    }

    .erm-section .reserves-examples__arrow-previous, .erm-section .reserves-examples__arrow-next {
        width: 1.5rem;
    }

    /* новая страница броней конец */

    .erm-descriprtion-text .section-text {
        width: 100%;
        text-align: left;
    }

    .erm-page .erm-descriprtion-text .main__button {

        margin: 45px 0 10px 0;
    }
}

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

    .container {
        max-width: 454px;
        padding-right: 20px!important;
        padding-left: 20px!important;
    }

    .header {
        margin-top: 12px;
    }

    .header__nav {
        display: none;
    }

    .header.sticky {
        padding-top: 5px;
        padding-bottom: 7px;
    }

    .main-title {
        font-size: 39px;
        line-height: 1em;
        margin-bottom: 23px;
    }

    .slider_text_block {
        height: auto;
        margin-bottom: 50px;
        opacity: 1 !important;
    }

    .top-slider__text {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 53px;
        min-height: 330px
    }

    .main-descr {
        font-size: 19px;
        margin-bottom: 28px;
        line-height: 1.3em;
    }

    .main__button {
        font-size: 14px;
        padding: 13px 15px;
        display: flex;
        text-align: center;
        justify-content: center;
        max-width: 217px;
    }

    .top-slider-screen-gallery {
        flex-basis: 100%;
        max-width: 100%;
        margin-left: 16%;
    }

    .top-slider {
        height: auto;
        padding-bottom: 120px;
    }

    .top-slider-screen-gallery {
        --lock-screen-image-width: 211px;
        --lock-screen-image-height: 425px;
        --gallery-item-gap: 20px;
    }

    .paddlenav-compact .paddlenav-arrow {
        width: 2.558824rem;
        height: 2.558824rem;
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-1 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_1.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-2 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_2.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-3 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_3.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-4 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_4.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-5 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_5.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-6 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_6.png);
    }

    .top-slider-screen-gallery #top-slider-screen-gallery-item-7 .device {
        width: 211px;
        height: 425px;
        background-size: 211px 425px;
        background-repeat: no-repeat;
        background-image: url(../img/top-slider/top_slider_gallery_screen_7.png);
    }

    .section {
        padding-top: 53px;
        padding-bottom: 40px;
    }

    .section__cases .section {
        padding-top: 66px;
    }

	.section_reserves-examples.section {
		padding-top: 92px;
	}

    .section-title {
        font-size: 36px;
        line-height: 1.1em;
        width: 100%;
    }
	.section__reserves-metrics .section-title {
        font-size: 34px;
    }

    .section-text {
        line-height: 1.5em;
        font-size: 17px;
    }

    .section__all-services h2 {
        margin-bottom: 36px;
    }

    .reviews-tabs .tabs__container {
        border-radius: 0;
        padding: 15px 0px 40px 10px;
    }

    .section.section__restaurants_metrics {
		padding-top: 53px;
        padding-bottom: 0px;
    }

    .restaurants_metrics__container {
        flex-direction: column;
    }

    .restaurants_metrics__items {
        width: 100%;
        margin-bottom: 47px;
    }

    .restaurants_metrics__title {
        width: 100%;
        font-size: 30px;
        margin-top: -5px;
    }

    .restaurants_metrics__items p {
        line-height: 1em;
        margin-bottom: 10px;
    }

    .features_title {
        font-size: 26px;
        line-height: 1.1em;
        width: 100%;
    }

    .features__text {
        width: 100%;
    }

    .features_col {
        -ms-flex: 0 0 50%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

    .features_content {
        min-height: 445px;
    }
	
	.booking__features_content.features_content {
        padding: 45px 0 0 !important;
    }

    .features_content {
        padding: 45px 45px 46px;
    }

    .section_functions {
        padding-bottom: 77px;
    }

    .section_functions_img {
        margin-top: 33px;
        margin-bottom: 40px;
        width: 100%;
    }

    .functions__container {
        margin-top: 16px;
    }

    .functions__container_wrapper {
        --column-count: 1;
        flex-direction: column;
        display: flex;
    }

    .functions__item {
        padding-top: 45px;
        min-height: 320px;
        background-color: #f2f2f2;
    }

    .functions__item_title {
        font-size: 26px;
        padding: 0 15px 0;
    }

    .functions__item_text {
        font-size: 17px;
        line-height: 1.4em;
        margin-bottom: 11px;
        text-align: center;
        padding: 0 15px 0;
    }

    .functions__item_ref {
        font-size: 16px;
    }

    .functions__item-part-1 .functions__item_img {
        padding: 0 30px 0;
    }

    .functions__item-part-2 .functions__item_title {
        text-align: center;
    }

    .functions__item-part-2 .functions__item_text {
        text-align: center;
        width: 100%;
    }

    .functions__item-part-2 .functions__item_ref {
        text-align: left;
        margin-left: auto;
    }

    .functions__item-part-2 {
        background-image: url(../img/section_functions_img2_mobile.jpg);
        background-size: 85%;
        background-position: bottom center;
        background-repeat: no-repeat;
        min-height: 368px;
    }

    .functions__item-part-4 .functions__item_text {
        margin-bottom: 11px;
    }

    .functions__item-part-4 .functions__item_ref {
        margin-bottom: 23px;
    }

    .functions__item-part-4 picture {
        margin-bottom: 20px;
    }

    .functions__item.functions__item-part-3 {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .functions__item-part-5 .functions__item_ref {
        margin-bottom: 23px;
    }

    .functions__item-part-5 picture {
        margin-bottom: 20px;
    }

    .functions__item.functions__item-part-6 {
        flex-wrap: wrap;
        justify-content: space-between;
    }


    .round_corners_block__item:not(:last-child) {
        margin-right: 5px;
    }

    .functions__item-part-7 {
        text-align: center;
        flex-wrap: wrap;
        justify-content: space-between;
        background-image: none;
    }

    .functions__item-part-7 .functions__item_inner {
        position: relative;
    }

    .functions__item-part-7 .functions__item_title {
        text-align: center;
        width: 100%;
        padding-top: 0;
    }

    .functions__item-part-7 .functions__item_text {
        text-align: center;
        width: 100%;
    }

    .functions__item-part-7 .functions__item_ref {
        margin-left: auto;
    }

    .functions__item-part-7 .functions__item_img picture {
        padding: 0 17px;
        margin-top: 22px
    }

    .functions__item-part-7 .functions__item_img {
        justify-content: flex-end;
        display: flex;
    }

    .functions__item-part-7 .functions__item_img picture {
        display: flex;
        align-items: flex-end;
    }

    .functions__item-part-7 .functions__item_img img {
        max-width: 414px;
    }

    .functions__item-part-8 {
        flex-wrap: wrap;
        align-items: center;
        background-image: none;
    }

    .functions__item-part-8 .functions__item_inner {
        text-align: center;
    }

    .functions__item-part-8 .functions__item_title {
        text-align: center;
        width: 100%;
        padding-top: 0;
        padding: 0px 30px 0;
    }

    .functions__item-part-8 .functions__item_text {
        text-align: center;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px 0;
    }

    .functions__item-part-8 .functions__item_ref {
        margin-left: 0px;
    }

    .functions__item-part-8 .functions__item_img {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .functions__item-part-8 .functions__item_img picture {

        max-width: 274px;
        margin-top: 81px;
    }

    .functions__item-part-8 .functions__item_img {
        justify-content: flex-end;
        align-items: flex-end;
        max-width: 743px;
    }

    .functions__item_img_desctop {
        display: none;
    }

    .functions__item_img_mobile {
        display: flex;
    }

    .functions__item-part-9 .functions__item_ref {
        margin-bottom: 34px;
    }

    .functions__item.functions__item-part-9 {
        padding-bottom: 26px;
    }

    .functions__item-part-9 .functions__item_text {
        padding: 0px 20px 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .functions__item-part-10 .functions__item_ref {
        margin-bottom: 23px;
    }

    .functions__item-part-10 .functions__item_img {
        padding-bottom: 30px;
    }

    .functions__item.functions__item-part-11 {
        padding-bottom: 24px;
    }

    .functions__item.functions__item-part-12 {
        padding-bottom: 35px;
    }

    .functions__item-part-13 .functions__item_ref {
        margin-bottom: 23px;
    }

    .functions__item-part-13 .functions__item_img {
        padding-bottom: 30px;
    }

    .contact_button_desctop {
        display: none;
    }

    .contact_button_mobile {
        display: none;
    }

    .header__mobile_part {
        display: flex;
        display: -ms-flexbox;
        justify-content: flex-end;
    }

    .phone-top-mobile {
        display: flex;
        display: -ms-flexbox;
    }

    .phone-top-mobile a {
        background: 0 0;
        border: 0 none;
        color: #111111;
        display: flex;
        font-size: 16px;
        font-weight: 600;
        height: 46px;
        justify-content: flex-end;
        line-height: 47px;
        o-transition: all .5s;
        position: relative;
        text-decoration: none;
        transition: all .5s;
        webkit-transition: all .5s;
        width: 154px;
        z-index: 2;
    }

    .header__nav_mobile {
        align-items: center;
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
        justify-content: flex-end;
        ms-flex-align: center;
        ms-flex-pack: end;
        webkit-align-items: center;
        webkit-box-align: center;
        webkit-box-pack: end;
        webkit-justify-content: flex-end;
        margin-left: 0px;
    }

    .header__nav_mobile div {
        color: #000248;
        display: block;
        height: 15px;
        pointer-events: auto;
        position: relative;
        width: 15px;
        margin-left: 18px;
    }

    .header__nav_mobile div i {
        background: currentColor;
        height: 2px;
        left: 0;
        margin-top: -1px;
        o-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        top: 50%;
        transition: all .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .header__nav_mobile div i::before {
        top: -5px;
    }

    .header__nav_mobile div i::after {
        top: 5px;
    }

    .header__nav_mobile div i::after,
    .header__nav_mobile div i::before {
        background: inherit;
        content: "";
        height: 100%;
        left: 50%;
        ms-transform: translate(-50%);
        o-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        position: absolute;
        transform: translate(-50%);
        transition: width .3s cubic-bezier(.645, .045, .355, 1);
        webkit-transform: translate(-50%);
        webkit-transition: width .3s cubic-bezier(.645, .045, .355, 1);
        width: 100%;
    }

    .popup-mobile-menu .inner {
        width: 100%;
    }

    .popup-mobile-menu .inner .close-menu {
        right: 30px;
    }

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

    .round_corners_block__item {
        width: 47%;
    }

    .round_corners_block__item {
        margin-right: 5px;
        margin-left: 5px;
        margin-bottom: 14px;
    }

    .round_corners_block_title {
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 8px;
        line-height: 1.4em;
    }

    .round_corners_block_text {
        font-size: 14px;
        line-height: 1.5em;
    }

    .round_corners_block__inner {
        padding: 35px 12px 44px;
    }

    .round_corners_block__inner img {
        max-height: 75px;
    }

    .section_action_call {
        padding-bottom: 77px;
    }

    .action_call-text {
        width: 91%;
        font-size: 23px;
        line-height: 1.3em;
        margin-bottom: 24px;
    }

    .section_action_call {
        background-image: url(../img/section_action_call_background_mobile.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        text-align: center;
    }

    .get_presentation__button {
        padding: 17px 33px;
        font-size: 17px;
    }

    .section_experience {
        padding-top: 100px;
        padding-bottom: 18px;
    }

    .section_experience .section-text {
        width: 100%;
        font-size: 17px;
        line-height: 1.3em;
    }

    .experience_slider {
        margin-top: 47px;
    }

    .experience_slider h3 {
        font-size: 26px;
    }

    .experience_slider_images {
        display: none;
    }

    .experience_slider_text {
        flex-basis: 100%;
        max-width: 100%;
        margin-left: auto;
        text-align: left;
        padding-left: 27px;
        margin-bottom: 20px;
    }

    .experience_slider_marker {
        position: absolute;
        left: -34px;
        top: 2px;
        width: 25px;
        height: 25px;
    }

    .experience_slider_marker img {
        max-width: 25px;
        width: 25px;
        height: 25px;
    }

    .experience_slider h3 {
        font-size: 27px;
        width: 100%;
    }

    .experience_slider p {
        margin: 0;
        font-size: 17px;
        line-height: 1.5em;
        margin-bottom: 13px;
    }

    .section_topics {
        padding-top: 100px;
		padding-bottom: 80px;
    }

    .topics__item {
        padding-top: 45px;
        min-height: 350px;
    }

    .topics__container_wrapper {
        --column-count: 1;
        padding-top: 24px;
    }

    .topics__item_title {
        font-size: 26px;
        padding: 0 34px 0;
        margin-bottom: 15px;
    }

    .topics__item_text {
        font-size: 17px;
        line-height: 1.5em;
        margin-bottom: 15px;
        padding: 0 25px 0;
    }

    .topics__item_ref {
        font-size: 15px;
    }

    .topics__item_part_1 .topics__item_img picture {
        width: 308px;
    }

    .clients_container_wrapper {
        padding-top: 20px;
        padding-left: 10px;
    }

    .clients_item {
        margin-bottom: 44px;
        padding: 0px;
    }

    .clients_item_title {
        font-size: 26px;
    }

    ul.clients_item_list li {
        font-size: 15px;
    }

    .clients_item_part_3 .clients_item_title {
        width: 100%;
    }

    .clients_item_part_4 .clients_item_title {
        width: 100%;
    }

    .clients_item_slogan {
        margin-bottom: -10px;
    }

    .clients_item_slogan_1 {
        margin-bottom: 0px;
    }

    .clients_item_part_3 .clients_item_slogan {
        margin-bottom: 0;
    }
	
	.section.section_clients {
		padding-bottom: 10px;
	}


    .footer {
        padding-top: 33px;
        padding-bottom: 79px;
    }

    .footer_container {
        flex-direction: column;
    }

    .footer_contact_button {
        display: none;
    }

    .footer_nav_container {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }

    .footer_copyright_text h2 {
        font-size: 22px;
        margin-bottom: 10px
    }

    .footer_copyright_text {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 24px;
    }

    .footer_copyright_text p {
        padding-bottom: 3px;
        width: 100%;
    }

    .remarked_telegram_ref {
        font-size: 15px;
    }

    .footer_logo {
        margin-bottom: 34px;
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav .nav__item:not(:last-child) {
        margin-bottom: 4px;
    }

    .footer_nav:not(:last-child) {
        width: 100%;
    }

    .connect-block.connect-sticky {
        width: 125px;
    }

    .connect-block-phone {
        display: none;
    }

    .connect-block-messengers {
        display: block;
    }

    .calculate_benefit_button {
        border-radius: 0 15px 0 0;
        width: 127px;
        height: 34px;
    }
    
    .calculate_benefit_button a {
        font-size: 12px;
    }

    .popup__container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 0;
        max-width: 480px;
        width: 100%;
        height: 100vh;
    }

    .popup-close {
        cursor: pointer;
        position: absolute;
        right: 30px;
        top: 50px;
    }

    .popup-title {
        font-size: 1.7em;
        padding-top: 50px;
    }

    .popup-sent-title {
        font-size: 1.7em;
        padding-top: 50px;
    }

    .popup-sent-text {
        font-size: 1.7em;
        padding-top: 50px;
    }

    .booking-page .main__button {
        font-size: 18px !important;
        padding: 13px 12px !important;
    }
	.features_descr_top {
		width: 95%;
		margin: 0 auto 8px;
	}
	
	.booking-page .section__cases {
		padding-bottom: 0px !important;
	}

    .erm-section {
        padding-top: 53px;
        padding-bottom: 53px;
    }

    .erm-top__wrapper {
        width: 100%;
    }

    .erm-top__section {
        padding-bottom: 400px;
    }

    .erm-page .main__button {
        padding: 13px 15px;
    }

    .erm-top__img {
        top: auto;
        bottom: 110px;
        right: 6.9%;
        max-width: 83%;
    }

    .erm-descriprtion-text .section-text {
        width: 100%;
    }

    .erm-page .erm-descriprtion-text .main__button {
        display: block;
        width: 225px;
    }

    .erm-descriprtion-text {
        padding-top: 0px;
        padding-bottom: 40px;

    }

    .erm-section .advantages__item img {
        max-width: 100px;
    }

    .erm-section .round_corners_block_title {
        font-size: 17px;
    }

    .erm-section .round_corners_block_text {
        font-size: 16px;
    }

    .erm-section .features_col {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 20px;
    }
    .erm-section .features_content {
        padding: 45px 25px 0px;
        min-height: auto;
    }

    .erm-section .features_title {
        font-size: 24px !important;
    }

    .erm-section .features_inner img {
        width: 100%;
        margin-top: 37px;
    }
}


@media (max-width: 430px) {

    .erm-top__section {
        padding-bottom: 376px;
    }

    .main-tag span {
        font-size: 15px;
        padding: 9px 15px;
    }

    .erm-top__img {
        top: auto;
        bottom: 110px;
        right: 6.9%;
        max-width: 83%;
    }
}


@media (max-width: 414px) {

    /* Кейсы начало */
    .reviews-tabs .tabs__toggle {
        padding: 10px 5px;
        height: 73px;
    }

    .reviews-tabs .tabs__toggle img {
        width: 100%;
        height: auto;
    }

    .reviews-tabs .btn-large {
        margin-bottom: 0px;
    }

    .reviews-tabs__tag br {
        display: initial;
    }

    .reviews-tabs .big__logo {
        width: 60px;
        max-width: 60px;
        margin: 0 auto;
        padding: 3px;
    }

    .reviews-tabs .big__logo--XL {
        max-width: 43px !important;
    }

    .reviews-tabs .big-box {
        margin: 0 auto;
        padding: 10px !important;
    }

    .reviews-tabs .tabs__list {
        padding-right: 0;
    }

    /*.logos__item {
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}*/
    .logos__item {
        flex: 0 0 16%;
        max-width: 16%;
    }

    /* Кейсы конец */

    .clients_item_slogan {
        padding: 32px 36px 42px 59px;
        max-width: 335px;
    }

    .round_corners_block__inner {
        padding: 18px 12px 30px;
    }

    .booking-clients_container_wrapper {
        flex-direction: column;
        padding: 0 0 0 20px;
    }

    .booking-clients_item {
        margin-bottom: 50px;
    }

}

@media (max-width: 390px) {
    .round_corners_block__inner {
        padding: 18px 12px 25px;
    }

}

@media (max-width: 375px) {

    .clients_item_slogan {
        padding: 27px 36px 42px 32px;
        max-width: 306px;
    }

    .round_corners_block__item {
        width: 46%;
    }

    .round_corners_block__inner {
        padding: 18px 9px 32px;
    }

    .round_corners_block_title {
        font-size: 12px;
        margin-top: 16px;
        margin-bottom: 8px;
        line-height: 1.3em;
    }

    .round_corners_block_text {
        font-size: 12px;
        line-height: 1.4em;
    }

    .erm-top__section {
        padding-bottom: 328px;
    }

    .erm-top__img {
        bottom: 97px;
    }

}





/* Новая страница броней */
.booking-container {
    height: 100%;
    padding: 80px 0;
}

/* BOOKING: main section start */
.section__booking-main {
    background-image: url(https://remarked.ru/new-v2/img/booking-new-page/main_img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 800px;
    margin-top: 25px;
    position: relative;
}

.booking-main__wrapper {
    display: flex;
    flex-direction: row-reverse;
    height: 100%;
    justify-content: space-between;
}

.booking-main__title-wrap {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.booking-main__title {
    width: 450px;
    top: 535px;
    left: 148px;
}

.booking-main__title-text {
    font-size: 56px;
    font-weight: 700;
    line-height: 1em;
}

.booking-main__subtitle {
    width: 200px;
    text-align: right;
    top: 60px;
    right: 148px;
}

.booking-main__subtitle-num {
    font-size: 52px;
    background-image: linear-gradient(to right, #eb7e46, #da5a7b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.booking-main__subtitle-text {
    font-size: 18px;
}

.booking-main__subtitle-text-red {
    color: #eb0f59;
}

/* BOOKING: main section end */

/*  BOOKING: presentation section start */
.booking-presentation__wrap {
    padding: 0 100px;
    text-align: center;
}



/* BOOKING: presentation section end */

/* BOOKING: clients section start */
.booking-clients__container {
    padding: 10px 0 80px;
    overflow: hidden;
}

.booking-clients_container_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding-top: 48px;
    margin: auto;
}

.booking-clients_item_part_1 {
    padding-left: 0;
}

.booking-clients_item_part_3 {
    padding-right: 0;
}

.booking-clients_item_slogan {
    color: #000;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3em;
    text-align: left;
    padding: 32px 21px 32px 43px;
    font-family: SFProDisplay-Bold, sans-serif;
}

.booking-clients_item_slogan_1 {
    width: 346px;
    height: 165px;
    background-image: url(https://remarked.ru/new-v2/img/section_clients_bg_1.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.booking-clients_item_slogan_2 {
    width: 358px;
    height: 165px;
    background-image: url(https://remarked.ru/new-v2/img/section_clients_bg_2.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.booking-clients_item_slogan_3 {
    width: 340px;
    height: 165px;
    background-image: url(https://remarked.ru/new-v2/img/section_clients_bg_3.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.booking-clients_item_title {
    font-size: 32px;
    margin: auto;
    margin-bottom: 17px;
}

.booking-clients_item_list {
    padding: 0;
    margin: 0 0 25px 0;
}

ul.booking-clients_item_list li {
    list-style: none;
    font-size: 17px;
    line-height: 1.5em;
    position: relative;
    padding-left: 29px;
    margin-top: 0;
    margin-bottom: 5px;
    position: relative;
    letter-spacing: -0.15px;
}

ul.booking-clients_item_list li:after {
    content: "";
    background-image: url(https://remarked.ru/new-v2/img/experience_slider_marker2.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    position: absolute;
    left: 0px;
    top: 2px;
    width: 20px;
    height: 20px;
}

.section__booking-clients__container {
    padding-top: 10px;
}

.booking-clients__logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 310px;
    justify-content: space-between;
    align-items: center;
}

.booking-clients__logos__item {
    text-align: center;
    margin-bottom: 5px;
}

.booking-clients__logos-2 {
    width: 357px;
}

.booking-clients__logos-3 {
    width: 330px;
}

/* BOOKING: clients section end */

/* BOOKING: services section start*/
.booking_all-services {
    flex-wrap: wrap;
    justify-content: space-between;
}

.booking__section-title {
    font-size: 50px;
}

.booking_all-services .round_corners_block__item {
	display: flex;
    list-style: none;
    width: 23%;
    margin-bottom: 15px;
}

.booking_all-services .round_corners_block__item:not(:nth-child(4)),
.booking_all-services .round_corners_block__item:not(:nth-child(8)) {
    margin-right: 10px;
}

.booking_all-services .round_corners_block__item:nth-child(4),
.booking_all-services .round_corners_block__item:nth-child(8) {
    margin-right: 0px;
}

/* BOOKING: services section end */



/* BOOKING: features section start */
.booking__features_content {
    padding: 70px 0 0 !important;
}

.booking__features_content .features_title, .erm-section .features_title {
    width: 85% !important;
    font-size: 24px !important;
}

/*BOOKING: features section end */

/*  BOOKING: animate-reserves section start */
.reserves-metrics__reserves-animate-block {
    width: 315px;
    padding: 0 20px;
    text-align: center;
    position: absolute;
}

.reserves-animate-block__reserve-animate-item {
    border: 2px solid #efefef;
    width: 280px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    padding: 30px 20px 15px;
    margin: 7px auto 0 !important;
}

.reserve-animate-item__logo img {
    max-width: 80px;
    min-width: 60px;
}

.reserve-animate-item__title {
    margin-bottom: 12px;
    font-weight: 700;
}

.reserve-animate-item__status {
    background-color: pink;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    color: #3728e6;
    font-weight: 700;
    background-color: #e6e5fb;
}

.reserve-animate-item__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 52%;
}

.reserve-animate-item__footer_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.reserve-animate-item__footer_item img {
    width: 16px;
    margin-right: 6px;
}

.reserve-animate-item__footer_item span {
    font-weight: 400;
}

.reserves-animate-block__reserve-animate-item hr {
    height: 2px;
    background-color: #efefef;
    width: 90%;
    border: 0;
}

.reserves-animate-block__top-left {
    top: 40px;
    left: 30px;
}

.reserves-animate-block__top-right {
    top: 25px;
    right: 60px;
}

.reserves-animate-block__bottom-left {
    bottom: 20px;
    left: 60px;
}

.reserves-animate-block__bottom-right {
    bottom: 80px;
    right: 70px;
}

.reserves-animate-block__top {
    top: 60px;
    display: inline-block;
    width: 100% !important;

}

.reserves-animate-block__bottom {
    bottom: 60px;
    display: inline-block;
    width: 100% !important;
}

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

    .reserve-animate-item__title,
    .reserve-animate-item__status {
        margin-bottom: 5px !important;
    }

    .reserves-animate-block__reserve-animate-item {
        padding: 10px 15px 57px;
    }
}

@media screen and (max-width:620px) {
    .reserve-animate-item__logo img {
        max-width: 70px !important;
		min-width: 50px !important;
    }

    .reserves-metrics__reserves-animate-block {
        padding: 0 !important;
        margin: 7px auto 0 !important;
        width: 350px !important;
    }
		
	.reserves-animate-block__top {
		width: 100% !important;

	}

	.reserves-animate-block__bottom {
		width: 100% !important;
	}
	
	.section__reserves-metrics {
		/*padding: 200px 0 !important;
		height: 100vh;*/
		padding: 310px 0 290px !important;
		height: 820px;
        overflow: hidden;
	}

    .reserves-metrics__counter {
        margin-top: 0px;
    }
}

/*  BOOKING: animate-reserves section end */

.forms-yandex-container {
	width: 100%;
	max-width: 600px;
	margin: 10px auto 0px;
}

.forms-yandex-container iframe {
	max-width: 100%;
}

@media screen and (max-width:480px) {
	.forms-yandex-container {
		padding-left: 2px;
	}
}

/* Страница с инфографикой */

.infographics-ecosystem-swither .form-switch  {
  position: relative;
  padding-left: 3.5rem;
}

.infographics-ecosystem-swither .ecosystem-item-form-check  {
  display: block;
  min-height: 1.45rem;
  margin-bottom: 0;
}

.infographics-ecosystem-swither .form-switch .form-check-input:not(:checked) {
  background-color: #e2e2e2;
}

.infographics-ecosystem-swither .form-switch .form-check-input {
  width: 45px;
  height: 25px;
  margin-left: -3.5rem;
  background-image: url("data:image/svg+xml,%3csvg width='26px' height='26px' viewBox='0 0 26 27' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3ccircle id='path-1' cx='8' cy='8' r='8'%3e%3c/circle%3e%3cfilter x='-40.6%' y='-21.9%' width='168.8%' height='168.8%' filterUnits='objectBoundingBox' id='filter-2'%3e%3cfeOffset dx='-1' dy='2' in='SourceAlpha' result='shadowOffsetOuter1'%3e%3c/feOffset%3e%3cfeGaussianBlur stdDeviation='1.5' in='shadowOffsetOuter1' result='shadowBlurOuter1'%3e%3c/feGaussianBlur%3e%3cfeColorMatrix values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0  0 0 0 0.2 0' type='matrix' in='shadowBlurOuter1'%3e%3c/feColorMatrix%3e%3c/filter%3e%3c/defs%3e%3cg id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e%3cg id='switches-dot' transform='translate%285.000000, 5.000000%29' fill-rule='nonzero'%3e%3cg id='Oval'%3e%3cuse fill='black' fill-opacity='1' filter='url%28%23filter-2%29' xlink:href='%23path-1'%3e%3c/use%3e%3cuse fill='%23fff' xlink:href='%23path-1'%3e%3c/use%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 3rem;
  transition: background-position 0.15s ease-in-out, background-color 0.1s ease;
  border: none;
  margin-top: 0.0825rem;
  vertical-align: top;
  background-repeat: no-repeat;
  background-size: contain;
  appearance: none;
}

.infographics-ecosystem-swither .form-check-input:disabled {
  pointer-events: none;
  filter: none;
  /*opacity: 0.65;*/
}

.infographics-ecosystem-swither label {
  color: #6D6B7B;
  font-size: 14px;
  margin-bottom: 0px;
}

.infographics-ecosystem-swither label:hover {
  color: #7367F0;
}

.infographics-ecosystem-swither .form-switch .form-check-label {
  line-height: 1.7rem;
  cursor: pointer;
}

.infographics-ecosystem-swither .form-switch .form-check-label .switch-icon-left {
  position: absolute;
  user-select: none;
  line-height: 1.15;
  left: 6px;
  top: 0;
  color: #fff;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.1s ease, transform 0.15s ease;
}

.infographics-ecosystem-swither .switch-m-icon {
  margin-top: 7px;
}

.infographics-ecosystem-swither .form-switch .form-check-label .switch-icon-right {
  position: absolute;
  user-select: none;
  line-height: 1;
  left: 25px;
  top: 0;
  opacity: 1;
  transform: translateX(0px);
  transition: opacity 0.08s ease, transform 0.15s ease;
}

.infographics-ecosystem-swither .form-check-primary .form-check-input:checked {
  border-color: #7367f0;
  background-color: #7367f0;
}

.infographics-ecosystem-swither .form-switch .form-check-input:checked {
  box-shadow: none !important;
}

.infographics-ecosystem-swither .form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg width='26px' height='26px' viewBox='0 0 26 27' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs%3e%3ccircle id='path-1' cx='8' cy='8' r='8'%3e%3c/circle%3e%3cfilter x='-40.6%' y='-21.9%' width='168.8%' height='168.8%' filterUnits='objectBoundingBox' id='filter-2'%3e%3cfeOffset dx='-1' dy='2' in='SourceAlpha' result='shadowOffsetOuter1'%3e%3c/feOffset%3e%3cfeGaussianBlur stdDeviation='1.5' in='shadowOffsetOuter1' result='shadowBlurOuter1'%3e%3c/feGaussianBlur%3e%3cfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0' type='matrix' in='shadowBlurOuter1'%3e%3c/feColorMatrix%3e%3c/filter%3e%3c/defs%3e%3cg id='Artboard' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e%3cg id='switches-dot' transform='translate%285.000000, 5.000000%29' fill-rule='nonzero'%3e%3cg id='Oval'%3e%3cuse fill='black' fill-opacity='1' filter='url%28%23filter-2%29' xlink:href='%23path-1'%3e%3c/use%3e%3cuse fill='%23fff' xlink:href='%23path-1'%3e%3c/use%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}

.infographics-ecosystem-swither .form-switch .form-check-input {
  border: none;
}

.infographics-ecosystem-swither .form-switch .form-check-input:checked~.form-check-label .switch-icon-left {
  transform: translateX(0);
  opacity: 1;
}

.infographics-ecosystem-swither .form-switch .form-check-label .switch-icon-right {
  left: 25px;
  top: 0;
  opacity: 1;
  transform: translateX(0px);
  transition: opacity 0.08s ease, transform 0.15s ease;
}

.infographics-ecosystem-swither .form-switch .form-check-input:checked~.form-check-label .switch-icon-right {
  transform: translateX(-8px);
  opacity: 0;
}

.infographics-ecosystem-swither .form-switch .form-check-label .switch-icon-left svg {
  height: 13px;
  width: 13px;
  font-size: 13px;
}
.infographics-ecosystem {
  padding: 20px;
  background-color: #fff;
  margin-top: -44px;
}
.infographics-ecosystem-desctop {
  display: block;
}
.infographics-ecosystem-mobile-middle {
  display: none;
}
.infographics-ecosystem-mobile {
  display: none;
}

.infographics-header {
  display: flex;
  justify-content: space-between;
      margin-bottom: 10px;
}

.infographics-header h2 {
  font-weight: bold;
  color: #7284BD;
  margin: 0;
}

.infographics-ecosystem-swither {
  display: flex;
  margin-top: 6px;
  align-items: flex-end;
}

.infographics-ecosystem-swither-descr {
  margin-right: 17px;
  font-size: 16px;
  margin-bottom: 4px;
}

.infographics-ecosystem-wrapper .hidden {
    display: none;
}

@media (max-width: 768px) {
  .infographics-ecosystem-desctop {
    display: none;
  }
  .infographics-ecosystem-mobile-middle {
    display: block;
  }
  .infographics-ecosystem-mobile {
    display: none;
  }
  .infographics-ecosystem {
    padding: 20px 5px;
  }
  .infographics-header h2 {
    padding-left: 11px;
    margin-bottom: 22px;
    line-height: 1.1;
  }
  .infographics-ecosystem-swither {
    display: none;
  }
}

@media (max-width: 430px) {
  .infographics-ecosystem-mobile-middle {
    display: none;
  }
  .infographics-ecosystem-mobile {
    display: block;
  }
  .infographics-ecosystem-mobile .img-responsive {
	  width: 100%;
  }
}

.axil-breadcrumb {
    margin: -35px 0 0;
}
.axil-breadcrumb.align-items-center {
    align-items: center !important;
}
.axil-breadcrumb.justify-content-center {
    justify-content: center !important;
}
.axil-breadcrumb.d-flex {
    display: flex !important;
}
.axil-breadcrumb.mb--20{
    margin-bottom: 20px;
}
ul.axil-breadcrumb li.axil-breadcrumb-item {
    font-size: 15px;
    line-height: 24px;
    padding: 10px;
    position: relative;
}
ul.axil-breadcrumb li.axil-breadcrumb-item a {
    text-decoration: none;
}
ul.axil-breadcrumb li.axil-breadcrumb-item+.axil-breadcrumb-item::before {
    background: #757589;
    border-radius: 100%;
    content: "";
    height: 4px;
    left: -4px;
    position: absolute;
    top: 50%;
    width: 4px;
}

@media (max-width: 575px) {
    .axil-breadcrumb {
        margin: -10px 0 0;
    }
}


@media only screen and (max-width: 920px) {
    .presentation-columns__wrapper {
        --column-count: 3;
    }
}

@media only screen and (max-width: 798px) {
    .presentation-columns__wrapper {
        --column-count: 2;
    }
}

@media only screen and (max-width: 555px) {
    .presentation-columns__wrapper {
        --column-count: 1;
    }
}




@media only screen and (max-width: 722px) {
    .presentation-top__wrapper-inner {
    width: 58%;
}
}

@media only screen and (max-width: 599px) {
    .presentation-top__wrapper-inner {
    width: 80%;
}
}

@media only screen and (max-width: 459px) {
    .presentation-top__wrapper-inner {
    width: 100%;
}
}

@media only screen and (max-width: 368px) {
   .presentation-top__section .main-title {
    font-size: 44px;
}
}

@media only screen and (max-width: 920px) {
   .presentation__contacts-img {
    width: 50%;
}
}

@media only screen and (max-width: 744px) {
   .presentation__contacts-img {
    width: 60%;
    height: max-content;
}
}

@media only screen and (max-width: 717px) {
  .presentation__contacts-list {
    display: block;
}
.presentation__contacts-item:last-child {
            text-align: left;
        margin-top: 20px;

}
.presentation__contacts-item {
    width: 50%;
    text-align: left;
}
}

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

.presentation__contacts-item {
    width: 100%;
}
}

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

    .presentation__contacts-img {
    
        margin-top: 50px;
    }
}

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

    .presentation-description__wrapper {
        width: 98%;
    }
    .presentation-description__img-aside {
    position: unset;
        max-width: unset;
                margin: 0 20px 0 20px;
    }
    .presentation-description__wrapper .section-text {
        width: 100%;
        margin: 20px 0 20px 0;
        text-align: left;
    }
}

.section__calculator {
    padding-bottom: 20px;
}

.section__calculator h2 {
    margin-top: 10px;
}

.section__calculator_bottom_ref {
    padding-top: 0;
}

.section__calculator_bottom_ref .clients_item_title {
    margin-bottom: 28px;
}

.calculator_bottom_ref {
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    background: #fff;
    margin: auto;
    text-align: center;
}

.calculator_bottom_button {
    border-radius: 60px;
    padding: 15px 40px;
    width: 300px;
    height: 48px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(90deg, #5fbae1 0%, #6da1f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    line-height: 1;
    background-color: #fff;
    text-decoration: none;
    border: 1px solid #6da1f0;
}

.revenue-calculator {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    width: 100%;
    margin: auto;
}

.revenue-calculator h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    text-align: left;
}

.revenue-calculator .inputs {
    display: flex;
    gap: 20px;
    margin-bottom:30px;
}

.revenue-calculator .inputs-item {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    border: 1px solid #ccc; 
    border-radius: 12px; 
    padding: 8px 8px 8px 16px;
}

.revenue-calculator .inputs-item-label {
    margin-right: 10px; 
    font-size: 16px; 
    line-height: 18px;
}

.revenue-calculator .inputs-item input {
    background: #f5f5f5;
    padding: 8px 19px;
    border: none; 
    border-radius: 8px; 
    font-size: 20px; 
    font-weight: bold; 
    color:#6ca3ef;
    text-align: right; 
    width: 144px;
}

.revenue-calculator .inputs-item input::placeholder {
    color:rgb(77, 143, 219);
    opacity: 0.5;
}

.revenue-calculator .tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.revenue-calculator .tools label {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 8px 0 8px 12px;
    margin-bottom: 0;
    cursor: pointer;
}

.revenue-calculator .tools-input-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    background: #f5f5f5;
    padding: 0 12px 0 0;
    border-radius: 12px;
}

.revenue-calculator .tool label::after {
    content: url('./img/calculator/i.svg');
    width: 200px;
    height: 200px;
  }

.revenue-calculator .tools label input {
    display: none;
}

.revenue-calculator .tools-checked {
    width: 24px; 
    height: 24px;
    background: #4a90e2; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-right: 8px; 
    position: relative;
    top: -15px;
    left: -15px;
    opacity: 0; /* Скрываем блок по умолчанию */
    transition: opacity 0.3s ease; /* Плавный переход */
    pointer-events: none; /* Блокируем события мыши */
}

.revenue-calculator .tools label input[type="checkbox"]:checked + .tools-checked {
    opacity: 1; /* Показываем блок при checked */
    pointer-events: auto; /* Разрешаем события мыши */
}

.revenue-calculator .tools-name {
    color: #000; 
    margin-right: 6px;
    margin-left: -20px;
}

.revenue-calculator .tools-info-icon {
    position: relative;
    width: 16px; 
    height: 16px; 
    background: #ccc; 
    border-radius: 50%; 
    font-size: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white;
    margin-left: 12px;
    cursor: pointer;
}

.revenue-calculator .tools-info-icon .tooltip {
    display: none;
    position: absolute; 
    bottom: 0;
    left: 0;
    transform: translateX(-44%) translateY(104%);
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
    z-index: 1000; 
    opacity: 1;
}

.revenue-calculator .results {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 30px;
    gap: 10px;
  }

.revenue-calculator .result-item {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 8px 5px;
    gap: 3px;
    width: 405.33px;
    height: 89px;
    background: #6CA3EF;
    border-radius: 12px;
}

.revenue-calculator .result-item h4 {
    font-size: 32px;
    margin-bottom: 0px;
    color: #fff !important;
    line-height: 44px;
}

.revenue-calculator .result-item p {
    color: #fff !important;
    font-size: 14px;
    line-height: 17px;
}

.revenue-calculator .charts-wrapper {
    margin-bottom: 30px;
}

.revenue-calculator .charts {
    display: flex;
    flex-wrap: nowrap;
    width: 100%; 
    min-width: 1120px;
    gap: 40px;
    margin-bottom: 30px;
}

.revenue-calculator .charts-item {
    width: calc((100% - 120px) / 4);
}

.revenue-calculator .charts-item--header {
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.revenue-calculator .revenue-calculator-bottom {
    text-align: center;
}

.revenue-calculator .calculate-btn {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 10px;
    width: 301px;
    height: 48px;
    background: linear-gradient(90deg, #5FBAE1 0%, #6DA1F0 100%);
    border-radius: 60px;
    margin: 0 auto 15px;
    
}

.revenue-calculator .calculate-btn:hover {
    background: #0056b3;
}

.revenue-calculator .calculate-disclaimer {
    font-size: 12px; 
    color: rgba(136, 136, 136, 1);
    line-height: 15px;
}

.revenue-calculator .chart {
    /*right: -15px;*/
    position: relative;
}

body .revenue-calculator .apexcharts-yaxis .apexcharts-text {
    fill: #a2a2a2;
}

body .revenue-calculator .apexcharts-radialbar .apexcharts-text {
    fill: #4d4d4d;
}

body .revenue-calculator .apexcharts-datalabels .apexcharts-text {
    fill: #ffffff;
}

.revenue-calculator .apexcharts-text.apexcharts-xaxis-label tspan {
    display: none;
}

.revenue-calculator .apexcharts-legend {
    padding: 0;
}

.revenue-calculator .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center {
    width: 72%;
    margin: 0 auto;
    overflow: visible;
}

/*
#chart3 .apexcharts-legend-marker svg path {
    opacity: 0;
}
*/

@media (max-width: 1200px) {
    .revenue-calculator .charts-wrapper {
        /*overflow-x: scroll;*/
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .revenue-calculator {
        padding: 35px 28px 40px;
    }

    .section__calculator .section-title {
        font-size: 32px;
    }

    .revenue-calculator h3 {
        font-size: 20px;
    }

    .revenue-calculator .inputs {
        justify-content: space-between;
    }

    .revenue-calculator .inputs-item {
        padding: 3px 3px 3px 12px;
    }

    .revenue-calculator label:nth-child(4) .tools-info-icon .tooltip {
        transform: translateX(-83%) translateY(104%);
    }
}

@media (max-width: 480px) {
    .section__calculator h2 {
        margin-top: 23px;
    }

    .revenue-calculator .inputs {
        flex-direction: column;
        gap: 8px;
    }
    .revenue-calculator .tools {
        gap: 6px;
        margin-bottom: 27px;
    }
    .revenue-calculator .tools-input-item {
        flex-basis: 100%;
    }

    .revenue-calculator .inputs-item input {
        padding: 8px 10px;
    }

    .revenue-calculator .tools label {
        flex: 1;
        width: 100%;
    }
    .revenue-calculator .tools-info-icon .tooltip {
        transform: translateX(-87%) translateY(104%);
    }
    .revenue-calculator .results {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 36px;
    }
    .revenue-calculator .result-item {
        width: 100%;
    }
    .popup-close {
        right: 15px;
        top: 25px;
    }
}



#scrollUp {
    /* bottom: 70px; */
    bottom: 80px !important;}

.popup-agreement input[type=checkbox] {
    opacity: 1;
    position: unset;
    height: 25px;
    width: 35px;
    margin-right: 10px;}

.popup-agreement p {font-size: 13px;
line-height: normal;}

.contact-form-wrapper .popup-agreement {display: flex;
text-align: unset;}

.popup__wrapper .popup-agreement {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: left;
    display: flex;
}
 .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 25%;
            width: 50%;
            background-color: rgba(242, 242, 242, 0.95);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
            border-radius: 20px 20px 0 0;
            z-index: 20000;
            box-shadow: 0 0 20px rgba(0, 0, 0, .2);
        }
 @media (max-width: 1040px) {
 .cookie-banner {
          
            left: 0;
            width: 100%;
            border-radius: 0;

 }
}
        .cookie-text {
            flex-grow: 1;
            margin-right: 20px;
            font-family: Arial, sans-serif;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .cookie-button {
            background-color: #333;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-family: Arial, sans-serif;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .cookie-button:hover {
            background-color: #555;
        }

.cookie-banner-hidden {
    height: 0px;
    padding: 0px;
    opacity: 0;
}

.cookie-banner-hidden .cookie-text {
    height: 0px;
}

/* Плейсхолдер по умолчанию скрыт */
#telegram::placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Когда label имеет класс active, показываем плейсхолдер */
label.active + #telegram::placeholder {
    opacity: 1;
}

h1 .price, .booking-main__title .price {
    color: rgba(108, 163, 239, 1) !important; font-size: 24px; font-weight: 700;margin-top: 20px;
}

.grtyoutube-popup {
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:99999;
}

.grtyoutube-popup-content {
	margin-top:150px;
	width:95%;
	max-width:850px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}

.grtyoutube-popup-close {
	position:absolute;
	top:-30px;
	right:0;
	color:#FFF;
	font-size:25px;
	width:17px;
	height:17px;
	cursor:pointer;
}

.grtyoutube-iframe {
	width:100%;
	height:480px;
}
@media (max-width:767px) {
	.grtyoutube-iframe {
		width:100%;
		height:350px;
	}
}

.grtyoutube-dark-theme{
	background: rgba(0,0,0, 0.85);
}

.grtyoutube-dark-theme .grtyoutube-popup-content {
	-webkit-box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
	-moz-box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
	box-shadow: 0px 0px 8px 0px rgba(255,255,255,0.4);
}

.grtyoutube-dark-theme .grtyoutube-popup-close {
	background: url('icon-close-white.png') no-repeat;
}

.grtyoutube-light-theme {
	background: rgba(255,255,255, 0.85);
}

.grtyoutube-light-theme .grtyoutube-popup-content {
	-webkit-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.4);
}

.grtyoutube-light-theme .grtyoutube-popup-close {
	background: url('icon-close-black.png') no-repeat;
}


