/*** reset.css ***/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

input, textarea {
    outline:none;
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*** fonts ***/
@font-face {
    font-family: "Museo 100";
    src: url("../fonts/MuseoSansLight.eot");
    src: url("../fonts/MuseoSansLight.eot?#iefix")format("embedded-opentype"),
        url("../fonts/MuseoSansLight.woff") format("woff"),
        url("../fonts/MuseoSansLight.ttf") format("truetype");
    font-style: normal;
    font-weight: 100;
}
@font-face {
    font-family: "Museo 300";
    src: url("../fonts/MuseoSansRegular.eot");
    src: url("../fonts/MuseoSansRegular.eot?#iefix")format("embedded-opentype"),
        url("../fonts/MuseoSansRegular.woff") format("woff"),
        url("../fonts/MuseoSansRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: 300;
}
@font-face {
    font-family: "Museo 500";
    src: url("../fonts/MuseoSansMedium.eot");
    src: url("../fonts/MuseoSansMedium.eot?#iefix")format("embedded-opentype"),
        url("../fonts/MuseoSansMedium.woff") format("woff"),
        url("../fonts/MuseoSansMedium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: "Icomoon";
    src: url('../fonts/icomoon.eot');
    src: url('../fonts/icomoon.eot?#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.woff') format('woff'),
        url('../fonts/icomoon.ttf') format('truetype'),
        url('../fonts/icomoon.svg#PTSansItalic') format('svg');
}

/*** static style ***/
body{
    -webkit-font-smoothing: subpixel-antialiased !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
}
#page{
    min-width: 960px;
    overflow: hidden;
    max-width: 1920px;
    margin: 0 auto;
    font-family:"Museo 100",sans-serif;
}
.oHide{
    overflow: hidden;
}
.cBlock{
    margin: 0 auto;
    width: 960px;
}
.rel{
    position: relative;
}
.fHeight{
    height: 100%;
}
.clear{
    clear: both;
}
.westSide{
    float: left;
}
.eastSide{
    float: right;
}
.inlineBlock{
    display:inline-block;
}
/*** nav ***/
#nav{
    height: 59px;
    width: 100%;
    font-family: 'Museo 100',sans-serif;
    font-size: 15px;
    line-height: 59px;
    border: 1px solid rgba(255,255,255,0.15);
    position: fixed;
    top: 0;
    z-index: 10;
}
.navLeft li{
    margin-right: 25px;
    float: left;
}
.navLeft li a{
    text-decoration: none;
    color: white;
    display:inline-block;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.navLeft li a:hover{
    color: #FC7979;
}
.navLeft li a:hover span{
    color: #FC7979;
}
.navLeft li img{
    vertical-align: top;
}
.navLeft .logo{
    padding-top: 14px;
}
.navLeft li a span{
    font-family: 'Museo 500',sans-serif;
    color: #FDB33F;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.navRight li{
    float: left;
    margin-right: 10px;
}
.navRight li:last-child{
    margin: 0 0 0 30px;
}
.navRight li a{
    text-decoration: none;
    color: white;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    opacity:0.8;

}
.navRight li a:hover{
    color: #FC7979;
}
.navRight li .current:hover{
    color: white;
}
.navRight li .current{ /** текущая раскладка языка **/
    font-family: 'Museo 500',sans-serif;
    color: white;
    cursor: default;
    opacity: 1;
}
.navRight li .login{
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    padding: 6px 27px;
    transition: all 0.5s;
}
.navRight li .login:hover{
    background: white;
    color: black;
}

body.enterprise.member.black .navRight li .login{
    border: 1px solid #aaa;
    border-radius: 3px;
    color: #666;
    padding: 6px 27px;
    transition: all 0.5s;
}

body.enterprise.member.black .navRight li .login:hover{
    background: #aaa;
    color: #fff !important;
}
#nav.scrolled{
    background: rgba(8,26,36,0.8);
    border-bottom: 1px solid rgba(8,26,36,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

body.enterprise .navRight li .login:hover{
    color: #3497DB;
}

body.enterprise.member.black{
    background-color: #f6f6f6;
    color:#000;

}

body.enterprise .navRight li a{
    color: #ffffff;
    opacity:0.8;
}

body.enterprise .navLeft li a{
    color: #ffffff;
    opacity:0.8;
}

body.enterprise.black .navLeft li a{
    color: #000;
    opacity:0.8;
}

body.enterprise.black .navRight li a{
    color: #000;
    opacity:0.8;
}

body.enterprise.black .navRight li a.current{
    color: #000;
    opacity:1;
    font-family: 'Museo 500',sans-serif;
}

body.enterprise.black .navLeft li a.current{
    color: #000;
    opacity:1;
    font-family: 'Museo 500',sans-serif;
}

body.enterprise .navLeft li a.logo, 
body.enterprise .navLeft li a.current, 
body.enterprise .navLeft li a:hover, 
body.enterprise .navRight li a.login, 
body.enterprise .navRight li a.current, 
body.enterprise .navRight li a:hover{ 
    opacity:1;
    color:white;
}

body.enterprise.black .navLeft li a:hover, 
body.enterprise.black .navRight li a:hover{ 
    opacity:1;
    color:#fc797a;
}


/*** headerBlck ***/
.headerBlck{
    height: 660px;
    width: 100%;
    margin: 0 auto;
    background: url("../img/headerBg.jpg")no-repeat center;
}

body.enterprise .headerBlck 
{ 
    height: 530px;
    background: url("../img/headerBg2.jpg") center;
}

body.enterprise .headerBlck div.bg{
    width: 1600px;
    height: 60px;
    margin: 0 auto;
    position:relative;
    background: #3497DB;
    z-index: 5;
}

body.enterprise.black .headerBlck div.bg{
    width: 1600px;
    height: 60px;
    margin: 0 auto;
    position:relative;
    background: #f6f6f6;
    z-index: 5;
}

h1{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    line-height: 46px;
    text-align: center;
    color: white;
    padding-top: 150px;
}


body.enterprise h1{ 
    font-size: 50px;
    line-height: 56px;
    padding-top: 100px;
}

.descriptor{
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    color: white;
    line-height: 22px;
    text-align: center;
    width: 500px;
    margin: 16px auto 0;
}
.formBox{
    text-align: center;
    margin-top: 25px;
}
.formBox.description{
    margin-top: 10px;
}
.formBox input[type=text]{
    width: 390px;
    height: 60px;
    color: #333333;
    padding-left: 20px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-family: "Museo 100",sans-serif;
    font-size: 24px;
}
.formBox label{
    display: inline-block;
}
.checkIn a{
    display: inline-block;
    background: #3497DB;
    vertical-align: top;
    height: 60px;
    line-height: 60px;
    font-family:"Museo 100",sans-serif;
    font-size: 24px;
    color: white;
    padding: 0 35px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    text-decoration: none;
    margin-left: -4px;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.download a 
{ 
    width:170px;
    display: inline-block;
    background: #3497DB;
    vertical-align: top;
    height: 50px;
    text-align:center;
    line-height: 50px;
    font-family:"Museo 100",sans-serif;
    font-size: 16px;
    color: white;
    padding: 0 20px 0 45px;
    border:solid 1px #ffffff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    background:url("../img/whiteCloud.png")no-repeat 22px 12px #3497DB;
}
.checkIn a:hover{
    background: #51A5DF;
}
.download a:hover
{
    background:url("../img/blueCloud.png")no-repeat 22px 12px #ffffff;
    color:#3497DB;
}

.formBox p{
    font-family: "Museo 100",sans-serif;
    color: #DDDDDD;
    font-size: 18px;
}
.formBox .login{
    margin-top: 30px;
}
.formBox .login a{
    color: #3397DA;
    text-decoration: none;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.formBox .login a:hover{
    color: #FC797A;
}
.line{
    width: 137px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 20px auto;
}
/* b-share (social href)*/
.preIcon{
    display: inline-block;
    vertical-align: middle;
}
.b-share{
    display: inline-block;
    vertical-align: middle;
}
.b-share a{
    text-decoration: none;
    color: white;
    margin: 0 7px;
    font-size: 28px;
    opacity: 0.5;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.b-share a:hover{
    opacity: 1;
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'Icomoon',sans-serif;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-VK:before {
    content: "\e601";
}
.icon-Facebook:before {
    content: "\e614";
}
.icon-Twitter:before {
    content: "\e602";
}
.icon-Google:before {
    content: "\e616";
}
.demoLogin{
    margin: 50px auto 0;
    text-align: center;
}
.demoLogin a{
    border: 1px solid white;
    border-radius: 3px;
    color: white;
    padding: 6px 27px;
    font-family: 'Museo 100',sans-serif;
    font-size: 15px;
    text-decoration: none;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.demoLogin a:hover{
    background: white;
    color: black;
}

/*** Что такое passwork ***/
.passworkBlck{
    width: 100%;
    padding: 80px 0 70px;
    background: #f6f6f6;
}
.passworkBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    line-height: 46px;
    color: #111111;
    text-align: center;
    margin-bottom: 20px;
}
.passworkBlck .subtitle{
    width: 640px;
    margin: 0 auto;
    color: #858585;
    text-align: center;
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
}
.passworkBox{
    width: 800px;
    margin: 70px auto 0;
}


.passworkBox a{
    color: #3497DB;
}

.passworkBox a:hover{
    color: #FC797A;
}

.passworkBox li{
    float: left;
    margin:0 50px 40px 0;
    width: 370px;
    clear: left;
}
.passworkBox li:nth-child(2n){
    margin-right: 0;
    clear: right;
}
.passworkBox img{
    vertical-align: top;
    float: left;
}
.passworkBox .desc{
    width: 280px;
    margin-left: 90px;
}
.passworkBox h5{
    font-family: 'Museo 500',sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #111111;
    margin-bottom: 5px;
}
.passworkBox p{
    font-family: 'Museo 100',sans-serif;
    font-size: 13px;
    color: #858585;
    line-height: 17px;
}

/*** Отзывы ***/
.feedbackBlck{
    padding: 80px 0 70px;
    /*background: #f6f6f6;*/
    margin: 0 auto;
    height:300px;
    padding-bottom: 130px;
}
.feedbackBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    line-height: 46px;
    color: #111111;
    text-align: center;
    margin-bottom: 20px;
}
.feedbackBlck .feedbackText { 
    margin-bottom: 20px;
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #111111;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}



.feedbackBlck .feedbackAuthor{
    width: 640px;
    margin: 0 auto;
    color: #858585;
    text-align: center;
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
}
.feedbackBlck .feedbackAuthor a{
    color:#3497DB;
    text-decoration: underline;

}
.feedbackBlck .feedbackAuthor a:hover{
    color: #FC797A;
}
.feedbackBlck .quote{ 
    height:34px;
    background:url("../img/quote.png")no-repeat center;
    margin-bottom: 20px;
}

.feedbackBlck .feedbacks { 
    width:840px;
}

.feedbackBlck .feedbacks .feedback.hide{ 
    display:none;
}

.feedbackBlck .feedbacks .feedback.active{ 
    display:normal;
}

.feedbackBlck .feedbackPrev { 
    background:url("../img/slideToLeft.png")no-repeat center;
    margin-left:40px;
}

.feedbackBlck .feedbackNext { 
    background:url("../img/slideToRight.png")no-repeat center;
    margin-right:40px;
}

.feedbackBlck .feedbackPrev, .feedbackBlck .feedbackNext { 
    height:150px;
    width:18px;
    opacity:1;
    cursor:pointer;
}

.feedbackBlck .feedbackPrev:hover, .feedbackBlck .feedbackNext:hover { 
    opacity:1;
}

/*** Как это работает ***/
.workBlck{
    padding: 60px 0;
}
.workBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    line-height: 46px;
    color: #111111;
    text-align: center;
    margin-bottom: 20px;
}
.workBlck .subtitle{
    width: 640px;
    margin: 0 auto;
    color: #858585;
    text-align: center;
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
}
.workBlck .costSliderBox { 
    padding-top:30px;
}
.workBlck .costSliderBox .formBox a.enterpriseBtn{ 
    display: inline-block;
    background:#3497DB;
    vertical-align: top;
    height: 50px;
    line-height: 50px;
    font-family:"Museo 100",sans-serif;
    font-size: 18px;
    color: white;
    padding: 0 45px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-decoration: none;
    margin-left: -4px;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    opacity:1;
}
.workBlck .costSliderBox .formBox .freeForNonProfit{ 
    display: inline-block;
    vertical-align: top;
    font-family:"Museo 100",sans-serif;
    font-size: 20px;
    padding: 0 45px;
    padding-bottom: 30px;
    margin-left: -4px;

}
.workBlck .costSliderBox .formBox a.enterpriseBtn:hover { 
    opacity:0.8;
}

.workBlck .costSliderBox .customerCountContainer { 
    color: #858585;
    font-family: 'Museo 100',sans-serif;
    font-size: 16px;
    line-height: 30px;
}
.workBlck .costSliderBox .customerCountContainer span#customerCount { 
    width:60px;
    height:30px;
    color:#111111;
    font-size: 18px;
    background-color:#F6F6F6;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-right:10px;
}
.workBlck .costSliderBox .sliderContainer { 
    margin:20px auto;
    width:460px;
}
.workBlck .costSliderBox .sliderContainer span{ 
    color: #858585;
    font-family: 'Museo 100',sans-serif;
    font-size: 16px;
    padding-top:5px;
}
.workBlck .costSliderBox .sliderContainer .slider {
    background: url(../img/sliderLine.png) no-repeat;
    cursor:pointer;
}
.workBlck .costSliderBox .sliderContainer .knob {
    top:-5px;
    position: relative;
    background: url(../img/sliderSwitcher.png) no-repeat;
    cursor:pointer;
}
.workBlck .costSliderBox .feedbackForm{
    display:none;
    margin:20px auto;
    width:460px;
    color: #858585;
    font-family: 'Museo 100',sans-serif;
    font-size: 16px;
    text-align: center;
}
.workBlck .costSliderBox .feedbackForm span{
    display:none;
    display: inline-block;
    font-size: 23px;
    color:black;

}
.workBlck .costSliderBox .feedbackForm input{
    display: inline-block;
    border-style: solid;
    border-color: #aaaaaa;
    margin: 10px;
    line-height: 20px;
    border-width: 1px;
    border-radius: 5px;
    padding: 10px;
    font-family: "Museo 100",sans-serif;
    font-size: 18px;
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 20px;
    width: 300px;    

}
.workBlck .costSliderBox .feedbackForm a{
    display: inline-block;
    background:url("../img/getBillButton.png")no-repeat center #3497DB;
    vertical-align: top;
    height: 50px;
    line-height: 50px;
    font-family:"Museo 100",sans-serif;
    font-size: 18px;
    color: white;
    padding: 0 45px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    text-decoration: none;
    margin-left: -4px;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
    opacity:1;

}
.workBlck .costSliderBox .feedbackForm a:hover { 
    opacity:0.8;
}
.workBlck .costSliderBox .costContainer { 
    margin:10px auto 0 auto;
}
.workBlck .costSliderBox .costContainer span#billAmount { 
    font-family:"Museo 100",sans-serif;
    font-size: 30px;
    color:#111111;
    /*width:95px;
    text-align:right;*/
}
.workBlck .costSliderBox .costContainer span#billAmountCurrency { 
    font-family:"Museo 100",sans-serif;
    font-size: 30px;
    color:#111111;
    /*width:95px;
    text-align:right;*/
}
.workBlck .costSliderBox .costContainer span.currencyRu { 
    background: url(../img/currencyRu.png) no-repeat center;
    padding-left:10px;
    width:16px;
    height:28px;
}
body.enterprise .workBlck 
{ 
    margin: 0 auto;
    max-width: 1600px;
}
body.enterprise .workBlck h2{
    font-size: 28px;
    line-height: 36px;
    margin-bottom:60px;
}
body.enterprise .workBlck ul li { 
    margin-top:10px;
    margin-bottom:10px;
}
body.enterprise .workBlck ul li .desc 
{ 
    margin-left:10px;
    color: #858585;
    font-family: 'Museo 100',sans-serif;
    font-size: 16px;
}
body.enterprise .workBlck .securityImg { 
    margin-left:220px;
}
body.enterprise .workBlck .securityBox { 
    margin-left:30px;
}

/*** стили для слайдера ***/
.passworkSlider{
    margin-top: 40px;
    text-align: center;
}

.passworkSlider_nav{
    z-index: 3;
    position: absolute;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    top: 0;
    left: 0;
    display: block;
    background: #fff;
    opacity: 0;
    filter: alpha(opacity=1);
    width: 48%;
    text-indent: -9999px;
    overflow: hidden;
    height: 91%;
}
.passworkSlider_nav.next{
    left: auto;
    right: 0;
}

.passworkSlider li{
    width: 960px;
}
.passworkSlider li img{
    float: left;
    vertical-align: top;
    margin-right: 30px;
}
.passworkSlider li .desc{
    padding-right: 51px;
}
.passworkSlider li h5{
    font-family: 'Museo 500',sans-serif;
    font-size: 18px;
    color: #111111;
    margin-bottom: 30px;
    line-height: 22px;
}
.passworkSlider li p{
    font-family: 'Museo 100',sans-serif;
    font-size: 15px;
    line-height: 19px;
    color: #858585;
    margin-bottom: 30px;
}

/*** стили для пэйджера(слайдер) ***/
.passworkSlider_tabs{
    display: table;
    margin: 30px auto 0;
    position: relative;
    bottom: -30px;
}
.passworkSlider_tabs li{
    float: left;
    margin-right: 10px;
}
.passworkSlider_tabs li a{
    display: block;
    border-radius: 100%;
    background: rgba(0,0,0,0.1);
    width: 14px;
    height: 14px;
    font-size: 0;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.passworkSlider_tabs li a:hover{
    background: rgba(0,0,0,0.2);
}
.passworkSlider_tabs .passworkSlider_here{
    background: rgba(0,0,0,0.5);
    border-radius: 100%;
}

/*** Passwork для бизнеса ***/
.businessBlck{
    width: 100%;
    height: 360px;
    background: url("../img/passworkBg.jpg")no-repeat center;
}
.businessBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    color: white;
    padding-top: 90px;
    text-align: center;
    margin-bottom: 20px;
}
.businessBlck p{
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}
.businessBlck p a{
    text-decoration: none;
    color: white;
    padding: 14px 44px;
    border: 1px solid white;
    border-radius: 3px;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
.businessBlck p a:hover{
    background: white;
    color: #3497DB;
}

/*** Бесплатные возможности ***/
.freeBlck{
    padding: 80px 0;
    background: #3F3F41;
    text-align: center;
}
.enterprise.member.black .freeBlck{
    padding: 80px 0;
    background: #333;
    text-align: center;
}
.freeBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 42px;
    line-height: 46px;
    color: white;
    margin-bottom: 20px;
}
.freeBlck .subtitle{
    font-family: 'Museo 100',sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: white;
    margin-bottom: 50px;
}
.freeBlck .formBox .login{
    font-size: 15px;
}

body.enterprise .freeBlck{
    margin: 0 auto;
}

/*** footer ***/
#footer{
    height: 67px;
    background: #f6f6f6;
    line-height: 67px;
}

.enterprise.member.black #footer{
    height: 67px;
    background: #333;
    line-height: 67px;
    color:#ccc;
}

.enterprise.member.black #footer .cBlock{
    border-top:solid 1px #555;
}
.copyrights{
    font-family: 'Museo 100',sans-serif;
    font-size: 13px;
}
#footer .copyrights a{
    color: #3397D9;
    text-decoration: none;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}
