*
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
         outline: none transparent !important;
    box-shadow: none;

    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus
{
    outline: none;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*---------------
    Main styles
---------------*/
.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}

html
{
    height: 100%;

    background: #fff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    color: #000;
    font-family: 'Montserrat', 'Arial', sans-serif;

    height: 100%;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

.wrap
{
    overflow: hidden;
}

.cont
{
    position: relative;

    width: 100%;
    max-width: 1026px;
    margin: 0 auto;
    padding: 0 20px;
}



.block_head
{
    margin-bottom: 40px;
}

.block_head .title
{
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;

    position: relative;

    text-transform: uppercase;
}

.block_head .title:before
{
    position: absolute;
    top: 50%;
    left: -100px;

    display: block;

    width: 50px;
    height: 3px;
    margin-top: -2px;

    content: '';

    background: #000;
}


.block_head.light
{
    color: #fff;
}

.block_head.light .title:before
{
    background: #fff;
}



.breadcrumbs
{
    color: #565656;
    font-size: 12px;

    margin-bottom: 15px;
}

.breadcrumbs a
{
    color: #565656;

    text-decoration: none;
}

.breadcrumbs a:hover
{
    text-decoration: underline;
}

.breadcrumbs .sep
{
    position: relative;
    top: 1px;

    display: inline-block;

    width: 3px;
    height: 5px;
    margin: 0 3px;

    vertical-align: middle;
}

.breadcrumbs .sep:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    width: 4px;
    height: 4px;
    margin-top: -4px;
    margin-left: -2px;

    content: '';
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-right: 1px solid #565656;
    border-bottom: 1px solid #565656;
}



/*---------------
   Header
---------------*/
header
{
    position: relative;
    z-index: 999;

    width: 100%;
    padding: 35px 0;

    background: #171717;
}

header.absolute
{
    position: absolute;
    top: 0;
    left: 0;

    background: none;
}


header .cont
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


