@charset "utf-8";

:root {
    --font-main: "Rounded-Mplus-1c",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    --font-second: Roboto,"Rounded-Mplus-1c",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;

    --color-main: #fff;
    --color-main-revert: #000;
    --color-blue-dark: #020C29;

    --color-active: #52B694;
    --color-active2: #5594C5;
    --color-active3: #C0345E;
    --color-active4: #F8D559;
    --color-active5: #9C52B6;

    --video-controls: #f82d55;
    --color-unactive: #8a8a8a;

    --bg-gradient-main: linear-gradient(270deg, #FF2A57 0%, #008EC9 51.87%, #00B891 99.88%);

    --duration: 200ms;
    --duration-long: 800ms;

    --timing-fn: linear;
}

body {
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: 100vh;
    background: var(--color-blue-dark);
    line-height: 1;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

.f-container {
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: repeat(10, 1fr);
    grid-template-columns: repeat(8, 1fr);
    width: 100vw;
    height: 100vh;
    /*background: url('../img/bg-dots.png')15px 6px repeat;*/
    color: var(--color-main);
    font-family: var(--font-main);
}

/* Header */
.f-header {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(8, 1fr);
    grid-row: 1 / 3;
    grid-column: 1 / 9;
    position: relative;
    z-index: 100;
}
.f-header_preloader-up { z-index: 210; }
.f-header_preloader-up .f-header__cell {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.f-header_preloader-up .f-header__cell:first-child {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.f-header__cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.f-header__cell_logo {
    grid-column: 1 / 3;
    padding-left: calc(100vw / 8 * 0.5 - 25px);
    padding-top: calc(100vh / 10 * 0.5);
    justify-content: flex-start;
    align-items: flex-start;
}
.f-header__cell_menu { grid-column: 3 / 7; }
.f-header__cell_contacts {
    grid-column: 7 / 8;
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: calc(100vh / 10 * 0.5 + 8px);
}
.f-header__cell_back {
    grid-column: 8 / 9;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: stretch;
}
.f-header__cell_mobile-title,
.is-mobile.page-0 .f-header__cell_mobile-title,
.f-header__cell_mobile-page-counter { display: none; }

.f-header__logo {
    position: relative;
    display: block;
    max-width: 300px;
    min-width: 180px;
}
.f-header__logo-img {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 100%;
    /*transition: opacity var(--duration);*/
}
.f-header__logo-img_white {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    /*transition: opacity var(--duration);*/
}
.f-header__logo-img_hide { opacity: 0; }

.f-lang {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px;
    width: 60px;
    height: 33px;

}
.f-lang:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: url('../img/switch-lang.png')50% 50% no-repeat;
}
.f-lang_revert:before {
    transform: scale3d(-1,1,1);
}
.f-lang__item {
    display: block;
    padding: 1px 3px;
    color: var(--color-main) !important;
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.f-lang__item_active {
    text-decoration: none !important;
}

.f-header__phone {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10px;
    text-decoration: none !important;
    font-weight: 300;
    color: var(--color-main);
    white-space: nowrap;
}
.f-header__phone-small {
    font-size: 14px;
    letter-spacing: .05em;
}
.f-header__phone-big {
    font-size: 24px;
    letter-spacing: .05em;
}
.f-header__email {
    position: relative;
    display: block;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .05em;
    color: var(--color-main);
    white-space: nowrap;
}
.f-header__phone:hover,
.f-header__email:hover {
    color: var(--color-main);
}
.f-header__phone:hover:after,
.f-header__email:hover:after {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--color-main);
}

.f-back {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 65px;
    max-width: 100%;
    background-color: var(--color-main);
    color: var(--color-main-revert);
    cursor: pointer;
    user-select: none;
}
.f-back__desc,
.f-back_hide { display: none; }
.f-back__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh / 10 * 0.5);
}
.f-back__arrow:before {
    content: ' ';
    display: block;
    border-width: 2px;
    border-style: solid;
    border-color: var(--color-main-revert) var(--color-main-revert) rgba(0,0,0,0) rgba(0,0,0,0);
    width: 14px;
    height: 14px;
    transform: rotate3d(0,0,1,-45deg);
}
.f-back__counter {
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 30px;
}
.f-back__title {
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.03em;
    writing-mode: vertical-lr;
}
/* --Header */

/* Menu main */
.f-menu {
    display: none;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.f-menu__link {
    display: block;
    flex: 0 0 auto;
    color: var(--color-main);
}

.f-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 95;
    width: 100%;
    max-width: 785px;
    height: 100%;
    background: linear-gradient(270deg, #C36E09 0%, #BF345E 100%);
}
.f-nav_open { animation: openMenu var(--duration); }
@keyframes openMenu {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(100%,0,0); }
}
.f-nav_opened {
    right: auto;
    left: 0;
}
.f-nav_close { animation: closeMenu var(--duration); }
@keyframes closeMenu {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-100%,0,0); }
}
.f-nav .f-sidebar-btn,
.f-nav__footer {
    display: none;
}

.mBrTextF-nav {
    font-weight: 200;
    line-height: 78px;
    font-size: 48px;
    letter-spacing: 0.04em;
    text-align: left;
    width: 50%;
}
/* --Menu main */

/* Sidebar left */
.f-sidebar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    grid-row: 6 / 10;
    grid-column: 1 / 2;
    position: relative;
    left: calc(100vw / 8 * 0.5);
    z-index: 100;
    width: 0;
}
.f-sidebar__inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    flex: 1 1 auto;
    max-width: 346px;
    height: 100%;
}
.f-sidebar__inner-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 0;
}

.f-sidebar__cell {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.f-sidebar-btn {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: -30px;
    cursor: pointer;
}
.f-sidebar-btn:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}
.f-sidebar-btn__img-wrapper {
    flex: 1;
}
.f-sidebar-btn__img {
    max-width: 50px;
    max-height: 50px;
}
.f-sidebar-btn__title {
    padding-top: 12px;
    flex: 1;
    font-family: var(--font-second);
    font-size: 12px;
    color: var(--color-main);
    /*letter-spacing: .6em;*/
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    text-transform: uppercase;
}
/* --Sidebar left */

.f-content {
    display: grid;
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: repeat(7, 1fr);
    grid-row: 1 / 10;
    grid-column: 2 / 9;
    position: relative;
    z-index: 50;
}
.f-content_up { z-index: 150; }

.f-content__inner {
    display: grid;
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: repeat(6, 1fr);
    grid-row: 1 / 10;
    grid-column: 1 / 7;
    position: relative;
}

.f-content__sidebar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    grid-row: 3 / 9;
    grid-column: 7 / 8;
    position: relative;
    z-index: 2;
}

.f-content__title {
    margin: 0;
    width: 65px;
    line-height: 65px;
    font-size: 48px;
    font-weight: 300;
    writing-mode: vertical-lr;
}

/* Section */
.f-section {
    /*position: absolute;
    top: 0;
    left: 0;
    z-index: -1;*/
    display: inherit;
    grid-template-rows: inherit;
    grid-template-columns: inherit;
    grid-row: inherit;
    grid-column: inherit;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    /*transition-property: opacity, transform;*/
    /*transition-duration: var(--duration-long);*/
}
.f-section_hide { display: none; }
.f-section_active {
    position: relative;
    z-index: initial;
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}
.f-section_current-up { animation: currentSectionUp 300ms linear; }
.f-section_new-up { animation: newSectionUp 300ms 150ms linear; }
.f-section_current-down { animation: currentSectionDown 300ms linear; }
.f-section_new-down { animation: newSectionDown 300ms 150ms linear; }
@keyframes currentSectionUp {
    0% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    100% {
        opacity: 0;
        transform: translate3d(0,-10vh,0);
    }
}
@keyframes newSectionUp {
    0% {
        opacity: 0;
        transform: translate3d(0,10vh,0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}
@keyframes currentSectionDown {
    0% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    100% {
        opacity: 0;
        transform: translate3d(0,10vh,0);
    }
}
@keyframes newSectionDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-10vh,0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}
.f-section__title { display: none; }

.f-footer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    grid-row: 10 / 11;
    grid-column: 1 / 9;
    position: relative;
    z-index: 90;
    padding: 0 35px;
    /*height: 118px;*/
    background: url('../img/neurofigure.png')0 0 no-repeat,var(--bg-gradient-main);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.f-footer__cell {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    width: 33.33333%;
}
.f-footer__cell_start { justify-content: flex-start; }
.f-footer__cell_center {}
.f-footer__cell_end { justify-content: flex-end; }

.f-footer__info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
.f-footer__info-logo {
    padding-left: 76px;
}
/* --Section */

/* Content (page) 3 */
.f-content3 {

}
.f-content3__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url('../img/32423.png')50% 50% no-repeat;
    background-size: cover;
}
.f-content3__bg:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 41, 0.6) url('../img/fon4/dots.png');
}


