/* 01. FONT FACE ================================================== */


@font-face
{
    font-family: "HelveticaNeueCyrRoman";
    font-style: normal;
    src: local("HelveticaNeueCyr-Roman"), local("HelveticaNeueCyr-Roman"), url("../fonts/HelveticaNeueCyr-Roman.otf") format("opentype");
}

@font-face
{
    font-family: "HelveticaNeueCyr-UltraLightItalic";
    font-style: normal;
    src: local("HelveticaNeueCyr-UltraLightItalic"), local("HelveticaNeueCyr-UltraLightItalic"), url("../fonts/HelveticaNeueCyr-UltraLightItalic.otf") format("opentype");
}
@font-face
{
    font-family: "HelveticaNeueCyr-Italic";
    font-style: normal;
    src: local("HelveticaNeueCyr-Italic"), local("HelveticaNeueCyr-Italic"), url("../fonts/HelveticaNeueCyr-Italic.otf") format("opentype");
}
@font-face
{
    font-family: "HelveticaNeueCyr-Medium";
    font-style: normal;
    src: local("HelveticaNeueCyr-Medium"), local("HelveticaNeueCyr-Medium"), url("../fonts/HelveticaNeueCyr-Medium.otf") format("opentype");
}
@font-face
{
    font-family: "HelveticaNeueCyr-Light";
    font-style: normal;
    src: local("HelveticaNeueCyr-Light"), local("HelveticaNeueCyr-Light"), url("../fonts/HelveticaNeueCyr-Light.otf") format("opentype");
}
@font-face
{
    font-family: "HelveticaNeueCyr-LightItalic";
    font-style: normal;
    src: local("HelveticaNeueCyr-LightItalic"), local("HelveticaNeueCyr-LightItalic"), url("../fonts/HelveticaNeueCyr-LightItalic.otf") format("opentype");
}




/* 02. GENERALS SETTINGS ================================================== */


body, html
{
    background: #FFFFFF;
    padding: 0;
    font-family: 'HelveticaNeueCyrRoman', sans-serif;
    position: relative;
    height: 100%;
    margin: 0;
    -webkit-transition: opacity 400ms;
    -moz-transition: opacity 400ms;
    transition: opacity 400ms;    
    min-width: 960px;
}




/* Selected text Color */

::-moz-selection
{
    background: none;
    color: #74BEE1;
}

::selection
{
    background: none;
    color: #74BEE1;
}

.centered
{
    text-align: center;
}
.righted
{
    text-align: right;
}

b, strong
{
    font-weight: 800;
}

/* Make a space */

.space
{
    padding: 20px 0;
}

h1
{
    font-size: 46px;
    text-transform: none;
    line-height: 46px;
    margin-top: 0.33em;
    margin-bottom: 0.33em;
    font-family: 'HelveticaNeueCyr-Medium';
}



h3
{
    font-size: 25px;
    padding-bottom: 25px;
    padding-top: 0px;
    color: #0c65b8;
    padding-left: 35px;
}
h3#create_icon { background: url('../img/create-icon.png') no-repeat left top;}
h3#search_icon { background: url('../img/search.png') no-repeat left top; color: #408bcf;}
h3#classification-icon { 
    background: url('../img/classification-icon.png') no-repeat left top; 
    width: 254px;
    text-align: right;
    float: right;
}
h3#report-icon { 
    background: url('../img/report.png') no-repeat left top; 
    width: 200px;
    text-align: right;
    float: right;
}
.floatPageRight {float: right; width: 100%; padding-right: 45px; text-align: right;  min-width: 1024px;}




h5
{
    font: 24px 'Source Sans Pro', sans-serif;
    font-weight: normal;
    font-weight: 100;
    color: #FFF;
}

span
{
    color: #303333;
    font: 1.5em 'Source Sans Pro', sans-serif;
    opacity: 0.4;
    padding-top: 0px;
}

/* Link */

