/*==============================================================================================*/
html, body{margin: 0;padding: 0;width: 100%;height: 100%;}
form,p{margin: 0;padding: 0;}
.h{content: "";display: block;height: 0;clear: both;visibility: hidden;}
input:focus,select:focus,textarea:focus{outline: none;}
*|*:-moz-any-link:focus{outline: none;}
img{border: 0;max-width: 100%;}
a{cursor: pointer;}
table img{max-width: none;}
/*==============================================================================================*/
@font-face {
    font-family: 'Conv_GothamPro-Light';
    src: url('font/GothamPro-Light.eot');
    src: url('font/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
         url('font/GothamPro-Light.woff') format('woff'),
         url('font/GothamPro-Light.ttf') format('truetype'),
         url('font/GothamPro-Light.svg#Conv_GothamPro-Light') format('svg');
    font-weight: normal;
    font-style: normal;}

@font-face {
    font-family: 'Conv_GothamPro-Medium';
    src: url('font/GothamPro-Medium.eot');
    src: url('font/GothamPro.eot?#iefix') format('embedded-opentype'),
         url('font/GothamPro-Medium.woff') format('woff'),
         url('font/GothamPro-Medium.ttf') format('truetype'),
         url('font/GothamPro-Medium.svg#Conv_GothamPro-Medium') format('svg');
    font-weight: normal;
    font-style: normal;}

body{background: #000;min-width: 640px;position: relative;padding: 0;-webkit-overflow-scrolling: auto;}
body,td{color: #fff;font-family: "Conv_GothamPro-Light",Tahoma,Arial;font-size: 25px;line-height: 140%;word-wrap:break-word;}
a{font-family: "Conv_GothamPro-Light",Tahoma,Arial;font-size: 25px;line-height: 140%;color: #fff;text-decoration: none;-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;}
a:hover{text-decoration: none;}
p{margin-top: 20px;}
p:first-child{margin-top: 0;}
ul,ol{margin: 0 0 0 29px;padding: 0;}
li{margin: 0 0 0 13px;padding: 0;}
input,select,textarea{display: block;padding: 0 25px;height: 65px;line-height: normal;margin: 25px 0 0;background: transparent;font-size: 25px;color: #fff;font-family: "Conv_GothamPro-Light",Tahoma,Arial,Verdana,sans-serif;border: none;position: relative;box-sizing: border-box;border: 1px solid #fff;border-radius: 10px;-webkit-appearance: none;-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;}
/* Chrome/Opera/Safari */
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(255,255,255,0.7);
}
/* Firefox 19+ */
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(255,255,255,0.7);
}
/* IE 10+ */
input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: rgba(255,255,255,0.7);
}
/* Firefox 18- */
input:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: rgba(255,255,255,0.7);
}

select{padding: 5px 0 4px 5px;height: auto;}
textarea{resize:none;padding-top: 14px;display: block;overflow-y:auto;height: 210px;overflow: hidden !important;-ms-overflow-style:none}
img[align="left"]{margin: 0 16px 30px 0;}
img[align="right"]{margin: 0 0 30px 16px;}
img[align="center"]{margin: 0 0 30px 0;}
h1,h2,h3,h4,h5,h6{margin: 64px 0 0 0;color: #fff;line-height: 98%;font-weight: normal;font-family: "Conv_GothamPro-Medium",Tahoma,Arial,Verdana,sans-serif;}
h1,h2,h3{font-size: 59px;}
h4{font-size: 26px;}
h5,h6{font-size: 16px;}
h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top: 0;}
.table_border{width: 100%;border-collapse: separate;}

.select{
    -webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;
    margin-top: 25px;
    position: relative;
    height: 65px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #3e9775;
    -webkit-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
}
.select *{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.select .x{
    position: absolute;
    top: 28px;
    right: 15px;
    z-index: 2;
    width: 20px;
    height: 12px;
    background: url("svg/ar2.svg") no-repeat;
    background-position: 50%;
    background-size: contain;
}

.select.opened .x{
    display: none;
}

.select .val{
    display: block;
    height: 100%;
    line-height: 65px;
    font-size: 25px;
    font-family: "Conv_GothamPro-Light",Tahoma,Arial,Verdana,sans-serif;
    color: #fff;
    box-sizing: border-box;
    padding: 0 50px 0 25px;
    border: 1px solid transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap;
}

.select .valList{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-transition: max-height .1s linear;
    -o-transition: max-height .1s linear;
    transition: max-height .1s linear;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #fff;
}

.select.err .valList{
    border-color: inherit;
}

.select .valList *{
    opacity: 0;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.select .valList li{
    background: #3e9775;
    width: 100%;
    height: 65px;
    border-top: 1px solid transparent;
    padding: 0 25px;
    margin: 0;
    line-height: 63px;
    font-size: 25px;
    font-family: "Conv_GothamPro-Light",Tahoma,Arial,Verdana,sans-serif;
    color: #fff;
    cursor: pointer;box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select .valList li:hover{
    color: #3e9775;
    background: #fff;
    border-color: #fff;
}

.select .valList li:hover + li{
    border-color: #fff
}

.select .valList li:first-child{
    border-top: none;
}

.select.opened{
    background: transparent;
}

.select.opened .valList{
    max-height: 1000vh;
}

.select.opened .valList *{
    opacity: 1;
}

body + div {
  display: none !important;
}

/*==========================================================================================================*/

#wrapper{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
}

#loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 101;
}
#loader .back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}
#loader .logo{
    display: block;
    background: url("svg/logo_cg2.svg") no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 160px;
    height: 53px;
    position: absolute;
    top: 32px;
    left: 50%;
    margin-left: -95px;
    display: none;
}
#loader .frame{
    display: block;
    position: absolute;
    left: 50%;
    width: 18px;
    height: 100%;
    margin-left: -10px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAqCAYAAAC+5wuXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAoVJREFUeNqklk1IVVEQx++7pqLpIiVNqB66aOEHkptc+BFkkZEudSESuRFcKIgrQVu5Nqq9GxdBEIRI4EIQJdz0RYLQC/x6fqLQB6jx1Nt/5NzneeOce0/PgR/cc86cuXfmzMw9rud5DigGm55Z9sEPMAbuqT0p6IMasOvZySyI6oZc50wug0zHTurAPKhMziiLZeCn9/+yAgp016YFpRjoAbdBFegCnwS9Md9Qg7D4GmQLQc0Ar5juMXlEiy/ZwgLIkk5GMzbD9gzTwiKb7Aww4nOf7ZmOUI4g5jnaidwEayGnlg0OtfEyHf8JU9q3OP4ISGjjPDIUZ0q3LAxVs5zLdFVi6fLUwlAbG7sUuFYWuCPQHBBoyqsDni+04IJvbP4QDLBcIr12UwVETrPScWrBDMhin/wHfAFHoAIUGZ3V3khv++ulKdz/erBmsS8WZojIA33go6ojXxKqNJ6oEhJjZJJccE09b7FkTdkYZihIUjZeMihR1jaCJhBV5bAO5sAUK49zp+bnCjWwjYBA01p3ULApyG8vevzUrN57FxA/RoPgIfN6E4yDzyAf1IAOahmmzC4Cv9kLpsAVIceiqhWLrvWyOfqj5gZUf1T6kVI/amEfORrSJVfAc8m1ODNeZtH8K6Uv4sHbs8jqdTZOuIJSsYWhEjbelgw9tjDUysYxR2idccPR+9wAe2xPv2PowfPguiHI35nuL1Boqv47YBG8A19Vl6C+/kjoGEOnB5TmvciX8WRzFAydWBp5oYo9eYfcYQp0X5pg/ZrfH89dSMnfVXBV8zlDlQ39w+6CUjVPd4QPYMlU/SPsjZMWJSJej8uFuDxLxxDxRogFdcwHIS0lyT8BBgBM0MnI6QP1nwAAAABJRU5ErkJggg==') repeat-y;
    opacity: 1;
    top:200%;
    -webkit-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
}
#loader .frame.hidden{
    opacity: 0;
}
#loader .frame:before{
    content: "";
    display: block;
    position: absolute;
    top: -42px;
    left: 0;
    width: 18px;
    height: 42px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAqCAYAAAC+5wuXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAoVJREFUeNqklk9IVFEUxu+MqSRKVGQF1ZBQizJCN7WpJCsyymUtIqI2QYuEaBVUK9dJtWozm1kEQRARggtFinDTH1EQGqNMTY2kf2TWmK/vyH3T8/Pc927jgd8w991zv/fueeecd00QBEbhILgL3oDf4AcYBlnQrK3hC9tAT5BsT0DGJbQPfA78bQLUs1Ad+BL8v42ANVGhbsUpDy6CBrALnAcvFL9sKLRfmbwHKpWgloE75PtHdiSTt2liEFQ43mYo1ktrrsvEEF08EyMScpjWdKfwM2OMWWn+2RYwauKtEsxGxu/S+JknpxmTbClQiIyrRWiMnLZ7CO0G5ZFxuQj1kdM5D6GTNE5L4FopcHOgJSbQklc/OV9kIg0G6PosuEK5JH6nXBWQWshKY/aCXlBBj/wdvAJzYCeodW42cke526+gROP9SwcY9ViXTxISqkEbeG7rKLSCLY2ztoTUGLmsCmyw/ycpWRctTBKKs0ULVzicJGsPgEMgY8thHDwFXVQeS95amCvSwD7EBFrmLsQFW4L8YLmvX5pVZ7AMC2N0FRylXU+AHHgJakAjOC0tw5XZteAb3aALrFJyLGNbsbq1S3RNvqhVMdUvYp9YSPrRCXrImwldcgR0aFsbI/E6j+Zfrz0RB2/aI6vHaVxIK07rPYQ20nhKEzruIdRK47xRWqfEbHVMfDaDaVpz2Th6cB/Y5Ajya/L9Cta6qn8PGAIPQb/tEtLXjykd49rCCyrxXBRartgcFaF5T5FbttiLJ7aP5CDnpUfUr/n8uORAKvt9D9ZF9lxmy0a+YU1gq70uZ4Rn4K2r+tvpjo89SkQ9Hu9Q4nKjFCHhvhIL6ZhHElpKkb8CDACTVQURlZ65FwAAAABJRU5ErkJggg==') repeat-y;
}