.f-content3__desc {
    grid-row: 3 / 5;
    grid-column: 2 / 5;
    padding-right: 15px;
}
.f-content3__desc-inner { max-width: 540px; }

.f-content3__nav {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    grid-row: 3 / 5;
    grid-column: 5 / 7;
}

.f-content3__row {
    grid-column: 2 / 7;
    grid-row: 5 / 10;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 calc(-100vw / 8 * 0.3);
}

/* Slider 3 */
.f-slider3__item { display: none; }
.f-slider3__item_active { display: block; }

.f-slider3__footer {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.f-slider3__arrows {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
}
.f-slider3__arrows_active { display: flex; }
.f-slider3__arrows-desc {
    flex: 0 1 auto;
    padding: 0 15px;
    max-width: 164px;
    font-size: 14px;
    letter-spacing: .03em;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.f-slider3__arrows-item {
    flex: 0 0 auto;
    width: 66px;
    min-height: 10px;
    background: url('../img/arrow-long-left.png')50% 50% no-repeat;
    cursor: pointer;
}
.f-slider3__arrows-item_prev {}
.f-slider3__arrows-item_next {
    transform: rotate3d(0,0,1,180deg);
}

.f-slider3__nav {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    margin-top: -20px;
    /*padding: 15px 0;*/
}
.f-slider3__nav_active { display: flex; }
.f-slider3__nav-item {
    border-radius: 50%;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background-color: var(--color-item-active);
    opacity: .4;
    cursor: pointer;
}
.f-slider3__nav-item_active {
    opacity: 1;
    cursor: default;
}
.f-slider3__nav-item_anim {
    animation: animDragNavItems var(--duration-long);
}

.f-slider3__drag {
    visibility: hidden;
    display: none;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.f-slider3__drag:before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
}
.f-slider3__drag-cell {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
}
.f-slider3__drag-cell:first-child { justify-content: flex-start; }
.f-slider3__drag-cell:last-child { justify-content: flex-end; }
.f-slider3__drag-item {
    position: relative;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--color);
    cursor: pointer;
    transition-property: background-color, opacity;
    transition-duration: var(--duration);
}
.f-slider3__drag-item_anim {
    transition-property: background-color, opacity, transform;
    transition-duration: var(--duration);
}
.f-slider3__drag-item:before {
    content: ' ';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
}
.f-slider3__drag-item_active {
    border: 15px solid var(--color-main);
    width: 80px;
    height: 80px;
}
.f-slider3__drag-item_active:before {
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-color: var(--color);
}
.f-slider3__drag-item_0 { --color: var(--color-active); }
.f-slider3__drag-item_1 { --color: var(--color-active2); }
.f-slider3__drag-item_2 { --color: var(--color-active3); }
/* --Slider 3 */

.f-content3__percents {
    flex: 0 1 20%;
}
.f-content3__percents-length {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto 5px;
    width: 135px;
    height: 135px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.07em;
    background-position: 100% 0;
    background-repeat: no-repeat;
}
.f-content3__percents-length_0 { background-image: url('../img/Ellipse-53.png'); }
.f-content3__percents-length_1 { background-image: url('../img/Ellipse-47.png'); }
.f-content3__percents-length_2 { background-image: url('../img/Ellipse-44.png'); }
.f-content3__percents-length_3 { background-image: url('../img/Ellipse-35.png'); }
.f-content3__percents-length_4 { background-image: url('../img/Ellipse-89.png'); }
.f-content3__percents-length-text {}
.f-content3__percents-title {
    max-width: 100%;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .05em;
    text-align: center;
}

.f-content3__delimeter {
    flex: 0 0 100%;
    width: 100%;
    height: 0;
}

.f-content3__count {
    flex: 0 1 20%;
}
.f-content3__count-length {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    text-align: center;
    background-color: var(--color-active);
}
.f-content3__count-length_0 { background-color: #0BBB96; }
.f-content3__count-length_1 { background-color: #019DB6; }
.f-content3__count-length_2 { background-color: #148FC7; }
.f-content3__count-length_3 { background-color: #975386; }
.f-content3__count-length_4 { background-color: #F72D5B; }
.f-content3__count-length-title {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.07em;
    white-space: nowrap;
}
.f-content3__count-length-title_smalled { font-size: 30px; }
.f-content3__count-length-desc {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: -0.07em;
}
.f-content3__count-length-desc_smalled { font-size: 14px; }
.f-content3__count-desc {
    font-size: 14px;
    font-weight: 200;
    letter-spacing: .05em;
    text-align: center;
}
/* --Content (page) 3 */

/* Content (page) 2 */
.f-content2 {

}

/* Slider 2 */
.f-slider2 {
    --color-item-before-active: var(--color-active);
    --color-item-after-active: var(--color-active);
}
.f-slider2__inner {
    display: inherit;
    grid-template-rows: inherit;
    grid-template-columns: inherit;
    grid-row: inherit;
    grid-column: inherit;
}

.f-slider2__title-wrapper {
    grid-row: 3 / 4;
    grid-column: 2 / 7;
}
.f-slider2__title-wrapper_center-right { grid-column: 4 / 7; }
.f-slider2__title-wrapper_wide { grid-column: 1 / 7; }
.f-slider2__title-wrapper_center { text-align: center; }
.f-slider2__item-content {
    grid-row: 1 / 10;
    grid-column: 1 / 7;
}
.f-slider2__item-content_offset-top-1 { grid-row: 2 / 10; padding-top: calc(100vh / 10 * 0.5); }
.f-slider2__item-content_offset-top-2 { grid-row: 3 / 10; }
.f-slider2__item-content_offset-top-3 { grid-row: 4 / 10; }
.f-slider2__item-content_merge-slide {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    margin: 0 calc(-100vw / 8);
}
.f-slider2__title {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0 5px;
    line-height: 1.4;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: .05em;
    color: var(--color-main);
    text-transform: uppercase;
}
.f-slider2__title:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--color-item-active);
    filter: blur(1px);
    opacity: .7;
}
.f-slider2__title_smalled { font-size: 48px; }

.f-slider2__item-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.f-slider2__item {
    position: absolute;
    top: 0;
    left: 100vw;
    z-index: 1;
    display: inherit;
    grid-template-rows: inherit;
    grid-template-columns: inherit;
    grid-row: inherit;
    grid-column: inherit;
    width: 100%;
    height: 100%;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}
.f-slider2__item_active {
    position: relative;
    left: 0;
    z-index: 2;
    opacity: 1;
    user-select: initial;
    pointer-events: auto;
}
.f-slider2__item_hide-to-left { animation: slideHideToLeft var(--duration-long); }
.f-slider2__item_show-from-right { animation: slideShowFromRight var(--duration-long); }
.f-slider2__item_hide-to-right { animation: slideHideToRight var(--duration-long); }
.f-slider2__item_show-from-left { animation: slideShowFromLeft var(--duration-long); }

.f-slider2__nav-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
}

.f-slider2__footer {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.f-slider2__arrows {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
}
.f-slider2__arrows_active { display: flex; }
.f-slider2__arrows-desc {
    flex: 0 1 auto;
    padding: 0 15px;
    max-width: 164px;
    font-size: 14px;
    letter-spacing: .03em;
    text-align: center;
}
.f-slider2__arrows-item {
    flex: 0 0 auto;
    width: 66px;
    min-height: 10px;
    background: url('../img/arrow-long-left.png')50% 50% no-repeat;
    cursor: pointer;
}
.f-slider2__arrows-item_prev {}
.f-slider2__arrows-item_next {
    transform: rotate3d(0,0,1,180deg);
}

.f-slider2__nav {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    padding: 15px 0;
}
.f-slider2__nav_active { display: flex; }
.f-slider2__nav-item {
    border-radius: 50%;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background-color: var(--color-item-active);
    opacity: .4;
    cursor: pointer;
}
.f-slider2__nav-item_active {
    opacity: 1;
    cursor: default;
}
.f-slider2__nav-item_anim {
    animation: animDragNavItems var(--duration-long);
}
@keyframes animDragNavItems {
    0% { transform: scale3d(1,1,1); opacity: 1; }
    20% { transform: scale3d(0,0,0); opacity: 0; }
    80% { transform: scale3d(0,0,0); opacity: 0; }
    100% { transform: scale3d(1,1,1); opacity: 1; }
}

.f-slider2__drag {
    position: relative;
    width: 100vw;
    height: 80px;
    /*background: url('../img/way.png')50% 50% repeat-x;*/
}
.f-slider2__drag-svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: left var(--duration-long);
}
.f-slider2__drag-svg_show { opacity: 1; }

.f-slider2__drag-cell {
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: -50px 0 0 -50px;
    width: 100px;
    height: 100px;
}
.f-slider2__drag-cell:nth-child(1) {
    left: 25%;
    margin-top: -46px;
}
.f-slider2__drag-cell:nth-child(2) {
    top: 50%;
    left: 50%;
    z-index: 3;
}
.f-slider2__drag-cell:nth-child(3) {
    top: 100%;
    left: 75%;
    margin-top: -54px;
}
.f-slider2__drag-item {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--color);
    cursor: pointer;
    transition-property: background-color, opacity;
    transition-duration: var(--duration);
}
.f-slider2__drag-item_anim {
    transition-property: background-color, opacity, transform;
    transition-duration: var(--duration);
}
.f-slider2__drag-item:before {
    content: ' ';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border: 1px solid var(--color-main);
    border-radius: 50%;
}
.f-slider2__drag-item_active {
    border: 15px solid var(--color-main);
    width: 80px;
    height: 80px;
}
.f-slider2__drag-item_active:before {
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border-color: var(--color);
}
.f-slider2__drag-item_0 { --color: var(--color-item-before-active); }
.f-slider2__drag-item_1 { --color: var(--color-item-active); }
.f-slider2__drag-item_2 { --color: var(--color-item-after-active); }

.f-slide-1__image {
    position: relative;
    left: -80px;
    display: block;
    margin: 0 auto;
    max-height: 100%;
    max-width: 100%;
}

.f-slide-2_left {
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    /*background: url('../img/slides/slide-1-revert.png')50% 0 no-repeat;*/
    /*background-size: auto 100%;*/
}
.f-slide-2_left-bg {
    display:none;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
}
.f-slide-2_img-wrapper {
    position: relative;
    top: -10vh;
    z-index: 1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-width: 0 3px;
    border-style: solid;
    border-color: transparent;
    flex: 1 1 25%;
    width: 25%;
    height: 115vh;
    /*transform-origin: 0 50%;*/
    /*transform: rotate3d(0,0,1,-11.2deg);*/
    cursor: pointer;
    transition-property: width,flex-basis,border-width;
    transition-duration: var(--duration);
}
.f-slide-2_img-picture-before {
    content: ' ';
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 100%;
    opacity: 0;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), linear-gradient(180deg, rgba(0, 0, 0, 0) 76.8%, #000000 100%);*/
    transform-origin: 50% 50%;
    transform: rotate3d(0,0,1,-11.2deg);
    transition-property: left,right,opacity;
    transition-duration: var(--duration);
}
.f-slide-2_img-picture-before:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(180deg, rgba(0, 0, 0, 0) 76.8%, #000000 100%);
}
.f-slide-2_img-wrapper_before .f-slide-2_img-picture-before {
    right: 5px;
    left: -5px;
}
.f-slide-2_img-wrapper_after .f-slide-2_img-picture-before {
    left: 5px;
    right: -5px;
}
.f-slide-2_img-wrapper_before,
.f-slide-2_img-wrapper_after {
    border-width: 0;
}

.f-slide-2_img-wrapper_back .f-slide-2_img-picture-before,
.f-slide-2_img-wrapper_closed .f-slide-2_img-picture-before {
    opacity: 1;
    filter: blur(5px);
}
.f-slide-2_img-picture {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    transform-origin: 50% 50%;
    transform: rotate3d(0,0,1,-11.2deg);
    transition-property: left,right;
    transition-duration: var(--duration);
}
.f-slide-2_img-wrapper_hover {
    z-index: 3;
    border-width: 0 5px;
    width: 30%;
    flex: 0 0 30%;
}
.f-slide-2__img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translate3d(-50%,0,0) rotate3d(0,0,1,11.2deg);
}
.f-slide-2_img-wrapper_open {
    z-index: 3;
    /*flex: 0 0 100%;*/
}
.f-slide-2_img-wrapper_open {
    width: 70%;
    flex: 0 0 70%;
}
.f-slide-2_img-wrapper_closed {
    cursor: default;
    pointer-events: none;
}
.f-slide-2_img-wrapper_closed .f-slide-2_img-picture {
    filter: blur(5px);
}


.f-slide-2_right {
    display: grid;
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    width: 50%;
    /*padding-top: calc(100vh / 10 * 2);*/
}
.f-slide-2-list {
    counter-reset: slide2List;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    grid-column: 1 / 4;
    grid-row: 4 / 9;
    margin: 0;
    padding: 0;
}
.f-slide-2-list.f-slider-generated {
    height: calc(100vh / 10 * 4);
}
.f-slide-2-list__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 0 1 30%;
    height: 50%;
    list-style: none;
}
.f-slide-2-list__item:before {
    counter-increment: slide2List;
    content: counter(slide2List);
    display: block;
    border-radius: 50%;
    max-width: 120px;
    width: 11.2vh;
    max-height: 120px;
    height: 11.2vh;
    text-align: center;
    line-height: 11.2vh;
    font-size: 72px;
    font-weight: 200;
}
.f-slide-2-list__item_1:before { background-color: #52B694; }
.f-slide-2-list__item_2:before { background-color: #01A0B1; }
.f-slide-2-list__item_3:before { background-color: #5594C5; }
.f-slide-2-list__item_4:before { background-color: #4772AA; }
.f-slide-2-list__item_5:before { background-color: #9A5284; }
.f-slide-2-list__item_6:before { background-color: #C0345E; }

.f-slide-2-list__item-text {
    padding-top: 2.2vh;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.f-slide-4__content {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
}
.f-slide-4__img-wrapper {
    position: relative;
    margin: 0 auto;
}
.f-slide-4 .f-slider2__item-content { position: relative; }
.f-slide-4__text {
    box-sizing: content-box;
    position: absolute;
    left: 100%;
    bottom: 26%;
    padding-left: 20px;
    width: calc(100vw / 8);
    line-height: normal;
}

.f-slide-5__content {
    display: inherit;
    grid-template-columns: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
    grid-column: inherit;
    height: 100%;
}
.f-slide-5__img-wrapper {
    position: relative;
    display: inherit;
    grid-template-columns: inherit;
    grid-template-rows: repeat(7,1fr);
    grid-column: 1 / 7;
    grid-row: 1/8;
}
.f-slide-5__img-pic {
    display: inherit;
    grid-template-columns: inherit;
    grid-template-rows: inherit;
    grid-row: inherit;
    grid-column: inherit;
}
.f-slide-5__img {
    grid-column: 1 / 7;
    grid-row: 1/8;
}
.f-slide-5__desc {
    position: absolute;
    right: 0;
    bottom: 17%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 290px;
    width: 30.8vw;
    min-height: 178px;
    background: url('../img/small-lightning-round.png')0 50% no-repeat;
}
.f-slide-5__desc:before {
    content: ' ';
    position: absolute;
    top: 50%;
    left: 89px;
    margin-top: -1px;
    width: 10vw;
    height: 2px;
    background-color: var(--color-main);
}

.f-slide-6 .f-slider2__title { white-space: nowrap;}
.f-slide-6__content {
    display: inherit;
    grid-template-columns: inherit;
    grid-template-rows: inherit;
    grid-column: inherit;
    grid-row: inherit;
}
.f-slide-6__img-wrapper {
    grid-row: 1 / 8;
    grid-column: 1 / 7;
}
.f-slide-6__desc {
    grid-row: 4 / 8;
    grid-column: 4 / 7;
    padding-top: 50px;
}
.f-slide-6__text {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    left: -50px;
    grid-column: 2 / 3;
    padding-right: 22px;
    text-align: right;
}
.f-slide-6__text_1 { grid-row: 3 / 4; }
.f-slide-6__text_2 { grid-row: 4 / 5; }
.f-slide-6__text_3 { grid-row: 5 / 6; }
.f-slide-6__text_4 { grid-row: 7 / 8; }

.f-slide-6__text-line {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background-color: #fff;
}
.f-slide-6__text-line_1 { width: 100px; }
.f-slide-6__text-line_2 { width: 120px; }
.f-slide-6__text-line_3 { width: 152px; }
.f-slide-6__text-line:before {
    content: ' ';
    position: absolute;
    top: -5px;
    right: 0;
    border: 6px solid #fff;
    border-radius: 50%;
}
.f-slide-6__text-line:after {
    content: ' ';
    position: absolute;
    top: -7px;
    right: -2px;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
}

.f-slide-6__text-video {
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -52px;
    width: 104px;
    height: 104px;
    background: url('../img/button_video.png')50% 50% no-repeat;
    background-size: contain;
}

.f-slide-6__img {
    display: inline-block;
    height: 100%;
}

.f-slide-7__content {
    display: inherit;
    grid-template-columns: inherit;
    grid-template-rows: inherit;
    grid-column: inherit;
    grid-row: inherit;
}
.f-slide-7__img-wrapper {
    grid-row: 1 / 8;
    grid-column: 1 / 9;
}
.f-slide-7__desc {
    font-size: 12px;
    grid-row: 4 / 8;
    grid-column: 3 / 8;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: flex-end;
}

.f-slide-7__desc > ol {
    background: rgba(0, 0, 0, 0.5);
}
/* --Slider 2 */
/* --Content (page) 2 */

/* Text */
.f-text {
    color: var(--color-main);
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
    letter-spacing: .03em;
}
.f-text_c-active { color: var(--color-active); }
.f-text_c-active2 { color: var(--color-active2); }
.f-text_c-active3 { color: var(--color-active3); }
.f-text_c-slider-active { color: var(--color-item-active); }
.f-text_fw-extrabold { font-weight: 800; }
.f-text_fw-medium { font-weight: 500; }
.f-text_fs-18 { font-size: 18px; }
.f-text_max-w-500 { max-width: 500px; }
.f-text_right { text-align: right; }
.f-text_upper { text-transform: uppercase; }
/* --Text */

.f-next {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.f-next_revert .f-next__arrow-icon { transform: scale3d(1,-1,1); }
.f-next__counter {
    flex: 0 0 auto;
    font-size: 48px;
    font-weight: 300;
}
.f-next__arrow {
    flex: 0 0 auto;
    padding-left: 45px;
    padding-right: 60px;
}
.f-next__arrow-icon {
    display: block;
    transition: transform var(--duration);
}
.f-next__title {
    flex: 0 0 auto;
    font-size: 36px;
    font-weight: 300;
}

.f-mouse-scroll {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.f-mouse-scroll__icon-wrapper {}
.f-mouse-scroll__icon {
    position: relative;
    border: 1px solid var(--color-main);
    border-radius: 15px;
    width: 25px;
    height: 47px;
}
.f-mouse-scroll__icon:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 1px;
    height: 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--color-main) 40%, var(--color-main) 60%, rgba(0,0,0,0) 100%);
    /*transform: translate3d(-50%,0,0);*/
    animation: animMouse 1s linear infinite;
}
@keyframes animMouse {
    0% {
        opacity: 0;
        top: 0;
        /*transform: translate3d(-50%,0,0);*/
    }
    30% {
        opacity: 1;
        top: 30%;
        /*transform: translate3d(-50%,50%,0);*/
    }
    100% {
        opacity: 0;
        top: 50%;
        /*transform: translate3d(-50%,120%,0);*/
    }
}
.f-mouse-scroll__desc {
    padding-left: 16px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .02em;
}

.f-btn {
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 200px;
    height: 40px;
    background-color: var(--color-main);
    cursor: pointer;
}
.f-btn__text {
    width: 100%;
    text-align: center;
    color: transparent;
    background: var(--bg-gradient-main);
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px transparent;
}

/* Slider */
.f-slider {
    display: inherit;
    grid-template-rows: inherit;
    grid-template-columns: inherit;
    grid-row: inherit;
    grid-column: inherit;
    position: relative;
    z-index: 2;

    --color-item-active: var(--color-active);
}

.f-slider__header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    grid-row: 3 / 4;
    grid-column: 2 / 7;
    position: relative;
    z-index: 3;
    width: 100%;
}

.f-slider__counter {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    font-family: var(--font-second);
    white-space: nowrap;
}
.f-slider__counter-current {
    font-size: 48px;
    letter-spacing: .02em;
}
.f-slider__counter-length {
    font-size: 24px;
    letter-spacing: .02em;
    color: var(--color-item-active);
    line-height: 1.4;
}

.f-slider__inner {
    visibility: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    grid-row: 5 / 8;
    grid-column: 2 / 7;
    opacity: 0;
    pointer-events: none;
}
.f-slider__inner_active {
    z-index: 3;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.f-slider__title {
    position: relative;
    z-index: 3;
    display: none;
    grid-row: 4 / 5;
    grid-column: 2 / 7;
    margin: 0;
    width: 100%;
    font-size: 72px;
    font-weight: normal;
    font-family: var(--font-second);
    letter-spacing: .02em;
}
.f-slider__title_smalled {
    font-size: 48px;
    letter-spacing: .02em;
}
.f-slider__title_active { display: block; }

.f-slider__switcher {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    letter-spacing: .05em;
    cursor: pointer;
}
.f-slider__switcher-img-wrapper {
    overflow: hidden;
    width: 70px;
    height: 32px;
    background: url('../img/button-sequence/button_00000_00031.png')50% 50% no-repeat;
    background-size: 100% auto;
    transform: scale3d(1,1,1);
}
.f-slider__switcher-img-wrapper_revert { transform: scale3d(-1,-1,1); }
.f-slider__switcher-img-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}

.f-slider__switcher-img {
    display: block;
    flex: 0 0 auto;
    width: 100%;
}

.f-slider__switcher-item { padding: 0 5px; }
.f-slider__switcher-item_active {
    text-shadow: 0 0 6px var(--color-main);
}

.f-slider__item {
    position: absolute;
    top: 0;
    left: 100vw;
    z-index: 2;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    opacity: 0;
}
.f-slider__item_active {
    position: relative;
    left: 0;
    z-index: 3;
    opacity: 1;
}
.f-slider__item_hide-to-left { animation: slideHideToLeft var(--duration-long); }
.f-slider__item_show-from-right { animation: slideShowFromRight var(--duration-long); }
.f-slider__item_hide-to-right { animation: slideHideToRight var(--duration-long); }
.f-slider__item_show-from-left { animation: slideShowFromLeft var(--duration-long); }


.f-slider__item-title { display: none; }
.f-slider__item-title-mark {
    color: var(--color-item-active);
}

.f-slider__item-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.f-slider__item-inner-cell {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
}
.f-slider__item-inner-cell_self-start { align-self: flex-start; }
.f-slider__item-inner-cell:first-child {
    flex-basis: calc(50% - 125px - 100vw / 8 * 0.5);
}
.f-slider__item-inner-cell:nth-child(2) {
    flex-basis: 250px;
}
.f-slider__item-inner-cell:last-child {
    flex-basis: calc(50% - 125px + 100vw / 8 * 0.5);
    padding-left: 17px;
}

.f-slider__item-inner-desc {
    overflow: hidden;
    align-self: flex-start;
    flex: 0 1 auto;
}

.f-slider__item-inner-cell_rounds {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}
.f-slider__item-inner0-right-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 100px;
    width: 100px;
}
.f-slider__item-inner0-right-item_active {}
.f-slider__item-inner0-right-item_un-active {
    position: absolute;
    visibility: hidden;
}
.f-slider__item-inner0-right-item-round {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background-color: var(--color-active);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.07em;
}
.f-slider__item-inner0-right-item-round_2 { background-color: var(--color-active2); }
.f-slider__item-inner0-right-item-round_3 { background-color: var(--color-active3); }
.f-slider__item-inner0-right-item-round-desc {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.07em;
}
.f-slider__item-inner0-right-item-desc {
    padding: 18px 5px 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.07em;
    text-align: center;
    white-space: nowrap;
}
.f-slider__item-inner0-right-item_delimeter {
    flex: 0 0 100%;
    width: 100%;
    height: 2.5vh;
}
.f-slider__item_bg { display: none; }

.f-slider__item-inner-drag {
    flex: 0 0 250px;
}

.f-slider__nav-drag-item {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    text-decoration: none !important;
    background-color: var(--color-item-active);
    transition: background-color var(--duration-long);
}
.f-slider__nav-drag-item:before {
    content: ' ';
    position: absolute;
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    border: 1px solid var(--color-item-active);
    border-radius: 50%;
    transition: border-color var(--duration-long);
}
.f-slider__nav-drag-item_video {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}
.f-slider__nav-drag-item_video:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    opacity: .2;
    background-color: var(--color-item-active);
}
.f-slider__nav-drag-item-img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
}

.f-popup-video {
    overflow: hidden;
    position: fixed;
    top: 100%;
    left: 100%;
    z-index: 200;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    cursor: pointer;
}
.f-popup-video_show {
    top: 0;
    left: 0;
}

.f-slider2__nav-drag-item_video { cursor: pointer;}
.f-slider__item-inner-drag_video-inner,
.f-slider2__item-inner-drag_video-inner {
    display: block;
    flex: 1;
    width: 100%;
    max-width: 736px;
    background-color: #000;
    border: 0 solid rgba(255, 42, 87, 0.2);
}
.f-popup-video_show .f-slider__item-inner-drag_video-inner,
.f-popup-video_show .f-slider2__item-inner-drag_video-inner {
    border-width: 4px;
}
.f-slider__item-inner-drag_video-iframe-wrapper,
.f-slider2__item-inner-drag_video-iframe-wrapper {
    display: block;
    position:relative;
    padding: 56.25% 0 0 0;
}
.f-slider__item-inner-drag_video-iframe,
.f-slider2__item-inner-drag_video-iframe {
    display: block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.f-popup-video_show .f-slider2__item-inner-drag_video-iframe-wrapper {  padding: 56.25% 0 0 0; }
.f-slider2__item-inner-drag_video-iframe-wrapper { padding: 0; }

.f-slider__footer {
    position: absolute;
    left: 0;
    bottom: calc(100vh / 10 * 1);
    z-index: 3;
    padding-top: 20px;
    width: 100%;
}

.f-slider__arrows {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
}
.f-slider__arrows_active { display: flex; }
.f-slider__arrows-desc {
    flex: 0 1 auto;
    padding: 0 15px;
    max-width: 164px;
    font-size: 14px;
    letter-spacing: .03em;
    text-align: center;
}
.f-slider__arrows-item {
    flex: 0 0 auto;
    width: 66px;
    min-height: 10px;
    background: url('../img/arrow-long-left.png')50% 50% no-repeat;
    cursor: pointer;
}
.f-slider__arrows-item_prev {}
.f-slider__arrows-item_next {
    transform: rotate3d(0,0,1,180deg);
}

.f-slider__nav {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    padding: 15px 0;
}
.f-slider__nav_active { display: flex; }
.f-slider__nav-item {
    border-radius: 50%;
    margin: 0 4px;
    width: 10px;
    height: 10px;
    background-color: var(--color-item-active);
    opacity: .4;
    cursor: pointer;
}
.f-slider__nav-item_active {
    opacity: 1;
    cursor: default;
}

.f-slider__wave-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url('../img/bg-page1.jpg')50% 50% no-repeat;
    background-size: cover;
}
.f-slider__wave-wrapper:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(2, 12, 41, 0.6) url('../img/fon4/dots.png');
}
.f-slider__wave-wrapper-inner {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    opacity: 0;
    transition-property: opacity, left;
    transition-duration: var(--duration-long);
    transition-timing-function: linear;
}
.f-slider__wave {}


@keyframes slideHideToLeft {
    0% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    100% {
        opacity: 0;
        transform: translate3d(-100vw,0,0);
    }
    100.00001% {
        visibility: hidden;
        opacity: 0;
        transform: translate3d(-100vw,0,0);
    }
}
@keyframes slideShowFromRight {
    0% {
        opacity: 0;
        transform: translate3d(0,0,0);
    }
    100% {
        opacity: 1;
        transform: translate3d(-100vw,0,0);
    }
}
@keyframes slideHideToRight {
    0% {
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    100% {
        opacity: 0;
        transform: translate3d(100vw,0,0);
    }
    100.00001% {
        visibility: hidden;
        opacity: 0;
        transform: translate3d(100vw,0,0);
    }
}
@keyframes slideShowFromLeft {
    0% {
        opacity: 0;
        transform: translate3d(-200vw,0,0);
    }
    100% {
        opacity: 1;
        transform: translate3d(-100vw,0,0);
    }
}
/* --Slider */

.f-bg_video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    background: transparent;
    opacity: .5;
}
.f-bg_video_show {
    display: block;
}

.f-list {
    counter-reset: list;
    padding-left: 0;
}
.f-list__item {
    position: relative;
    list-style: none;
    line-height: 1.5;
}
.f-list__item_num {
    padding-left: 30px;
}
.f-list__item_num:before {
    counter-increment: list;
    content: counter(list, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--color-item-active);
    font-weight: 800;
}

/* Map Popup */
.f-map-popup {
    position: fixed;
    top: 100%;
    left: 100%;
    z-index: 120;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    /*width: 620px;*/
    /*max-width: 50vw;*/
    min-width: 400px;
    /*height: 620px;*/
    min-height: 400px;
    max-height: 100vh;
    background: #000000;
    border: 4px solid rgba(255, 42, 87, 0.2);
}
.f-map-popup_show {
    visibility: visible;
    top: 0;
    left: 0;
}
.f-map-popup_fullscreen {
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    max-width: 100vw;
    height: 100%;
}

.f-map-popup_fullscreen .f-map-popup__head {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    flex: 0 0 75px;
    height: 75px;
    font-size: 36px;
    font-weight: 300;
}
.f-map-popup_fullscreen .f-map-popup__head-delimeter {
    display: block;
    margin: 0 20px;
    transform: scale3d(-1,1,1);
}
.f-map-popup_fullscreen .f-map-popup__head-floor,
.f-map-popup_fullscreen .f-map-popup__head-delimeter,
.f-map-popup_fullscreen .f-map-popup__close {
    display: block;
    flex: 0 1 auto;
}
.f-map-popup__head-floor { white-space: nowrap; }
.f-map-popup__head-title { white-space: nowrap; }

.f-map-popup__close {
    position: absolute;
    top: 13px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: url('../img/close_red.png')50% 50% no-repeat;
    cursor: pointer;
}

.f-map-popup__head {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0 50px 0 10px;
    flex: 0 0 75px;
    height: 75px;
    font-size: 36px;
    font-weight: 300;
}
.f-map-popup__head { display: none; }
.f-map-popup__head-delimeter {
    display: block;
    margin: 0 20px;
    transform: scale3d(-1,1,1);
}
.f-map-popup__head-floor,
.f-map-popup__head-delimeter,
.f-map-popup__head-desc,
.f-map-popup__close {
    display: none;
}
.f-map-popup__head-title {
    text-transform: uppercase;
    --color-title-active: var(--color-active);
}
.f-map-popup__head-title-active { color: var(--color-title-active); }

.f-map-popup__content {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    flex: 1 1 100%;
}

.f-pin {
    cursor: pointer;
}

/* Slider 4 */
.f-slider4__inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.f-slider4__item {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--duration);
    pointer-events: none;
}
.f-slider4__item_active {
    z-index: 5;
    opacity: 1;
}
.f-slider4__item_disabled,
.f-slider4__nav-item_disabled {
    display: none !important;
}
.f-slider4__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.f-slider4__nav-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
}

