.handorgel {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    border-top: none
}

.handorgel__header {
    display: block;
    margin: 0
}

.handorgel__header--open .handorgel__header__button {
    background-color: #eee
}

.handorgel__header--notransition .handorgel__header__button {
    -webkit-transition: none;
    transition: none
}

.handorgel__header--focus .handorgel__header__button {
    background-color: #dfdfdf;
    outline: none
}

.handorgel__header__button {
    display: block;
    width: 100%;
    padding: 20px 24px;
    margin: 0;
    border: none;
    border-top: 1px solid #eee;
    background-color: #fff;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
    text-align: left;
    -webkit-transition: background-color .2s ease;
    transition: background-color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.handorgel__header__button::-moz-focus-inner {
    border: 0
}

.submitBtn {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: auto;
    background-color: rgb(102 100 233);
    padding: 10px 40px;
    color: white;
    border-radius: 40px;
    font-family: Gilroy, sans-serif;
    cursor: pointer;
}

.handorgel__content {
    display: none;
    overflow: hidden;
    height: 0;
    border-top: 1px solid #eee;
    background-color: #fff;
    -webkit-transition: height .1s ease .1s;
    transition: height .1s ease .1s
}

.handorgel__content--open {
    display: block;
    -webkit-transition: height .2s ease;
    transition: height .2s ease
}

.handorgel__content--opened {
    overflow: visible
}

.handorgel__content--notransition {
    -webkit-transition: none;
    transition: none
}

.handorgel__content__inner {
    padding: 20px 24px;
    opacity: 0;
    -webkit-transition: opacity .1s ease;
    transition: opacity .1s ease
}

.handorgel__content--opened .handorgel__content__inner {
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(transparent));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), transparent);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: opacity .3s;
    -o-transition: .3s opacity;
    transition: opacity .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(.66);
    -ms-transform: scale(.66);
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(.33);
    -ms-transform: scale(.33);
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: top .2s, -webkit-transform .2s;
    transition: top .2s, -webkit-transform .2s;
    -o-transition: .2s transform, .2s top;
    transition: transform .2s, top .2s;
    transition: transform .2s, top .2s, -webkit-transform .2s
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: left .2s, -webkit-transform .2s;
    transition: left .2s, -webkit-transform .2s;
    -o-transition: .2s transform, .2s left;
    transition: transform .2s, left .2s;
    transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: right .2s, -webkit-transform .2s;
    transition: right .2s, -webkit-transform .2s;
    -o-transition: .2s transform, .2s right;
    transition: transform .2s, right .2s;
    transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: hsla(0, 0%, 100%, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
    animation: swiper-preloader-spin 1s steps(12) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

[data-simplebar] {
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit
}

.simplebar-mask {
    direction: inherit;
    overflow: hidden;
    width: auto !important;
    height: auto !important;
    z-index: 0
}

.simplebar-mask, .simplebar-offset {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    -webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    visibility: visible;
    overflow: auto;
    max-width: 100%;
    max-height: 100%
}

.simplebar-content:after, .simplebar-content:before {
    content: " ";
    display: table
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    z-index: -1
}

.simplebar-height-auto-observer, .simplebar-track {
    position: absolute;
    overflow: hidden;
    pointer-events: none
}

.simplebar-track {
    z-index: 1;
    right: 0;
    bottom: 0
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    width: 7px;
    min-height: 10px
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: #000;
    border-radius: 7px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity .2s linear
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
    opacity: .5;
    transition: opacity 0s linear
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 11px
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    height: 100%;
    left: 2px;
    right: 2px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0
}

.hs-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll
}

.tooltipped {
    position: relative
}

.tooltipped:after {
    font: normal normal 11px/1.5 Helvetica, arial, nimbussansl, liberationsans, freesans, clean, sans-serif, Segoe UI Emoji, Segoe UI Symbol;
    z-index: 1000000;
    padding: 5px 8px;
    content: attr(aria-label);
    text-align: center;
    white-space: pre;
    text-decoration: none;
    letter-spacing: normal;
    text-transform: none;
    word-wrap: break-word;
    color: #fff;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: rgba(0, 0, 0, .8);
    text-shadow: none;
    -webkit-font-smoothing: subpixel-antialiased
}

.tooltipped:after, .tooltipped:before {
    position: absolute;
    display: none;
    pointer-events: none
}

.tooltipped:before {
    z-index: 1000001;
    width: 0;
    height: 0;
    content: "";
    color: rgba(0, 0, 0, .8);
    border: 5px solid transparent
}

.tooltipped:active:after, .tooltipped:active:before, .tooltipped:focus:after, .tooltipped:focus:before, .tooltipped:hover:after, .tooltipped:hover:before {
    display: inline-block;
    text-decoration: none
}

.tooltipped-s:after {
    top: 100%;
    right: 50%;
    margin-top: 5px
}

.tooltipped-s:before {
    top: auto;
    right: 50%;
    bottom: -5px;
    margin-right: -5px;
    border-bottom-color: rgba(0, 0, 0, .8)
}

.tooltipped-s:after {
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%)
}

.simplebar-scrollbar {
    right: 8px;
    width: 6px
}

.simplebar-scrollbar:before {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #fcdbdf
}

.simplebar-track .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1
}

.simplebar-track.simplebar-vertical {
    width: 14px
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
    top: 8px;
    bottom: 8px
}

.simplebar-track.simplebar-horizontal {
    height: 14px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
    right: 8px;
    left: 8px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    top: 0;
    height: 6px
}

@font-face {
    font-family: Gilroy;
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/gilroy-bold-webfont.woff) format("woff2")
}

@font-face {
    font-family: Gilroy;
    font-weight: 600;
    font-style: normal;
    src: url(../fonts/gilroy-semibold-webfont.woff) format("woff2")
}

@font-face {
    font-family: Gilroy;
    font-weight: 500;
    font-style: normal;
    src: url(../fonts/gilroy-medium-webfont.woff) format("woff2")
}

@font-face {
    font-family: Gilroy;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/gilroy-regular-webfont.woff) format("woff2")
}

@font-face {
    font-family: Gilroy;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/gilroy-regular-webfont.woff) format("woff2")
}

body, html {
    margin: 0;
    padding: 0;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-family: Gilroy, sans-serif;
    font-size: 18px;
    scroll-behavior: smooth
}

@media screen and (max-width: 800px) {
    body, html {
        font-size: 16px
    }

    html {
        overflow-y: scroll !important;
    }
}

body {
    min-width: 320px;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 72px
}

body.v1 {
    padding-top: 110px
}

@media screen and (max-width: 1800px) {
    body.v1 {
        padding-top: 107px
    }
}

@media screen and (max-width: 1024px) {
    body {
        padding-top: 64px;
        overflow: hidden;
    }

    ul.nav.column.big > li.item._escape_up-wrapper > a.title.left-dot.md._escape_up._anim.soon > svg {
        width: 80px !important;
        height: 24px !important;
        top: 0px !important;
    }

    .contact-form {
        /*height: 100% !important;*/
    }

    form .control {
        margin-bottom: 5px !important;
    }
}

body main {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

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

button {
    cursor: pointer;
    -webkit-appearance: none;
    background-color: transparent;
    font-family: inherit;
    color: inherit;
    border: none
}

button:focus {
    outline: none
}

a:not(.link-image) span {
    display: inline-block;
    position: relative
}

a:not(.link-image) span:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

a:not(.link-image):hover span:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

a:not(.link-image) {
    color: inherit;
    text-decoration: none
}

a:not(.link-image).active .dot:after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

a:not(.link-image) .dot {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

a:not(.link-image) .dot:after {
    position: relative;
    bottom: -10px;
    content: "";
    margin: 0 auto;
    height: 6px;
    width: 6px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: rgb(102 100 233);
    -webkit-transition: opacity .7s;
    -o-transition: opacity .7s;
    transition: opacity .7s
}

a:not(.link-image) .dot.big:after {
    height: 10px;
    width: 10px
}

a:not(.link-image) .dot-icon-left {
    display: block
}

a:not(.link-image) .dot-icon-left .svg-icon {
    margin-right: 15px
}

@media screen and (max-width: 740px) {
    a:not(.link-image) .dot-icon-left .svg-icon {
        margin-right: 13px
    }
}

a:not(.link-image):hover .dot:after {
    opacity: 1
}

a:not(.link-image).left-dot .dot {
    margin-left: -8px
}

a:not(.link-image).left-dot span:after {
    display: none
}

a:not(.link-image).left-dot span {
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s
}

a:not(.link-image).left-dot:after {
    content: "";
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #6664e9;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

a:not(.link-image).left-dot:hover:after {
    color: #6664e9;
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
    opacity: 1
}

a:not(.link-image).left-dot:hover span {
    padding-left: .3em;
    -webkit-transition: padding-left .3s ease;
    -o-transition: padding-left .3s ease;
    transition: padding-left .3s ease
}

a.underline {
    text-decoration: underline
}

.svg-icons-symbols {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.svg-icon.arrow-right {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

a.link {
    color: inherit;
    text-decoration: none
}

h3:not([class]) {
    color: #6664e9;
    font-size: 12px;
    letter-spacing: .92px;
    font-weight: 700;
    line-height: 1.333
}

ul:not([class]) {
    padding: 0;
    left: 0;
    list-style: none
}

ul:not([class]) li {
    vertical-align: middle
}

ul:not([class]) li:before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    vertical-align: top;
    width: 4px;
    height: 4px;
    margin-top: .5em;
    background-color: #6664e9;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

q:not([class]) {
    display: inline-block;
    font-size: 260%;
    color: #6664e9;
    font-weight: 600;
    position: relative;
    margin: 40px -10%
}

@media screen and (max-width: 1024px) {
    q:not([class]) {
        font-size: 220%
    }
}

@media screen and (max-width: 740px) {
    q:not([class]) {
        font-size: 18px
    }
}

q:not([class]):before {
    content: open-quote;
    display: inline-block;
    position: absolute;
    right: 100%
}

q:not([class]):after {
    content: close-quote;
    display: inline-block
}

p:not([class]), ul:not([class]) {
    font-size: 18px;
    line-height: 1.333;
    font-weight: 500;
    color: black;
}

@media screen and (max-width: 740px) {
    p:not([class]), ul:not([class]) {
        font-size: 14px;
        line-height: 1.42
    }
}

::-moz-selection {
    color: #fff;
    background: rgb(102 100 233)
}

::selection {
    color: #fff;
    background: rgb(102 100 233)
}


html
::-webkit-scrollbar-track {
    -webkit-box-shadow: none !important;
    background-color: transparent;
}

html
::-webkit-scrollbar {
    width: 8px !important;
    background-color: transparent;
}

html
::-webkit-scrollbar-thumb {
    background-color: rgb(102 100 233);
    border-radius: 8px;
}

html {
    overflow-y: initial;
}


@media screen and (max-width: 740px) {
    .desktop {
        display: none
    }

    ::-moz-selection {
        color: #fff;
        background: rgb(102 100 233)
    }

    ::selection {
        color: #fff;
        background: rgb(102 100 233)
    }


    html
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: none !important;
        background-color: transparent;
    }

    html
    ::-webkit-scrollbar {
        width: 2px !important;
        background-color: transparent;
    }

    html
    ::-webkit-scrollbar-thumb {
        background-color: rgba(128, 128, 128, 0.63);
        border-radius: 8px;
    }
}

@media screen and (min-width: 740px) {
    .mobile {
        display: none
    }
}

textarea {
    overflow: auto;
    resize: none
}

.img {
    width: 100%;
    height: auto
}

.disable-scroll {
    height: 100vh;
    overflow: hidden
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

body.v1 .m-0 {
    margin: 0 auto
}

body.v1 .mb-0 {
    margin-bottom: 0
}

body.v1 .ml-0 {
    margin-left: 0
}

body.v1 .pr-0 {
    padding-right: 0
}

body.v1 .hide {
    display: none
}

body.v1 figure {
    padding: 0;
    margin: 0
}

body.v1 .offset-scroll-top {
    scroll-margin-top: 110px
}

@media screen and (min-width: 1921px) {
    body.v1 .pl-0-phone {
        padding-left: 0
    }
}

@media screen and (max-width: 740px) {
    body.v1 .show-phone {
        display: block
    }

    body.v1 .show-phone-flex {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    body.v1 .hide-phone {
        display: none
    }

    body.v1 .m-0-phone {
        margin: 0
    }

    body.v1 .pl-0-phone {
        padding-left: 0
    }
}

.container, .home-hero .container, .phone-stick .phone-wrapper .container {
    width: 928px;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 1024px) {
    .container, .home-hero .container, .phone-stick .phone-wrapper .container {
        width: 750px
    }
}

@media screen and (max-width: 800px) {
    .container, .home-hero .container, .phone-stick .phone-wrapper .container {
        width: 700px
    }
}

@media screen and (max-width: 740px) {
    .container, .home-hero .container, .phone-stick .phone-wrapper .container {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 16px
    }
}

.v1 .container {
    width: 100%;
    padding: 0 100px
}

@media screen and (max-width: 1800px) {
    .v1 .container {
        padding: 0 60px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .container {
        padding: 0 40px
    }
}

@media screen and (max-width: 800px) {
    .v1 .container {
        padding: 0 20px
    }
}

@media screen and (max-width: 800px) {
    .v1 .indent-wide-phone {
        margin-left: -20px;
        margin-right: -20px
    }
}

.v1 .content-wrapper {
    max-width: 1920px;
    width: 100%
}

.mb-container-xs {
    margin-bottom: 80px
}

.mt-container-xs {
    margin-top: 80px
}

.mb-container-s {
    margin-bottom: 104px
}

.mb-container {
    margin-bottom: 90px
}

.mb-container-l {
    margin-bottom: 200px
}

.mb-container-2x {
    margin-bottom: 280px
}

.mt-container {
    margin-top: 140px
}

.cust-li {
    max-width: 350px !important;
}

@media screen and (max-width: 1800px) {
    .mb-container-xs {
        margin-bottom: 68px
    }

    .mt-container-xs {
        margin-top: 68px
    }

    .mb-container-s {
        margin-bottom: 72px
    }

    .mb-container {
        margin-bottom: 104px
    }

    .mb-container-2x {
        margin-bottom: 208px
    }

    .mt-container {
        margin-top: 104px
    }

    .mb-container-l {
        margin-bottom: 140px
    }
}

@media (max-width: 1440px) {
    .mb-container-xs {
        margin-bottom: 48px
    }

    .mt-container-xs {
        margin-top: 48px
    }

    .mb-container {
        margin-bottom: 80px
    }

    .mb-container-2x {
        margin-bottom: 160px
    }

    .mt-container {
        margin-top: 80px
    }

    .mb-container-l {
        margin-bottom: 120px
    }
}

@media screen and (max-width: 1024px) {
    .mb-container {
        margin-bottom: 72px
    }

    .mt-container {
        margin-top: 72px
    }

    .mb-container-l {
        margin-bottom: 100px
    }
}

@media screen and (max-width: 740px) {
    .mb-container-xs {
        margin-bottom: 24px
    }

    .mt-container-xs {
        margin-top: 24px
    }

    .mb-container, .mb-container-2x, .mb-container-phone {
        margin-bottom: 104px
    }

    .mb-inner-phone {
        margin-bottom: 32px
    }

    .mb-container-xs-phone {
        margin-bottom: 40px
    }

    .mb-container-s-phone {
        margin-bottom: 56px
    }
}

.hr {
    display: block;
    width: 100%;
    border: 1px solid #dee1e6
}

.v1 .title {
    letter-spacing: -.02em
}

.about-page .col-left h3, .career-page .title, .career-page .title-black, .modal .modal-title, .press-room-page .col-left h3, .section-community .title, .section .section-title, .title {
    font-size: 48px;
    font-weight: 600;
    margin: 0
}

.about-page .col-left h3 h1, .about-page .col-left h3 h2, .career-page .title-black h1, .career-page .title-black h2, .career-page .title h1, .career-page .title h2, .modal .modal-title h1, .modal .modal-title h2, .press-room-page .col-left h3 h1, .press-room-page .col-left h3 h2, .section-community .title h1, .section-community .title h2, .section .section-title h1, .section .section-title h2, .title h1, .title h2 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

.about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
    font-size: 120px;
    line-height: 1.1;
    margin-bottom: .7em
}

.f-s-110 {
    font-size: 110px !important;
}

.first-letter:first-letter {
    font-size: 67px;
    font-weight: 600;
    color: #6664e9;
    letter-spacing: 3px;
    line-height: 1;
}

/*Tooltip / About us page */

.item-hints {
    margin: 15px auto 0;
}

.item-hints.odd {
    margin: 0px auto 15px;
}

.item-hints .hint {
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-hints .hint::before {
    /* //rotated squre */
    background-color: #fff;
    width: 8px;
    height: 8px;
    z-index: 2;
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.item-hints .hint-content.odd::before {
    bottom: auto !important;
    top: 0 !important;
}

.item-hints .hint-content.odd::after {
    bottom: auto !important;
    top: 0 !important;
    -webkit-transform: rotate(-211deg) !important;
    transform: rotate(-211deg) !important;
}

.item-hints .hint::after {
    /* //green glow */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 2px;
    height: 2px;
    z-index: 1;
    -webkit-box-shadow: 0 0 50px 30px rgba(102, 100, 233, 0.3);
    box-shadow: 0 0 50px 30px rgba(102, 100, 233, 0.3);
    -webkit-animation: home_hero_item_hints_glow 1.5s cubic-bezier(0.25, 0.1, 0.2, 1) infinite;
    animation: home_hero_item_hints_glow 1.5s cubic-bezier(0.25, 0.1, 0.2, 1) infinite;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

@-webkit-keyframes home_hero_item_hints_glow {
    0% {
        -webkit-box-shadow: 0 0 30px 5px #6664e9;
        box-shadow: 0 0 30px 5px #6664e9;
    }
    70% {
        -webkit-box-shadow: 0 0 70px 50px rgba(102, 100, 233, 0);
        box-shadow: 0 0 70px 50px rgba(102, 100, 233, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 50px rgba(102, 100, 233, 0);
        box-shadow: 0 0 0 50px rgba(102, 100, 233, 0);
    }
}

@keyframes home_hero_item_hints_glow {
    0% {
        -webkit-box-shadow: 0 0 30px 5px #6664e9;
        box-shadow: 0 0 30px 5px #6664e9;
    }
    70% {
        -webkit-box-shadow: 0 0 70px 50px rgba(102, 100, 233, 0);
        box-shadow: 0 0 70px 50px rgba(102, 100, 233, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 50px rgba(102, 100, 233, 0);
        box-shadow: 0 0 0 50px rgba(102, 100, 233, 0);
    }
}

.item-hints .hint-dot {
    z-index: 3;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: block;
    -webkit-transform: translate(-0%, -0%) scale(0.95);
    transform: translate(-0%, -0%) scale(0.95);
    -webkit-animation: home_hero_item_hints_border 2s linear infinite;
    animation: home_hero_item_hints_border 2s linear infinite;
    margin: auto;
}

@-webkit-keyframes home_hero_item_hints_border {
    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.6);
        -webkit-transform: translate(-50%, -50%) scale(0.95);
        transform: translate(-0%, -0%) scale(0.95);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-0%, -0%) scale(1);
    }
}

@keyframes home_hero_item_hints_border {
    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.6);
        -webkit-transform: translate(-50%, -50%) scale(0.95);
        transform: translate(-0%, -0%) scale(0.95);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-0%, -0%) scale(1);
    }
}

.item-hints .hint-radius {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -125px 0 0 -125px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: background-color, opacity, visibility,
    -webkit-transform;
    transition-property: background-color, opacity, visibility, -webkit-transform;
    transition-property: background-color, opacity, visibility, transform;
    transition-property: background-color, opacity, visibility, transform,
    -webkit-transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease, ease, ease,
    cubic-bezier(0.5, 0, 0, 1);
    transition-timing-function: ease, ease, ease, cubic-bezier(0.5, 0, 0, 1);
}

.item-hints .hint:hover .hint-radius {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.item-hints .hint[data-position="1"] .hint-content {
    /*bottom: 85px;*/
    width: 508px;
    top: -100px;
    left: 50%;
    margin-left: 228px;
}

.item-hints .hint-content {
    color: #fff;
    width: 508px;
    position: absolute;
    z-index: 5;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    color: #fff;
    visibility: hidden;
    pointer-events: none;
}

.item-hints .hint:hover .hint-content {
    color: #fff;
    width: 508px;
    position: absolute;
    z-index: 5;
    padding: 12px 0;
    opacity: 1;
    visibility: visible !important;
    -webkit-transition: opacity 0.7s ease, visibility 0.7s ease;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
    color: #fff;
    visibility: hidden;
    pointer-events: none;
}

.item-hints .hint-content::before {
    width: 0px;
    bottom: 0;
    left: 0;
    content: "";
    background-color: #b1b6e3;
    height: 1px;
    position: absolute;
    transition: width 0.4s;
}

.item-hints .hint:hover .hint-content::before {
    width: 560px;
    transition: width 0.4s;
}

.item-hints .hint-content::after {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: rotate(210deg);
    transform: rotate(211deg);
    bottom: 0;
    left: 0px;
    width: 230px;
    content: "";
    background-color: #b1b6e3;
    height: 1px;
    position: absolute;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.item-hints .hint:hover .hint-content::after {
    opacity: 1;
    visibility: visible;
}

.item-hints .hint[data-position="4"] .hint-content {
    bottom: -100px;
    top: auto;
    width: 508px;
    left: 50%;
    margin-left: 228px;
}

/*.tooltip {*/
/*    position: relative;*/
/*    background: #ecedf2;*/
/*    padding: 5px 12px;*/
/*    margin: 5px;*/
/*    font-size: 15px;*/
/*    border-radius: 100%;*/
/*    color: black;*/
/*}*/

/*.tooltip:before,*/
/*.tooltip:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    opacity: 0;*/
/*    transition: all 0.4s ease;*/
/*}*/

/*.tooltip:before {*/
/*    border-width: 10px 8px 0 8px;*/
/*    border-style: solid;*/
/*    border-color: #ecedf2 transparent transparent transparent;*/
/*    top: -15px;*/
/*    transform: translateY(20px);*/
/*}*/

/*.tooltip:after {*/
/*    content: attr(data-tooltip);*/
/*    background: #ecedf2;*/
/*    width: 474px;*/
/*    height: auto;*/
/*    font-size: 18px;*/
/*    z-index: 500;*/
/*    font-weight: 300;*/
/*    color: #010101;*/
/*    top: -75px;*/
/*    left: -10px;*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*    letter-spacing: 1px;*/
/*    transform: translateY(20px);*/
/*}*/

/*.tooltip:hover::before,*/
/*.tooltip:hover::after {*/
/*    opacity: 1;*/
/*    transform: translateY(-2px);*/
/*}*/

/*@keyframes shake {*/
/*    0% {*/
/*        transform: rotate(2deg);*/
/*    }*/
/*    50% {*/
/*        transform: rotate(-3deg);*/
/*    }*/
/*    70% {*/
/*        transform: rotate(3deg);*/
/*    }*/

/*    100% {*/
/*        transform: rotate(0deg);*/
/*    }*/
/*}*/

/*#anim:hover {*/
/*    animation: shake 500ms ease-in-out forwards;*/
/*}*/

@media screen and (max-width: 1800px) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 90px
    }
}

@media (max-width: 1440px) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 70px
    }
}

@media screen and (max-width: 740px) {
    .f-s-110, .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 320px) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 44px
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) and (orientation: landscape) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 44px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (1024px) and (1024px) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 120px
    }
}

@media screen and (min-width: 3000px) {
    .about-page .col-left h3.lg, .career-page .lg.title, .career-page .lg.title-black, .modal .lg.modal-title, .press-room-page .col-left h3.lg, .section-community .lg.title, .section .lg.section-title, .title.lg {
        font-size: 240px
    }
}

.about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
    font-size: 70px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 56px
    }
}

@media screen and (max-width: 1024px) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 48px
    }
}

@media screen and (max-width: 740px) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 40px
    }

    .main-nav-wrapper > ul > li > a {
        font-size: 28px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) and (orientation: landscape) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 40px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (1024px) and (1024px) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 80px
    }
}

@media screen and (min-width: 3000px) {
    .about-page .col-left h3.md, .career-page .md.title, .career-page .md.title-black, .modal .md.modal-title, .press-room-page .col-left h3.md, .section-community .md.title, .section .md.section-title, .title.md {
        font-size: 140px
    }
}

.about-page .col-left h3.sm, .career-page .sm.title, .career-page .sm.title-black, .modal .sm.modal-title, .press-room-page .col-left h3.sm, .section-community .sm.title, .section .sm.section-title, .title.sm {
    font-size: 30px;
    margin-bottom: 1.4em
}

.about-page .col-left h3.h5, .career-page .h5.title, .career-page .h5.title-black, .modal .h5.modal-title, .press-room-page .col-left h3.h5, .section-community .h5.title, .section .h5.section-title, .title.h5 {
    font-size: 60px;
    letter-spacing: -1px;
    line-height: 1.1
}

