/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,300&subset=latin,cyrillic);*/

@font-face {
    font-family: 'Constantia-Italic';
    src: url('../fonts/hinted-subset-Constantia-Italic.eot');
    src: local('Constantia Italic'), local('Constantia-Italic'),
    url('../fonts/hinted-subset-Constantia-Italic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/hinted-subset-Constantia-Italic.woff') format('woff'),
    url('../fonts/hinted-subset-Constantia-Italic.ttf') format('truetype'),
    url('../fonts/hinted-subset-Constantia-Italic.svg#Constantia-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
}




body {
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}

.container-fluid {
    max-width: 1200px;
}

.animated_block {
    opacity: 0;
    transition: opacity 1000ms;
    -webkit-transition: opacity 1000ms;
}

.animated_block.fadeIn {
    opacity: 1;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated_block.zoomIn {
    opacity: 1;
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.wrapper {
    position: relative;
}


.page_content {
    color: #343434;
}




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

    .hide_mobile {
        display: none !important;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .hide_tablet {
        display: none !important;
    }

}

@media only screen and (min-width: 992px) {

    .hide_desktop {
        display: none !important;
    }

}


/*=== Site Header*/


.site_header {
    padding-top: 38px;
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
}


.header_menu {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.header_menu li {
    display: inline-block;
    margin: 0 15px;
    position: relative;
}

.header_menu>li {
    padding-bottom: 20px;
}

.header_menu li,
.header_menu li a {
    font-size: 15px;
    color: #fff;
}


.header_menu li a:not(.parent) {
    position: relative;
    text-decoration: none !important;
}

.header_menu li a:not(.parent):focus,
.header_menu li a:not(.parent):hover {
    text-decoration: none !important;
}


.header_menu li a:not(.parent):before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header_menu li a:not(.parent):hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}




.header_menu>li ul {
    padding: 10px 0;
    margin: 12px 0 0 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    list-style: none;
    position: absolute;
    left: 0;
    top: 17px;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(0,0,0,.4);
    box-shadow: 0 4px 8px rgba(0,0,0,.4);
    /*border: 1px solid #fff;*/
    /*border-top: 0;*/
}

/*.header_menu>li ul li:first-child {
    margin-top: 10px;
}
.header_menu>li ul li:last-child {
    margin-bottom: 10px;
}*/

.header_menu>li:hover ul {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: opacity .3s;
}

/*.header_menu>li:hover {*/
    /*border: 1px solid #fff;*/
    /*border-bottom: 0;*/
/*}*/


.header_menu li ul li {
    white-space: nowrap;
    text-align: left;
    margin: 0;
    padding: 7px 16px 0 16px;
    display: block;
    background: rgba(0,0,0,.75);
}

.header_menu li ul li:first-child {
    padding: 15px 0 0 0;
}

.header_menu li ul li:last-child {
    padding: 7px 0 15px 0;
}

.header_menu li a.parent,
.header_menu li a.parent:focus,
.header_menu li a.parent:hover {
    text-decoration: none;
}

.header_menu li a.parent:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    width: 8px;
    height: 6px;
    background: url(../img/lang_arr.png) no-repeat top left;
}






.header_top {
    /*overflow: hidden;*/
    height: 88px;
    margin-bottom: 50px;
}

.header_menu_lang:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: -14px auto 0 auto;
    width: 25px;
    height: 17px;
    background: url(../img/lang_vintazh.png) no-repeat top center;
}


.header_menu_lang {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    position: relative;
    z-index: 2;
    border: 1px solid #fff;
    width: 70px;
    height: 40px;
    margin-top: 28px;
}

.header_menu_lang ul {
    position: absolute;
    top: 39px;
    left: -1px;
    right: -1px;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #fff;
    border-top: 0;
    display: none;
}

.header_menu_lang ul.clicked {
    display: block;
}

.header_menu_lang,
.header_menu_lang a {
    color: #fff;
    text-decoration: none;
}

.header_menu_lang a {
    padding-left: 15px;
}

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

.header_menu_lang>li,
.header_menu_lang>li>a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 38px;
}

.header_menu_lang>li>a {
    padding-left: 15px;
    position: relative;
}

.header_menu_lang>li>a:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 6px;
    margin-left: 12px;
    background: url(../img/lang_arr.png) no-repeat top left;

}

.header_menu_lang li ul li {
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.header_menu_lang li ul li:last-child {
    border-bottom: 0;
}

.header_menu_lang li ul li:hover {
    background: rgba(255,255,255,.2);
}

.header_menu_lang li ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.header_contacts {
    float: right;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    text-align: right;
}

.header_contacts span,
.header_contacts a {
    line-height: 1;
    display: block;
    text-decoration: none;
    color: #fff;
}

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

.header_contacts a {
    position: relative;
    text-decoration: none !important;
    display: inline-block;
    vertical-align: top;
}

.header_contacts a:focus,
.header_contacts a:hover {
    text-decoration: none !important;
}


.header_contacts a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header_contacts a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.header_phone {
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 10px;
}

.header_email {
    font-size: 13px;
}

.header_logo {
    position: absolute;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.header_logo img {
    width: 100%;
    height: auto;
}

@media only screen and (min-device-width : 768px) and (max-device-width: 1024px) and (orientation:portrait) {
    .project .col-lg-9.col-md-8.col-sm-8.col-right {
        width: auto;
        float: none;
    }

    .project .col-lg-3.col-md-4.col-sm-4.col-left {
        width: auto;
        float: none;
    }

    .project .project_detail_img_block.progect_img_vertical {
        height: auto;
/*        height: 100vh;
        height: calc(100vh - 102px);*/
    }

    .project .project_img {
        height: auto;
    }

    .project .project_detail_img_block.progect_img_vertical .project_img img {
        max-height: 100vh;
        max-height: calc(100vh - 102px);
        height:auto;
        width: auto;
        max-width: 100%;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width: 1024px) and (orientation:landscape) {
    .project .col-lg-9.col-md-8.col-sm-8.col-right {
        width: auto;
        float: none;
    }

    .project .col-lg-3.col-md-4.col-sm-4.col-left {
        width: auto;
        float: none;
    }

    .project .project_detail_img_block.progect_img_vertical {
        height: auto;
    }

    .project .project_img {
        height: auto;
    }

    .project .project_detail_img_block.progect_img_vertical .project_img img {
        max-height: 100vh;
        max-height: calc(100vh - 102px);
        height:auto;
        width: auto;
        max-width: 100%;
    }


    .project .project_detail_img_block.progect_img_horizontal {
        height: auto;
    }

    .project .project_detail_img_block.progect_img_horizontal .project_img img {
        max-height: 100vh;
        max-height: calc(100vh - 102px);
        height:auto;
        width: auto;
        max-width: 100%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .header_phone {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .header_logo {
        max-width: 340px;
        padding-top: 0;
    }



}

.header_menu_mobile select {
    border: 1px solid #fff;
    background: transparent;
    outline: 0;
    width: 100%;
    max-width: 290px;
    height: 40px;
    padding: 0 15px;
}

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


    .header_logo {
        max-width: 231px;
        padding-top: 0;
        position: static;
        float: left;
    }

    .header_menu_lang {
        float: right;
        margin-top: 0;
    }

    .header_contacts {
        padding-top: 0;
        margin-bottom: 7px;
    }

}


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

    .header_menu_mobile {
        text-align: center;
    }

    .header_contacts {
        padding-top: 20px;
        text-align: center;
    }

    .header_contacts select,
    .header_contacts {
        display: block;
        float: none;
    }

    .header_logo {
        margin-top: -15px;
    }

}

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


    .header_logo {
        margin-top: -8px;
        width: 200px;
    }

    .header_top {
        margin-bottom: 0;
    }
}


@media only screen and (max-width: 559px) and (min-width: 360px) {


    .header_top {
        margin-bottom: 30px;
    }
}










.fp_section {
    background-color: #000;
    height: 100vh;
}

.fp_main_slider,
.fp_main_slider_item,
.fp_main_slider .owl-stage-outer,
.fp_main_slider .owl-stage,
.fp_main_slider .owl-item {
    /*max-height: 800px;*/
    height: 100%;
}

.fp_main_slider_item {
    background-color: #000;
    position: relative;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}



.fp_main_slider_item:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 10;
    opacity: 0;
    transition: opacity 1s .5s;
}

.active_item .fp_main_slider_item:after {
    opacity: 1;
}
.fp_main_slider_caption {
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
    width: 100%;
    /*height: 100%;*/
    position: absolute;
    z-index: 40;
    top: 51%;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
    opacity: 0;
    /*padding: 29% 35px 30px 35px;*/
    transition: opacity 1s 1.2s;
}

.active_item .fp_main_slider_caption {
    opacity: 1;
}


.main_bg {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 16s cubic-bezier(0.215, 0.61, 0.355, 1) .1s;
}

.active_item .main_bg {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}

.fp_msc_container {
    margin-top: 35px;
    transition: margin-top 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s;
}

.active_item .fp_msc_container {
    margin-top: 0;
}

.constantia {
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
}


.slide_img {
    display: none;
}

@media only screen and (min-width: 1280px) {

    .fp_main_slider_caption {
        /*padding: 400px 0 30px 0;*/
        /*padding: 43% 0 30px 0;*/
    }

    .fp_msc_container {
        padding: 0 30px;
    }

}


@media only screen and (max-width: 767px) and (min-width: 560px) {

    .fp_main_slider_caption {
        /*padding: 380px 35px 150px 35px;*/
        /*padding: 43% 35px 150px 35px;*/
        position: relative;
    }

    .slide_img {
        display: none;
    }

    .fp_main_slider, .fp_main_slider_item {
        max-height: none !important;
    }

}

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

    .fp_main_slider_caption {
        /*padding: 380px 35px 150px 35px;*/
        /*padding: 43% 35px 150px 35px;*/
        position: relative;
    }

    .slide_img {
        display: none;
    }

    .fp_main_slider, .fp_main_slider_item {
        max-height: none !important;
    }

}



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

    .fp_main_slider_item {
        background: #000;
    }

    /*.fp_main_slider_item img {*/
        /*opacity: 1;*/
        /*visibility: visible;*/
    /*}*/

}