#footer .copyrights a:hover{
    color: #FC7979;
}

#footer .leaveMess a{
    margin-right: 20px;
}

#footer span{
    padding-left: 30px;
}
#footer span a{
    font-family: 'Museo 100',sans-serif;
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -ms-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.5s;
}
#footer span a:hover{
    color: #FC7979;
}

.enterprise.member.black #footer .leaveMess a{
    color: #fff;
    opacity: 0.5;
}
.enterprise.member.black #footer .leaveMess a:hover{
    opacity: 1;
}
body.enterprise #footer{
    margin: 0 auto;
}


.etc{
    margin-right: 10px;
    width: 50px;
    height: 20px;
    margin-top: 20px;
    border-radius: 2px;
    background: url("../img/footerDot.png")no-repeat center;
}
.etc:hover{
    background: white url("../img/footerDot.png")no-repeat center;
}
.etc .drop{
    position: absolute;
    width: 155px;
    height: 50px;
    background-color: #fafafa;
    border-radius: 5px;
    font-family: 'Museo 100',sans-serif;
    font-size: 13px;
    line-height: 17px;
    padding: 20px 20px 30px ;
    top: -80px;
    right: -12px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0 0 1px 1px rgba(0,0,0,0.1);
}
.etc:hover .drop{
    visibility: visible;
    opacity: 1;
}

