@charset "UTF-8";

/* CSS Document */

body,
html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    text-align: left;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4em;
    color: #000;
    letter-spacing: -0.005em;
}

body,
input,
select,
* {
    font-family: 'TNPfont', sans-serif;
    font-smooth: always;
    -webkit-font-smoothing: subpixel-antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: none;
}

* {
    -webkit-transition: opacity 150ms ease-in-out, background 150ms ease-in-out, border-color 150ms ease-in-out;
    -moz-transition: opacity 150ms ease-in-out, background 150ms ease-in-out, border-color 150ms ease-in-out;
    transition: opacity 150ms ease-in-out, background 150ms ease-in-out, border-color 150ms ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: 150ms;
    -moz-transition-duration: 150ms;
    transition-duration: 150ms;
}

.container {
    margin: 0 auto !important;
    padding: 0;
    min-width: 500px;
    box-sizing: border-box;
    background-size: cover;
    overflow: hidden;
}

.row {
    margin: 0 auto;
    padding: 1em;
    box-sizing: border-box;
    max-width: 1280px;
    position: relative;
}

.display-none {
    display: none !important;
}

b,
strong {
    font-weight: 800;
}

a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer !important;
    display: inline-block;
    font-weight: 800;
}

a[href ^='tel:'] {
    text-decoration: none !important;
}

a:hover {
    color: #006aaa;
}

::selection {
    background-color: rgba(147, 153, 66, 0.3) !important;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1em;
}

h1 {
    font-size: 3.5em;
}

h2 {
    font-size: 3em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.5em;
}

.showtooltip {
    position: relative;
}

.showtooltip:after {
    content: attr(tooltip);
    font-size: 12px;
    color: #000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 3px;
    display: block;
    position: absolute;
    bottom: calc(100% + 0.5em);
    font-weight: 400;
    line-height: 1.2em;
    text-transform: none;
    padding: 1.5em;
    width: 100%;
    left: 0;
    box-sizing: border-box;
    opacity: 1;
    -webkit-transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    transition: all 150ms ease-out;
    pointer-events: none;
}

*.showtooltip:not(:hover):after {
    opacity: 0;
    bottom: 100%;
}

.largetext {
    font-size: 1.5em;
    line-height: 1.2em;
}

.smalltext {
    font-size: 0.9em;
    line-height: 1.2em;
}

.yellowblock {
    background-color: #e7df0d;
    color: #000;
}

.bigcompanydiscount {
    padding: 1em 2em;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 800;
    margin: 0.5em auto;
    display: inline-block;
}

.connectbarfixed .bigcompanydiscount {
    display: block !important;
}

.tac {
    text-align: center;
}

input {
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1.3em;
    font-weight: 400;
    height: 4em;
    padding-bottom: 0px;
    padding-left: 1.5em;
    padding-right: 1.5em;
    padding-top: 0px;
    text-align: center;
    width: 100%;
    outline: none;
    -webkit-appearance: none;
}

input.text {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
    background-color: #f7f7f7;
}

input.text:hover {
    background-color: #D0EDFF;
}

input.text:focus {
    background-color: #D0EDFF;
    box-shadow: inset 0 0 2px #006aaa;
}

button,
.button {
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.22), inset 0px 0px 2px 0px rgba(255, 255, 255, 0.22);
    border-radius: 0.2em;
    box-sizing: border-box;
    display: inline-block;
    padding: 1.3em 2em;
    font-size: 1.3em;
    cursor: pointer !important;
    font-weight: 800 !important;
    text-decoration: none;
    text-transform: uppercase;
    background-color: rgb(0, 106, 170);
    letter-spacing: -0.02em;
    color: #eee;
    border: none;
    line-height: 1em;
}

.button:hover {
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4), inset 0px 0px 2px 0px rgba(255, 255, 255, 0.4);
    color: #fff;
}


/* Регистрация в системе */

.popupview {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    z-index: 5000;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    overflow: auto;
    top: 0;
    left: 0;
}

.popupview:not(.show) {
    display: none;
}