@media only screen and (min-width: 1280px) {

    .fp_main_slider_item img {
        opacity: 0;
        visibility: hidden;
    }

    .fp_msc_container {
        border: 1px solid rgba(255,255,255,.3);
        position: relative;
    }

    /*.fp_msc_container:after {*/
        /*content: '';*/
        /*display: block;*/
        /*width: 70%;*/
        /*height: 1px;*/
        /*border-top: 1px solid rgba(255,255,255,.3);*/
        /*position: relative;*/
    /*}*/

}



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

    .fp_main_slider,
    .fp_main_slider_item {
        max-height: 560px;
    }

    .fp_main_slider_caption {
        /*padding: 380px 35px 150px 35px;*/
        /*padding: 43% 35px 150px 35px;*/
        position: relative;
    }



}








.fp_main_slider .owl-controls {
    height: 0;
    /*position: relative;*/
}


.fp_main_slider .owl-dots {
    position: relative;
    bottom: 55px;
    text-align: center;
}

.fp_main_slider .owl-nav {
    height: 0;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: .5;
}

.owl-dots .owl-dot.active {
    background: #fff;
    opacity: 1;
}


.fp_main_slider .owl-nav .owl-prev,
.fp_main_slider .owl-nav .owl-next {
    position: absolute;
    z-index: 41;
    top: 56%;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 1000%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
    cursor: pointer;
    transition: opacity .3s;
}

.fp_main_slider .owl-nav .owl-prev {
    background: url(../img/fp_slider_arr_left.png) no-repeat top left;
    left: 20px;
}

.fp_main_slider .owl-nav .owl-next {
    background: url(../img/fp_slider_arr_right.png) no-repeat top left;
    right: 20px;
}


.fp_main_slider .owl-nav .owl-prev:hover,
.fp_main_slider .owl-nav .owl-next:hover {
    opacity: .5;
}

@media only screen and (min-width: 1280px) {

    .fp_main_slider .owl-nav .owl-prev {
        left: 50%;
        margin-left: -560px;
    }


    .fp_main_slider .owl-nav .owl-next {
        margin-right: -560px;
        right: 50%;
    }

    .fp_main_slider .owl-nav .owl-prev, .fp_main_slider .owl-nav .owl-next {
        top: 56%;
    }

}


@media only screen and (min-width: 560px) and (max-width: 767px) {


    /*.fp_main_slider .owl-nav .owl-prev,*/
    /*.fp_main_slider .owl-nav .owl-next {*/
        /*top: 67%;*/
    /*}*/

    .fp_main_slider_caption {
        /*padding: 380px 50px 150px 50px;*/
        /*padding: 43% 50px 150px 50px;*/
    }

}


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


    .fp_main_slider_caption {
        padding-left: 45px;
        padding-right: 45px;
        /*padding: 380px 50px 150px 50px;*/
        /*padding: 43% 50px 150px 50px;*/
    }

    /*.fp_main_slider .owl-nav .owl-prev,*/
    /*.fp_main_slider .owl-nav .owl-next {*/
        /*top: 67%;*/
    /*}*/


}



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


    .fp_main_slider_caption {
        top: 50%;
        font-size: 18px;
    }


}






.footer_top {
    background-color: #222020;
    padding: 50px 0 90px 0;
}


.footer_bottom {
    background-color: #272525;
    padding: 20px 0;
    color: #919191;
}

.footer_creator {
    max-width: 99px;
    font-size: 11px;
    color: #919191;
    padding-top: 11px;
}

.footer_creator span{
    margin-bottom: 3px;
    display: block;
}


.footer_creator img {
    width: 100%;
    height: auto;
}


.footer_site_rules {
    font-size: 11px;
    color: #919191;
    max-width: 670px;
    line-height: 1.4;
}



.footer_cpyright {
    font-size: 11px;
    text-transform: uppercase;
    text-align: right;
    padding-top: 11px;
}

.footer_cpyright span {
    display: block;
}




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


}


.footer_top,
.footer_top span,
.footer_top a,
.footer_top p {
    color: #919191;
    font-size: 13px;
    line-height: 1.4;
}

.social_links .social_link {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 23px;
    text-align: center;
    position: relative;
}


.social_links .social_link:before,
.social_links .social_link:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/social.png);
    background-repeat: no-repeat;
    transition: opacity .3s;
}

.social_links .social_link:before {
    opacity: 1;
}

.social_links .social_link:after {
    opacity: 0;
}

.social_links .social_link:hover:before {
    opacity: 0;
}

.social_links .social_link:hover:after {
    opacity: 1;
}

.social_links .social_link.insta:before {
    background-position: 0 0;
}

.social_links .social_link.fb:before {
    background-position: -24px 0;
}

.social_links .social_link.yt:before {
    background-position: -48px 0;
}

.social_links .social_link.insta:after {
    background-position: 0 -23px;
}

.social_links .social_link.fb:after {
    background-position: -24px -23px;
}

.social_links .social_link.yt:after {
    background-position: -48px -23px;
}





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

.footer_menu .footer_submenu>li>span {
    display: block;
    margin-bottom: 25px;
    font-size: 20px;
    color: #fff;
}


.footer_menu li li{
    margin-bottom: 8px;
}




.footer_menu li a {
    position: relative;
    text-decoration: none !important;
}

.footer_menu li a:focus,
.footer_menu li a:hover {
    text-decoration: none !important;
}


.footer_menu li a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #919191;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.footer_menu li a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}




.footer_contacts {
    margin-bottom: 35px;
}

.footer_contacts,
.footer_adress,
.social_links {
    text-align: right;
}

.footer_contacts span,
.footer_contacts a {
    display: block;
}


.footer_contacts a {
    display: inline-block;
    vertical-align: top;
    position: relative;
    text-decoration: none !important;
}

.footer_contacts a:focus,
.footer_contacts a:hover {
    text-decoration: none !important;
}


.footer_contacts a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #919191;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.footer_contacts a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}


span.footer_phone {
    font-size: 25px;
}

.footer_email {
    font-size: 13px;
}


.footer_adress {
    line-height: 1.7;
    margin-bottom: 35px;
}

.footer_menu_mobile {
    border: 1px solid #fff;
    background: transparent;
    outline: 0;
    width: 100%;
    max-width: 290px;
    height: 40px;
    padding: 0 15px;
    max-width: 450px;
}

@media only screen and (max-width: 767px) {
    .footer_top,
    .footer_contacts,
    .footer_adress,
    .social_links {
        text-align: center !important;
    }

    .footer_top {
        padding: 45px 0;
    }

    .footer_menu_mobile {
        margin-bottom: 70px;
    }
}


.pl_20 {
    padding-left: 20px !important;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}









.site_header.page_header .header_top {
    margin-bottom: 0;
    height: auto;
}


.site_header.page_header {
    position: relative;
    background-color: #222020;
    padding-top: 22px;
    padding-bottom: 20px;
    z-index: 950;
}



.site_header.page_header .header_logo {
    position: relative;
    max-width: 232px;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    float: left;
    z-index: 10;
}



.site_header.page_header .header_menu_lang {
    margin: 10px 0 0 0;
    padding: 0;
    float: right;
    list-style: none;
    position: relative;
    border: 1px solid #fff;
    width: 70px;
    height: 33px;
    z-index: 10;
}


.site_header.page_header .header_menu {
    padding-top: 20px;
    position: absolute;
    z-index: 3000;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 240px;
    margin-right: 90px;
}

.site_header.page_header .header_menu_lang ul {
    top: 32px;
    background-color: #222020;
}

.site_header.page_header .header_menu ul li {
    /*margin-top: 10px;*/
    padding: 5px 15px;
    margin: 0;
    background: #fff;
}

.site_header.page_header .header_menu_lang>li,
.site_header.page_header .header_menu_lang>li>a {
    line-height: 31px;
}

.site_header.page_header .header_menu ul li:first-child {
    padding-top: 10px;
}

.site_header.page_header .header_menu ul li:last-child {
    padding-bottom: 10px;
}

.site_header.page_header .header_menu ul li,
.site_header.page_header .header_menu ul li a {
    color: #343434;
}

@media only screen and (min-width: 1200px) {
    .site_header.page_header .header_menu>li:hover ul {
        /*padding: 10px 0;*/
    }

    .site_header.page_header .header_menu ul li {
        /*margin-top: 10px;*/
        padding: 5px 15px;
        margin: 0;
        background: #fff;
    }

    .site_header.page_header .header_menu ul li,
    .site_header.page_header .header_menu ul li a {
        color: #343434;
    }

    .header_menu li ul li a:not(.parent):before {
    background-color: #343434;
}

}