.etc .drop a{
    color: #3497DB;
    display: block;
    margin-bottom: 5px;
}

.etc .drop a:hover{
    color: #FC797A;
}
#player{
    cursor: pointer;
}
#player img{
    cursor: pointer;
    width : 700px;
    margin: 0px !important;
    float: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;    

}
#player img:hover{
    opacity: 0.8;
}

div.sourceoption{
    font-family: "Museo 100",sans-serif;
    display: inline;
    padding: 5px;
    margin-left: 20px;
    background-image: url(/img/01.png);
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-top: 1px;
    color: #858585;
    cursor: pointer;

}

div.sourceoption.selected{
    background-image: url(/img/03.png);
}

form.formBox.sourceoption{
    margin-top: 45px;
}

@font-face {
    font-family: 'icomoon2';
    src:url('/font/icomoon.eot');
    src:url('/font/icomoon.eot?#iefix') format('embedded-opentype'),
        url('/font/icomoon.ttf') format('truetype'),
        url('/font/icomoon.woff') format('woff'),
        url('/font/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

.iconYes:before {
    font-family: 'icomoon2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;                
    content: "\e613";
    color:#5DBE6A;
    font-size: 16px;
}

.iconNo:before {
    font-family: 'icomoon2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;                    
    content: "\e611";
    color:#FC797A;
    font-size: 14px;
}            

.compareTable{
    font-family: 'Museo 100',sans-serif;
    width: 800px;
    color:#111111;
    margin: auto;
    margin-top: 80px;
    margin-bottom: 40px;
}

.compareTable a{
    color: #3497DB;
    text-decoration: underline;
}
.compareTable a:hover{
    color: #FC797A;
    text-decoration: underline;
}            

.compareTable .textYes{
    color:#5DBE6A;
}

.compareTable .textNo{
    color:#FC797A;
}            

.compareTable .col1{
    width: 400px;
}
.compareTable .col{
    width: 100px;
    color:#949494;
}

.compareTable .col span{
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

.compareTable td{
    text-align: center;
    vertical-align:middle;
    border-bottom: solid 1px #DDDDDD;
}


.compareTable td.first{
    text-align: left;
}

.compareTable td img{
    width: 50px;
}            

.compareTable .line td{
    height: 40px;
}


.circle-container .circle{
    width: 10px;
    height: 10px;
    border:1px solid #aaaaaa;
    border-radius: 20px;
    margin: auto;
    display: inline-block;
}
.circle-container .circle.fill{

    background-color: #3497DB;
    border:1px solid #3497DB;

}                
.circle-container{
    text-align: center;
    margin-top: 30px;
}

.freeBlck.prices{
    font-family: 'Museo 100',sans-serif;

    line-height: 46px;
    color: white;

}
.freeBlck.prices h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 35px;
    line-height: 46px;
    color: white;
    margin-bottom: 20px;
}

.freeBlck.prices .left{
    width:50%;
    float:left;

}
.freeBlck.prices .right{
    width:50%;
    float:right;
}

.freeBlck.prices .cost{
    font-size: 80px;
    padding-top: 10px;
    position: relative;
    left: -5px;
}

.freeBlck.prices .cost span{
    font-size: 30px;
    display: inline;
    position: relative;
    top: -35px;                    
}

.freeBlck.prices .cost span.down{
    top: -20px;
    left: -20px;                  
}

.freeBlck.prices .title{
    font-size: 18px;
    color: #dddddd;
}       

.freeBlck.prices .left .btn{
    color:#ffffff;
    background-color: #3497DB;
    width: 350px;
    margin: auto;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

.freeBlck.prices .right .btn{
    color:#ffffff;
    border:solid 1px #FFFFFF;
    width: 350px;
    margin: auto;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
}      

.freeBlck.prices .btn:hover{
    background-color: #ffffff;
    color:#000000;

}

.freeBlck.prices .versionFetures{
    text-align: left;
    width: 350px;
    margin: auto;
    display: block;
    margin-top: 30px;
}

.freeBlck.prices .versionFetures li{
    margin-bottom: 20px;
}
.freeBlck.prices .versionFetures li img{
    display: inline;
    position: absolute;
}

.freeBlck.prices .versionFetures li .desc{
    line-height: 20px;
    color: #dddddd;
    font-size:15px;
    width: 330px;
    margin-left: 30px;
}


.enterprise.member .price-container{
    background-color: #fff;
    color:#000;
    padding:50px;
    height: 265px;
    border-radius: 3px;
    box-shadow: 0 0 0px 5px #eee;
}
.enterprise.member .price-container .left{
    float: left;
    width: 455px;
    border-right: solid 1px #ddd;
    padding-right: 40px;    
}
.enterprise.member .price-container .left .text{
    font-size: 30px;    
}
.enterprise.member .price-container .left #customerCount{
    padding: 5px;
    border: solid 1px #ababab;
    border-radius: 5px;
    font-family: 'Museo 100',sans-serif;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: 10px;
    position: relative;
    top: -5px;
    width: 17px;
    display: inline-block;
    text-align: center;
}
.enterprise.member .price-container .left .price{
    display: block;
    float: right;    
}
.enterprise.member .price-container .left .price #billAmount, .enterprise.member .price-container .left .price #billAmountCurrency{
    font-size: 30px;
}
.enterprise.member .price-container .left .price .peryear{
    font-size: 14px;
}
.enterprise.member .price-container .left .slider-container {
    margin-top: 15px;
}

.enterprise.member .price-container .left .slider-container  .slider{
    background-color: #ddd;
    cursor:pointer;
}
.enterprise.member .price-container .left .slider-container  .knob {
    top:-5px;
    position: relative;
    background-color: #3497DB;
    border-radius: 10px;
    cursor:pointer;
    display: inline-block;
}

.enterprise.member .price-container .left .period-container{
    margin-top: 40px;
    margin-bottom: 40px;
}


.enterprise.member .price-container .left .period-inner-container{
    border-style: solid;
    border-width: 2px;
    display: inline-block;
    padding: 20px 25px 20px 22px;
    border-radius: 5px;
    border-color: #3497DB;
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
    width: 405px;
    background-color: #EAF5FC;
}

.enterprise.member .price-container .left .period-inner-1{
    display: inline-block;
}
.enterprise.member .price-container .left .period-inner-1 .name{
    font-size: 18px;
    font-weight: bold;
}
.enterprise.member .price-container .left .period-inner-1 .desc{
    font-size: 14px;
    color: #777777;
    margin-top: 7px;
}

.enterprise.member .price-container .left .period-inner-2{
    display: inline-block;
    float: right;
    margin-top: 4px;
}
.enterprise.member .price-container .left .period-inner-2 .cost{
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
}
.enterprise.member .price-container .left .period-inner-2 .explain{
    display: inline-block;
    font-size: 14px;
    color: #777;    
}
.enterprise.member .price-container .left .massdicount-container{
    text-align: center;
    margin-top: 30px;
    height:110px;
}
.enterprise.member .price-container .left .massdicount{
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    padding: 22px 25px 25px 22px;
    border-radius: 5px;
    border-color: #ddd;    
    color:#000;
    text-decoration: none;    
    transition: all 0.5s;
}

.enterprise.member .price-container .left .massdicount:hover{
    background-color: #f5f5f5;
}

.enterprise.member .price-container .left .massdicount .discount{
    display: block;
    font-size: 30px;
    margin-bottom: 8px;

}

.enterprise.member .price-container .left  .massdicount .offer{
    display: block;
    font-size: 15px;
    color:#000;
}


.enterprise.member .price-container .left  .massdicount i{
    text-decoration: line-through;
    color: #FB7D7D;
}    

.enterprise.member .price-container .left .massdicount.left{
    width:178px;
    border-radius: 5px 0 0 5px;
}
.enterprise.member .price-container .left .massdicount.right{
    width:178px;
    border-radius: 0 5px 5px 0;
    border-left: none;
}
.enterprise.member .price-container .left .button{
    clear: both;
    margin-top: 25px;
}
.enterprise.member .price-container .left .button a{
    color: #ffffff;
    background: none;
    background-color: #3497DB;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Museo 100';
    text-align: center;
    transition: all 0.5s;
}
.enterprise.member .price-container .left .button a:hover{
    opacity: 0.7;
}
.enterprise.member .price-container .right{
    text-align: left;
    float: left;
    width: 320px;
    padding-left: 40px;

}
.enterprise.member .price-container .left .discount-container .right{
    text-align: center;
}

.enterprise.member .price-container .right .referral{
    position: relative;
}

.enterprise.member .price-container .right .referral h2{
    font-size:30px !important;
    color:#000;
    margin-bottom: 10px !important;
    text-align: left;
}

.enterprise.member .price-container .right .referral .desc{
    text-align: left;
    font-size: 15px;
    line-height: 20px;
}
.enterprise.member .price-container .right .referral .info ul{
    font-size:13px;
    line-height: 16px;
    color:#666;
}    

.enterprise.member .price-container .right .referral .info ul li{
    position: relative;
}  

.enterprise.member .price-container .right .referral .info ul li:before{
    content: '\2022';
    position: absolute;
    left: -15px;
    font-size: 20px;
    color: #666;
    top: -3px;
}  


.enterprise.member .price-container .right  .referral .join{
    text-align: center;
    position: absolute;
    width: 315px;

    top: 215px;
}

.enterprise.member .price-container .right  .referral .join a{
    text-decoration: none;
    border:solid 1px #888;
    color: #666;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Museo 100';
    padding-left: 80px;
    padding-right: 80px;
    border-radius: 5px;
    font-size: 18px;
    display: block; 
    transition: all 0.5s;
}

.enterprise.member .price-container .right  .referral .join a:hover{
    background-color: #666;
    color:#fff;
}

.enterprise.member #nav{
    background: #3497DB;
}