.about-page .col-left h3.body-1, .career-page .body-1.title, .career-page .body-1.title-black, .modal .body-1.modal-title, .press-room-page .col-left h3.body-1, .section-community .body-1.title, .section .body-1.section-title, .title.body-1 {
    font-size: 20px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .about-page .col-left h3.body-1, .career-page .body-1.title, .career-page .body-1.title-black, .modal .body-1.modal-title, .press-room-page .col-left h3.body-1, .section-community .body-1.title, .section .body-1.section-title, .title.body-1 {
        font-size: 16px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (1024px) and (1024px) {
    .about-page .col-left h3.body-1, .career-page .body-1.title, .career-page .body-1.title-black, .modal .body-1.modal-title, .press-room-page .col-left h3.body-1, .section-community .body-1.title, .section .body-1.section-title, .title.body-1 {
        font-size: 24px
    }
}

.about-page .col-left h3.body-2, .career-page .body-2.title, .career-page .body-2.title-black, .modal .body-2.modal-title, .press-room-page .col-left h3.body-2, .section-community .body-2.title, .section .body-2.section-title, .title.body-2 {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400
}

@media screen and (max-width: 1800px) {
    .about-page .col-left h3.body-2, .career-page .body-2.title, .career-page .body-2.title-black, .modal .body-2.modal-title, .press-room-page .col-left h3.body-2, .section-community .body-2.title, .section .body-2.section-title, .title.body-2 {
        font-size: 16px
    }
}

.about-page .col-left h3.body-3, .career-page .body-3.title, .career-page .body-3.title-black, .modal .body-3.modal-title, .press-room-page .col-left h3.body-3, .section-community .body-3.title, .section .body-3.section-title, .title.body-3 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400
}

.about-page .col-left h3.body-4, .career-page .body-4.title, .career-page .body-4.title-black, .modal .body-4.modal-title, .press-room-page .col-left h3.body-4, .section-community .body-4.title, .section .body-4.section-title, .title.body-4 {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400
}

.about-page .col-left h3.body-5, .career-page .body-5.title, .career-page .body-5.title-black, .modal .body-5.modal-title, .press-room-page .col-left h3.body-5, .section-community .body-5.title, .section .body-5.section-title, .title.body-5 {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 400
}

@media screen and (max-width: 1024px) {
    .about-page .col-left h3, .career-page .title, .career-page .title-black, .modal .modal-title, .press-room-page .col-left h3, .section-community .title, .section .section-title, .title {
        font-size: 39px
    }
}

@media screen and (max-width: 800px) {
    .about-page .col-left h3, .career-page .title, .career-page .title-black, .modal .modal-title, .press-room-page .col-left h3, .section-community .title, .section .section-title, .title {
        font-size: 26px
    }
}

.secondary-color {
    color: #b1b6e3
}

.secondary-color-2 {
    color: #6c727a
}

.h2 {
    font-size: 120px;
    line-height: 112%;
    margin-bottom: .7em
}

@media screen and (max-width: 1800px) {
    .h2 {
        font-size: 90px
    }
}

@media (max-width: 1440px) {
    .h2 {
        font-size: 70px
    }
}

@media screen and (max-width: 1024px) {
    .h2 {
        font-size: 70px
    }
}

@media screen and (max-width: 800px) {
    .h2 {
        font-size: 60px
    }
}

@media screen and (max-width: 740px) {
    .h2 {
        font-size: 32px
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) and (orientation: landscape) {
    .h2 {
        font-size: 44px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (1024px) and (1024px) {
    .h2 {
        font-size: 120px
    }
}

@media screen and (min-width: 3000px) {
    .h2 {
        font-size: 240px
    }
}

.h3 {
    font-size: 70px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .h3 {
        font-size: 60px
    }
}

@media screen and (max-width: 1024px) {
    .h3 {
        font-size: 56px
    }
}

@media screen and (max-width: 800px) {
    .h3 {
        font-size: 44px
    }
}

@media screen and (max-width: 740px) {
    .h3 {
        font-size: 40px
    }
}

.h4 {
    font-size: 50px;
    letter-spacing: -1px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .h4 {
        font-size: 44px
    }
}

@media screen and (max-width: 800px) {
    .h4 {
        font-size: 40px
    }
}

@media screen and (max-width: 740px) {
    .h4 {
        font-size: 24px
    }
}

@media screen and (max-width: 320px) {
    .h4 {
        font-size: 25px
    }
}

.h6 {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .h6 {
        font-size: 30px
    }
}

@media screen and (max-width: 1024px) {
    .h6 {
        font-size: 24px
    }
}

@media screen and (max-width: 800px) {
    .h6 {
        font-size: 22px
    }
}

.subhead-1 {
    font-size: 30px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .subhead-1 {
        font-size: 24px
    }
}

@media screen and (max-width: 1024px) {
    .subhead-1 {
        font-size: 20px
    }
}

ul.col-wrapper._fade-in._anim.positions-list.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 740px) {
    .subhead-1 {
        font-size: 18px !important;
    }

    .contacts .main .container {
        margin: auto !important;
    }

    .subhead-1 > span {
        font-size: 18px !important;
    }

    .f-90 {
        font-size: 36px !important;
        line-height: 110%;
    }

    .f-95 {
        font-size: 36px !important;
    }
}

.subhead-2, .subhead-2-nested p, .subhead-2-nested ul {
    font-size: 24px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .subhead-2, .subhead-2-nested p, .subhead-2-nested ul {
        font-size: 18px
    }
}

@media screen and (max-width: 740px) {
    .subhead-2, .subhead-2-nested p, .subhead-2-nested ul {
        font-size: 16px
    }
}

@media screen and (min-width: 3000px) {
    .subhead-2, .subhead-2-nested p, .subhead-2-nested ul {
        font-size: 48px
    }
}

.body-1 {
    font-size: 20px;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .body-1 {
        font-size: 16px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
    .body-1 {
        font-size: 24px
    }
}

.body-2 {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400
}

@media screen and (max-width: 1800px) {
    .body-2 {
        font-size: 16px
    }
}

@media screen and (max-width: 1440px) {
    .body-2 {
        font-size: 14px
    }
}

.body-3 {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400
}

@media screen and (max-width: 1440px) {
    .body-3 {
        font-size: 12px
    }
}

.body-4 {
    font-size: 16px
}

.body-4, .body-5 {
    line-height: 1.1;
    font-weight: 400
}

.body-5, .f-caption-1 {
    font-size: 14px
}

@media screen and (max-width: 1800px) {
    .f-caption-1 {
        font-size: 11px
    }
}

.f-caption-2 {
    font-size: 11px;
    line-height: 1.2
}

@media screen and (max-width: 1800px) {
    .f-caption-2 {
        font-size: 9px
    }
}

.f-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1
}

@media screen and (max-width: 1800px) {
    .f-button {
        font-size: 16px
    }
}

@media screen and (max-width: 1024px) {
    .f-button {
        font-size: 16px
    }
}

.lh-130 {
    line-height: 1.3
}

.lh-140 {
    line-height: 1.4
}

.lh-150 {
    line-height: 1.5
}

.lh-160 {
    line-height: 1.6
}

.lh-180, .lh-180-nested p, .lh-180-nested ul {
    line-height: 180%
}

.fw-400 {
    font-weight: 400
}

.fw-500 {
    font-weight: 500
}

.m-title-0, .title.m-title-0 {
    margin-bottom: 0
}

.mb-title-s, .title.mb-title-s {
    margin-bottom: 48px
}

.m-title, .title.m-title {
    margin-bottom: 56px
}

@media screen and (max-width: 1800px) {
    .m-title, .title.m-title {
        margin-bottom: 48px
    }
}

@media screen and (max-width: 1024px) {
    .m-title, .title.m-title {
        margin-bottom: 40px
    }
}

.m-title-l, .title.m-title-l {
    margin-bottom: 72px
}

@media screen and (max-width: 1800px) {
    .m-title-l, .title.m-title-l {
        margin-bottom: 56px
    }
}

@media (max-width: 1440px) {
    .m-title-l, .title.m-title-l {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 800px) {
    .m-title-l, .title.m-title-l {
        margin-bottom: 36px
    }
}

@media screen and (max-width: 740px) {
    .m-title-l, .title.m-title-l {
        margin-bottom: 24px
    }
}

@media screen and (max-width: 1024px) {
    .mb-title-s, .title.mb-title-s {
        margin-bottom: 20px
    }
}

@media screen and (max-width: 800px) {
    .m-title-t-sm {
        margin-bottom: 30px
    }
}

@media screen and (max-width: 740px) {
    .mb-title-s-phone {
        margin-bottom: 16px
    }

    .m-title-phone, .title.m-title-phone {
        margin-bottom: 32px
    }

    .lh-140-phone {
        line-height: 1.4
    }
}

.title-indent-left {
    margin-left: -.05em
}

.text-capitalize {
    text-transform: capitalize
}

.text-uppercase {
    text-transform: uppercase
}

.section {
    width: 100%;
    background-color: #fff;
    padding: 81px 0
}

@media screen and (max-width: 740px) {
    .section {
        padding: 64px 0
    }
}

.section .section-title {
    line-height: 1;
    color: #000;
    margin-bottom: 24px
}

.section .section-title h1, .section .section-title h2 {
    line-height: inherit;
    color: inherit;
    margin: 0
}

.section .section-text {
    color: #000;
    font-weight: 500;
    line-height: 1.333em;
    width: 448px;
    margin-bottom: 36px
}

@media screen and (max-width: 800px) {
    .section .section-text {
        width: 100%
    }
}

@media screen and (max-width: 740px) {
    .section .section-text {
        margin-bottom: 27px
    }
}

.section .section-list {
    color: #000;
    font-weight: 700;
    list-style: none;
    padding: 0;
    margin: 0 0 52px;
    font-size: 14px
}

@media screen and (max-width: 740px) {
    .section .section-list {
        font-size: 13px;
        margin-bottom: 32px
    }
}

.section .section-list li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.section .section-list li .icon {
    margin-right: 16px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.section .section-phone {
    width: 27.5%;
    margin-left: auto;
    margin-right: 16px;
    position: relative
}

@media screen and (max-width: 1024px) {
    .section .section-phone {
        margin-right: 0
    }
}

@media screen and (max-width: 800px) {
    .section .section-phone {
        width: 34.5%
    }
}

@media screen and (min-width: 740px) {
    .section .section-phone {
        background-image: none !important
    }
}

@media screen and (max-width: 740px) {
    .section .section-phone {
        width: 70vmin;
        margin-left: 0;
        margin-bottom: 27px
    }
}

.section .left-info {
    width: 54%
}

@media screen and (max-width: 740px) {
    .section .left-info {
        width: 100%
    }
}

.section .right-info {
    margin-left: 51%
}

@media screen and (max-width: 740px) {
    .section .right-info {
        margin: 0;
        width: 100%;
        background-color: #fff
    }
}

.section .info-logo {
    margin-bottom: 36px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    height: 50px
}

@media screen and (max-width: 1024px) {
    .section .info-logo {
        margin-bottom: 26px
    }
}

@media screen and (max-width: 740px) {
    .section .info-logo {
        height: 40px
    }
}

.section .left-image {
    width: -webkit-calc(100% - 448px);
    width: calc(100% - 448px);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media screen and (max-width: 740px) {
    .section .left-image {
        width: 100%
    }
}

.section .left-image .image {
    width: 100%
}

.section .left-image ~ .right-info {
    margin-left: 0
}

@media screen and (max-width: 740px) {
    .section-support {
        padding-top: 47px
    }

    .section-support .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

.section-support .section-text {
    width: 448px;
    margin-bottom: 53px
}

@media screen and (max-width: 1024px) {
    .section-support .section-text {
        width: 100%
    }
}

@media screen and (max-width: 740px) {
    .section-support .section-text {
        margin-bottom: 21px
    }
}

.section-support .section-list {
    margin-bottom: 56px
}

@media screen and (max-width: 740px) {
    .section-support .section-list {
        margin-bottom: 32px
    }
}

@media screen and (max-width: 800px) {
    .section-support .section-title {
        width: 90%
    }
}

.section-first {
    padding: 107px 0
}

@media screen and (max-width: 740px) {
    .section-first {
        padding: 64px 0 45px
    }
}

.button {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    background-color: currentColor;
    padding: 17px 35px 15px;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    -webkit-transition: -webkit-box-shadow .2s;
    transition: -webkit-box-shadow .2s;
    -o-transition: box-shadow .2s;
    transition: box-shadow .2s;
    transition: box-shadow .2s, -webkit-box-shadow .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 192px;
    text-align: center
}

.button.hide {
    display: none
}

@media screen and (max-width: 740px) {
    .button {
        font-size: 12px
    }
}

.button p {
    font-size: 1em;
    padding: 0;
    margin: 0;
    font-weight: inherit
}

.button span {
    color: #fff
}

.button span:after {
    display: none !important
}

.button:hover {
    -webkit-box-shadow: 0 0 0 3px currentColor;
    box-shadow: 0 0 0 3px currentColor
}

.button-result {
    background-color: #343434;
    margin-left: auto;
    margin-righT: auto
}

.button-result:hover {
    -webkit-box-shadow: none;
    box-shadow: none
}

.button-result:not(.show) {
    display: none
}

.button-result.light {
    background-color: #f4f4f4;
    color: #131415
}

.button-result.light span {
    color: #131415
}

.button-red {
    display: inline-block;
    font-size: 14px;
    color: #6664e9 !important;
    max-width: 132px;
    width: 100%;
    border: 1px solid #6664e9;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    text-transform: uppercase;
    background-color: #fff;
    padding: 11px 20px;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-box-shadow: 0 0 0 0 currentColor;
    box-shadow: 0 0 0 0 currentColor;
    text-align: center;
    line-height: 16px
}

.button-red span:after {
    content: none !important
}

.button-circle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 31;
    height: 70px;
    width: 70px;
    margin: auto;
    border: 1px solid #000;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

@media screen and (max-width: 1800px) {
    .button-circle {
        height: 56px;
        width: 56px
    }
}

.button-circle-modal-career {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 31;
    height: 70px;
    width: 70px;
    margin: auto;
    border: 1px solid #000;
    -webkit-border-radius: 50%;
    border-radius: 50%
}

@media screen and (max-width: 1800px) {
    .button-circle-modal-career {
        height: 56px;
        width: 56px
    }
}

.btn-lg {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 221px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 62px 0 100px;
    color: #fff;
    cursor: pointer;
    border-top: 1px solid hsla(0, 0%, 100%, .5);
    background: transparent
}

.btn-lg__title {
    line-height: 1.1;
    z-index: 3
}

.btn-lg ._escape_up {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

@media screen and (min-width: 3000px) {
    .btn-lg .btn-arrow {
        width: 142px;
        height: 142px
    }

    .btn-lg .btn-arrow .svg-icon {
        width: 50px;
        height: 50px
    }
}

@media screen and (max-width: 1800px) {
    .btn-lg {
        padding-left: 60px;
        padding-right: 60px;
        min-height: 176px
    }

    .btn-lg .btn-arrow {
        width: 56px;
        height: 56px
    }

    .btn-lg .btn-arrow .svg-icon {
        width: 20px;
        height: 20px
    }
}

@media screen and (max-width: 1200px) {
    .btn-lg {
        min-height: 156px
    }
}

@media screen and (max-width: 1024px) {
    .btn-lg {
        min-height: 156px;
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width: 800px) {
    .btn-lg {
        min-height: 136px
    }
}

@media screen and (max-width: 740px) {
    .btn-lg {
        min-height: 120px;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    .btn-lg {
        min-height: 100px
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
    .btn-lg {
        min-height: 100px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
    .btn-lg {
        min-height: 172px
    }
}

@media screen and (min-width: 3000px) {
    .btn-lg {
        min-height: 442px
    }
}

.video {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover
}

.btn-arrow, .video {
    background-color: #fff
}

.btn-arrow {
    width: 71px;
    height: 71px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-arrow .svg-icon {
    fill: #1f1f1f
}

.video-btn {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: -1
}

.video-btn, .video-btn .btn-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s
}

.video-btn .btn-wrapper {
    min-width: 170px;
    border: 1px solid #fff;
    -webkit-backdrop-filter: blur(1.10526px);
    backdrop-filter: blur(1.10526px);
    -webkit-border-radius: 14px;
    border-radius: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer
}

.video-btn .btn-wrapper .triangle {
    margin: 15px 0 70px;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s
}

.video-btn .btn-wrapper .label {
    max-width: 135px;
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (1024px) and (1024px) {
    .video-btn .video-btn {
        opacity: 0;
        z-index: 1;
        min-height: 123px;
        top: auto;
        left: auto;
        right: 40px;
        bottom: 40px;
        -webkit-animation: fade-in-anim .5s forwards;
        animation: fade-in-anim .5s forwards;
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s
    }

    .video-btn .video-btn .btn-wrapper {
        min-width: auto;
        padding: 15px 10px;
        -webkit-border-radius: 9px;
        border-radius: 9px
    }

    .video-btn .video-btn .btn-wrapper .triangle {
        margin: 8px 0 40px
    }

    .video-btn .video-btn .btn-wrapper .triangle svg {
        width: 23px;
        height: 18px
    }

    .video-btn .video-btn .btn-wrapper .label {
        font-size: 14px
    }
}

.btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    min-width: 269px;
    padding: 22px 40px;
    border: 2px solid #090a0a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.theme-light .btn {
    border-color: #090a0a
}

.theme-dark .btn {
    border-color: #fff
}

.btn:hover {
    color: #fff
}

.btn:hover, .theme-light .btn:hover {
    background: #090a0a
}

.theme-dark .btn:hover {
    background: #fff
}

.theme-light .btn:hover {
    color: #fff
}

.theme-dark .btn:hover {
    color: #090a0a
}

.btn.btn-red {
    cursor: pointer;
    border: none;
    color: #fff;
    background-color: #6664e9
}

.btn.btn-red:hover {
    background: #cf5481
}

.btn .btn-text {
    text-transform: capitalize
}

.btn.btn-loading {
    pointer-events: none
}

.btn.btn-loading .btn-text {
    visibility: hidden;
    opacity: 0
}

.btn.btn-loading:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid #fff;
    border-left-color: transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: button-loading-spinner 1s linear infinite;
    animation: button-loading-spinner 1s linear infinite
}

.btn.hide {
    display: none
}

@media screen and (max-width: 1800px) {
    .btn {
        padding-top: 18px;
        padding-bottom: 18px;
        min-height: 56px;
        min-width: 204px
    }
}

@media screen and (max-width: 1024px) {
    .btn {
        min-height: 48px;
        min-width: 219px
    }
}

@media screen and (max-width: 740px) {
    .btn {
        padding: 19px 32px;
        min-width: 227px
    }
}

.slider-nav-btn {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #000
}

.slider-nav-btn[aria-disabled=true] {
    border-color: #b1b6e3;
    pointer-events: none
}

.slider-nav-btn[aria-disabled=true].prev:after {
    background-image: url(../content-images/header/arrow-down-gray-small.svg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.slider-nav-btn[aria-disabled=true].next:after {
    background-image: url(../content-images/header/arrow-down-gray-small.svg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.slider-nav-btn.type-2 {
    border: none;
    background: hsla(0, 0%, 100%, .4)
}

.slider-nav-btn:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

@media screen and (max-width: 800px) {
    .slider-nav-btn:after {
        width: 20px;
        height: 20px
    }
}

.slider-nav-btn.prev:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.slider-nav-btn.next:after, .slider-nav-btn.prev:after {
    background-image: url(../content-images/header/arrow-down-small.svg)
}

.slider-nav-btn.next:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media screen and (max-width: 1800px) {
    .slider-nav-btn {
        width: 56px;
        height: 56px
    }
}

@media screen and (max-width: 800px) {
    .slider-nav-btn {
        width: 48px;
        height: 48px
    }
}

.slider-loop-btn .slider-nav-btn[aria-disabled=true] {
    border: 1px solid #000;
    pointer-events: none
}

.slider-loop-btn .slider-nav-btn.prev:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.slider-loop-btn .slider-nav-btn.next:after, .slider-loop-btn .slider-nav-btn.prev:after {
    background-image: url(../content-images/header/arrow-down-small.svg);
    pointer-events: none
}

.slider-loop-btn .slider-nav-btn.next:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.sticky-btn {
    position: -webkit-sticky;
    position: sticky;
    top: 185px;
    left: 0
}

.back-link {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content
}

.phone-picture {
    width: 100%;
    height: 0;
    padding-top: 202%;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%
}

._circle-in {
    -webkit-transition: -webkit-clip-path .7s;
    transition: -webkit-clip-path .7s;
    -o-transition: clip-path .7s;
    transition: clip-path .7s;
    transition: clip-path .7s, -webkit-clip-path .7s
}

._circle-in[data-intersection] {
    -webkit-clip-path: circle(140% at 70% 100%);
    clip-path: circle(140% at 70% 100%)
}

._fade-in {
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

._fade-in[data-intersection] {
    -webkit-animation: fade-in-anim .6s forwards;
    animation: fade-in-anim .6s forwards
}

._fade-in-left {
    -webkit-transition: opacity .4s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    transition: opacity .4s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    -o-transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s;
    transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s;
    transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

._fade-in-left[data-intersection] {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

._fade-in-right {
    -webkit-transition: opacity .4s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    transition: opacity .4s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    -o-transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s;
    transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s;
    transition: clip-path .6s, opacity .4s, transform .5s, box-shadow .3s, -webkit-clip-path .6s, -webkit-transform .5s, -webkit-box-shadow .3s;
    -webkit-transform: translateY(10%);
    -ms-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0
}

._fade-in-right[data-intersection] {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

._scale-up {
    -webkit-animation: scale-up 1s ease forwards;
    animation: scale-up 1s ease forwards
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

._scale-up-center {
    -webkit-animation: scale-up-center 2s forwards;
    animation: scale-up-center 2s forwards;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0)
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0)
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1)
    }
}

._anim-scale {
    position: relative;
    overflow: hidden
}

._anim-scale:hover ._anim-start:before {
    width: 200vw;
    height: 200vw
}

._anim-scale:hover ._anim-outer {
    color: #6664e9
}

._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #6664e9;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

._anim-scale ._anim-outer, ._anim-scale .icon, ._anim-scale .svg-icon {
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s
}

._anim-scale ._anim-start {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

._anim-scale ._anim-start .icon {
    position: relative;
    z-index: 2
}

._anim-scale ._anim-start:before {
    position: absolute;
    z-index: 1;
    display: block;
    content: "";
    width: 71px;
    height: 71px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    pointer-events: none;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

@media screen and (max-width: 1800px) {
    ._anim-scale ._anim-start:before {
        width: 56px;
        height: 56px
    }
}

._slide-bottom {
    -webkit-animation: slide-bottom .5s forwards;
    animation: slide-bottom .5s forwards
}

@-webkit-keyframes slide-bottom {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-bottom {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

._slide-top {
    -webkit-animation: slide-top .5s forwards;
    animation: slide-top .5s forwards
}

@-webkit-keyframes slide-top {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-top {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

._slide-bottom-to-top {
    -webkit-animation: slide-up 1s forwards;
    animation: slide-up 1s forwards;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

@-webkit-keyframes slide-bottom-to-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-bottom-to-top {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

._slide-bottom-to-top-small {
    opacity: 0;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%)
}

._slide-bottom-to-top-small[data-intersection] {
    -webkit-animation: slide-bottom-to-top-small 1s ease-out forwards;
    animation: slide-bottom-to-top-small 1s ease-out forwards
}

@-webkit-keyframes slide-bottom-to-top-small {
    0% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0
    }
    25% {
        opacity: 1
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes slide-bottom-to-top-small {
    0% {
        -webkit-transform: translateY(40%);
        transform: translateY(40%);
        opacity: 0
    }
    25% {
        opacity: 1
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

._slide-top-to-bottom {
    -webkit-animation: slide-top-to-bottom 1s forwards;
    animation: slide-top-to-bottom 1s forwards
}

@-webkit-keyframes slide-top-to-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        display: none
    }
}

@keyframes slide-top-to-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        display: none
    }
}

@-webkit-keyframes slide-bottom-to-top-negative {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slide-bottom-to-top-negative {
    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@-webkit-keyframes fade-in-anim {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-anim {
    0% {
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes fade-in-anim-reverse {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes fade-in-anim-reverse {
    0% {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes slide-hide-in {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }
}

@keyframes slide-hide-in {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        opacity: 0
    }
}

.fade-in, .fade-in-anim[data-intersection] {
    -webkit-animation: fadeIn 1s ease forwards;
    animation: fadeIn 1s ease forwards
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fade-out {
    -webkit-animation: fadeOut 1s ease;
    animation: fadeOut 1s ease
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

._slide-in_bottom {
    -webkit-animation: slide-in-bottom .6s;
    animation: slide-in-bottom .6s
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        opacity: 1
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        transform: translateY(1000px) scaleY(2.5) scaleX(.2);
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        opacity: 0
    }
    to {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
        transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        opacity: 1
    }
}

._escape_up-wrapper {
    display: block;
    overflow: hidden
}

._escape_up {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up 1s linear forwards;
    animation: up 1s linear forwards
}

._escape_up__linear {
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear
}

._escape_up__ease_in_out {
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out
}

._escape_up__ease_in {
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in
}

._escape_up__ease_out {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

._escape_up_ease {
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease
}

._escape_up-em {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up-em 1s linear forwards;
    animation: up-em 1s linear forwards
}

._escape_up-wrapper[data-intersection] ._escape_up-anim {
    -webkit-animation: up 1s ease-out forwards;
    animation: up 1s ease-out forwards
}

._escape_up-wrapper[data-intersection]:nth-child(2) ._escape_up-anim {
    -webkit-animation-delay: .06s;
    animation-delay: .06s
}

._escape_up-wrapper[data-intersection]:nth-child(3) ._escape_up-anim {
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

._escape_up-anim {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

@-webkit-keyframes up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes up {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes up-em {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(-.06em);
        transform: translateY(-.06em)
    }
}

@keyframes up-em {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
    to {
        -webkit-transform: translateY(-.06em);
        transform: translateY(-.06em)
    }
}

._escape_up-fade-in {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up-fade-in .5s linear forwards;
    animation: up-fade-in .5s linear forwards
}

@-webkit-keyframes up-fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes up-fade-in {
    0% {
        opacity: 0
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes start-home__video_step {
    0% {
        width: 100%
    }
    to {
        width: 54%
    }
}

@keyframes start-home__video_step {
    0% {
        width: 100%
    }
    to {
        width: 54%
    }
}

@-webkit-keyframes start-home__section_step {
    0% {
        margin-left: -46%
    }
    to {
        margin-left: 0
    }
}

@keyframes start-home__section_step {
    0% {
        margin-left: -46%
    }
    to {
        margin-left: 0
    }
}

@-webkit-keyframes button-loading-spinner {
    0% {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes button-loading-spinner {
    0% {
        -webkit-transform: rotate(0turn);
        transform: rotate(0turn)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.anim-step-1 {
    -webkit-animation-delay: .5s !important;
    animation-delay: .5s !important
}

.anim-step-2 {
    -webkit-animation-delay: 1s !important;
    animation-delay: 1s !important
}

.anim-step-3 {
    -webkit-animation-delay: 1.5s !important;
    animation-delay: 1.5s !important
}

.text-black, .text-black-nested p, .text-black-nested strong, .text-black-nested ul {
    color: #000 !important
}

.bg-pink-light {
    background-color: #f9f9fd
}

.bg-none {
    background: none
}

.bg-orange-light {
    background: #fdf5dd
}

.bg-orange {
    background: #d99c4d
}

.bg-green-light {
    background: #d6efea
}

.bg-green {
    background: #73ba6f
}

.bg-pink {
    background: #f7dcdf
}

.bg-blue-light {
    background: #c9e1fc
}

.bg-blue {
    background: #38a3e3
}

.bg-red-2 {
    background: #e24557
}

.bg-violet {
    background: #a571fa
}

.list-icons, .list-img-text, .list-style-none {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.list-style-circle, .list-style-circle-nested ul {
    padding: 0;
    list-style-type: none;
    position: relative
}

.list-style-circle-nested ul li, .list-style-circle li {
    text-align: left;
    padding-left: 36px;
    position: relative
}

.list-style-circle-nested ul li:before, .list-style-circle li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: .1em;
    left: 0;
    width: 12px;
    height: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: transparent
}

@media (max-width: 1440px) {
    .list-style-circle-nested ul li, .list-style-circle li {
        padding-left: 27px
    }

    .list-style-circle-nested ul li:before, .list-style-circle li:before {
        border-width: 1.08px;
        width: 9px;
        height: 9px
    }
}

@media screen and (max-width: 1024px) {
    .list-style-circle-nested ul li, .list-style-circle li {
        padding-left: 19px
    }

    .list-style-circle-nested ul li:before, .list-style-circle li:before {
        width: 6px;
        height: 6px
    }
}

.list-group-info .list-group-item {
    padding-bottom: 5%;
    border-bottom: .8px solid #dee1e6
}

.list-group-info .list-group-item:not(:first-child) {
    padding-top: 25px
}

.list-group-info .list-group-item .title {
    margin-bottom: 16px
}

@media screen and (max-width: 1800px) {
    .list-group-info .list-group-item {
        padding-bottom: 16px
    }
}

.list-group-text {
    margin-bottom: 0
}

.list-group-text .list-group-item {
    margin-bottom: 1.2em;
    padding-bottom: calc(1.2em - 5px);
    border-bottom: 1px solid #dee1e6
}

.list-group-text .sub-title {
    display: block
}

.list-group-text.list-group-text_columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: wrap;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

@media screen and (max-width: 740px) {
    .list-group-text.list-group-text_columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.list-group-text.list-group-text_columns .list-group-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 47%;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%
}

@media (max-width: 1440px) {
    .list-group-text.list-group-text_columns .list-group-item {
        -webkit-flex-basis: 43.5%;
        -ms-flex-preferred-size: 43.5%;
        flex-basis: 43.5%
    }
}

.list-group-text.list-group-text_columns .list-group-item:nth-child(odd) {
    margin-right: 50px
}

@media screen and (max-width: 1800px) {
    .list-group-text.list-group-text_columns .list-group-item:nth-child(odd) {
        margin-right: 35px
    }
}

@media screen and (max-width: 740px) {
    .list-group-text.list-group-text_columns .list-group-item:nth-child(odd) {
        margin-right: 0
    }
}

.list-group-text.list-group-text_columns .list-group-item:before {
    top: .35em
}

@media screen and (max-width: 1800px) {
    .list-group-text.list-group-text_columns .list-group-item:before {
        top: .3em
    }
}

@media screen and (max-width: 1024px) {
    .list-group-text.list-group-text_columns .list-group-item:before {
        top: .35em
    }
}

@media screen and (max-width: 740px) {
    .list-group-text.list-group-text_columns .list-group-item {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-bottom: 12px
    }
}

.list-img-text .list-img-text-item {
    padding: 56px 0;
    border-bottom: 1px solid #dee1e6
}

.list-img-text .list-img-text-item:first-child {
    padding-top: 0
}

@media screen and (max-width: 1800px) {
    .list-img-text .list-img-text-item {
        padding: 50px 0
    }
}

@media screen and (max-width: 1024px) {
    .list-img-text .list-img-text-item {
        padding: 32px 0
    }
}

.list-img-text .img-text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .list-img-text .img-text-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.list-img-text .list-title {
    margin-top: 0;
    margin-bottom: .4em
}

.list-img-text .list-text {
    margin: 0
}

.list-img-text .list-item-img {
    width: 197px;
    height: 193px;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 56px
}

@media screen and (max-width: 1800px) {
    .list-img-text .list-item-img {
        width: 148px;
        height: 145px;
        margin-right: 48px
    }
}

@media screen and (max-width: 1024px) {
    .list-img-text .list-item-img {
        width: 92px;
        height: 90px;
        margin-right: 35px
    }
}

@media screen and (max-width: 740px) {
    .list-img-text .list-item-img {
        margin-right: 20px
    }
}

.list-icons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 740px) {
    .list-icons {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly
    }
}

.list-icons .list-item-icon {
    padding: 50px 60px;
    border: 1px solid #dee1e6;
    margin: 0 20px 20px 0
}

@media screen and (max-width: 1024px) {
    .list-icons .list-item-icon {
        padding: 35px 52px
    }

    .list-icons .list-item-icon .img {
        width: 136px
    }
}

@media screen and (max-width: 800px) {
    .list-icons .list-item-icon {
        padding: 25px 30px
    }

    .list-icons .list-item-icon .img {
        width: 97px
    }
}

@media screen and (max-width: 740px) {
    .list-icons .list-item-icon {
        margin: 0 0 20px
    }
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    position: relative
}

.col-wrapper {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.col, .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.flex-justify-sb {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.flex-justify-sa {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.flex-justify-fe {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.flex-justify-fs {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.flex-align-self-end {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.flex-align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.flex-align-flex-start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.col-sm {
    -webkit-flex-basis: 42%;
    -ms-flex-preferred-size: 42%;
    flex-basis: 42%
}

.col-sm .inner-text {
    max-width: 70%
}

.col-sm-1 {
    -webkit-flex-basis: 46.4%;
    -ms-flex-preferred-size: 46.4%;
    flex-basis: 46.4%
}

.col-m {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.col-l {
    -webkit-flex-basis: 58%;
    -ms-flex-preferred-size: 58%;
    flex-basis: 58%
}

.col-l-1 {
    max-width: 100%;
    -webkit-flex-basis: 53.6%;
    -ms-flex-preferred-size: 53.6%;
    flex-basis: 53.6%
}

@media screen and (max-width: 1024px) {
    .col-m-table {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }
}

.bg-img {
    height: 100%;
    width: 100%;
    background-position: 50%
}

.col-inner-l, .col-inner-sm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.inner-75 {
    max-width: 75%
}

.inner-text-m {
    max-width: 50%
}

@media screen and (max-width: 1800px) {
    .inner-text-m {
        max-width: 55%
    }
}

@media (max-width: 1440px) {
    .inner-text-m {
        max-width: 65%
    }
}

@media screen and (max-width: 1024px) {
    .inner-text-m {
        max-width: 75%
    }
}

@media screen and (max-width: 740px) {
    .inner-text-m {
        max-width: 100%
    }
}

.inner-60 {
    max-width: 60%
}

.inner-80 {
    max-width: 80%
}

.inner-90 {
    max-width: 90%
}

.col-inner-l {
    max-width: 922px
}

@media (max-width: 1440px) {
    .inner-100-desktop-sm {
        max-width: 100%
    }

    .inner-70-desktop-sm {
        max-width: 70%
    }
}

@media screen and (max-width: 1024px) {
    .inner-90-tablet {
        max-width: 90%
    }
}

@media screen and (max-width: 800px) {
    .inner-100-t-sm {
        max-width: 100%
    }

    .flex-col-t-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media screen and (max-width: 740px) {
    .inner-60, .inner-75, .inner-80, .inner-100-phone {
        max-width: 100%
    }

    .flex-row-phone {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .flex-col-phone {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .flex-col-reverse-phone {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .col-m-r-30 {
        margin-right: 0 !important;
    }

    .row.mb-container.flex-col-reverse-phone {
        margin-bottom: 0;
    }

    .v1 .brand-assets-wrapper .col {
        padding: 2% 0 0 0% !important;
    }

    .col-l, .col-sm, .flex-basis-100-phone {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}

.custom-select {
    position: relative;
    min-width: 290px
}

@media screen and (max-width: 740px) {
    .custom-select {
        min-width: 195px
    }
}

.custom-select.select-opened {
    z-index: 1
}

.custom-select select {
    display: none
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 1em;
    right: 20px;
    width: 16px;
    height: 16px;
    background-image: url(../content-images/header/arrow-down-small.svg);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100%
}

.select-selected.select-arrow-active {
    color: rgba(60, 60, 60, .5)
}

.select-selected.select-arrow-active:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.select-selected {
    padding: 15px 55px 15px 23px;
    border: 1px solid #b1b6e3;
    cursor: pointer
}

.select-items, .select-selected:after {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    padding: 8px;
    -webkit-box-shadow: 0 2px 20px rgba(22, 42, 65, .08), 0 12px 26px rgba(7, 21, 37, .16);
    box-shadow: 0 2px 20px rgba(22, 42, 65, .08), 0 12px 26px rgba(7, 21, 37, .16);
    z-index: 3
}

.select-items:not(.select-hide) {
    -webkit-transform: translateY(-10%);
    -ms-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
    -webkit-animation: fade-in-anim-reverse .5s forwards;
    animation: fade-in-anim-reverse .5s forwards
}

.same-as-selected, .select-item {
    padding: 15px 25px;
    cursor: pointer;
    z-index: -1
}

.same-as-selected, .same-as-selected:hover, .select-item:hover {
    background: #eff1f4
}

.select-hide {
    opacity: 0;
    -webkit-animation: slide-hide-in .5s forwards;
    animation: slide-hide-in .5s forwards;
    z-index: -1
}

.v1 .form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.v1 .field {
    width: -webkit-calc(50% - 16px);
    width: calc(50% - 16px);
    margin-bottom: 29px
}

@media screen and (max-width: 576px) {
    .v1 .field {
        width: 100%
    }
}

.v1 .field.field-error .input {
    background: #faf6f7
}

.v1 .field .input {
    padding: 30px 25px;
    color: inherit;
    background-color: #fff;
    font-size: 16px
}

.v1 .field .input:-webkit-autofill, .v1 .field .input:-webkit-autofill:active, .v1 .field .input:-webkit-autofill:focus, .v1 .field .input:-webkit-autofill:hover {
    -webkit-box-shadow: inset 0 0 0 40px #fff !important;
    -webkit-text-fill-color: #000 !important
}

.v1 .field-full {
    width: 100%
}

.v1 .input .input-icon {
    fill: #6c727a
}

.v1 .input .field-label, .v1 .input .label, .v1 .input::-webkit-input-placeholder {
    font-size: 16px;
    color: #6c727a
}

.v1 .input .field-label, .v1 .input .label, .v1 .input::-moz-placeholder {
    font-size: 16px;
    color: #6c727a
}

.v1 .input .field-label, .v1 .input .label, .v1 .input::-ms-input-placeholder {
    font-size: 16px;
    color: #6c727a
}

.v1 .input .field-label, .v1 .input .label, .v1 .input::placeholder {
    font-size: 16px;
    color: #6c727a
}

.wrapper-recaptcha {
    display: block;
    width: 304px;
    margin-right: 100%;
    margin-bottom: 30px
}

.input-error {
    border: 1px solid red
}

.bg-img {
    min-height: 900px
}

.bg-img, .bg-img__small {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover
}

.bg-img__small {
    min-height: 766px
}

@media screen and (min-width: 1921px) {
    .bg-img {
        min-height: 1200px
    }
}

@media screen and (max-width: 1800px) {
    .bg-img {
        min-height: 682px
    }

    .bg-img__small {
        min-height: 586px
    }
}

@media screen and (max-width: 1024px) {
    .bg-img {
        min-height: 486px
    }

    .bg-img__small {
        min-height: 416px
    }
}

@media screen and (max-width: 740px) {
    .bg-img {
        max-width: 100%;
        min-height: 358px
    }
}

.bg-img-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat
}

.icon-left-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.icon-left-center, .main-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.main-header {
    position: fixed;
    z-index: 2;
    top: 0;
    width: 100%;
    padding: 12px 30px;
    background-color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.main-header .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 1024px) {
    .main-header {
        padding: 0
    }

    .main-header .header-inner-mobile {
        background: #fff;
        position: relative;
        z-index: 31;
        padding: 12px 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }
}

.main-header .burger, .main-header .mobile-header-right {
    display: none
}

@media screen and (max-width: 1024px) {
    .main-header .burger {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 18px;
        height: 18px;
        position: relative;
        z-index: 31;
        margin: auto 0 auto auto
    }

    .main-header .burger .line {
        position: absolute;
        top: -webkit-calc(50% - 1px);
        top: calc(50% - 1px);
        display: block;
        height: 2px;
        width: 100%;
        background-color: #000;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s
    }

    .main-header .burger .line:first-child {
        -webkit-transform: translateY(-6px);
        -ms-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    .main-header .burger .line:last-child {
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px)
    }

    .main-header .burger.open .line {
        -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0)
    }

    .main-header .burger.open .line:first-child {
        -webkit-transform: translateY(0) rotate(45deg);
        -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg)
    }

    .main-header .burger.open .line:last-child {
        -webkit-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg)
    }
}

.main-header .logo-img {
    height: 48px;
    width: 108px
}

@media screen and (max-width: 1024px) {
    .main-header .logo-img {
        height: 32px;
        width: 71px
    }
}

@media screen and (max-width: 1024px) {
    .main-header .mobile-header-right {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 -16px
    }

    .main-header .mobile-header-right .button-red {
        min-width: 132px
    }
}

.main-header .mobile-header-right__item {
    padding: 0 16px
}

.main-header .main-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 56px;
    font-weight: 600;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 1024px) {
    .main-header .main-navigation {
        display: none
    }
}

@media screen and (max-width: 1200px) {
    .main-header .main-navigation {
        margin-left: 20px
    }
}

.main-header .navigation-right {
    list-style: none;
    padding: 0;
    margin: 0 -16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.main-header .navigation-right li {
    padding: 0 16px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.main-header .login-btn {
    width: 132px
}

@media screen and (max-width: 1024px) {
    .main-header .login-btn {
        width: 100%
    }
}

.main-header .main-navigation-mobile {
    display: none
}

@media screen and (max-width: 1024px) {
    .main-header .main-navigation-mobile {
        font-weight: 600;
        display: block;
        background-color: #fff;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 30;
        opacity: 0;
        overflow: auto;
        visibility: hidden;
        padding-top: 92px;
        padding-bottom: 75px;
        -webkit-transition: opacity .3s, visibility 0s .3s;
        -o-transition: opacity .3s, visibility 0s .3s;
        transition: opacity .3s, visibility 0s .3s
    }

    .main-header .main-navigation-mobile.open {
        opacity: 1;
        visibility: visible;
        -webkit-transition: opacity .3s, visibility 0s 0s;
        -o-transition: opacity .3s, visibility 0s 0s;
        transition: opacity .3s, visibility 0s 0s
    }
}

.main-header .main-navigation-mobile .lang {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 67%;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 2.2;
    font-weight: 600
}

.main-header .main-navigation-mobile .lang .active a {
    color: rgba(0, 0, 0, .5)
}

.main-header .main-navigation-mobile .lang a {
    padding: 0 17px 0 0;
    color: #000
}

.main-header .main-navigation-mobile-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 30px
}

.main-header .main-navigation-mobile-inner, .main-header .navigation-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.main-header .navigation-list {
    list-style: none;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    padding: 0;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .main-header .navigation-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 67%
    }
}

.main-header .navigation-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 10px
}

.main-header .navigation-item:first-child {
    margin-left: 0
}

.main-header .navigation-item:last-child {
    margin-right: 0
}

@media screen and (max-width: 1200px) {
    .main-header .navigation-item {
        margin: 0 5px
    }
}

@media screen and (max-width: 1024px) {
    .main-header .navigation-item {
        margin: 0 0 32px
    }
}

.main-header .bm-dropdown-container {
    position: relative
}

@media screen and (max-width: 1024px) {
    .main-header .bm-dropdown-container {
        display: block
    }
}

.main-header .bm-dropdown-container .bm-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -9999em
}

@media screen and (max-width: 1024px) {
    .main-header .bm-dropdown-container .bm-dropdown-menu {
        position: static;
        display: none
    }
}

.main-header .bm-dropdown-container.active {
    z-index: 10
}

.main-header .bm-dropdown-container.active .bm-dropdown-menu {
    left: 0
}

@media screen and (max-width: 1024px) {
    .main-header .bm-dropdown-container.active .bm-dropdown-menu {
        display: block
    }
}

.main-header .bm-dropdown-container .bm-dropdown-toggle {
    position: relative
}

@media screen and (max-width: 1024px) {
    .main-header .bm-dropdown-container .bm-dropdown-toggle, .main-header .bm-dropdown-container .bm-dropdown-toggle:hover {
        color: #090a0a
    }

    .main-header .bm-dropdown-container .bm-dropdown-toggle.active {
        color: #6664e9
    }

    .main-header .bm-dropdown-container .bm-dropdown-toggle.active span {
        background: url(../content-images/header/arrow-up-active.svg) 100% no-repeat
    }

    .main-header .bm-dropdown-container .bm-dropdown-toggle span {
        background: url(../content-images/header/arrow-down.svg) 100% no-repeat;
        padding-right: 32px
    }

    .main-header .bm-dropdown-container .bm-dropdown-toggle span:after {
        content: none
    }
}

.main-header .plans-dropdown-outer {
    padding-top: 30px;
    width: 380px
}

@media screen and (max-width: 1024px) {
    .main-header .plans-dropdown-outer {
        width: 100%;
        padding: 16px 0 0
    }
}

.main-header .plans-dropdown {
    overflow: hidden;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background: #fff
}

.main-header .plans-dropdown__banner, .main-header .plans-dropdown__main {
    padding: 24px
}

@media screen and (max-width: 1024px) {
    .main-header .plans-dropdown__banner, .main-header .plans-dropdown__main {
        padding: 0 0 0 24px
    }
}

.main-header .plans-dropdown__banner {
    display: block;
    background: url(../content-images/header/dish.png) 100% 100% no-repeat, url(../content-images/header/bg.svg) 100% 100% no-repeat;
    -webkit-background-size: 142px 106px, 142px 106px;
    background-size: 142px 106px, 142px 106px;
    padding-right: 124px;
    border-bottom: 1px solid #eff1f4
}

.main-header .plans-dropdown__banner:hover {
    background: url(../content-images/header/dish.png) 100% 100% no-repeat;
    -webkit-background-size: 142px 106px;
    background-size: 142px 106px;
    background-color: #f6f7f9
}

.main-header .plans-dropdown__banner:hover .plans-banner__action {
    color: #6664e9
}

.main-header .plans-banner__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    margin: 0 0 4px;
    color: #090a0a
}

.main-header .plans-banner__description {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.33;
    margin: 0 0 5px;
    color: #090a0a
}

.main-header .plans-banner__action {
    background: url(../content-images/header/arrow-right-active.svg) 100% no-repeat;
    -webkit-background-size: 24px 24px;
    background-size: 24px 24px;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    padding: 12px 30px 10px 0;
    letter-spacing: .636364px;
    text-transform: uppercase
}

.main-header .plan-list {
    padding: 0
}

.main-header .plan-list li {
    border-bottom: 1px solid #eff1f4
}

@media screen and (max-width: 1024px) {
    .main-header .plan-list li {
        border: none
    }
}

.main-header .plan-list li:last-child {
    border-bottom: none
}

.main-header .plan-list__title {
    margin: 0
}

.main-header .plan-list__item, .main-header .plan-list__title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.71;
    color: #090a0a
}

.main-header .plan-list__item {
    padding: 16px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none
}

@media screen and (max-width: 1024px) {
    .main-header .plan-list__item {
        font-size: 24px;
        line-height: 1.33
    }
}

.main-header .plan-list__item span {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    padding: 0 12px
}

@media screen and (max-width: 1024px) {
    .main-header .plan-list__item span {
        padding: 0 0 0 16px
    }
}

.main-header .plan-list__item span:after {
    content: none
}

.main-header .plan-list__item:before {
    content: "";
    display: block;
    height: 32px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32px;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover
}

.main-header .plan-list__item.plan-list__item--keto:before {
    background-image: url(../content-images/header/avocado.svg)
}

.main-header .plan-list__item.plan-list__item--walking:before {
    background-image: url(../content-images/header/shoe.svg)
}

.main-header .plan-list__item.plan-list__item--challenge:before {
    background-image: url(../content-images/header/tape.svg)
}

.main-header .plan-list__item.plan-list__item--fasting:before {
    background-image: url(../content-images/header/drop.svg)
}

.main-header .plan-list__item:after {
    content: "";
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32px;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    height: 32px;
    background: url(../content-images/header/arrow-right.svg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover
}

@media screen and (max-width: 1024px) {
    .main-header .plan-list__item:after {
        content: none
    }
}

.main-header .plan-list__item:hover {
    color: #6664e9
}

.main-header .plan-list__item:hover:after {
    background-image: url(../content-images/header/arrow-right-active.svg)
}

.main-header .navigation-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 14px;
    line-height: 1.7;
    color: #090a0a;
    padding: 0 6px
}

.main-header .navigation-link.active, .main-header .navigation-link:hover {
    color: #6664e9
}

.main-header .navigation-link.active span:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

@media screen and (max-width: 1024px) {
    .main-header .navigation-link {
        padding-left: 0;
        padding-right: 15px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.33
    }

    .main-header .navigation-link.small {
        font-size: 18px;
        line-height: 2.2
    }

    .main-header .navigation-link.active, .main-header .navigation-link:hover {
        color: inherit
    }

    .main-header .navigation-link.active span:after {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.main-header .navigation-link span:after {
    height: 2px
}

.main-header .link-grey {
    color: #6c727a
}

.main-header .navigation-separate {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px
}

@media screen and (max-width: 1200px) {
    .main-header .navigation-separate {
        padding: 0 5px
    }
}

@media screen and (max-width: 1024px) {
    .main-header .navigation-separate {
        padding: 44px 0
    }
}

.main-header .navigation-separate:before {
    content: "|";
    width: 1px;
    color: #000
}

@media screen and (max-width: 1024px) {
    .main-header .navigation-separate:before {
        content: "";
        height: 2px;
        width: 82px;
        background-color: #000
    }
}

.main-header .lang {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(0, 0, 0, .5);
    font-weight: 600;
    font-size: 14px;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .main-header .lang {
        display: none
    }
}

.main-header .lang-dropdown {
    position: relative;
    font-weight: 600
}

.main-header .lang-dropdown .lang-button {
    padding: 14px 32px
}

.main-header .lang-dropdown .lang-list {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    background-color: #fff;
    -webkit-transition: opacity .15s, visibility 0s .3s, -webkit-clip-path .3s;
    transition: opacity .15s, visibility 0s .3s, -webkit-clip-path .3s;
    -o-transition: opacity .15s, clip-path .3s, visibility 0s .3s;
    transition: opacity .15s, clip-path .3s, visibility 0s .3s;
    transition: opacity .15s, clip-path .3s, visibility 0s .3s, -webkit-clip-path .3s
}

.main-header .lang-dropdown .lang-title {
    font-size: 1em;
    width: 100%;
    font-weight: 600;
    text-transform: capitalize
}

.main-header .lang-dropdown .lang-title a {
    display: block;
    width: 100%;
    padding: 24px 0;
    color: #000
}

.main-header .lang-dropdown .lang-title a:hover {
    color: #6664e9
}

.secondary-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

@media screen and (max-width: 800px) {
    .secondary-navigation {
        overflow-x: scroll
    }
}

@media screen and (max-width: 740px) {
    .secondary-navigation {
        overflow-x: scroll
    }

    .secondary-navigation-wr {
        position: relative;
        width: 100%
    }

    .secondary-navigation-wr:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        width: 10%;
        height: -webkit-calc(100% - 1px);
        height: calc(100% - 1px);
        right: 0;
        -webkit-box-shadow: inset -30px 0 25px 0 currentcolor;
        box-shadow: inset -30px 0 25px 0 currentcolor;
        pointer-events: none
    }
}

.secondary-navigation .item {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    line-height: 1;
    letter-spacing: .92px;
    position: relative
}

@media screen and (max-width: 800px) {
    .secondary-navigation .item {
        width: 30%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

@media screen and (max-width: 740px) {
    .secondary-navigation .item {
        width: auto;
        min-width: 40%;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

.secondary-navigation .item ~ .item:before {
    content: "";
    top: 0;
    width: 1px
}

.secondary-navigation .item.active a span:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.secondary-navigation .item:after, .secondary-navigation .item:before {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: .4;
    background-color: currentColor
}

.secondary-navigation .item:after {
    content: "";
    right: 0;
    height: 1px
}

.secondary-navigation .link {
    display: block;
    padding: 30px 20px 24px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px
}

@media screen and (max-width: 740px) {
    .secondary-navigation .link {
        padding: 18px 15px 14px
    }
}

.secondary-navigation .link span:after {
    margin-top: 2px;
    height: 2px
}

.home-hero {
    height: -webkit-calc(100vh - 144px);
    height: calc(100vh - 144px);
    background-color: currentColor
}

@media screen and (max-width: 740px) {
    .home-hero {
        height: auto;
        padding-bottom: 74vmin
    }
}

.home-hero .container {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.home-hero .hero-title {
    width: 690px;
    font-size: 96px;
    line-height: 1.063em;
    font-weight: 600;
    margin: 0 -6.1% 0 0;
    -webkit-transition: opacity .5s, -webkit-clip-path .8s, -webkit-transform .7s;
    transition: opacity .5s, -webkit-clip-path .8s, -webkit-transform .7s;
    -o-transition: clip-path .8s, opacity .5s, transform .7s;
    transition: clip-path .8s, opacity .5s, transform .7s;
    transition: clip-path .8s, opacity .5s, transform .7s, -webkit-clip-path .8s, -webkit-transform .7s;
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s
}

.home-hero .hero-title h1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .home-hero .hero-title {
        width: 550px;
        font-size: 87px
    }
}

@media screen and (max-width: 800px) {
    .home-hero .hero-title {
        width: 514px;
        font-size: 83px
    }
}

@media screen and (max-width: 740px) {
    .home-hero .hero-title {
        font-size: 12.5vw;
        width: 100%;
        margin: 40px 0
    }
}

.phone-stick {
    position: relative
}

.phone-stick .phone-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

@media screen and (max-width: 740px) {
    .phone-stick .phone-wrapper {
        width: 100%;
        margin: auto;
        position: relative;
        top: -50%;
        pointer-events: all
    }
}

.phone-stick .phone-wrapper .hero-picture {
    width: 27.5%;
    height: 0;
    padding-top: 61%;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    right: 16px;
    -webkit-transition-delay: .45s;
    -o-transition-delay: .45s;
    transition-delay: .45s
}

@media screen and (max-width: 1024px) {
    .phone-stick .phone-wrapper .hero-picture {
        right: 0;
        width: 30.5%
    }
}

@media screen and (max-width: 800px) {
    .phone-stick .phone-wrapper .hero-picture {
        padding-top: 71%
    }
}

@media screen and (max-height: 700px) {
    .phone-stick .phone-wrapper .hero-picture {
        width: 23%
    }
}

@media screen and (max-width: 740px) {
    .phone-stick .phone-wrapper .hero-picture {
        position: relative;
        left: 0;
        right: auto;
        padding-top: 160%;
        width: 80%;
        margin-top: -80%
    }
}

.phone-stick .phone-wrapper .container {
    height: -webkit-calc(100vh - 144px);
    height: calc(100vh - 144px);
    position: -webkit-sticky;
    position: sticky;
    top: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .phone-stick .phone-wrapper .container {
        height: auto
    }
}

.hero-button {
    margin-top: 18px
}

@media screen and (max-width: 740px) {
    .hero-button {
        margin-top: 30px
    }
}

.comments-slider {
    margin-top: 70px
}

.comments-slider .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 740px) {
    .comments-slider .swiper-slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.comments-slider .person {
    width: 90px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}

.comments-slider .person-image {
    width: 100%;
    padding-top: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
    -webkit-box-shadow: inset 0 0 0 2px currentColor, inset 0 0 0 4px #fff;
    box-shadow: inset 0 0 0 2px currentColor, inset 0 0 0 4px #fff
}

.comments-slider .person-name {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-align: center;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0)
}

@media screen and (max-width: 740px) {
    .comments-slider .person-name {
        margin-bottom: 24px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.comments-slider .comment {
    margin-left: 35px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 1.42;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: opacity .2s, -webkit-transform .5s .5s;
    transition: opacity .2s, -webkit-transform .5s .5s;
    -o-transition: opacity .2s, transform .5s .5s;
    transition: opacity .2s, transform .5s .5s;
    transition: opacity .2s, transform .5s .5s, -webkit-transform .5s .5s
}

@media screen and (max-width: 740px) {
    .comments-slider .comment {
        margin-left: 0
    }
}

.comments-slider .comment-mark {
    margin-bottom: 10px
}

@media screen and (max-width: 740px) {
    .comments-slider .comment-mark {
        margin-bottom: 5px
    }
}

.comments-slider .comment-body {
    margin-bottom: 28px
}

@media screen and (max-width: 740px) {
    .comments-slider .comment-body {
        width: 80%;
        margin-bottom: 20px
    }
}

.comments-slider .swiper-slide-active .comment, .comments-slider .swiper-slide-active .person, .comments-slider .swiper-slide-duplicate-active .comment, .comments-slider .swiper-slide-duplicate-active .person {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
    -webkit-animation: fade-in .4s 1s forwards;
    animation: fade-in .4s 1s forwards;
    -webkit-transition: opacity .5s, -webkit-transform .5s 0s;
    transition: opacity .5s, -webkit-transform .5s 0s;
    -o-transition: opacity .5s, transform .5s 0s;
    transition: opacity .5s, transform .5s 0s;
    transition: opacity .5s, transform .5s 0s, -webkit-transform .5s 0s
}

.comments-slider .swiper-slide-active .person, .comments-slider .swiper-slide-duplicate-active .person {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.comments-slider .swiper-slide-active .comment, .comments-slider .swiper-slide-duplicate-active .comment {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.comments-slider .swiper-slide-duplicate-prev .comment, .comments-slider .swiper-slide-duplicate-prev .person, .comments-slider .swiper-slide-prev .comment, .comments-slider .swiper-slide-prev .person {
    -webkit-animation: fade-out .4s 0s forwards;
    animation: fade-out .4s 0s forwards
}

.comments-slider .swiper-slide-duplicate-prev .person, .comments-slider .swiper-slide-prev .person {
    -webkit-animation-delay: 0s;
    animation-delay: 0s
}

.comments-slider .swiper-slide-duplicate-prev .comment, .comments-slider .swiper-slide-prev .comment {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.comments-slider .navigations {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 125px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff
}

.comments-slider .navigations, .comments-slider .navigations .button-next, .comments-slider .navigations .button-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.comments-slider .navigations .button-prev {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.comments-slider .navigations .button-prev:hover {
    -webkit-transform: translateX(-4px);
    -ms-transform: translateX(-4px);
    transform: translateX(-4px)
}

.comments-slider .navigations .button-next {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.comments-slider .navigations .button-next:hover {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px)
}

@media screen and (max-width: 740px) {
    .comments-slider .navigations {
        position: static
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(30px);
        transform: translate(30px)
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        -webkit-transform: translate(30px);
        transform: translate(30px)
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@-webkit-keyframes fade-out {
    0% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-20px);
        transform: translate(-20px)
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate(-20px);
        transform: translate(-20px)
    }
}

.section-personalized {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 0;
    background-repeat: no-repeat;
    height: 40vw;
    min-height: 640px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

@media screen and (max-width: 740px) {
    .section-personalized {
        width: 100%;
        height: auto;
        min-height: auto;
        -webkit-background-size: auto 75vw;
        background-size: auto 75vw;
        background-position: 0 0;
        padding-top: 55vw;
        padding-bottom: 0
    }

    .section-personalized .container {
        padding: 0
    }

    .section-personalized .right-info {
        width: 100%;
        margin: 0;
        background-color: #fff;
        padding: 25px 16px
    }
}

.section-personalized .section-title {
    line-height: 1.08
}

.section-personalized .section-title h2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin: 0
}

.section-personalized .section-text, .section-personalized .section-title {
    color: #fff
}

@media screen and (min-width: 740px) {
    .section-personalized .section-text .theme-text, .section-personalized .section-title .theme-text {
        color: inherit
    }
}

@media screen and (max-width: 740px) {
    .section-personalized .section-text, .section-personalized .section-title {
        color: #000
    }

    .section-personalized .section-text span, .section-personalized .section-title span {
        color: #000 !important
    }
}

.section-personalized .section-text {
    width: 374px;
    margin-bottom: 69px
}

@media screen and (max-width: 740px) {
    .section-personalized .section-text {
        width: 100%;
        margin-bottom: 29px
    }
}

.section-workouts, .section-workouts .container {
    padding: 0
}

@media screen and (max-width: 740px) {
    .section-workouts {
        margin-top: 11%
    }

    .section-workouts .section-text span, .section-workouts .section-title span {
        color: #000 !important
    }
}

.section-workouts .image-workouts {
    position: relative;
    width: 100%;
    padding-top: calc(144.3% + .5px);
    background-repeat: no-repeat;
    background-position: bottom;
    -webkit-background-size: contain;
    background-size: contain
}

@media screen and (max-width: 1024px) {
    .section-workouts .image-workouts {
        padding-top: calc(174.3% + .5px)
    }
}

@media screen and (max-width: 740px) {
    .section-workouts .image-workouts {
        padding-top: calc(77.5% + .5px);
        margin-top: -11%
    }
}

.section-workouts .right-info {
    padding: 20px 0
}

@media screen and (max-width: 740px) {
    .section-workouts .right-info {
        padding: 27px 16px
    }
}

.section-workouts .section-text {
    max-width: 448px;
    width: 100%
}

@media screen and (max-width: 740px) {
    .section-workouts .section-text {
        width: 100%
    }
}

.footer .container.secondary-footer-container {
    padding: 16px 0;
    border-top: 2px solid rgba(34, 34, 34, .1)
}

@media screen and (max-width: 740px) {
    .footer .container.secondary-footer-container {
        margin: 0 16px;
        width: auto;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.secondary-footer-container-inner {
    width: 100%;
    margin: 0 -16px
}

@media screen and (max-width: 740px) {
    .secondary-footer-container-inner {
        margin: 0;
        padding: 8px 0
    }
}

.secondary-footer {
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media screen and (max-width: 740px) {
    .secondary-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.secondary-footer li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.secondary-footer li:after {
    content: "";
    width: 1px;
    height: 16px;
    background: #d1d5db
}

.secondary-footer li:last-child {
    padding-right: 0;
    position: static
}

.secondary-footer li:last-child:after {
    content: none
}

.secondary-footer li:first-child {
    padding-left: 0
}

@media screen and (max-width: 740px) {
    .secondary-footer li:after {
        content: none
    }
}

.secondary-footer a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    color: #6c727a;
    padding: 16px
}

@media screen and (max-width: 740px) {
    .secondary-footer a {
        padding: 8px 0
    }
}

.footer {
    width: 100%;
    color: #000;
    font-weight: 500;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.footer address {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.71;
    color: #b1b6e3;
    margin-bottom: 37px
}

@media screen and (max-width: 740px) {
    .footer address {
        margin-bottom: 4px;
        line-height: 1.43
    }
}

.footer .container {
    border-top: 2px solid rgba(34, 34, 34, .1);
    padding: 48px 0 32px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width: 740px) {
    .footer .container {
        padding: 38px 16px 10px
    }
}

.footer .info-container {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

@media screen and (max-width: 740px) {
    .footer .info-container {
        width: 100%;
        padding: 18px 0
    }

    .footer .info-container .logo-img {
        width: 132px;
        height: auto
    }
}

.footer .info-container .logo-img {
    margin-bottom: 23px
}

@media screen and (max-width: 740px) {
    .footer .info-container .logo-img {
        margin-bottom: 17px
    }
}

.footer .rights {
    font-size: 15px;
    margin-top: 16px;
    color: #a8a9a8
}

@media screen and (max-width: 740px) {
    .footer .rights {
        margin-top: 0;
        font-size: 13px
    }
}

.footer ul {
    list-style: none;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    margin: 0;
    padding: 0
}

.footer .social-links {
    color: #a8a9a8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 28px -12px 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media screen and (max-width: 740px) {
    .footer .social-links {
        margin-top: 10px
    }
}

.footer .social-links a {
    display: inline-block;
    padding: 12px
}

.footer .social-links a svg {
    display: inline-block;
    vertical-align: bottom
}

.footer .footer-navigation {
    width: auto;
    margin-left: auto;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width: 740px) {
    .footer .footer-navigation {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 100%;
        margin-left: 0;
        padding: 0;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

.footer .footer-navigation-inner {
    -webkit-column-fill: auto;
    -moz-column-fill: auto;
    column-fill: auto;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    display: inline-block
}

@media screen and (max-width: 740px) {
    .footer .footer-navigation-inner {
        width: 100%;
        margin-bottom: 18px;
        padding-bottom: 12px;
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

    .footer .footer-navigation-inner:last-child {
        margin: 0;
        padding: 0;
        border: none
    }
}

.footer .footer-navigation .item {
    font-weight: 500;
    margin-bottom: 5px;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column;
    width: 100%;
    font-size: 18px;
    line-height: 32px
}

@media screen and (max-width: 740px) {
    .footer .footer-navigation .item {
        line-height: 40px;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

.footer .footer-navigation .item a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    white-space: pre
}

.footer .footer-navigation .item a svg {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 5px;
    color: #a8a9a8;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.footer .footer-navigation .item a span:after {
    content: none
}

.footer .footer-navigation .item a:hover, .footer .footer-navigation .item a:hover svg {
    color: #6664e9
}

@media screen and (max-width: 740px) {
    .footer .footer-navigation .item a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.footer .footer-navigation .item--grey {
    color: #6c727a
}

.footer .footer-navigation-inner {
    margin: 0 -25px
}

@media screen and (max-width: 740px) {
    .footer .footer-navigation-inner {
        width: 100%
    }
}

.footer .footer-navigation-inner li {
    padding: 0 25px
}

@media screen and (max-width: 740px) {
    .section-plans {
        padding-top: 50px;
        padding-bottom: 56px
    }

    .section-plans .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 0
    }

    .section-plans .left-info {
        padding: 0 16px
    }

    .section-plans .phone-right {
        width: 100%
    }

    .section-plans .phone-picture {
        margin-top: -11%;
        padding-top: 62%;
        background-position: 50% 0;
        -webkit-background-size: 40% 40%;
        background-size: 40%
    }
}

.section-apps {
    padding: 70px 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: auto !important
}

.section-apps .container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width: 740px) {
    .section-apps {
        padding: 53px 0 39px
    }
}

.section-apps .section-title {
    width: 448px;
    font-weight: 600
}

.section-apps .section-title h2 {
    font-weight: inherit
}

@media screen and (max-width: 800px) {
    .section-apps .section-title {
        width: 100%
    }
}

.section-apps .phone-left {
    margin-left: 49px;
    margin-right: 0
}

@media screen and (max-width: 740px) {
    .section-apps .phone-left {
        margin-left: 0;
        margin-bottom: 54px;
        display: none
    }
}

.section-apps .right-info {
    margin-left: 79px
}

.section-apps .right-info .info-logo {
    display: block;
    width: auto;
    height: 64px;
    margin-bottom: 48px
}

@media screen and (max-width: 800px) {
    .section-apps .right-info {
        margin-left: 6%;
        width: 48%
    }
}

@media screen and (max-width: 740px) {
    .section-apps .right-info {
        width: 100%;
        margin-left: 0;
        text-align: center
    }

    .section-apps .right-info .info-logo {
        height: 40px;
        margin-left: auto;
        margin-right: auto
    }
}

.section-apps .links {
    margin-top: 48px
}

.section-apps .links a {
    display: block;
    margin-bottom: 16px
}

.section-apps .links .info-logo {
    height: 48px;
    margin-bottom: 0
}

@media screen and (max-width: 800px) {
    .section-apps .links {
        width: 100%;
        margin-top: 24px
    }

    .section-apps .links .info-logo {
        height: 40px
    }
}

@media screen and (max-width: 740px) {
    .section-apps .links {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.section-community {
    background-color: #222;
    height: auto !important
}

@media screen and (max-width: 740px) {
    .section-community {
        padding: 35px 0 40px
    }
}

.section-community .title {
    width: 699px;
    color: #fff;
    text-align: center;
    line-height: 1.23;
    margin: auto auto 40px
}

.section-community .title h2 {
    margin: 0;
    color: inherit;
    text-align: inherit;
    line-height: inherit
}

@media screen and (max-width: 1024px) {
    .section-community .title {
        width: 569px
    }
}

@media screen and (max-width: 740px) {
    .section-community .title {
        width: 100%;
        margin-bottom: 37px
    }
}

.section-community .community-slider {
    width: 100%;
    margin-bottom: 48px
}

@media screen and (max-width: 740px) {
    .section-community .community-slider {
        margin-bottom: 40px;
        padding: 0 16px
    }
}

.section-community .slider-picture {
    width: 100%;
    padding-top: 100%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat
}

.section-community .button {
    margin: auto
}

.section-community .swiper-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.page {
    padding: 64px 0
}

.page .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #000
}

.page .full-width-title {
    padding: 64px 0
}

@media screen and (max-width: 740px) {
    .page .full-width-title {
        padding: 48px 0
    }
}

.page .link-back {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: auto;
    margin-left: 0;
    color: #6664e9;
    text-transform: uppercase;
    margin-bottom: 17px;
    line-height: 1;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .92px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.page .link-back .icon-arrow {
    width: 20px;
    margin-right: 12px;
    fill: #6664e9
}

.page .title-big {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 17px
}

.page .subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px
}

.page article {
    width: 100%
}

.page .body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    margin-top: 40px;
    margin-left: 0
}

.page .body .wrapper {
    width: 73%;
    padding-right: 59px
}

.page .body a:not([class]) {
    color: inherit;
    text-decoration: none;
    position: relative;
    display: inline
}

.page .body a:not([class]):after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.page .body a:not([class]):hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.page .title-image, .page .title-image img {
    width: 100%
}

.page .button {
    color: #6664e9
}

.page .no-padding {
    padding: 0
}

.separated-page {
    border-top: 1px solid rgba(34, 34, 34, .1)
}

.article-page .social, .page .social {
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    width: 27%;
    padding: 0 21px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.article-page .social .social-title, .page .social .social-title {
    font-size: 14px;
    font-weight: 500
}

.article-page .social ul, .page .social ul {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    margin: 10px 0 30px;
    list-style: none
}

.article-page .social .button, .page .social .button {
    background-color: #6664e9;
    width: 100%
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    z-index: 80;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s, visibility 0s .3s;
    -o-transition: opacity .3s, visibility 0s .3s;
    transition: opacity .3s, visibility 0s .3s
}

.modal.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s, visibility 0s 0s;
    -o-transition: opacity .3s, visibility 0s 0s;
    transition: opacity .3s, visibility 0s 0s
}

.modal .modal-body {
    width: 736px;
    position: relative
}

@media screen and (max-width: 740px) {
    .modal .modal-body {
        width: 100%;
        margin-top: 15%;
        height: 85%;
        overflow: auto;
        padding: 0 24px 30px
    }
}

.modal .modal-close {
    width: 60px;
    height: 60px;
    padding: 0;
    position: absolute;
    top: 34px;
    right: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: block;
    fill: hsla(0, 0%, 100%, .5);
    -webkit-transition: fill .3s;
    -o-transition: fill .3s;
    transition: fill .3s
}

.modal .modal-close svg {
    width: 100%;
    height: auto
}

.modal .modal-close:hover {
    fill: hsla(0, 0%, 100%, .7)
}

@media screen and (max-width: 740px) {
    .modal .modal-close {
        top: 24px;
        right: 24px
    }
}

.modal .modal-title {
    color: #fff;
    text-align: center;
    margin-bottom: 65px;
    width: 100%;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s
}

.modal .modal-title.hide {
    opacity: 0
}

.modal .form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-clip-path: circle(200% at 10% 10%);
    clip-path: circle(200% at 10% 10%);
    -webkit-transition: opacity .45s, -webkit-clip-path .4s;
    transition: opacity .45s, -webkit-clip-path .4s;
    -o-transition: clip-path .4s, opacity .45s;
    transition: clip-path .4s, opacity .45s;
    transition: clip-path .4s, opacity .45s, -webkit-clip-path .4s
}

@media screen and (max-width: 740px) {
    .modal .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.modal .form.hide {
    opacity: 0;
    -webkit-clip-path: circle(0 at 10% 10%);
    clip-path: circle(0 at 10% 10%)
}

.modal .field {
    width: -webkit-calc(50% - 16px);
    width: calc(50% - 16px);
    margin-bottom: 29px
}

@media screen and (max-width: 740px) {
    .modal .field {
        width: 100%
    }
}

.modal .field-full {
    width: 100%
}

.modal .button {
    color: #6664e9;
    margin-left: auto;
    min-width: 160px;
    text-align: center
}

.modal .button.hide {
    display: none
}

.modal .message {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -webkit-clip-path: circle(0 at 80% 80%);
    clip-path: circle(0 at 80% 80%);
    -webkit-transition: opacity .1s, visibility 0s .45s, -webkit-clip-path .45s;
    transition: opacity .1s, visibility 0s .45s, -webkit-clip-path .45s;
    -o-transition: opacity .1s, clip-path .45s, visibility 0s .45s;
    transition: opacity .1s, clip-path .45s, visibility 0s .45s;
    transition: opacity .1s, clip-path .45s, visibility 0s .45s, -webkit-clip-path .45s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.modal .message, .modal .message p {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.modal .message p {
    text-align: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 48px;
    color: #fff;
    font-weight: 600
}

.modal .message .button {
    margin: auto
}

.modal .message.show {
    visibility: visible;
    opacity: 1;
    -webkit-clip-path: circle(200% at 80% 80%);
    clip-path: circle(200% at 80% 80%);
    -webkit-transition: opacity .1s, visibility 0s 0s, -webkit-clip-path .45s;
    transition: opacity .1s, visibility 0s 0s, -webkit-clip-path .45s;
    -o-transition: opacity .1s, clip-path .45s, visibility 0s 0s;
    transition: opacity .1s, clip-path .45s, visibility 0s 0s;
    transition: opacity .1s, clip-path .45s, visibility 0s 0s, -webkit-clip-path .45s
}

.modal.modal-support {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, .4)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    background: linear-gradient(0deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
    color: #fff;
    overflow-y: scroll
}

.modal.modal-support .modal-support-hide {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px
}

.modal.modal-support.slide-down-anim {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: slide-top-to-bottom 1s forwards;
    animation: slide-top-to-bottom 1s forwards
}

.modal.modal-support .support-body {
    min-width: 380px;
    min-height: 560px;
    position: relative;
    padding: 32px 25px 25px;
    background: #1c80dd;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .35);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .35);
    -webkit-border-radius: 16px;
    border-radius: 16px;
    text-align: center
}

.modal.modal-support .icon-title {
    width: 275px
}

.modal.modal-support .modal-support-title {
    font-size: 34px;
    line-height: 110%;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 7px;
    color: #fd0
}

.modal.modal-support .modal-support-subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 110%
}

.modal.modal-support .support-text-title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 34px;
    line-height: 130%
}

.modal.modal-support .title-icon-wrapper {
    position: relative;
    display: block
}

.modal.modal-support .support-text-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
    margin-top: 65px
}

.modal.modal-support .text-main-wrapper .svg-icon-text {
    display: block;
    margin-bottom: 7px
}

.modal.modal-support .svg-icon-line {
    margin-right: 7px
}

.modal.modal-support .support-text-small {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%
}

.modal.modal-support .btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 15px 72px;
    margin-top: 137px;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: .81px;
    background: #fff;
    color: #1c80dd;
    z-index: 2
}

.modal.modal-support .btn:hover {
    color: #104a81
}

.modal.modal-support .img-abs {
    width: 270px;
    position: absolute;
    right: 0;
    bottom: 0
}

@media screen and (max-width: 740px) {
    .modal.modal-support .support-body {
        min-width: 300px
    }

    .modal.modal-support .img-abs {
        width: 250px
    }

    .modal.modal-support .modal-support-hide {
        padding: 15px 10px
    }

    .modal.modal-support .support-body {
        padding: 32px 22px 22px
    }

    .modal.modal-support .btn {
        margin-top: 145px;
        padding: 13px 61px;
        font-size: 18px
    }
}

@media screen and (max-width: 320px) {
    .modal.modal-support .support-body {
        max-width: 300px
    }

    .modal.modal-support .img-abs {
        width: 225px
    }

    .modal.modal-support .btn {
        margin-top: 130px
    }
}

body.ready .modal-support.show {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.modal-light {
    background-color: #fff
}

.modal-light .modal-close {
    fill: rgba(0, 0, 0, .5)
}

.modal-light .modal-close:hover {
    fill: rgba(0, 0, 0, .7)
}

.modal-light .message p, .modal-light .modal-title {
    color: #131415
}

.field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.field .field-hint {
    font-size: 13px;
    margin-top: 8px;
    color: red;
}

span.field-hint._error {
    color: red;
    font-size: 13px;
}

.field .field-label {
    margin-bottom: 5px;
    color: #999;
    font-size: 14px;
    line-height: 1.2
}

.field .input {
    display: block;
    padding: 16px 15px;
    color: #fff;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #343434;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.214em;
    -webkit-appearance: none
}

.field .input:-webkit-autofill, .field .input:-webkit-autofill:active, .field .input:-webkit-autofill:focus, .field .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #343434 inset !important;
    -webkit-text-fill-color: #fff !important
}

.field .input:focus {
    outline: none;
    -webkit-box-shadow: inset 0 -1px 0 0 #6664e9;
    box-shadow: inset 0 -1px 0 0 #6664e9
}

.field.field-error {
    position: relative
}

.field.field-error .input {
    -webkit-box-shadow: inset 0 0 0 1px #c11;
    box-shadow: inset 0 0 0 1px #c11
}

.field.field-error .field-hint {
    display: block;
    margin-top: 3px;
    color: #c11;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 100%
}

.field-light .input {
    color: #131415;
    background-color: #f4f4f4
}

.field-light .input:-webkit-autofill, .field-light .input:-webkit-autofill:active, .field-light .input:-webkit-autofill:focus, .field-light .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #f4f4f4 inset !important;
    -webkit-text-fill-color: #131415 !important
}

.field-file .input-file {
    overflow: hidden;
    width: .1px;
    height: .1px;
    opacity: 0;
    position: absolute;
    z-index: -1
}

.field-file .input-file:focus + .input {
    outline: none;
    -webkit-box-shadow: inset 0 -1px 0 0 #6664e9;
    box-shadow: inset 0 -1px 0 0 #6664e9
}

.field-file .input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    fill: hsla(0, 0%, 100%, .4)
}

.field-file .input-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 18px;
    margin-left: auto
}

.field-file .input-text {
    overflow: hidden;
    max-width: 89%;
    padding: 2px 0;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.career-page {
    padding-top: 0;
    padding-bottom: 0
}

.career-page article {
    width: 59%;
    padding-bottom: 65px
}

@media screen and (max-width: 740px) {
    .career-page article {
        width: 100%;
        padding-bottom: 40px
    }
}

.career-page .title {
    color: #6664e9;
    margin-bottom: .5em;
    vertical-align: top;
    padding-right: 50px;
    line-height: 1
}

@media screen and (max-width: 740px) {
    .career-page .title {
        padding-right: 0
    }
}

.career-page .article-body {
    max-width: 450px
}

@media screen and (max-width: 740px) {
    .career-page .article-body {
        max-width: none
    }
}

@media screen and (max-width: 740px) {
    .career-page .title-mobile {
        width: 100%;
        font-size: 12.5vw;
        margin-top: 1.1em;
        margin-bottom: 1em
    }
}

.career-page .left-side {
    padding-top: 15px;
    font-size: 14px;
    padding-right: 129px
}

@media screen and (max-width: 1024px) {
    .career-page .left-side {
        padding-right: 79px
    }
}

@media screen and (max-width: 740px) {
    .career-page .left-side {
        font-size: 4.4vw;
        padding-top: 0;
        width: 100%;
        padding-right: 20px;
        margin-bottom: 30px
    }
}

.career-page .left-side p {
    width: 223px;
    margin-top: 21px;
    margin-bottom: 0;
    color: #4e4e4e;
    line-height: 1.71
}

@media screen and (max-width: 740px) {
    .career-page .left-side p {
        width: 84%
    }
}

.career-page .title-image {
    display: block;
    margin-bottom: 105px
}

@media screen and (max-width: 740px) {
    .career-page .title-image {
        margin-bottom: 30px
    }
}

.career-page .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.career-page .principles {
    background-color: #fcdbdf;
    counter-reset: principles-counter;
    overflow: hidden
}

@media screen and (max-width: 740px) {
    .career-page .principles .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.career-page .principles .swiper-container {
    padding: 0 0 60px 40px;
    margin-left: -40px
}

@media screen and (max-width: 740px) {
    .career-page .principles .swiper-container {
        padding: 0;
        margin-left: 0
    }
}

.career-page .principles .title {
    padding-right: 0;
    margin-bottom: 50px
}

@media screen and (max-width: 1024px) {
    .career-page .principles .title {
        margin-bottom: 30px
    }
}

.career-page .principles .col {
    width: 60%
}

@media screen and (max-width: 740px) {
    .career-page .principles .col {
        width: 100%
    }
}

.career-page .principles .col:first-child {
    padding-top: 107px
}

@media screen and (max-width: 1024px) {
    .career-page .principles .col:first-child {
        padding-top: 77px
    }
}

@media screen and (max-width: 740px) {
    .career-page .principles .col:first-child {
        padding-top: 30px
    }
}

.career-page .principles .col:last-child {
    width: 44%
}

@media screen and (max-width: 740px) {
    .career-page .principles .col:last-child {
        width: 100%
    }
}

.career-page .principles .navigations {
    padding-top: 77px
}

@media screen and (max-width: 1024px) {
    .career-page .principles .navigations {
        padding-top: 50px
    }
}

@media screen and (max-width: 740px) {
    .career-page .principles .navigations {
        padding-top: 24px
    }
}

.career-page .principles .principles-slider-img {
    height: 100%;
    padding: 0;
    margin: 0
}

.career-page .principles .principles-slider-img .image {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100% 100%
}

@media screen and (max-width: 740px) {
    .career-page .principles .principles-slider-img .image {
        width: 100%;
        position: relative;
        height: auto;
        padding-top: 125%;
        background-position: 50% 100%
    }
}

.career-page .principle-quote {
    display: block;
    margin-top: 50px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3333;
    position: relative
}

.career-page .principle-quote:before {
    content: "\201D";
    display: inline-block;
    position: absolute;
    font-size: 40px;
    top: 0;
    left: -6px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.career-page .principle-quote:after {
    content: "\201D";
    display: inline-block
}

@media screen and (max-width: 1024px) {
    .career-page .principle-quote {
        margin-top: 30px
    }
}

@media screen and (max-width: 740px) {
    .career-page .principle-quote {
        font-size: 5.6vw
    }

    .career-page .principle-quote:before {
        font-size: 32px;
        top: -.7em;
        left: auto;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.career-page .principle-author {
    font-size: 14px;
    color: #4e4e4e;
    margin-top: 20px;
    display: block
}

.career-page .principles-slider {
    width: 100%
}

.career-page .principles-slider .swiper-slide .principle-author, .career-page .principles-slider .swiper-slide .principle-quote, .career-page .principles-slider .swiper-slide .principle-text, .career-page .principles-slider .swiper-slide .principle-title {
    opacity: 0;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s
}

.career-page .principles-slider .swiper-slide.swiper-slide-active .principle-author, .career-page .principles-slider .swiper-slide.swiper-slide-active .principle-quote, .career-page .principles-slider .swiper-slide.swiper-slide-active .principle-text, .career-page .principles-slider .swiper-slide.swiper-slide-active .principle-title {
    opacity: 1;
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s
}

.career-page .principles-slider .swiper-slide.swiper-slide-active .principle-author, .career-page .principles-slider .swiper-slide.swiper-slide-active .principle-quote {
    -webkit-transition-delay: .45s;
    -o-transition-delay: .45s;
    transition-delay: .45s
}

.career-page .principle-title {
    font-size: 24px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0
}

@media screen and (max-width: 1024px) {
    .career-page .principle-title {
        margin: 0
    }
}

@media screen and (max-width: 740px) {
    .career-page .principle-title {
        display: block;
        font-size: 5.6vw
    }
}

.career-page .principle-title:before {
    display: block;
    position: absolute;
    top: 9px;
    right: 100%;
    padding-right: 8px;
    content: counter(principles-counter, decimal-leading-zero) ".";
    counter-increment: principles-counter;
    font-size: 14px;
    font-weight: 400
}

@media screen and (max-width: 740px) {
    .career-page .principle-title:before {
        position: relative;
        top: auto;
        right: 0;
        margin-bottom: 10px
    }
}

.career-page .principle-text {
    width: 83%;
    font-size: 14px;
    line-height: 1.7;
    color: #4e4e4e
}

@media screen and (max-width: 740px) {
    .career-page .principle-text {
        width: 100%;
        margin-bottom: 42px
    }
}

.career-page .approach {
    padding: 125px 0
}

@media screen and (max-width: 1024px) {
    .career-page .approach {
        padding: 105px 0 40px
    }
}

@media screen and (max-width: 740px) {
    .career-page .approach {
        padding: 45px 0 0
    }

    .career-page .approach .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-bottom: 40px
    }
}

.career-page .approach .col {
    margin-bottom: 80px
}

@media screen and (max-width: 740px) {
    .career-page .approach .col {
        width: 100%;
        margin-bottom: 15px
    }
}

.career-page .col-icons {
    width: 41%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.career-page .icon-list {
    width: 285px;
    list-style: none;
    padding: 0;
    margin: -8px -14px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.career-page .icon-list li {
    margin: 8px 14px;
    display: block
}

@media screen and (max-width: 740px) {
    .career-page .icon-list {
        width: auto
    }
}

.career-page .title-black {
    width: 65%;
    margin-bottom: 24px;
    line-height: 1em
}

@media screen and (max-width: 740px) {
    .career-page .title-black {
        width: 100%;
        padding-right: 20px
    }
}

.career-page .col-icons .text {
    font-size: 14px;
    line-height: 1.7;
    width: 230px;
    margin-bottom: 30px
}

.career-page .positions {
    background-color: #222;
    padding-top: 103px;
    padding-bottom: 97px;
    color: #fff
}

@media screen and (max-width: 1024px) {
    .career-page .positions {
        padding-top: 83px;
        padding-bottom: 77px
    }
}

@media screen and (max-width: 740px) {
    .career-page .positions {
        padding-top: 35px;
        padding-bottom: 50px
    }
}

.career-page .positions .title {
    color: #fff;
    margin-bottom: 26px;
    padding-right: 0
}

@media screen and (max-width: 740px) {
    .career-page .positions .title {
        margin-bottom: 16px
    }
}

.career-page .positions.is-empty .positions-tabs {
    margin-bottom: 0
}

.career-page .positions.is-empty .positions-list {
    display: none
}

.career-page .positions.is-empty .positions-text {
    margin-top: 60px
}

.career-page .positions .positions-tabs {
    margin-bottom: 28px;
    color: #fff;
    width: 100%;
    text-align: center;
    position: relative
}

.career-page .positions .positions-tabs-inner {
    white-space: nowrap;
    overflow: auto;
    padding: 20px 0
}

.career-page .positions .positions-tabs button {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.214em;
    margin: 0 10px
}

@media screen and (max-width: 740px) {
    .career-page .positions .positions-tabs button {
        font-size: 12px;
        line-height: 1.25em;
        margin: 0 5px
    }
}

.career-page .positions .positions-tabs button:first-child {
    margin-left: 0
}

.career-page .positions .positions-tabs button:last-child {
    margin-right: 0
}

.career-page .positions .positions-tabs button span:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #6664e9;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media screen and (max-width: 740px) {
    .career-page .positions .positions-tabs button span:after {
        background-color: currentColor
    }
}

.career-page .positions .positions-tabs button.active span:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.career-page .positions .positions-tabs:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 10%;
    height: -webkit-calc(100% - 1px);
    height: calc(100% - 1px);
    right: 0;
    -webkit-box-shadow: inset -30px 0 25px 0 #222;
    box-shadow: inset -30px 0 25px 0 #222
}

.career-page .positions .positions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    border-top: 2px solid hsla(0, 0%, 100%, .2);
    width: 100%
}

.career-page .positions .positions-item {
    width: 100%;
    border-bottom: 2px solid hsla(0, 0%, 100%, .2);
    display: none
}

.career-page .positions .positions-item.show {
    display: block
}

.career-page .positions .position {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(top, #fff, #fff);
    background-image: -o-linear-gradient(top, #fff, #fff);
    background-image: linear-gradient(180deg, #fff, #fff);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 0;
    background-size: 100% 0;
    -webkit-transition: color .3s, -webkit-background-size .3s;
    transition: color .3s, -webkit-background-size .3s;
    -o-transition: color .3s, background-size .3s;
    transition: color .3s, background-size .3s;
    transition: color .3s, background-size .3s, -webkit-background-size .3s
}

.career-page .positions .position:hover {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    color: #000
}

.career-page .positions .position:hover .position-title {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px)
}

.career-page .positions .position:hover .position-icon {
    fill: #000;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px)
}

.career-page .positions .position:hover span:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.career-page .positions .position-title {
    width: 41.5%;
    margin: 35px 0;
    font-weight: 600;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media screen and (max-width: 1024px) {
    .career-page .positions .position-title {
        margin: 30px 0
    }
}

@media screen and (max-width: 740px) {
    .career-page .positions .position-title {
        width: 70%;
        margin: 14px 0;
        font-size: 5.6vw
    }
}

.career-page .positions .position-text {
    font-weight: 500
}

@media screen and (max-width: 740px) {
    .career-page .positions .position-text {
        display: none
    }
}

.career-page .positions .positions-text {
    margin-top: 70px;
    margin-bottom: 40px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: 502px;
    display: block
}

@media screen and (max-width: 1024px) {
    .career-page .positions .positions-text {
        margin-top: 80px
    }
}

@media screen and (max-width: 740px) {
    .career-page .positions .positions-text {
        width: 100%;
        margin-top: 34px;
        margin-bottom: 30px;
        font-size: 5.6vw
    }
}

.career-page .positions .position-icon {
    height: 22px;
    width: 22px;
    margin-left: auto;
    fill: #fff;
    -webkit-transition: fill .3s, -webkit-transform .3s;
    transition: fill .3s, -webkit-transform .3s;
    -o-transition: fill .3s, transform .3s;
    transition: fill .3s, transform .3s;
    transition: fill .3s, transform .3s, -webkit-transform .3s;
    -webkit-transition: translateX(20px);
    -o-transition: translateX(20px);
    transition: translateX(20px)
}

@media screen and (max-width: 740px) {
    .career-page .positions .position-icon {
        height: 20px;
        width: 20px
    }
}

.career-page + .footer .container {
    border-top: none
}

.vacancy-page .title-big {
    margin-top: 4px;
    margin-bottom: 8px
}

@media screen and (max-width: 740px) {
    .vacancy-page .title-big {
        font-size: 40px;
        line-height: 1;
        margin-top: 0;
        margin-bottom: 14px
    }
}

.vacancy-page .social .social-title, .vacancy-page .subtitle {
    color: #4e4e4e
}

.vacancy-page .body .wrapper h3 {
    text-transform: uppercase
}

@media screen and (max-width: 740px) {
    .vacancy-page {
        padding: 30px 0 34px
    }

    .vacancy-page .link-back {
        margin-bottom: 22px
    }

    .vacancy-page .body {
        display: block;
        margin-top: 28px
    }

    .vacancy-page .body .wrapper {
        width: 100%;
        padding-right: 0
    }

    .vacancy-page .social {
        position: static;
        width: 100%;
        margin: 30px auto 0;
        padding: 30px 0 0;
        border-top: 2px solid rgba(34, 34, 34, .1)
    }

    .vacancy-page .social .social-title {
        margin-top: 0
    }

    .vacancy-page .social ul {
        max-width: 176px;
        padding: 0 10px
    }

    .vacancy-page .social .button {
        min-width: auto;
        max-width: 176px
    }
}

.about-page, .press-room-page {
    padding-top: 0;
    padding-bottom: 0
}

.about-page .about-hero, .press-room-page .about-hero {
    padding: 0;
    background-color: #6664e9;
    color: #fff
}

.about-page .about-hero .container, .press-room-page .about-hero .container {
    padding: 86px 0
}

@media screen and (max-width: 740px) {
    .about-page .about-hero .container, .press-room-page .about-hero .container {
        padding: 40px 16px 0
    }
}

.about-page .container, .press-room-page .container {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative
}

.about-page .img-bg, .press-room-page .img-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 0;
    z-index: 0
}

.about-page .img-bg img, .press-room-page .img-bg img {
    height: 100%;
    right: 0;
    position: absolute
}

@media screen and (max-width: 740px) {
    .about-page .img-bg, .press-room-page .img-bg {
        position: static
    }

    .about-page .img-bg img, .press-room-page .img-bg img {
        position: static;
        width: 100%;
        height: auto
    }
}

.about-page .hero-wr, .press-room-page .hero-wr {
    width: 60%;
    position: relative;
    z-index: 1
}

@media screen and (max-width: 740px) {
    .about-page .hero-wr, .press-room-page .hero-wr {
        width: 100%
    }
}

.about-page .text, .press-room-page .text {
    color: #fff;
    width: 365px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.333em
}

@media screen and (max-width: 740px) {
    .about-page .text, .press-room-page .text {
        font-size: 14px;
        line-height: 1.429em;
        width: 100%
    }
}

.about-page h1, .press-room-page h1 {
    color: #fff;
    font-size: 112px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 45px
}

@media screen and (max-width: 740px) {
    .about-page h1, .press-room-page h1 {
        font-size: 40px;
        margin-bottom: 24px
    }
}

.about-page .mission-block, .press-room-page .mission-block {
    padding-top: 100px
}

@media screen and (max-width: 740px) {
    .about-page .mission-block, .press-room-page .mission-block {
        padding-top: 27px
    }
}

.about-page .row, .press-room-page .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width: 740px) {
    .about-page .row, .press-room-page .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.about-page .col-left, .press-room-page .col-left {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30%;
    padding-right: 30px
}

@media screen and (max-width: 740px) {
    .about-page .col-left, .press-room-page .col-left {
        width: 100%;
        padding-right: 0
    }
}

.about-page .col-left h3, .press-room-page .col-left h3 {
    line-height: 1.229em
}

@media screen and (max-width: 740px) {
    .about-page .col-left h3, .press-room-page .col-left h3 {
        margin-bottom: 40px
    }
}

.about-page .section-title, .press-room-page .section-title {
    font-size: 64px;
    line-height: 1em;
    color: #6664e9;
    margin-top: 0;
    margin-bottom: 37px;
    font-weight: 600
}

@media screen and (max-width: 740px) {
    .about-page .section-title, .press-room-page .section-title {
        font-size: 32px;
        margin-bottom: 25px
    }
}

.about-page .section-body, .press-room-page .section-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 135px
}

@media screen and (max-width: 740px) {
    .about-page .section-body, .press-room-page .section-body {
        margin-bottom: 45px
    }
}

.about-page .section-body p, .press-room-page .section-body p {
    width: 50%;
    padding-right: 40px;
    font-size: 14px;
    line-height: 1.714em;
    margin-top: 0
}

@media screen and (max-width: 740px) {
    .about-page .section-body p, .press-room-page .section-body p {
        width: 100%;
        margin-bottom: 15px
    }
}

.about-page .section-body strong, .press-room-page .section-body strong {
    width: 100%;
    font-size: 130%;
    font-weight: 600
}

.about-page .section-body .col, .press-room-page .section-body .col {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.about-page .section-body .col a, .press-room-page .section-body .col a {
    display: block;
    margin-top: auto
}

.about-page .slider-phones, .press-room-page .slider-phones {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(70%, #fff), color-stop(70%, #222));
    background-image: -webkit-linear-gradient(top, #fff, #fff 70%, #222 0);
    background-image: -o-linear-gradient(top, #fff, #fff 70%, #222 70%);
    background-image: linear-gradient(180deg, #fff, #fff 70%, #222 0);
    color: #fff
}

@media screen and (max-width: 740px) {
    .about-page .slider-phones, .press-room-page .slider-phones {
        background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #222));
        background-image: -webkit-linear-gradient(top, #fff, #fff 50%, #222 0);
        background-image: -o-linear-gradient(top, #fff, #fff 50%, #222 50%);
        background-image: linear-gradient(180deg, #fff, #fff 50%, #222 0)
    }
}

.about-page .slider-phones .swiper-slide, .press-room-page .slider-phones .swiper-slide {
    text-align: center
}

@media screen and (max-width: 740px) {
    .about-page .slider-phones .swiper-slide, .press-room-page .slider-phones .swiper-slide {
        padding: 0 0 0 16px
    }
}

.about-page .slider-phones .phone-img, .press-room-page .slider-phones .phone-img {
    font-size: 0
}

.about-page .slider-phones .phone-img img, .press-room-page .slider-phones .phone-img img {
    display: block;
    width: 100%;
    max-width: 235px;
    height: auto;
    margin: 0 auto
}

.about-page .slider-phones .phone-title, .press-room-page .slider-phones .phone-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3333;
    margin-top: 30px
}

@media screen and (max-width: 740px) {
    .about-page .slider-phones .phone-title, .press-room-page .slider-phones .phone-title {
        margin-top: 10px;
        font-size: 18px
    }
}

.about-page .slider-phones .phone-text, .press-room-page .slider-phones .phone-text {
    font-size: 14px;
    line-height: 1.71
}

.about-page .team-block, .press-room-page .team-block {
    padding: 190px 0 55px;
    width: 100%;
    background-color: #222;
    color: #fff;
    position: relative
}

.about-page .team-block h3, .press-room-page .team-block h3 {
    margin-top: -15px
}

@media screen and (max-width: 1024px) {
    .about-page .team-block h3, .press-room-page .team-block h3 {
        margin-top: -10px
    }
}

@media screen and (max-width: 800px) {
    .about-page .team-block h3, .press-room-page .team-block h3 {
        margin-top: -6px
    }
}

@media screen and (max-width: 740px) {
    .about-page .team-block h3, .press-room-page .team-block h3 {
        margin-top: 0;
        margin-bottom: 40px
    }
}

@media screen and (max-width: 740px) {
    .about-page .team-block, .press-room-page .team-block {
        padding-top: 55px;
        padding-bottom: 38px
    }

    .about-page .team-block h3, .press-room-page .team-block h3 {
        margin-bottom: 24px
    }
}

.about-page .team-block .section-body, .press-room-page .team-block .section-body {
    color: #fff;
    margin-bottom: 0
}

.about-page .team-block .section-body strong, .press-room-page .team-block .section-body strong {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.333em;
    max-width: 544px
}

@media screen and (max-width: 1024px) {
    .about-page .team-block .section-body strong, .press-room-page .team-block .section-body strong {
        font-size: 130%
    }
}

@media screen and (max-width: 740px) {
    .about-page .team-block .section-body strong, .press-room-page .team-block .section-body strong {
        font-size: 18px
    }
}

.about-page .team-block .section-body p, .press-room-page .team-block .section-body p {
    width: 100%
}

.about-page .team-block .section-body .col, .press-room-page .team-block .section-body .col {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (max-width: 740px) {
    .about-page .team-block .section-body .col, .press-room-page .team-block .section-body .col {
        width: 100%
    }
}

.about-page .team-block .section-body .link, .press-room-page .team-block .section-body .link {
    color: #6664e9;
    font-size: 12px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    fill: #6664e9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700
}

.about-page .team-block .section-body .link span:after, .press-room-page .team-block .section-body .link span:after {
    display: none
}

.about-page .team-block .section-body .link svg, .press-room-page .team-block .section-body .link svg {
    width: 18px;
    height: 18px
}

@media screen and (max-width: 740px) {
    .about-page .team-block .section-body .link, .press-room-page .team-block .section-body .link {
        margin-top: 14px
    }
}

@media screen and (max-width: 740px) {
    .about-page .team-block .section-body .link-desktop, .press-room-page .team-block .section-body .link-desktop {
        display: none
    }
}

@media screen and (min-width: 740px) {
    .about-page .team-block .section-body .link-mobile, .press-room-page .team-block .section-body .link-mobile {
        display: none
    }
}

.about-page .team-block:before, .press-room-page .team-block:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 1;
    background: #222
}

.about-page .slider-bottom-wr, .press-room-page .slider-bottom-wr {
    background-color: #222;
    padding-bottom: 112px;
    position: relative
}

@media screen and (max-width: 740px) {
    .about-page .slider-bottom-wr, .press-room-page .slider-bottom-wr {
        padding-bottom: 0
    }
}

.about-page .slider-bottom-wr .slider-bottom, .press-room-page .slider-bottom-wr .slider-bottom {
    position: relative;
    width: 100%
}

.about-page .slider-bottom-wr .swiper-slide, .press-room-page .slider-bottom-wr .swiper-slide {
    font-size: 0
}

.about-page .slider-bottom-wr .swiper-slide img, .press-room-page .slider-bottom-wr .swiper-slide img {
    width: 100%
}

.about-page .slider-bottom-wr .navigations, .press-room-page .slider-bottom-wr .navigations {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 20;
    background-color: #fff
}

.about-page .slider-bottom-wr .navigations button, .press-room-page .slider-bottom-wr .navigations button {
    padding: 26px 20px 26px 43px;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media screen and (max-width: 740px) {
    .about-page .slider-bottom-wr .navigations button, .press-room-page .slider-bottom-wr .navigations button {
        padding: 17px 10px 16px 22px
    }

    .about-page .slider-bottom-wr .navigations button svg, .press-room-page .slider-bottom-wr .navigations button svg {
        width: 8px;
        height: 8px
    }
}

.about-page .slider-bottom-wr .navigations button + button, .press-room-page .slider-bottom-wr .navigations button + button {
    padding-left: 15px;
    padding-right: 43px
}

@media screen and (max-width: 740px) {
    .about-page .slider-bottom-wr .navigations button + button, .press-room-page .slider-bottom-wr .navigations button + button {
        padding: 17px 22px 16px 10px
    }
}

.about-page .slider-bottom-wr:before, .press-room-page .slider-bottom-wr:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 0;
    background: #222
}

.about-page + .footer .container, .press-room-page + .footer .container {
    border-top: none
}

@media screen and (max-width: 740px) {
    .about-page + .footer .container .footer-navigation, .press-room-page + .footer .container .footer-navigation {
        border-top: none
    }
}

.contact-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 115px 0 45px
}

@media screen and (max-width: 740px) {
    .contact-page {
        padding: 45px 0 0
    }

    .contact-page ~ .footer .footer-navigation {
        border-top: none
    }
}

.contact-page h1 {
    font-weight: 600;
    margin-top: -5px;
    font-size: 64px;
    line-height: 1;
    margin-bottom: 35px
}

@media screen and (max-width: 740px) {
    .contact-page h1 {
        font-size: 12.5vw;
        margin-top: 0
    }
}

.contact-page .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

@media screen and (max-width: 740px) {
    .contact-page .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.contact-page .col {
    width: 48%;
    max-width: 440px;
    display: inherit
}

@media screen and (max-width: 740px) {
    .contact-page .col {
        width: 100%;
        max-width: none
    }
}

.contact-page .col-big {
    width: 52%;
    display: block
}

@media screen and (max-width: 740px) {
    .contact-page .col-big {
        width: 100%
    }
}

.contact-page .text {
    margin-bottom: 40px;
    width: 384px;
    font-weight: 500
}

@media screen and (max-width: 740px) {
    .contact-page .text {
        font-size: 4.4vw;
        width: 89%;
        margin-bottom: 30px
    }
}

.contact-page .button {
    width: 238px;
    text-align: center;
    margin-bottom: 75px
}

@media screen and (max-width: 740px) {
    .contact-page .button {
        margin-bottom: 47px;
        width: 62.2%;
        min-width: auto
    }
}

.contact-page .contacts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -29px -13.8px
}

@media screen and (max-width: 1024px) {
    .contact-page .contacts {
        margin: 0 0 -13.8px
    }
}

@media screen and (max-width: 740px) {
    .contact-page .contacts {
        margin: 0
    }
}

.contact-page .contacts .contact {
    padding-left: 29px;
    padding-right: 29px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 40px
}

@media screen and (max-width: 1024px) {
    .contact-page .contacts .contact {
        width: 46%;
        padding: 0
    }
}

@media screen and (max-width: 740px) {
    .contact-page .contacts .contact {
        width: 100%;
        margin-bottom: 24px
    }

    .contact-page .contacts .contact:nth-child(2n) {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2
    }

    .contact-page .contacts .contact:nth-child(3n) {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1
    }
}

.contact-page .contacts .contact-title {
    font-size: 12px;
    color: #6664e9;
    letter-spacing: .92px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase
}

.contact-page .contacts a {
    font-size: 18px;
    line-height: 1.333;
    font-weight: 500
}

@media screen and (max-width: 740px) {
    .contact-page .contacts a {
        font-size: 4.4vw
    }
}

.contact-page .map {
    width: 100%;
    height: 100%
}

@media screen and (max-width: 740px) {
    .contact-page .map {
        height: 75vw
    }
}

.handorgel__header {
    display: none
}

@media screen and (max-width: 740px) {
    .handorgel__header {
        display: block;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.25;
        color: #000
    }
}

.handorgel__header .handorgel__header__button {
    background-color: transparent;
    font-weight: 600;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.handorgel__header .handorgel__header__button h1, .handorgel__header .handorgel__header__button h2, .handorgel__header .handorgel__header__button h3, .handorgel__header .handorgel__header__button p {
    margin: 0;
    padding: 0;
    font-size: inherit
}

.handorgel__header .handorgel__header__button h1, .handorgel__header .handorgel__header__button h2 {
    font-weight: inherit;
    line-height: inherit
}

.handorgel__header .handorgel__header__button svg {
    margin-left: auto;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.handorgel__header.handorgel__header--open .handorgel__header__button svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.handorgel__content__inner {
    padding: 0
}

.handorgel__content {
    border: none
}

@media screen and (min-width: 740px) {
    .handorgel__content {
        display: block !important;
        height: auto !important
    }

    .handorgel__content .handorgel__content__inner {
        opacity: 1 !important
    }
}

.for-work-page {
    padding-top: 0;
    padding-bottom: 0
}

.for-work-hero {
    overflow: hidden;
    padding: 0;
    color: #fff;
    background-color: #6664e9
}

.for-work-hero .container {
    position: relative;
    min-height: 436px;
    padding: 100px 0 80px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (max-width: 740px) {
    .for-work-hero .container {
        display: block;
        min-height: auto;
        padding: 40px 16px 0
    }
}

.for-work-hero .hero-wr {
    position: relative;
    width: 50%
}

@media screen and (max-width: 740px) {
    .for-work-hero .hero-wr {
        width: 100%
    }
}

.for-work-hero h1 {
    font-size: 112px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 32px;
    color: #fff
}

@media screen and (max-width: 740px) {
    .for-work-hero h1 {
        font-size: 40px;
        margin-bottom: 24px
    }
}

.for-work-hero p {
    max-width: 365px;
    color: #fff
}

@media screen and (max-width: 740px) {
    .for-work-hero p {
        margin-bottom: 24px
    }
}

.for-work-hero .img-bg {
    font-size: 0;
    position: absolute;
    z-index: 1;
    top: 28px;
    right: -32px;
    bottom: 0;
    overflow: hidden;
    width: 55.3%;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: 100% 0;
    -webkit-background-size: 100% auto;
    background-size: 100% auto
}

.for-work-hero .img-bg img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0
}

@media screen and (max-width: 740px) {
    .for-work-hero .img-bg {
        position: static;
        width: 100%;
        background-image: none !important
    }

    .for-work-hero .img-bg img {
        position: static;
        display: block;
        max-width: 100%;
        margin-bottom: -12%;
        opacity: 1
    }
}

.for-work-matters {
    padding: 40px 0 74px
}

@media screen and (max-width: 740px) {
    .for-work-matters {
        padding: 34px 0 56px
    }
}

.for-work-matters .container {
    display: block;
    overflow: hidden
}

.for-work-matters .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -40px;
    padding: 50px 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.for-work-matters .row:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 740px) {
    .for-work-matters .row {
        display: block;
        margin: 0 0 40px;
        padding: 0
    }
}

.for-work-matters .row-main {
    margin: 0 -40px;
    padding: 50px 0 64px
}

.for-work-matters .row-main .for-work-matters-h2 {
    max-width: 66.666%;
    padding: 0 40px
}

.for-work-matters .row-main .row {
    margin: 0;
    padding: 0
}

@media screen and (max-width: 740px) {
    .for-work-matters .row-main {
        margin: 0 0 40px;
        padding: 0
    }

    .for-work-matters .row-main .for-work-matters-h2 {
        max-width: none;
        padding: 0
    }
}

.for-work-matters .col {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding: 0 40px
}

@media screen and (max-width: 740px) {
    .for-work-matters .col {
        width: 100%;
        margin-bottom: 30px;
        padding: 0
    }

    .for-work-matters .col:last-child {
        margin-bottom: 0
    }
}

.for-work-matters .col-wide {
    width: 66.666%
}

.for-work-matters .col-wide p {
    font-size: 24px;
    line-height: 1.333em;
    max-width: 544px
}

@media screen and (max-width: 740px) {
    .for-work-matters .col-wide {
        width: 100%
    }

    .for-work-matters .col-wide p {
        font-size: 18px;
        max-width: none
    }
}

.for-work-matters .col-small p {
    max-width: 146px
}

.for-work-matters-h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.229em;
    margin-bottom: 28px;
    color: #6664e9
}

.for-work-matters-h2 h2 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    color: inherit
}

@media screen and (max-width: 740px) {
    .for-work-matters-h2 {
        font-size: 26px;
        margin-bottom: 16px
    }
}

.for-work-matters-h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: .889em;
    margin-top: -4px;
    margin-bottom: 10px
}

.for-work-matters-h3 h3 {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin: 0;
    letter-spacing: 0
}

@media screen and (max-width: 740px) {
    .for-work-matters-h3 {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 5px
    }
}

.for-work-matters p {
    margin: 0
}

.for-work-matters p .theme-text {
    font-weight: 600
}

.for-work-matters p small {
    font-size: 14px;
    line-height: 1.714em
}

.for-work-matters ol {
    list-style: none
}

.for-work-matters ol li {
    counter-increment: matters
}

.for-work-matters ol li .theme-text {
    color: #6664e9
}

.for-work-matters ol li:before {
    font-size: 14px;
    line-height: 1.714em;
    display: block;
    margin-bottom: 8px;
    content: counter(matters, decimal-leading-zero) "."
}

.for-work-slider {
    padding-top: 100px;
    padding-bottom: 74px;
    color: #000;
    background-color: #fcdbdf
}

@media screen and (max-width: 740px) {
    .for-work-slider {
        padding-top: 50px;
        padding-bottom: 50px
    }
}

.for-work-slider .container {
    display: block;
    margin-bottom: 52px
}

@media screen and (max-width: 740px) {
    .for-work-slider .container {
        margin-bottom: 46px
    }
}

.for-work-slider .title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #6664e9
}

.for-work-slider .title h2 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

@media screen and (max-width: 740px) {
    .for-work-slider .title {
        font-size: 26px
    }
}

.for-work-slider .subtitle {
    font-size: 24px;
    font-weight: 600;
    max-width: 452px;
    margin: 0;
    letter-spacing: normal;
    color: #000
}

.for-work-slider .subtitle h3 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    letter-spacing: inherit;
    color: inherit
}

@media screen and (max-width: 740px) {
    .for-work-slider .subtitle {
        font-size: 18px;
        max-width: none
    }
}

.for-work-slider .swiper-slide {
    text-align: center
}

@media screen and (max-width: 740px) {
    .for-work-slider .swiper-slide {
        padding: 0 0 0 16px
    }
}

.for-work-slider .phone-img {
    font-size: 0
}

.for-work-slider .phone-img img {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto
}

.for-work-slider .phone-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3333;
    margin-top: 30px
}

@media screen and (max-width: 740px) {
    .for-work-slider .phone-title {
        font-size: 18px;
        margin-top: 10px
    }
}

.for-work-slider .phone-text {
    font-size: 14px;
    line-height: 1.71
}

.for-work-graph {
    padding-top: 130px;
    padding-bottom: 124px
}

@media screen and (max-width: 740px) {
    .for-work-graph {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

.for-work-graph .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

@media screen and (max-width: 740px) {
    .for-work-graph .container {
        display: block
    }
}

.for-work-graph .col {
    padding-right: 16px;
    -webkit-flex-basis: 37%;
    -ms-flex-preferred-size: 37%;
    flex-basis: 37%
}

@media screen and (max-width: 740px) {
    .for-work-graph .col {
        padding-right: 0
    }
}

.for-work-graph .col-graph {
    padding-right: 0;
    -webkit-flex-basis: 63%;
    -ms-flex-preferred-size: 63%;
    flex-basis: 63%
}

.for-work-graph .col-graph img {
    display: block;
    max-width: 100%;
    margin-left: auto
}

@media screen and (max-width: 740px) {
    .for-work-graph .col-graph {
        margin-top: 45px;
        margin-right: -8px;
        margin-left: -8px
    }
}

.for-work-graph .title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    color: #6664e9
}

@media screen and (max-width: 740px) {
    .for-work-graph .title {
        font-size: 26px;
        line-height: 1.231em;
        margin-bottom: 8px
    }
}

.for-work-graph .subtitle {
    font-size: 24px;
    font-weight: 600;
    max-width: 240px;
    margin: 0;
    letter-spacing: normal;
    color: #000
}

.for-work-graph .subtitle h3 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    letter-spacing: inherit;
    color: inherit
}

@media screen and (max-width: 740px) {
    .for-work-graph .subtitle {
        font-size: 18px;
        max-width: none
    }
}

.for-work-form {
    padding-top: 84px;
    padding-bottom: 90px;
    color: #fff;
    background-color: #222
}

@media screen and (max-width: 740px) {
    .for-work-form {
        padding-top: 40px;
        padding-bottom: 54px
    }
}

.for-work-form .container {
    display: block;
    max-width: 736px
}

@media screen and (max-width: 740px) {
    .for-work-form .container {
        max-width: none
    }
}

.for-work-form .title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 64px;
    text-align: center;
    color: #fff
}

.for-work-form .title h2 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0
}

@media screen and (max-width: 740px) {
    .for-work-form .title {
        font-size: 32px;
        margin-bottom: 40px;
        text-align: center
    }
}

.for-work-form .form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (max-width: 740px) {
    .for-work-form .form {
        display: block
    }
}

.for-work-form .field {
    width: -webkit-calc(50% - 16px);
    width: calc(50% - 16px);
    margin-bottom: 24px
}

.for-work-form .field-full {
    width: 100%
}

.for-work-form .field textarea {
    height: 184px
}

@media screen and (max-width: 740px) {
    .for-work-form .field {
        width: 100%
    }

    .for-work-form .field textarea {
        height: 104px
    }
}

.for-work-form .button {
    min-width: 160px;
    margin-left: auto;
    text-align: center;
    color: #6664e9
}

@media screen and (max-width: 740px) {
    .for-work-form .button {
        width: 100%;
        min-width: auto
    }
}

.articles-page ul {
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

.articles-hero {
    -webkit-transition: background-color .3s, color .3s;
    -o-transition: background-color .3s, color .3s;
    transition: background-color .3s, color .3s
}

.articles-hero-head {
    overflow: hidden;
    border-bottom: 1px solid hsla(0, 0%, 100%, .4)
}

.articles-hero-head .container {
    padding: 0 80px 0 0;
    -webkit-transition: padding .3s;
    -o-transition: padding .3s;
    transition: padding .3s;
    position: relative
}

@media screen and (max-width: 740px) {
    .articles-hero-head .container {
        padding: 0 48px 0 0
    }
}

.articles-hero-nav {
    position: relative
}

.articles-hero-nav, .articles-hero-nav-inner {
    width: 100%;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

.articles-hero-nav-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    margin: 0;
    padding: 22px 0 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

@media screen and (max-width: 740px) {
    .articles-hero-nav-inner {
        padding: 14px 0 13.6px
    }
}

.articles-hero-nav li {
    margin: 0 15px
}

@media screen and (max-width: 740px) {
    .articles-hero-nav li {
        margin: 0 11px
    }

    .articles-hero-nav li:first-child {
        padding-left: 16px
    }
}

.articles-hero-nav li:first-child {
    margin-left: 0
}

.articles-hero-nav li:last-child {
    margin-right: 0;
    padding-right: 10%
}

.articles-hero-nav a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.214em
}

@media screen and (max-width: 740px) {
    .articles-hero-nav a {
        font-size: 12px;
        line-height: 1.25em
    }
}

.articles-hero-nav a span:after {
    height: 2px
}

.articles-hero-nav a.active span:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.articles-hero-nav:after {
    display: block;
    width: 10%;
    height: 44px;
    content: "";
    pointer-events: none;
    -webkit-box-shadow: inset -30px 0 25px 0 currentcolor;
    box-shadow: inset -30px 0 25px 0 currentcolor;
    position: absolute;
    top: 0;
    right: 0
}

.articles-hero-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80px;
    -webkit-transition: width .3s, color .3s;
    -o-transition: width .3s, color .3s;
    transition: width .3s, color .3s;
    background-color: currentColor;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}

@media screen and (max-width: 740px) {
    .articles-hero-search {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        width: 100%;
        -webkit-transition: color .3s, -webkit-transform .3s;
        transition: color .3s, -webkit-transform .3s;
        -o-transition: transform .3s, color .3s;
        transition: transform .3s, color .3s;
        transition: transform .3s, color .3s, -webkit-transform .3s;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        border-left: 1px solid hsla(0, 0%, 100%, .4);
        right: 48px
    }
}

.articles-hero .search-input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    position: relative
}

.articles-hero .search-input input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    width: -webkit-calc(100% - 31px);
    width: calc(100% - 31px);
    margin: 0;
    padding: 0;
    color: inherit;
    border: none;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.214em
}

@media screen and (max-width: 740px) {
    .articles-hero .search-input input {
        width: 100%;
        padding-right: 16px
    }
}

.articles-hero .search-input input::-webkit-input-placeholder {
    opacity: .5;
    color: currentColor
}

.articles-hero .search-input input:-ms-input-placeholder {
    opacity: .5;
    color: currentColor
}

.articles-hero .search-input input:-moz-placeholder, .articles-hero .search-input input::-moz-placeholder {
    opacity: .5;
    color: currentColor
}

.articles-hero .search-input input:active, .articles-hero .search-input input:focus, .articles-hero .search-input input:hover {
    outline: 0 !important;
    -webkit-appearance: none
}

.articles-hero .search-input button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 31px;
    padding: 6px 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    opacity: .5
}

@media screen and (max-width: 740px) {
    .articles-hero .search-input button {
        width: 48px;
        padding: 17px 16.5px
    }
}

.articles-hero .search-input button svg {
    pointer-events: none;
    color: inherit
}

.articles-hero .search-input button:hover {
    opacity: 1
}

.articles-hero .search-input-line {
    height: 1px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    background-color: currentColor;
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 8px
}

.articles-hero-result {
    height: 0;
    position: relative;
    z-index: 10
}

.articles-hero-result.is-active .search-result {
    visibility: visible;
    -webkit-transition: opacity .3s, visibility .3s 0s;
    -o-transition: opacity .3s, visibility .3s 0s;
    transition: opacity .3s, visibility .3s 0s;
    pointer-events: auto;
    opacity: 1
}

.articles-hero-result .no-result {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%
}

.articles-hero .search-result {
    visibility: hidden;
    width: 100%;
    max-width: 352px;
    padding-top: 6px;
    -webkit-transition: opacity .3s, visibility .3s .3s;
    -o-transition: opacity .3s, visibility .3s .3s;
    transition: opacity .3s, visibility .3s .3s;
    pointer-events: none;
    opacity: 0;
    color: #4e4e4e;
    position: absolute;
    top: -12px;
    right: 0
}

@media screen and (max-width: 740px) {
    .articles-hero .search-result {
        max-width: none;
        padding-right: 8px;
        padding-left: 8px
    }
}

.articles-hero .search-result-inner {
    overflow: auto;
    height: auto;
    min-height: 60px;
    max-height: 396px;
    margin: 0;
    padding: 0 40px 0 16px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 8px -6px rgba(0, 0, 0, .21);
    box-shadow: 0 6px 8px -6px rgba(0, 0, 0, .21)
}

.articles-hero .search-result li {
    margin: 16px 0
}

.articles-hero .search-result a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    color: #4e4e4e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.286em
}

.articles-hero .search-result a:hover {
    color: #6664e9
}

.articles-hero .search-result-head {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover
}

.articles-hero .search-result-body {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit
}

.articles-hero .search-result:before {
    width: 0;
    height: 0;
    margin-left: -7px;
    content: "";
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    border-left: 7px solid transparent;
    position: absolute;
    top: 0;
    left: 50%
}

@media screen and (max-width: 740px) {
    .articles-hero .search-result:before {
        margin-left: 0;
        left: 48px
    }
}

.articles-hero-body {
    padding-top: 74px;
    padding-bottom: 80px
}

@media screen and (max-width: 740px) {
    .articles-hero-body {
        padding-top: 15px;
        padding-bottom: 34px
    }

    .articles-hero-body .container {
        display: block
    }
}

.articles-hero-body .container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.articles-hero-img {
    -webkit-flex-basis: 488px;
    -ms-flex-preferred-size: 488px;
    flex-basis: 488px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    padding-left: 40px
}

@media screen and (max-width: 740px) {
    .articles-hero-img {
        margin-bottom: 8px;
        padding-left: 0
    }
}

.articles-hero-img a {
    display: block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #f4f4f4
}

.articles-hero-img img {
    display: block;
    max-width: 100%
}

.articles-hero-text {
    -webkit-flex-basis: 400px;
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px
}

.articles-hero-text .article-author {
    margin: 0 0 1.429em;
    opacity: .5;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.214em
}

@media screen and (max-width: 740px) {
    .articles-hero-text .article-author {
        margin-bottom: .417em;
        font-size: 12px;
        line-height: 1.667em
    }
}

.articles-hero-text .article-title {
    margin: 0 0 .406em;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.219em
}

@media screen and (max-width: 740px) {
    .articles-hero-text .article-title {
        margin-bottom: .636em;
        font-size: 22px;
        line-height: 1.091em
    }
}

.articles-hero-text .article-descr {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em
}

@media screen and (max-width: 740px) {
    .articles-hero-text .article-descr {
        font-size: 14px;
        line-height: 1.429em
    }
}

.articles-hero-text .article-more {
    display: inline-block;
    margin: 4.25em 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25em
}

@media screen and (max-width: 740px) {
    .articles-hero-text .article-more {
        margin-top: 2.545em;
        letter-spacing: .92px;
        font-size: 11px;
        line-height: 1.273em
    }

    .articles-hero-text .article-more span:after {
        margin-top: 3px
    }
}

.articles-hero-text .article-more span:after {
    height: 2px;
    margin-top: 2px;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.articles-hero.search-active .articles-hero-head .container {
    padding-right: 192px
}

@media screen and (max-width: 740px) {
    .articles-hero.search-active .articles-hero-head .container {
        padding-right: 48px
    }
}

.articles-hero.search-active .articles-hero-search {
    width: 192px
}

@media screen and (max-width: 740px) {
    .articles-hero.search-active .articles-hero-search {
        width: 100%;
        -webkit-transform: translateX(48px);
        -ms-transform: translateX(48px);
        transform: translateX(48px)
    }
}

.articles-hero.search-active .search-input button {
    opacity: 1
}

.articles-hero.search-active .search-input-line {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

@media screen and (max-width: 740px) {
    .articles-hero.search-active .search-input-line {
        display: none
    }
}

.articles-list-wr {
    padding: 80px 0 46px
}

@media screen and (max-width: 740px) {
    .articles-list-wr {
        padding: 24px 0 30px
    }
}

.articles-list-wr .container {
    display: block
}

.articles-list-wr .pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 70px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em
}

@media screen and (max-width: 740px) {
    .articles-list-wr .pagination {
        margin-top: 46px;
        font-size: 14px;
        line-height: 1.714em
    }
}

.articles-list-wr .pagination-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .articles-list-wr .pagination-btn span {
        display: none
    }
}

.articles-list-wr .pagination-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0
}

.articles-list-wr .pagination-links li {
    margin: 0 4px
}

@media screen and (max-width: 740px) {
    .articles-list-wr .pagination-links li {
        margin: 0
    }
}

.articles-list-wr .pagination-links li:first-child {
    margin-left: 0
}

.articles-list-wr .pagination-links li:last-child {
    margin-right: 0
}

.articles-list-wr .pagination-links a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0 12px;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 32px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .articles-list-wr .pagination-links a {
        padding: 0 10px;
        width: 28px;
        height: 28px;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        line-height: 28px
    }
}

.articles-list-wr .pagination-links a.active {
    background-color: #6664e9;
    color: #fff;
    position: relative
}

.articles-list-wr .pagination-links a span {
    display: inline-block;
    vertical-align: middle
}

.articles-list-wr .pagination-links a span:after {
    display: none
}

.articles-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -16px;
    padding: 0
}

@media screen and (max-width: 740px) {
    .articles-list {
        display: block;
        margin: 0 0 24px
    }
}

.articles-list .articles-item {
    -webkit-flex-basis: 33.333%;
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    width: 33.333%;
    margin-bottom: 42px;
    padding: 0 16px
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item {
        width: 100%;
        margin-bottom: 16px;
        padding: 0
    }

    .articles-list .articles-item:last-child {
        margin-bottom: 0
    }
}

.articles-list .articles-item-wr {
    display: block
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item-wr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

.articles-list .articles-item-wr:hover .article-title {
    color: #6664e9
}

.articles-list .articles-item-head {
    overflow: hidden;
    height: 189.29px;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #f4f4f4;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover
}

@media screen and (max-width: 1024px) {
    .articles-list .articles-item-head {
        height: 150.3px
    }
}

@media screen and (max-width: 800px) {
    .articles-list .articles-item-head {
        height: 139.34px
    }
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item-head {
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        margin-right: 16px;
        margin-bottom: 0
    }
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item-body {
        padding-top: 9px
    }
}

.articles-list .articles-item .article-author {
    margin: 0 0 .357em;
    opacity: .5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.214em
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item .article-author {
        display: none
    }
}

.articles-list .articles-item .article-title {
    margin: 0 0 .875em;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item .article-title {
        margin: 0;
        font-size: 14px;
        line-height: 1.429em
    }
}

.articles-list .articles-item .article-descr {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.714em
}

@media screen and (max-width: 740px) {
    .articles-list .articles-item .article-descr {
        display: none
    }
}

.subscribe-block {
    margin-bottom: 60px;
    padding-top: 40px;
    position: relative
}

@media screen and (max-width: 740px) {
    .subscribe-block {
        margin: 0 -16px 24px;
        padding-top: 0
    }
}

.subscribe-block .for-mobile {
    display: none
}

@media screen and (max-width: 740px) {
    .subscribe-block .for-mobile {
        display: block;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        min-height: 240px;
        padding: 31px 16px 27px;
        position: relative;
        z-index: 1
    }

    .subscribe-block .for-mobile .section-descr {
        display: block
    }
}

.subscribe-block .close {
    display: none
}

@media screen and (max-width: 740px) {
    .subscribe-block .close {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
        position: absolute;
        z-index: 2;
        top: 8px;
        right: 8px
    }

    .subscribe-block .close svg {
        width: 30px;
        height: 30px
    }
}

.subscribe-block-inner, .subscribe-block .article-subscribe-msg {
    background-color: #fcdbdf
}

.subscribe-block-inner {
    padding: 110px 64px 85px
}

@media screen and (max-width: 740px) {
    .subscribe-block-inner {
        padding: 0
    }
}

.subscribe-block .left-image {
    width: 38%;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0
}

@media screen and (max-width: 740px) {
    .subscribe-block .left-image {
        width: 100%;
        right: 0
    }
}

.subscribe-block .left-image-inner {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: contain;
    background-size: contain
}

@media screen and (max-width: 740px) {
    .subscribe-block .left-image-inner {
        background-position: 96% bottom;
        -webkit-background-size: auto 95%;
        background-size: auto 95%
    }
}

.subscribe-block .article-subscribe {
    width: 62%;
    margin-left: auto;
    position: relative
}

@media screen and (max-width: 740px) {
    .subscribe-block .article-subscribe {
        visibility: hidden;
        width: 100%;
        padding: 31px 16px 32px;
        -webkit-transition: opacity .3s, visibility 0s .3s;
        -o-transition: opacity .3s, visibility 0s .3s;
        transition: opacity .3s, visibility 0s .3s;
        opacity: 0;
        background-color: #fcdbdf;
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

    .subscribe-block .article-subscribe .section-title {
        margin-bottom: 21px
    }

    .subscribe-block .article-subscribe.is-active {
        visibility: visible;
        -webkit-transition: opacity .3s, visibility 0s 0s;
        -o-transition: opacity .3s, visibility 0s 0s;
        transition: opacity .3s, visibility 0s 0s;
        opacity: 1
    }
}

.subscribe-block .article-subscribe-msg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: opacity .3s, visibility 0s .3s;
    -o-transition: opacity .3s, visibility 0s .3s;
    transition: opacity .3s, visibility 0s .3s;
    text-align: left;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

@media screen and (max-width: 740px) {
    .subscribe-block .article-subscribe-msg {
        padding: 0 16px;
        z-index: 3
    }

    .subscribe-block .article-subscribe-msg .section-descr {
        display: block
    }
}

.subscribe-block .article-subscribe.is-success .for-success {
    visibility: visible;
    -webkit-transition: opacity .3s, visibility 0s 0s;
    -o-transition: opacity .3s, visibility 0s 0s;
    transition: opacity .3s, visibility 0s 0s;
    opacity: 1
}

.subscribe-block .section-title {
    max-width: 384px;
    margin-bottom: .625em;
    color: #6664e9;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.219em
}

@media screen and (max-width: 740px) {
    .subscribe-block .section-title {
        margin-bottom: 10px;
        font-size: 26px;
        line-height: 32px
    }
}

.subscribe-block .section-title h2 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit
}

.subscribe-block .section-descr {
    max-width: 384px;
    margin: 0 0 1em;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.333em
}

@media screen and (max-width: 740px) {
    .subscribe-block .section-descr {
        display: none;
        max-width: 62.5%;
        min-height: 60px;
        margin-bottom: 26px;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px
    }
}

.subscribe-block .input-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 40px
}

@media screen and (max-width: 740px) {
    .subscribe-block .input-row {
        display: block;
        margin-top: 0
    }
}

.subscribe-block .field {
    display: block
}

.subscribe-block .field-wr {
    width: 100%
}

@media screen and (max-width: 740px) {
    .subscribe-block .field-wr {
        margin-bottom: 20px
    }
}

.subscribe-block .field .input {
    width: 100%;
    padding: 16px 0 13px;
    color: #000;
    border-bottom: 1px solid #000;
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.214em
}

@media screen and (max-width: 740px) {
    .subscribe-block .field .input {
        padding: 6px 0;
        line-height: 1.214em
    }
}

.subscribe-block .field .input::-webkit-input-placeholder {
    color: #222
}

.subscribe-block .field .input:-ms-input-placeholder {
    color: #222
}

.subscribe-block .field .input:-moz-placeholder, .subscribe-block .field .input::-moz-placeholder {
    opacity: 1;
    color: #222
}

.subscribe-block .field .input:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.subscribe-block .field .input:-webkit-autofill, .subscribe-block .field .input:-webkit-autofill:active, .subscribe-block .field .input:-webkit-autofill:focus, .subscribe-block .field .input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0 30px #fcdbdf inset !important;
    -webkit-text-fill-color: #000 !important
}

.subscribe-block .field.field-error .input {
    border-color: #c11;
    -webkit-box-shadow: none;
    box-shadow: none
}

.subscribe-block .field.field-error .field-hint {
    color: #c11;
    position: static
}

.subscribe-block .field.field-error .field-descr {
    margin-top: 18px;
    position: absolute;
    top: 100%
}

@media screen and (max-width: 740px) {
    .subscribe-block .field.field-error .field-descr {
        margin-top: 0;
        margin-bottom: -7px;
        position: static
    }
}

.subscribe-block .field-descr, .subscribe-block .field.field-error .field-hint {
    display: block;
    margin: .385em 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.231em
}

@media screen and (max-width: 740px) {
    .subscribe-block .field.field-error .field-hint {
        margin-top: 2px
    }
}

.subscribe-block .field-descr {
    opacity: .3;
    color: #222
}

@media screen and (max-width: 740px) {
    .subscribe-block .field-descr {
        margin-top: 10px
    }
}

.subscribe-block .button {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 160px;
    color: #6664e9;
    line-height: 1.143em
}

@media screen and (max-width: 740px) {
    .subscribe-block .button {
        font-size: 14px
    }
}

.subscribe-block .button-wr {
    padding-left: 32px
}

@media screen and (max-width: 740px) {
    .subscribe-block .button-wr {
        padding-left: 0
    }
}

.article-page .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.article-page h1 {
    width: 79%;
    margin: .8em auto .8em 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 1
}

@media screen and (max-width: 1024px) {
    .article-page h1 {
        font-size: 40px
    }
}

@media screen and (max-width: 740px) {
    .article-page h1 {
        width: 100%;
        font-size: 6.9vw
    }
}

.article-page .article-image {
    width: 100%;
    padding-top: 52.4%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover
}

.article-page .meta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 79%;
    padding: 28px 0;
    border-bottom: 2px solid rgba(34, 34, 34, .1)
}

@media screen and (max-width: 740px) {
    .article-page .meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        padding: 16px 0 0;
        border-bottom: none
    }
}

.article-page .article-body {
    width: 100%;
    line-height: 1.33
}

.article-page .article-body pre {
    white-space: normal
}

.article-page .article-body strong {
    display: block;
    width: 117%;
    margin: 2em 0;
    font-size: 24px
}

@media screen and (max-width: 740px) {
    .article-page .article-body strong {
        width: 100%;
        margin: 1.4em 0;
        font-size: 14px
    }
}

.article-page .article-body q {
    width: 100%;
    margin: 1.67em 0;
    line-height: 1.22
}

@media screen and (max-width: 1024px) {
    .article-page .article-body q {
        margin: 1.4em 0
    }
}

.article-page .article-body p, .article-page .article-body ul {
    width: 68%;
    margin-left: 10.5%
}

@media screen and (max-width: 740px) {
    .article-page .article-body p, .article-page .article-body ul {
        width: 100%;
        margin-left: 0
    }
}

.article-page .article-body .video-wr {
    width: 100%;
    margin: 80px 0;
    padding-top: 56%;
    position: relative
}

@media screen and (max-width: 740px) {
    .article-page .article-body .video-wr {
        margin: 37px 0
    }
}

.article-page .article-body .video-wr iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.article-page .article-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 33px 0;
    border-top: 2px solid rgba(34, 34, 34, .1)
}

@media screen and (max-width: 740px) {
    .article-page .article-footer {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top: none
    }
}

.article-page .tags {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    vertical-align: middle;
    font-size: 14px
}

.article-page .tags, .article-page .tags .tags-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.article-page .tags .tags-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .article-page .tags .tags-title {
        display: none
    }
}

.article-page .tags .tags-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 0 10px;
    padding: 0;
    list-style: none
}

@media screen and (max-width: 740px) {
    .article-page .tags .tags-list {
        margin-bottom: 28px;
        margin-left: 0
    }
}

.article-page .tags .tags-item a {
    display: block;
    margin: 2px;
    padding: 7px 9px;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    -o-transition: box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s;
    letter-spacing: .92px;
    text-transform: uppercase;
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #e14949;
    -webkit-box-shadow: 0 0 0 0 #e14949;
    box-shadow: 0 0 0 0 #e14949;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25
}

.article-page .tags .tags-item a:hover {
    -webkit-box-shadow: 0 0 0 2px #e14949;
    box-shadow: 0 0 0 2px #e14949
}

.article-page .subscribe-block {
    width: 100%
}

.article-page .author {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 740px) {
    .article-page .author {
        margin-bottom: 15px
    }
}

.article-page .author .author-col, .article-page .author .author-col span {
    display: block
}

.article-page .author .author-photo {
    width: 64px;
    height: 64px;
    margin-right: 14px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover
}

@media screen and (max-width: 740px) {
    .article-page .author .author-photo {
        width: 54px;
        height: 54px
    }
}

.article-page .author .author-name {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3333
}

@media screen and (max-width: 740px) {
    .article-page .author .author-name {
        font-size: 14px;
        line-height: 1.7
    }
}

.article-page .author .date {
    margin-top: 7px;
    color: rgba(34, 34, 34, .5);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2
}

.article-page .social {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: auto 0 auto auto;
    padding-right: 0;
    position: static
}

@media screen and (max-width: 740px) {
    .article-page .social {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        padding: 18px 0;
        border-top: 2px solid rgba(34, 34, 34, .1);
        border-bottom: 2px solid rgba(34, 34, 34, .1)
    }
}

.article-page .social .social-list {
    margin: 0;
    padding-right: 0
}

@media screen and (max-width: 740px) {
    .article-page .social .social-list {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0
    }
}

@media screen and (max-width: 740px) {
    .article-page .social .social-list li {
        padding: 0 20px
    }
}

.article-image-sm {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 65%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-background-size: cover;
    background-size: cover
}

.articles {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -15px
}

@media screen and (max-width: 740px) {
    .articles {
        display: none;
        margin: 0
    }
}

.articles.articles-mobile {
    display: none
}

@media screen and (max-width: 740px) {
    .articles.articles-mobile {
        display: block;
        overflow: hidden;
        width: 100%
    }
}

.articles .article {
    width: 33.3333%;
    margin-bottom: 40px;
    padding: 0 15px
}

@media screen and (max-width: 740px) {
    .articles .article {
        width: 100%;
        padding: 0 8px
    }
}

.articles .article-author {
    color: rgba(34, 34, 34, .5);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2
}

.articles h3 {
    width: 97%;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    line-height: 1
}

.articles p {
    color: #4e4e4e;
    font-size: 14px;
    line-height: 1.7
}

@media screen and (max-width: 740px) {
    .articles p {
        display: none
    }
}

.more-blogs {
    padding-top: 64px;
    background-color: #f5f5f5
}

@media screen and (max-width: 740px) {
    .more-blogs {
        padding-top: 25px
    }
}

.more-blogs .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (max-width: 740px) {
    .more-blogs .container {
        padding: 0
    }
}

.more-blogs .title {
    width: 100%;
    margin-top: 0;
    margin-bottom: 54px;
    text-align: center
}

@media screen and (max-width: 740px) {
    .more-blogs .title {
        margin-bottom: 25px
    }
}

.more-blogs + .footer .footer-navigation {
    border-top: none
}

.breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 0;
    text-transform: uppercase;
    color: #6664e9;
    font-size: 12px;
    font-weight: 600
}

.breadcrumbs .breadcrumbs-item a {
    padding: 0 10px
}

.breadcrumbs .breadcrumbs-item ~ .breadcrumbs-item a {
    border-left: 1px solid
}

.error-page-ie11 {
    height: 0
}

.error-page {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    background-color: #6664e9;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.error-page .container {
    display: block;
    padding: 40px 0;
    text-align: center
}

.error-page h1, .error-page h2 {
    font-weight: 600;
    line-height: 1;
    color: inherit
}

.error-page h1 {
    margin: 0 0 .668em
}

@media screen and (max-width: 740px) {
    .error-page h1 {
        margin-bottom: 12px
    }
}

.error-page h2 {
    font-size: 48px;
    margin: 0 0 1.667em
}

@media screen and (max-width: 740px) {
    .error-page h2 {
        font-size: 22px;
        margin-bottom: 54px
    }
}

.error-page .button span {
    color: #6664e9
}

@media screen and (max-width: 740px) {
    .error-page .button {
        line-height: 1;
        min-width: 176px;
        padding: 14px 22px
    }
}

.error-page + .footer .container {
    border-top: none
}

html[lang=en] .error-page, html[lang=ua] .error-page {
    color: inherit;
    background-color: inherit
}

html[lang=en] .error-page .btn, html[lang=ua] .error-page .btn {
    margin: 0 auto
}

html[lang=en] .error-page .button, html[lang=ua] .error-page .button {
    background-color: #6664e9
}

html[lang=en] .error-page .button span, html[lang=ua] .error-page .button span {
    color: #fff
}

html[lang=en] .error-page .button:hover, html[lang=ua] .error-page .button:hover {
    background: #e75152;
    -webkit-box-shadow: none;
    box-shadow: none
}

.press-room-page .swiper-container {
    width: 100%
}

.press-room-page section {
    padding: 120px 0
}

@media screen and (max-width: 1024px) {
    .press-room-page section {
        padding: 80px 0
    }
}

@media screen and (max-width: 740px) {
    .press-room-page section {
        padding: 40px 0
    }
}

@media screen and (max-width: 740px) {
    .press-room-page .our-story {
        padding-top: 24px
    }

    .press-room-page .our-story .col-left p {
        max-width: 100%;
        width: 100%;
        margin-bottom: 24px
    }

    .press-room-page .our-story .col-left .button {
        margin-bottom: 40px
    }

    .press-room-page .our-story .title {
        margin-bottom: 24px
    }
}

.press-room-page .press-hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 400px;
    padding: 0;
    background-color: #6664e9
}

@media screen and (max-width: 740px) {
    .press-room-page .press-hero {
        height: 200px
    }

    .press-room-page .press-hero h1 {
        width: 50%;
        margin-bottom: 0
    }
}

.press-room-page .press-hero .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1152px;
    height: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    -webkit-background-size: contain;
    background-size: contain
}

.press-room-page .press-hero .container {
    height: 100%;
    padding: 112px 16px
}

@media screen and (max-width: 800px) {
    .press-room-page .press-hero .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 50px 16px
    }
}

.press-room-page .mobile-accordion {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.press-room-page .handorgel__header {
    width: 100%;
    -webkit-box-ordinal-group: 21;
    -webkit-order: 20;
    -ms-flex-order: 20;
    order: 20
}

.press-room-page .handorgel__header__button {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6664e9;
    font-size: 12px;
    line-height: 1.33333;
    border-top: none;
    width: 100%;
    padding-left: 0;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10
}

.press-room-page .handorgel__header__button span {
    position: relative;
    text-transform: uppercase;
    padding-bottom: 6px
}

.press-room-page .handorgel__header__button span:after {
    width: 100%;
    height: 3px;
    content: "";
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    left: 0
}

.press-room-page .handorgel__header__button .text-open {
    display: none;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5
}

.press-room-page .handorgel__header--open .text-close {
    display: none
}

.press-room-page .handorgel__header--open .text-open {
    display: inline
}

.press-room-page .section-body {
    margin-bottom: 0
}

.press-room-page .section-body p {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
    padding-right: 10px
}

@media screen and (max-width: 740px) {
    .press-room-page .section-body p {
        padding-right: 0
    }
}

.press-room-page .section-body q {
    width: 100%;
    margin: 40px 0 0;
    font-size: 130%
}

.press-room-page .section-body q:before {
    display: block;
    text-align: center;
    line-height: .9;
    position: relative;
    right: 0
}

.press-room-page .section-body q:after {
    opacity: 0
}

.press-room-page .section-body .quote-describe {
    margin-top: 16px
}

.press-room-page .section-body .quote-describe + p {
    margin-top: 40px
}

.press-room-page .section-header {
    width: 100%
}

.press-room-page .section-header, .press-room-page .swiper-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.press-room-page .swiper-navigation {
    margin: auto 0 0 auto;
    padding: 0;
    list-style: none
}

@media screen and (max-width: 740px) {
    .press-room-page .swiper-navigation {
        display: none
    }

    .press-room-page .swiper-navigation.navigation-mobile {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        padding-top: 26px
    }
}

.press-room-page .swiper-navigation.navigation-mobile {
    display: none
}

.press-room-page .swiper-navigation button {
    padding: 25px 0 0 25px
}

@media screen and (max-width: 740px) {
    .press-room-page .swiper-navigation button {
        padding: 20px 26px 6px
    }
}

.press-room-page .title {
    color: #6664e9;
    line-height: 1
}

.press-room-page .section-title {
    color: #000;
    line-height: .97
}

.press-room-page .col-left p {
    max-width: 160px;
    margin: 60px 0 16px;
    font-size: 14px;
    line-height: 1.71
}

@media screen and (max-width: 800px) {
    .press-room-page .col-left p {
        margin: 30px 0 16px
    }
}

.press-room-page .achivements {
    padding: 0 16px
}

@media screen and (max-width: 740px) {
    .press-room-page .achivements {
        padding: 0
    }
}

@media screen and (max-width: 800px) {
    .press-room-page .achivements .container {
        width: 100%
    }
}

@media screen and (max-width: 740px) {
    .press-room-page .achivements .container {
        padding: 0
    }
}

.press-room-page .achivements .wrapper {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    padding: 80px 16px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #f5f5f5
}

@media screen and (max-width: 800px) {
    .press-room-page .achivements .wrapper {
        padding: 40px 20px
    }
}

@media screen and (max-width: 740px) {
    .press-room-page .achivements .wrapper {
        -webkit-border-radius: 0;
        border-radius: 0
    }
}

.press-room-page .achivements p {
    width: 100%;
    max-width: 545px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.3333
}

@media screen and (max-width: 740px) {
    .press-room-page .achivements p {
        font-size: 14px;
        line-height: 1.43
    }
}

.press-room-page .achivements .swiper-container {
    margin-top: 80px
}

@media screen and (max-width: 1024px) {
    .press-room-page .achivements .swiper-container {
        margin-top: 50px
    }
}

@media screen and (max-width: 740px) {
    .press-room-page .achivements .swiper-container {
        margin-top: 40px
    }
}

.press-room-page .achivements .swiper-container img {
    width: 100%
}

@media screen and (max-width: 740px) {
    .press-room-page .press br {
        display: none
    }
}

.press-room-page .press .swiper-container {
    margin-top: 40px
}

@media screen and (max-width: 740px) {
    .press-room-page .press .swiper-container {
        margin-top: 20px
    }
}

.press-room-page .assets {
    padding: 80px 0;
    background-color: #222
}

@media screen and (max-width: 740px) {
    .press-room-page .assets {
        padding: 40px 0 24px
    }
}

.press-room-page .assets .container {
    color: #fff
}

.press-room-page .assets p:not([class]) {
    margin-bottom: 40px;
    color: #a8a9a8;
    font-size: 18px;
    line-height: 1.3333
}

@media screen and (max-width: 740px) {
    .press-room-page .assets p:not([class]) {
        margin-bottom: 24px
    }
}

.press-room-page .article .article-meta {
    margin: 24px 0 16px;
    color: #a8a9a8;
    font-size: 14px;
    line-height: 1.71
}

@media screen and (max-width: 1024px) {
    .press-room-page .article .article-meta {
        margin: 18px 0 10px
    }
}

.press-room-page .article .article-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.333;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s
}

@media screen and (max-width: 1024px) {
    .press-room-page .article .article-title {
        font-size: 20px
    }
}

.press-room-page .article .article-title:hover {
    color: #6664e9
}

.press-room-page .article .picture {
    width: 100%;
    margin: 0;
    padding-top: 66%;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: #f5f5f5;
    -webkit-background-size: contain;
    background-size: contain
}

.press-room-page .text-big {
    margin-top: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.33333
}

@media screen and (max-width: 740px) {
    .press-room-page .text-big {
        margin: 16px 0;
        font-size: 18px;
        line-height: 1.444
    }
}

.press-room-page .download-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 544px;
    padding: 76px 0;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-color: hsla(0, 0%, 96.1%, .05)
}

.press-room-page .download-link:hover {
    background-color: hsla(0, 0%, 96.1%, .07)
}

.press-room-page .download-link:hover span:after {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.press-room-page .download-link .link-title {
    margin-bottom: 9px;
    text-align: center;
    font-weight: 600
}

.press-room-page .download-link .link-action {
    width: 100%;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6664e9;
    font-size: 12px;
    line-height: 1.3333
}

.press-room-page .download-link .link-action > * {
    vertical-align: middle
}

.legal-page {
    padding: 0 0 83px;
    scroll-behavior: smooth
}

.legal-page :target:before {
    content: "";
    display: block;
    height: 85px;
    margin: -80px 0 0
}

.legal-page .container {
    max-width: 1024px;
    width: 100%;
    padding: 30px 0 0
}

.legal-page .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

@media screen and (max-width: 740px) {
    .legal-page .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.legal-page .sidebar-menu {
    color: #4d5764;
    font-size: 14px;
    list-style-type: none;
    padding: 0
}

.legal-page .sidebar-menu li {
    padding: 0 0 24px
}

.legal-page .sidebar-menu li:hover {
    font-weight: 600;
    color: #090a0a
}

.legal-page .sidebar-menu li a.active {
    display: block;
    padding: 6px 0 6px 17px;
    border-left: 2px solid #6664e9;
    font-weight: 600;
    color: #090a0a
}

.legal-page .h1 {
    font-size: 40px;
    text-align: center
}

.legal-page h2 {
    margin: 48px 0 16px
}

.legal-page .top-p-margin {
    margin-top: 10px
}

.legal-page .left-side {
    font-size: 14px;
    padding-right: 32px
}

.legal-page .col-left {
    max-width: 242px;
    padding: 0 20px
}

.legal-page .col-right {
    max-width: 760px;
    padding: 0 20px
}

.legal-page a:not(.link-image) span:after {
    content: none
}

.legal-page .content a {
    color: #6664e9;
    border-bottom: 1px solid #6664e9
}

.legal-page .content h2 {
    font-size: 24px
}

.legal-page .content h4 {
    font-size: 16px;
    margin: 16px 0 12px
}

.legal-page .content strong {
    font-weight: 600
}

.legal-page .content li, .legal-page .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5
}

.legal-page .content li {
    margin: 16px 0
}

.legal-page .content li:before {
    content: none
}

.legal-page .content .table-content a {
    font-weight: 500
}

.legal-page .content .no-marker {
    padding-left: 25px
}

.legal-page .content .no-marker li {
    list-style-type: none
}

.legal-page .content ol li::marker {
    font-weight: 600
}

.legal-page .content .legal-table {
    table-layout: fixed;
    border: none;
    font-size: 14px;
    line-height: 1.5
}

.legal-page .content .legal-table .th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    vertical-align: top;
    background: #faf6f7
}

.legal-page .content .legal-table .th:first-of-type, .legal-page .content .legal-table td:first-of-type {
    width: 42%
}

.legal-page .content .legal-table td {
    padding: 16px;
    vertical-align: top
}

.legal-page .content .legal-table .th:nth-child(odd) {
    -webkit-box-shadow: inset -1px 0 0 rgba(24, 27, 37, .1);
    box-shadow: inset -1px 0 0 rgba(24, 27, 37, .1)
}

.legal-page .content .legal-table .th:nth-child(2n) {
    -webkit-box-shadow: none;
    box-shadow: none
}

.legal-page .content .legal-table td:nth-child(odd) {
    -webkit-box-shadow: inset -1px 0 0 #e8e8e9, inset 1px -1px 0 #e8e8e9;
    box-shadow: inset -1px 0 0 #e8e8e9, inset 1px -1px 0 #e8e8e9
}

.legal-page .content .legal-table td:nth-child(2n) {
    -webkit-box-shadow: inset -1px -1px 0 #e8e8e9;
    box-shadow: inset -1px -1px 0 #e8e8e9
}

.legal-page .content .legal-table .th, .legal-page .content .legal-table td {
    border: none
}

@media screen and (min-width: 740px) {
    .legal-page .sticky-legal {
        position: -webkit-sticky;
        position: sticky;
        top: 92px;
        margin: 16px 0
    }
}

@media screen and (max-width: 1024px) {
    .legal-page .h1 {
        font-size: 28px;
        text-align: center;
        padding: 0 20px
    }
}

.v1 .legal-page .sticky-legal {
    position: -webkit-sticky;
    position: sticky
}

.v1 .legal-page :target:before {
    height: 170px;
    margin: -170px 0 0
}

@media screen and (min-width: 740px) {
    .v1 .legal-page .sticky-legal {
        position: -webkit-sticky;
        position: sticky;
        top: 200px;
        height: auto;
        margin: 16px 0
    }
}

.scrolled .global-header:after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-131.92%, rgba(0, 0, 0, .1)), to(transparent));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .1) -131.92%, transparent);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .1) -131.92%, transparent 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) -131.92%, transparent)
}

.global-header {
    position: fixed;
    z-index: 400;
    top: 0;
    width: 100%;
    padding: 20px 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*box-shadow: rgb(23 73 77 / 13%) 0px 0px 33px 11px;*/
    border-bottom: 1px solid rgba(173, 179, 188, .4)
}

.global-header, .theme-light .global-header {
    background: #fff
}

.theme-dark .global-header {
    background: #152340
}

.theme-light .global-header .logo-better-word {
    fill: #090a0a
}

.theme-dark .global-header .logo-better-word {
    fill: #fff
}

.theme-light .global-header .navigation-link {
    color: #090a0a
}

.theme-dark .global-header .navigation-link {
    color: #fff
}

.theme-light .global-header .side-menu {
    border-color: #090a0a
}

.theme-dark .global-header .side-menu {
    border-color: #fff
}

.theme-light .global-header .side-menu .line {
    background-color: #090a0a
}

.theme-dark .global-header .side-menu .line {
    background-color: #fff
}

.global-header .main-navigation .title {
    line-height: 1
}

.global-header .hide {
    display: none
}

.global-header .logo {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.global-header .header-inner-mobile, .global-header .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.global-header .header-inner-mobile {
    z-index: 3
}

@media screen and (max-width: 1800px) {
    .global-header {
        padding-left: 60px;
        padding-right: 60px
    }

    .global-header .header-inner-mobile {
        position: relative;
        z-index: 31;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: auto
    }
}

@media screen and (max-width: 1024px) {
    .global-header {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width: 740px) {
    .global-header {
        margin-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px
    }
}

@media screen and (max-width: 576px) {
    .global-header {
        border: none
    }
}

.global-header .burger, .global-header .mobile-header-right {
    display: none
}

.global-header .side-menu .line {
    position: absolute;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    display: block;
    height: 1.5px;
    width: 100%;
    max-width: 20px;
    background-color: #000;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.global-header .side-menu .line:first-child {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px)
}

.global-header .side-menu .line:last-child {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px)
}

.global-header .side-menu.open .line {
    max-width: 20px;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0)
}

.global-header .side-menu.open .line:first-child {
    -webkit-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg)
}

.global-header .side-menu.open .line:last-child {
    -webkit-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg)
}

.global-header .logo-img-mobile {
    display: none
}

@media screen and (max-width: 1800px) {
    .global-header .logo-img, .global-header .logo-img-home {
        /*height: 48px*/
    }
}

@media screen and (max-width: 1024px) {
    .global-header .mobile-header-right {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 -16px
    }

    .global-header .mobile-header-right .button-red {
        min-width: 132px
    }
}

.global-header .mobile-header-right__item {
    padding: 0 16px
}

.global-header .main-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 1200px) {
    .global-header .main-navigation {
        margin-left: 20px
    }
}

.global-header .main-navigation .navigation-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-transform: capitalize
}

.global-header .main-navigation .navigation-item:not(:last-child) {
    margin-right: 30px
}

@media screen and (max-width: 1800px) {
    .global-header .main-navigation .navigation-item:not(:last-child) {
        margin-right: 32px
    }
}

.global-header .main-navigation .navigation-item:first-child {
    margin-left: 0
}

.global-header .navigation-right {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 500
}

@media screen and (max-width: 576px) {
    .global-header .navigation-right .navigation-item:not(.menu) {
        display: none
    }
}

.global-header .navigation-list {
    position: absolute;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 0;
    padding: 0;
    font-weight: 500;
    list-style: none;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

@media screen and (max-width: 1200px) {
    .global-header .navigation-list {
        display: none
    }
}

.global-header .navigation-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #090a0a;
    padding: 0 6px
}

.global-header .navigation-link .dot {
    margin-top: 5px
}

@media screen and (max-width: 1024px) {
    .global-header .navigation-link {
        padding-left: 0;
        padding-right: 15px
    }

    .global-header .navigation-link.small {
        font-size: 18px;
        line-height: 2.2
    }

    .global-header .navigation-link.active, .global-header .navigation-link:hover {
        color: inherit
    }

    .global-header .navigation-link.active span:after {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.global-header .log-in {
    background: #eff1f4;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    padding: 27px 36px;
    text-decoration: none
}

.theme-light .global-header .log-in {
    background: #eff1f4
}

.theme-dark .global-header .log-in {
    background: hsla(0, 0%, 100%, .2)
}

.global-header .log-in:hover, .theme-light .global-header .log-in:hover {
    background: #dee1e6
}

.theme-dark .global-header .log-in:hover {
    background: hsla(0, 0%, 100%, .4)
}

@media screen and (max-width: 1800px) {
    .global-header .log-in {
        padding: 20px 36px;
        line-height: 1
    }
}

.global-header .link-grey {
    color: #6c727a
}

.global-header .lang {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(0, 0, 0, .5);
    font-weight: 600;
    font-size: 14px;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .global-header .lang {
        display: none
    }
}

.global-header .lang-dropdown {
    position: relative;
    font-weight: 600
}

.global-header .lang-dropdown .lang-button {
    padding: 14px 32px
}

.global-header .lang-dropdown .lang-list {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    background-color: #fff;
    -webkit-transition: opacity .15s, visibility 0s .3s, -webkit-clip-path .3s;
    transition: opacity .15s, visibility 0s .3s, -webkit-clip-path .3s;
    -o-transition: opacity .15s, clip-path .3s, visibility 0s .3s;
    transition: opacity .15s, clip-path .3s, visibility 0s .3s;
    transition: opacity .15s, clip-path .3s, visibility 0s .3s, -webkit-clip-path .3s
}

.global-header .lang-dropdown .lang-title {
    font-size: 1em;
    width: 100%;
    font-weight: 600;
    text-transform: capitalize
}

.global-header .lang-dropdown .lang-title a {
    display: block;
    width: 100%;
    padding: 24px 0;
    color: #000
}

.global-header .lang-dropdown .lang-title a:hover {
    color: #6664e9
}

@media screen and (max-width: 576px) {
    .global-header .logo-img {
        display: none
    }

    .global-header .logo-img-mobile {
        display: block
    }
}

@media only screen and (min-device-width: 375px) and (max-device-height: 812px) and (orientation: landscape) {
    .global-header .logo-img, .global-header .logo-img-home {
        display: none
    }

    .global-header .logo-img-mobile {
        display: block
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 736px) and (orientation: landscape) {
    .global-header .logo-img, .global-header .logo-img-home {
        display: none
    }

    .global-header .logo-img-mobile {
        display: block
    }
}

body.home {
    height: 100%;
    color: #fff;
    padding-top: 0
}

@media screen and (min-width: 1200px) {
    body.home.ready .main__home-section-video {
        -webkit-flex-basis: 54%;
        -ms-flex-preferred-size: 54%;
        flex-basis: 54%
    }

    body.home.ready .main__home-section-video:hover {
        -webkit-flex-basis: 64%;
        -ms-flex-preferred-size: 64%;
        flex-basis: 64%
    }
}

body.home.ready .main__home-section-video .video-btn {
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

body.home.ready .main__home-section-video .video-btn .btn-wrapper {
    opacity: 0
}

body.home.ready .main__home-section-video:hover .video-btn {
    z-index: 1
}

body.home.ready .main__home-section-video:hover .video-btn .btn-wrapper {
    opacity: 1
}

body.home.ready .main__home-section-video:hover .video-btn .btn-wrapper .triangle {
    margin-bottom: 130px;
    max-height: 100vh
}

body.home.scrolled .global-header {
    background: #6664e9
}

body.home.scrolled .global-header:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-131.92%, rgba(0, 0, 0, .2)), to(transparent));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .2) -131.92%, transparent);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .2) -131.92%, transparent 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) -131.92%, transparent)
}

body.home .global-header {
    background: transparent;
    border-bottom: none
}

body.home .global-header .logo .logo-img-home, body.home .global-header .main-navigation {
    opacity: 0;
    -webkit-animation: fadeIn 1s ease-in-out 2.5s forwards;
    animation: fadeIn 1s ease-in-out 2.5s forwards
}

@media screen and (max-width: 800px) {
    body.home .global-header .logo .logo-img-home, body.home .global-header .main-navigation {
        -webkit-animation-delay: 1.5s;
        animation-delay: 1.5s
    }
}

body.home .global-header .main-navigation {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

body.home .global-header .navigation-list {
    position: relative;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 80px
}

body.home .global-header .navigation-link {
    color: #fff
}

body.home .global-header .log-in {
    background: hsla(0, 0%, 100%, .2)
}

body.home .global-header .svg-logo-bg {
    fill: #fff
}

body.home .global-header .svg-logo-char {
    fill: #6664e9
}

body.home .global-header .side-menu {
    border: 1px solid #fff
}

body.home .global-header .side-menu .line {
    background-color: #fff
}

body.home .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-top: 0
}

body.home .main:before {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    min-height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background: #fff;
    z-index: 10;
    -webkit-animation: slide-top 1s ease .5s forwards;
    animation: slide-top 1s ease .5s forwards
}

body.home .main__home-section-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 46%;
    margin-left: -46%;
    background: #6664e9;
    -webkit-animation: start-home__section_step 1s ease-in-out 1.5s forwards;
    animation: start-home__section_step 1s ease-in-out 1.5s forwards;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    overflow: hidden
}

body.home .main__home-section-info ._escape_up, body.home .main__home-section-info ._escape_up-em {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:first-child ._escape_up-em {
    -webkit-animation-delay: 2.6s;
    animation-delay: 2.6s
}

body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:nth-child(2) ._escape_up-em {
    -webkit-animation-delay: 2.68s;
    animation-delay: 2.68s
}

body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:nth-child(3) ._escape_up-em {
    -webkit-animation-delay: 2.75s;
    animation-delay: 2.75s
}

@media screen and (max-width: 800px) {
    body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:first-child ._escape_up-em {
        -webkit-animation-delay: 1.6s;
        animation-delay: 1.6s
    }

    body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:nth-child(2) ._escape_up-em {
        -webkit-animation-delay: 1.68s;
        animation-delay: 1.68s
    }

    body.home .main__home-section-info .title-content-wrapper ._escape_up-wrapper:nth-child(3) ._escape_up-em {
        -webkit-animation-delay: 1.75s;
        animation-delay: 1.75s
    }
}

body.home .main__home-section-info .sub-title ._escape_up-fade-in {
    display: block;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    opacity: 0
}

body.home .main__home-section-info .sub-title ._escape_up-fade-in:first-child {
    -webkit-animation-delay: 2.9s;
    animation-delay: 2.9s
}

body.home .main__home-section-info .sub-title ._escape_up-fade-in:nth-child(2) {
    -webkit-animation-delay: 2.95s;
    animation-delay: 2.95s
}

body.home .main__home-section-info .sub-title ._escape_up-fade-in:nth-child(3) {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

@media screen and (max-width: 800px) {
    body.home .main__home-section-info .sub-title ._escape_up-fade-in:first-child {
        -webkit-animation-delay: 1.9s;
        animation-delay: 1.9s
    }

    body.home .main__home-section-info .sub-title ._escape_up-fade-in:nth-child(2) {
        -webkit-animation-delay: 1.95s;
        animation-delay: 1.95s
    }

    body.home .main__home-section-info .sub-title ._escape_up-fade-in:nth-child(3) {
        -webkit-animation-delay: 2s;
        animation-delay: 2s
    }
}

body.home .main__home-section-info .btn-lg ._escape_up {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

body.home .main__home-section-info .btn-lg ._scale-up {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: 3.2s;
    animation-delay: 3.2s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease
}

@media screen and (max-width: 800px) {
    body.home .main__home-section-info .btn-lg ._escape_up {
        -webkit-animation-delay: 2s;
        animation-delay: 2s
    }

    body.home .main__home-section-info .btn-lg ._scale-up {
        -webkit-animation-delay: 2.2s;
        animation-delay: 2.2s
    }
}

body.home .main__home-section-info .title-content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 125px 20px 0 100px
}

body.home .main__home-section-info .title-content-wrapper .title {
    padding-top: .5em;
    margin-bottom: 0
}

body.home .main__home-section-video {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-transition: -webkit-flex-basis .5s ease-in-out, -webkit-flex-basis .5s ease-in-out;
    transition: -webkit-flex-basis .5s ease-in-out, -webkit-flex-basis .5s ease-in-out;
    -o-transition: flex-basis .5s ease-in-out;
    transition: flex-basis .5s ease-in-out;
    transition: flex-basis .5s ease-in-out, -webkit-flex-basis .5s ease-in-out, -webkit-flex-basis .5s ease-in-out, -ms-flex-preferred-size .5s ease-in-out;
    -webkit-animation: start-home__video_step 1s ease-in-out 1.5s forwards;
    animation: start-home__video_step 1s ease-in-out 1.5s forwards
}

body.home .main__home-section-video .video {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

body.home .main__home-section-video:before {
    content: "";
    position: absolute;
    height: 96px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-131.92%, #000), to(transparent));
    background: -webkit-linear-gradient(top, #000 -131.92%, transparent);
    background: -o-linear-gradient(top, #000 -131.92%, transparent 100%);
    background: linear-gradient(180deg, #000 -131.92%, transparent)
}

body.home .main .sub-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 1em;
    line-height: 1.5
}

@media screen and (max-width: 1800px) {
    body.home .main__home-section-info .title-content-wrapper {
        padding-left: 60px
    }

    body.home .main__home-section-info .title-content-wrapper .title {
        padding-top: .5em
    }

    body.home .global-header .navigation-item:not(:last-child) {
        margin-right: 32px
    }
}

@media screen and (max-width: 1440px) {
    body.home .global-header .navigation-list {
        margin-right: 30px
    }

    body.home .global-header .navigation-item:not(:last-child) {
        margin-right: 25px
    }
}

@media screen and (max-width: 1200px) {
    body.home .global-header .main-navigation {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    body.home .main__home-section-info .title-content-wrapper .title {
        padding-top: 0
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
    body.home .main {
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    body.home .main__home-section-info {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
        margin-left: 0;
        -webkit-animation: none;
        animation: none
    }

    body.home .main .sub-title {
        display: none
    }

    body.home .main div.main__home-section-video {
        width: 100%;
        height: 100%;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -webkit-animation: none;
        animation: none
    }

    body.home .main div.main__home-section-video .video-btn {
        opacity: 0;
        -webkit-animation: fade-in-anim .5s forwards;
        animation: fade-in-anim .5s forwards;
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper {
        opacity: 1
    }

    body.home .main div.main__home-section-video:hover .video-btn .btn-wrapper .triangle {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 1024px) {
    body.home .main__home-section-info {
        max-height: none
    }

    body.home .main__home-section-info .title-content-wrapper {
        padding-left: 40px;
        padding-right: 40px
    }

    body.home .main__home-section-info .sub-title {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (max-width: 800px) {
    body.home .main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    body.home .main .main__home-section-info, body.home .main div.main__home-section-video {
        width: 100%;
        margin: 0;
        -webkit-animation: none;
        animation: none
    }

    body.home .main__home-section-info .title-content-wrapper {
        padding-right: 0;
        padding-top: 0
    }

    body.home .main__home-section-info .title-content-wrapper .title {
        padding-top: 1.2em;
        margin-bottom: .7em
    }

    body.home .main__home-section-info .sub-title {
        display: none
    }

    body.home .main div.main__home-section-video .video-btn {
        opacity: 0;
        z-index: 1;
        top: 0;
        left: 0;
        -webkit-animation: fade-in-anim .5s forwards;
        animation: fade-in-anim .5s forwards;
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper {
        opacity: 1;
        min-width: auto;
        padding: 15px 10px;
        -webkit-border-radius: 9px;
        border-radius: 9px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle {
        margin: 8px 0 40px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle svg {
        width: 23px;
        height: 18px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .label {
        font-size: 14px
    }

    body.home .main div.main__home-section-video:hover .video-btn .btn-wrapper .triangle {
        margin-bottom: 40px
    }

    body.home .main__home-section-video {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

@media screen and (max-width: 740px) {
    body.home .main .main__home-section-info {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    body.home .main .main__home-section-info .title-content-wrapper {
        padding-left: 20px
    }

    body.home .main .main__home-section-info .title-content-wrapper .title {
        padding-top: 1.8em
    }

    body.home .main div.main__home-section-video {
        overflow: hidden
    }

    body.home .main div.main__home-section-video .video-btn {
        height: 100%;
        -webkit-animation-delay: 2.5s;
        animation-delay: 2.5s
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper {
        padding: 10px 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle {
        margin: 4px 0 28px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle svg {
        width: 15px;
        height: 11px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .label {
        font-size: 10px
    }

    body.home .main div.main__home-section-video:hover .video-btn .btn-wrapper .triangle {
        margin-bottom: 28px
    }
}

@media screen and (max-width: 576px) {
    body.home .global-header .logo-img-home {
        display: none
    }
}

@media screen and (max-width: 320px) {
    body.home .main .main__home-section-info .title-content-wrapper .title {
        padding-top: 2.6em
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 920px) and (orientation: landscape) {
    body.home {
        overflow: auto
    }

    body.home.showed-menu {
        overflow: hidden
    }

    body.home .main {
        max-height: none
    }

    body.home .main__home-section-info .title-content-wrapper {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    body.home .main__home-section-info .sub-title {
        display: none
    }

    body.home .main div.main__home-section-video {
        overflow: hidden
    }

    body.home .main div.main__home-section-video .video-btn {
        top: auto;
        left: auto;
        right: 40px;
        bottom: 40px;
        opacity: 0;
        z-index: 1;
        -webkit-animation: fade-in-anim .5s forwards;
        animation: fade-in-anim .5s forwards;
        -webkit-animation-delay: 3.5s;
        animation-delay: 3.5s
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper {
        min-width: auto;
        padding: 10px 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
        opacity: 1
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle {
        margin: 4px 0 28px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .triangle svg {
        width: 15px;
        height: 11px
    }

    body.home .main div.main__home-section-video .video-btn .btn-wrapper .label {
        font-size: 10px
    }

    body.home .main div.main__home-section-video:hover .video-btn .btn-wrapper .triangle {
        margin-bottom: 28px
    }
}

.index-full-video {
    position: fixed;
    top: -1000vh;
    z-index: -1
}

.side-menu-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
    background: #fff;
    z-index: 500;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.side-menu-wrapper.show-menu {
    display: block;
    -webkit-animation: slide-bottom-to-top 1s forwards;
    animation: slide-bottom-to-top 1s forwards
}

.side-menu-wrapper.hide-menu {
    display: block;
    -webkit-animation: slide-top-to-bottom 1s forwards;
    animation: slide-top-to-bottom 1s forwards
}

.side-menu-wrapper .navigation-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    line-height: 1;
    color: #090a0a;
    padding: 0
}

.side-menu-wrapper .navigation-link.active {
    color: #6664e9
}

.side-menu-wrapper .navigation-link.active span:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

@media screen and (max-width: 1024px) {
    .side-menu-wrapper .navigation-link {
        padding-left: 0;
        padding-right: 15px;
        line-height: 1.33
    }

    .side-menu-wrapper .navigation-link.small {
        font-size: 18px;
        line-height: 2.2
    }

    .side-menu-wrapper .navigation-link.active, .side-menu-wrapper .navigation-link:hover {
        color: inherit
    }

    .side-menu-wrapper .navigation-link.active span:after {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0)
    }
}

.side-menu-wrapper .two-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%
}

.side-menu-wrapper .two-columns .col-1 {
    width: 46%;
    z-index: 3
}

.side-menu-wrapper .two-columns .col-1 .col-1-container {
    min-height: 120px
}

.side-menu-wrapper .two-columns .col-1 ._escape_up {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

.side-menu-wrapper .two-columns .col-1 ._scale-up {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

.side-menu-wrapper .two-columns .col-2 {
    width: 54%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    overflow-y: auto;
    padding-left: 160px;
    padding-right: 100px
}

.side-menu-wrapper .two-columns .col-2 ._fade-in {
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.side-menu-wrapper .two-columns .col-1, .side-menu-wrapper .two-columns .col-2 {
    position: relative
}

.side-menu-wrapper .two-columns .col-1-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative
}

.side-menu-wrapper .two-columns .video-btn {
    color: #fff;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    z-index: 1
}

.side-menu-wrapper .two-columns .video-btn .btn-wrapper {
    opacity: 0
}

.side-menu-wrapper .two-columns .video-wrapper:hover .video-btn .btn-wrapper {
    z-index: 5;
    opacity: 1
}

.side-menu-wrapper .two-columns .video-wrapper:hover .video-btn .btn-wrapper .triangle {
    margin-bottom: 130px
}

.side-menu-wrapper .two-columns .video-wrapper {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative
}

.side-menu-wrapper .two-columns .video-wrapper:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    border: none;
    z-index: 1
}

.side-menu-wrapper .two-columns .btn-lg {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: slide-bottom-to-top .7s forwards;
    animation: slide-bottom-to-top .7s forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    z-index: 5
}

.side-menu-wrapper .two-columns .video-wrapper:before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation: slide-bottom-to-top-negative .7s forwards;
    animation: slide-bottom-to-top-negative .7s forwards;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

.side-menu-wrapper .two-columns .video {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    top: -120px;
    left: 0;
    right: 0;
    bottom: 0
}

.side-menu-wrapper .two-columns .btn-lg {
    position: absolute;
    bottom: 0;
    border: none;
    width: 100%;
    color: #fff;
    background: rgb(102 100 233);
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(100%, #6664e9), color-stop(515.16%, #c71819));*/
    /*background: -webkit-linear-gradient(top, #6664e9 100%, #c71819 515.16%);*/
    /*background: -o-linear-gradient(top, #6664e9 100%, #c71819 515.16%);*/
    /*background: linear-gradient(180deg, #6664e9 100%, #c71819 515.16%)*/
}

.side-menu-wrapper .two-columns ._anim-start:before {
    /*background-color: #cf5481*/
    background-color: #ededed
}

.side-menu-wrapper .two-columns ._anim-scale:hover ._anim-outer {
    color: #000
}

.side-menu-wrapper .two-columns ._anim-scale:hover ._anim-start .icon .svg-icon {
    fill: #000
}

.side-menu-wrapper .two-columns .nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 20px 0 60px;
    z-index: 2;
    color: #000
}

.side-menu-wrapper .two-columns .nav-wrapper, .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%
}

.side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper .item:not(:last-of-type) {
    margin-right: 32px
}

@media screen and (max-width: 1800px) {
    .side-menu-wrapper .two-columns .nav-wrapper .head-nav-wrapper .item:not(:last-of-type) {
        margin-right: 32px
    }
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item {
    margin-bottom: 8px
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .title, .side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .title:after {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item ._escape_up {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:first-child ._escape_up {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(2) ._escape_up {
    -webkit-animation-delay: 1.04s;
    animation-delay: 1.04s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(3) ._escape_up {
    -webkit-animation-delay: 1.08s;
    animation-delay: 1.08s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(4) ._escape_up {
    -webkit-animation-delay: 1.12s;
    animation-delay: 1.12s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(5) ._escape_up {
    -webkit-animation-delay: 1.16s;
    animation-delay: 1.16s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(6) ._escape_up {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(7) ._escape_up {
    -webkit-animation-delay: 1.24s;
    animation-delay: 1.24s
}

.side-menu-wrapper .two-columns .nav-wrapper .main-nav-wrapper .item:nth-child(8) ._escape_up {
    -webkit-animation-delay: 1.28s;
    animation-delay: 1.28s
}

.side-menu-wrapper .two-columns .nav-wrapper .footer-nav-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.side-menu-wrapper .two-columns .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    color: inherit;
    font-weight: 500
}

.side-menu-wrapper .two-columns .nav.social {
    margin-right: 24px
}

.side-menu-wrapper .two-columns .nav.lang {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.side-menu-wrapper .two-columns .nav.lang .item {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 25px
}

.side-menu-wrapper .two-columns .nav.inline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row
}

.side-menu-wrapper .two-columns .nav.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.side-menu-wrapper .two-columns .nav.two-row {
    display: block;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3
}

ul.nav.inline.title.body-1.social._fade-in._anim {
    width: auto !important;
}

.side-menu-wrapper .two-columns .nav.two-row .item {
    padding-bottom: 20px;
    margin-right: 50px
}

.side-menu-wrapper .two-columns .nav.big {
    font-weight: 600;
    font-size: 70px;
    line-height: 1.1
}

.side-menu-wrapper .two-columns .nav .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    cursor: pointer
}

.side-menu-wrapper .two-columns .nav .item .log-in {
    padding: 27px 36px;
    background: #eff1f4;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

.side-menu-wrapper .two-columns .nav .item .log-in:hover {
    background: #dee1e6
}

@media screen and (max-width: 1800px) {
    .side-menu-wrapper .two-columns .col-2 {
        padding-left: 128px;
        padding-right: 60px
    }

    .side-menu-wrapper .two-columns .nav-wrapper {
        padding-bottom: 0px
    }

    .side-menu-wrapper .two-columns .nav .item .log-in {
        padding: 20px 36px;
        -webkit-border-radius: 40px;
        border-radius: 40px
    }
}

@media screen and (max-width: 1440px) {
    .side-menu-wrapper .two-columns .col-2 {
        padding-left: 97px;
        padding-right: 40px
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: none
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 2;
        -webkit-flex: 2 0 0;
        -ms-flex: 2 0 0px;
        flex: 2 0 0
    }
}

@media screen and (max-width: 1024px) {
    .side-menu-wrapper .two-columns .head-main, .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: none
    }

    .side-menu-wrapper .two-columns .nav.two-row .item {
        margin-right: 15px
    }
}

@media screen and (max-width: 800px) {
    .side-menu-wrapper .two-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .side-menu-wrapper .two-columns .col-1, .side-menu-wrapper .two-columns .col-2 {
        width: 100%
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }

    .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 2;
        -webkit-flex: 2 0 0;
        -ms-flex: 2 0 0px;
        flex: 2 0 0
    }

    .side-menu-wrapper .two-columns .head-nav-wrapper, .side-menu-wrapper .two-columns .main-nav-wrapper {
        margin-bottom: 40px
    }

    .side-menu-wrapper .two-columns .video-wrapper {
        display: none
    }

    .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media screen and (max-width: 740px) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: none
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 2;
        -webkit-flex: 2 0 0;
        -ms-flex: 2 0 0px;
        flex: 2 0 0
    }

    .side-menu-wrapper .two-columns .col-2 {
        overflow-y: auto;
        padding-left: 20px
    }

    .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }

    .side-menu-wrapper .two-columns .footer-nav-wrapper .two-row .item {
        padding-bottom: 10px
    }
}

@media screen and (max-width: 576px) {
    .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
        padding-left: 20px;
        padding-right: 20px
    }

    .side-menu-wrapper .two-columns .nav.two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

@media screen and (max-width: 320px) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

    .side-menu-wrapper .two-columns .col-2 {
        overflow-y: auto;
        padding-left: 20px
    }

    .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper, .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
        margin-bottom: 40px
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper {
        padding-bottom: 20px
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }

    .side-menu-wrapper .two-columns .nav .item .log-in {
        padding: 15px 26px
    }

    .side-menu-wrapper .two-columns .nav.two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
    .side-menu-wrapper .two-columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .side-menu-wrapper .two-columns .col-1, .side-menu-wrapper .two-columns .col-2 {
        width: 100%
    }

    .side-menu-wrapper .two-columns .nav-wrapper {
        padding-bottom: 100px
    }

    .side-menu-wrapper .two-columns .nav-wrapper .social {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .side-menu-wrapper .two-columns .head-main {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0
    }

    .side-menu-wrapper .two-columns .head-main .item:first-child {
        -webkit-box-flex: 2;
        -webkit-flex: 2 0 0;
        -ms-flex: 2 0 0px;
        flex: 2 0 0
    }

    .side-menu-wrapper .two-columns .video-wrapper {
        display: none
    }

    .side-menu-wrapper .two-columns .btn-lg, .side-menu-wrapper .two-columns .col-2 {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media only screen and (min-device-width: 374px) and (max-device-height: 765px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

    .side-menu-wrapper .two-columns .col-2 {
        overflow-y: auto;
        padding-left: 55px
    }

    .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper {
        margin-bottom: 80px
    }

    .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
        margin-bottom: 50px
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        opacity: 1
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav[data-intersection] {
        -webkit-animation: none;
        animation: none
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }

    .side-menu-wrapper .two-columns .col-2 .nav.two-row .item {
        padding-bottom: 20px
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: landscape) {
    .side-menu-wrapper .two-columns {
        height: 100%
    }

    .side-menu-wrapper .two-columns .col-2 {
        padding-left: 56px
    }

    .side-menu-wrapper .two-columns .col-2 .head-nav-wrapper {
        margin-bottom: 80px
    }

    .side-menu-wrapper .two-columns .col-2 .main-nav-wrapper {
        margin-bottom: 50px
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        opacity: 1
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .nav[data-intersection] {
        -webkit-animation: none;
        animation: none
    }

    .side-menu-wrapper .two-columns .col-2 .footer-nav-wrapper .two-row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1
    }

    .side-menu-wrapper .two-columns .col-2 .nav.two-row .nav.two-row .item {
        padding-bottom: 20px
    }

    .side-menu-wrapper .main .side-menu-wrapper {
        overflow: hidden
    }
}

.locale-wrapper .lang-btn {
    display: block;
    margin-top: 20px;
    margin-bottom: 25px
}

@media screen and (max-width: 576px) {
    .locale-wrapper .lang-btn {
        margin-bottom: 30px
    }
}

.locale-wrapper ._escape_up_item {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.locale-wrapper .lang-list {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #090a0a;
    list-style-type: none
}

.locale-wrapper .lang-title a {
    display: block;
    padding: 10px 0
}

.locale-wrapper .lang-title:last-child a {
    padding-bottom: 20px
}

.locale-wrapper.active-item ._escape_up_item {
    display: block;
    -webkit-animation: up .5s linear forwards;
    animation: up .5s linear forwards
}

.products, .products .global-header {
    background: #f9f9fd
}

.products .global-header .log-in {
    background: #f9fafb
}

.products .container {
    padding-top: 40px;
    padding-bottom: 40px
}

@media screen and (max-width: 800px) {
    .products .container {
        padding-top: 0;
        padding-bottom: 0
    }
}

.products .main {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.products .main, .products .main .col-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.products .main .col-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.products .main .col {
    display: block;
    position: relative;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    background: #fff;
    -webkit-transition: -webkit-transform .7s ease-in-out;
    transition: -webkit-transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out, -webkit-transform .7s ease-in-out
}

.products .main .col .img {
    max-width: 100%;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 370px
}

.products .main .col .img:after {
    content: "";
    display: block;
    padding-top: 100%
}

.products .main .col .phone-overlay {
    margin-top: -16%;
    margin-bottom: 3%
}

.products .main .col .phone-screen {
    width: auto
}

.products .main .col .desc {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
    margin-bottom: 3%;
    font-weight: 600
}

.products .main .col .desc, .products .main .col .desc .title-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.products .main .col .desc .title-wrapper {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.products .main .col .desc .title {
    text-align: center;
    font-size: 60px;
    line-height: 1;
    margin-bottom: .5em;
    z-index: 3
}

.products .main .col .desc .sub-title {
    font-size: 16px;
    text-transform: uppercase
}

.products .main .col:first-child {
    margin-right: 20px
}

.products .main .link-image {
    display: block
}

.products .main .link-image .img-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    min-height: 100%
}

.products .main .link-image .img {
    object-fit: cover;
    width: 100%;
    -webkit-transition: -webkit-transform .7s ease-in-out;
    transition: -webkit-transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out, -webkit-transform .7s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    x
    transform: scale(1);
    -o-object-position: top;
    object-position: top
}

.products .main .link-box:hover .img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05)
}

@media screen and (max-width: 1800px) {
    .products .main .col .img {
        height: 330px
    }

    .products .main .col .phone-overlay .phone-screen {
        max-height: 218px
    }

    .products .main .col .desc .title {
        font-size: 44px
    }

    .products .main .col .desc .sub-title {
        font-size: 14px
    }
}

@media screen and (max-width: 1024px) {
    .products .main .container {
        margin: auto;
        padding-top: 20px;
        padding-bottom: 20px
    }

    .products .main .col .img {
        height: 220px
    }

    .products .main .col .desc .phone-overlay .phone-screen {
        max-height: 172px
    }

    .products .main .col .desc .title {
        font-size: 30px
    }
}

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

    ul.col-wrapper._fade-in._anim.positions-list.grid-list {
        display: block;
        grid-template-columns: auto;
    }

    ul.col-wrapper.positions-list > li.link-box.positions-item {
        padding: 0 !important;
    }


    .products .main .col-wrapper, .products .main .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .products .main .container {
        margin: 0;
        padding-top: 30px
    }

    .products .main .col:first-child {
        margin-right: 0;
        margin-bottom: 20px
    }

    .products .main .col {
        max-width: 472px
    }

    .products .main .col .img {
        height: 180px
    }

    .products .main .col .desc .phone-overlay .phone-screen {
        max-height: 120px
    }

    .products .main .col .desc .title {
        font-size: 28px
    }
}

@media screen and (max-width: 576px) {
    .products .main .container {
        padding-bottom: 20px;
        padding-top: 0
    }

    .products .main .col:first-child {
        margin-bottom: 16px
    }

    .products .main .col .desc .phone-overlay .phone-screen {
        max-height: 120px
    }

    .products .main .col .desc .title {
        font-size: 24px
    }

    .products .main .col .desc .sub-title {
        font-size: 8px
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (min-device-height: 1366px) and (max-device-height: 1366px) and (min-width: 1024px) and (max-width: 1024px) {
    .products .main .col-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .products .main .col:first-child {
        margin-right: 0;
        margin-bottom: 20px
    }
}

.theme-light .product-column-blocks {
    color: #090a0a
}

.theme-dark .product-column-blocks {
    color: #fff
}

.theme-light .product-column-blocks {
    background: #fff
}

.theme-dark .product-column-blocks {
    background: #152340
}

.product-column-blocks ._escape_up-fade-in, .product-column-blocks ._fade-in {
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.product-column-blocks .list-wrapper._anim .app-feature {
    opacity: 0
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-animation: up-fade-in .5s ease-out forwards;
    animation: up-fade-in .5s ease-out forwards
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature:first-child {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature:nth-child(2) {
    -webkit-animation-delay: .43s;
    animation-delay: .43s
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature:nth-child(3) {
    -webkit-animation-delay: .56s;
    animation-delay: .56s
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature:nth-child(4) {
    -webkit-animation-delay: .69s;
    animation-delay: .69s
}

.product-column-blocks .list-wrapper._anim[data-intersection] .app-feature:nth-child(5) {
    -webkit-animation-delay: .72s;
    animation-delay: .72s
}

.product-column-blocks .features._anim, .product-column-blocks .features ._anim {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.product-column-blocks .features.has-overlay:after {
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0)
}

.product-column-blocks .features.has-overlay[data-intersection]:after {
    -webkit-animation: scale-up-center 1s ease-out forwards;
    animation: scale-up-center 1s ease-out forwards
}

.theme-light .product-column-blocks.scrolled .global-header:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-131.92%, rgba(0, 0, 0, .1)), to(transparent));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .1) -131.92%, transparent);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .1) -131.92%, transparent 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, .1) -131.92%, transparent)
}

.theme-dark .product-column-blocks.scrolled .global-header:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-131.92%, rgba(0, 0, 0, .2)), to(transparent));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .2) -131.92%, transparent);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .2) -131.92%, transparent 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) -131.92%, transparent)
}

.product-column-blocks .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.product-column-blocks .section-with-apps {
    padding: 80px 0 100px;
    width: 100%
}

.product-column-blocks .section-with-apps .wrapper .subhead-1 {
    margin-bottom: 1.4em
}

.theme-light .product-column-blocks .section-with-apps .wrapper .subhead-1 {
    color: #b1b6e3
}

.theme-dark .product-column-blocks .section-with-apps .wrapper .subhead-1 {
    color: #5e74a9
}

.product-column-blocks .section-with-apps .title {
    text-align: center
}

.product-column-blocks .section-with-apps .title ._escape_up-wrapper:nth-child(2) ._escape_up {
    -webkit-animation-delay: .06s;
    animation-delay: .06s
}

.product-column-blocks .section-with-apps .title ._escape_up-wrapper:nth-child(3) ._escape_up {
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

.product-column-blocks .section-with-apps .title.h2 {
    margin-bottom: 350px
}

.product-column-blocks .section-with-apps.bottom .title.h2 {
    margin-bottom: 1.3em
}

.product-column-blocks .section-with-apps.bottom .title[data-intersection] ._escape_up-wrapper ._escape_up-anim {
    -webkit-animation: up 1s ease-out forwards;
    animation: up 1s ease-out forwards
}

.product-column-blocks .section-with-apps.bottom .title[data-intersection] ._escape_up-wrapper:nth-child(2) ._escape_up-anim {
    -webkit-animation-delay: .06s;
    animation-delay: .06s
}

.product-column-blocks .section-with-apps.bottom .title[data-intersection] ._escape_up-wrapper:nth-child(3) ._escape_up-anim {
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

.product-column-blocks .section-with-apps.bottom .title ._escape_up-anim {
    display: block;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.product-column-blocks .section-with-apps.bottom .join-apps {
    margin-top: -325px
}

.product-column-blocks .phones {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    margin-top: -350px;
    margin-bottom: 160px
}

@media (max-width: 1440px) {
    .product-column-blocks .phones {
        margin-bottom: 0
    }
}

.product-column-blocks .phones .phones-wrapper {
    position: relative;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.product-column-blocks .phones .two-phones {
    width: 960px;
    position: relative;
    top: -90px;
    height: auto;
}

@media screen and (max-width: 1800px) {
    .product-column-blocks .phones .two-phones {
        top: 0;
        width: 750px
    }
}

@media screen and (max-width: 740px) {
    .product-column-blocks .phones .two-phones {
        width: 400px;
    }
}

.product-column-blocks .phones .join-apps {
    position: absolute;
    left: 0;
    top: -210px;
    -webkit-animation-delay: .12s;
    animation-delay: .12s
}

.product-column-blocks .title-wrapper {
    width: 100%
}

.product-column-blocks .title-wrapper .title {
    max-width: 770px;
    margin: 2.5em auto 0;
    text-align: center
}

.theme-light .product-column-blocks .app-features-bg {
    /*background: #eff1f4*/
    background: rgb(175 179 225 / 8%)
}

.theme-dark .product-column-blocks .app-features-bg {
    background: #060f28
}

@media screen and (max-width: 1800px) {
    /*.product-column-blocks .phones .phones-wrapper {*/
    /*    max-width: 450px*/
    /*}*/
    .product-column-blocks .section-with-apps.bottom .join-apps {
        margin-top: -200px
    }
}

@media screen and (max-width: 1440px) {
    .product-column-blocks .section-with-apps {
        padding: 55px 0 70px
    }

    .product-column-blocks .section-with-apps.bottom {
        margin-bottom: 0
    }

    .product-column-blocks .section-with-apps.bottom .join-apps {
        margin-top: -280px
    }

    .product-column-blocks .phones .join-apps .title {
        margin-bottom: 1.3em
    }

    .product-column-blocks .join-apps {
        padding: 25px 30px
    }
}

@media screen and (max-width: 1200px) {
    .product-column-blocks .phones .join-apps {
        top: -55px;
        left: 5%
    }

    .product-column-blocks .section-with-apps.bottom .join-apps {
        margin-top: -100px
    }
}

@media screen and (max-width: 800px) {
    .product-column-blocks .phones .join-apps {
        left: 0
    }

    .product-column-blocks .join-apps {
        padding: 15px 20px;
        max-width: 156px
    }

    .product-column-blocks .section-with-apps.bottom {
        padding-top: 0
    }
}

@media screen and (max-width: 740px) {
    .product-column-blocks .phones {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .product-column-blocks .phones .phones-wrapper {
        margin-bottom: 30px
    }

    .product-column-blocks .phones .join-apps {
        position: static
    }
}

@media screen and (max-width: 576px) {
    .product-column-blocks .section-with-apps {
        padding: 25px 0 50px
    }

    .product-column-blocks .section-with-apps.bottom {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .product-column-blocks .section-with-apps.bottom .join-apps {
        margin-top: 50px
    }
}

.app-feature {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 354px;
    padding: 10px 10px 10px 10px;
    -webkit-border-radius: 12px;
    border-radius: 12px
}

.theme-light .app-feature {
    background: #fff
}

.theme-dark .app-feature {
    background: rgba(25, 40, 70, .8)
}

.app-feature.small {
    width: 295px
}

.app-feature.small .app-feature__icon-wrapper {
    width: 66px;
    height: 66px
}

.app-feature__icon-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 80px;
    width: 80px;
    margin-right: 13px;
    overflow: hidden;
    -webkit-border-radius: 6.64px;
    border-radius: 6.64px
}

.app-feature__icon-wrapper .app-feature__icon {
    width: 100%;
    height: 100%
}

.app-feature__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.app-feature__content .title.subhead-2 {
    margin-bottom: 5px
}

.app-feature__content .f-caption-1, .app-feature__content .f-caption-2 {
    font-family: Gilroy, sans-serif
}

.theme-light .app-feature__content .f-caption-1, .theme-light .app-feature__content .f-caption-2 {
    color: #6c727a
}

.theme-dark .app-feature__content .f-caption-1, .theme-dark .app-feature__content .f-caption-2 {
    color: #fff
}

.app-feature.bg-none {
    background: none
}

.join-apps {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 270px;
    padding: 24px 20px 32px;
    border: 1px solid #b1b6e3;
    -webkit-border-radius: 14px;
    border-radius: 14px
}

.theme-light .join-apps {
    border-color: #b1b6e3
}

.theme-dark .join-apps {
    border-color: rgba(94, 116, 169, .4)
}

/* .join-apps a {
    pointer-events: none
} */

.join-apps .title {
    margin-bottom: 16px;
    text-align: center
}

.join-apps .link {
    display: block;
    max-height: 40px
}

.join-apps .qr-text, .join-apps .qr-wrapper {
    margin-bottom: 24px
}

.join-apps .qr-text {
    text-align: center;
    font-size: 17px
}

.join-apps .qr-gray {
    color: #6b7487
}

.join-apps .theme-dark .qr-gray {
    color: #5e74a9
}

.join-apps .qr-get-app {
    width: 130px;
    padding: 10px;
    margin-bottom: 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dfe3eb
}

.join-apps .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.join-apps .icon:not(:last-child) {
    margin-bottom: 7px
}

.join-apps .icon svg {
    width: 135px
}

.join-apps .icon .img {
    width: 135px;
    height: 40px;
    margin: 0 auto
}

.join-apps .links {
    text-align: center
}

.features {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 200px 0;
    z-index: 2
}

.features.type-2 .features-inner:first-child {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.features.type-2 .features-inner:last-child {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.features.has-overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 0
}

.features.has-overlay:after {
    content: "";
    width: 560px;
    height: 560px;
    background: #fff;
    display: block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -2
}

.theme-light .features.has-overlay:after {
    background: #fff
}

.theme-dark .features.has-overlay:after {
    background: #152340
}

.features.has-overlay.overlay-big .img {
    width: 520px
}

.features.has-overlay.overlay-big:after {
    width: 560px;
    height: 560px
}

.theme-light .features.has-overlay.overlay-gray:after {
    /*background: #eff1f4*/
    background: rgb(175 179 225 / 8%)
}

.theme-dark .features.has-overlay.overlay-gray:after {
    background: #060f28
}

.features .features-inner {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 520px;
    -ms-flex: 0 1 520px;
    flex: 0 1 520px
}

.features .features-inner.features-inner-mid {
    -webkit-flex-basis: 575px;
    -ms-flex-preferred-size: 575px;
    flex-basis: 575px
}

.features .features-inner.features-inner-big {
    -webkit-flex-basis: 600px;
    -ms-flex-preferred-size: 600px;
    flex-basis: 600px
}

@media screen and (max-width: 576px) {
    .features .features-inner.features-inner-big, .features .features-inner.features-inner-mid {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }
}

.features .features-inner.list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.features .features-inner .list-wrapper, .features .features-inner .wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.features .features-inner .list-wrapper {
    padding: 0;
    min-width: 455px
}

.features .features-inner.cta .app-feature {
    width: 100%;
    padding-left: 0;
    margin-bottom: 30px
}

.features .features-inner.cta .app-feature__icon-wrapper {
    margin-right: 30px
}

.features .features-inner.cta .app-feature__content {
    max-width: 100%
}

.features .features-inner.cta .app-feature__title {
    margin-bottom: 1em
}

.theme-light .features .features-inner.cta .app-feature__title .secondary-color {
    color: #b1b6e3
}

.theme-dark .features .features-inner.cta .app-feature__title .secondary-color {
    color: #5e74a9
}

.features .features-inner .symmetric-indent {
    min-width: 445px
}

.features .features-inner .symmetric-indent .app-feature {
    max-width: 342px;
    margin-bottom: 10px
}

.features .features-inner .symmetric-indent .app-feature:nth-child(2) {
    justify-self: flex-end;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features .features-inner .symmetric-indent .app-feature:first-child, .features .features-inner .symmetric-indent .app-feature:nth-child(4) {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.features .features-inner .symmetric-indent.type-1 .app-feature:first-child {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features .features-inner .symmetric-indent.type-1 .app-feature:nth-child(2) {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.features .features-inner .symmetric-indent.type-1 .app-feature:last-child {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.features .features-inner .symmetric-indent.type-2 .app-feature:first-child {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.features .features-inner .symmetric-indent.type-2 .app-feature:nth-child(2) {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features .features-inner .symmetric-indent.type-2 .app-feature:last-child {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.features.has-two-list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.features.has-two-list .features-inner.cta {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.features.has-two-list .features-inner .wrapper {
    min-width: 453px;
    padding: 0;
    margin: 0
}

.features.has-two-list .features-inner .app-feature:not(:last-child) {
    margin-bottom: 40px
}

.features.has-two-list .features-inner:first-child .app-feature:nth-child(odd):first-child {
    margin-left: 50px
}

.features.has-two-list .features-inner:first-child .app-feature:nth-child(odd):last-child {
    margin-left: 30px
}

.features.has-two-list .features-inner:first-child .app-feature:nth-child(2n) {
    justify-self: flex-end;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features.has-two-list .features-inner:first-child .app-feature:nth-child(2n):nth-child(4) {
    margin-right: 50px
}

.features.has-two-list .features-inner:last-child .app-feature:nth-child(odd) {
    justify-self: flex-end;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features.has-two-list .features-inner:last-child .app-feature:nth-child(odd):first-child {
    margin-right: 50px
}

.features.has-two-list .features-inner:last-child .app-feature:nth-child(odd):last-child {
    margin-right: 20px
}

.features.has-two-list .features-inner:last-child .app-feature:nth-child(2n):nth-child(4) {
    margin-left: 50px
}

.features.has-two-list .features-inner .list-wrapper.indent-1 .app-feature:first-child {
    /*margin-bottom: 290px;*/
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features.has-two-list .features-inner .list-wrapper.indent-1 .app-feature:nth-child(2) {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.features.has-two-list .features-inner .list-wrapper.indent-1 .app-feature:nth-child(3) {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end
}

.features.has-two-list .features-inner .list-wrapper.indent-2 .app-feature:first-child, .features.has-two-list .features-inner .list-wrapper.indent-2 .app-feature:nth-child(3) {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-right: 0
}

/*.features.has-two-list .features-inner .list-wrapper.indent-2 .app-feature:nth-child(2) {*/
/*    margin-bottom: 190px*/
/*}*/

.custom-heading {
    font-size: 28px !important;
}

.bottom-features > .features-inner.list > ul > .app-feature:not(:last-child) {
    margin-bottom: 60px !important;
}

.features.has-one-list .features-inner.list {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 115px
}

.features .app-feature-phone {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 500px;
    -ms-flex: 0 1 500px;
    flex: 0 1 500px
}

.features .app-feature-phone .inner, .features .app-feature-phone .phone-frame {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.features .app-feature-phone .phone-frame {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 1440px) {
    /*.features .app-feature-phone .phone-frame {*/
    /*    width: 264px;*/
    /*    height: 534px*/
    /*}*/
    .features .app-feature-phone .phone-frame {
        width: 223px;
        height: 500px;
    }

    .features .app-feature-phone .phone-frame:before {
        content: "" !important;
        /* background-image: url(../content-images/phones/frame.png); */
        background-image: url(../content-images/phones/phone-silver.png) !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: 100% 90% !important;
        background-size: 100% 90% !important;
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        z-index: 2 !important;
    }
}

/*.features .app-feature-phone .phone-frame:before {*/
/*    content: "";*/
/*    !*background-image: url(../content-images/phones/frame.png);*!*/
/*    background-image: url(../content-images/phones/iphone.png);*/
/*    background-repeat: no-repeat;*/
/*    -webkit-background-size: 100% 100%;*/
/*    background-size: 100% 100%;*/
/*    height: 100%;*/
/*    width: 350px;*/
/*    position: absolute;*/
/*    z-index: 2*/
/*}*/
.features .app-feature-phone .phone-frame:before {
    content: "";
    /*background-image: url(../content-images/phones/frame.png);*/
    /*background-image: url(../content-images/phones/iphone.png);*/
    background-image: url(../content-images//phones/phone-silver.png);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 90%;
    background-size: 100% 90%;
    height: 100%;
    width: 346px;
    position: absolute;
    z-index: 2
}

.features .app-feature-phone .phone-screen {
    height: auto;
    width: 588px;
    z-index: 10;
    margin-left: 5px;
}

.features .img {
    height: auto;
    width: 100%
}

.sticky-content-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 1440px) {
    .sticky-content-wrapper .features:last-child {
        margin-bottom: 300px
    }
}

.plan-sticky-container .app-feature-phone .inner {
    margin: 20px 40px
}

.plan-sticky-container .phone-screen, .sticky-container .phone-screen {
    display: none
}

.sticky-wrap {
    position: absolute;
    height: 100%;
    width: auto;
    /*min-width: 264px;*/
    min-width: 800px;
    top: -100px;
    padding-bottom: 300px;
    z-index: 3
}

/*.sticky-wrap .phone-frame {*/
/*    !*width: 353px;*!*/
/*    height: 715px*/
/*}*/
.sticky-wrap .phone-frame {
    /*width: 353px;*/
    /*margin-top: -30px;*/
    height: 775px;
}

@media screen and (max-width: 1800px) {
    .sticky-wrap .phone-frame {
        width: 265px;
        height: 534px
    }
}

body.weightLoss .sticky-wrap {
    top: -45px
}

div#progress-tracking {
    width: 100%;
    margin: 0;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: -webkit-calc(50vh - 303px);
    top: calc(50vh - 303px);
    height: 714px;
    margin: 0 auto;
    /*max-width: 353px;*/
    /*-webkit-flex-basis: 353px;*/
    /*-ms-flex-preferred-size: 353px;*/
    flex-basis: 353px
}

.sticky .inner {
    margin: 0;
    width: 100%;
    height: 100%
}

.sticky .phone-frame {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.sticky .phone-screen {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.sticky .current {
    opacity: 1;
    position: static
}

.top-title-box {
    margin-top: 70px
}

@media screen and (max-width: 1800px) {
    .join-apps {
        max-width: 260px
    }

    .join-apps .icon svg {
        width: 101px;
        height: 30px
    }

    .join-apps .icon .img {
        width: 100px;
        height: 32px
    }

    .features {
        margin: 160px 0
    }

    /*.features .app-feature-phone .phone-screen {*/
    /*    width: 236px*/
    /*}*/
    .features .app-feature-phone .phone-screen {
        width: 380px
    }

    .features.has-overlay:after {
        width: 420px;
        height: 420px
    }

    .app-feature {
        width: 280px;
        padding: 8px 15px 8px 8px
    }

    .app-feature__icon-wrapper {
        width: 60px;
        height: 60px
    }

    .app-feature.small {
        width: 239px
    }

    .app-feature.small .app-feature__icon-wrapper {
        width: 50px;
        height: 50px
    }

    .features .features-inner.cta .app-feature__icon-wrapper {
        margin-right: 20px
    }

    .features.has-two-list .features-inner .list-wrapper.indent-1 .app-feature:first-child {
        margin-bottom: 220px
    }

    .features.has-two-list .features-inner .list-wrapper.indent-2 .app-feature:nth-child(2) {
        margin-bottom: 160px
    }

    .features.has-one-list .features-inner.list {
        margin-top: 95px
    }

    .features.has-overlay.overlay-big .app-feature-phone .img {
        width: 362px
    }

    .features.has-overlay.overlay-big:after {
        width: 530px;
        height: 530px
    }

    .sticky {
        height: 515px;
        top: -webkit-calc(50vh - 257.5px);
        top: calc(50vh - 257.5px)
    }

    .sticky-wrap {
        padding-top: 60px
    }
}

@media screen and (max-width: 1440px) {
    .features {
        margin: 100px 0
    }

    .features.has-one-list {
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .features.has-one-list:nth-child(2n) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .features.has-one-list .features-inner {
        max-width: 420px
    }

    .features.has-one-list .app-feature-phone {
        -webkit-flex-basis: 350px;
        -ms-flex-preferred-size: 350px;
        flex-basis: 350px
    }

    .features.has-two-list:not(.type-2) {
        display: none
    }

    .features.has-two-list.type-2 {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .features .features-inner.list, .sticky-wrap {
        display: none
    }

    .plan-sticky-container .phone-screen, .sticky-container .phone-screen {
        display: block
    }
}

@media screen and (max-width: 800px) {
    .join-apps {
        max-width: 201px
    }

    .join-apps .icon .img {
        width: 78px;
        height: 23px
    }

    div#classes > .features {
        border-bottom: none;
    }
}

@media screen and (max-width: 1024px) {
    .join-apps {
        max-width: 200px
    }
}

@media screen and (max-width: 576px) {
    .features {
        margin: 0;
    }

    .features.has-two-list.type-2 {
        border-bottom: none;
    }

    .features.has-one-list, .features.has-one-list:nth-child(2n) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .features .features-inner {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .features .features-inner .list-wrapper, .features .features-inner .wrapper {
        /*max-width: 275px;*/
        max-width: inherit;
        text-align: center;
    }

    .app-feature {
        display: block;
        padding: 0;
    }

    .features .features-inner.cta .app-feature__icon-wrapper {
        margin: 0 auto 30px;
    }

    .app-feature__content > .subhead-1 {
        font-size: 24px !important;
    }

    .product-column-blocks .phones .two-phones {
        top: 80px;
        margin-bottom: 110px
    }

    .mob-title {
        margin-top: 10px;
        margin-bottom: -100px;
    }

    .features .features-inner.cta {
        margin-bottom: 60px
    }

    .features .features-inner.cta .app-feature {
        margin-bottom: 20px
    }

    .features .features-inner.cta .link {
        margin: 0 auto
    }

    .features .app-feature-phone {
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        width: 100%
    }

    .features .app-feature-phone .inner {
        margin: 0
    }

    .features.has-overlay.overlay-big {
        width: 100%
    }

    .features.has-overlay.overlay-big:after {
        width: 335px;
        height: 335px
    }

    .features.has-overlay.overlay-big .app-feature-phone .img {
        width: 250px
    }
}

@media screen and (max-width: 576px) and (max-width: 320px) {
    .features.has-overlay.overlay-big:after {
        width: 300px;
        height: 300px
    }
}

@media screen and (max-width: 320px) {
    .features.has-overlay.overlay-big:after {
        width: 300px;
        height: 300px
    }
}

@media screen and (max-width: 1200px) {
    .join-apps {
        top: -55px;
        max-width: 200px
    }

    .join-apps a {
        pointer-events: auto
    }

    .join-apps .qr-get-app, .join-apps .qr-text {
        display: none
    }
}

.footer-block, .theme-light .footer-block {
    /*background: #eff1f4*/
    background: rgb(175 179 225 / 8%)
}

.theme-dark .footer-block {
    background: #060f28
}

.footer-block .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 24px
}

.footer-block .container, .footer-block .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.footer-block .nav {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-block .nav.footer-main, .footer-block .nav.footer-social {
    font-weight: 500
}

.footer-block .nav.footer-main .nav-item, .footer-block .nav.footer-social .nav-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.footer-block .nav.footer-main .nav-item:not(:last-child), .footer-block .nav.footer-social .nav-item:not(:last-child) {
    margin-right: 40px
}

.footer-block .footer-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 2.3em;
    padding-bottom: 2em;
    border-bottom: .75px solid #d1d5db
}

.theme-light .footer-block .footer-menu {
    border-color: #d1d5db
}

.theme-dark .footer-block .footer-menu {
    border-color: rgba(94, 116, 169, .5)
}

.footer-block .footer-menu .copyright-wrapper {
    display: none;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.footer-block .footer-legal {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    padding-top: 30px;
    color: #b1b6e3
}

.theme-light .footer-block .footer-legal {
    color: #6c727a
}

.theme-dark .footer-block .footer-legal {
    color: #dde7ff
}

.footer-block .copyright-text {
    margin-bottom: 10px
}

.footer-block .footer-copyright {
    max-width: 385px
}

.footer-block .year {
    color: #b1b6e3
}

.theme-light .footer-block .year {
    color: #6c727a
}

.theme-dark .footer-block .year {
    color: #dde7ff
}

.footer-block .copyright-desc, .theme-light .footer-block .copyright-desc {
    color: #a0a0a0
}

.theme-dark .footer-block .copyright-desc {
    color: #5e74a9
}

.footer-block .footer-legal-links .nav-item:not(:last-child) {
    margin-right: 20px
}

.footer-block .need-help, .theme-light .footer-block .need-help {
    color: #090a0a
}

.theme-dark .footer-block .need-help {
    color: #fff
}

@media screen and (max-width: 1440px) {
    .footer-block .footer-menu .copyright-wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .footer-block .footer-menu .nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer-block .footer-menu .nav.footer-main .nav-item:not(:last-child), .footer-block .footer-menu .nav.footer-social .nav-item:not(:last-child) {
        margin-bottom: 20px;
        margin-right: 0
    }

    .footer-block .footer-menu .copyright-wrapper {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

    .footer-block .footer-main {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-height: 10em;
        -webkit-box-flex: 1;
        -webkit-flex: auto;
        -ms-flex: auto;
        flex: auto
    }

    .footer-block .footer-main .nav-item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .footer-block .footer-social {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .footer-block .footer-legal .footer-copyright {
        display: none
    }

    .footer-block .footer-legal-links {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%
    }

    .footer-block .footer-copyright {
        max-width: 290px
    }
}

@media screen and (max-width: 576px) {
    .footer-block .footer-menu .copyright-wrapper {
        display: none
    }

    .footer-block .footer-main {
        height: auto;
        max-height: none
    }

    .footer-block .footer-main, .footer-block .footer-social {
        -webkit-flex-basis: 70%;
        -ms-flex-preferred-size: 70%;
        flex-basis: 70%
    }

    .footer-block .footer-legal {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .footer-block .footer-legal .footer-copyright {
        display: block
    }

    .footer-block .footer-legal-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px
    }

    .footer-block .footer-legal-links .nav-item:last-child {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1
    }

    .footer-block .footer-legal-links .nav-item {
        margin-bottom: 20px
    }
}

.footer-block-2 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 80px
}

@media screen and (max-width: 740px) {
    .footer-block-2 .container {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding-top: 50px;
        padding-bottom: 50px
    }
}

@media screen and (max-width: 740px) {
    .footer-block-2 .copyright-text {
        margin-bottom: 9px
    }
}

.footer-block-2 .footer-social {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none
}

.footer-block-2 .footer-social .nav-item .nav-link {
    display: block
}

.footer-block-2 .footer-social .nav-item:not(:last-child) {
    margin-right: 4em
}

@media screen and (max-width: 740px) {
    .footer-block-2 .footer-social .nav-item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1em
    }
}

@media screen and (max-width: 740px) {
    .footer-block-2 .footer-social {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        padding: 0
    }
}

.v1.page-landing .title-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    width: 100%
}

@media screen and (max-width: 740px) {
    .v1.page-landing .title-wrapper {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.v1.page-landing .container.content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column
}

.v1.page-landing .list-group-wrapper .h6 {
    margin-bottom: .4em
}

.v1.page-landing .body-2, .v1.page-landing .subhead-1, .v1.page-landing .subhead-2 {
    font-weight: 500
}

.v1.page-landing ._escape_up {
    -webkit-animation-duration: .7s;
    animation-duration: .7s
}

.v1 .link-icon-left {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.v1 .link-icon-left .icon {
    position: relative;
    right: .3em;
    bottom: .05em
}

@media screen and (max-width: 1024px) {
    .v1 .link-icon-left .icon {
        bottom: .1em
    }
}

@media screen and (max-width: 740px) {
    .v1 .wrapper-breadcrumbs {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .v1 .wrapper-breadcrumbs .breadcrumb {
        margin-bottom: 24px
    }
}

.v1 .anchor {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.v1 .anchor .svg-icon {
    width: 1em;
    height: 1em;
    font-size: inherit;
    margin-left: .8em;
    margin-bottom: 2px
}

@media screen and (max-width: 740px) {
    .v1 .anchor {
        -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
        align-self: flex-start
    }
}

.v1 .vacancies-list {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.v1 .positions-container .title-wrapper .title {
    min-width: 280px
}

@media screen and (max-width: 740px) {
    .v1 .positions-container .title-wrapper .title {
        width: 100%;
        min-width: auto
    }
}

.v1 .positions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 2px solid hsla(0, 0%, 100%, .2);
    width: 100%
}

.v1 .positions-item {
    width: 100%;
    border-bottom: 1px solid #c5cad1;
    display: none
}

.v1 .positions-item.show {
    display: block
}

.v1 .position {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(top, #fff, #fff);
    background-image: -o-linear-gradient(top, #fff, #fff);
    background-image: linear-gradient(180deg, #fff, #fff);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 0;
    background-size: 100% 0;
    -webkit-transition: color .3s, -webkit-background-size .3s;
    transition: color .3s, -webkit-background-size .3s;
    -o-transition: color .3s, background-size .3s;
    transition: color .3s, background-size .3s;
    transition: color .3s, background-size .3s, -webkit-background-size .3s
}

@media screen and (min-width: 1024px) {
    .v1 .position:hover {
        -webkit-background-size: 100% 100%;
        background-size: 100% 100%;
        color: #000
    }

    .v1 .position:hover .position-title {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    .v1 .position:hover .icon-arrow {
        fill: #000;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    .v1 .position:hover span:after {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }
}

@media screen and (max-width: 740px) {
    .v1 .position {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: baseline;
        -webkit-align-items: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        padding: 55px 0 25px
    }

    .v1 .position .icon-arrow {
        position: absolute;
        right: 0;
        top: 60%
    }

    ul.col-wrapper.positions-list > li.link-box.positions-item {
        max-width: 100% !important;
        margin: 20px 0 !important;
    }

    ul.col-wrapper.positions-list > li.link-box.positions-item > a.position.link.link-image {
        padding: 0;
    }

    .products .main .link-image .img {
        object-fit: cover !important;
    }

    div#articles {
        margin-bottom: 0;
    }

    .article > main.main > .content-wrapper > .mb-container {
        margin-bottom: 0 !important;
    }

    .article > main.main > .content-wrapper > .mb-container > .text-black-nested > h2 {
        text-align: left !important;
    }

    .article > main.main > .content-wrapper > .flex-col-reverse-phone {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: inherit !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .article > main.main > .content-wrapper > .flex-col-reverse-phone > .col-m-r-30 {
        margin: 35px 0 0 !important;
    }

    .products .positions-container .title-wrapper .title {
        font-size: 28px;
    }

    .entry-meta {
        display: flex !important;
        -webkit-box-flex: 0 !important;
        -webkit-flex: auto !important;
        -ms-flex: auto !important;
        flex: auto !important;
        margin: 25px 0;
    }

    .contact-form {
        width: 100% !important;
        width: 100% !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
}

.v1 .position-title {
    width: 41.5%;
    margin: 35px 0;
    padding-right: 30px;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

@media screen and (max-width: 1024px) {
    .v1 .position-title {
        margin: 30px 0
    }
}

@media screen and (max-width: 740px) {
    .v1 .position-title {
        width: 70%;
        margin: 0 0 8px
    }
}

@media screen and (max-width: 740px) {
    .v1 .position-text {
        color: #b1b6e3
    }
}

.v1 .icon-arrow {
    position: relative;
    height: 22px;
    width: 22px;
    margin-left: auto;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.swiper-wrapper > a > article > .entry-title > .icon-arrow {
    margin-bottom: 5% !important;
}

@media screen and (max-width: 1024px) {
    .v1 .icon-arrow {
        width: 15px;
        height: 15px
    }
}

@media screen and (max-width: 740px) {
    .v1 .icon-arrow {
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.v1 .back-link .icon-arrow {
    top: .1em
}

@media screen and (max-width: 740px) {
    .v1 .back-link .icon-arrow {
        top: .07em;
        position: relative;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg)
    }
}

.v1 .navigations {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    bottom: 10%;
    left: 5%;
    z-index: 3
}

.v1 .navigations.pos-1 {
    left: 0;
    bottom: 0
}

@media screen and (max-width: 740px) {
    .v1 .navigations.pos-1 {
        left: 50%
    }
}

.v1 .navigations .slider-nav-btn:not(:last-child) {
    margin-right: 10px
}

@media screen and (max-width: 740px) {
    .v1 .navigations {
        left: 50%;
        bottom: 5%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.v1 .insta-slider {
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 100%
}

@media screen and (max-width: 740px) {
    .v1 .insta-slider {
        width: 100vw
    }
}

.v1 .insta-slider .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover
}

.v1 .insta-slider .swiper-slide:nth-child(odd) {
    width: 270px !important
}

.v1 .insta-slider .swiper-slide:nth-child(odd) img {
    width: 270px;
    height: 270px
}

@media screen and (max-width: 1800px) {
    .v1 .insta-slider .swiper-slide:nth-child(odd) {
        width: 205px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(odd) img {
        width: 205px;
        height: 205px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .insta-slider .swiper-slide:nth-child(odd) {
        width: 146px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(odd) img {
        width: 146px;
        height: 146px
    }
}

@media screen and (max-width: 800px) {
    .v1 .insta-slider .swiper-slide:nth-child(odd) {
        width: 106px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(odd) img {
        width: 106px;
        height: 106px
    }
}

.v1 .insta-slider .swiper-slide:nth-child(2n) {
    width: 415px !important
}

.v1 .insta-slider .swiper-slide:nth-child(2n) img {
    width: 415px;
    height: 415px
}

@media screen and (max-width: 1800px) {
    .v1 .insta-slider .swiper-slide:nth-child(2n) {
        width: 315px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(2n) img {
        width: 315px;
        height: 315px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .insta-slider .swiper-slide:nth-child(2n) {
        width: 225px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(2n) img {
        width: 225px;
        height: 225px
    }
}

@media screen and (max-width: 800px) {
    .v1 .insta-slider .swiper-slide:nth-child(2n) {
        width: 163px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(2n) img {
        width: 163px;
        height: 163px
    }
}

.v1 .insta-slider .swiper-slide:nth-child(3n+3) {
    width: 630px !important
}

.v1 .insta-slider .swiper-slide:nth-child(3n+3) img {
    width: 630px;
    height: 630px
}

@media screen and (max-width: 1800px) {
    .v1 .insta-slider .swiper-slide:nth-child(3n+3) {
        width: 479px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(3n+3) img {
        width: 479px;
        height: 479px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .insta-slider .swiper-slide:nth-child(3n+3) {
        width: 342px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(3n+3) img {
        width: 342px;
        height: 342px
    }
}

@media screen and (max-width: 800px) {
    .v1 .insta-slider .swiper-slide:nth-child(3n+3) {
        width: 248px !important
    }

    .v1 .insta-slider .swiper-slide:nth-child(3n+3) img {
        width: 248px;
        height: 248px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .insta-slider .swiper-slide {
        margin-right: 10px !important
    }
}

.v1 .career-slider .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 900px
}

@media screen and (max-width: 1800px) {
    .v1 .career-slider .swiper-slide img {
        height: 682px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .career-slider .swiper-slide img {
        height: 486px
    }
}

@media screen and (max-width: 800px) {
    .v1 .career-slider .swiper-slide img {
        height: 358px
    }
}

.v1 .join-team .title-wrapper {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

@media screen and (max-width: 740px) {
    .v1 .join-team .title-wrapper {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.v1 .join-team .title {
    width: 12.5em;
    text-align: center
}

@media screen and (max-width: 740px) {
    .v1 .join-team .title {
        text-align: left
    }
}

.v1 .join-team .btn {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

@media screen and (max-width: 740px) {
    .v1 .join-team .btn {
        -webkit-align-self: auto;
        -ms-flex-item-align: auto;
        align-self: auto
    }
}

.v1 #position {
    z-index: 2;
    scroll-margin-top: 200px
}

@media (max-width: 1440px) {
    .v1 #position {
        scroll-margin-top: 150px
    }
}

.v1 .our-adv {
    min-height: 277px;
    background-image: url(../images/career/advantages.jpg)
}

@media screen and (max-width: 740px) {
    .v1 .our-adv {
        max-width: 100%;
        background-image: url(../images/career/advantages.jpg)
    }
}

.v1 .about-top-img {
    background-image: url(../images/about/first-banner.jpg)
}

@media screen and (max-width: 576px) {
    .v1 .about-top-img {
        background-size: contain;
        background-position-x: 0;
        -webkit-background-size: contain;
        min-height: 210px;
    }
}

.v1 .about-middle-img {
    background-image: url(../images/about/image-run_rgbdvl.jpg);
    background-position: 0 0
}

@media screen and (max-width: 740px) {
    .v1 .about-middle-img {
        background-position-x: -30px
    }
}

.v1 .phone-with-list .item-desc {
    margin-bottom: 8%
}

.v1 .phone-with-list .subhead-2 {
    max-width: 70%;
    color: #b1b6e3
}

@media screen and (max-width: 1024px) {
    .v1 .phone-with-list .subhead-2 {
        max-width: 100%
    }
}

.v1 .phone-with-list .list-group-text {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.v1 .phone-with-list .list-group-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 45%;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    margin-right: 0
}

.v1 .phone-with-list .list-group-item .sub-number {
    margin-left: 4px
}

@media screen and (max-width: 1800px) {
    .v1 .phone-with-list .list-group-item {
        -webkit-flex-basis: 43%;
        -ms-flex-preferred-size: 43%;
        flex-basis: 43%
    }

    .v1 .phone-with-list .list-group-item:nth-child(odd) {
        margin-right: 0
    }
}

@media screen and (max-width: 740px) {
    .v1 .phone-with-list .list-group-item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1.2em
    }

    .v1 .phone-with-list .list-group-item .h4 {
        min-width: 3em
    }

    .v1 .phone-with-list .list-group-item .subhead-2 {
        margin-top: 0
    }
}

.v1 .quote-wrapper {
    position: relative;
    max-width: 95%
}

@media (max-width: 1440px) {
    .v1 .quote-wrapper {
        max-width: 100%
    }
}

.v1 .quote-wrapper .icon-quote {
    position: absolute;
    right: 0
}

@media screen and (max-width: 1024px) {
    .v1 .quote-wrapper .icon-quote {
        width: 38px;
        height: 24px
    }
}

.v1 .quote-wrapper .quote {
    margin-bottom: 20%
}

.v1 .about-press-container .navigations {
    position: relative
}

.v1 .about-press-slider {
    margin-bottom: 90px
}

@media screen and (max-width: 1800px) {
    .v1 .about-press-slider {
        margin-bottom: 50px
    }
}

@media screen and (max-width: 740px) {
    .v1 .about-press-slider {
        margin-bottom: 40px
    }
}

.v1 .about-press-slider .swiper-slide {
    border: 1px solid #dee1e6;
    padding: 4%
}

@media screen and (max-width: 740px) {
    .v1 .about-press-slider .swiper-slide {
        padding: 40px 22px
    }
}

.v1 .about-press-slider .swiper-slide:hover {
    background: rgb(175 179 225 / 8%)
}

.v1 .about-press-slider .subhead-2 {
    min-height: 4.5em;
    margin-bottom: 1.5em
}

.v1 .about-press-slider .entry-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6%;
    border-bottom: .8px solid #dee1e6
}

.v1 .about-press-slider .box, .v1 .about-press-slider .entry-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.v1 .about-press-slider .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 260px
}

.v1 .about-press-slider .icon-bg {
    width: 197px;
    height: 90px;
    margin: 0 0 5%;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    background-position: 50%;
    background-repeat: no-repeat
}

@media screen and (max-width: 1024px) {
    .v1 .about-press-slider .icon-bg {
        width: 101px;
        height: 40px
    }
}

.v1 .brand-assets-container {
    position: relative
}

.v1 .brand-assets-container:before {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: -webkit-calc(100vw - 100px);
    width: calc(100vw - 100px);
    /*background: #eff1f4;*/
    background: rgb(175 179 225 / 8%);
    /*opacity: .5*/
}

@media screen and (min-width: 1921px) {
    .v1 .brand-assets-container:before {
        width: 100vw
    }
}

@media screen and (max-width: 1800px) {
    .v1 .brand-assets-container:before {
        width: -webkit-calc(100vw - 60px);
        width: calc(100vw - 60px)
    }
}

@media screen and (max-width: 1024px) {
    .v1 .brand-assets-container:before {
        width: -webkit-calc(100vw - 40px);
        width: calc(100vw - 40px)
    }
}

@media screen and (max-width: 740px) {
    .v1 .brand-assets-container:before {
        width: 100vw
    }
}

.v1 .brand-assets-wrapper .brand-assets-img {
    -webkit-background-size: contain;
    background-size: contain;
    background-position: 100% 100%;
    background-image: url(../images/about/last-banner.png)
}

@media (max-width: 1440px) {
    .v1 .brand-assets-wrapper .brand-assets-img {
        -webkit-background-size: 70% 70%;
        background-size: 70%
    }
}

@media screen and (max-width: 740px) {
    .v1 .brand-assets-wrapper .brand-assets-img {
        -webkit-background-size: 53% 53%;
        background-size: 53%;
        background-image: url(../images/about/last-banner.png);
        background-position: 100% 100%
    }
}

@media screen and (max-width: 576px) {
    .v1 .brand-assets-wrapper .brand-assets-img {
        min-height: 270px;
        width: 100%;
        position: static;
        -webkit-background-size: contain;
        background-size: contain
    }
}

.v1 .brand-assets-wrapper .col-m {
    z-index: 1
}

.v1 .brand-assets-wrapper .col {
    padding: 4% 0 0 4%
}

@media screen and (max-width: 576px) {
    .v1 .brand-assets-wrapper .col {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-bottom: 30px
    }
}

.v1 .brand-assets-wrapper .col .secondary-color {
    margin-bottom: 2em
}

.v1 .about-benefit-slider {
    max-width: 100%
}

.v1 .about-benefit-slider .bg-img__small {
    background-position: 50%
}

@media screen and (max-width: 740px) {
    .v1 .about-benefit-slider .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.v1 .list-advantages .list-group-item .subhead-2 {
    max-width: 435px
}

@media screen and (max-width: 1800px) {
    .v1 .list-advantages .list-group-item .subhead-2 {
        max-width: 335px
    }
}

@media screen and (max-width: 740px) {
    .v1 .list-advantages .list-group-item .subhead-2 {
        max-width: 100%
    }
}

.v1 .ceo-wrapper .bg-img {
    background-position: 30%
}

.v1 .ceo-wrapper .subhead-2 {
    margin-top: 10px;
    margin-bottom: 0
}

.v1 .ceo-wrapper .icon-ceo {
    float: left;
    margin-right: 15px
}

.v1 .story-container {
    min-height: 900px;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 80px 0 70px 70px;
    /*background: #f7f8f9*/
    background: rgb(175 179 225 / 8%)
}

@media screen and (max-width: 1800px) {
    .v1 .story-container {
        min-height: 680px;
        padding: 40px 0 40px 40px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .story-container {
        min-height: 520px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container {
        min-height: 720px;
        padding-left: 0
    }
}

.v1 .story-container .navigations.show-phone-flex {
    bottom: 5%;
    position: static;
    margin: 0 auto;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset
}

.v1 .story-container .col-sm {
    -webkit-flex-basis: 35.2%;
    -ms-flex-preferred-size: 35.2%;
    flex-basis: 35.2%;
    position: relative
}

@media screen and (max-width: 740px) {
    .v1 .story-container .col-sm {
        padding-left: 20px
    }
}

.v1 .story-container .col-l {
    -webkit-flex-basis: 64.8%;
    -ms-flex-preferred-size: 64.8%;
    flex-basis: 64.8%;
    overflow: hidden
}

.v1 .story-container .swiper-slide {
    min-width: 320px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url(../images/circle-with-space.svg);
    background-repeat: repeat-x;
    background-position: 10px
}

.v1 .story-container .swiper-slide:first-child, .v1 .story-container .swiper-slide:last-child {
    background-image: none
}

.v1 .story-container .swiper-slide:first-child:before, .v1 .story-container .swiper-slide:last-child:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 50%;
    right: 0;
    display: block;
    height: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/circle-with-space.svg);
    background-repeat: repeat-x;
    background-position: 10px
}

.v1 .story-container .swiper-slide:last-child:before {
    width: 230% !important;
}

@media (max-width: 1440px) {
    .v1 .story-container .swiper-slide:first-child:before, .v1 .story-container .swiper-slide:last-child:before {
        width: 50%;
        right: 0
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide:first-child:before, .v1 .story-container .swiper-slide:last-child:before {
        width: 50vw;
        right: 0
    }
}

.v1 .story-container .swiper-slide:nth-child(2n) .period-desc {
    bottom: auto;
    top: 637px
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .swiper-slide:nth-child(2n) .period-desc {
        top: 470px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide:nth-child(2n) .period-desc {
        top: 445px
    }
}

.v1 .story-container .swiper-slide:nth-child(2n) .period-desc:after {
    top: -126px;
    margin-top: 0
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .swiper-slide:nth-child(2n) .period-desc:after {
        top: -95px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide:nth-child(2n) .period-desc:after {
        top: -70px
    }
}

.v1 .story-container .swiper-slide:nth-child(2n) .period-month {
    top: auto;
    bottom: 352px
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .swiper-slide:nth-child(2n) .period-month {
        bottom: 250px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide:first-child {
        position: relative;
        margin-left: 0
    }
}

.v1 .story-container .swiper-slide:last-child:before {
    left: 0
}

.v1 .story-container .swiper-slide:last-child .period-desc {
    min-width: 450px
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .swiper-slide:last-child .period-desc {
        min-width: 420px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide:last-child .period-desc {
        min-width: 340px
    }
}

@media screen and (max-width: 320px) {
    .v1 .story-container .swiper-slide:last-child .period-desc {
        min-width: 280px
    }
}

.v1 .story-container .swiper-slide.swiper-slide-active .period:before {
    content: "";
    display: block;
    width: 260px;
    height: 260px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #dee1e6;
    opacity: .5;
    z-index: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: scale-up 1s ease-out forwards;
    animation: scale-up 1s ease-out forwards
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .swiper-slide.swiper-slide-active .period:before {
        width: 190px;
        height: 190px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .swiper-slide.swiper-slide-active .period:before {
        width: 180px;
        height: 180px
    }
}

.v1 .story-container .swiper-slide.swiper-slide-active .period-date {
    opacity: 1;
    z-index: 1;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.v1 .story-container .period {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 840px
}

.v1 .story-container .period:before {
    -webkit-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out
}

.v1 .story-container .period:after {
    content: "";
    position: fixed;
    display: block;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #000
}

.v1 .story-container .period .period-desc {
    position: absolute;
    bottom: 637px;
    min-width: 310px;
    text-align: center;
    z-index: 1
}

.v1 .story-container .period .period-desc:after {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    height: 100px;
    width: 2px;
    margin-top: 10px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(219, 222, 226, 0)), color-stop(33.66%, #dbdee2), color-stop(62.26%, #dbdee2), to(rgba(219, 222, 226, 0))), -webkit-gradient(linear, right top, left top, from(rgba(219, 222, 226, 0)), color-stop(53.9%, #dbdee2), to(rgba(219, 222, 226, 0))), -webkit-gradient(linear, right top, left top, from(rgba(219, 222, 226, 0)), color-stop(53.9%, #dbdee2), to(rgba(219, 222, 226, 0)));
    background: -webkit-linear-gradient(right, rgba(219, 222, 226, 0), #dbdee2 33.66%, #dbdee2 62.26%, rgba(219, 222, 226, 0)), -webkit-linear-gradient(right, rgba(219, 222, 226, 0), #dbdee2 53.9%, rgba(219, 222, 226, 0)), -webkit-linear-gradient(right, rgba(219, 222, 226, 0), #dbdee2 53.9%, rgba(219, 222, 226, 0));
    background: -o-linear-gradient(right, rgba(219, 222, 226, 0) 0, #dbdee2 33.66%, #dbdee2 62.26%, rgba(219, 222, 226, 0) 100%), -o-linear-gradient(right, rgba(219, 222, 226, 0) 0, #dbdee2 53.9%, rgba(219, 222, 226, 0) 100%), -o-linear-gradient(right, rgba(219, 222, 226, 0) 0, #dbdee2 53.9%, rgba(219, 222, 226, 0) 100%);
    background: linear-gradient(270deg, rgba(219, 222, 226, 0), #dbdee2 33.66%, #dbdee2 62.26%, rgba(219, 222, 226, 0)), linear-gradient(270deg, rgba(219, 222, 226, 0), #dbdee2 53.9%, rgba(219, 222, 226, 0)), linear-gradient(270deg, rgba(219, 222, 226, 0), #dbdee2 53.9%, rgba(219, 222, 226, 0))
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .period .period-desc {
        bottom: 470px;
        min-width: 270px
    }

    .v1 .story-container .period .period-desc:after {
        margin-top: 20px;
        height: 75px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .period .period-desc {
        bottom: 445px
    }

    .v1 .story-container .period .period-desc:after {
        margin-top: 10px;
        height: 60px
    }
}

.v1 .story-container .period .period-date {
    position: absolute;
    width: 90px;
    height: 48px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    background: #dee1e6;
    text-align: center;
    line-height: 48px;
    opacity: 0
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .period .period-date {
        width: 80px;
        height: 42px;
        line-height: 42px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .period .period-date {
        width: 75px;
        height: 40px;
        line-height: 40px
    }
}

.v1 .story-container .period .period-month {
    position: absolute;
    top: 352px;
    z-index: 1
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .period .period-month {
        top: 250px
    }
}

@media screen and (max-width: 1800px) {
    .v1 .story-container .period {
        min-height: 600px
    }
}

@media screen and (max-width: 740px) {
    .v1 .story-container .story-desc {
        padding-right: 20px
    }
}

.v1 .story-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 1px solid #b1b6e3
}

@media screen and (max-width: 740px) {
    .v1 .story-wrapper {
        border: none
    }
}

.fitness-partners {
    font-size: 24px;
    margin-bottom: 10%;
    margin-left: 6%;
    font-weight: 600;
}

.v1 .img-elite-fitness {
    background-image: url(../images/about/logo-circle.png);
    width: 90px !important;
}

.v1 .img-next {
    background-image: url(../images/about/next.png);
    width: 90px !important;
}

.v1 .img-forbes {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-forbes_dyewqw)
}

.v1 .img-tnw {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-tnw_fzvx9y)
}

.v1 .img-fast-company {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-fast-company_zp1sqk)
}

.v1 .img-wsj {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-wsj_lgvirx)
}

.v1 .img-hellomagazine {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-hellomagazine_dg0ew3)
}

.v1 .img-campaign {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-campaign_jpqfbk)
}

.v1 .img-bbc {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-bbc_c6lyoq)
}

.v1 .img-businessinsider {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-businessinsider_dyzdcu)
}

.v1 .img-tc {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-tc_uio0qa)
}

.v1 .img-mashable {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco/v1/betterme.world/icon-mashable_qq92rq)
}

@media screen and (max-width: 576px) {
    .v1 .for-work-page-title {
        font-size: 45px
    }
}

@media screen and (max-width: 320px) {
    .v1 .for-work-page-title {
        font-size: 40px
    }
}

.v1 .business-run-img {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco,w_640/v1/betterme.world/image-run-1_z1m8qa);
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    min-height: 1500px
}

@media screen and (max-width: 1800px) {
    .v1 .business-run-img {
        min-height: 1200px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .business-run-img {
        min-height: 900px
    }
}

@media screen and (max-width: 740px) {
    .v1 .business-run-img {
        min-height: 358px;
        -webkit-background-size: cover;
        background-size: cover;
        background-position: top;
        background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco,w_480/v1/betterme.world/image-run-1_vye2fx)
    }
}

.v1 .for-work-people-img {
    background-image: url(https://res.cloudinary.com/drhg6wpcy/image/upload/c_fit,dpr_2.0,fl_lossy,q_auto:eco,w_1280/v1/betterme.world/walk_vgdtzr)
}

.v1 .for-business-contact {
    position: relative;
    padding-top: 160px;
    background: #eff1f4
}

@media screen and (max-width: 1800px) {
    .v1 .for-business-contact {
        padding-top: 120px
    }
}

@media screen and (max-width: 1024px) {
    .v1 .for-business-contact {
        padding-top: 100px
    }
}

@media screen and (max-width: 740px) {
    .v1 .for-business-contact {
        padding-top: 80px
    }
}

.v1 .for-business-contact .row {
    border-bottom: 1px solid #d1d5db
}

.v1 .row-with-phone .col-inner-l {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media screen and (max-width: 1024px) {
    .v1 .focus-row {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

.v1 .swiper-slide {
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden
}

@media screen and (max-width: 1024px) {
    .v1.page-landing .col-text-image .col-l {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .v1.page-landing .col-text-image .col-inner-sm .subhead-1 {
        margin-bottom: 115px
    }
}

@media screen and (max-width: 800px) {
    .v1.page-landing .col-text-image .col-inner-sm .subhead-1 {
        margin-bottom: 64px
    }
}

@media screen and (max-width: 740px) {
    .v1.page-landing .col-text-image .col-inner-sm .subhead-1 {
        margin-bottom: 16px
    }
}

.modal-cv {
    background-color: #f9f9fd;
    overflow: auto;
    opacity: 1;
    visibility: visible;
    display: none;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

@media screen and (max-width: 740px) {
    .modal-cv {
        z-index: 600;
        padding: 30% 0 10%
    }
}

.modal-cv ._anim {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.modal-cv.open {
    z-index: 1000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: slide-bottom-to-top 1s forwards;
    animation: slide-bottom-to-top 1s forwards;
    max-height: inherit;
}

.modal-cv .col:first-child {
    -webkit-flex-basis: 38%;
    -ms-flex-preferred-size: 38%;
    flex-basis: 38%
}

.modal-cv .col:nth-child(2) {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
}

.modal-cv .modal-hide {
    position: absolute;
    right: 100px;
    top: 25px
}

@media screen and (max-width: 1800px) {
    .modal-cv .modal-hide {
        right: 60px
    }
}

@media screen and (max-width: 1024px) {
    .modal-cv .modal-hide {
        right: 40px
    }
}

@media screen and (max-width: 740px) {
    .modal-cv .modal-hide {
        right: 20px
    }
}

.modal-cv.slide-down-anim {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: slide-top-to-bottom 1s forwards;
    animation: slide-top-to-bottom 1s forwards
}

.message-result {
    display: none;
    color: #34c759
}

.message-result .svg-icon {
    position: relative;
    top: .3em;
    margin-right: .75em
}

.contacts .wrapper-breadcrumbs {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset
}

@media screen and (max-width: 740px) {
    .contacts .wrapper-breadcrumbs {
        margin-bottom: 24px
    }
}

.contacts .main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.contacts .main .container {
    margin: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start
}

.contacts .position-title {
    line-height: 1
}

@media screen and (max-width: 800px) {
    .contacts .position-title {
        width: 35%
    }
}

@media screen and (max-width: 740px) {
    .contacts .position-title {
        width: 70%
    }
}

.contacts .positions-item {
    border-color: #e4e7eb
}

.contacts .positions-item:first-child {
    border-top: 1px solid #e4e7eb
}

@media screen and (max-width: 740px) {
    .contacts .positions-item .position {
        padding-top: 25px
    }
}

.contacts .positions-item .position-title {
    margin: 50px 0
}

@media screen and (max-width: 1024px) {
    .contacts .positions-item .position-title {
        margin: 40px 0
    }
}

@media screen and (max-width: 740px) {
    .contacts .positions-item .position-title {
        margin: 0 0 10px
    }

    .fitness-partners {
        font-size: 22px;
    }

    .swiper-wrapper > a > article > .entry-title > .icon-arrow {
        margin-bottom: 0 !important;
    }

    a:not(.link-image).left-dot .dot {
        margin-left: 0px;
    }

}

.contacts .positions-item .position-text {
    color: inherit
}

.stop-scrolling {
    overflow: hidden;
}

.contact-form {
    position: fixed;
    width: 400px;
    height: auto;
    bottom: 0;
    right: 0;
    background: white;
    z-index: 600;
    padding: 25px 25px;
    transform: translate3d(0, 100%, 0);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    color: rgb(47, 57, 65);
    box-shadow: rgb(23 73 77 / 13%) 0px 0px 46px 11px;
    border-radius: 0.571429rem;

}

.contact-form.active {
    transform: translate3d(0, 0, 0);
}

.contact-form .close {
    color: rgba(0, 0, 0, .7);
    position: absolute;
    right: 30px;
    top: 30px;
}

.cards {
    margin: auto;
    background: #fefefe;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1), 3px 5px 20px rgba(0, 0, 0, .2);
    width: 768px;
    height: 550px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.cards .card {
    display: inline-block;
    margin-right: 20px;
}

.cards .card-toggle {
    z-index: 4;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 1.8;
    font-size: 24px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.cards .card-toggle.active {
    color: white;
    border-color: white;
}

.cards .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: -webkit-clip-path 1s ease;
    padding: 100px 0 0;
    overflow: hidden;
    border-radius: 5px;
}

.cards .card-content .row {
    display: table;
    width: 100%;
    height: 100%;
}

.cards .card-content .col {
    width: 50%;
    height: 100%;
    display: table-cell;
    transition: 0.3s ease 0.3s;
    transform: translate3d(0, 0, 0);
    vertical-align: top;
}

.cards .card-content .col h2 {
    font-weight: 300;
    font-size: 3em;
    line-height: 1;
    margin: 0 0 30px;
}

.cards .card-content .col h2 strong {
    font-weight: 700;
    display: block;
}

.cards .card-content .col img {
    max-width: 90%;
    width: 100%;
}

.cards .card-content .col.left {
    transform: translate3d(0, 0, 0);
    opacity: 0;
    padding-left: 50px;
}

.cards .card-content .col.right {
    transform: translate3d(100px, 0, 0);
    opacity: 0;
    padding-left: 30px;
}

.cards .card.active .col {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.cards #overview .card-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 1;
    color: white;
}

.cards #overview .card-content {
    background-color: #efefef;
    -webkit-clip-path: circle(0% at 91.5% 75px);
}

.cards #overview.active .card-toggle {
    opacity: 0;
}

.cards #overview.active .card-content {
    -webkit-clip-path: circle(270% at 91.5% 75px);
}

.cards #overview .right {
    background-size: contain;
}

form .control {
    position: relative;
    margin-bottom: 10px;
    padding-top: 20px;
}

.contact-title {
    margin-bottom: 20px;
}

form .control label {
    position: absolute;
    top: 30px;
    left: 0;
    transition: 0.3s ease;
    font-weight: 500;
    color: #090a0a;
    font-size: 16px;
    letter-spacing: -.02em;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-family: Gilroy, sans-serif !important;
}

form .control.submit {
    text-align: right;
}

form input, form textarea {
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    width: 100%;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    outline: none;
    padding: 10px 0;
}

input#file {
    border: none;
}

form .filled label, form input:focus + label, form textarea:focus + label {
    top: 0;
    font-size: 12px;
}

form textarea {
    height: 100px;
}

form input[type=submit] {
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none; /*For Mozilla*/
    width: auto;
    background-color: rgb(102 100 233);
    padding: 10px 40px;
    color: white;
    border-radius: 40px;
    font-family: Gilroy, sans-serif;
    cursor: pointer;
}

select#options {
    padding: 0 0 12px;
    font-weight: 500;
    color: #090a0a;
    font-size: 16px;
    letter-spacing: -.02em;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-family: Gilroy, sans-serif !important;
    margin-top: 50px;
    min-width: 100%;
    border: none;
    border-bottom: 1px solid #e3e3e3;
}

select#options:focus {
    outline: none;
    border-bottom: 1px solid #e3e3e3;
}

select#options:active {
    outline: none;
    border-bottom: 1px solid #e3e3e3;
}

input#file {
    margin-top: 40px;
}

input::file-selector-button {
    width: 100%;
    font-size: 14px;
    background: white;
    color: #090a0a;
    font-weight: 500;
    border: 1px dashed #7f7f7f;
    padding: 14px;
    border-radius: 6px;
}

.dropdown {
    list-style: none;
    position: relative;
    border: 1px dashed #7f7f7f;
    border-radius: 6px;
    width: 100%;
    height: auto;
    cursor: pointer;
    margin-top: 60px;
    margin-bottom: 0;
    padding: 0;
}

.dropdown__label {
    position: absolute;
    top: -9px;
    left: 15px;
    background: #fff;
    color: #444;
    font-size: 0.8em;
    font-family: Lato, sans-serif;
}

.dropdown__arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transition: transform 0.2s linear;
}

.dropdown__arrow.expanded {
    transform: rotate(-180deg);
}

.dropdown__list {
    top: 2px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: rgb(23 73 77 / 15%) 0px 20px 30px 0px;
    background-color: rgb(255, 255, 255);
    cursor: default;
    text-align: left;
    white-space: normal;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    position: absolute;
    left: 0;
    transition: opacity 0.1s cubic-bezier(0, 0, 0.38, 0.9), max-height 0.5s cubic-bezier(0, 0, 0.38, 0.9);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
}

.dropdown__list-container {
    position: relative;
}

.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown__list-item {
    color: #090a0a;
    padding: 10px 0px;
    padding-left: 15px;
    transition: background-color 0.1s linear, color 0.1s linear;
    list-style-position: inside;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown__list-item:hover, .dropdown__list-item:focus {
    background-color: whitesmoke;
}

#dropdown__selected {
    padding: 10px 0px;
    padding-left: 15px;
    list-style-position: inside;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 14px;
    color: #090a0a;
}

#dropdown__selected:focus {
    outline: none;
}

.open {
    opacity: 1;
    overflow: auto;
    max-height: 150px;
}

.f-90 {
    font-size: 90px;
    line-height: 110%;
}

.f-95 {
    font-size: 95px;
}

.l-h-1 {
    line-height: 1;
    line-height: 110%;
}

.title-sub {
    margin-bottom: 22px !important;
    font-size: 48px;
    letter-spacing: 0 !important;
}

.title-head {
    margin-bottom: 52px !important;
}

.soon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    color: #090a0a;
}

.svg-soon {
    position: relative;
    top: -2px;
    left: 10px;
}

ul.col-wrapper.positions-list > li.link-box.positions-item {
    max-width: 100%;
    padding: 10px 10px 20px;
    border: none;
}

li.link-box.positions-item .title-wrapper.position-title {
    transform: none !important;
    padding: 0;
    margin: 0;
}

li.link-box.positions-item > a > .desc {
    background: white;
    padding: 15px
}

a.position.link.link-image {
    background-image: none !important;
}

.title-wrapper.position-title h1.title {
    font-size: 30px;
    font-weight: 600;
}

@media screen and (min-width: 740px) {

    li.link-box.positions-item > a > .img-wrapper {
        min-height: 390px !important;
    }
}

#articles .title-wrapper.position-title h1.title {
    min-height: 75px !important;
}

.blog-article > p {
    margin: 10px 0;
}

.list-style-circle-nested ul.article-list li.ul-list:before, .list-style-circle li.ul-list:before {
    top: 0.6em;
}

table.articles {
    width: 100%;
}

table.articles,
td {
    width: 50%;
    padding: 10px;
    border: 1px solid #333;
}

th {
    padding: 10px;
}

thead,
tfoot {
    background-color: #333;
    color: #fff;
}


.entry-category {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

span.gridlove-cat.gridlove-cat-153 {
    cursor: pointer;
    height: auto;
    line-height: 10px;
    border-radius: 40px;
    padding: 10px 16px 10px;
    vertical-align: middle;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    font-size: 16px;
    background: #eff1f4;
    font-weight: 500;
    text-transform: capitalize;
}

.meta-item.f-body-2.meta-date {
    border-right: 1px solid #c5cad1;
    padding-right: 20px;
    margin-right: 20px;
}

.entry-meta {
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 25px 0;
}

.meta-item.f-body-2.meta-author {
    border-top: 1px solid #c5cad1;
    padding: 20px 0;
}

.meta-author-cont {
    min-width: 100%;
}

span.f-body-2 {
    vertical-align: top;
    line-height: 33px;
    left: 5px;
    position: relative;
}

img.avatar.pp-user-avatar.avatar-24.photo.entered.lazyloaded {
    position: relative;
    top: 2px;
}

.container.content-wrapper.wrapper-breadcrumbs.mb-container-xs.mt-container-xs {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.article, .article .global-header {
    background: #f9f9fd;
}

.sticky-con {
    position: -webkit-sticky;
    position: sticky;
    top: 185px;
    left: 0;
}

.col-m-r-30 {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    margin-right: 30px;
}


@media screen and (max-width: 1800px) and (min-width: 1441px) {
    h1.title.lg._anim.mb-title-s.m-title-phone > .f-s-110 {
        font-size: 100px !important;
        line-height: 1.3;
    }

    li.link-box.positions-item > a > .img-wrapper {
        min-height: auto !important;
    }

    body.v1.page-landing.article .main .flex-col-reverse-phone .col-m-r-30 {
        -webkit-flex-basis: 39%;
        -ms-flex-preferred-size: 39%;
        flex-basis: 39%;
        margin-right: 30px;
    }

    .sticky {
        height: 515px;
        top: -webkit-calc(50vh - 190px) !important;
        top: calc(50vh - 190px) !important;
    }

    .sticky-wrap .phone-frame {
        width: 385px !important;
        height: 500px !important;
    }

    .features .app-feature-phone .phone-frame:before {
        width: 224px !important;
    }

    .first-list {
        margin-left: -40px;
    }

    .second-list {
        margin-right: -40px;
    }

    .v1 .story-container .swiper-slide {
        padding: 50px 0 !important;
    }

    .v1 .story-container .period .period-desc {
        bottom: 470px;
        min-width: 250px !important;
    }

    .v1 .story-container .swiper-slide:last-child .period-desc {
        min-width: 250px !important;
    }


}

@media screen and (max-width: 1440px) and (min-width: 1024px) {
    .v1 .story-container .swiper-slide {
        padding: 50px 0 !important;
    }

    .v1 .story-container .period .period-desc {
        bottom: 470px;
        min-width: 250px !important;
    }

    .v1 .story-container .swiper-slide:last-child .period-desc {
        min-width: 250px !important;
    }

    .f-s-110 {
        font-size: 88px !important;
    }
}

.container.app-features-bg > .content-wrapper > .phones {
    margin-bottom: 0 !important;
}

#mob-only {
    display: none;
}

ul.nav.column.big > li.item._escape_up-wrapper > a.title > span.dot {
    font-size: 60px;
}

section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.f-90 {
    font-size: 60px !important;
}

section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.f-95 {
    font-size: 60px !important;
}

section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.l-h-1 {
    font-size: 86px !important;
}

section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper {
    line-height: 1.2;
}

.carrer-philosophy {
    margin-top: 60px;
}

@media screen and (max-width: 740px) {
    #mob-only {
        margin-top: 50px;
        display: block;
    }

    .app-feature__content {
        word-break: break-word;
    }

    ul.height-two-col > .two-col {
        min-height: 145px !important;
    }

    .item-hints .hint[data-position="4"] .hint-content {
        bottom: auto;
        width: 100%;
        left: auto;
        margin-left: 0;
        top: 290px;
    }

    .v1 .story-container .period {
        min-height: 750px !important;
    }

    .v1 .story-container .period .period-desc {
        bottom: 530px !important;
    }

    .item-hints .hint-content::before {
        display: none;
    }

    .item-hints .hint-content::after {
        display: none;
    }

    .container.mb-container-2x.content-wrapper {
        margin-bottom: 40px !important;
    }

    .bg-img__small {
        min-height: 285px !important;
    }

    .v1 .navigations.pos-1.val-slide {
        bottom: 40px !important;
    }

    .mb-container-s-phone {
        margin-bottom: 40px !important;
    }

    figure.icon-bg.img-next {
        height: 90px !important;
    }

    .mob-hide {
        display: none;
    }

    .v1 .story-container .swiper-slide:nth-child(2n) .period-desc {
        top: 530px !important;
    }

    .v1 .story-container .swiper-slide:nth-child(2n) .period-month {
        bottom: 305px !important;
    }

    .v1 .story-container .period .period-month {
        top: 305px !important;
    }

    .item-hints .hint[data-position="1"] .hint-content {
        bottom: 290px;
        width: 100%;
        left: auto;
        margin-left: 0;
        top: auto;
    }

    figure.inner-75.bg-img.our-adv.hide.show-phone.mb-container-xs-phone {
        min-height: 400px !important;
    }

    .mob-only {
        display: block !important;
    }

    .features.has-one-list .features-inner.list {
        margin-top: 0;
    }

    .features.has-two-list.has-overlay._anim.mob-only {
        padding: 0;
    }

    .features .features-inner .list-wrapper, .features .features-inner .wrapper {
        max-width: 275px;
        width: 100% !important;
        max-width: inherit;
        text-align: center;
        min-width: auto !important;
        margin-bottom: 40px;
    }

    ul.list-wrapper._anim {
        display: inline-block !important;
    }

    .three-col {
        margin: 0 5px 20px 5px !important;
        display: inline-block;
        text-align: center !important;
        width: 29% !important;
        align-self: inherit;
        min-height: 155px;
        padding: 0 7px;
    }

    .two-col {
        display: inline-block;
        width: 46% !important;
        align-self: inherit;
        margin: 0 5px 20px 5px !important;
        align-self: inherit;
        min-height: 130px;
        padding: 0 7px;
    }

    .app-feature.small .app-feature__icon-wrapper, .app-feature__icon-wrapper {
        margin: 15px auto;
        width: 50px !important;
        height: 50px !important;
    }

    .app-feature__content > .subhead-2, .subhead-2-nested p, .subhead-2-nested ul {
        font-size: 14px !important;
    }

    .app-feature__content > .f-caption-2, .app-feature__content > .f-caption-1 {
        font-size: 12px !important;
    }

    .features.has-two-list .features-inner:first-child .app-feature:nth-child(odd):first-child > .app-feature__content > .subhead-2 {
        padding: 0 8px;
    }

    .features.has-overlay:after {
        top: 48%;
        width: 390px;
        height: 390px;
    }

    .two-col {
        display: inline-block;
        width: 46% !important;
        align-self: inherit;
        margin: 0 5px 20px 5px !important;
        align-self: inherit;
        min-height: 140px;
        padding: 0 7px;
    }

    .three-col {
        margin: 0 5px 20px 5px !important;
        display: inline-block;
        text-align: center !important;
        width: 29% !important;
        align-self: inherit;
        min-height: 155px;
        padding: 0 7px;
    }

    svg#water {
        width: auto !important;
        height: auto !important;
    }

    svg#challenge-target, svg#chart-challange, svg#fire-line, svg#arm-muscle, svg#window-blocks, .app-feature__icon-wrapper.bg-blue-light > img, svg.calendar, svg.clock-swipe,
    svg.wallet-coins, svg.notification-icon, svg.horn-icon, svg#Capa_1, svg.icon {
        width: 30.75px;
        height: 28.75px;
    }

    ul.nav.column.big > li.item._escape_up-wrapper > a.title > span.dot {
        font-size: 28px !important;
    }

    li.link-box.positions-item > a > .img-wrapper {
        max-height: 231px !important;
    }

    .products .main .link-image .img {
        object-fit: cover !important;
        object-position: center;
    }

    .mob-show {
        display: inline-block !important;
    }

    .product-column-blocks .phones {
        margin-bottom: 50px
    }

    .features .app-feature-phone .phone-screen-mob {
        height: auto;
        /*width: 588px;*/
        z-index: 10;
        margin-left: 5px;
    }

    .features .app-feature-phone .phone-screen-mob {
        width: 380px;
    }

    .features .app-feature-phone .phone-frame-mob:before {
        content: "" !important;
        background-image: url(../content-images/phones/phone-silver.png) !important;
        background-repeat: no-repeat !important;
        -webkit-background-size: 100% 90% !important;
        background-size: 100% 90% !important;
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        z-index: 2 !important;
    }

    .features .app-feature-phone .phone-frame-mob {
        width: 223px;
        height: 500px;
    }

    .features .app-feature-phone .phone-frame-mob {
        position: relative;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .features .app-feature-phone .inner, .features .app-feature-phone .phone-frame-mob {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-column-blocks .title-wrapper .title {
        margin: 2.5em auto 30px;
    }

    section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.f-90 {
        font-size: 24px !important;
    }

    section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.f-95 {
        font-size: 24px !important;
    }

    section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper > span._escape_up-anim.l-h-1 {
        font-size: 34px !important;
    }

    section.section-with-apps.bottom > .wrapper > h2.title.h2._anim.title-head > span._escape_up-wrapper {
        line-height: 1.2;
    }

    .product-column-blocks .section-with-apps.bottom .title.h2 {
        margin-bottom: 1em !important;
    }

    .product-column-blocks .section-with-apps.bottom {
        margin-top: 30px
    }

    .product-column-blocks .section-with-apps.bottom > .wrapper > h3.title.subhead-1._fade-in._anim.title-sub {
        margin-bottom: 16px !important;
    }

    .mob-one-line {
        word-spacing: 100vw;
    }

    .custom-height {
        min-height: 170px;
    }

    .custom-width {
        width: 85%;
        margin: 0 auto;
    }

    .custom-two-lines {
        max-width: 90%;
        margin: 0 auto;
    }

    .custom-two-lines-80 {
        max-width: 80%;
        margin: 0 auto;
    }

    .first-letter:first-letter {
        font-size: 28px;
        font-weight: 600;
        color: #6664e9;
        letter-spacing: 3px;
        line-height: 1;
    }

    .carrer-philosophy {
        margin-top: 0;
    }

    .mob-margin-bottom {
        margin-bottom: 35px !important;
    }

    .v1 .field .input {
        padding: 20px 20px;
        color: inherit;
        background-color: #fff;
        font-size: 16px;
    }
}


.color-sec {
    color: #6664e9;
}

.space-around {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: justify !important;
    justify-content: space-around !important;
}

li.positions-item._fade-in._anim.engineering.marketing.analytics.rd_gaming.design.hr.content.pr.product.show {
    border: none;
    border-bottom: 1px solid #c5cad1 !important;
}