.popup {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3em 4em 2em;
    margin: 0 auto;
    width: 80%;
    max-width: 700px;
    min-width: 350px;
    border-radius: 0 0 0.5em 0.5em;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
    -webkit-animation-name: slideInDown_my;
    animation-name: slideInDown_my;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.popup_close,
.popup .close {
    background: url(img/close.svg) center center no-repeat;
    background-size: 1em 1em;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 5em;
    height: 5em;
    opacity: 0.5;
    z-index: 1000;
    cursor: pointer;
}

.popup_close:hover {
    opacity: 1;
}

.popup form {
    margin: 2em auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.popup .form_item {
    position: relative;
    margin: 0.2em;
    flex: 1 1 300px;
}

.popup input.button {
    background-color: #006aaa;
    color: #fff;
}

.conectionstep:not(.active) {
    display: none;
}

@keyframes slideInDown_my {
    from {
        -webkit-transform: translate3d(0, -250px, 0);
        transform: translate3d(0, -250px, 0);
        visibility: visible;
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.slideInDown_my {
    -webkit-animation-name: slideInDown_my;
    animation-name: slideInDown_my;
}

.form_item_error_mess {
    position: relative;
    padding: 1em 1.5em;
    background-color: #a90808;
    top: -0.8em;
    font-size: 0.95em;
    line-height: 1em;
    border-radius: 0 0 3px 3px;
    display: block;
    border: 1px solid #8F0606;
    box-sizing: border-box;
    width: 100%;
    color: #fff;
    transition: all ease-out 150ms;
    opacity: 1;
    z-index: 300;
    font-weight: 400 !important;
    box-shadow: 0 6px 15px -10px #000;
}

.form_item:not(.form_item_error) .form_item_error_mess {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.form_item_error input.text {
    box-shadow: inset 0 0 2px #a90808;
    background-color: rgba(253, 227, 227, 0.9);
    color: #a90808;
}

.form_item_error input.text:focus {
    background-color: rgba(253, 227, 227, 1);
}

.form_item_error input.text:focus ~ .form_item_error_mess {
    top: -0.4em;
}


/* */

.header {
    text-align: center;
    position: relative;
    background: #111111 url(img/headerbg.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 4000;
}

.header_top {
    flex-grow: 1;
    justify-content: center;
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.header_bottom {
    flex-grow: 0;
}

.header .row {
    position: static;
}

.headerlogo {
    position: absolute;
    top: 3em;
    left: 2em;
}

.headerlogo img {
    width: 300px;
    max-width: 90%;
}

.headercontact {
    position: absolute;
    top: 3em;
    right: 2%;
    text-align: right;
    margin-bottom: 20px;
}

.contact_phone {
    font-size: 2em;
    line-height: 1em;
    font-weight: 800;
    text-decoration: none !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.contact_other {
    font-size: 0.9em;
    font-weight: 300;
    margin-top: 0.5em;
}

.contact_callme {
    font-size: 0.9em;
    line-height: 1em;
    margin-top: 0.5em;
    display: inline-block;
    padding: 1em 1.5em 1em 4em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: none !important;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer !important;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url(img/callme.svg);
    background-size: 1.5em;
    background-position: 1.5em center;
    background-repeat: no-repeat;
}

.contact_callme:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.headertitle {
    text-align: center;
    margin: 20vh auto 2vh;
    padding: 0 2em;
}

.headertitle h1 {
    margin: 0;
    padding: 0;
    font-size: 4em !important;
    line-height: 1em;
    letter-spacing: normal !important;
}

.headertitle p {
    margin: 0.5em auto;
    max-width: 800px;
    font-size: 2em;
    line-height: 1em;
    padding: 0 1em;
    letter-spacing: -0.02em;
}

.headerbuttons .button,
.headerbuttons input {
    margin: 0.1em;
}

.headerbuttons .headerbuttons_connect {
    background-color: rgb(0, 106, 170);
}

.headerbuttons a.headerbuttons_login {
    background-color: rgba(248, 248, 248, 0);
}

.playbutton {
    background: url(img/playbutton.png) center no-repeat;
    background-size: contain;
    height: 7em;
    width: 7em;
    margin: 7vh auto;
    display: block;
    opacity: 0.5;
    cursor: pointer;
}

.playbutton:hover {
    opacity: 1;
}

.increase_list {
    margin: 2vh auto 0;
    display: flex;
    max-width: 1200px;
}

.increase_item {
    text-align: center;
    flex: 1 1 100%;
    margin: 2em;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.increase_value {
    font-size: 5em;
    line-height: 1em;
    letter-spacing: -0.05em;
    font-weight: 300 !important;
}

.increase_desc {
    font-size: 1.3em;
    margin-top: 0.5em;
    font-weight: 300;
}

.pride {
    background-color: rgba(0, 106, 169, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #222;
    padding: 1em;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.pride_item {
    margin: 1em;
}

.pride_name {
    text-transform: uppercase;
    font-size: 0.8em;
}

.pride_counter {
    white-space: nowrap;
    letter-spacing: normal !important;
}

.pride_counter b {
    background-image: url(img/pride_counter_bg.png);
    background-size: 100%;
    width: 1.5em;
    height: 1.5em;
    font-size: 2.3em;
    line-height: 1.5em;
    font-weight: 800;
    display: block;
    float: left;
    text-align: center;
    position: relative;
    border-radius: 0.15em;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0.5px;
}

.pride_counter b:after {
    display: block;
    content: '';
    position: absolute;
    width: 102%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.8);
    top: calc(50% - 1px);
    left: -1%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.pride_counter b.zero {
    color: rgba(255, 255, 255, 0.2) !important;
}

.mainservice {
    background: url(img/mainservicebg.jpg) center 20% no-repeat;
    background-size: cover;
    padding: 10em 0 17em;
    box-shadow: 0 10px 125px rgba(0, 0, 0, 0.2);
}

.mainservicelist {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-top: -17em;
    position: relative;
}

.mainservicelistitem {
    flex: 1 1 200px;
    padding: 3em;
}

.mainservicelistitem:hover {
    background-color: #006aaa;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mainservicelistitem h3 {
    font-size: 3em;
    padding: 0;
    margin: 0;
}

.mainservicelistitem_img {
    margin: 2em auto;
    height: 15em;
}

.mainservicelistitem_img_display {
    background: url(img/display_white@2x.png) center center no-repeat;
    background-size: contain;
}

.mainservicelistitem_img_display img {
    height: 10em !important;
    margin: 1em auto;
}

.mainservicelistitem_img img {
    height: 15em;
    transition-property: transform;
    transform-origin: center center;
}

.mainservicelistitem:hover .mainservicelistitem_img img {
    transform: scale(1.1, 1.1);
}

.mainservicelistitem_desc {
    text-align: left;
    margin: 2em auto;
    padding: 0 0 0 3em;
    font-size: 1.1em;
    list-style: none;
}

.mainservicelistitem_desc li {
    padding: 0;
    margin: 0.5em 0;
    position: relative;
}

.mainservicelistitem_desc li:before {
    content: '';
    display: block;
    height: 1.3em;
    width: 1.3em;
    background-image: url(img/mainservicelistitem_black.png);
    background-size: 100% 100%;
    position: absolute;
    left: -2em;
    top: 0;
}

.mainservicelistitem:hover li:before {
    background-image: url(img/mainservicelistitem_white.png);
}

.descriptionlist {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    position: relative;
}

.descriptionitem {
    flex: 1 0 30em;
    padding: 1em 3em;
    box-sizing: border-box;
}

.descriptionitem_desc {
    margin: 2em auto;
    padding: 0;
    font-size: 1.1em;
    list-style: none;
}

.descriptionitem_desc li {
    padding: 0;
    margin: 0.5em 0;
    position: relative;
}

.bigcenteredinfo {
    text-align: center;
    padding: 50px 10% !important;
}

.bigcenteredinfo h2 {
    font-size: 4em;
}

.howitworks {
    padding: 7em 0 0;
    background: url(img/howitworks.jpg) top center no-repeat;
    background-size: 100% auto;
}

.howitworkslist {
    position: relative;
    margin-top: -80px;
}

.howitworkslist #sidebar {
    z-index: 500;
}

.howitworks_screenshot {
    text-align: center;
    width: 60%;
    z-index: 200;
    position: absolute;
    top: calc(15vh + 4em);
    background-size: 100% auto;
    height: auto;
    min-width: 400px;
}

.howitworks_screenshot_display img {
    width: 100%;
}

.howitworks_screenshot_display_file {
    width: 95.4%;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: 3%;
    left: 2.4%;
    height: 72.5%;
}

.howitworks_screenshot_display_file img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation-duration: 250ms;
    -moz-animation-duration: 250ms;
    animation-duration: 250ms;
}

.howitworks_screenshot_display_file:after,
.howitworks_screenshot_mobiledevice_file:after {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 1000;
}

.howitworks_screenshot_display_file img {
    width: 100%;
}

.howitworks_screenshot_mobiledevice {
    position: absolute;
    height: 54%;
    bottom: 0;
    width: 20%;
    left: 12%;
    z-index: 1000 !important;
}

.howitworks_screenshot_mobiledevice:before {
    display: block;
    content: '';
    left: 20%;
    top: 15%;
    position: absolute;
    width: 60%;
    height: 30%;
    box-shadow: 0 0 5em;
    z-index: -1;
}

.howitworks_screenshot_mobiledevice img {
    width: 100%;
    display: block;
}

.howitworks_screenshot_mobiledevice_file {
    position: absolute;
    top: 14%;
    left: 8.5%;
    width: 83%;
}

.howitworks_screenshot_control {
    position: absolute;
    width: 20%;
    bottom: 6.5%;
    left: calc(40%);
    height: 10%;
}

.howitworks_screenshot_control:after {
    display: block;
    height: 100%;
    width: 1px;
    background-color: #aaa;
    position: absolute;
    left: 50%;
    content: '';
    bottom: 0;
}

.howitworks_screenshot_control a {
    display: block;
    height: 100%;
    width: 50%;
    background-size: 1em;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    opacity: 0.5;
}

.howitworks_screenshot_control a:hover {
    opacity: 1;
}

.howitworks_screenshot_prev {
    background-image: url(img/arr_l.svg);
}

.howitworks_screenshot_next {
    background-image: url(img/arr_r.svg);
}

.howitworksitem {
    background-size: auto 100%;
    z-index: 100;
    box-sizing: border-box;
    padding-top: 10vh;
    padding-bottom: 15vh;
    margin-left: 50%;
    padding-left: 20%;
    border-left: 1px dashed #000;
    position: relative;
    height: 85vh;
    min-height: 650px;
    max-height: 800px;
}

.howitworksitem:last-child {
    padding-bottom: 15vh;
}

.howitworksitem:last-child:after {
    display: block;
    content: '';
    width: 1px;
    border-left: 1px dashed #000;
    left: -1px;
    position: absolute;
    top: 100%;
    height: 18vh;
    z-index: 1;
}

.howitworksitem_info {
    position: relative;
}

.howitworksitem_info h3 {
    font-size: 2em;
    color: #fff;
    background-color: #006aaa;
    padding: 0.5em 1em;
    position: relative;
    margin: 0;
    overflow: hidden;
}

.howitworksitem:before {
    display: block;
    content: '';
    background: url(img/howitworks_headerline.svg) left center no-repeat;
    height: 20px;
    width: 50%;
    background-size: auto 100%;
    position: absolute;
    left: -10px;
    top: 12vh;
}

.howitworksitem_screenshots {
    list-style: none;
    padding: 0;
    margin: 2em 0;
    display: flex;
    flex-wrap: wrap;
}

.howitworksitem_screenshots:after {
    display: block;
    content: '';
    clear: both;
}

.howitworksitem_screenshots li {
    background-color: rgba(0, 0, 0, 0.1);
    margin-right: 2px;
    padding: 0.3em;
    cursor: pointer;
    flex: 1 1;
}

.howitworksitem_screenshots li:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.howitworksitem_screenshots li.active {
    background-color: #006aaa;
}

.howitworksitem_screenshots li img {
    display: block;
    width: 100%;
}

.tryitnow {}

.tryitnow_steps {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
    z-index: 1000;
    justify-content: space-between
}

.tryitnow_steps_item {
    text-align: center;
    flex: 1 1 25%;
    counter-increment: list;
    overflow: visible;
    position: relative;
    box-sizing: border-box;
}

.tryitnow_steps_item p {
    padding: 0 1em;
}

.tryitnow_steps_item_img {
    z-index: 1000;
    position: relative;
    padding-top: 5em;
}

.tryitnow_steps_item_img:after {
    display: block;
    position: absolute;
    content: counter(list);
    color: #000;
    font-size: 18em;
    opacity: 0.1;
    font-weight: 800;
    bottom: 0;
    left: calc(50% - 180px);
    z-index: -1;
    pointer-events: none;
    line-height: 1em;
}

.tryitnow_steps_item_img:hover:after {
    color: #006aaa;
    opacity: 1;
}

.tryitnow_steps_item_img img {
    width: 250px;
    z-index: 200;
}

.roundblock {
    border-style: solid;
    border-width: 10px;
    border-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    background-color: rgba(0, 106, 170, 1);
    box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.1);
    color: #fff;
    width: 25em;
    height: 25em;
    text-align: center;
    margin: 0 auto;
    position: relative;
    display: table;
    z-index: 1500;
}

.roundblock:hover {
    box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.2);
}

.roundblock_content {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 2em;
}

.roundblock_link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.roundblock h2 {
    font-size: 3em;
}

.roundblock_content img {
    height: 1.5em;
}

.supsys {
    background-color: #fff;
    padding: 3em 1em;
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin: 3em auto 1em;
}

.supsys img {
    margin: 0.5em 2em;
    height: 3em;
}

.supsys_new {
    display: flex;
    margin: 3em auto;
    font-style: italic;
    flex: 1 1;
    max-width: 700px;
}

.supsys_new_q {
    color: #006aaa;
    text-align: right;
    margin-right: 2em;
    padding-right: 2em;
    border-right: 1px solid #ccc;
    font-size: 1.2em;
}

.supsys_new_a {
    text-align: left;
}

.clientopinion_clientlist {
    border-top: 1px solid #eee;
    margin-top: 0em;
    height: 7em;
    box-sizing: border-box;
}

.clientopinion_clientlist_item {
    display: block;
    background-size: cover;
    border-radius: 4em;
    height: 4em;
    width: 4em;
    margin: -2.5em 0.2em 0;
    border: 0.5em solid #fff;
    float: right;
    background-color: #333;
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter 100ms ease-out;
}

.clientopinion_clientlist_item:hover {
    border-color: #eee;
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
}

.clientopinion_clientlist_item_current {
    border-color: #006aaa !important;
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
}

.clientopinion_clientlist_currentitem {
    display: block;
    background-color: #006aaa;
    height: 21px;
    width: 21px;
    border-radius: 20px;
    margin-top: -10px;
    float: left;
    position: relative;
    margin-left: 7.5em;
}

.clientopinion_clientlist_currentitem:after {
    display: block;
    content: '';
    border-left: 1px solid #006aaa;
    height: 5em;
    position: absolute;
    top: 10px;
    left: 10px;
}

.clientopinion_list {
    margin-top: -3em;
    margin-bottom: 5em;
}

.clientopinion_item {
    text-align: left;
    padding-left: 18em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 200px;
    margin-top: 3em;
}

.clientopinion_item_avatar {
    display: block;
    height: 12em;
    width: 12em;
    background-size: cover;
    background-position: center center;
    border-radius: 10em;
    position: absolute;
    left: 2em;
    background-color: #333333;
    animation-timing-function: ease-in-out;
    animation-duration: 700ms;
    animation-fill-mode: both;
    transform-origin: center center;
    animation-name: fadeIn;
    animation-iteration-count: 1;
}

.clientopinion_item_avatar:after {
    display: block;
    content: '';
    background: url(img/clientopinion_currentitem_avatar.svg) center center no-repeat;
    position: absolute;
    width: 16em;
    height: 16em;
    background-size: cover;
    background-position: center center;
    left: -2em;
    top: -2em;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-fill-mode: both;
    transform-origin: center center;
    animation-name: swing;
    animation-iteration-count: 1;
}

.clientopinion_item_name {
    font-weight: 800;
    font-size: 2.2em;
    line-height: 1em;
}

.clientopinion_item_companyname {
    margin: 0.5em auto;
}

.clientopinion_item_companylogo {
    margin: 1em auto;
}

.clientopinion_item_companylogo img {
    max-height: 5em;
    max-width: 20em;
}

.clientopinion_item_info {
    padding-right: 5em;
}

.clientopinion_item_changes {}

.clientopinion_item_changes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clientopinion_item_changes li {
    padding: 0.3em 0;
    padding-left: 1em;
}

.clientopinion_item_changes li:not(:first-child) {
    border-top: 1px solid #eee;
}

.clientopinion_item_changes li span {
    font-weight: 800;
    margin-right: 1em;
    position: relative;
    display: inline-block;
    width: 1.5em;
}

.clientopinion_item_changes li:hover {
    color: #006aaa;
}

.clientopinion_item_changes li span:before {
    position: absolute;
    right: 120%;
    font-size: 0.9em;
}

span.changes_more:before {
    content: '↑';
}

span.changes_less:before {
    content: '↓';
}

.clientopinion_item_changes p {
    font-size: 0.8em;
    line-height: 1em;
    opacity: 0.5;
}

.clientopinion_item_text {
    padding: 2em;
    background-color: rgba(0, 106, 170, 0.1);
    font-size: 1.5em;
    line-height: 1em;
    font-style: italic;
    margin-top: 1em;
    margin-left: -2em;
    animation-timing-function: ease-in-out;
    animation-duration: 250ms;
    animation-fill-mode: both;
    transform-origin: center center;
    animation-name: fadeIn;
    animation-iteration-count: 1;
}

.clientopinion_writenew {
    font-size: 2.2em;
    line-height: 1em;
    margin: 2em auto;
    text-align: center;
}

.connectbar {
    color: #fff;
    text-align: center;
    background: #111 url(img/connectbar.jpg) center center no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 20em #000;
    padding: 1em;
    box-sizing: border-box;
}

.connectbar .button {
    color: #fff;
}

.connectbarfixed {
    position: fixed;
    display: block;
    bottom: 0;
    left: 0;
    text-align: center;
    box-sizing: border-box;
    z-index: 2000;
    box-shadow: none;
    color: initial;
    font-size: 0.9em;
    border-radius: 5px 5px 0 0;
    padding: 0 !important;
    width: 100%;
}

.connectbarfixed:after {
    display: block;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.99) 99%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.99) 99%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0)), color-stop(0.99, rgba(255, 255, 255, 0.99)), to(rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.99) 99%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(rgba(255, 255, 255, 0) 2%, rgba(255, 255, 255, 0.99) 99%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
    opacity: 0.2;
    -webkit-transition: all 150ms ease-out;
    -moz-transition: all 150ms ease-out;
    transition: all 150ms ease-out;
    pointer-events: none;
}

.connectbarfixed:hover:after {
    opacity: 1;
    height: 300%;
}

.connectbarfixed.slideOutDown {
    -webkit-animation-duration: 150ms !important;
    -moz-animation-duration: 150ms !important;
    animation-duration: 150ms !important;
}

.connectbarfixed.slideInUp {
    -webkit-animation-duration: 250ms !important;
    -moz-animation-duration: 250ms !important;
    animation-duration: 250ms !important;
}

.connectbarfixed .connectbarinfo {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border-radius: 3px;
    padding: 0;
    width: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 50%;
    left: 25%;
    -moz-transition: bottom 150ms ease-out;
    -webkit-transition: bottom 150ms ease-out;
    transition: bottom 150ms ease-out;
    opacity: 0;
    z-index: 100;
    box-sizing: border-box;
    pointer-events: none;
}

.connectbarfixed .connectbarinfo p {
    margin: 0;
    padding: 1.5em;
}

.connectbarfixed:hover .connectbarinfo {
    bottom: 100%;
    opacity: 1;
}

.connectbarfixed a {
    z-index: 1000;
    position: relative;
}

.about {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 1 20%;
}

.about_info {
    flex: 5;
}

.about_contacts {
    flex: 2;
}

.team_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team_member {
    flex: 0 1 13em;
    padding: 1.5em;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0.5em;
}

.team_member:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1em 2em rgba(0, 0, 0, 0.2);
}

.team_member_photo {
    background-size: cover;
    background-position: center center;
    display: block;
    width: 100%;
    padding-bottom: 100%;
    background-color: #eee;
    margin-bottom: 1em;
    border-radius: 100%;
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: filter 100ms ease-out;
}

.team_member:hover .team_member_photo {
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
}

.team_member_name {
    font-weight: 800;
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 0.5em;
}

.team_member_job {
    text-transform: uppercase;
    font-size: 0.8em;
    line-height: 1.2em;
    font-weight: 300;
}

.team_member_desc {
    margin-top: 1em;
    font-size: 0.8em;
    line-height: 1.2em;
    font-weight: 300;
}

.footer {
    text-align: center;
    border-top: 1px solid #eee;
    background-color: #f7f7f7;
}

.footer .col {
    padding: 0.5em;
}

.footer .social {
    border-top: 1px solid #dfdfdf;
    text-align: center;
    height: auto;
    margin-bottom: 5em;
}

.footer .social a {
    opacity: 0.5;
    display: inline-block;
}

.footer .social a:hover {
    opacity: 1;
}

.footer .social a img {
    height: 3em;
    width: 3em;
    margin: 0 1em 0.5em;
}

.manual_screenshot {
    margin-top: 2em;
    margin-bottom: 2em;
}

.manual_screenshot img {
    max-width: 800px;
    width: 80%;
    max-height: 80vh;
    border: 4px solid #fff;
    box-shadow: 0 0 30px -15px #000;
    cursor: zoom-in;
}

.manual_list_ordered {
    list-style: none;
    padding: 1em 1em 1em 7em;
    margin: 0;
}

.manual_list_ordered li {
    position: relative;
    counter-increment: list;
    margin-bottom: 3em;
    margin-top: 5em;
    padding: 0;
}

.manual_list_ordered li:after {
    position: absolute;
    left: -1.2em;
    top: -0.2em;
    display: block;
    content: counter(list);
    height: 1em;
    width: 1em;
    background-color: #eee;
    border-radius: 1em;
    font-size: 5em;
    line-height: 1em;
    color: #333;
    text-align: right;
    font-weight: 800;
    overflow: hidden;
}

.integration_manual_link {
    margin: 2em auto;
    padding: 2em 1em 1em;
    border: 1px dashed RGBA(0, 0, 0, 0.2);
    border-radius: 5px;
}

@media (min-width:700px) {
    .headerbuttons {
        margin-bottom: 4vh;
    }
    .header {
        height: 100vh;
        max-height: 1200px;
        min-height: 750px;
    }
}

@media (max-width: 1000px) {
    body {
        font-size: 13px;
    }
    .tryitnow_steps_item {
        flex-basis: 50%;
    }
}

@media (max-width: 700px) {
    body {
        font-size: 12px;
    }
    .headercontact,
    .headerlogo {
        position: relative;
        text-align: center;
        top: auto;
        right: auto;
        margin: 3em auto;
    }
    .headercontact,
    .col.contact {
        font-size: 15px !important;
        line-height: 1.2em;
    }
    .headerlogo {
        margin-left: -10%;
    }
    .headerbuttons {
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .headertitle {
        margin-top: 5vh;
    }
    .playbutton {
        margin: 2em auto;
    }
    .howitworks_screenshot {
        width: 80%;
    }
    .increase_value {
        font-size: 4em;
    }
    .howitworkslist #sidebar {
        z-index: 500;
    }
    .howitworksitem {
        padding-left: 5%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.9);
        max-height: 500px;
    }
    .tryitnow_steps_item {
        flex-basis: 100%;
    }
    .connectbarfixed {
        width: 100%;
        right: 0;
        border-radius: 0;
    }
    .connectbar .button {}
    .connectbarfixed .connectbarinfo {
        width: 96%;
        left: 2%;
        font-size: larger;
    }
}

@media (min-height: 800px) {
    .popup .form_item {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 11px;
    }
}

@media print {
    body {
        width: 100%;
    }
}


/* Scrollbar *

::-webkit-scrollbar {
 width: 5px;
}

::-webkit-scrollbar:horizontal {
 height: 5px;
}

::-webkit-scrollbar-track {
 box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
 background-color: #111;
 padding: 1px;
}

::-webkit-scrollbar-thumb {
 background: #fff;
}

/* Scrollbar */