@media only screen and (min-width: 992px) and (max-width: 1100px) {
    .site_header.page_header .header_menu {
        margin-left: 268px;
    }
    .site_header.page_header .header_menu li {
        margin: 0 6px;
    }

    .site_header.page_header .header_menu li,
    .site_header.page_header .header_menu li a {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1170px) {
    .site_header.page_header .header_menu {
        margin-left: 268px;
    }
    .site_header.page_header .header_menu li {
        margin: 0 9px;
    }
    .header_menu li,
    .header_menu li a {
        font-size: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .site_header.page_header .header_menu_mobile {
        float: left;
        padding-top: 10px;
        margin-left: 12%;
        width: 290px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 840px) {

    .header_menu li {
        margin: 0 10px;
    }

}

@media only screen and (max-width: 767px) {
    .site_header.page_header .header_menu_mobile {
        float: none;
        padding-top: 10px;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
    }

    .site_header.page_header .header_menu_mobile select {
        max-width: 450px;
        margin-top: 25px;
    }

    .site_header.page_header {
        padding-bottom: 25px;
    }

}

















.page_cover {
    height: 235px;
    padding: 68px 0 44px 0;
    text-align: center;
}

.page_head {
    position: relative;
    max-width: 430px;
    text-align: center;
    margin: 0 auto;
    padding: 32px 20px;
    border: 1px solid rgba(255,255,255,.7);
    /*border-bottom: 1px solid rgba(255,255,255,.7);*/
}


.page_head:before {
    content: '';
    position: absolute;
    display: block;
    top: -22px;
    left: 50%;
    margin-left: -33px;
    width: 67px;
    height: 30px;
    background: url(../img/cover_vintazh.png) no-repeat top center;
}


.breadcrumbs {
    font-size: 13px;
    margin-bottom: 7px;
}

.breadcrumbs a,
.breadcrumbs a:focus {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: none;
}

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


.breadcrumbs a span {
    position: relative;
    text-decoration: none !important;
}

.breadcrumbs a:focus span,
.breadcrumbs a:hover span {
    text-decoration: none !important;
}


.breadcrumbs a span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.breadcrumbs a span:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}




.page_head h1 {
    max-width: 430px;
    text-align: center;
    font-size: 25px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}





.page_cover {
    font-family: 'PT Sans', 'Open Sans', sans-serif;
}

.page_content {
    padding: 90px 0 80px 0;
    font-family: 'PT Sans', 'Open Sans', sans-serif;
    background: #f3f0e9;
}




.services .page_cover {
    background: #121212 url(../img/services/page_cover.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.services_item {
    margin-bottom: 70px;
}

.services_item_img {
    overflow: hidden;
    width: 100%;
}

.services_item_img img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.services_item:hover .services_item_img img {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}

.services_item_caption {
    color: #343434;
    font-size: 15px;
    font-weight: 700;
    padding-top: 12px;
    line-height: 1.3;
    height: 50px;
    overflow: hidden;
}


.services_item_caption a,
.services_item_caption a:focus {
    color: #343434;
    text-decoration: none;
}

.services_item_caption a:hover {
    color: #343434;
    text-decoration: underline;
}


.services_item_caption a {
    position: relative;
    text-decoration: none !important;
}

.services_item_caption a:focus,
.services_item_caption a:hover {
    text-decoration: none !important;
}


.services_item_caption a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.services_item_caption a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}




.services_item.blank,
.services_item.blank .services_item_img {
    text-align: center;
    position: relative;
}

.services_item.blank .services_item_caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5%;
    height: auto;
    margin-top: 5%;
}

.services_item.blank .services_item_caption p {
    font-size: 18px;
    color: #343434;
    font-weight: normal;
    margin: 0 5px 0 0;
}

.services_item.blank .services_item_caption p + p{
    font-size: 13px;
}

.services_item.blank .services_item_caption a,
.services_item.blank .services_item_caption a:focus {
    display: block;
    margin: 0 auto;
    /*border: 1px solid #c2c2c2;*/
    width: 120px;
    padding: 12px;
    text-align: center;
    /*text-decoration: none;*/
    /*color: #343434;*/
    font-size: 13px;
    /*transition: background .3s;*/
    margin-top: 10%;
}


.services_item.blank .services_item_caption a.btn_wg,
.services_item.blank .services_item_caption a.btn_wg:focus,
.services_item.blank .services_item_caption a.btn_wg:hover {
    font-weight: normal;
    text-decoration: none;
}

.services_item.blank .services_item_caption a.btn_wg:hover {
    color: #343434;
}

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

    .page_cover {
        padding-left: 15px;
        padding-right: 15px;
        height: auto;
    }
}




@media only screen and (max-width: 767px) and (min-width: 481px) {


    .page_content {
        padding: 60px 0;
    }


    .services_item {
        margin-bottom: 15px;
    }

    .services_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

    .services_item.blank .services_item_caption p {
        font-size: 15px;
    }

}

@media only screen and (max-width: 767px) and (min-width: 560px) {

    .services_item_caption {
        font-size: 15px;
        padding-top: 8px;
    }

    .services_item.blank .services_item_caption p {
        font-size: 18px;
    }

}

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


    .page_content {
        padding: 45px 0;
    }

    .services_list .col-xs-6 {
        width: 100%;
        float: none;
    }

    .services_item {
        margin-bottom: 15px;
    }

    .services_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}




/*catalog*/

.catalog .page_cover {
    background: url(../img/about/page_cover.jpg) center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 45px;
    padding-bottom: 45px;
}

.catalog .page_cover .page_head {
    max-width: 600px;
    text-align: center;
    padding: 32px 20px 10px 20px;
}

.catalog .page_cover .page_head h1 {
    text-align: center;
    margin: 0 auto 20px auto;
}

.catalog .page_cover .page_head p {
    line-height: 1.7;
}

.catalog .page_cover .page_head a {
    color:#ffffff;
	text-decoration: none;
}

.catalog_item{
	min-width:300px;
	max-width:400px;
	margin: 0 auto;
}
.catalog_item img{
	width:100%;
	height:475px;
}

.catalog_item .catalog_item_caption span,
.catalog_item .catalog_item_footer span
{
	width:100%;
	display:inline-block;
}
.catalog_item .catalog_item_caption .description{
	font-size: 14px;
	font-weight: 500;
	/*height:65px;*/
	line-height: 1.2;
	overflow: hidden;
}

.catalog_item .catalog_item_caption .name,
.catalog_item .catalog_item_footer .price
{
	font-size: 1.6em;
	font-weight:bold;
}
.catalog_item .catalog_item_caption .name{
	margin-top: 0.67em;
}
.catalog_item .catalog_item_footer .price{
	text-align:right;
}
.catalog_item .catalog_item_buttom_block{
	margin:15px 0;
}
.catalog_item .catalog_item_buttom_block a{
	width:49%;
	min-width:90px;
}
.catalog_item .catalog_item_buttom_block a:last-child{
	float:right;
}
.catalog_item .catalog_item_footer .price_description{
	font-size:14px;
	text-align:center;
}

.fp_book_modal .modal-dialog{
	height: 100%;
	width: 100%;
	margin:0;
}
.fp_book_modal .modal-content{
	height: 90%;
	width: 90%;
	margin: 30px auto;
}
.fp_book_modal .modal-header{
	height:56px;
}
.fp_book_modal .modal-body{
	height:calc(100% - 56px);
}
.fp_book_modal .modal-body iframe{
	height:100%;
	width:100%;
}
.catalog_text{
	font-size:14px;
}

.buyBookModal .result{
	display:none;
	color:green;
}

.buyBookModal .modal-dialog{
	max-width:450px;
}
.buyBookModal.modal {
  z-index:99999;
}
.buyBookModal.modal .modal-body{
	text-align:center;
}
.buyBookModal.modal .modal-text{
	margin-bottom:10px;
}
.buyBookModal.modal .result .text{
	margin-bottom:25px;
}
.buyBookModal.modal .ADRES{
	display:none;
}

.buyBookModal.modal .order_props ul{
	padding: 0;
	list-style-type: none;
	display: inline-block;
}

.buyBookModal.modal .order_props ul a{
	text-decoration:none;
	color: #343434;
}
.buyBookModal.modal .order_props ul a input{
	margin-right:5px;
}

.buyBookModal input[name="NUM"]{
	text-align:center;
}



@media only screen and (max-width: 767px) {
	.catalog_item .catalog_item_footer .price
	{
		font-size: 18px;
		font-weight:bold;
	}
	.catalog_item .catalog_item_footer .price_description{
		font-size:13px;
	}
	.catalog_item_block{
		margin-bottom:20px;
	}
	.catalog_item_block:last-child{
		margin-bottom:0;
	}
}


/*portfolio*/

.obj_type {

}

a.obj_name,
a.obj_name:focus {
    color: #343434;
    text-decoration: none;
}

a.obj_name:hover {
    color: #343434;
    text-decoration: underline;
}



/*a.obj_name {
    position: relative;
    text-decoration: none !important;
}

a.obj_name:focus,
a.obj_name:hover {
    text-decoration: none !important;
}


a.obj_name:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a.obj_name:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}*/


.portfolio .page_cover {
    background: #121212 url(../img/services/page_cover.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.portfolio_item {
    margin-bottom: 50px;
}

.portfolio_item_img {
    overflow: hidden;
    width: 100%;
}

.portfolio_item_img img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.portfolio_item:hover .portfolio_item_img img {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}


.portfolio_item_caption {
    color: #343434;
    font-size: 15px;
    font-weight: 700;
    padding-top: 12px;
    line-height: 1.3;
    height: 86px;
    overflow: hidden;
}


.portfolio_item.blank,
.portfolio_item.blank .portfolio_item_img {
    text-align: center;
    position: relative;
}

.portfolio_item.blank .portfolio_item_caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5%;
    height: auto;
    margin-top: 5%;
}

.portfolio_item.blank .portfolio_item_caption p {
    font-size: 18px;
    color: #343434;
    font-weight: normal;
    margin: 0 5px 0 0;
}

.portfolio_item.blank .portfolio_item_caption p + p{
    font-size: 13px;
}

.portfolio_item.blank .portfolio_item_caption a,
.portfolio_item.blank .portfolio_item_caption a:focus {
    display: block;
    margin: 0 auto;
    border: 1px solid #c2c2c2;
    width: 120px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #343434;
    font-size: 13px;
    transition: background .3s;
    margin-top: 10%;
}

.portfolio_item.blank .portfolio_item_caption a:hover {
    background: #c2c2c2;
}

.obj_type {
    font-size: 13px;
    color: #9e9e9e;
    font-weight: normal;
    display: block;
    margin-bottom: 3px;
}




@media only screen and (max-width: 767px) and (min-width: 481px) {




    .portfolio_item {
        margin-bottom: 15px;
    }

    .portfolio_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

    .portfolio_item.blank .portfolio_item_caption p {
        font-size: 15px;
    }

}

@media only screen and (max-width: 767px) and (min-width: 560px) {

    .portfolio_item_caption {
        font-size: 15px;
        padding-top: 8px;
    }

    .portfolio_item.blank .portfolio_item_caption p {
        font-size: 18px;
    }

}

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


    .portfolio_list .col-xs-6 {
        width: 100%;
        float: none;
    }

    .portfolio_item {
        margin-bottom: 15px;
    }

    .portfolio_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}