.enterprise.member.black #nav{
    background: #f6f6f6;
    border-bottom: solid 1px #ddd;
}

.enterprise.member.black #nav.scrolled{
    background: #f6f6f6;
    opacity: 0.9;
}

.enterprise.member .headerBlck{
    background: none;
    height:100px;
}

.enterprise.member #page h1{
    color: #000;
    padding-top: 0px;
    margin-bottom: 30px;
    font-size:30px;
}
.enterprise.member.black #page h1{
    color: #000;
    padding-top: 0px;
    margin-bottom: 10px;
    font-size:43px;
    font-family: 'Museo 300',sans-serif;
}

.enterprise.member #page h2{
    font-size: 50px;
    margin-bottom: 20px;
}

.enterprise.member #page{
    font-family: 'Museo 100',sans-serif;
}

.enterprise.member #page .title{
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    line-height: 21px;
    margin-bottom: 50px;
}

.enterprise.member.black #page .title{
    text-align: center;
    font-weight: 100;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 70px;
    color:#000;
}
.enterprise.member.black #page .advantages {

    margin-left: 110px;
    margin-bottom: 50px;    
}
.enterprise.member.black #page .advantages li{
    margin-top: 0px;
    margin-bottom: 10px;
    list-style-type: none;
    display: inline-block;
    width: 400px;
    vertical-align: top;
    padding-right: 20px;
    line-height: 20px;
    font-size: 15px;
    position: relative; 
}
.enterprise.member.black #page .advantages li:before{
    content: '\2022';
    position: absolute;
    left: -15px;
    font-size: 20px;
    color: #A5A5A5;
    top: -2px;
}