header .logo a
{
    color: #fff;
    font-size: 10px;
    line-height: 22px;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

header .logo a b
{
    font-size: 56px;
    line-height: 46px;

    display: block;
}


header .menu
{
    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header .menu .menu_item
{
    position: relative;
}

header .menu > * + *
{
    margin-left: 24px;
}

header .menu .menu_item > a
{
    color: #c0c2c2;
    font-size: 15px;
    font-weight: 700;
    line-height: 35px;

    position: relative;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

header .menu .menu_item > a:after
{
    color: transparent;

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    width: 0;
    height: 1px;
    margin: auto;

    content: '';
    transition: width .3s linear;

    background: #fff;
}

header .menu .menu_item:hover > a,
header .menu .menu_item > a.active
{
    color: #fff;
}

header .menu .menu_item:hover > a:after,
header .menu .menu_item > a.active:after
{
    width: 100%;
}


header .menu .sub_menu
{
    position: absolute;
    top: calc(100% + 2px);
    left: 0;

    display: none;

    padding: 8px 0;

    background: #0e0e0e;
}

header .menu .menu_item:hover > .sub_menu
{
    display: block;
}

header .menu .sub_menu:before
{
    position: absolute;
    bottom: 100%;
    left: 0;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
}

header .menu .sub_menu a
{
    color: #eee;
    font-size: 9px;
    line-height: 14px;

    display: block;

    padding: 5px 20px;

    transition: .2s linear;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
}

header .menu .sub_menu div:hover > a,
header .menu .sub_menu a.active
{
    background: #121212;
	color: #fff;
}


header .menu .sub_menu .sub_menu
{
    top: 0;
    left: 100%;

    background: #121212;
}

header .menu .sub_menu > div:hover .sub_menu
{
    display: block;
}

header .menu .sub_menu .sub_menu a
{
    text-transform: none;
}


header .contacts
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    text-align: center;
}

header .contacts .phone
{
    font-size: 18px;
    font-weight: 700;
}
header .contacts .phone a {color: #fff; text-decoration:none;}
header .contacts .callback_link
{
    color: #fff;
}

header .contacts .callback_link:hover
{
    text-decoration: none;
}



header .mob_menu_link
{
    position: relative;
    z-index: 1000;
    display: none;
    width: 65px;
    height: 52px;
    margin-right: -15px;
    margin-left: 15px;
    padding: 15px;
}

header .mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 2px;

    transition: .2s linear;

    background: #fff;
}

header .mob_menu_link span + span
{
    margin-top: 6px;
}


header .mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

header .mob_menu_link.active span:nth-child(1)
{
    top: 8px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

header .mob_menu_link.active span:nth-child(3)
{
    top: -8px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}



.header_wrap.absolute
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
}

header.fixed
{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;

    padding: 10px 0;

    -webkit-animation: moveDown .5s;
            animation: moveDown .5s;

    background: #000;
}


@-webkit-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@-moz-keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}
@keyframes moveDown
{
    0%
    {
        -webkit-transform: translateY(-77px);
                transform: translateY(-77px);
    }
}


header.fixed .logo a
{
    font-size: 7px;
    line-height: 14px;
}

header.fixed .logo a b
{
    font-size: 36px;
    line-height: 30px;
}

header.fixed .menu .menu_item > a
{
    font-size: 13px;
    line-height: 29px;
}

header.fixed .contacts
{
    font-size: 12px;

    display: flex;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

header.fixed .contacts > * + *
{
    margin-left: 15px;
}



.fancybox-active header.fixed,
.fancybox-active header.absolute
{
    padding-right: 17px;
}

html.macOS header.fixed,
html:not(.desktop) header.fixed,
html.macOS header.absolute,
html:not(.desktop) header.absolute
{
    padding-right: 0 !important;
}



/*---------------
   Sidebar
---------------*/



/*---------------
   Main section
---------------*/
.first_section
{
   /* min-height: 100vh;*/
    padding: 70px 0 195px;

   /* background: #000 url(../images/bg_first_section.jpg) 50% 50% no-repeat;
    background-size: cover;*/
}

.first_section .info
{
    color: #c2c4c4;
    font-size: 18px;
    font-weight: 600;

    display: flex;

    width: 575px;
    max-width: 100%;

    letter-spacing: -.025em;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.first_section .info > * + *
{
	font-size: 24px;
    margin-top: 30px;

}


.first_section .info .title
{
    color: #fff;
    font-size: 60px;
    line-height: 72px;
	text-shadow: 0px 1px 1px #000;
}

.first_section .info .desc {
	color: #fff;
	    text-shadow: 0px 1px 1px #000;
		font-size: 24px;
}

.first_section .info .links
{
    margin-top: 40px;
}

.first_section .info .links a
{
    color: #c2c4c4;
    font-size: 15px;
    line-height: 60px;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;
}

.first_section .info .links > * + *
{
    margin-left: 36px;
}

.first_section .info .links a.bg
{
    color: #000;

    padding: 0 33px;

    background: #fff;
}

.first_section .info .links a:hover
{
    color: #fff;
}

.first_section .info .links a.bg:hover
{
    color: #fff;

    background: #000;
}




.services .grid
{
    display: flex;

    width: 964px;
    /*margin: 0 -19px 0 -22px;*/

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}


.services .cols
{
    display: flex;

    width: 1025px;
    max-width: 100%;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.services .cols .col
{
    width: 50%;
}

.services .cols .title
{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    min-height: 95px;
    padding: 15px 20px;

    text-align: center;

    background: #2b2b2b;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.services .cols .title.bg2
{
    background: #1d1d1d;
}

.services .cols .item
{
    top: 0 !important;

    width: 100% !important;
    margin: 0 !important;
}

.services .cols .all_link
{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;

    display: block;

    width: 146px;
    height: 60px;
    margin: 25px auto 0;

    text-align: center;
    text-decoration: none;

    background: #000;
}
.services .cols .all_link:hover {
	color:#000;
	background:#fff;
	border: 2px solid #000;
	
    transition: .2s linear;
}

.services .item
{
    color: #fff;

    position: relative;

    display: flex;
    overflow: hidden;

    width: 50%;
    height: 400px;
    padding: 39px 33px;

    text-decoration: none;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;

    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}

.services .item.big
{
    width: calc(50% + 79px);
}

.services .item.big.left
{
    margin-left: -79px;
    padding-left: 112px;
}

.services .item.big.right
{
    margin-right: -79px;
    padding-right: 112px;
}

.services .item:nth-child(2n)
{
  /*  top: 5px;*/
}

.services .item .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
 z-index: 999;
    padding-bottom: 15px;

    background: url(../images/ic_arrow_right.png) 0 100% no-repeat;
}

.services .item:hover .name
{
    text-decoration: underline;
}



.order_block
{
    padding: 90px 0 35px;

    background: #000 url(../images/bg_order_block.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.order_block .cont
{
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.order_block .info
{
    color: #c2c4c4;
    font-size: 14px;
    font-weight: 600;

    width: calc(50% + 10px);
    padding-bottom: 52px;

    text-align: center;
    letter-spacing: -.025em;
}

.order_block .info .title
{
    color: #fff;
    font-size: 28px;
    line-height: 40px;

    position: relative;

    margin-bottom: 55px;

    letter-spacing: .05em;
    text-transform: uppercase;
}

.order_block .info .title:after
{
    position: absolute;
    bottom: -27px;
    left: 50%;

    display: block;

    width: 50px;
    height: 3px;
    margin-left: -25px;

    content: '';

    background: #fff;
}

.order_block .info small
{
    font-size: 12px;
}

.order_block .info .desc > * + *
{
    margin-top: 15px;
}


.order_block .form
{
    width: calc(50% - 10px);
    padding-right: 85px;
}



.steps
{
    padding: 120px 0 136px;

    background: #171717;
}

.steps .grid
{
    display: flex;

    counter-reset: div;

    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.steps .item
{
    color: #c2c4c4;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;

    position: relative;

    width: 25%;
    padding-right: 45px;
    padding-bottom: 175px;
}

.steps .item:nth-child(2n+1)
{
    padding-top: 175px;
    padding-bottom: 0;

    align-self: flex-end;
}

.steps .item .name
{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 10px;

    text-transform: uppercase;
}

.steps .item:before
{
    color: #fff;
    font: 700 28px Montserrat;

    position: absolute;
    top: 0;
    left: -20px;

    width: 263px;
    height: 134px;
    padding-top: 90px;

    content: '0'counter(div);
    counter-increment: div;
    text-align: center;

    background: url(../images/bg_steps_sep.png) 0 0 no-repeat;
}

.steps .item:nth-child(2n):before
{
    top: auto;
    bottom: 0;

    padding-top: 15px;

    background: url(../images/bg_steps_sep2.png) 0 0 no-repeat;
}

.steps .item + .item:before
{
    left: -41px;
}


.steps .link
{
    padding-top: 80px;

    text-align: center;
}

.steps .link a
{
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;

    display: inline-block;

    padding: 0 42px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;

    background: #fff;;
}

.steps .link > * + *
{
    margin-left: 38px;
}

.steps .link a:hover
{
    color: #fff;

    background: #000;
}



.team
{
    padding: 70px 0 101px;
}

.team .slide
{
    display: none;
}

.team .owl-loaded .slide
{
    display: block;
}

.team .item img
{
    display: block;

    width: 100%;

    transition: .5s linear;

    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}

.team .item .info
{
    color: #fff;
    color: #c2c4c4;
    font-size: 12px;
    font-weight: 500;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 20px 22px;
}

.team .item .name
{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;

    margin-bottom: 5px;
}

.team .item:hover img
{
    -webkit-filter: grayscale(0%);
       -moz-filter: grayscale(0%);
        -ms-filter: grayscale(0%);
         -o-filter: grayscale(0%);
            filter: grayscale(0%);
}



.cases
{
    padding: 70px 0 70px;
}

.cases .item
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
	margin-bottom: 70px;
}

.cases .item + .item
{
    margin-top: 73px;
}


.cases .item .images
{
    width: calc(100% - 320px);
}

.cases .item .images .slide
{
    position: relative;

    display: none;
    overflow: hidden;
}

.cases .item .images .big .slide:first-child,
.cases .item .images .owl-loaded .slide
{
    display: block;
}

.cases .item .images .slide a,
.cases .item .images .slide img
{
    position: relative;

    display: block;

    width: 100%;
}

.cases .item .images .slide .video_link:after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(0,0,0,.4) url(../images/ic_video_play.png) 50% 50% no-repeat;
}

.cases .item .images .slide video
{
    position: inherit;
    bottom: 0;
    left: 0;

    display: none;

    width: 100%;
    min-height: 100%;

    cursor: pointer;
}

.cases .item .images .thumbs
{
    margin-top: 23px;
}


.cases .item .info
{
	min-height: auto !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;

    position: relative;

    width: 280px;
    max-width: 100%;
    padding-bottom: 37px;
}

.cases .item .info .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;
}

.cases .item .info .name a
{
    color: #000;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

.cases .item .info .name a:hover
{
    text-decoration: underline;
}

.cases .item .info .desc > * + *
{
    margin-top: 15px;
}

.cases .item .info .bottom
{
    position: absolute;
    bottom: 0;
    left: 0;
}

.cases .item .info .price
{
    font-weight: 700;
    line-height: 24px;
}

.cases .item .info .price .val
{
    font-size: 30px;
    line-height: 30px;

    text-transform: uppercase;
}

.cases .item .info .details
{
    color: #000;
    font-weight: 600;

    display: inline-block;

    margin-top: 15px;

    vertical-align: top;
}

.cases .item .info .details:hover
{
    text-decoration: none;
}


.cases .all
{
   /* padding-top: 80px; */
}

.cases .all a
{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;

    display: inline-block;

    padding: 0 42px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;

    background: #000;
}

.cases .all > * + *
{
    margin-left: 38px;
}

.cases .all a:hover
{
    color: #000;

    background: #fff;
}


.cases.dark
{
    background: #000;
}

.cases.dark .item .info,
.cases.dark .item .info .details
{
    color: #fff;
}

.cases.dark .all a
{
    color: #000;

    background: #fff;
}

.cases.dark .all a:hover
{
    color: #fff;

    background: #000;
}











.clients
{
    padding: 70px 0;

    background: #000;
}

.clients .flex
{
    position: relative;
    left: 20px;

    display: flex;

    width: 800px;
    max-width: calc(100% + 20px);
    margin-right: auto;
    margin-bottom: -20px;
    margin-left: auto;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.clients .flex > *
{
    width: calc(25% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.clients .item img
{
    display: block;

    max-width: 100%;
    margin: 0 auto;

    transition: .2s linear;
    transform: scale(.75);

    opacity: .4;
}

.clients .item:hover img
{
    opacity: 1;
}

.bottom_text
{
    padding: 85px 0 65px;

    background: #171717;
}



.contacts_block
{
    color: #c0c2c2;
    font-size: 14px;
    font-weight: 700;

    padding: 70px 0 190px;

    text-align: center;
    text-transform: uppercase;

    background: #000 url(../images/bg_order_block.jpg) 50% 50% no-repeat;
}

.contacts_block .title
{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;

    margin-bottom: 45px;

    letter-spacing: .05em;
}

.contacts_block .metro
{
    font-size: 12px;
    font-weight: 500;

    display: inline-block;

    margin-bottom: 8px;
    padding-left: 22px;

    vertical-align: top;
    text-transform: none;

    background: url(../images/ic_metro.png) 0 50% no-repeat;
}

.contacts_block .phone
{
    color: #fff;
    font-size: 18px;
    line-height: 24px;

    margin-top: 20px;
}
.contacts_block .phone a {color: #fff; text-decoration:none;}
.contacts_block .callback_link
{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 44px;

    display: inline-block;

    margin-top: 20px;
    padding: 0 32px;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;

    background: #fff;;
}

.contacts_block .callback_link:hover
{
    color: #fff;

    background: #000;
}



.contacts_page
{
    padding: 7px 0 145px;

    background: #171717;
}

.contacts_page .grid
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.contacts_page .info
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;

    width: 130px;
    max-width: 100%;
}

.contacts_page .info > * + *
{
    margin-top: 30px;
}

.contacts_page .info .title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 20px;
}


.contacts_page .managers .name
{
    font-weight: 700;
}

.contacts_page .managers .item + .item
{
    margin-top: 20px;
}


.contacts_page .socials .items
{
    display: flex;
margin-right: 15px; margin-left: -15px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.contacts_page .socials a
{
    display: flex;

    width: 40px;
    height: 40px;

    transition: .2s linear;

    border-radius: 50%;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.contacts_page .socials a img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}


.contacts_page #map
{
    position: relative;

    overflow: hidden;

    width: calc(100% - 470px);

    background: #b4b4b4;
}

.contacts_page #map .adres small
{
    display: block;

    width: 100%;
}

.contacts_page #map .phone
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.contacts_page #map .email,
.contacts_page #map .time
{
    margin-top: 10px;
}

.ymaps-b-balloon__tr,
.ymaps-b-balloon__tl,
.ymaps-b-balloon__bl,
.ymaps-b-balloon__br,
.ymaps-b-balloon__close
{
    display: none !important;
}

.ymaps-b-balloon__content-holster
{
    padding: 0 !important;
}

.ymaps-b-balloon__content
{
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;

    position: relative;

    width: 260px;
    padding: 16px !important;

    border: none !important;
    box-shadow: 0 14px 18px rgba(0,0,0,.32) !important;
}


.contacts_page .feedback
{
    width: 300px;
    max-width: 100%;
}

.contacts_page .feedback .title
{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;

    margin-bottom: 10px;

    letter-spacing: .05em;
    text-transform: uppercase;
}

.contacts_page .feedback .desc
{
    color: #b4b4b4;
    font-size: 12px;
    font-weight: 600;

    margin-bottom: 25px;

    letter-spacing: -.025em;
}



.about_page
{
    padding: 0 0 60px;

    background: #171717;
}

.about_page .grid
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.about_page .image
{
    width: 798px;
    margin-bottom: -60px;
    margin-left: -308px;
	position: relative;
}

.about_page .image a,
.about_page .image img
{
    position: relative;

    display: block;

    width: 100%;
}

.about_page .image .video_link:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(0,0,0,.48); 
}

.about_page .image .video_link:before
{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;

    display: block;

    width: 55px;
    height: 64px;
    margin: -32px 0 0 -27px;

    content: '';

    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 55px solid #fff;
}



.about_page .image video
{
    position: absolute;
    top: 0;
    right: 0;

    display: none;

    /*width: 492px;*/
	width: 100%;
    min-height: 100%;

    cursor: pointer;
	background: #000;
}



.about_page .text_block
{
    width: 430px;
    max-width: 100%;
}



.portfolio_page
{
    padding-bottom: 1px;

    background: #171717;
}

.portfolio_page .grid
{
    display: flex;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.portfolio_page .item
{
    color: #fff;

    position: relative;

    display: flex;

    width: 50%;
    height: 452px;
    padding: 22px 32px;

    text-decoration: none;

    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.portfolio_page .item:nth-child(2n+1)
{
    width: calc(50% + 310px);
    margin-left: -310px;
}

.portfolio_page .item:nth-child(2n)
{
	padding: 0;
    width: calc(50% + 310px);
    margin-right: -310px;
}
.portfolio_page .item:nth-child(2n):before {
   /* position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    display: block;
    width: 55px;
    height: 64px;
    margin: -32px 0 0 -27px;
    content: '';
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 55px solid #fff;*/
}
.portfolio_page .item video {width: 100%;}

.portfolio_page .item:nth-child(2n) .name	{    position: absolute;
    margin-top: 22px;}
.portfolio_page .item:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(35,35,35,.48);
}

.portfolio_page .item .name
{
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
width: 100%;
display: inline-block;
text-align: center;
    position: relative;
    z-index: 9;

    letter-spacing: .075em;
    text-transform: uppercase;
}

.portfolio_page .item:hover .name
{
    text-decoration: underline;
}


.portfolio_page .sort
{
    color: #7e7e7e;
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 40px;
    margin-left: 40px;
    padding-top: 8px;

    text-transform: uppercase;
}

.portfolio_page .sort a
{
    color: #ddd;

    display: inline-block;

    transition: .2s linear;
    vertical-align: top;
    text-decoration: none;
}

.portfolio_page .sort a + a
{
    margin-left: 20px;
}

.portfolio_page .sort a:hover,
.portfolio_page .sort a.active
{
    color: #fff;
}


.portfolio_page .photo
{
    position: relative;

    overflow: hidden;

    width: calc(100% + 14px);
    margin: 0 -7px;
    padding-bottom: 81px;
}

.portfolio_page .photo .slide
{
    display: none;
}

.portfolio_page .photo .big .slide:first-child,
.portfolio_page .photo .owl-loaded .slide
{
    display: block;
}

.portfolio_page .photo .slide a,
.portfolio_page .photo .slide img
{
    display: block;

    width: 100%;
}

.portfolio_page .photo .thumbs
{
    width: 1014px;
    max-width: 100%;
    margin: 23px auto 0;
   /* padding: 0 81px;*/
}


.portfolio_page .video
{
    position: relative;

    overflow: hidden;

    width: calc(100% + 200px);
    margin: 0 -100px 104px;
}

.portfolio_page .video .button,
.portfolio_page .video img
{
    position: relative;

    display: block;

    width: 100%;

    transition: .2s linear;
}

.portfolio_page .video .button:before
{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;

    display: block;

    width: 102px;
    height: 118px;
    margin: -59px 0 0 -56px;

    content: '';

    border-top: 59px solid transparent;
    border-bottom: 59px solid transparent;
    border-left: 102px solid #fff;
}

.portfolio_page .video .button.hide
{
    opacity: 0;
}

.portfolio_page .video video
{
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;

   /* display: none;*/

    width: 100%;
    min-height: 100%;

    cursor: pointer;
}

.portfolio_page .video iframe
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: calc(100% - 104px);
}


.portfolio_page .cats
{
    padding-bottom: 24px;
}
.portfolio_page .cats span {display: block;}

.portfolio_page .cats a
{

    color: #ddd;
    font-size: 10px;
    line-height: 23px;

    display: inline-block;

    height: 23px;
    margin-bottom: 10px;
    padding: 0 10px;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 15px;
}

.portfolio_page .cats a:hover,
.portfolio_page .cats a.active
{
    color: #fff;

    background: #272727;
}



.service_page
{
    background: #171717;
}


.service_page .links
{
    padding-bottom: 22px;
}

.service_page .links a
{
    color: #bbb;

    font-size: 10px;
    line-height: 23px;

    display: inline-block;

    height: 23px;
    margin-bottom: 10px;
    padding: 0 10px;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 15px;
}

.service_page .links a:hover,
.service_page .links a.active
{
    color: #fff;

    background: #272727;
}


.service_page .photo
{
    position: relative;

    overflow: hidden;

    width: calc(100% + 200px);
    margin: 0 -100px;
    padding-bottom: 81px;
}

.service_page .photo .slide
{
    position: relative;

    display: none;
}

.service_page .photo .big .slide:first-child,
.service_page .photo .owl-loaded .slide
{
    display: block;
}

.service_page .photo .slide a,
.service_page .photo .slide img
{
    display: block;

    width: 100%;
}

.service_page .photo .thumbs
{
    /*width: 1014px;*/
    max-width: 100%;
    margin: 23px auto 0;
   /* padding: 0 81px;*/
}

.service_page .photo .slide .info
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;

    position: absolute;
    top: 0;
    left: 0;

    width: 415px;
    max-width: 100%;
    padding: 50px 100px;
}

.service_page .photo .slide .info .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;
}

.service_page .photo .slide .info .desc > * + *
{
    margin-top: 15px;
}

.service_page .photo .slide .info .price
{
    font-weight: 700;
    line-height: 24px;

    margin-top: 25px;
}

.service_page .photo .slide .info .price .val
{
    font-size: 30px;
    line-height: 30px;

    text-transform: uppercase;
}



.service_info
{
    padding: 60px 0 100px;

    background: #131313;
}

.service_info .cont
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.service_info .title
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    margin-bottom: 20px;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.service_info .last_cases
{
    width: 482px;
    max-width: 100%;
}

.service_info .last_cases .grid
{
    display: flex;

    margin-bottom: -10px;
    margin-left: -10px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.service_info .last_cases .item
{
    display: flex;

    width: calc(33.333% - 10px);
    height: 70px;
    margin-bottom: 10px;
    margin-left: 10px;

    border: 1px solid #2b2b2b;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.service_info .last_cases .item img
{
    display: block;
	filter: grayscale(100%);

    max-width: 100%;
    max-height: 100%;
}


.service_info .advantages
{
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

   /* width: 400px;*/
    max-width: 100%;

    letter-spacing: .05em;
}

.service_info .advantages .items > * + *
{
    margin-top: 7px;
}
.service_info .advantages a {color: #9a9a9a; text-decoration:underline; font-size: 16px;}

.service_info .advantages a:hover {text-decoration: none;}
.service_info_block
{
    background: #000;
}

.service_info_block .cont
{
    display: flex;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.service_info_block .image
{
    overflow: hidden;

    width: 800px;
    margin-left: -308px;
}

.service_info_block .text_block + .image
{
    margin-right: -308px;
    margin-left: 0;
}

.service_info_block .image img
{
    position: relative;
    left: 50%;

    display: block;

    min-width: 100%;
    height: 100%;

    transform: translateX(-50%);
}

.service_info_block .text_block
{
    display: flex;

    width: 430px;
    max-width: 100%;
    padding: 35px 0 15px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.service_info_block .text_block p,
.service_info_block .text_block img,
.service_info_block .text_block iframe,
.service_info_block .text_block ul,
.service_info_block .text_block ol,
.service_info_block .text_block blockquote,
.service_info_block .text_block hr,
.service_info_block .text_block .table_wrap,
.service_info_block .text_block figure
{
    margin-bottom: 20px;
}



.price_list
{
    padding: 75px 0 57px;
}

.price_list .grid
{
    display: flex;

    margin-bottom: -9px;
    margin-left: -9px;

    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.price_list .item
{
    position: relative;

    width: calc(33.333% - 9px);
    margin-bottom: 9px;
    margin-left: 9px;
    padding-bottom: 175px;

    border: 1px solid #000;
}

.price_list .item .thumb
{
    width: calc(100% + 2px);
    margin: -1px -1px 0;
}

.price_list .item .thumb img
{
    display: block;

    width: 100%;
}

.price_list .item .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    display: flex;

    width: calc(100% + 2px);
    min-height: 64px;
    margin: 0 -1px;
    padding: 10px 22px;

    text-transform: uppercase;

    background: #e3e3e3;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.price_list .item .info
{
    font-size: 12px;
    font-weight: 500;

    padding: 30px 35px;
}

.price_list .item .price
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 25px;
}

.price_list .item .price b
{
    font-size: 30px;
}

.price_list .item ul
{
    margin-bottom: 25px;
}

.price_list .item ul li
{
    font-size: 16px;

    display: block;

    padding-left: 25px;

    list-style: none;

    background: url(../images/ic_ul_li.png) 3px 5px no-repeat;
}

.price_list .item ul li + li
{
    margin-top: 10px;
}

.price_list .item .desc > * + *
{
    margin-top: 15px;
}

.price_list .item .bottom
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 45px 56px;

    text-align: center;
}

.price_list .item .bottom > * + *
{
    margin-top: 18px;
}

.price_list .item .download
{
    color: #000;
    font-size: 15px;
    font-weight: 600;

    display: inline-block;

    padding-left: 30px;

    vertical-align: top;

    background: url(../images/ic_download.png) 0 50% no-repeat;
}

.price_list .item .download:hover
{
    text-decoration: none;
}

.price_list .item .order_link
{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 61px;

    display: block;

    width: 100%;
    height: 61px;

    transition: .2s linear;
    text-align: center;
    text-decoration: none;

    background: #000;
}

.price_list .item .order_link:hover
{
    color: #000;

    background: #fff;
}



.case_page
{
    background: #171717;
}

.case_page .back_link
{
    color: #fff;
    font-size: 12px;
    line-height: 24px;

    display: inline-block;

    margin-top: 4px;
    margin-bottom: 40px;

    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;
}

.case_page .back_link:hover
{
    text-decoration: underline;
}


.case_page .text_block
{
    display: flex;

    margin-bottom: 20px;

    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}

.case_page .text_block p,
.case_page .text_block img,
.case_page .text_block iframe,
.case_page .text_block ul,
.case_page .text_block ol,
.case_page .text_block blockquote,
.case_page .text_block hr,
.case_page .text_block .table_wrap,
.case_page .text_block figure
{
    margin-bottom: 20px;
}

.case_page .text_block .logo
{
    width: 264px;
    max-width: 100%;
}

.case_page .text_block .logo img
{
    display: block;

   /* width: 100%;*/
    margin: 0;
}

.case_page .text_block .desc
{
    width: calc(100% - 295px);
}


.case_page .photo
{
    position: relative;

    margin-bottom: 50px;
}

.case_page .photo .slide
{
    display: none;
}

.case_page .photo .big .slide:first-child,
.case_page .photo .owl-loaded .slide
{
    display: block;
}

.case_page .photo .slide a,
.case_page .photo .slide img
{
    display: block;

    width: 100%;
}


.case_page .photo  .slide .video_link:after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    background: rgba(0,0,0,.4) url(../images/ic_video_play.png) 50% 50% no-repeat;
}



.case_page .photo  .slide video
{
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    display: none;

    width: 100%;
    min-height: 100%;

    cursor: pointer;
}




.services .item:nth-child(2n)
{
  /*  position: absolute;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    min-height: 100%;

    cursor: pointer;*/
}

.case_page .photo .thumbs
{
   /* position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;

    width: 808px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 77px;*/
	
	    width: 1014px;
    max-width: 100%;
    margin: 23px auto 0;
   /* padding: 0 81px;*/
   padding: 0;
}


.case_page .similar_project
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;

    position: relative;

    display: flex;

    padding: 16px 0;

    background: #000;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.case_page .similar_project:before,
.case_page .similar_project:after
{
    position: absolute;
    top: 0;

    display: block;

    width: 1000px;
    height: 100%;

    content: '';

    background: #000;
}

.case_page .similar_project:before
{
    right: 100%;
}

.case_page .similar_project:after
{
    left: 100%;
}

.case_page .similar_project .link
{
    color: #fff;
    line-height: 53px;

    display: block;

    height: 61px;
    padding: 0 40px;

    transition: .2s linear;
    text-decoration: none;

    border: 4px solid #343434;
}

.case_page .similar_project .link:hover
{
    background: #343434;
}


.case_page .page_menu
{
    position: relative;
    z-index: 999;

    padding: 12px 0 8px;

    background: #171717;
}

.case_page .page_menu:before,
.case_page .page_menu:after
{
    position: absolute;
    top: 0;

    display: block;

    width: 1000px;
    height: 100%;

    content: '';

    background: #171717;
}

.case_page .page_menu:before
{
    right: 100%;
}

.case_page .page_menu:after
{
    left: 100%;
}

.case_page .page_menu a
{
    color: #fff;
    color: #565656;
    font-size: 10px;
    line-height: 23px;

    display: inline-block;

    height: 23px;
    margin-bottom: 10px;
    padding: 0 12px;

    transition: .2s linear;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;

    border-radius: 15px;
}

.case_page .page_menu a:hover,
.case_page .page_menu a.active
{
    color: #fff;

    background: #272727;
}



.case_desc
{
    padding: 45px 0 55px;
}

.case_desc .cont
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.case_desc .col.left
{
    width: calc(50% - 70px);
}

.case_desc .col.right
{
    width: calc(50% + 20px);
}


.case_desc .text_block
{
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
}


.case_desc .case_team .title
{
    color: #000;
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 20px;

    letter-spacing: .075em;
    text-transform: uppercase;
}

.case_desc .case_team .grid
{
    display: flex;

    margin-bottom: -20px;
    margin-left: -50px;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.case_desc .case_team .item
{
    font-size: 12px;
    font-weight: 500;

    display: flex;

    width: calc(50% - 50px);
    margin-bottom: 20px;
    margin-left: 50px;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.case_desc .case_team .foto
{
    overflow: hidden;

    width: 39px;

    border-radius: 50%;
    background: #eaeaea;
}

.case_desc .case_team .foto img
{
    display: block;

    width: 100%;
}

.case_desc .case_team .info
{
    width: calc(100% - 56px);
}

.case_desc .case_team .name
{
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 3px;
}


.case_desc .price
{
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;

    margin-top: 33px;
    padding: 41px;

    text-align: center;
    letter-spacing: .075em;
    text-transform: uppercase;

    background: #e5e5e5;
}

.case_desc .price .val
{
    font-size: 30px;
    line-height: 30px;

    margin-top: 10px;
}



.case_reviews
{
    padding: 90px 0 100px;

    background: #000;
}


.case_reviews .review
{
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.case_reviews .review + .review
{
    margin-top: 38px;
}


.case_reviews .review .foto
{
    width: 289px;
    max-width: 100%;
}

.case_reviews .review .foto a,
.case_reviews .review .foto img
{
    position: relative;

    display: block;

    width: 100%;
}

.case_reviews .review .foto .video_link:before
{
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;

    display: block;

    width: 55px;
    height: 64px;
    margin: -32px 0 0 -27px;

    content: '';

    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 55px solid #fff;
}


.case_reviews .review .info
{
    color: #fff;

    width: calc(100% - 308px);
    padding-top: 10px;
}

.case_reviews .review .box
{
    position: relative;

    padding: 5px 40px 30px;

    border: 3px solid #4c4c4c;
}

.case_reviews .review .box:after
{
  /*  position: absolute;
    top: 100%;
    left: 33px;

    display: block;

    width: 30px;
    height: 22px;

    content: '';

    background: url(../images/bg_review_box.png) 0 0 no-repeat;*/
}

.case_reviews .review .author
{
    font-size: 14px;
    font-weight: 500;

    display: inline-block;

    margin: -20px -25px 0;
    padding: 0 25px;

    vertical-align: top;

    background: #000;
}

.case_reviews .review .author .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}

.case_reviews .review .text
{
    font-size: 16px;
    font-weight: 500;

    margin-top: 25px;
}

.case_reviews .review .bottom
{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;

    position: relative;

    padding-right: 130px;

    text-align: right;
}

.case_reviews .review .bottom a
{
    color: #fff;
}

.case_reviews .review .bottom a:hover
{
    text-decoration: none;
}

.case_reviews .review .cert
{
    position: absolute;
    right: 28px;
    bottom: 0;

    width: 78px;
}

.case_reviews .review .cert img
{
    display: block;

    width: 100%;
}


.case_reviews .all
{
    padding-top: 38px;
}

.case_reviews .all a
{
    color: #000;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;

    display: inline-block;

    padding: 0 42px;

    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;

    background: #fff;
}

.case_reviews .all > * + *
{
    margin-left: 38px;
}



.case_backstage
{
    padding: 65px 0 125px;

    background: #171717;
}

.case_backstage .slide
{
    position: relative;

    display: none;
}

.case_backstage .big .slide:first-child,
.case_backstage .owl-loaded .slide
{
    display: block;
}

.case_backstage .slide a,
.case_backstage .slide img
{
    display: block;

    width: 100%;
}

.case_backstage .thumbs
{
    width: 100%;
    margin: 20px auto 0;
    padding: 0 64px;
}

.case_backstage .slide .info
{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;

    position: absolute;
    top: 0;
    left: 0;

    width: 295px;
    max-width: 100%;
    padding: 35px 40px;
}

.case_backstage .slide .info .name
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 15px;
}

.case_backstage .slide .info .desc > * + *
{
    margin-top: 15px;
}

.case_backstage .slide .info .price
{
    font-weight: 700;
    line-height: 24px;

    margin-top: 25px;
}

.case_backstage .slide .info .price .val
{
    font-size: 30px;
    line-height: 30px;

    text-transform: uppercase;
}



.portfolio_services
{
    padding: 60px 0 60px !important;
}



.error_page
{
    color: #c2c4c4;
    font-size: 18px;
    font-weight: 600;

    position: relative;

    overflow: hidden;

    padding: 220px 0 150px;

    text-align: center;
    letter-spacing: -.025em;
    text-transform: uppercase;

    background: url(../images/bg_error_page.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.error_page:before
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';

    opacity: .92;
    background: #000;
}

.error_page .cont
{
    position: relative;
    z-index: 9;
}

.error_page .code
{
    color: #fff;
    font-size: 160px;
    line-height: 114px;

    margin-bottom: 40px;

    letter-spacing: .05em;
}

.error_page .title
{
    font-size: 30px;

    margin-bottom: 15px;
}

.error_page .link
{
    color: #000;
    font-size: 15px;
    line-height: 61px;

    display: inline-block;

    width: 300px;
    max-width: 100%;
    height: 61px;
    margin-top: 40px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: none;

    background: #fff;
}



.pagination
{
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;

    margin-top: 65px;
}

.pagination > * + *
{
    margin-left: 5px;
}

.pagination a,
.pagination .sep
{
    color: #000;

    position: relative;

    display: inline-block;

    min-width: 18px;
    height: 33px;

    text-align: center;
    vertical-align: top;
    text-decoration: none;
}

.pagination a:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    background: #000;
}

.pagination a.prev
{
    width: 21px;

    background: url(../images/ic_pag_prev.png) 50% 50% no-repeat;
}

.pagination a.next
{
    width: 21px;

    background: url(../images/ic_pag_next.png) 50% 50% no-repeat;
}

.pagination a.prev:after,
.pagination a.next:after
{
    display: none;
}

.pagination a:hover:after,
.pagination a.active:after
{
    opacity: 1;
}



.text_block
{
    font-size: 14px;
    line-height: 24px;

    letter-spacing: -.025em;
}

.text_block .columns
{
            column-count: 2;
    -webkit-column-count: 2;
       -moz-column-count: 2;
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
}

.text_block .columns > *
{
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block h2
{
    color: #000;
    font-size: 14px;
    font-weight: 700;

    margin-bottom: 15px;

    letter-spacing: .075em;
    text-transform: uppercase;
}

.text_block * + h2
{
    margin-top: 40px;
}

.text_block p,
.text_block img,
.text_block iframe,
.text_block ul,
.text_block ol,
.text_block blockquote,
.text_block hr,
.text_block .table_wrap,
.text_block figure
{
    margin-bottom: 24px;
}

.text_block img,
.text_block iframe
{
    display: block;

    max-width: 100%;
    margin: 0 0 24px;
}

.text_block img.left
{
    max-width: 50%;
    margin-right: 40px;
}

.text_block img.right
{
    max-width: 50%;
    margin-left: 40px;
}


.text_block ul li
{
    display: block;

    padding-left: 25px;

    list-style: none;

    background: url(../images/ic_ul_li.png) 3px 5px no-repeat;
}

.text_block ul li + li
{
    margin-top: 10px;
}


.text_block a
{
    color: #000;
}

.text_block a:hover
{
    text-decoration: none;
}


.text_block .table_wrap
{
    overflow: auto;

    max-width: 100%;
    margin: 24px 0;
}

.text_block table
{
    width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
}


.text_block.light
{
    color: #e2e2e2;
}

.text_block.light a
{
    color: #e2e2e2;
}

.text_block.light b,
.text_block.light strong
{
    color: #fff;

    letter-spacing: .075em;
}



.form .line + .line
{
    margin-top: -1px;
}

.form .field
{
    position: relative;
}

.form .input
{
    color: #fff;
    font: 600 15px Montserrat;

    display: block;

    width: 100%;
    height: 61px;
    padding: 0 23px;

    border: 1px solid #fff;
    background: none;
}

.form ::-webkit-input-placeholder
{
    color: #7f7f7f;
}
.form ::-moz-placeholder
{
    color: #7f7f7f;
}
.form :-moz-placeholder
{
    color: #7f7f7f;
}
.form :-ms-input-placeholder
{
    color: #7f7f7f;
}


.form .submit
{
    margin-top: -1px;
}

.form .submit_btn
{
    color: #000;
    font: 600 18px/59px Montserrat;

    display: inline-block;

    width: 100%;
    height: 61px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: 1px solid #fff;
    background: #fff;;
}

.form .submit_btn:hover
{
    color: #fff;

    border-color: #000;
    background: #000;
}


.form .agree
{
    color: #7f7f7f;
    font-size: 12px;

    margin-top: 22px;

    text-align: center;
}

.form .agree a
{
    color: #7f7f7f;
}

.form .agree a:hover
{
    text-decoration: none;
}



/*---------------
   Footer
---------------*/
footer
{
    padding: 78px 0 95px;

    border-bottom: 3px solid #171717;
    background: #000;
}

footer .cont
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}



footer .logo
{
    margin-right: auto;
    margin-bottom: 30px;
}

footer .logo a
{
    color: #fff;
    font-size: 10px;
    line-height: 22px;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

footer .logo a b
{
    font-size: 43px;
    line-height: 39px;

    display: block;
}


footer .socials
{
    display: flex;

    margin-bottom: 30px;
    margin-left: auto !important;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a
{
    display: flex;

    width: 40px;
    height: 40px;

    transition: .2s linear;

    border-radius: 50%;
    background: #5b5b5b;

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

footer .socials a + a
{
    margin-left: 8px;
}

footer .socials a img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}

footer .socials a:hover
{
    background: #fff;
}


footer .grid
{
    display: flex;

    width: 100%;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


footer .menu > * + *
{
    margin-top: 6px;
}

footer .menu a
{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}

footer .menu a:hover
{
    text-decoration: underline;
}


footer .links
{
    margin-left: 100px;
}

footer .links .title
{
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 10px;
}

footer .links li
{
    display: block;

    list-style-type: none;
}

footer .links li a
{
    color: #c2c4c4;
    font-size: 12px;
    line-height: 18px;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
}

footer .links li a:hover
{
    color: #fff;

    text-decoration: underline;
}


footer .contacts
{
    color: #c0c2c2;
    font-size: 12px;
    font-weight: 500;

    margin-left: auto;

    text-align: right;

    align-self: center;
}

footer .contacts > * + *
{
    margin-top: 20px;
}

footer .contacts .metro
{
    display: inline-block;

    padding-left: 22px;

    vertical-align: top;

    background: url(../images/ic_metro.png) 0 50% no-repeat;
}

footer .contacts .phone
{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
}
footer .contacts .phone a {text-decoration:none; color: #fff;}

footer .bottom
{
    color: #494949;
    font-size: 12px;
    line-height: 24px;

    margin-top: 44px;
}

footer .bottom a
{
    color: #494949;

    display: inline-block;

    vertical-align: top;
}

footer .bottom a:hover
{
    text-decoration: none;
}

footer .bottom .cont > * + *
{
    margin-left: 100px;
}

footer .bottom .right
{
    margin-left: auto;
}



/*---------------
   PopUp
---------------*/
.modal
{
    display: none;

    width: 360px;
    max-width: calc(100% - 40px);
    padding: 30px;

    background: #fff;
}

.modal_title
{
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

    margin-bottom: 25px;
}



.modal .form .input
{
    border: 1px solid #000;
color: #000;
}

.modal .form .submit_btn
{
    color: #fff;

    border-color: #000;
    background: #000;
}

.details.black {color: #000 !important; cursor: default; pointer-events: none;}

.case_reviews.light {color: #000; background: #fff}
.case_reviews.light .review .text {color: #000;}
.case_reviews.light .review .author { background: #fff; color: #000;}
.case_reviews.light .all a {background: #000; color: #fff;}
.case_reviews.light .details {color:#000 !important;}
.case_reviews.light .details.black {color:#fff !important;}

.ajax-more {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;
    display: inline-block;
    padding: 0 42px;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: 0;
    background: #000;

	
}


#video_main {
	
	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto; margin: 0;
	max-height: 1100px;
	background: #000;
}

.mail_top {color: #fff; display: block;}
footer .contacts .email a,.contacts_page .managers  .item a,.about_page .content,.about_page .content a {color: #fff;}
.cases .item .images .big {heigth: 400px;}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {display: block;}

.photo .big  .owl-carousel .owl-nav .owl-prev, .case_backstage  .big .owl-carousel .owl-nav .owl-prev {left: 15px;}
.photo .big  .owl-carousel .owl-nav .owl-next,.case_backstage  .big .owl-carousel .owl-nav .owl-next {right: 15px;}
.spoiler-head {margin-bottom: 30px; cursor: pointer;}
.spoiler-body ul { margin-left: 20px; margin-top: 10px;}
.spoiler-body ul li {margin: 5px;}
.spoiler-body p {margin: 5px 0 10px;}
.spoiler-head h1 {text-decoration:underline;}
.spoiler-head h1:hover {text-decoration: none;}
.about_page .content p {margin: 5px 0 10px;}




.cases .owl-carousel .owl-nav .owl-next,
.cases .owl-carousel .owl-nav .owl-prev,
.photo .big .owl-carousel .owl-nav .owl-prev,
.case_backstage .big .owl-carousel .owl-nav .owl-prev,
.photo .big .owl-carousel .owl-nav .owl-next,
.case_backstage .big .owl-carousel .owl-nav .owl-next,
.photo .thumbs .owl-carousel .owl-nav .owl-next,
.photo .thumbs .owl-carousel .owl-nav .owl-prev,
.case_backstage .owl-carousel .owl-nav .owl-prev,
.case_backstage .owl-carousel .owl-nav .owl-next
 {display: none;}

.cases .owl-carousel:hover .owl-nav .owl-next,
.cases .owl-carousel:hover .owl-nav .owl-prev,
.photo .big .owl-carousel:hover .owl-nav .owl-prev,
.case_backstage .big .owl-carousel:hover .owl-nav .owl-prev,
.photo .big .owl-carousel:hover .owl-nav .owl-next,
.case_backstage .big .owl-carousel:hover .owl-nav .owl-next,
.photo .thumbs:hover .owl-carousel .owl-nav .owl-next,
.photo .thumbs:hover .owl-carousel .owl-nav .owl-prev,
.case_backstage .thumbs:hover .owl-carousel .owl-nav .owl-prev,
.case_backstage .thumbs:hover .owl-carousel .owl-nav .owl-next  {display: block;}


.cases .item .images .owl-item.center .slide a {opacity: 0.2;}
.services .item .video {position: absolute;
    top: 0;
    left: 0;
   /* display: none;*/
	width: 100%; height: 100%; }
	.services .item.video.active {display: block; }
.services .item .video video { height: 100%; background: #000;}
	
.services
{
    padding: 420px 0 140px;
}

@media (max-width: 1800px)
{	
.services {padding: 380px 0 140px;}
}

@media (max-width: 1700px)
{	
.services {padding: 300px 0 140px;}
}

@media (max-width: 1600px)
{	
.about_page .image {width: 640px; margin-left: -150px;}
.about_page .image video {width: 640px;}
.services {padding: 240px 0 140px;}
}

@media (max-width: 1500px)
{	
.services {padding: 200px 0 140px;}
}

@media (max-width: 1400px)
{	
.services {padding: 160px 0 140px;}
}

@media (max-width: 1300px)
{	
.about_page .image {width: 540px; margin-left: -30px;}
.about_page .image video {width: 540px;}
.services {padding: 90px 0 140px;}
}

@media (max-width: 1200px)
{	
.services {padding: 60px 0 140px;}
#video_main {display: none;}

}
.jGrowl-notification {display: none !important;}
.slides-total-1 .owl-prev, .slides-total-1 .owl-next {display: none !important;}
.content_page9 .content h2  {    margin: 15px 0 15px;}
.content_page9 .content p {margin-left: 10px;}

.portfolio_wrap .cases {padding-bottom: 0;}
.portfolio_wrap .order_block {margin-top: 70px}

.no_see {display: none;}
.video_link {cursor:pointer;}