.video {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

section{
    display: block;
    height: 100%;
    position: relative;
    transform: translate3d(0px, 0px, 0px);
}
.animate1s{
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

header {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 102;
    box-sizing: border-box;
    padding: 32px 120px 0;
    height: 92px;

    -webkit-transition: transform 0.5s ease-in-out,opacity 0.4s ease-in-out;
    -o-transition: transform 0.5s ease-in-out,opacity 0.4s ease-in-out;
    transition: transform 0.5s ease-in-out,opacity 0.4s ease-in-out;
    content: "1920";
}
header.hidden {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

header .logo {
    display: block;
    background: url("svg/logo_cg2.svg") no-repeat;
    background-position: 50%;
    background-size: contain;
    width: 160px;
    height: 53px;
    position: absolute;
    top: 32px;
    left: 120px;
    -webkit-transition: left 0.9s ease 0.1s,margin-left 0.9s ease 0.1s;
    -o-transition: left 0.9s ease 0.1s,margin-left 0.9s ease 0.1s;
    transition: left 0.9s ease 0.1s,margin-left 0.9s ease 0.1s;
    position: absolute;
    left: 50%;
    margin-left: -95px;
}

header .logo.hidden {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    display: none;
}

header.active .logo {
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

header.active .logo {
    left: 120px;
    margin-left: 0;
}

header .menu {
    float: right;
    margin-top: 2px;
    width: 37px;
    height: 28px;
    position: relative;
    -webkit-transition: height 0.2s ease,margin 0.2s ease,opacity 0.4s ease;
    -o-transition: height 0.2s ease,margin 0.2s ease,opacity 0.4s ease;
    transition: height 0.2s ease,margin 0.2s ease,opacity 0.4s ease;
    opacity: 0;
}

header.active .menu {
    opacity: 1;
}

header .menu span {
    position: absolute;
    top: 13px;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

header .menu:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

header .menu:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

header .menu:hover:before {
    -webkit-transform: translate3d(0,-2px,0);
    -ms-transform: translate3d(0,-2px,0);
    transform: translate3d(0,-2px,0);
}

header .menu:hover:after {
    -webkit-transform: translate3d(0,2px,0);
    -ms-transform: translate3d(0,2px,0);
    transform: translate3d(0,2px,0);
}

#menu {
    display: block;
    position: absolute;
    top: 0;
    max-width: 440px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    z-index: 101;
    box-sizing: border-box;
    overflow: auto;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    -webkit-transition: transform 0.4s ease,opacity 0.4s ease;
    -o-transition: transform 0.4s ease,opacity 0.4s ease;
    transition: transform 0.4s ease,opacity 0.4s ease;
}

header.openMenu #menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
header.openMenu .menu {
    opacity: 0;
}

#menu menu {
    padding: 124px 120px 80px 116px;
}

#menu .x {
    width: 41px;
    height: 41px;
    display: block;
    position: absolute;
    top: 28px;
    right: 118px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-transition: border-radius 0.3s ease;
    -o-transition: border-radius 0.3s ease;
    transition: border-radius 0.3s ease;
    background: url(svg/Y.svg) no-repeat;
    background-position: 50%;
}

#menu .x:hover {
    border-radius: 2px;
}

menu {
    margin: 0;
    list-style: none;
}

menu li {
    margin: 15px 0 0;
    white-space: nowrap;
    line-height: 110%;
    color: #fff;
    font-size: 27px;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

menu li:first-child {
    margin-top: 0;
}

menu li.c1.active,
menu li.c1:hover {
    color: #665774;
}

menu li.c2.active,
menu li.c2:hover {
    color: #737373;
}

menu li.c3.active,
menu li.c3:hover {
    color: #408c95;
}

menu li.c4.active,
menu li.c4:hover {
    color: #8b4a70;
}

menu li.c5.active,
menu li.c5:hover {
    color: #95875b;
}

menu li.c6.active,
menu li.c6:hover {
    color: #3e9775;
}

#menu .social {
    line-height: 0;
    font-size: 0;
    margin: 0 auto 62px;
    position: static;
    text-align: center;
}

#menu .social a {
    width: 46px;
    height: 46px;
    margin-left: 20px;
    display: inline-block;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    -webkit-transition: background-image 0.3s ease;
    -o-transition: background-image 0.3s ease;
    transition: background-image 0.3s ease;
}