.enterprise.member #page .securityImg{
    width:155px;
}


.enterprise.member #page #buybtn{
    color: #ffffff;
    background: none;
    background-color: #3497DB;
    width: 130px;
    margin: auto;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 10px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Museo 100';
    padding-left: 40px;
    padding-right: 40px;


}

.enterprise.member #page #paypal{
    margin: 40px auto 40px auto;
    width: 885px;
    text-align: center;
    color:#666;
    line-height: 20px;
}
.enterprise.member #page #paypal .logos{
    margin-bottom: 20px;
}
.enterprise.member #page #paypal img{
    height: 25px;
    margin-left: 15px;
}
.enterprise.member.black #page #paypal img{
    height: auto;
    margin-left: 0px;
}
.enterprise.member #page #paypal a{
    color: #3497DB;
    text-decoration: none;
    transition: all 0.25s;
}
.enterprise.member #page #paypal a:hover{
    text-decoration: none;
    color:#FB7D7D;
}

.headerBlck h2{
    font-family: 'Museo 100',sans-serif;
    font-size: 22px;
    line-height: 46px;
    text-align: center;
    color: white;
    padding-top: 40px;
}


.hidden{
    display: none !important;
}


.striked {
    position: relative;
    opacity: 0.4;
    margin-right:5px;
    font-weight: 100 !important;  
}
.striked::after {
    border-bottom: 2px solid #000;
    content: "";
    left: 0;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
}