.btn_container {
    text-align: center;
}


.btn_wg,
.btn_wg:focus {
    display: inline-block;
    position: relative;
    outline: 0;
    box-shadow: none;
    margin: 0 auto;
    border: 1px solid #b9b7b2;
    /*width: 120px;*/
    text-align: center;
    text-decoration: none;
    color: #343434;
    font-size: 13px;
    /*margin-top: 10%;*/
    padding: 15px 23px;
    background: transparent;
    transition: color .3s, border .3s;
}

.btn_wg.btn_black{
	color: #fff;
	background: #000;
}

.btn_wg.vintazh.btn_black:before {
    background: url(../img/vintazh.png) no-repeat top center;
    background-position: center -18px;
}

.btn_wg.vintazh.btn_black:hover:before{
    background-position: center 0px;
}

.btn_wg.vintazh.btn_black:hover:after{
    background-position: center 0px;
}

.btn_wg:hover {
    border: 1px solid #343434;
    text-decoration: none;
    color: #343434;
}

.btn_wg.btn_black:hover{
	border:1px solid #fff;
    color: #fff;
}

.btn_wg.vintazh:before {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 17px;
    top: 0;
    left: 0;
    right: 0;
    margin: -10px auto 0 auto;
    background: url(../img/vintazh.png) no-repeat top center;
    opacity: 1;
    transition: opacity .3s;
}

.btn_wg.vintazh:after {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 17px;
    top: 0;
    left: 0;
    right: 0;
    margin: -10px auto 0 auto;
    background: url(../img/vintazh.png) no-repeat top center;
    opacity: 0;
    transition: opacity .3s;
}

.btn_wg.vintazh:hover:before{
    background-position: center -18px;
    opacity: 0;
}


.btn_wg.vintazh:hover:after {
    background-position: center -18px;
    opacity: 1;
}

.projects_filter_block {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    margin-bottom: 55px;
    padding-bottom: 8px;
}

.projects_filter {
    width: 200px;
    position: relative;
    text-align: center;
    float: left;
    /*overflow: hidden;*/
    margin-right: -8px;
}


.projects_filter + .projects_filter {
    float: right;
}

.projects_filter a,
.projects_filter a:hover,
.projects_filter a:focus {
    text-decoration: none;
}
.projects_filter a {
    position: relative;
    font-size: 13px;
    color: #a8a8a8;
    display: block;
    width: 96px;
    margin-right: 8px;
    float: left;
    border-bottom: 1px solid #a8a8a8;
    transition: color .3s, border .2s;
    padding-bottom: 22px;
}

.projects_filter a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100px;
    height: 17px;
    background: url(../img/filter_vintazh.png) no-repeat top center;
    margin: 0 auto -8px auto;
    opacity: 0;
    transition: opacity .3s;
}

.projects_filter a + a {
    margin-right: 0;
}

.projects_filter a:hover,
.projects_filter a.active {
    color: #343434;
    border-bottom: 1px solid transparent;
}

.projects_filter a:hover:after,
.projects_filter a.active:after {
    color: #343434;
    opacity: 1;
}

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

    .projects_filter_block {
        margin-bottom: 20px;
    }


    .projects_filter {
        width: 200px;
        margin: 0 auto 25px auto;
        float: none !important;
        overflow: hidden;
        padding-bottom: 8px;
        display: block;
    }

}






/*=== acquisition_of_real_estate */

.acquisition .page_cover {
    background: #121212 url(../img/acquisition/page_cover.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.acquisition .page_cover .page_head,
.acquisition .page_cover .page_head h1 {
    max-width: 560px;
}

.products_item {
    padding: 0 15px;
}

.products_item_img {
    width: 100%;
    overflow: hidden;
}
.products_item_img img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.products_item:hover .products_item_img img {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}

.products_item_caption {
    color: #343434;
    font-size: 15px;
    font-weight: 700;
    padding-top: 12px;
    line-height: 1.3;
    height: 50px;
    overflow: hidden;
}

.products_item_caption a,
.products_item_caption a:focus {
    color: #343434;
    text-decoration: none;
}

/*.products_item:hover .products_item_caption a,*/
.products_item .products_item_caption a:hover{
    color: #343434;
    text-decoration: underline;
}


.products_item_caption a {
    position: relative;
    text-decoration: none !important;
}

.products_item_caption a:focus,
.products_item_caption a:hover {
    text-decoration: none !important;
}


.products_item_caption a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.products_item_caption a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}




.products_list .owl-controls,
.products_list .owl-nav {
    height: 0;
}


.products_list.owl-carousel .owl-controls .owl-nav .owl-prev,
.products_list.owl-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    z-index: 10;
    top: 33%;
    /*white-space: nowrap;*/
    /*text-indent: 1000%;*/
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #343434;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    opacity: 1;
    transition: opacity .3s;
}

.products_list.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -5px;
}

.products_list.owl-carousel .owl-controls .owl-nav .owl-next {
    right: -5px;
}


.products_list.owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.products_list.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    opacity: .75;
}



.page_block_title {
    font-size: 25px;
    color: #343434;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: normal;
    margin-bottom: 40px;
}



.page_content_main {
    margin-bottom: 90px;
    color: #343434;
    font-size: 13px;
    line-height: 1.8;
}

.page_content_main h2 {
    font-size: 25px;
    line-height: 1.4;
    margin: 0 0 1em 0;
}

.article_img img {
    width: 100%;
    height: auto;
}

.article_img,
.article_text {
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) and (min-width: 481px) {




    .products_item {
        margin-bottom: 15px;
    }

    .products_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}

@media only screen and (max-width: 767px) and (min-width: 560px) {

    .products_item_caption {
        font-size: 15px;
        padding-top: 8px;
    }

}

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


    .products_list .col-xs-6 {
        width: 100%;
        float: none;
    }

    .products_item {
        margin-bottom: 15px;
    }

    .products_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}

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


    .acquisition .page_head {
        padding: 22px 20px;
    }

}

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


    .acquisition .page_content_main {
        margin-bottom: 20px;
    }

}




.main_bg {
    /*width: 100%;*/
    /*height: 100%;*/
    position: absolute;
    z-index: 2;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: -200px;
}

.main_bg_img {
    background-color: #000;
    position: relative;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}


.main_bg_img {
    position: absolute;
    z-index: 4;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    /*background: #000 url(../img/stages/stage_1.jpg) no-repeat center top;*/
    -webkit-background-size: cover;
    background-size: cover;
}
















/*=== Blog */

.blog {

}

.blog .page_cover {
    background: #121212 url(../img/blog/page_cover.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.blog_list {

}

.blog_item {
    margin-bottom: 100px;
}

.blog_item_img img {
    width: 100%;
    height: auto;
}


.blog_item h2 {
    font-size: 25px;
    color: #3e94c6;
    font-weight: normal;
    margin: 30px 0 10px 0;
    line-height: 1.4;
}

.blog_item h2 a,
.blog_item h2 a:focus {
    color: #3e94c6;
    text-decoration: none;
}

.blog_item h2:hover a {
    text-decoration: underline;
    color: #3e94c6;
}


/*.blog_item h2 a {
    position: relative;
    text-decoration: none !important;
}

.blog_item h2 a:focus,
.blog_item h2 a:hover,
.blog_item h2:hover a {
    text-decoration: none !important;
}


.blog_item h2 a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #3e94c6;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.blog_item h2:hover a:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}*/




.blog_item_text {
    color: #343434;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog_item_text p {
    margin: 0.8em 0;
}


.blog_item_footer,
.blog_item_footer .share {
    overflow: hidden;
}

.blog_item_footer .share {
    float: left;
}

.blog_item_footer .share a {
    display: inline-block;
    margin-right: 8px;
    opacity: 1;
    transition: opacity .3s;
}

.blog_item_footer .share a:hover {
    opacity: .65;
}

.blog_item_footer .meta {
    float: right;
    font-size: 13px;
    color: #343434;
}

.blog_item_footer .meta .article_cat,
.blog_item_footer .meta .article_cat:focus {
    margin-right: 25px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    color: #343434;
}

.blog_item_footer .meta .article_cat:hover {
    text-decoration: underline;
}


/*.blog_item_footer .meta .article_cat {
    position: relative;
    text-decoration: none !important;
}

.blog_item_footer .meta .article_cat:focus,
.blog_item_footer .meta .article_cat:hover {
    text-decoration: none !important;
}


.blog_item_footer .meta .article_cat:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.blog_item_footer .meta .article_cat:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}*/




.blog_item_footer .meta .article_views_count {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-family: 'Open Sans', 'PT Sans', sans-serif;
    position: relative;
    padding-left: 30px;
}

.blog_item_footer .meta .article_views_count:before {
    content: '';
    left: 0;
    top: 3px;
    position: absolute;
    background: url(../img/view_count.png) no-repeat top center;
    width: 20px;
    height: 14px;
}

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

    .blog_list .blog_item_footer .share,
    .blog_detail .blog_item_footer .share {
        float: none;
        text-align: center;
        margin-bottom: 10px;
    }

    .blog_list .blog_item_footer .share a,
    .blog_detail .blog_item_footer .share a {
        margin-bottom: 10px;
    }

    .blog_list .blog_item_footer .meta {
        float: none;
        text-align: center;
    }

    .blog_list .blog_item {
        margin-bottom: 45px;
    }

}








.aside_block {

}


.aside_block h3 {
    font-size: 25px;
    color: #343434;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 25px;
}





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


.projects_categories_list li {
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 0;
}

.projects_categories_list li a,
.projects_categories_list li a:focus {
    display: block;
    color: #343434;
    text-decoration: none;
    position: relative;
}


.projects_categories_list li a:hover {
    text-decoration: none;
}

.projects_categories_list li a span {
    display: block;
}

.projects_categories_list li a .project_category {
    padding-right: 35px;
}

.projects_categories_list li .project_category:hover,
.projects_categories_list li .project_count:hover {
    text-decoration: underline;
}