#menu .social a:first-child {
    margin-left: 0;
}

#menu .social a.t {
    background-image: url("svg/tw_noactive.svg");
}

#menu .social a.t:hover {
    background-image: url("svg/tw_active.svg");
}

#menu .social a.m {
    background-image: url("svg/m_noactive.svg");
}

#menu .social a.m:hover {
    background-image: url("svg/m_active.svg");
}

#menu .social a.f {
    background-image: url("svg/fb_noactive.svg");
}

#menu .social a.f:hover {
    background-image: url("svg/fb_active.svg");
}

#menu .wrapper{
    display: table;
    width: 100%;
    height: 100vh;
}
#menu .wrapper .tr{
    display: table-row;
}
#menu .wrapper .tc{
    display: table-cell;
    vertical-align: top;
}
#menu .wrapper .tr:nth-child(2) .tc{
    height: 108px;
}

#home {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

#home .video {
    background: url("img/home.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#home .text {
    position: relative;
    width: 50%;
    height: 100vh;
    background: #487db1;
    color: #fff;
    display: table;
    -webkit-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transform: translate3d(300%, 0px, 0px);
    -webkit-transform: translate3d(300%, 0px, 0px);
    -ms-transform: translate3d(300%, 0px, 0px);
}

#home.active .text {
    transform: translate3d(0%, 0px, 0px);
    -webkit-transform: translate3d(0%, 0px, 0px);
    -ms-transform: translate3d(0%, 0px, 0px);
}

#home .text:before{
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: #487db1;
}

#home .text:after{
    content: "";
    position: absolute;
    top: 0;
    right: 200%;
    width: 200%;
    height: 100%;
    background: #000;
}

#home.preloader {
    overflow: hidden;
}

#home.preloader .text {
    -webkit-transform: translateX(300%);
    -ms-transform: translateX(300%);
    transform: translateX(300%);
}

#home.preloader .text:before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: #487db1;
    margin-right: -1px;
}

#home.preloader .text:after {
    content: "";
    position: absolute;
    top: 0;
    right: 200%;
    width: 200%;
    height: 100%;
    background: #000;
    margin-right: -1px;
    border-left: 10px solid #000;
}

#home .text .vc {
    display: table-cell;
    vertical-align: middle;
}

#home .text .vc .hc {
    margin: auto;
    width: 600px;
    padding: 100px 0;
    -webkit-transition: opacity 0.7s ease 0.3s;
    -o-transition: opacity 0.7s ease 0.3s;
    transition: opacity 0.7s ease 0.3s;
    opacity: 0;
}

#home.active .text .vc .hc {
    opacity: 1;
}

#home .text .vc .hc p {
    margin-top: 38px;
}

#home .down {
    position: absolute;
    bottom: 56px;
    left: 50%;
    margin-left: -30px;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid #c6c6c6;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
    opacity: 0;
}

#home.active .down.hide {
    opacity: 0;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

#home.active .down {
    opacity: 1;
}

#home .down:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 20px;
    width: 18px;
    height: 10px;
    background: url("svg/ar2.svg") no-repeat;
    background-position: 50%;
    background-size: contain;
    animation-name: arrowDown;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes arrowDown {
    0%   {-webkit-transform:translateY(0);transform:translateY(0)}
    50%  {-webkit-transform:translateY(3px);transform:translateY(3px)}
    100%  {-webkit-transform:translateY(0);transform:translateY(0)}
}

#workingPlan {
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

#workingPlan .video {
    background: url("img/workingPlan.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#workingPlan .grid {
    position: relative;
    width: 100%;
    height: 100vh;
    display: table;
}

#workingPlan .grid .tr {
    display: table-row;
}

#workingPlan .grid .tr .text {
    display: table-cell;
    vertical-align: middle;
    max-width: 400px;
    color: #fff;
    -webkit-transition: opacity 0.7s ease;
    -o-transition: opacity 0.7s ease;
    transition: opacity 0.7s ease;
    opacity: 0;
}

#workingPlan.active .grid .tr .text {
    opacity: 1
}

#workingPlan .grid .tr .text .center {
    text-align: center;
    width: 720px;
    margin: 0 auto;
    padding: 70px 0;
}

#workingPlan .grid .tr .shema {
    display: table-cell;
    max-width: 1200px;
    height: 646px;
}

#workingPlan .grid .tr .shema .inwrapper {
    height: 646px;
    position: relative;
    overflow: hidden;
}
#workingPlan .grid .tr .shema .container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

#workingPlan .grid .tr .shema .container.w1440 .col {
    transform: translate3d(0,100%,0);
    -webkit-transition: transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
}