.f-slider4__footer {
    position: relative;
    z-index: 2;
}

.f-slider4__nav {
    display: none;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: stretch;
    padding: 15px 0;
}
.f-slider4__nav_active { display: flex; }
.f-slider4__nav-item {
    border-radius: 50%;
    margin: 0 4px;
    width: 11px;
    height: 11px;
    background-color: var(--color-main);
    opacity: .4;
    cursor: pointer;
}
.f-map-popup_fullscreen .f-slider4__nav-item {
    margin: 0 7px;
    width: 20px;
    height: 20px;
}
.f-slider4__nav-item_active {
    opacity: 1;
    cursor: default;
}
/* --Slider 4 */
/* --Map Popup */

/* Preloader */
.f-preloader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    background: var(--color-blue-dark);
}
.f-preloader_load-complete {
    cursor: pointer;
}
.f-preloader_load-complete:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 82.32%, rgba(2, 12, 41, 0.8) 100%);
    cursor: default;
}
.f-preloader_hide { display: none; }
.f-preloader__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    opacity: .5;
}
.f-preloader__bg-video_hide {display: none;}
.f-preloader__preview-video,
.f-preloader__preview-video .vjs-tech {
    position: relative;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: calc(100vh / 9 * 16);
    min-width: 100vw;
    height: 100vh;
    min-height: calc(100vw / 16 * 9);
    flex: 0 0 auto;
}
.f-preloader__preview-video {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}
.f-preloader__preview-video_show {
    position: relative;
    visibility: visible;
    cursor: default;
    opacity: 1;
}
.f-preloader_hide-btn {
    position: absolute;
    left: 50%;
    bottom: 15px;
    z-index: 5;
    text-align: center;
    margin: 0 0 0 -201px;
    width: 403px;
    height: 152px;
    visibility: hidden;
}
.f-preloader_hide-btn_show {
    visibility: visible;}