.projects_categories_list li a .project_count {
    position: absolute;
    right: 0;
    top: 0;
}




.popular_posts_list {
    padding: 0;
    margin: 0;
    overflow: hidden;
    list-style: none;
}

.popular_posts_item {
    overflow: hidden;
    margin-bottom: 35px;
}


.ppi_img {
    width: 70px;
    height: 70px;
    float: left;
}


.ppi_img img {
    width: 100%;
    height: auto;
}

.ppi_text {
    margin-left: 85px;
}


.ppi_text .ppi_name,
.ppi_text .ppi_name:focus {
    display: block;
    text-decoration: none;
    line-height: 1.5;
    margin-bottom: 7px;
    color: #343434;
}

.ppi_text .ppi_name:hover {
    text-decoration: underline;
}

.ppi_date {
    display: block;
    color: #bbbbbb;
}


@media only screen and (max-width: 767px) {
    .aside_block {
        padding-top: 30px;
    }
}












/*=== Публикации*/

.publications .page_cover {
    background: #121212 url(../img/blog/page_cover.jpg) no-repeat 50% 50%;
    -webkit-background-size: cover;
    background-size: cover;
}

.publications .page_content {
    padding-top: 30px;
}

.publications_list {
    margin-bottom: 40px;
}

.publications_item {
    margin-bottom: 0;
}

.publications_item_img {
    overflow: hidden;
    width: 100%;
}

.publications_item_img img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.publications_item:hover .publications_item_img img {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}

.publications_item h2 {
    font-size: 25px;
    color: #3e94c6;
    font-weight: normal;
    margin: 30px 0 10px 0;
    line-height: 1.4;
}

.publications_item h2 a,
.publications_item h2 a:focus {
    color: #3e94c6;
    text-decoration: none;
}

.publications_item h2:hover a {
    text-decoration: underline;
    color: #3e94c6;
}

.publications_item_text {
    color: #343434;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.publications_item_text p {
    margin: 0.8em 0;
}









.publications_list {
    list-style: none;
    /*margin: 30px auto;*/
    padding: 0;
}

.publications_list .publications_item {
    display: block;
    float: left;
    padding: 15px;
    width: 25%;
    opacity: 0;

}

.publications_item_desc {
    background: #fff;
}

.publications_list .publications_item h2,
.publications_list .publications_item .publications_item_text,
.publications_list .publications_item .publications_item_footer {

}

.publications_item_desc {
    padding: 20px;
}



.publications_list .publications_item.shown,
.no-js .publications_list .publications_item,
.no-cssanimations .publications_list .publications_item {
    opacity: 1;
}

.publications_list .publications_item a,
.publications_list .publications_item img {
    outline: none;
    border: none;
    display: block;
    max-width: 100%;
}


.publications_item_desc h2 {
    margin-top: 0;
}

.publications_item_desc h2,
.publications_item_desc h2 a,
.publications_item_desc h2 a:focus {
    color: #343434;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 700;
}

.publications_item_desc h2 a:hover {
    text-decoration: underline;
    color: #343434;
}


.publications_item_text {
    line-height: 1.6;
    /*margin-bottom: -0.1em;*/
}



.publications_item_footer {
    font-size: 13px;
    color: #9e9e9e;
    position: relative;
    padding-top: 30px;
}

.publications_item_footer span {
    display: block;
}

.publications_item_footer:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../img/inverse_vintage.png) no-repeat top center;
    width: 26px;
    height: 17px;
}





/* Effect 1: opacity */
.publications_list.effect-1 .publications_item.animate {
    -webkit-animation: fadeIn 0.65s ease forwards;
    animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
    0% { }
    100% { opacity: 1; }
}

@keyframes fadeIn {
    0% { }
    100% { opacity: 1; }
}

/* Effect 2: Move Up */
.publications_list.effect-2 .publications_item.animate {
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: moveUp 0.65s ease forwards;
    animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
    0% { }
    100% { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
    0% { }
    100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}






@media screen and (max-width: 991px) {
    .publications_list .publications_item {
        width: 33.333333%;
    }
}

@media screen and (max-width: 767px) {
    .publications_list .publications_item {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .publications_list .publications_item {
        width: 100%;
    }
}




@media only screen and (max-width: 360px) {
    .btn_wg, .btn_wg:focus {
        padding: 15px;
    }
}
















/*=== Contacts */


.contacts .page_content {
     padding-top: 0;
    background: #fff;
 }

.contacts_sect {
    height: 465px;
    margin-bottom: 80px;
}

.map_section {
    height: 100%;
}





#map_section {
    height: 100%;
}


.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    display: none;
    max-width: 276px;
    padding: 1px;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

#map_section .popover {
    display: block;
    border-radius: 0;
    width: 100%;
    max-width: 370px;
    min-width: 370px;
    /* height: 105px; */
    /* min-height: 105px; */
    /* overflow: hidden; */
    padding: 18px;
}

.popover.top {
    margin-top: -10px;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=50);
    opacity: .5;
}

.close {
    margin-top: -10px;
    margin-right: -8px;
}


.popover.top .arrow,
.popover.top .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
}

.popover.top .arrow {
    margin: 0 -22px -10px 0;
    bottom: 50%;
    left: auto;
    right: 0;
    border: 11px solid transparent;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25);
}

.popover.top .arrow:after {
    content: "";
    border: 10px solid transparent;
    border-left-color: #fff;
    bottom: -10px;
    margin-left: -11px;
}


#map_section .popover .ds_mapCont {
    /* margin: 40px 20px; */
    width: auto;
    max-width: 426px;
    max-height: 105px;
}

#map_section .popover .ds_mapCont span {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    /*padding-bottom: 5px;*/
    display: block;
}

#map_section .popover .ds_mapCol {
    width: auto;
    float: left;
    color: #2e2e2e;
    font-size: 13px;
    padding-right: 60px;
}

.ds_padR15 {
    position: relative;
    padding-left: 40px;
}

.ds_padR15:after {
    content: '';
    position: absolute;
    display: block;
    background: url(../img/map_marker.png) no-repeat top left;
    width: 20px;
    height: 24px;
    left: 0;
    top: 2px;
}


.ds_mapMenu .map-tab {
    margin: 0;
}


.contacts_block {
    max-width: 370px;
    border: 1px solid #efefef;
    overflow: hidden;
    padding: 50px 20px 40px 20px;
    text-align: center;
    color: #343434;
}

.contacts_block_anim1 {
    margin: 0 auto 40px auto;
    max-width: 370px;
}



.contacts_block_logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 35px;
    max-width: 194px;
}

.contacts_block_logo img {
    width: 100%;
    height: auto;
}

.contacts_block span,
.contacts_block a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.contacts_block a,
.contacts_block a:focus {
    text-decoration: none;
    color: #343434;
}

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


.contacts_block a {
    position: relative;
    text-decoration: none !important;
}

.contacts_block a:focus,
.contacts_block a:hover {
    text-decoration: none !important;
}


.contacts_block a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #343434;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.contacts_block a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}



.contacts_block_adress {
    max-width: 240px;
}


.contacts_form_text {
    margin-bottom: 30px;
    line-height: 1.7;
}

.e_form input[type="text"],
.e_form input[type="email"],
.e_form textarea {
    width: 100%;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-color: #e4e4e4;
    border-style: solid;
    outline: 0;
    color: #8c8c8c;
    transition: border-color .3s, color .3s;
}

.e_form input[type="text"],
.e_form input[type="email"] {
    border-width: 0;
    border-bottom-width: 1px;
}

.e_form textarea {
    border-width: 1px;
    padding: 15px 18px;
}


.e_form input[type="text"]:focus,
.e_form input[type="email"]:focus,
.e_form textarea:focus {
    border-color: #343434;
    color: #343434;
}

.e_form .e_sogl{
	margin-bottom:18px;
	display: flex;
}
.e_form .e_sogl span{
	margin:auto 0;
}
.e_form .e_sogl a{
	text-decoration:underline;
	color: #343434;
}
.e_form .e_sogl.error_klik span,
.e_form .e_sogl.error_klik a
{
	color:red;
}
.e_form .e_sogl input[type="checkbox"]{
	margin:auto 10px;
}
.err_text{
	display:none;
}
.error_klik ~ .err_text{
	display:block;
	margin-bottom:20px;
	color:red;
}
#buyBookModal input.error_klik{
	margin-bottom:10px;
}
#buyBookModal .price{
	margin-bottom: 15px;
}


::-webkit-input-placeholder {transition: color .3s;}
::-moz-placeholder          {transition: color .3s;}/* Firefox 19+ */
:-moz-placeholder           {transition: color .3s;}/* Firefox 18- */
:-ms-input-placeholder      {transition: color .3s;}