#workingPlan.active .grid .tr .shema .container.w1440 .col {
    transform: translate3d(0,0,0);
}

#workingPlan.active .grid .tr .shema .container.w1440 .col:nth-child(2){
    -webkit-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

#workingPlan.active .grid .tr .shema .container.w1440 .col:nth-child(3){
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

#workingPlan.active .grid .tr .shema .container.w1440 .col:nth-child(4){
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

#workingPlan .grid .tr .shema .container:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#workingPlan .grid .tr .shema .container.w640 {
    display: none;
}

#workingPlan .grid .tr .shema .col {
    display: table;
    width: 25%;
    height: 100%;
    margin: 0;
    table-layout: fixed;
    float: left;
}

#workingPlan .grid .tr .shema .col .vCenter {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background: inherit;
}

#workingPlan .grid .tr .shema .title {
    font-size: 36px;
    line-height: 106%;
}

#workingPlan .grid .tr .shema .description {
    font-size: 20px;
    line-height: 130%;
    margin-top: 23px;
}

#workingPlan .grid .tr .shema .block {
    font-size: 20px;
    line-height: 44px;
    border: 1px solid #fff;
    border-radius: 25px;
    width: 236px;
    margin: 20px auto 0;
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
    white-space: nowrap;
    background: inherit;
}

#workingPlan .grid .tr .shema .description + .block {
    margin-top: 64px;
}

#workingPlan .grid .tr .shema .block:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    height: 21px;
    width: 1px;
    background: #fff;
}

#workingPlan .grid .tr .shema .description + .block:before {
    height: 45px;
}

#workingPlan .grid .tr .shema .col.w266 .block {
    width: 266px;
}

#whatWeDo {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#whatWeDo .inwrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#whatWeDo .video {
    background: url("img/whatWeDo.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#whatWeDo .container {
    position: relative;
    width: 1680px;
    margin: 0 auto;
    height: 100vh;
    display: table;
    box-sizing: border-box;
}

#whatWeDo .container .col {
    display: table-cell;
    vertical-align: middle;
    width: 420px;
    color: #fff;
    font-size: 21px;
    line-height: 139%;
    padding: 50px 0;
}

#whatWeDo .container .col .block {
    height: 420px;
    box-sizing: border-box;
    padding-top: 84px;
    padding-bottom: 40px;
    -webkit-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    opacity: 0;
}

#whatWeDo.active .container .col .block{
    opacity: 1;
}
#whatWeDo.active .container .col .block.b1{
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
#whatWeDo.active .container .col .block.b2{
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
#whatWeDo.active .container .col .block.b3{
    -webkit-transition-delay: 1.6s;
    -o-transition-delay: 1.6s;
    transition-delay: 1.6s;
}
#whatWeDo.active .container .col .block.b4{
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
}
#whatWeDo.active .container .col .block.b5{
    -webkit-transition-delay: 3.2s;
    -o-transition-delay: 3.2s;
    transition-delay: 3.2s;
}
#whatWeDo.active .container .col .block.b6{
    -webkit-transition-delay: 4s;
    -o-transition-delay: 4s;
    transition-delay: 4s;
}
#whatWeDo.active .container .col .block.b7{
    -webkit-transition-delay: 4.8s;
    -o-transition-delay: 4.8s;
    transition-delay: 4.8s;
}
#whatWeDo.active .container .col .block.b8{
    -webkit-transition-delay: 5.6s;
    -o-transition-delay: 5.6s;
    transition-delay: 5.6s;
}

#whatWeDo .container .col .block .frame{
    overflow: hidden;
    height: 100%;
    line-height: 0;
    text-align: center;
}

#whatWeDo .container .col .block h3 {
    margin-left: 60px;
    margin-top: 50px;
    width: 200px;
}

#whatWeDo .container .col .block .title {
    height: 46px;
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 23px;
    line-height: 44px;
    margin: 0;
    padding: 0 26px;
    min-width: 245px;
    text-align: center;
    display: inline-block;
    max-width: 290px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#whatWeDo .container .col .block .text {
    margin: 16px 62px 0;
    line-height: 140%;
    text-align: left;
}

#whatWeDo .container .col:nth-child(2n-1) .block:nth-child(2n),
#whatWeDo .container .col:nth-child(2n) .block:nth-child(2n-1) {
    background: #737373;
}

#whatWeDo .container .col .block:nth-child(n+3){
    display: none;
}

#projects {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#projects .inwrapper{
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#projects .inwrapper .container{
    display: none;
}

#projects .inwrapper .container:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#projects .inwrapper .container.w960{
    display: block;
}

#projects .video {
    background-image: url("img/p2_1920.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

#projects .title {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 50%;
    width: 780px;
    padding-top: 53px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    height: 50vh;
}

#projects .block {
    width: 50%;
    height: 50vh;
    position: relative;
    float: left;
    color: #fff;
    font-size: 21px;
    line-height: 139%;
    -webkit-transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    transform: translateY(200%);
    opacity: 0;
}

#projects .box .block:first-child{
    margin-left: 50%;
}

#projects.active .block{
    opacity: 1;
    transform: translateY(0);
}

#projects .block .content {
    width: 800px;
    height: 100%;
    box-sizing: border-box;
    padding-top: 85px;
}

#projects .block:nth-of-type(2n-1) .content {
    float: left;
    padding-left: 120px;
}

#projects .block:nth-of-type(2n) .content {
    float: right;
    padding-right: 120px;
}

#projects .block .content img {
    width: 192px;
    height: 192px;
}

#projects .block .content .text {
    margin-top: 27px;
}

#projects .block .content .frame {
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

#whoWeAre {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#whoWeAre .inwrapper{
    height: 100%;
    overflow: hidden;
}

#whoWeAre .video {
    background: url("img/whoWeAre.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#whoWeAre .content {
    position: relative;
    z-index: 1;
    width: 1320px;
    margin: 0 auto;
    display: table;
    table-layout: fixed;
    height: 100vh;
}

#whoWeAre .content .center {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 140%;
    padding: 100px 0;
    -webkit-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
    opacity: 0;
}

#whoWeAre.active .content .center {
    opacity: 1;
}

#whoWeAre .content .center .text {
    margin-top: 36px;
}

#blog {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#blog .inwrapper{
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

#blog .inwrapper .container{
    display: none;
}

#blog .inwrapper .container:after{
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

#blog .inwrapper .container.w960{
    display: block;
}