.f-preloader_hide-btn-img {
    display: inline-block;
}
.f-preloader_hide-btn-text {
    font-weight: 300;
    line-height: normal;
    font-size: 14px;
    text-align: center;
}
.f-preloader__hide-btn {
    position: absolute;
    left: 0;
    bottom: 20px;
    z-index: 11;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: default;
}
.f-preloader__hide-btn-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.f-preloader__hide-btn-text {
    padding: 0 10px;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--color-main);
}
.f-preloader__hide-btn-text_active {
    text-shadow: 0 0 6px var(--color-main);
}
.f-preloader__hide-btn-icon {
    width: 70px;
}
.f-preloader__sequence {
    overflow: hidden;
    width: 70px;
    height: 32px;
}
.f-preloader__sequence > div {
    position: relative;
}
.f-preloader__sequence img {
    display: block;
    width: 100%;
}
/* --Preloader */

/* no support */
.f-noSupport {
    position:absolute;
    top:0;
    left:0;
    z-index:1000;
    overflow: auto;
    overflow-x: hidden;
    width:100%;
    height:100%;
    background:#000 url('../img/bg-page1.jpg')50% 0 no-repeat;
    color:#f82d55;
    font-size:18px;
    padding:30px 0 0;
    text-align: center;
    font-family: "Rounded-Mplus-1c",Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
}
.f-noSupport__inner {
    position: relative;
    z-index: 2;
}
.f-noSupport__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 40, 92, 0.4) url('../img/bg-dots.png');
}
.f-noSupport__bottom {
    padding-bottom: 30px;
    background: rgba(11, 187, 150, 0.2);
}
.f-noSupport__logo {
    display: inline-block;
    margin-bottom: 52px;
}
.f-noSupport__logo-img {
    display: inline-block;
    max-width: 100%;
}
.f-noSupport__title-wrapper {
    padding: 42px 20px;
    background: rgba(255, 42, 87, 0.3);
    font-family: Roboto,"Rounded-Mplus-1c",-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 48px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    line-height: 80px;
}
.f-noSupport__title-text {
    display: inline-block;
    vertical-align: middle;
}
.f-noSupport__title {
    margin: 0 auto;
    max-width: 1000px;
}
.f-noSupport__close-img {
    display: inline-block;
    vertical-align: middle;
    padding-left: 100px;
    min-height: 80px;
    background: url('../img/close-red-round.png')0 0 no-repeat;
    white-space: nowrap;
}
.f-noSupport__text {
    margin: 0 auto;
    padding: 30px 100px;
    max-width: 940px;
    font-style: normal;
    font-weight: normal;
    line-height: 29px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}