.mixpanel img{
    position: relative;
    top: 10px;    
}

.workBlck.whyneed p{
    color: #858585;
    text-align: left;
    font-family: 'Museo 100',sans-serif;
    font-size: 16px;
    line-height: 22px;    
    margin-bottom: 20px;
}

.greyBlock{
    width: 100%;
    background: #f6f6f6;
}

.whiteBlock{
    width: 100%;
    background: #fff;
}

.mobile-login, .mobile-menu, .mobile-logo{
    display: none;
}



@media screen and (max-width: 700px) {
    .cBlock {
        width: 100%;
        margin-left: 5px;
        margin-right: 5px;
    }
    #page {
        min-width: 100%;   
    }

    #nav .navLeft{
        display: none;
    }
    #nav .navLeft .logo{
        display: none;
    }

    .westSide {
        float: none;
    }

    .mobile-login, .mobile-menu, .mobile-logo{
        display: inline;
    }    

    .mobile-menu{
        border: 1px solid white;
        border-radius: 3px;
        color: white;
        padding: 6px 27px;
        transition: all 0.5s;
    }

    #nav .navRight .login{
        display: none;
    }

    #nav .navLeft.mobile-menu-open{
        display: inline;
    }

    .navLeft li {
        float: none;
    }


    #nav {
        height: auto;
        background: rgba(8,26,36,0.8);
        border-bottom: 1px solid rgba(8,26,36,0.3);
    }

    .navLeft li a{
        font-size:19px;
    }
    .formBox input[type=text] {
        width: 100%;
    }

    h1 br{
        display: none;
    }

    .descriptor {
        width: 80%;
    }

    .workBlck .subtitle {
        width: 100%
    }

    .workBlck .subtitle br{
        display: none;
    }

    .compareTable {
        width: 100%;
    }

    .passworkBlck .subtitle {
        width: 100%;
    }

    .passworkBlck .subtitle br{
        display: none;
    }

    .passworkBox {
        width: 100%
    }

    .passworkBox .desc {
        width: 100%;
    }

    .passworkBox h5 br{
        display: none;
    }

    .workBlck .subtitle br{
        display:none;
    }

    #player img {
        width: 80%;
    }

    .passworkSlider li {
        width: 100%;
    }

    .feedbackBlck {
        height: auto;
    }

    .feedbackBlck .feedbacks {
        width: 65%;
    }

    .feedbackBlck .feedbackText{
        height: 200px;
        overflow: hidden;
    }
    .feedbackBlck .feedbackAuthor {
        width: 100%;
    }

    .businessBlck {
        height: auto; 
        background: none;
        background-color: #3497DB;
        padding-bottom: 50px;
    }

    .businessBlck br{
        display: none;
    }

    .freeBlck.prices .left {
        width: 100%;
        float: none;
    }

    .freeBlck.prices .right {
        width: 100%;
        float: none;
        margin-top: 80px;
    }    
}

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

    .formBox input[type=text] {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        margin-bottom: 10px;
    }

    .checkIn a {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
        margin-left: 0px; 
    }

    .passworkBox img{
        display: none;
    }
    .passworkBox li{
        width: 100%;
    }

    .passworkBox .desc {

        margin-left: 0px;
    }

    .workBlck h2 {
        font-size:30px;
    }

    .feedbackBlck{
        display: none;
    }

    #footer {
        height: auto;
        line-height: 30px;
    }
}