#blog .video {
    background-image: url("img/p1_1920.jpg");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

#blog .title {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 50%;
    width: 780px;
    padding-top: 53px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    height: 50vh;
}

#blog .block {
    width: 50%;
    height: 50vh;
    position: relative;
    float: left;
    color: #fff;
    font-size: 21px;
    line-height: 139%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    transition: opacity 1s ease-in-out,transform 1s ease-in-out;
    transform: translateY(200%);
    opacity: 0;
}

#blog .box .block:first-child{
    margin-left: 50%;
}

#blog.active .box .block{
    opacity: 1;
    transform: translateY(0);
}

#blog .block .content {
    width: 780px;
    height: 100%;
    box-sizing: border-box;
    padding-top: 79px;
}

#blog .block:nth-of-type(2n-1) .content {
    float: left;
    padding-left: 120px;
}

#blog .block:nth-of-type(2n) .content {
    float: right;
    padding-right: 120px;
}

#blog .block .content .frame {
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

#blog .block .content .frame a{
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    line-height: 0;
}

#blog .block .content .frame a:hover {
    color: #000;
}

#blog .block .content .frame a .y,
#blog .block .content .frame a .m {
    font-size: 21px;
    line-height: 139%;
    float: left;
    clear: both;
}

#blog .block .content .frame a .text {
    font-size: 49px;
    line-height: 127%;
    margin-top: 22px;
    display: inline-block;
    float: left;
    clear: both;
}

#blog .block .content .frame a .text:first-child {
    margin-top: 0;
}

#feedback {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#feedback .video {
    background: url("img/whoWeAre.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#feedback .grid {
    position: relative;
    width: 100%;
    height: 100vh;
    display: table;
    table-layout: fixed;
    z-index: 1;
}

#feedback .grid .tr {
    display: table-row;
}

#feedback .grid .tr .form {
    display: table-cell;
    color: #fff;
    background: #3e9775;
    vertical-align: middle;
}

#feedback .grid .tr .form .center {
    width: 960px;
    margin: 0 auto;
    padding: 60px 0;
}

#feedback .grid .tr .form .center h3 {
    display: block;
    text-align: center;
}

#feedback .grid .tr .form .center input {
    width: 100%;
}

#feedback .grid .tr .form .center h3 + input {
    margin: 57px 0 0;
}

#feedback .grid .tr .form .center input[type="submit"] {
    border-radius: 33px;
    cursor: pointer;
    -webkit-transition: color 0.3s ease, background 0.3s ease;
    -o-transition: color 0.3s ease, background 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease;
}

#feedback .grid .tr .form .center input[type="submit"]:hover {
    color: #3e9775;
    background: #fff;
}

#feedback .grid .tr .form .center textarea {
    width: 100%;
}

#feedback .grid .tr .form .center .err {
    border-color: #ea9292;
}

#feedback .grid .tr  footer {
    display: table-cell;
    height: 99px;
    vertical-align: middle;
}

footer {
    height: 100%;
    font-size: 32px;
    line-height: 100%;
    font-family: "Conv_GothamPro-Light", Tahoma, Arial, Verdana, sans-serif;
    color: #fff;
    line-height: 99px;
    position: relative;
}

footer .center {
    text-align: center;
    margin: 0 auto;
    width: 1800px;
}

footer a {
    position: relative;
    font-family: "Conv_GothamPro-Light", Tahoma, Arial, Verdana, sans-serif;
    color: #fff;
    font-size: 32px;
}

footer a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #cf9c6a;
}

footer a:hover:before {
    display: none;
}

footer a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
}
footer a[href^="tel:"]:before {
    display: none;
}

#update{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 101;
}

#update .x {
    width: 29px;
    height: 29px;
    display: block;
    position: absolute;
    top: 34px;
    right: 120px;
}
#update .x:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 14px;
    width: 2px;
    height: 38px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
#update .x:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 14px;
    width: 2px;
    height: 38px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
#update .x:hover:before {
    top: -10px;
    left: 13px;
    height: 50px;
}
#update .x:hover:after {
    top: -10px;
    right: 13px;
    height: 50px;
}

#update .tb{
    display: table;
    width: 870px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -435px;
    table-layout: fixed;
}

#update .tb .ct{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 20px;
    line-height: 150%;
}

#update .tb .ct a{
    display: inline-block;
    font-size: 20px;
    position: relative;
}

#update .tb .ct a:before {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #cf9c6a;
}

#update .tb .ct a:hover:before {
    display: none;
}

#update .tb .ct p{
    margin-top: 7px;
}

#update .tb .ct img{
    height: 136px;
    width: 136px;
}

#error {
    min-height: 100vh;
    position: relative;
}

#error .video {
    background: url("img/error.jpg") no-repeat;
    background-position: 50%;
    background-size: cover;
}

#error .box {
    position: relative;
    width: 700px;
    height: 100vh;
    display: table;
    table-layout: fixed;
    margin: 0 auto;
}

#error .box .center{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    line-height: 152%;
}

#error .box .center .number{
    font-size: 323px;
    line-height: 92%;
    font-family: "Conv_GothamPro-Medium",Tahoma,Arial;
}

#error .box .center a {
    display: inline-block;
    position: relative;
}
#error .box .center a:before {
    content: "";
    position: absolute;
    bottom: 1px;
    width: 100%;
    height: 2px;
    background: #cf9c6a;
}

#error .box .center a:hover:before {
    display: none;
}