.f-noSupport__text_check {
    background: url('../img/check-round.png')0 50% no-repeat;
}

.f-noSupport__browsers {
    margin: 0 auto;
    padding: 30px 0 0;
    max-width: 940px;
    white-space: nowrap;
}
.f-noSupport__browsers-item-wrapper {
    display: inline-block;
    vertical-align: middle;
    width: 30%;
}
.f-noSupport__browsers-item {
    display: inline-block;
    text-decoration: none !important;
}
.f-noSupport__browsers-item:hover .f-noSupport__browsers-item-text {
    text-decoration: none;
}
.f-noSupport__browsers-item-img-wrapper {
    display: inline-block;
    height: 170px;
}
.f-noSupport__browsers-item-img {
    display: block;
    margin: 0 auto;
}
.f-noSupport__browsers-item-text {
    display: block;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.05em;
    text-decoration: underline;
    color: #FFFFFF;
}
/* --no support */

/* Preview */
.preview {
    position: relative;
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex: 0 0 auto;
    width: 100vw;
    height: 100vh;
    /*background: #000 url('../img/bg.png');*/
}
.preview_hide { display: none; }

.preview__inner {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.preview__preloader {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 358px;
    height: 100%;
    max-height: 214px;
    background: url('../img/bg-preloader.png')50% 100% no-repeat;
    background-size: 100% auto;
}
.preview__preloader-img-active {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 0;
    background: url('../img/bg-preloader_active.png')50% 100% no-repeat;
    background-size: 100% auto;
    transition-property: max-height;
    transition-duration: var(--duration);
    transition-timing-function: var(--timing-fn);
}

.preview__loader {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 50%;
    text-align: center;
    font-size: 100px;
    color: var(--color-unactive);
    transform: translate3d(0,0,0);
    will-change: transform;
}
.preview__play {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    margin-top: 15px;
    width: 100%;
    height: 50%;
    text-align: center;
    font-size: 60px;
    color: var(--color-unactive);
}
.preview__hide { opacity: 0; }
.preview__svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
}
/* --Preview */