a
{
    color: #46484a;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

a:hover
{
    color: #181b1e;
}  

/* Paragrah */

p
{

    color: #333333;
    line-height: 30px;
}

p a
{
    border-bottom: 1px dotted #46484a;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

p a:hover
{
    border-bottom: 1px dotted #181b1e;
}

/* Button White */

.button-white
{
    border-radius: 20px;
    color: #333;
    padding: 10px 20px;
    letter-spacing: 2px;
    background: #FFF;
    font-weight: 600;
    border: 3px solid #FFF;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Button White:hover */

.button-white:hover
{
    color: #FFF;
    border: 3px solid #FFF;
    background: none;
}

/* Button Blue */

.button-blue
{
    border-radius: 20px;
    color: #FFF;
    padding: 10px 20px;
    letter-spacing: 2px;
    background: #74bee1;
    font-weight: 600;
    border: 3px solid #74bee1;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Button Blue:hover */

.button-blue:hover
{
    color: #74bee1;
    border: 3px solid #74bee1;
    background: none;
}


/* Button Green */

.button-green
{
    border-radius: 20px;
    color: #FFF;
    padding: 10px 20px;
    letter-spacing: 2px;
    background: #95d074;
    font-weight: 600;
    border: 3px solid #95d074;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Button Green:hover */

.button-green:hover
{
    color: #95d074;
    border: 3px solid #95d074;
    background: none;
}




/* 03. NAVIGATION SETTINGS ================================================== */




/* The hover state of the links */

#nav li:hover a, #nav li .selected
{

}


/* Navigation Fixed */ 

.cbp-af-header
{
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    z-index: 99999;
    height: 80px;
    overflow: hidden;
    -webkit-transition: height 0.6s;
    -moz-transition: height 0.6s;
    transition: height 0.6s;
    margin-left: -450px;
}

.cbp-af-header #logo img
{
    margin-top: 38px;
}

.cbp-af-header #nav a
{
    line-height: 60px;
}

/* Transitions */

.cbp-af-header #logo,
.cbp-af-header #nav a
{
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}

/* Button Share */

.cbp-af-header .right
{
    border-radius: 20px;
    color: #333;
    margin-top: -100px;
    padding: 3px 13px;
    float: right;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Button Share:hover */

.cbp-af-header .button:hover
{
    color: #FFF;
    border: 3px solid #FFF;
    background: none;
}


/* Navigation effect on scroll down */


.cbp-af-header.cbp-af-header-shrink
{
    height: 80px;
    float: right;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* The button comes to the right place */

.cbp-af-header.cbp-af-header-shrink .right
{
    margin-top: 30px;
    display: block;
}

/* The links goes up */

.cbp-af-header.cbp-af-header-shrink #nav a
{
    margin-top: -150px;
}



/* 04. PAGE 1 / HEADER SETTINGS ================================================== */



.page1
{

    position: relative;
    height: 780px;
}

.pageImage1{
    background: url('../img/bg.jpg') #131313 center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    min-width: 1024px;
}
.pageImage2{
    background: url('../img/bg_one.jpg') #131313 center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 20;
    position: absolute;
    display: none;
    min-width: 1024px;

}

.more-information
{
    width: 100%;
    background-color: #FFFFFF;
    position: relative;
    text-align: center;
    padding-top: 43px;
     min-width: 1024px;

}
.link-more-information {
    display: block;
    width: 484px;
    height: 55px;
    border: 2px solid #c5c6c6;
    border-radius: 50px;
    text-align: center;
    padding-top: 15px;
    margin: 0 auto;
    font-size: 20px;
    color: #c5c6c6;
}
.link-more-information:hover {    
    color: #c5c6c6;
}
.link-more-information img {
    margin-left: 23px;
}

.page1 h1
{
    color: #FFF;
}
.page1 .menu-page-one 
{
    margin-top: 60px;

}
.page1 .menu-page-one a
{
    color: #FFFFFF;  
}
.page1 .menu-page-one a:hover
{
    color: #999999;  
}
.page1 .title-page-one
{
    margin-top: 35px;

}
.page1 .title-page-one h1
{
    color: #FFFFFF;
    /*color: #1c75c8;*/
    /*text-shadow:
    -2px -2px 0 #1c75c8,
    2px -2px 0 #1c75c8,
    -2px 2px 0 #1c75c8,
    2px 2px 0 #1c75c8;   
    */
    text-shadow:
    -1px -1px 0 #0c65b8,
    1px -1px 0 #0c65b8,
    -1px 1px 0 #0c65b8,
    1px 1px 0 #0c65b8;          
}
.page1 .text-page-one
{
    margin-top: 25px;

}
.page1 .text-page-one h2
{
    color: #FFFFFF;  
    margin-top: 5px;
    padding-top: 5px;
    line-height: 30px;
    font-size: 24px;
}
.page1 .button-page-one
{
    background-color: #2bc2bb;
    border: 1px solid #2bc2bb;
    border-radius: 50px;
    display: block;
    width: 230px;
    height: 65px;
    float: right;
    margin-top: 25px;
    text-align: center;
    font-size: 20px;
    padding-top: 20px;
    color: #FFFFFF;
}
.page1 .button-page-one:hover
{
    background-color: #2edcd4;
    border: 1px solid #2edcd4;
    border-radius: 50px;
}


/* Huge Title */

.huge-title {
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -465px;
    width: 980px;
    z-index: 999;
}

/* Go down text & Button */

.go-down {
    position: absolute;
    right: 0;
    bottom: 50px;
    left: 0;
    text-align: center;
    margin: auto;
    width: 100%;
    height: 50px;
}


/* 05. PAGE 2 SETTINGS ================================================== */



.page2 {
    background: url('../img/page-2-bottom-cover.png') bottom repeat-x #FFF;
    position: relative;

}

.page2 .row {
    position: relative;  
    padding: 181px 0 80px 0;
}


/* Image */

.page2 .picture {
    position: relative; 
    width: 100%;  
    overflow: hidden; 
    float: right; }


/* Article */

.page2 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 300px;
    left: 0%;
    font-size: 20px;
}



/* 06. PAGE 3 SETTINGS ================================================== */



.page3 {
    background: url('../img/page-3-bg.jpg') repeat-x #FFF;
    background-size: cover;    
    position: relative;
    height: 680px;
    width: 100%;

}



.page3 .row {
    position: relative;  
    padding: 40px 0;    


}

/* Image */

.page3 .picture {
    position: relative;   
    overflow: hidden;  
    margin-left: -180px;


}

/* Article */

.page3 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 300px;
    right:0;
    font-size: 20px;

}
.page3 .article p {text-align: right;}
.page3-content-width {
    width: 341px;
}





/* 07. PAGE 4 SETTINGS ================================================== */



.page4 {
    background: #FFF; }

.page4 .row {
    position: relative; 
    padding: 160px 0 80px 0; }

/* Image */

.page4 .picture {
    position: relative; 
    width: 100%;  
    overflow: hidden; 
    float: right; }

/* Article */

.page4 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 400px;
    left: 0%;
    font-size: 20px;
}



/* 08. PAGE 5 SETTINGS ================================================== */



.page5 {
    background: url('../img/page-5-bg.jpg') repeat-x #FFF;
    background-size: cover;    
    position: relative;
    height: 680px;
    width: 100%;

}



.page5 .row {
    position: relative;  
    padding: 40px 0;    


}

/* Image */

.page5 .picture {
    position: relative; 
    overflow: hidden;  
    margin-left: -220px;


}

/* Article */

.page5 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 400px;
    right:0;
    font-size: 20px;

}
.page5 .article p {text-align: right;}
.page3-content-width {width: 360px;}

/* PAGE 6 SETTINGS ================================================== */

.page6 {
    position: relative;
    background-color: #ffffff;
    padding: 0 0 100px 0;

}

.page6 .row {
    position: relative;  
    padding: 281px 0 281px 0;
}


/* Image */

.page6 .picture {
    position: relative; 
    width: 100%;  
    overflow: hidden; 
    float: right; }


/* Article */

.page6 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 300px;
    left: 0%;
    font-size: 20px;
}

.photo-icon-hr {background: url('../img/photo_icon.png') no-repeat; width: 954px; height: 64px;}
.page6 h1 {color: #000000; font-size: 30px; line-height: 30px;}
.centerTitlePage6 {text-align: center;}
.centerTitlePage6 h1{font-family: 'HelveticaNeueCyr-Light'; }
.centerTitlePage6 img{margin-top: 50px;}
.page6 ul {margin-left: 50px; margin-top: 20px; list-style:disc; width: 245px; }
.page6 ul li:before{ color: #999999;}
.page6 ul li{ margin-top: 10px; color: #363636;}
.page6 .page6-block1 {position: absolute; left: 0;}
.page6 .page6-block2 {position: absolute; right: 70px; }

.page6 .button-page6
{

    background-color: #2bc2bb;
    border: 1px solid #2bc2bb;
    border-radius: 50px;
    display: block;
    width: 223px;
    height: 60px;
    margin-left: 50px;
    margin-top: 25px;
    text-align: center;
    font-size: 20px;
    padding-top: 17px;
    color: #FFFFFF;
}

.page6 .button-page6:hover
{
    background-color: #2edcd4;
    border: 1px solid #2edcd4;
    border-radius: 50px;
}

/* PAGE 7 SETTINGS ================================================== */

.page7 {
    position: relative;
    background-color: #f0f0f0;
    border-bottom: 2px solid #c7d8d7;
    height: 500px;

}

.page7 .row {
    position: relative;  
    padding: 180px 0 180px 0;
}


/* Image */

.page7 .picture {
    position: relative; 
    width: 100%;  
    overflow: hidden; 
    float: right; }

.page7 h1 {color: #333333; font-size: 30px; line-height: 30px; }



/* Article */

.page7 .article {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 300px;
    left: 0%;
    font-size: 20px;
}





/* 09. PRELOADING  ================================================== */


/* Preloader Effect */

#preloader {
    background-color: #FFF;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999;
}

/* Preloading Animation */

#loading-animation {
    background-image: url("../img/loading.gif") ;
    background-position: center center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
    border-radius: 4px;
}


/* 10. FOOTER SETTINGS  ================================================== */



.footer {
    background: #FFFFFF;
    padding: 30px 0;
    height: 250px;
    text-align: center;
    padding-top: 42px;



}

.footer .row {position: relative; width: 100%; }

.footer ul {margin-top: 28px;}

.footer ul li {
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
}

.footer ul li a {color: #999999;}

.footer ul li a:hover {color: #b8b8b8;}

.footer .copyright {
    opacity: 0.8;
}

.footer .logo {
    opacity: 0.4;
    width:80px;
    padding: 40px 0 0 0;
}

.footer p a {color: rgba(255,255,255,0.70);}
.footer p a:hover {color: rgba(255,255,255,1);}


/* 11 PRE CODE ================================================= */


pre {
    background: #333; 
    font-size: 12px; 
    line-height: normal; 
    border: 10px solid #f1F3F4; 
    padding: 20px; 
    color:#ecd565;
}

#twitter {display: block; width: 41px; height: 41px; background: url('../img/twitter.png') no-repeat; float: left; margin-right: 10px;}
#facebook {display: block; width: 41px; height: 41px; background: url('../img/facebook.png') no-repeat; float: left;  margin-right: 10px;}
#google {display: block; width: 41px; height: 41px; background: url('../img/google.png') no-repeat; float: left;}


.footerBlockTwo {
    float: left;
}

.footerBlock {
    margin-top: 17px;
    float: left;
    margin-left: 297px;
    margin-bottom: 18px;
}
#web {display: block; width: 177px; height: 52px; background: url('../img/web.png') no-repeat; float: left; margin-right: 0px;}
#googleplay {display: block; width: 177px; height: 52px; background: url('../img/googleplay.png') no-repeat; float: left; }
#windows {display: block; width: 177px; height: 52px; background: url('../img/windows.png') no-repeat; float: left; margin-left: 0px; }
#mac {display: block; width: 177px; height: 52px; background: url('../img/mac.png') no-repeat; float: left; }
.blockCenter {text-align: center; width: 800px; margin-left: 140px; float: left;}

.lang { margin-left: 10px; color: #848383;}
.lang img{padding-bottom: 1px;}
.one_block_comment {text-align: left; width: 300px; float: left; margin-bottom: 40px; margin-left: 20px;}
.one_block_comment img{float: left;}
.one_block_comment blockquote{float: left; }
.one_block_comment h4 {font-size: 14px;  font-family: 'HelveticaNeueCyr-LightItalic'; color: #999999; }
.one_block_comment p {font-size: 14px;  font-family: 'HelveticaNeueCyr-LightItalic'; color: #333333; }
.comment_block_row {margin-bottom: 40px;}
.comment_block_row h1 {color: #333333; font-size: 30px; line-height: 30px; margin-bottom: 45px; font-family: 'HelveticaNeueCyr-Light'}
#more-comment {
    margin-top: 50px;
    display: block;
    width: 125px;
    height: 35px;
    border: 2px solid #3abeb1;
    border-radius: 50px;
    text-align: center;
    float: right;
    color: #2bc2bb;
    font-size: 14px;
    padding-top: 3px;
}
.footer_row {margin-top: 55px; padding-bottom: 10px;}

.langPoleForm {
    display: none; 
    background-color: #FFFFFF; padding: 10px;
    position: absolute;
    width: 55px;
    right: 390px;    
    bottom: 45px;
    
}
.langPoleForm a {
    color: #3abeb1;
    display: block;
    margin: 5px;
}
.langPoleForm a:hover {
    color: #999999;
    
}

.page2,
.page3,
.page4,
.page5,
.page6,
.page7 {  min-width: 1024px;}

@media screen and (max-width:1024px) {
    .page2, .page3, .page4, .page5, page6, .page7 > .row {padding-left: 30px;}
    .page5 .row .picture {margin-left: -150px;}
    .page3 .row .picture {margin-left: -40px;}
    .langPoleForm {right: 390px;}
}