@media screen and (max-width: 1900px) {
    h1,
    h2,
    h3 {
        font-size: 46px;
        line-height: 96%;
    }
    body,
    td {
        font-size: 20px;
        line-height: 140%;
    }
    p {
        margin-top: 11px;
    }
    input, select, textarea{
        font-size: 20px;
    }
    textarea{
        height: 200px;
        padding-top: 18px;
    }

    .select .val{
        font-size: 20px;
    }
    .select .valList li{
        font-size: 20px;
    }

    header {
        padding: 32px 60px 0;
        content: "1440";
    }

    header.active .logo {
        left: 60px;
    }

    #menu {
        max-width: 330px;
        min-width: 321px;
    }

    #menu .x {
        right: 64px;
    }

    #menu menu {
        padding: 123px 80px 80px;
    }
    menu li {
        font-size: 22px;
        margin-top: 12px;
    }

    menu li:first-child {
        margin-top: 0;
    }

    #menu .social {
        left: 80px;
        bottom: 57px;
    }

    #home .text .vc .hc {
        width: 480px;
    }
    #home .text .vc .hc p {
        margin-top: 21px;
    }

    #home .down {
        bottom: 49px;
    }


    #workingPlan .grid .tr .shema,
    #workingPlan .grid .tr .shema .inwrapper{
        height: 547px;
    }

    #workingPlan .grid .tr .shema .title{
        font-size: 29px;
        line-height: 107%;
    }

    #workingPlan .grid .tr .shema .description{
        font-size: 16px;
        line-height: 132%;
        margin-top: 18px;
    }

    #workingPlan .grid .tr .shema .block{
        font-size: 16px;
        line-height: 36px;
        margin-top: 15px;
        width: 192px;
    }

    #workingPlan .grid .tr .shema .col.w266 .block{
        width: 228px;
    }

    #workingPlan .grid .tr .shema .block:before{
        height: 16px;
    }

    #workingPlan .grid .tr .shema .description + .block:before{
        height: 37px;
    }

    #workingPlan .grid .tr .shema .description + .block{
        margin-top: 52px;
    }

    #whatWeDo .container {
        width: 1320px;
    }

    #whatWeDo .container .col {
        width: 330px;
        font-size: 16px;
        line-height: 144%;
    }

    #whatWeDo .container .col .block {
        height: 330px;
        padding-top: 60px;
    }

    #whatWeDo .container .col .block .title {
        height: 38px;
        line-height: 36px;
        margin: 0 auto;
        min-width: 193px;
        max-width: 260px;
    }

    #whatWeDo .container .col .block .text {
        margin: 12px 52px 0;
    }

    #whatWeDo .container .col .block h3 {
        margin-top: 46px;
    }

    #projects .video {
        background-image: url("img/p2_1440.jpg");
    }

    #projects .block {
        font-size: 16px;
        line-height: 144%;
    }

    #projects .title {
        padding-top: 77px;
        width: 600px;
    }

    #projects .block .content {
        width: 640px;
    }

    #projects .block .content img {
        width: 144px;
        height: 144px;
    }

    #projects .block .content .text {
        margin-top: 19px;
        padding-right: 5px;
    }

    #whoWeAre .content{
        width: 1120px;
    }
    #whoWeAre .content .center{
        font-size: 25px;
        line-height: 152%;
    }
    #whoWeAre .content .center .text{
        margin-top: 28px;
    }

    #blog .video {
        background-image: url("img/p1_1440.jpg");
    }

    #blog .block .content {
        width: 600px;
        padding-top: 59px;
    }

    #blog .title {
        padding-top: 77px;
        width: 600px;
    }

    #blog .block .content .frame a .y, #blog .block .content .frame a .m{
        font-size: 16px;
        line-height: 139%;
    }

    #blog .block .content .frame a .text{
        font-size: 39px;
        line-height: 124%;
        margin-top: 16px;
    }

    #feedback .grid .tr .form .center{
        width: 652px;
    }

    #feedback .grid .tr .form .center h3 + input {
        margin: 46px 0 0;
    }

    #feedback .grid .tr footer{
        height: 71px;
    }

    footer{
        line-height: 71px;
        font-size: 28px;
    }
    footer a{
        font-size: 28px;
    }

    footer .center{
        width: 1400px;
    }

    #feedback .grid .tr .form .center input[type="submit"]{
        margin-top: 20px;
        font-size: 23px;
    }


    #update .tb{
        width: 690px;
        margin-left: -345px;
    }

    #update .tb .ct{
        font-size: 16px;
        line-height: 157%;
    }

    #update .tb .ct a{
        font-size: 16px;
    }

    #update .x{
        right: 64px;
    }

    #update .tb .ct p{
        margin-top: 12px;
    }

    #error .box {
        width: 700px;
    }

    #error .box .center{
        line-height: 152%;
        font-size: 25px;
    }

    #error .box .center .number{
        font-size: 223px;
        line-height: 100%;
    }

    #error .box .center a:before {
        bottom: 1px;
    }

}

@media screen and (max-width: 1440px) {

    textarea{
        height: 112px;
    }

    header{
        content: "960";
    }

    #menu {
        max-width: 310px;
        min-width: 300px;
    }

    #menu menu {
        padding: 123px 60px 120px;
    }

    #home{
        overflow: hidden;
    }

    #home .text .vc .hc {
        width: 360px;
    }

    #home .down {
        bottom: 38px;
    }

    #workingPlan .grid .tr .shema,
    #workingPlan .grid .tr .shema .inwrapper{
        height: 497px;
    }

    #workingPlan .grid .tr .shema .container.w1440{
        display: none;
    }

    #workingPlan .grid .tr .shema .container.w640{
        display: block;
        padding-top: 250px;
    }

    #workingPlan .grid .tr .shema .container.first {
        transform: translate3d(0,100%,0);
        -webkit-transition: transform 1s ease;
        -o-transition: transform 1s ease;
        transition: transform 1s ease;
        padding-top: 0;
    }

    #workingPlan.active .grid .tr .shema .container.first {
        transform: translate3d(0,0,0);
    }

    #workingPlan .grid .tr .shema .container:not(.first){
        position: absolute;
        top: 100%;
    }

    #workingPlan .grid .tr .shema .col{
        width: 100%;
        float: none;
    }

    #workingPlan .grid .tr .shema .title br{
        display: none;
    }

    #workingPlan .grid .tr .shema .description{
        margin-top: 11px;
    }

    #whatWeDo .container {
        width: 660px;
        display: block;
        overflow: hidden;
        padding: 50px 0;
        box-sizing: border-box;
        height: auto;
    }

    #whatWeDo .container:after {
        content: "";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }

    #whatWeDo .container .col {
        display: block;
        float: left;
        height: 660px;
        padding: 0;
    }

    #whatWeDo.active .container .col .block.b1{
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    #whatWeDo.active .container .col .block.b6{
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    #whatWeDo.active .container .col .block.b2{
        -webkit-transition-delay: 1.2s;
        -o-transition-delay: 1.2s;
        transition-delay: 1.2s;
    }

    #whatWeDo.active .container .col .block.b5{
        -webkit-transition-delay: 1.8s;
        -o-transition-delay: 1.8s;
        transition-delay: 1.8s;
    }

    #whatWeDo.active .container .col .block.b7{
        -webkit-transition-delay: 2.4s;
        -o-transition-delay: 2.4s;
        transition-delay: 2.4s;
    }

    #whatWeDo.active .container .col .block.b4{
        -webkit-transition-delay: 3s;
        -o-transition-delay: 3s;
        transition-delay: 3s;
    }

    #whatWeDo.active .container .col .block.b3{
        -webkit-transition-delay: 3.6s;
        -o-transition-delay: 3.6s;
        transition-delay: 3.6s;
    }

    #whatWeDo.active .container .col .block.b8{
        -webkit-transition-delay: 4.2s;
        -o-transition-delay: 4.2s;
        transition-delay: 4.2s;
    }

    #projects .video {
        background-image: url("img/p2_960.jpg");
    }

    #projects .title {
        width: 420px;
        padding-top: 44px;
    }

    #projects .block .content {
        width: 420px;
        padding-top: 39px;
    }
    #projects .block:nth-of-type(2n) .content {
        padding-right: 55px;
    }
    #projects .block:nth-of-type(2n-1) .content {
        padding-left: 55px;
    }
    #projects .block .content .text {
        margin-top: 17px;
        padding-right: 25px;
    }

    #whoWeAre .content{
        width: 750px;
    }

    #whoWeAre .content .center .text br{
        display: none;
    }

    #blog .video {
        background-image: url("img/p1_960.jpg");
    }

    #blog .title {
        width: 420px;
        padding-top: 44px;
    }

    #blog .block .content{
        width: 420px;
        padding-top: 43px;
    }
    #blog .block:nth-of-type(2n) .content{
        padding-right: 55px;
    }
    #blog .block:nth-of-type(2n-1) .content{
        padding-left: 55px;
    }

    #feedback .grid .tr footer{
        height: 65px;
    }

    #feedback .grid .tr .form .center h3 + input{
        margin-top: 32px;
    }

    footer .center{
        width: 920px;
    }

    footer{
        font-size: 20px;
        line-height: 65px;
    }
    footer a{
        font-size: 20px;
    }

}