.f-wonderful-btn {
    overflow: hidden;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 190px;
    height: 190px;
}
.f-wonderful-btn > div {
    position: relative;
}
.f-wonderful-btn-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--color-main);
    text-decoration: none;
}

/* Slider Generated */
.f-slider-generated {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
    padding-bottom: 50px !important;
}
.f-slider-generated__item {
    position: absolute;
    top: 0;
    left: 200%;
    z-index: -1;
    margin: auto;
    opacity: 0;
    transition: opacity var(--duration);
}
.f-slider-generated__item_active {
    position: relative;
    left: 0;
    z-index: 1;
    opacity: 1;
}
.js-slider-generated__hidden {}
.js-slider-generated__hidden_active { display: none !important; }

.f-slider-generated__nav {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
}
.f-slider-generated__nav-item {
    margin-left: 3px;
    margin-right: 3px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--color-item-active);
    opacity: .4;
    transition: opacity var(--duration);
    cursor: pointer;
}
.f-slider-generated__nav-item_active { opacity: 1; }
/* --Slider Generated */

.d-none {
    display: none;
}

.mBrTowersIcon{
    display: flex;
    position: relative;
    height: 75px;
    background: url(../img/icon_towers.png);
    background-position: right;
    background-repeat: no-repeat;
    z-index: 111;
    align-items: center;
    margin-right: -78px;
}

.mBrTowersIconTwo {
    display: flex;
    position: relative;
    height: 77px;
    background: url(../img/Vector.png);
    background-position: right;
    background-repeat: no-repeat;
    z-index: 155;
    align-items: center;
    margin-right: -78px;
}

.mBrTowersIconTwo ins {
    white-space: nowrap;
    position: relative;
    opacity: 0.8;
    padding-top: 31px;
    padding-right: 100px;
    left: 13px;
    top: 1px;
}

.mBrTowersIcon ins {
    white-space: nowrap;
    position: relative;
    opacity: 0.8;
    padding-top: 31px;
    padding-left: 85px; 
    left: -80px;
}

.mBrMapsFon{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: stretch;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
}

.mBrMapsFonTwo:after{
    content: "";
    background: rgba(35, 40, 92, 0.8) url(../img/fon4/dots.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.mBrMapsFonTwo:before{
    content: "";
    background: url(../img/fon4/Moscow_Business_Center_Sep2017.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
}

.mBrPinDown {
    flex: 1 1 auto;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    position: relative;   
}

#mBrTextSwitch{
    font-size: 48px;
    white-space: nowrap;
}

.mBrDropMenu{
    position: relative;
    width: 83px;
    height: 23px;
    border-radius: 20px;
    background-color: white;
    z-index: 2;
    background-image: url(../img/Union.png);
    background-repeat: no-repeat;
    background-position: 62px;
    overflow: hidden;
}

.mBrDropMenu span{
    position: absolute;
    color: black;
    font-size: 12px;
    padding-left: 10%;
    margin-top: 5px;
}

.mBrSpisokUl{
    position: absolute;
    top: -1%;
    left: 0%;
    right: 0;
    height: 135px;
    background: white;
    border-radius: 11px;
    z-index: 151;
    list-style-type: none;
    overflow: hidden;
    padding: 0;
}

.mBrSpisokUl.Off{
    opacity: 0;
    z-index: 0;
}
.mBrSpisokUl li{
    color: black;
    font-size: 15px;
    /* height: 17%; */
    padding-left: 16%;
    padding-top: 5%/*3%*/;
    padding-bottom: 4%;
}

.mBrMapsBody {
    position: absolute;
    width: 1440px;
    height: 444px;
    z-index: 110;
    transition: transform .2s;
    background: #9A9EA9;
    border-radius: 1000px 0 0 1000px;
    transform-origin: 0 40%;
}

/* Пины на Этажах */
#mBrOneFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 1;
    z-index: 1;
    margin-left: 27px;
}
#mBrTwoFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 0;
    z-index: 0;
    margin-left: 27px;
}
#mBrThreeFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 0;
    z-index: 0;
    margin-left: 27px;
}
#mBrFourFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 0;
    z-index: 0;
    margin-left: 27px;
}
#mBrFiveFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 0;
    z-index: 0;
    margin-left: 27px;
}
#mBrSixFloor{
    top: 0;
    left: 0;
    position: absolute;
    width: 1395px;
    height: 444px;
    opacity: 0;
    z-index: 0;
    margin-left: 27px;
}

.mBrPinRed {
    width: 21px;
    height: 31px;
    position: absolute;
    background-image: url(../img/VectorRed.png);
    z-index: 2;
}
.mBrPinBlue {
    width: 21px;
    height: 31px;
    position: absolute;
    background-repeat: no-repeat;
    background-image: url(../img/VectorBlue.png);
    z-index: 2;
}
.mBrPinGreen {
    width: 21px;
    height: 31px;
    position: absolute;
    background-image: url(../img/VectorGreen.png);
    z-index: 2;
}
.mBrPinYellow {
    width: 21px;
    height: 31px;
    position: absolute;
    background-image: url(../img/VectorYellow.png);
    z-index: 2;
}

.mBrPinPurpur{
    width: 21px;
    height: 31px;
    position: absolute;
    background-image: url(../img/VectorPurpur.png);
    z-index: 2;
}

#mBrTouchAll{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderWhite.png) no-repeat left top, url(../img/DownPinAndBorder/WhitePin.png) no-repeat 8px 40px;
    color: #ffffff; 
}