.e_form input::-webkit-input-placeholder {color:#8c8c8c;}
.e_form input::-moz-placeholder          {color:#8c8c8c;}/* Firefox 19+ */
.e_form input:-moz-placeholder           {color:#8c8c8c;}/* Firefox 18- */
.e_form input:-ms-input-placeholder      {color:#8c8c8c;}

.e_form textarea::-webkit-input-placeholder {color:#8c8c8c;}
.e_form textarea::-moz-placeholder          {color:#8c8c8c;}/* Firefox 19+ */
.e_form textarea:-moz-placeholder           {color:#8c8c8c;}/* Firefox 18- */
.e_form textarea:-ms-input-placeholder      {color:#8c8c8c;}

.e_form input:focus::-webkit-input-placeholder {color:#343434;}
.e_form input:focus::-moz-placeholder          {color:#343434;}/* Firefox 19+ */
.e_form input:focus:-moz-placeholder           {color:#343434;}/* Firefox 18- */
.e_form input:focus:-ms-input-placeholder      {color:#343434;}

.e_form textarea:focus::-webkit-input-placeholder {color:#343434;}
.e_form textarea:focus::-moz-placeholder          {color:#343434;}/* Firefox 19+ */
.e_form textarea:focus:-moz-placeholder           {color:#343434;}/* Firefox 18- */
.e_form textarea:focus:-ms-input-placeholder      {color:#343434;}



.e_form input[type="submit"] {
    padding: 10px;
    width: 130px;
}

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

    .contacts_sect {
        margin-bottom: 40px;
    }

    .contacts_block,
    .contacts_form {
        max-width: 480px;
    }

    /*.contacts_block {*/
        /*margin: 0 auto 30px auto;*/
    /*}*/


    .contacts_block_anim1 {
        margin: 0 auto 30px auto;
        max-width: 480px;
    }


    .contacts_form {
        margin: 0 auto;
    }

}







/*=== Project*/

.project .page_content {
    padding: 0;
    background: #e0e0e0;
}

.project .page_content>.container-fluid {
    max-width: 1920px;
    max-width: none;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.project_slider_sidebar {
    padding-top: 50px;
    padding-bottom: 50px;
}

.project_img img {
    /*width: 100%;*/
    max-width: 100% !important;
    height: auto;
}


.project_slider_sidebar .pss_description_block {
    border: 2px solid #343434;
    padding: 5px 18px 35px 18px;
    margin-bottom: 60px;
    text-align: center;
}

.pss_description_name {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 15px;
}

.pss_description_text {
    font-size: 13px;
    line-height: 1.7;
}


.pss_nav {
    padding: 28px 0;
}

.pss_nav .pss_counter {
    font-size: 50px;
    line-height: 1;
}

.pss_arr_left,
.pss_arr_right {
    width: 24px;
    height: 15px;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
}

.pss_arr_left {
    float: left;
    background: url(../img/project_arr_left.png) no-repeat left top;
}

.pss_arr_right {
    float: right;
    background: url(../img/project_arr_right.png) no-repeat left top;
}

.project_slider_sidebar .project_img_link_block span,
.project_slider_sidebar .share span {
    display: block;
}

.project_slider_sidebar .share {
    margin-bottom: 25px;
}

.project_slider_sidebar .share_text,
.project_slider_sidebar .project_img_link_text{
    margin-bottom: 8px;
}

.project_slider_sidebar .share a {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px 8px 3px;
    opacity: 1;
    transition: opacity .3s;
}

.project_slider_sidebar .share a:hover {
    opacity: .6;
}

.project_img_link {
    border: 1px solid #939393;
    padding: 10px;
    line-height: 1;
}






/*=== interior_design */


.interior_design .page_cover {
    background: url(../img/inerior_design/page_cover.jpg) no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 0;
    height: 430px;
}

.interior_design .page_head {
    border: 0;
    max-width: 1200px;
    text-align: left;
}

.interior_design .page_head h1 {
    text-align: left;
}


.interior_design h2 {
    font-size: 25px;
    line-height: normal;
    margin: 0 0 1em 0;
    font-weight: normal;
}

.interior_design .page_head:before {
    content: normal;
    display: none;
}


.interior_design .page_content{
    padding-top: 0;
}

.id_description {
    overflow: hidden;
    background-color: #fff;
    padding: 30px 20px;
    line-height: 1.7;
}

.mt--80 {
    margin-top: -80px;
}

.id_description h2 {
    font-size: 25px;
    line-height: normal;
    margin: 0 0 0.8em 0;
    font-weight: normal;
}

.id_description_img img {
    width: 100%;
    height: auto;
}

.mb-30 {
    margin-bottom: 30px;
}

.id_sect_1 {
    padding-bottom: 95px;
}

.id_sect_2 {
    background: url(../img/inerior_design/sect_2_bg.jpg) no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    line-height: 1.7;
}


.id_sect_2 h2 {
    font-size: 25px;
    line-height: normal;
    margin: 0 0 0.8em 0;
    font-weight: normal;
}

.id_sect_2 ul {
    padding: 0 0 0 18px;
}

.id_sect_2 ul li {
    margin-bottom: 10px;
}

.id_sect_2 img {
    width: 100%;
    height: auto;
}

.id_sect_getproject {
    background: #eaeaea;
    padding: 50px 0;
    text-align: center;
}

.id_sect_getproject form {
    text-align: center;
    max-width: 370px;
    margin: 0 auto;
}

.id_sect_getproject form input {
    text-align: center;
    background: transparent;
    border-color: #b3b3b3 !important;
}

.id_sect_getproject form input:focus,
.id_sect_getproject form input[type="submit"]:hover {
    border-color: #343434 !important;
}

.id_sect_getproject form input[type="email"] {
    margin-bottom: 38px;
}

.id_sect_getproject form input[type="submit"] {
    width: 170px;
}

.id_sect_getproject h2 {
    margin-bottom: 7px;
}

.id_sect_getproject p {
    margin-bottom: 20px;
}


.id_sect_newprojects {
    padding: 80px 0;
}

.id_sect_newprojects h2 {
    font-size: 25px;
    line-height: normal;
    margin: 0 0 1em 0;
    font-weight: normal;
    text-align: center;
}

.newprojects_item {
    position: relative;
}

.newprojects_item img {
    width: 100%;
    height: auto;
}

.newprojects_item_caption {
    color: #fff;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    padding: 30px;
    background: rgba(0,0,0,.7);
    text-align: center;
    transition: opacity .3s;
}

.newprojects_item:hover .newprojects_item_caption {
    opacity: 1;
}

.newprojects_item_caption span,
.newprojects_item_caption a {
    display: block;
}

.nic_adress {
    margin-bottom: 10px;
}

.nic_name {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.newprojects_item_caption .nic_link {
    width: 170px;
    padding: 10px 15px;
    border-color: #fff;
    color: #fff;
    opacity: .7;
    transition: opacity .3s;
}

.newprojects_item_caption .nic_link:hover {
    opacity: 1;
}

.id_sect_newprojects .row {
    margin: 0;
}
/*
.id_sect_newprojects .col-md-4 {
    padding: 0;
}*/


.id_sect_relatedservices .container-fluid {
    max-width: 760px;
}

.id_sect_relatedservices h2 {
    font-size: 30px;
    text-align: left;
    padding: 0 15px;
}

.id_sect_relatedservices ul {
    padding: 0 15px;
    list-style: none;
    margin: 0;
    width: 50%;
    float: left;
}



.id_sect_relatedservices ul li {
    margin-bottom: 5px;
    line-height: 1.6;
}


.id_sect_relatedservices a,
.id_sect_relatedservices a:focus,
.id_sect_relatedservices a:visited {
    color: #3e94c6;
    text-decoration: none;
    opacity: 1;
}

.id_sect_relatedservices a:hover {
    color: #3e94c6;
    text-decoration: underline;
}



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

    .id_sect_1 {
        padding-bottom: 50px;
    }

    .id_sect_2 {
        padding: 40px 0;
    }

    .id_sect_2 ul {
        padding: 0 0 15px 18px;
    }

    .id_sect_relatedservices ul {
        width: 100%;
        float: none;
    }

    .id_sect_newprojects {
        padding: 40px 0;
    }

    .id_sect_relatedservices .container-fluid {
        max-width: 510px;
    }

    .id_sect_newprojects .container-fluid {
        max-width: 480px;
    }

    .newprojects_item {
        margin-bottom: 25px;
    }

    .interior_design .page_cover {
        height: 230px;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {

    .interior_design .page_cover {
        height: 270px;
    }

    .id_sect_1 {
        padding-bottom: 70px;
    }

    .id_sect_2 {
        padding: 50px 0 40px 0;
    }

    .id_sect_newprojects {
        padding: 40px 0;
    }

    .newprojects_item_caption .nic_link {
        width: 150px;
        padding: 7px 15px;
    }

    .nic_name {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .nic_adress {
        margin-bottom: 0;
    }

    .newprojects_item_caption {
        padding: 15px;
    }
}



/*=== about*/


.about {

}

.about .page_cover {
    background: url(../img/about/page_cover.jpg) center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 45px;
    padding-bottom: 45px;
}

.about .page_cover .page_head {
    max-width: 600px;
    text-align: center;
    padding: 32px 20px 10px 20px;
}

.about .page_cover .page_head h1 {
    text-align: center;
    margin: 0 auto;
}

.about .page_cover .page_head p {
    line-height: 1.7;
}


.about_text {
    font-size: 13px;
    line-height: 1.7;
    max-width: 670px;
    font-family: 'Open Sans', 'PT Sans', sans-serif;
}

.before_text_ya:before {
    content: 'Я';
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
    font-size: 100px;
    line-height: 62px;
    color: #d6d6d6;
    display: block;
    float: left;
    margin-right: 10px;
}

.before_text_ya_en:before {
    content: 'I';
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
    font-size: 100px;
    line-height: 62px;
    color: #d6d6d6;
    display: block;
    float: left;
    margin-right: 10px;
}

.row_section {
    margin-bottom: 60px;
}

.about_img img {
    width: 100%;
    height: auto;
    margin-top: 18px;
}

.about_text h2 {
    font-weight: normal;
    font-size: 25px;
    margin-top: 0.5em;
}


.about_text blockquote {
    padding: 0.5em 0 0.5em 85px;
    margin: 1em 0;
    position: relative;
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
    font-size: 16px;
    /*quotes: "\201C""\201D""\2018""\2019";*/
}

.about_text blockquote:before {
    color: #d6d6d6;
    position: absolute;
    left: 0;
    top: 4px;
    width: 78px;
    height: 62px;
    content: '';
    font-size: 4em;
    background: url(../img/quote.png) no-repeat top left;
}


.about_text blockquote.no_quots {
    padding: 0.5em 0;
    margin: 1em 0;
    position: relative;
    font-family: 'Constantia-Italic', 'Open Sans', 'PT Sans', sans-serif;
    font-size: 13px;
    /*quotes: "\201C""\201D""\2018""\2019";*/
}

.about_text blockquote.no_quots:before {
    content: normal;
    display: none;
}

.mt-205 {
    margin-top: 205px !important;
}

.about_slider_item img {
    width: 100%;
    height: auto;
}




.about_slider {

}

.fp_main_slider_item {

}


.about_slider .owl-controls {
    height: 0;
    /*position: relative;*/
}


.about_slider .owl-dots {
    position: relative;
    bottom: 35px;
    text-align: center;
}

.about_slider .owl-nav {
    height: 0;
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: .5;
}

.owl-dots .owl-dot.active {
    background: #fff;
    opacity: 1;
}


.about_slider .owl-nav .owl-prev,
.about_slider .owl-nav .owl-next {
    position: absolute;
    z-index: 41;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 1000%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
    top: 50%;
    cursor: pointer;
    transition: opacity .3s;
}

.about_slider .owl-nav .owl-prev {
    background: url(../img/fp_slider_arr_left.png) no-repeat top left;
    left: 20px;
}

.about_slider .owl-nav .owl-next {
    background: url(../img/fp_slider_arr_right.png) no-repeat top left;
    right: 20px;
}


.about_slider .owl-nav .owl-prev:hover,
.about_slider .owl-nav .owl-next:hover {
    opacity: .5;
}

@media only screen and (min-width: 1280px) {

    .about_slider .owl-nav .owl-prev {
        left: 50%;
        margin-left: -560px;
    }


    .about_slider .owl-nav .owl-next {
        margin-right: -560px;
        right: 50%;
    }

    .about_slider .owl-nav .owl-prev, .about_slider .owl-nav .owl-next {
        top: 51%;
    }

}


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

    .about .page_content {
        padding-top: 30px;
    }


    .row_section {
        margin-bottom: 30px;
    }

    .about_text blockquote.no_quots {
        margin-top: 0 !important;
    }

    .about_img {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) and (min-width: 480px) {

.about_img_block {
    float: left;
    margin-right: 15px;
    margin-bottom: 0;
}

    .about_img {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 1200px) {


    .about_text blockquote {
        margin-left: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .about_mb-0 {
        margin-bottom: 0;
    }
}

.about_video img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.about_video a {
    display: block;
    position: relative;
}

.about_video a:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/video.png) no-repeat center center;
}


/*=== blog detail */

.blog_detail .sidebar_cover {
    position: relative;
}

.blog_detail .sidebar_cover img {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
}


.blog_detail .sidebar_cover .back_link,
.blog_detail .sidebar_cover .back_link:focus,
.blog_detail .sidebar_cover .back_link:hover {
    display: block;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    margin-top: 35px;
    margin-left: 30px;
    color: #ffffff;
    text-decoration: none;
}

.blog_detail .sidebar_cover .back_link:hover span {
    text-decoration: underline;
}


.blog_detail .sidebar_cover .pss_nav {
    padding: 28px 18px;
    width: 240px;
    border: 2px solid #fff;
    color: #fff;
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    text-align: center;
    margin-top: 35px;
    margin-right: 25px;
}

.blog_detail .pss_arr_left {
    float: left;
    background: url(../img/blog_arr_left.png) no-repeat left top;
}

.blog_detail .pss_arr_right {
    float: right;
    background: url(../img/blog_arr_right.png) no-repeat left top;
}

.blog_detail .page_content {
    padding-top: 0;
}

@media only screen and (max-width: 1100px) and (min-width: 768px) {
    .blog_detail .sidebar_cover .pss_nav {
        left: 0;
        right: 0;
        margin-top: 80px;
        margin-right: auto;
        margin-left: auto;
    }
}


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

    .blog_detail .col-md-5.col-sm-5 {
        padding-left: 0;
        padding-right: 0;
    }
    .blog_detail .sidebar_cover {
        height: 180px;
        overflow: hidden;
    }
}

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


    .blog_detail .sidebar_cover {
        height: 210px;
    }

    .blog_detail .sidebar_cover .pss_nav {
        padding: 20px 18px;
        margin-top: 80px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
    }
}


/*.blog_detail .page_content>.container-fluid {*/
    /*max-width: 1310px;*/
/*}*/

.page_content .about_text a,
.page_content .about_text a:focus {
    color: #3e94c6;
    text-decoration: underline;
}

.page_content .about_text a:hover {
    color: #3e94c6;
    text-decoration: none;
}

.page_content .about_text h2 {
    line-height: 1.5;
}


.blog_detail .meta {
    float: none;
    font-size: 13px;
    color: #343434;
    padding: 25px 0 2px 0;
}

.blog_detail .meta span {
    display: block;
}

.blog_detail .meta .article_cat {
    /*margin-right: 25px;*/
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    color: #919090;
}

.blog_detail .meta .article_views_count {
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    font-size: 14px;
    font-family: 'Open Sans', 'PT Sans', sans-serif;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.blog_detail .meta .article_views_count:before {
    content: '';
    left: 0;
    top: 3px;
    position: absolute;
    background: url(../img/view_count.png) no-repeat top center;
    width: 20px;
    height: 14px;
}


.blog_detail .blog_item_footer {
    padding-top: 20px;
}

.other_article_list {
    padding: 90px 0 0 0;
}

.other_article_item {
    margin-bottom: 58px;
}

.other_article_item_img {
    width: 100%;
    overflow: hidden;
}

.other_article_item_img img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.other_article_item:hover .other_article_item_img img {
    -webkit-transform: scale(1.18);
    -moz-transform: scale(1.18);
    -ms-transform: scale(1.18);
    -o-transform: scale(1.18);
    transform: scale(1.18);
}

.other_article_item_caption {
    color: #343434;
    font-size: 15px;
    font-weight: 700;
    padding-top: 12px;
    line-height: 1.3;
    height: 82px;
    overflow: hidden;
}


.oai_cat {
    font-size: 13px;
    color: #9e9e9e;
    font-weight: normal;
    display: block;
    margin-bottom: 3px;
    text-decoration: none;
}

a.oai_cat,
a.oai_cat:focus {
    text-decoration: none;
    color: #9e9e9e;
}
a.oai_cat:hover {
    text-decoration: underline;
    color: #9e9e9e;
}


a.oai_name,
a.oai_name:focus {
    text-decoration: none;
    color: #343434;
}

a.oai_name:hover {
    text-decoration: underline;
    color: #343434;
}

.other_article_list h2 {
    font-size: 25px;
    text-align: center;
    font-weight: normal;
    margin: 0 0 25px 0;
}



@media only screen and (max-width: 767px) and (min-width: 481px) {

    .other_article_item {
        margin-bottom: 15px;
    }

    .other_article_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}

@media only screen and (max-width: 767px) and (min-width: 560px) {

    .other_article_item_caption {
        font-size: 15px;
        padding-top: 8px;
    }

}

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


    .other_article_list .col-xs-6 {
        width: 100%;
        float: none;
    }

    .other_article_item {
        margin-bottom: 15px;
    }

    .other_article_item_caption {
        font-size: 14px;
        padding-top: 7px;
    }

}

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


    .other_article_list {
        padding: 30px 0 0 0;
    }

}








.projecr_slider {
    /*height: 100vh;*/
    max-width: 100%;
}

.sp-slides,
.project_img,
.project_img img {
    /*height: 100vh;*/
}

.project_img {
    text-align: center;
}

@media only screen and (min-width: 768px) {


    .projecr_slider,
    .sp-slides,
    .project_img,
    .project_img img {
        /*height: calc(100vh - 106px);*/
    }

}

.sp-fade-full-screen {
    opacity: 1 !important;
    color: #fff !important;
}

.sp-arrow {
    opacity: 1 !important;
}

.sp-fade-arrows,
.sp-previous-arrow:before,
.sp-previous-arrow:after,
.sp-next-arrow:before,
.sp-next-arrow:after {
    opacity: 1 !important;
}




.project .col-left {
    float: left;
}

.project .col-right {
    float: right;
}




.sp-full-screen-button {
    transform: none;
    top: 15px;
    right: 15px;
}
.sp-full-screen-button:before {
    /*content: '\2195';*/
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background: url(../img/full_screen.png) no-repeat center center;
}


.sp-horizontal .sp-arrow:before,
.sp-horizontal .sp-arrow:after {
    content: normal;
    display: none;
}


.sp-horizontal .sp-previous-arrow {
    background: url(../img/fp_slider_arr_left.png) no-repeat 50% 50%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
}

.sp-horizontal .sp-next-arrow {
    background: url(../img/fp_slider_arr_right.png) no-repeat 50% 50%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
}

.project_back_link {
    text-shadow: 1px 1px 6px rgba(0,0,0,1);
}


.project_back_link,
.project_back_link:focus {
    position: absolute;
    z-index: 801;
    top: 30px;
    left: 50px;
    color: #ffffff;
    text-decoration: none;
}

.project_back_link:hover {
    color: #ffffff;
    text-decoration: none;
}

.project_back_link:hover span {
    text-decoration: underline;
}


.project_bottom_link {
    position: absolute;
    z-index: 2000;
    bottom: 0;
    width: 300px;
    left: 0;
    right: 0;
    margin: 0 auto 30px auto;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 15px;
}

.project_bottom_link {
    text-shadow: 1px 1px 6px rgba(0,0,0,.7);
}

.project_bottom_link:after {
    content: '';
    display: inline-block;
    background: url(../img/bottom_arr.png) no-repeat center center;
    width: 16px;
    height: 10px;
    margin-left: 5px;
}

.project_bottom_link:hover  {
    color: #ffffff;
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .project .col-left {
        float: none;
        margin-bottom: 50px;
    }

    .project .col-right {
        float: none;
        /*background: #101010;*/
    }

    .projecr_slider {
        height: 500px;
        max-width: 100%;
    }

    .sp-slides,
    .project_img,
    .project_img img {
        /*height: 500px;*/
    }
}


.book {

}

.book .page_content {
    padding-top: 0;
    padding-bottom: 0;
}
.book .col-md-3.col-sm-4 {
    float: left;
}

.book .col-md-9.col-sm-8 {
    float: right;
}


.book .sp-horizontal .sp-previous-arrow {
    background: url(../img/fp_slider_arr_black_left.png) no-repeat 50% 50%;
    display: none;
    opacity: .75 !important;
}

.book .sp-horizontal .sp-next-arrow {
    background: url(../img/fp_slider_arr_black_right.png) no-repeat 50% 50%;
    display: none;
    opacity: .75 !important;
}

@media only screen and (max-width: 767px) {
    .book .col-md-3.col-sm-4 {
        float: none;
        margin-bottom: 50px;
    }

    .book .col-md-9.col-sm-8 {
        float: none;
        /*background: #101010;*/
    }

    .book_slider {
        height: auto;
        max-width: 100%;
    }

    .sp-slides,
    .book_img,
    .book_img img {
        height: 500px;
    }

    .book .project_slider_sidebar {
        padding-top: 50px;
    }

    .book .sp-horizontal .sp-previous-arrow,
    .book .sp-horizontal .sp-next-arrow {
        display: block;
    }

}


@media only screen and (max-width: 991px) and (min-width: 768px) {
    .book .project_slider_sidebar {
        padding-top: 30px;
    }

    .book .col-md-3.col-sm-4 {
        width: 30%;
    }

    .book .col-md-9.col-sm-8 {
        width: 70%;
    }

    .book .pss_description_name {
        font-size: 18px;
    }
    .book .pss_description_text {
        font-size: 12px;
    }

    .book .project_slider_sidebar .pss_description_block {
        padding: 5px 18px 15px 18px;
        margin-bottom: 35px;
    }
}


.dib {
    display: inline-block;
    position: relative;
}

._vintazh:before {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 17px;
    top: 0;
    left: 0;
    right: 0;
    margin: -10px auto 0 auto;
    background: url(../img/vintazh.png) no-repeat top center;
    opacity: 1;
    transition: opacity .3s;
}

._vintazh:after {
    content: '';
    position: absolute;
    display: block;
    width: 26px;
    height: 17px;
    top: 0;
    left: 0;
    right: 0;
    margin: -10px auto 0 auto;
    background: url(../img/vintazh.png) no-repeat top center;
    opacity: 0;
    transition: opacity .3s;
}

._vintazh:hover:before {
    background-position: center -18px;
    opacity: 0;
}

._vintazh:hover:after {
    background-position: center -18px;
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .e_submit_decor {
        width: 170px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .e_form .e_submit_decor input[type="submit"] {
        width: 170px;
    }
}


.contacts_block_anim1,
.contacts_block_anim2 {
    position: relative;
    overflow: visible;
}

.contacts_block_anim1:before,
.contacts_block_anim1:after,
.contacts_block_anim2:before,
.contacts_block_anim2:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 5;
    background: #000;
}

.contacts_block_anim1:before {
    left: -1px;
    top: -1px;
    height: 2px;
    /*width: 0;*/
    right: 100%;
    opacity: 0;
    transition: right .3s, opacity .3s;
}

.contacts_block_anim1:hover:before {
    opacity: 1;
    right: 0;
}


.contacts_block_anim1:after {
    left: -1px;
    top: -1px;
    width: 2px;
    /*width: 0;*/
    bottom: 100%;
    opacity: 0;
    transition: bottom .3s, opacity .3s;
}

.contacts_block_anim1:hover:after {
    bottom: 0;
    opacity: 1;
}






.contacts_block_anim2:before {
    right: -1px;
    bottom: -1px;
    height: 2px;
    /*width: 0;*/
    left: 100%;
    opacity: 0;
    transition: left .3s, opacity .3s;
}

.contacts_block_anim2:hover:before {
    opacity: 1;
    left: 0;
}


.contacts_block_anim2:after {
    right: -1px;
    bottom: -1px;
    width: 2px;
    /*width: 0;*/
    top: 100%;
    opacity: 0;
    transition: top .3s, opacity .3s;
}

.contacts_block_anim2:hover:after {
    top: 0;
    opacity: 1;
}

.project_detail_img_block {
    position: relative;
}

.project_detail_buy_block {
    text-align: center;
	margin: 25px 0;
}
.project_detail_modal .result{
	display:none;
	color:green;
}

/* Fix for Bootstrap modals */
.project_detail_modal .modal-dialog{
	max-width:450px;
}
.project_detail_modal.modal {
  z-index:99999;
}
.project_detail_modal.modal .modal-body{
	text-align:center;
}
.project_detail_modal.modal .modal-text{
	margin-bottom:10px;
}
.project_detail_modal.modal .result .text{
	margin-bottom:25px;
}
/* End of fix */


/*.project_detail_prev {
    background: url(../img/fp_slider_arr_left.png) no-repeat 50% 50%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
    position: absolute;
    z-index: 800;
    top: 50%;
    left: 20px;
    cursor: pointer;
}

.project_detail_next {
    background: url(../img/fp_slider_arr_right.png) no-repeat 50% 50%;
    width: 23px;
    height: 29px;
    margin-top: -15px;
    position: absolute;
    z-index: 800;
    top: 50%;
    right: 20px;
    cursor: pointer;
}*/

.project_detail_prev {
    background: url(../img/fp_slider_arr_left.png) no-repeat 50% 50%;
    width: 40px;
    height: 100%;
    margin-top: 0;
    position: absolute;
    z-index: 800;
    top: 0;
    left: 0;
    bottom: 0;
    cursor: pointer;
}

.project_detail_next {
    background: url(../img/fp_slider_arr_right.png) no-repeat 50% 50%;
    width: 40px;
    height: 100%;
    margin-top: 0;
    position: absolute;
    z-index: 800;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.project_detail-fullscreen {
    display: none;
    text-decoration: none;
    width: 36px;
    height: 36px;
    background: url(../img/full_screen.png) no-repeat center center;
    position: absolute;
    z-index: 801;
    top: 20px;
    right: 20px;
    cursor: pointer;
    display: none;
}

.project_detail-fullscreen:hover {
    text-decoration: none;
}

@media only screen and (max-width: 1279px) {
    .project .page_content>.container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    .project_slider_sidebar {
        padding-top: 12%;
    }
}

@media only screen and (max-width: 1279px) {
    .project_slider_sidebar {
        padding-top: 7%;
    }
}

@media only screen and (min-width: 768px) {
    .project_detail-fullscreen {
        display: block;
    }

    .project .project_detail_img_block.progect_img_vertical .project_img img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100vh;
        max-height: calc(100vh - 106px)
    }
}

.project_bottom_link:focus {
    color: #fff;
}

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

    .project_back_link, .project_back_link:focus {
        top: 4%;
        left: 4%;
    }

    .project_bottom_link {
        margin-bottom: 4%;
        font-size: 13px;
    }

    .project_detail_prev {
        left: 2%;
    }

    .project_detail_next {
        right: 2%;
    }

}

.sl-wrapper {
    z-index: 3005;
}

.sl-overlay {
    z-index: 3000;
    background-color: #000;
}

.sl-wrapper .sl-close {
    z-index: 3009;
}

.sl-wrapper .sl-counter {
  z-index: 3010;
}

.sl-wrapper .sl-image .sl-download {
  z-index: 3010;
}

/* line 98, ../sass/simplelightbox.scss */
.sl-spinner {
  z-index: 3010;
}

.sl-wrapper .sl-navigation button {
  z-index: 3010;
}

.whitebg {
    background-color: #fff;
}

.project_img_link span {
    display: block;
    overflow: hidden;
}


.blog_detail .about_text {
    max-width: none;
}

.blog_detail .about_text img {
    max-width: 100%;
    height: auto;
}


.blog_detail .sidebar_cover:after,
.blog_detail .sidebar_cover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.9+0,0+100 */
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}


.blog_detail .sidebar_cover .pss_nav {
    padding: 24px 13px;
    width: 224px;
    border: 2px solid #fff;
    color: #fff;
    position: absolute;
    z-index: 6;
    top: 0;
    right: 0;
    text-align: center;
    margin-top: 85px;
    margin-right: 25px;
}

.pss_nav .pss_counter {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.blog_detail .sidebar_cover .back_link,
.blog_detail .sidebar_cover .back_link:focus,
.blog_detail .sidebar_cover .back_link:hover {
    z-index: 6;
}


/*@media only screen and (max-width: 1100px) {
    .blog_detail .sidebar_cover .pss_nav {
        margin-top: 85px;
    }
}*/


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog_detail .sidebar_cover .pss_nav {
        padding: 20px 10px;
        width: 175px;
    }
    .pss_nav .pss_counter {
        font-size: 42px;
        letter-spacing: -0.08em;
    }
}

@media only screen and (max-width: 767px) {
    .blog_detail .sidebar_cover {
        height: 220px;
        overflow: hidden;
    }
    .blog_detail .sidebar_cover .pss_nav {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .blog_detail .sidebar_cover {
        height: 200px;
        overflow: hidden;
    }

    .blog_detail .sidebar_cover .pss_nav {
        margin-top: 75px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .blog_detail .sidebar_cover .back_link {
        font-weight: bold;
    }
}

.article_row {
    overflow: hidden;
}

.article_row .col-md-12,
.article_row .col-md-6 {
    overflow: hidden;
    margin-bottom: 30px;
}


.article_row img {
    width: 100%;
    height: auto;
}


.row.btn_container.pagen_items {
    clear: both;
}


.page_dekorirovanie-prazdnikov-i-meropriyatiy .interior_design .page_cover {
    background: url(../img/inerior_design/page_cover-praz.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.page_dizayn-interera .interior_design .page_cover {
    background: url(../img/inerior_design/page_cover-int.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.page_proektirovanie-individualnykh-zhilykh-domov .interior_design .page_cover {
    background: url(../img/inerior_design/page_cover-proekt.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.page_stroitelno-otdelochnye-raboty-pod-klyuch .interior_design .page_cover {
    background: url(../img/inerior_design/page_cover-otdelka.jpg) no-repeat center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.page_dekorirovanie-prazdnikov-i-meropriyatiy .id_sect_newprojects {
display:none;
}

.press .press_absolute_btn {
    /*overflow: hidden;*/
    text-align: center;
    position: absolute;
    bottom: -80px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}

#order_form_div{
	padding: 0 15px;
}
.order-row{
	padding:130px 0;
	text-align:center;
}
.formM{
	margin:0 auto;
	bottom: 135px;
}