@media screen and (max-width: 959px) {

    input, select, textarea{
        padding: 0 16px;
        margin-top: 19px;
    }

    textarea{
        padding-top: 18px;
        height: 230px;
    }

    .select{
        margin-top: 19px;
    }
    .select .val{
        padding: 0 50px 0 16px;
    }

    .select .valList li{
        padding: 0 16px;
    }
    .select .x{
        right: 22px;
    }
    .select.opened .x{
        right: 22px;
    }

    header {
        padding: 32px 32px 0;
        content: "640";
    }

    header.active .logo {
        left: 32px;
    }

    header .menu{
         -webkit-transition: opacity 0.4s ease 1s;
         -o-transition: opacity 0.4s ease 1s;
         transition: opacity 0.4s ease 1s;
         display: block;
    }

    header.openMenu .menu{
        opacity: 1;
        display: none;
    }

    #menu {
        width: 100%;
        min-width: 0;
        max-width: none;
        background: #000;
    }

    #menu .x {
        right: 36px;
    }

    #menu menu {
        padding: 159px 0 10px;
        margin: 0 auto;
        display: table;
        width: auto;
    }

    menu li {
        font-size: 37px;
        margin-top: 21px;
        max-width: 500px;
    }

    menu li:first-child {
        margin-top: 0;
    }

    #menu .social {
        margin: 0 auto 50px;
    }

    #menu .social a {
        width: 60px;
        height: 60px;
        margin-left: 25px;
    }

    #menu .social a:first-child {
        margin-left: 0;
    }

    #menu .wrapper .tr:nth-child(2) .tc{
        height: 110px;
    }

    #home:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        z-index: 4;
        background-image: -webkit-gradient(
        	linear,
        	left top,
        	right top,
        	color-stop(0, #000000),
        	color-stop(0.5, #000000),
        	color-stop(0.5, #487DB1),
        	color-stop(1, #487DB1)
        );
        background-image: -o-linear-gradient(right, #000000 0%, #000000 50%, #487DB1 50%, #487DB1 100%);
        background-image: -moz-linear-gradient(right, #000000 0%, #000000 50%, #487DB1 50%, #487DB1 100%);
        background-image: -webkit-linear-gradient(right, #000000 0%, #000000 50%, #487DB1 50%, #487DB1 100%);
        background-image: -ms-linear-gradient(right, #000000 0%, #000000 50%, #487DB1 50%, #487DB1 100%);
        background-image: linear-gradient(to right, #000000 0%, #000000 50%, #487DB1 50%, #487DB1 100%);
        transform: translateX(0);

        animation-name: siteStart;
        animation-duration: 2s;
        animation-play-state: paused;
        animation-fill-mode: forwards;
    }

    @keyframes siteStart {
        0%   {transform: translate3d(0,0,0);z-index: 4;}
        50%  {transform: translate3d(-50%,0,0);z-index: 4;}
        51%  {z-index: 3;}
        100%  {transform: translate3d(-50%,-100%,0);z-index: 3;}
    }

    #home.active:before{
        animation-play-state: running;
    }

    #home .text:before,
    #home .text:after{
        display: none;
    }

    #home .text {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        z-index: 3;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    #home .text .vc .hc {
        width: 480px;
        text-align: center;
        padding: 155px 0 73px;
        -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
         transition-delay: 1s;
    }

    #home .text .vc .hc p {
        margin-top: 26px;
    }

    #home .down{
        -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
         transition-delay: 1s
    }

    #workingPlan .grid .tr .shema,
    #workingPlan .grid .tr .shema .inwrapper{
        height: 647px;
    }

    #workingPlan .grid .tr .text .center {
        width: 600px;
    }

    #workingPlan .grid .tr .shema .title{
        font-size: 37px;
    }

    #workingPlan .grid .tr .shema .description{
        font-size: 22px;
        line-height: 137%;
        margin-top: 22px;
    }

    #workingPlan .grid .tr .shema .block{
        font-size: 22px;
        line-height: 49px;
        width: 265px;
        margin-top: 23px;
    }

    #workingPlan .grid .tr .shema .block:before{
        height: 24px;
    }

    #workingPlan .grid .tr .shema .description + .block{
        margin-top: 68px;
    }

    #workingPlan .grid .tr .shema .description + .block:before{
        height: 52px;
    }

    #workingPlan .grid .tr .shema .col.w266 .block{
        width: 315px;
    }

    #whatWeDo .container {
        width: 490px;
        padding-top: 0;
    }

    #whatWeDo .container .col {
        width: 490px;
        height: auto;
        font-size: 20px;
    }


    #whatWeDo.active .container .col .block.b2,
    #whatWeDo.active .container .col .block.b3,
    #whatWeDo.active .container .col .block.b4,
    #whatWeDo.active .container .col .block.b5,
    #whatWeDo.active .container .col .block.b6,
    #whatWeDo.active .container .col .block.b7,
    #whatWeDo.active .container .col .block.b8{
        -webkit-transition-delay: 0.6s;
        -o-transition-delay: 0.6s;
        transition-delay: 0.6s;
    }

    #whatWeDo .container .col .block.b1{
        opacity: 1;
    }

    #whatWeDo .container .col .block.head {
        height: auto;
        display: block;
        text-align: center;
        width: 490px;
        padding: 0;
        background: transparent;
        margin: 0;
    }

    #whatWeDo .container .col .block.head+.block {
        margin: 0;
    }

    #whatWeDo .container .col .block.head h3 {
        display: block;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        padding: 84px 0 76px;
    }

    #whatWeDo .container .col .block {
        height: 490px;
        padding-top: 114px;
        margin-top: 0;
    }

    #whatWeDo .container .col .block .title {
        font-size: 26px;
        height: 61px;
        line-height: 59px;
        border-radius: 30px;
        min-width: 251px;
        max-width: 380px;
    }

    #whatWeDo .container .col .block .text {
        margin: 24px 104px 0;
    }

    #whatWeDo .container .col{
        display: none;
    }

    #whatWeDo .container .col:first-child,
    #whatWeDo .container .col .block:nth-child(n+3){
        display: block;
    }

    #projects .video {
        background-image: url("img/p2_640.jpg");
    }

    #projects{
        overflow: hidden;
    }

    #projects .inwrapper{
        height: 50vh;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #projects .inwrapper .container.w960{
        display: none;
    }

    #projects .inwrapper .container.w640{
        display: block;
        padding-top: 250px;
    }

    #projects .inwrapper .container{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #projects .inwrapper .container.first{
        top: 0;
        padding-top: 0;
    }

    #projects .title {
        right: 0;
        width: 100%;
        text-align: center;
        padding-top: 59px;
    }

    #projects .block{
        width: 100%;
        height: 50vh;
        font-size: 20px;
        line-height: 144%;
        top: 0;
    }

    #projects .box .block:first-child{
        margin: 0;
        top: 0;
    }

    #projects .block:nth-of-type(2n) .content,
    #projects .block:nth-of-type(2n-1) .content{
        float: none;
        padding: 83px 0px 0;
        width: 534px;
        margin: 0 auto;
    }

    #projects .block .content img{
        margin: 0 auto;
        display: block;
    }
    #projects .block .content .text{
        margin-top: 28px;
    }

    #whoWeAre .content{
        width: 450px;
    }

    #whoWeAre .content .center .text{
        margin-top: 32px;
    }

    #blog .video {
        background-image: url("img/p1_640.jpg");
    }

    #blog{
        overflow: hidden;
    }

    #blog .inwrapper{
        width: 100%;
        height: 50vh;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #blog .inwrapper .container.w960{
        display: none;
    }

    #blog .inwrapper .container.w640{
        display: block;
        padding-top: 250px;
    }

    #blog .inwrapper .container{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #blog .inwrapper .container.first{
        top: 0;
        padding-top: 0;
    }

    #blog .title {
        right: 0;
        width: 100%;
        text-align: center;
        padding-top: 59px;
    }

    #blog .block{
        width: 100%;
        height: 50vh;
        top: 0;
    }

    #blog .box .block:first-child{
        margin: 0;
        top: 0;
    }

    #blog .block:nth-of-type(2n-1) .content,
    #blog .block:nth-of-type(2n) .content{
        float: none;
        padding: 74px 0px 30px;
        width: 480px;
        margin: 0 auto;
    }

    #blog .block .content.title{
        text-align: center;
        padding-top: 59px;
    }

    #blog .block .content .frame a .text{
        margin-top: 27px;
    }

    #feedback .grid .tr .form .center{
        width: 536px;
    }
    #feedback .grid .tr .form .center h3 + input{
        margin-top: 39px;
    }

    #feedback .grid .tr .form .center input[type="submit"]{
        margin-top: 29px;
    }

    #feedback .grid .tr footer{
        height: 118px;
    }

    footer{
        font-size: 25px;
        line-height: 27px;
    }
    footer a{
        font-size: 25px;
    }
    footer .center{
        width: 540px;
    }

    #update .x{
        right: 39px;
    }

    #update .tb{
        width: 400px;
        margin-left: -200px;
    }

    #error .box {
        width: 500px;
    }

    #error .box .center .description{
        width: 360px;
        margin: 0 auto;
    }
}