#mBrTouchRed{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderRed.png) no-repeat left top, url(../img/DownPinAndBorder/RedPin.png) no-repeat 8px 40px;
    color: #C0345E;
}
#mBrTouchYellow{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderYellow.png) no-repeat left top, url(../img/DownPinAndBorder/YellowPin.png) no-repeat 8px 40px;
    color: #F8D559;
}
#mBrTouchBlue{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderBlue.png) no-repeat left top, url(../img/DownPinAndBorder/BluePin.png) no-repeat 8px 40px;
    color: #5594C5;
}
#mBrTouchGreen{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderGreen.png) no-repeat left top, url(../img/DownPinAndBorder/GreenPin.png) no-repeat 8px 40px;
    color: #52B694;
}
#mBrTouchPurpur{
    position: relative;
    background: url(../img/DownPinAndBorder/BorderPurpur.png) no-repeat left top, url(../img/DownPinAndBorder/PurpurPin.png) no-repeat 8px 40px;
    color: #9C52B6;
}

.mBrFilted {
    padding-right: 4vw;
    z-index: 2;
    padding-bottom: 7px;
}

.mBrTouchNumber {
    position: relative;
    width: 37px;
    height: 26px;
    font-size: 14px;
    padding: 6px 11px;
    text-align: center;
    text-decoration: none;
}

.mBrTouchText {
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-decoration: inherit; 
    font-size: 12px;
    line-height: 21px;
    text-align: left;
    letter-spacing: 0.05em;
    padding: 15px 0 0 37px;
    text-transform: uppercase;
}

.mBrTouchText p {
    display: none;
}

.mBrFloorNavigation {
    top: -1%;
    position: absolute;
    width: 1580px;
    height: 746px;
    background: url(../img/floors_navigation.png);
    background-repeat: no-repeat;
    background-position: -1% 175%;
    opacity: 0;
    z-index: 0;
}

.mBrFloorNavigation:after {
    
}

.mBrFloorNavigation.mBrNav {
    opacity: 1;
    z-index: 152;
}

.mBrOpacityContein.mBrOp {
    opacity: 0;
}

.mBrMapsContein {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(10, 1fr);
}

.mBrMapsContein:after{
    content: "";
    background: rgba(35, 40, 92, 0.8) url(../img/fon4/dots.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    background-size: cover;
    background-position: 50% 50%;
}

.mBrMapsContein:before{
    content: "";
    background: url(../img/fon4/Moscow_Business_Center_Sep2017.png);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    background-size: cover;
    background-position: 50% 50%;
}

.mBrAllContent {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-row: 3 / 10;
    grid-column: 2 / 8;
    z-index: 5;
}

.mBrContein1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
}
.mBrContein2 {
    position: relative;
}
.mBrContein3 {
    padding-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mBrSwitchMaps {
    grid-column: 2 / 6; 
    display: flex;
    align-items: center;
}

.mBrSwitchDouble {
    position: relative;
    margin-top: 1%;
    margin-left: 1%;
}

.mBrZoom{
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    height: 100px;
    background-image: url(../img/zoom.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 111;
}

.mBrFullScreen{
    position: relative;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: url(../img/fullscreen.png);
    z-index: 150;
    margin-right: 42px;
    margin-bottom: 2px;
}

.mBrTopZoom{
    width: 41px;
    height: 41px;
    position: relative;
    z-index: 150;
    border-radius: 50%;
    left: 15px;
    top: -39px;
    background: rgba(0, 0, 0, 0);
    margin-left: -58px;
}

.mBrDownZoom{
    width: 24.5px;
    height: 24.5px;
    top: -8px;
    position: relative;
    z-index: 150;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    left: -18px;
}

.mBrObject {
    position: relative;
    width: 163%;
    height: 134%;
    transform: scale(0.62);
    top: -74px;
    left: -429px;
    padding-left: 20px;
}

#mBrClose{
    display: none;
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 111;
    top: 3.4%;
    right: 2%;
}

#mBrClose:before{
    transform: rotate(45deg);
}

#mBrClose:after{
    transform: rotate(-45deg);
}

#mBrClose:before, #mBrClose:after {
    top: 11%;
    left: 45%;
    position: absolute;
    display: block;
    content: ' ';
    height: 25px;
    width: 1px;
    background-color: red;
    box-shadow: 0px 0px 10px 2px rgba(255, 0, 0, 0.5);
    z-index: 111px;
}

#mBrWhiteText{
    text-decoration: line-through;
}
#mBrRedText{
    text-decoration: underline;
}
#mBrBlueText{
    text-decoration: underline;
}
#mBrGreenText{
    text-decoration: underline;
}
#mBrYellowText{
    text-decoration: underline;
}
#mBrPurpurText{
    text-decoration: underline;
}

.mBrPopUpContent{
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
}

.mBrPopUpPrice {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 525px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 30px;
    padding: 63px;
    z-index: 2;
}
.mBrPopUpPriceSpan{
    position: relative;
    font-weight: 300;
    line-height: normal;
    font-size: 36px;
    letter-spacing: 0.07em;
    width: 100%;
}

.mBrPopUpPriceFormOne{
    border: 0;
    width: 100%;
    height: 45px;
    padding-left: 15px;
}

.mBrPopUpPriceFormTwo{
    border: 0;
    width: 100%;
    height: 45px;
    padding-left: 15px;
}

.mBrPopUpPriceFormThree{
    background: #C0345E;
    border-radius: 35px;
    border: 0;
    color: white;
    font-weight: 300;
    line-height: normal;
    font-size: 36px;
    letter-spacing: 0.05em;
    margin-top: 16%;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
}

.mBrPriceOff {
    position: absolute;
    width: 100%;
    height: 100%;
}

.d-block-xs {
    display: none;
}