@media (hover: none) {
   #feedback .grid .tr .form .center input[type="submit"]:hover{
       color: #fff;
       background: inherit;
   }
   #feedback .grid .tr .form .center input[type="submit"]:active{
       color: #3e9775;
       background: #fff;
   }
   header .menu:hover:before,
   header .menu:hover:after{
       -webkit-transform: translate3d(0,0,0);
       -ms-transform: translate3d(0,0,0);
       transform: translate3d(0,0,0);
   }
   header .menu:active:before {
       -webkit-transform: translate3d(0,-2px,0);
       -ms-transform: translate3d(0,-2px,0);
       transform: translate3d(0,-2px,0);
   }
   header .menu:active:after {
       -webkit-transform: translate3d(0,2px,0);
       -ms-transform: translate3d(0,2px,0);
       transform: translate3d(0,2px,0);
   }

   #menu .x:hover {
       border-radius: 20px;
   }

   #menu .x:active {
       border-radius: 2px;
   }

   #blog .block .content .frame a:hover {
       color: #fff;
   }
   #blog .block .content .frame a:active {
       color: #000;
   }

   footer a:hover:before {
       display: block;
   }

   footer a:active:before {
       display: none;
   }

   #menu .social a.t:hover {
       background-image: url("svg/tw_noactive.svg");
   }

   #menu .social a.t:active {
       background-image: url("svg/tw_active.svg");
   }

   #menu .social a.m:hover {
       background-image: url("svg/m_noactive.svg");
   }

   #menu .social a.m:active {
       background-image: url("svg/m_active.svg");
   }

   #menu .social a.f:hover {
       background-image: url("svg/fb_noactive.svg");
   }

   #menu .social a.f:active {
       background-image: url("svg/fb_active.svg");
   }

}