.mBrDropFloorMobile{
    left: -10%;
    position: absolute;
    border: 2px solid white;
    border-radius: 35px;
    width: 143px;
    height: 34px;
    background: rgba(5, 11, 27, 0.7) url(../img/Mobile/arrowMobile.png) no-repeat;
    background-position: 100px, center;
    z-index: 111;
    overflow: hidden;
    text-align: left;
    padding-left: 15px;
    font-size: 11px;
    padding-top: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.mBrDropFilter{
    position: absolute;
    border: 2px solid white;
    border-radius: 35px;
    width: 170px;
    height: 34px;
    background: rgba(5, 11, 27, 0.7) url(../img/Mobile/arrowMobile.png) no-repeat;
    background-position: 137px, center;
    z-index: 111;
    overflow: hidden;
    text-align: left;
    padding-left: 9px;
    font-size: 11px;
    padding-top: 10px;
    letter-spacing: 0.05em;
}

.mBrDporFloorUl{
    padding-left: 0;
    z-index: 0;
    position: absolute;
    opacity: 0;
    list-style-type: none;
    left: -10%;
    width: 143px;
    height: 140px;
    background: rgb(5, 11, 27);
    border: 2px solid white;
    border-radius: 17px;
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.mBrDporFloorLi {
    padding-left: 21px;
    padding-top: 7px;
    padding-bottom: 3px;
}

.mBrDporFilterLi{
    padding-top: 10px;
    padding-left: 17px;
}

.mBrDropFilterUl{
    padding-left: 0;
    position: absolute;
    z-index: 0;
    opacity: 0;
    list-style-type: none;
    font-size: 12px;
    letter-spacing: 0.05em;
    width: 170px;
    height: 141px;
    background: rgb(5, 11, 27);
    border: 2px solid white;
    border-radius: 17px;
    overflow: hidden;
}

.mBrDropFloorMobile11{
    left: -16%;
    position: absolute;
}

.mBrDropFilter11 {
    left: 45%; 
    position: absolute;
}

.mBrVideoGid {
    position: absolute;
    display: none;
    bottom: 67vh;
    left: -2vh;
    z-index: 2;
}

.mBrGidVideoClass {
    position: absolute;
    width: auto;
    height: 423px;
    display: none;
    z-index: 100;
}

.js-menu-btn:after{
    pointer-events: auto;
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.VectorVideo {
    left: 120px;
    position: absolute;
    display: none;
}

.mBrVectorOne{
    top: 50px;
    animation: VectorOne 10000ms infinite;
}
@keyframes VectorOne {
    0% {top: 50px; left: 120px}
    25% {top: 50px; left: 140px}
    50% {top: 70px; left: 130px}
    75% {top: 60px; left: 110px}
    100% {top: 50px; left: 120px}
}

.mBrVectorTwo{
    top: 87px;
    animation: VectorTwo 10000ms infinite;
}
@keyframes VectorTwo {
    0% {top: 87px; left: 120px}
    20% {top: 97px; left: 130px}
    40% {top: 97px; left: 120px}
    60% {top: 110px; left: 90px}
    80% {top: 97px; left: 130px}
    100% {top: 87px; left: 120px}
}

.mBrVectorThree{
    top: 129px;
    animation: VectorThree 10000ms infinite;
}
@keyframes VectorThree {
    0% {top: 129px; left: 120px}
    20% {top: 129px; left: 110px}
    40% {top: 140px; left: 120px}
    60% {top: 140px; left: 150px}
    80% {top: 139px; left: 140px}
    100% {top: 129px; left: 120px}
}

.mBrVectorFour{
    top: 148px;
    animation: VectorFour 10000ms infinite;
}
@keyframes VectorFour {
    0% {top: 148px; left: 120px}
    25% {top: 148px; left: 110px}
    50% {top: 168px; left: 100px}
    75% {top: 158px; left: 140px}
    100% {top: 148px; left: 120px}
}

.mBrVectorFive{
    top: 150px;
    animation: VectorFive 10000ms infinite;
}
@keyframes VectorFive {
    0% {top: 150px; left: 120px}
    20% {top: 160px; left: 150px}
    40% {top: 170px; left: 130px}
    60% {top: 160px; left: 110px}
    80% {top: 160px; left: 130px}
    100% {top: 150px; left: 120px}
}

.mBrVectorSix{
    top: 144px;
    animation: VectorSix 10000ms infinite;
}
@keyframes VectorSix {
    0% {top: 144px; left: 120px}
    20% {top: 144px; left: 140px}
    40% {top: 174px; left: 120px}
    60% {top: 150px; left: 100px}
    80% {top: 154px; left: 130px}
    100% {top: 144px; left: 120px}
}

.mBrVectorText{
    position: absolute;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.07em;
    color: var(--color-active3) !important;
    border-radius: 36px;
    padding: 5px 14px 7px 14px;
    /* background: rgba(0, 0, 0, 0.8); */
}

/* .mBrVectorText:after{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
} */

.mBrVectorTextOne{
    top: 38px;
    left: 306px;
    animation: VectorTextOne 10000ms infinite;
}
@keyframes VectorTextOne {
    0% {top: 38px; left: 306px}
    25% {top: 38px; left: 326px}
    50% {top: 58px; left: 316px}
    75% {top: 48px; left: 296px}
    100% {top: 38px; left: 306px}
}

.mBrVectorTextTwo{
    top: 75px;
    left: 306px;
    animation: VectorTextTwo 10000ms infinite;
}
@keyframes VectorTextTwo {
    0% {top: 75px; left: 306px}
    20% {top: 85px; left: 316px}
    40% {top: 85px; left: 306px}
    60% {top: 105px; left: 276px}
    80% {top: 85px; left: 316px}
    100% {top: 75px; left: 306px}
}

.mBrVectorTextThree{
    top: 114px;
    left: 291px;
    animation: VectorTextThree 10000ms infinite;
}
@keyframes VectorTextThree {
    0% {top: 114px; left: 291px}
    20% {top: 114px; left: 281px}
    40% {top: 125px; left: 291px}
    60% {top: 125px; left: 321px}
    80% {top: 124px; left: 311px}
    100% {top: 114px; left: 291px}
}

.mBrVectorTextFour{
    top: 139px;
    left: 314px;
    animation: VectorTextFour 10000ms infinite;
}
@keyframes VectorTextFour {
    0% {top: 139px; left: 314px}
    25% {top: 139px; left: 304px}
    50% {top: 159px; left: 294px}
    75% {top: 149px; left: 334px}
    100% {top: 139px; left: 314px}
}

.mBrVectorTextFive{
    top: 193px;
    left: 304px;
    animation: VectorTextFive 10000ms infinite;
}
@keyframes VectorTextFive {
    0% {top: 193px; left: 304px}
    20% {top: 203px; left: 334px}
    40% {top: 213px; left: 314px}
    60% {top: 203px; left: 294px}
    80% {top: 203px; left: 314px}
    100% {top: 193px; left: 304px}
}

.mBrVectorTextSix{
    text-decoration: none !important;
    top: 231px;
    left: 296px;
    white-space: nowrap;
    animation: VectorTextSix 10000ms infinite;
}
@keyframes VectorTextSix {
    0% {top: 231px; left: 296px}
    20% {top: 231px; left: 316px}
    40% {top: 261px; left: 296px}
    60% {top: 237px; left: 279px}
    80% {top: 241px; left: 306px}
    100% {top: 231px; left: 296px}
}

.mBrPopUpClosePrice {
    background: url(../img/close_red.png);
}

.mBrStyleText {
    position: absolute;
    font-weight: normal;
    line-height: normal;
    font-size: 12px;
    letter-spacing: 0.04em;
}

#mBrStyleTextOne{
    width: 22%;
    /* top: 364px; */
    /* left: 21px; */
    margin-top: 18%;
    margin-left: 2%;
    text-align: right;
}
#mBrStyleTextTwo{
    width: 24%;
    margin-top: 39%;
    margin-left: 0%;
    text-align: right;
}
#mBrStyleTextThree{
    width: 19%;
    margin-top: -29%;
    margin-left: 77%;
    text-align: left;
}
#mBrStyleTextFour{
    text-align: left;
    margin-left: 77%;
    width: 13%;
    margin-top: -21%;
}
#mBrStyleTextFive{
    text-align: left;
    margin-top: -11%;
    margin-left: 77%;
    width: 18%;
}

.mBrConteinSliderAll {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mBrConteinMobile {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.mBrImgG {
    width: 48% !important;
}

.mBrMobile2Slide {
    position: absolute;
    width: 60%;
    height: auto;
    margin: 1% 21%;
}

.mBrButtonMobile {
    position: absolute;
    width: 5vw;
    height: 5vw;
    border-radius: 32vw;
    background: white;
    z-index: 2
}

.mBrButtonMobile:after {
    content: "";
    top: -0.5vw;
    width: 6vw;
    height: 6vw;
    position: absolute;
    background: none;
    border-radius: 32vw;
    border: 2px solid var(--color-item-active);
    left: -0.47vw;
}

.mBrButtonMobileOne {
    top: 29vw;
    left: 31vw;
}
.mBrButtonMobileTwo {
    top: 70vw;
    left: 22vw;
}
.mBrButtonMobileFour {
    top: 59vw;
    left: 62vw;
}
.mBrButtonMobileFive {
    top: 39vw;
    left: 56vw;
}
.mBrButtonMobileSix {
    top: 52vw;
    left: 52vw;
}

.mBrFullTextMobile{
    display: none;
    position: absolute;
    left: 20%;
    right: 20%;
    top: calc(100vh / 9 * 2);
    padding: 8vw;
    z-index: 100;
    border-radius: 1vw;
    /*margin: 31vw 29vw 29vw 32vw;*/
    font-size: 14px;
}
.mBrFullTextMobile:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    background: var(--color-item-active);
    opacity: .7;
}

.mBrFullWindow {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 101;
}

.mBrTitleDop{
    width: 100%;
    z-index: 2;
    height: 100%;
    font-size: 16px;
    position: relative;
    padding: 2vw 0vw 0vw 3vw;
}
.mBrTitleDop:before{
    width: 100%;
    height: 100%;
    content: " ";
    background: var(--color-item-active);
    filter: blur(1px);
    -webkit-filter: blur(1px);
    z-index: -1;
    opacity: 0.7;
    position: absolute;
    margin: -3%;
}
.mBrTitleTwoSlide {
    display: none;
    position: relative;
    grid-column: 3/7;
    grid-row: 4/4;
    z-index: 2;
    font-weight: 300;
    line-height: 18px;
    white-space: nowrap;
    margin: -7% 0 0 11%;
}

.TowersIconTextTwo {
    display: none;
}

.is-mobile.page-3 .f-header:before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.36) 79.01%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
} 

.mBrButtonMobileX {
    position: absolute;
    width: 37px;
    height: 37px;
    border-radius: 45px;
    background: white;
    z-index: 2;
    right: 20%;
    top: 33%;
    display: none;
}

.mBrButtonMobileX:after{
    content: "";
    top: -4px;
    width: 45px;
    height: 45px;
    position: absolute;
    background: none;
    border-radius: 45px;
    border: 2px solid var(--color-item-active);
    left: -4px;
}

.PopNpSlide6 {
    display: none;
    position: absolute;
    left: 20%;
    right: 20%;
    top: calc(100vh / 9 * 3.5);
    padding: 8vw;
    z-index: 100;
    border-radius: 1vw;
    /* margin: 31vw 29vw 29vw 32vw; */
    font-size: 14px;
}

.PopNpSlide6:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    background: var(--color-item-active);
    opacity: .9;
}

.FullWindowsSlide6 {
    width: 100%;
    height: 100%;
    z-index: 101;
    position: absolute;
    display: none;
}

.mBrSpanTwo {
    display: none;
}