/**************** css/style.css *****************/

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

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

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

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

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

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

html {
    overflow-y: scroll;
}

body {
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 24px;
    color: #444;
    position: relative;
    overflow: hidden;
}

body.no-overflow{
    overflow: initial;
}

p,
ul,
ol, 
pre,
table,
address, 
fieldset {
    margin: 0 0 24px;
}

h1, 
h2, 
h3, 
.h1, 
.h2, 
.h3 {
    line-height: 1;
    font-weight: 100;
    margin: 0 0 24px;
}

h4, 
h5, 
h6,
.h4, 
.h5, 
.h6 {
    line-height: 24px;
    font-weight: normal;
    margin: 0 0 24px;
}

h1, 
.h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

h2, 
.h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

h3, 
.h3 {
    font-size: 36px;
}

h4, 
.h4 {
    font-size: 20px;
}

h5, 
.h5 {
    font-size: 18px;
}

h6, 
.h6 {
    color: #536460;
    font-size: 14px;
}

ul, 
ol {
    margin: 0 0 24px;
    padding-left: 20px;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin-bottom: 0;
}

.text-block ul {
    padding: 0;
    list-style: none;
}

.text-block ul li {
    padding-left: 33px;
    margin-bottom: 14px;
    position: relative;
}

.text-block ul li:before {
    content: '';
    position: absolute;
    width: 23px;
    height: 23px;
    background: url(../images/list.png) 0 0 no-repeat;
    left: 0;
    top: -2px;
}

.text-block ul a {
    color: inherit;
    /* text-decoration: none; */
}

.text-block ul a:hover {
    text-decoration: underline;
}

.text-block ol {
    counter-reset: li;
    padding: 15px 0;
    list-style: none;
}

.text-block ol li {
    position: relative;
    padding-left: 87px;
    line-height: 24px;
    min-height: 39px;
    margin-bottom: 24px;
}

.text-block ol li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    width: 54px;
    height: 54px;
    text-align: center;
    line-height: 50px;
    border: 2px solid #6aafa0;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 100;
    color: #6aafa0;
    left: 0;
    top: -1px;
}

dl {
    margin: 0 0 20px;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 20px;
}

table {
    width: 100%;
    margin: 0 0 24px;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    background: #fff;
}

th,
td {
    padding: 9px 24px;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid #6aafa0;
    border-bottom: 1px solid #6aafa0;
}

th {
    background: #b4d7cf;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 14px;
}

td + td {
    border-left: 1px solid #6aafa0;
}

tr:nth-child(2n) td {
    background: #f0f7f5;
}

hr {
    clear: both;
    height: 0;
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ccc;
}

a {
    color: #3D7B70;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a:hover, 
a:active,
a:focus {
    outline: none;
}

a img {
    border:none;
}

img {
    vertical-align: middle;
}

.clear {
    clear:both;
}

.clear-left {
    clear: left;
}

.clear-right {
    clear: right;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}

.align-justify {
    text-align: justify;
}

.uppercase {
    text-transform: uppercase;
}

.nowrap {
    white-space: nowrap;
}

.cl-green {
    color: #3D7B70;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.form-row {
    margin-bottom: 27px;
}

.form-label {
    display: block;
    font-weight: normal;
    margin-bottom: 3px;
}

.check-row {
    position: relative;
    display: block;
    margin: 10px 0;
    padding-left: 24px;
}

.check-row label {
    cursor: pointer;
    display: block;
}

.check-row input[type=checkbox], 
.check-row input[type=radio] {
    position: absolute;
    left: 0;
    top: 5px;
}

.captcha-row {

}

.captcha-row:after {
    content: '';
    display: table;
    clear: both;
}

.captcha-row__image {
    float: left;
    width: 50%;
    height: 55px;
}

.captcha-row__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.captcha-row__input {
    float: left;
    width: 50%;
}

input:focus, 
select:focus, 
textarea:focus, 
button:focus {
    outline: 0;
}

input[type='email'],
input[type='file'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
textarea,
select {
    display: block;
    width: 100%;
    height: 55px;
    padding: 14px 12px;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 0;
}

input[type='email']:focus,
input[type='file']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
textarea:focus,
select:focus {
    border-color: #66aaee;
}

input[type='email']:disabled,
input[type='file']:disabled,
input[type='password']:disabled,
input[type='search']:disabled,
input[type='tel']:disabled,
input[type='text']:disabled,
input[type='url']:disabled,
textarea:disabled,
select:disabled {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #888;
}

input[type='email'].error,
input[type='file'].error,
input[type='password'].error,
input[type='search'].error,
input[type='tel'].error,
input[type='text'].error,
input[type='url'].error,
textarea.error,
select.error {
    border-color: #ff0000;
}

input[type='checkbox'].error,
input[type='radio'].error {
    outline: 1px dotted #ff0000;
}

label.error {
    display: block;
    color: #ff0000;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: -16px;
}

input[type='file'] {
    padding: 5px;
}

select {
    padding: 2px 2px 2px 10px;
}

textarea {
    height: 220px;
    max-width: 100%;
    min-width: 100%;
}

::-webkit-input-placeholder {color: inherit;}
::-moz-placeholder {color: inherit;}
:-moz-placeholder {color: inherit;}

:focus::-webkit-input-placeholder {color: transparent}
:focus::-moz-placeholder {color: transparent}
:focus:-moz-placeholder {color: transparent}

.btn {
    height: 55px;
    line-height: 53px;
    padding: 0 15px;
    font-size: 14px;
    color: #000;
    background: #ffd600;
    border: 1px solid transparent;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    text-transform: uppercase;
}

.btn:hover {
    background: #ffdf36;
    color: #000;
    text-decoration: none;
}

.btn:active {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

.btn:disabled,
.btn.disabled {
    opacity: .55;
    cursor: default;
    pointer-events: none;
}

.btn_full {
    padding: 0;
    width: 100%;
}

.wrapper {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.fancybox-overlay {
    text-align: center;
    white-space: nowrap;
}

.fancybox-overlay:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.fancybox-wrap {
    text-align: left;
    white-space: normal;
}

.fancybox-popup.fancybox-wrap {
    display: inline-block;
    vertical-align: middle;
    padding: 20px;
    max-width: 100%;
    position: static !important;
}

.fancybox-popup.fancybox-wrap,
.fancybox-popup .fancybox-skin,
.fancybox-popup .fancybox-inner {
    width: auto !important;
    height: auto !important;
}

.popup-window {
    display: none;
    background: #fff;
    padding: 26px;
    max-width: 100%;
    width: 420px;
    border: 4px solid #ffc600
}

.popup-window__title {
    text-align: center;
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 24px;
    font-weight: normal;
}

.popup-window__title span {
    font-size: 16px;
}

.header {
    background: #251925 url('../images/header.webp') center top no-repeat;
    background-size: cover;
    color: #fff;
}

.home-page .header {
    background: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.header__content {
    height: 140px;
    position: relative;
}

.header__content:after {
    content: '';
    display: table;
    clear: both;
}

.header__logo {
    position: absolute;
    left: 4px;
    top: 8px;
}

.header__phone {
    position: absolute;
    right: 0;
    top: 25px;
}

.header__order-call {
    position: absolute;
    right: 0;
    top: 75px;
    width: 180px;
}

.header__nav-target {
    display: none;
}

.header__nav-close {
    display: none;
}

.header__nav {
    position: absolute;
    top: 76px;
   left: 0;
}

.logo {

}

.logo__img {

}

.phone {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.order-call-btn {
    width: 100%;
    padding: 0;
    font-size: 13px;
    height: 50px;
    line-height: 48px;
}

.nav-target {

}

.nav {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
}

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

.nav__list-item {
    float: left;
    position: relative;
}

.nav__list-item .submenu
{
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    width: 300px;
    margin-top: 7px;
    pointer-events: none;
    opacity: 0;
    z-index: 2;
    transition: .2s linear;
    background: #7f7f7f;
    color: #fff;
    text-align: left;
    padding: 15px 20px;
    font-size: 14px;
}

.nav__list-item .submenu:before
{
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0px;
    height: 10px;
    width: 100%;
}

.nav__list-item .submenu .items
{

}
.nav__list-item .submenu .items a
{
    color: #FFF;
    text-decoration: none;
    transition: all .2s linear;
}
.nav__list-item .submenu .items a:hover
{
    text-decoration: underline;
}
.nav__list-item .submenu .items > * + *
{
    margin-top: 5px;
}

.nav__list-item .submenu .all
{
    margin-top: 15px;
    text-align: right;
}

.nav__list-item .submenu .all a
{
    color: #FFF;
    text-decoration: none;
    position: relative;
    padding-right: 15px;
    transition: all .2s linear;
}

.nav__list-item .submenu .all a:after
{
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    display: block;
    width: 10px;
    height: 10px;
    transition: border-color .2s linear;
    transform: rotate(-45deg);
    border: none;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transition: all .2s linear;
    transform: rotate(135deg);
}

.nav__list-item .submenu .all a:hover
{
    text-decoration: underline;
}


.nav__list-item:hover .submenu
{
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}



.nav__list-link {
    display: block;
    height: 50px;
    line-height: 50px;
    /* padding: 0px 48px; */
    padding: 0px 32px;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.nav__list-link:before {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background: #b5cbbe;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.nav__list-item:last-child .nav__list-link:before {
    display: none;
}

.nav__list-link:after {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    right: 0;
    bottom: 0;
    background: #56736c;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.nav__list-link:hover:after,
.nav__list-link.is-active:after,
.nav__list-item:hover .nav__list-link:after
{
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.nav__list-link > span {
    position: relative;
    z-index: 2;
}

.content {
    padding-top: 20px;
    padding-bottom: 25px;
}

.article_content_s1{
    position: sticky;
    top: 170px;
    z-index: 1;
    margin-top: 0!important;
}

 

.article_text_content{
    display: flex;
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
}

.article_content{
    width: 288px;
    display: flex;   
    flex-wrap: nowrap;
    padding-top: 0;
}

.article_text{
    display: flex;   
    flex-wrap: nowrap;
    padding-right: 30px;
}


.form-section {
    background: #6aafa0;
    padding-top: 50px;
    padding-bottom: 45px;
}

.form-section__title {
    text-align: center;
    color: #fff;
    font-size: 46px;
    font-weight: 300;
    margin-bottom: 50px;
}

.form-section__content {

}

.form-section__content:after {
    content: '';
    display: table;
    clear: both;
}

.form-section__form {

}

.form-section__form:after {
    content: '';
    display: table;
    clear: both;
}

.form-section__col {
    float: left;
    width: 50%;
    padding: 0 15px;
}

.form-section__col_1 {
    width: 33%;
}

.form-section__col_2 {
    width: 67%;
    padding-left: 25px;
}

.form-section__row {
    margin: 0 -20px;
}

.form-section__row:after {
    content: '';
    display: table;
    clear: both;
}

.form-section__row-col {
    float: left;
    width: 33.33%;
    padding: 0 20px;
}

.form-section input[type=text],
.form-section input[type=email],
.form-section input[type=password],
.form-section textarea {
    border-color: #fff;
}

.form-section input[type=text].error,
.form-section input[type=email].error,
.form-section input[type=password].error,
.form-section textarea.error {
    border-color: #ff0000;
}

.form-section label.error {
    color: #fff;
}

.captcha {
    height: 55px;
    background: #fff;
}

.captcha img {
    display: block;
    width: 100%;
    height: 100%;
}

.projects {

}

.projects__header {
    background: #fff;
    padding-top: 38px;
    padding-bottom: 1px;
}

.projects__title {
    font-size: 44px;
    font-weight: 100;
    margin-bottom: 75px;
}

.projects__nav {
    padding: 0 70px;
    position: relative;
    border-bottom: 12px solid #ffc600;
    margin-bottom: -13px;
}


.projects__nav.projects__nav__nodescr .projects__nav-link.is-active:before,  .projects__nav.projects__nav__nodescr .projects__nav-link.is-active:after{
    display: none;
}

.projects__nav-item {
    height: 137px;
    border-bottom: 12px solid #ffc600;
}

.projects__nav-link {
    display: block;
    height: 70px;
    line-height: 70px;
    text-align: center;
    position: relative;
}

.projects__nav-link.is-active:before {
    content: '';
    position: absolute;
    border-left: 41px solid transparent;
    border-right: 41px solid transparent;
    border-bottom: 29px solid #ffc600;
    bottom: -55px;
    left: 50%;
    margin-left: -41px;
}

.projects__nav-link.is-active:after {
    content: '';
    position: absolute;
    border-left: 41px solid transparent;
    border-right: 41px solid transparent;
    border-bottom: 29px solid #f8f8f8;
    bottom: -70px;
    left: 50%;
    margin-left: -41px;
}

.projects__nav-img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.projects__nav .owl-wrapper-outer {
    margin-bottom: -12px;
}

.owl-prev,
.owl-next {
    width: 21px;
    height: 37px;
    position: absolute;
    top: 19px;
    text-indent: -9999px;
}

.owl-prev {
    background: url(../images/owl-prev.png) 0 0 no-repeat;
    left: 5px;
}

.owl-next {
    background: url(../images/owl-next.png) 0 0 no-repeat;
    right: 5px;
}

.projects__content {
    background: #ebebeb;
    padding-top: 12px;
    padding-bottom: 36px;
}

.projects__wrapper {

}

.projects__item {
    display: none;
}

.project {
    background: #f8f8f8;
}

.project:after {
    content: '';
    display: table;
    clear: both;
}

.project__info-field {
    float: left;
    width: 50%;
    padding: 39px 80px 0 55px;
}

.project__title {
    font-size: 20px;
    font-weight: normal;
    color: #2f2c2c;
    margin-bottom: 65px;
    display: block;
}

.project__section-title {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.project__objects-list {
    margin: 23px 0 86px 0;
    padding: 00;
    list-style: none;
}

.project__objects-list li {
    margin-bottom: 25px;
    padding-left: 36px;
    position: relative;
}

.project__objects-list li:before {
    content: '';
    width: 18px;
    height: 15px;
    background: url('../images/list-m.png') no-repeat;
    position: absolute;
    left: -4px;
    top: 0;
}

.project__objects-list a {
    color: inherit;
    text-decoration: underline;
}

.project__objects-list a:hover {
    color: #3D7B70;
    text-decoration: none;
}

.project__description-field {
    margin-left: 50%;
    background: #fff;
    padding: 116px 80px 31px 66px;
}

.project__description-field:after {
    content: '';
    display: table;
    clear: both;
}

.project__description-field strong {
    font-weight: normal;
}



/*------------
    Footer
------------*/
.cont
{
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 24px;
}

footer
{
    color: #fff;
    font-family: 'Roboto';
    
    padding: 40px 0 54px;
font-weight: 400;
    background: #3D7B70;
}


footer .cont
{
    display: flex;

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

footer .cont + .cont
{
    margin-top: 62px;
}



footer .logo
{
    font-size: 16px;
    line-height: 150%;

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

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


footer .logo a
{
    color: currentColor;

    display: inline-block;

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


footer .logo img
{
    display: block;

    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}


footer .slogan
{
    margin-top: 20px;
}



footer .contacts
{
    padding-top: 9px;
}

footer .contacts + .contacts
{
    padding-top: 2px;
}



footer .time
{
    font-size: 16px;
    line-height: 19px;

    display: flex;

    letter-spacing: .04em;

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


footer .time img
{
    display: block;

    width: 19px;
    height: 19px;
    margin-right: 23px;
}



footer .phone
{
    font-size: 16px;
    line-height: 19px;

    display: flex;

    margin-top: 29px;

    letter-spacing: .04em;
}


footer .phone a
{
    color: currentColor;

    display: flex;

    text-decoration: none;

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


footer .phone img
{
    display: block;

    width: 19px;
    height: 19px;
    margin-right: 23px;
}



footer .email
{
    font-size: 16px;
    line-height: 19px;

    display: flex;

    margin-top: 29px;

    letter-spacing: .04em;
}


footer .email a
{
    color: currentColor;

    display: flex;

    text-decoration: none;

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


footer .email img
{
    display: block;

    width: 20px;
    height: 18px;
    margin-right: 22px;
}



footer .location
{
    font-size: 16px;
    line-height: 150%;

    display: flex;

    letter-spacing: .04em;

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


footer .location img
{
    display: block;

    width: 16px;
    height: 19px;
    margin-right: 17px;
}



footer .feedback_btn
{
    color: #2f2c2c;
    font-family: inherit;
    font-size: 12px;
    font-weight: inherit;
    line-height: 14px;

  /*   display: block;  */
	display: inline-block;
	
 /*   width: 180px;  */
	width: 160px;
    height: 50px;
 /*   margin-top: 40px;
    margin-left: 33px; */
	margin-left: 0;
	margin-right: 5px;

    cursor: pointer;
    letter-spacing: .04em;
    text-transform: uppercase;

    border: none;
    background: #ffd600;
}

footer .ya_rate_block {
	
}

footer .contacts_footer {
	display: flex;
	margin-top: 25px;
}

footer .contacts_footer > * {
	width: 50%;
}



footer .copyright
{
    font-size: 14px;
    line-height: 16px;

    letter-spacing: .04em;
}



footer .privacy_policy_link
{
    font-size: 14px;
    line-height: 16px;

    margin-left: 40px;

    letter-spacing: .04em;
}


footer .privacy_policy_link a
{
    color: currentColor;

    text-decoration: none;
}



footer .creator
{
    font-size: 14px;
    line-height: 16px;

    margin-left: auto;

    letter-spacing: .04em;
}


footer .creator a
{
    color: currentColor;

    text-decoration: none;
}


footer .creator span
{
    position: relative;

    display: inline-block;

    vertical-align: top;
}

footer .creator span:after
{
    position: absolute;
    top: 100%;
    left: 2px;

    display: block;

    width: 72px;
    height: 14px;

    content: '';
    pointer-events: none;

    background: url(../images/creator_logo.svg) 0 0 no-repeat;
}


.social-links {

}

.social-links__title {
    margin-bottom: 5px;
}

.social-links__content {

}

.social-links__link {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.dev {
    color: #fff;
    text-decoration: none;
    margin-right: 18px;
    letter-spacing: 1px;
    position: relative;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}

.dev:hover {
    border-bottom-color: #fff;
}

.dev:before {
    content: '';
    width: 74px;
    height: 13px;
    background: url('../images/tochka.png');
    position: absolute;
    right: -14px;
    bottom: -13px;
}

.top-link {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 51px;
    height: 51px;
    background: url('../images/top.png') 0 0 no-repeat;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.top-link.is-visible {
    opacity: 1;
    visibility: visible;
}

.top-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/top.png') 0 -51px no-repeat;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.top-link:hover:before {
    opacity: 1;
    visibility: visible;
}

.services-section {
    position: relative;
}

.services-section:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 255px;
    bottom: 60px;
    border-left: 1px solid #6aafa0;
}

.services-section:after {
    content: '';
    display: table;
    clear: both;
}

.services-section__col {
    float: left;
    width: 50%;
}

.services-section.documents_full_width:before {
	border-left: none;
}

.documents_full_width .services-section__col {
	float: none;
    width: auto;
}

.services-section__col .wrapper {
    width: 515px;
    margin: 0;
    padding: 0 0 0 37px;
}

.services-section__col:first-child .wrapper {
    margin-left: auto;
    padding: 0 37px 0 0;
}

.documents_full_width .services-section__col .wrapper {
    width: 1030px;
    margin: 0 auto !important;
    padding: 0 !important;
}

.service {

}

.service__header {
    color: #fff;
    background-color: #1b1b1b;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-section__col:first-child .service__header {
    background-position: right center;
}

.service__header-content {
    display: table;
    width: 100%;
    height: 205px;
}

.service__header-inner {
    display: table-cell;
    vertical-align: middle;
}

.service__title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 100;
    margin: 0;
    color: inherit;
}

.service__content {
    padding-top: 25px;
    padding-bottom: 45px;
}

.services-info-row {
    border-bottom: 1px solid #6aafa0;
    padding: 0 0 8px 25px;
    font-size: 16px;
    margin: 33px 0 24px;
    max-width: 880px;
}

.main-block {
    color: #fff;
    background-color: #000;
    background-size: cover;
    -webkit-transition: 1s all ease-in-out;
    transition: 1s all ease-in-out;
}

.main-block__content {
    height: 821px;
    position: relative;
}

.main-block__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    border-bottom: 12px solid #ffd600;
}

.main-block__btn {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 12px solid #ffd600;
    border-color: transparent;
    height: 66px;
    line-height: 40px;
    width: 270px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    background: rgba(255,214,0,0.75);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.main-block__btn:hover {
    background: #ffd600;
    color: #000;
}

.main-block__title {
    color: #fff;
    font-size: 46px;
    margin-bottom: 31px;
}

.main-content {
    margin: 0 0 77px 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.main-content__item {
    margin-bottom: 8px;
}

.main-content__item-link {
    display: block;
    width: 334px;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    background: #3D7B70;
    background: rgba(68,137,123,0.7);
    border: 1px solid transparent;
    border-right: none;
    border-left: 12px solid transparent;
    padding: 13px 11px 13px 18px;
    letter-spacing: 0.5px;
    position: relative;
}

.main-content__item-link:hover,
.main-content__item-link.is-active {
    border-color: #6aafa0;
    color: #3D7B70;
    background: #fff;
}

.main-content__item-link:hover:before,
.main-content__item-link.is-active:before {
    content: '';
    position: absolute;
    width: 13px;
    top: 0;
    bottom: 0;
    right: -13px;
    background: url('../images/arrow.png') left top no-repeat;
}

.main-content__item-link.is-active:before {
    background-position: left center;
}

.main-content__dropdown {
    display: none;
    position: absolute;
    left: 371px;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media only screen and (min-width : 768px) {
    .main-content__item-link.is-active + .main-content__dropdown {
        display: block;
    }
}

.main-content__dropdown-item {
    margin-bottom: 2px;
}

.main-content__dropdown-item-link {
    display: inline-block;
    background: #3D7B70;
    background: rgba(68,137,123,0.7);
    border: 1px solid transparent;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    padding: 4px 14px;
    text-decoration: none;
}

.main-content__dropdown-item-link:hover {
    color: #3D7B70;
    border-color: #6aafa0;
    background: #fff;
}

.more-link {
    color: #3D7B70;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.9px;
    display: inline-block;
    padding-right: 30px;
    position: relative;
    text-transform: uppercase;
}

.more-link:hover {
    text-decoration: underline;
}

.more-link:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../images/more-arrow.png');
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -9px;
}

.news-section {
    padding-top: 70px;
    padding-bottom: 30px;
}

.news-section__title {
    font-size: 44px;
    font-weight: 100;
    margin-bottom: 75px;
}

.news-section__header {
    margin-bottom: 39px;
}

.news-section__header:after {
    content: '';
    display: table;
    clear: both;
}

.news-section__header .news-section__title {
    float: left;
    margin: 0;
}

.news-section__header .more-link {
    float: right;
    margin-top: 10px;
}

.news-list {
    margin: 0 -14px;
    display: flex;
    flex-wrap: wrap;
}

.news-list:after {
    content: '';
    display: table;
    clear: both;
}

.news-list__item {
    width: 33.33%;
    padding: 0 14px;
    display: flex;
    margin-bottom: 50px;
}

.news-list__item:nth-child(3n+1) {
    clear: both;
}

.news-excerpt {

}

.news-excerpt__content {
    min-height: 290px;
    height: calc(100% - 50px);
}

.news-excerpt__meta {
    font-size: 12px;
    color: #000;
    margin-bottom: 16px;
}

.news-excerpt__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 22px;
    font-weight: normal;
    color: #2f2c2c;
}

.news-excerpt__title a {
    color: inherit;
    text-decoration: none;
}

.news-excerpt__title a:hover {
    color: #3D7B70;
    text-decoration: none;
}

.news-excerpt__text {
    margin: 0;
}

.news-excerpt__footer {
    border-top: 1px solid #3D7B70;
    margin-top: 20px;
    padding-top: 15px;
}

.news-excerpt__more-link {

}

.map-section {
    position: relative;
    z-index: 1;
    background: #f5f5f5;
}

.map-section__header {
    position: absolute;
    width: 1030px;
    left: 50%;
    margin-left: -515px;
    top: 61px;
    padding: 42px 37px 35px;
    background: #fff;
    z-index: 10000;
}

.map-section__header:after {
    content: '';
    display: table;
    clear: both;
}

.map-section__header-title {
    font-size: 44px;
    line-height: 60px;
    font-weight: 100;
    margin: -8px 0 0 0;
    float: left;
    width: 36%;
}

.map-section__header-content {
    font-size: 15px;
    line-height: 26px;
    float: right;
    width: 52%;
    letter-spacing: 0.6px;
}

.map {
    height: 850px;
}

.map-ballon {
    width: 354px;
    background: #fff;
    padding: 31px 40px 40px;
    position: absolute;
    border-bottom: 12px solid #ffc600;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.map-ballon:before {
    content: '';
    position: absolute;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffc600;
    left: 50%;
    margin-left: -12px;
    bottom: -24px;
}

.map-ballon__close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 25px;
    top: 25px;
    cursor: pointer;
    background: url('../images/ballon-close.png') no-repeat;
}

.map-ballon__inner {
    position: relative;
    /*padding-top: 87px;*/
    padding-top: 33px;
}

.map-ballon__region {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #b7b7b7;
    font-weight: 300;
}

.map-ballon__title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 19px;
    font-weight: normal;
    color: #2f2c2c;
}

.map-ballon__title a {
    color: inherit;
    text-decoration: none;
}

.map-ballon__title a:hover {
    color: #3D7B70;
    text-decoration: none;
}

.map-ballon__content {
    margin-bottom: 19px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    color: #444444;
}

.map-ballon__more-link {

}

/*.map ymaps[class^="ymaps-"][class$="-ground-pane"] {
    filter: grayscale(100%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
}*/

.map ymaps[class^="ymaps-"][class*="-map"] {
    z-index: auto;
    -webkit-transform: none;
}

.map ymaps[class^="ymaps-"][class$="-balloon-pane"] {
    z-index: 10001 !important;
}

.contacts {
    font-size: 16px;
}

.contacts__map {
    height: 370px;
}

.reviews {
    margin: 60px -3px 40px 0;
}

.reviews:after {
    content: '';
    display: table;
    clear: both;
}

.reviews__item {
    float: left;
    width: 25%;
    height: 321px;
    border: 1px solid #6aafa0;
    margin: 0 -1px -1px 0;
}

.reviews__item-header {
    display: table;
    width: 100%;
    border-bottom: 1px solid #6aafa0;
    background: #fff;
    text-align: center;
}

.reviews__item-header-inner {
    display: table-cell;
    vertical-align: middle;
    height: 82px;
    padding: 12px 20px;
    font-size: 16px;
}

.reviews__item-header img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.reviews__item-content {
    display: table;
    width: 100%;
    background: #f0f7f5;
    text-align: center;
}

.reviews__item-content-inner {
    display: table-cell;
    vertical-align: middle;
    height: 235px;
    padding: 12px 20px;
}

.reviews__item-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.reviews__item-content .stars .img{
    display: inline-block;
    background: url('/images/star.png') center center / cover no-repeat;
    width:16px;
    height:15px;
}

.top-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: table;
    width: 100%;
}
.related_services
{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-bottom: -10px;
}

.related_services > *
{
    margin-left: 10px;
    margin-bottom: 10px;
}

.related_services a
{
    display: block;
    /* white-space: nowrap; */
    border-width: 1px 1px 1px 10px;
    background: #6aafa0;
    padding: 15px;
    color: #ffffff;
    /* text-align: center; */
    text-decoration: none;
    transition: 0.3s linear;
}

.related_services a:hover
{
    background: #326257;
    border-color: #326257;
    color: #fff;
}

.top-links__item {
    display: table-cell;
    width: 1%;
}
.top-links__service {
    display: table-cell;
	padding-top:60px;
	padding-bottom:35px;
	float:right;
}
.top-links__news {
    display: table-cell;
	padding-top:60px;
	padding-bottom:35px;
	float:right;
}

.top-links__link {
    display: block;
    white-space: nowrap;
    border-width: 1px 1px 1px 10px;
    /* border-style: solid; */
    /* border-color: #b1c4bf #b1c4bf #b1c4bf #326257; */
    background: #6aafa0;
    padding: 15px;
    margin-right: 10px;
    margin-top: 10px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
	transition: 0.3s linear;
}

.top-links__link > *
{

}

.all_service {
    display: block;
    white-space: nowrap;
    /* border-width: 1px 1px 8px 1px; */
    /* border-style: solid; */
    /* border-color: #6aafa0 #6aafa0 #6aafa0 #6aafa0; */
    padding: 10px;
    margin-right: 10px;
    margin-top: 10px;
    color: #000;
    text-align: center;
    text-decoration: none;
	background: #ffd600;
	transition: 0.3s linear;
}
.all_news{
	display: block;
    white-space: nowrap;
    /* border-width: 1px 1px 1px 8px; */
    /* border-style: solid; */
    /* border-color: #6aafa0 #6aafa0 #6aafa0 #326257; */
    padding: 10px;
    margin-right: 10px;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
	background:#6aafa0;
	transition: 0.3s linear;
}
.all_news:hover{
	display: block;
    white-space: nowrap;
    /* border-width: 1px 1px 1px 8px; */
    /* border-style: solid; */
    /* border-color: #326257 #326257 #326257 #326257; */
    padding: 10px;
    margin-right: 10px;
    margin-top: 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
	background:#326257 ;
}

.all_service:hover {
    display: block;
    white-space: nowrap;
    /* border-width: 1px 1px 8px 1px; */
    /* border-style: solid; */
    /* border-color: #6aafa0 #6aafa0 #326257 #6aafa0; */
    padding: 10px;
    margin-right: 10px;
    margin-top: 10px;
    color: #000;
    text-align: center;
    text-decoration: none;
	background: #ffa70f;
}


.all_service_text{
	display:inline-block; 
	padding-bottom: 5px; 
	margin-left: 12px;
}
.all_service_news{
	display:inline-block; 
	padding-bottom: 5px; 
	margin-left: 12px;
	margin-right: 12px;
}

.all_service_brek{
	font-size: 25px; 
	display:inline-block; 
	vertical-align: middle; 
	height: 31px; 
	margin-left: 24px; 
	margin-right: 8px;
	/* color:#326257; */
    color: #000;
}
.all_service:hover  .all_service_brek{
    color: #000;
}
.top-links__link:hover {
    background: #326257;
    border-color: #326257;
    color: #fff;
}

.owl-carousel .owl-item
{
    position: relative;
    float: left;
    min-height: 1px;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel.owl-drag .owl-item
{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}


.owl-carousel .owl-item
{
    display: inline-block;
    float: none;
    vertical-align: top;
    white-space: normal;
}


.top-links__link2
{
    display: block;
    /* margin-left: 10px; */
    /* margin-bottom: 10px; */
    text-decoration: none;
    color: #000;
    font-weight: 600;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background: #f1f1f0;
    padding: 5px 20px;
}

.top-links__link2:hover
{
    background: #326257;
    border-color: #326257;
    color: #fff;
}



.images {
    margin: 60px 0 40px;
}

.images img {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    max-width: 100%;
    height: 300px;
    margin: 0 20px 20px 0;
}

.project__objects-list ul {
    list-style: none;
    padding-left: 0;
}


.prav {
    display: block;
    white-space: normal;
    border-width: 1px 1px 1px 10px;
    border-style: solid;
    border-color: #b1c4bf #b1c4bf #b1c4bf #326257;
    padding: 15px;
    margin-right: 10px;
    margin-top: 10px;
    color: #444444;
    text-align: center;
    text-decoration: none;
	margin-bottom: 15px;
}
#phone_our{
	display:none;
}
#phone{
	display:none;
}

.g-recaptcha > div{
	height: 54px !important;
    left: 19px;
    overflow: hidden;
    position: relative;
	border-radius: 5px;
    top: 0;
}
.g-recaptcha > div > div {
	margin-top: -8px;
}


.cyrilic li:nth-child(1)::before { content: 'а'; }
.cyrilic li:nth-child(2)::before { content: 'б'; }
.cyrilic li:nth-child(3)::before { content: 'в'; }
.cyrilic li:nth-child(4)::before { content: 'г'; }
.cyrilic li:nth-child(5)::before { content: 'д'; }
.cyrilic li:nth-child(6)::before { content: 'е'; }
.cyrilic li:nth-child(7)::before { content: 'ж'; }
.cyrilic li:nth-child(8)::before { content: 'з'; }
.cyrilic li:nth-child(9)::before { content: 'и'; }
.cyrilic li:nth-child(10)::before { content: 'к'; }
.cyrilic li:nth-child(11)::before { content: 'л'; }
.cyrilic li:nth-child(12)::before { content: 'м'; }
.cyrilic li:nth-child(13)::before { content: 'н'; }
.cyrilic li:nth-child(14)::before { content: 'о'; }
.cyrilic li:nth-child(15)::before { content: 'п'; }
#privacy-error{
    position: absolute;
}
.privacy-policy {
	display: inline-block;
	margin-left: 20px;
	margin-top: 10px;
}
.privacy-policy input {
	margin-right: 5px;
}
.privacy-policy-link a{
    color: #fff;
}
.privacy-policy a{
    color: #444;
}

/* -----------------*/

.li-counter {
    height: 1px;
}

.zak {
font-size: 36px; 
line-height: 1; 
font-weight: 100; 
margin-bottom: 24px;	
}


.principi {
    word-spacing: -5px;
    margin-left: -25px;
}

.principi__item {
    word-spacing: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding-left: 25px;
    width: 33.33333%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
    text-align: center;
}

.principi__icon{
    height: 78px;
    background-repeat: no-repeat;
    background-position: center;
}

.principi__subthesis {
    max-width: 280px;
    margin: 0 auto;
}


.aftermatch {
    display: flex;
    justify-content: space-between;
}
.m .aftermatch {
    display: block;
}
.m .aftermatch .wp-caption {
    margin: 0 auto;
}

.content.page .pdf {
    display:block;
    font-size:13px;
    line-height:20px;
    padding:15px 0 15px 50px;
    background:url(images/pdf-image.jpg) no-repeat 0 0;
    background-size:40px auto;
    text-decoration:none;
}

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

.content .js-fancy-link {
	display: inline-block;
	text-align: center;
}

.reviews_block .reviews__item {
	width: 100%;
	margin: 0 0px 3px 0;
	outline: 1px solid #6aafa0;
	border: none;
	height: 100%;
}


.reviews_block .avtor {
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
	text-align: left;
	margin-bottom: 12px;
}

.reviews_block .tekst {
	font-size: 18px;
	font-weight: 300;
	line-height: 21px;
	text-align: left;
	margin-bottom: 20px;
}

.content_feedbacks_block {
	margin-top: 30px;
	margin-bottom: 30px;
}


.reviews_block .pic_link, .reviews_block .rate {
	text-align: left;
}

.reviews_block .rate {
	margin-bottom: 13px;
	margin-top: 10px;
}

.reviews_block .owl-item {
	padding-top: 1px;
}

.reviews_block .owl-prev, .reviews_block .owl-next {
	top: 45%;
	background-size: 15px;
	background-color: white;
	height: 50px;
	width: 50px;
	background-position: center;
}


.reviews_block .owl-prev {
	left: -24px;
}

.reviews_block .owl-next {
	right: -24px;
}


.reviews_block .owl-wrapper-outer {
  width: calc(100% + 3px);
  padding-left: 1px;
}


.reviews_block .owl-item:last-child {
	padding-right: 1px;
}

.gray_star {
	filter:grayscale(100%);
}

/* Стили для блока "Заказать услугу", "Получить консультацию" */
.has_question .data_wrap
{
    position: relative;

    padding: 8px;

    border: 4px solid #f8da1a;
    background: #ecf8ff;
}


.has_question .data
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;

    padding: 50px 26px;

    background: #d7e7ef;
}


.has_question .img
{
    position: absolute;
    z-index: 2;
    bottom: -4px;
    left: 0;

    display: block;

    pointer-events: none;
}


.has_question .clouds
{
    position: absolute;
    z-index: 1;
    top: -4px;
    right: -4px;

    display: block;

    max-width: calc(100% + 8px);
    max-height: calc(100% + 8px);

    pointer-events: none;
}


.has_question .info
{
    position: relative;
    z-index: 3;

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


.has_question .info .title
{
    font-family: 'Roboto';
    font-size: 29px;
    line-height: normal;

    color: #444;
}


.has_question .info .desc
{
    font-family: 'Roboto';
    font-size: 18px;
    line-height: normal;
    line-height: 145%;

    width: 345px;
    max-width: 100%;
    margin-top: 20px;

    color: #444;
}


.has_question .btns
{
    position: relative;
    z-index: 3;

    align-self: center;

    width: 254px;
    max-width: 100%;
    margin-left: 22px;
}


.has_question .btns > * + *
{
    margin-top: 37px;
}


.has_question .btns .btn
{
    width: 100%;
}


.cookie_modal
{
    position: fixed;
    bottom: 24px;
    left: 50%;

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

    width: 440px;
    max-width: 100%;
    padding: 32px;

    z-index: 100;
    transform: translateX(-50%);

    color: #fff;
    background: rgba(0,0,0,.6);

            backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.cookie_modal.show
{
    display: flex;
}


.cookie_modal a
{
    color: #10d8a2;
}


.cookie_modal .btn
{
    display: block;

    width: 140px;
    max-width: 100%;
    height: 50px;

    font-family: inherit;
    font-size: 14px;
    line-height: 145%;

    cursor: pointer;
    transition: .2s linear;
    text-transform: uppercase;

    color: #444;
    border: none;
    background: #ffd600;
}


.cookie_modal .btn:hover
{
    color: #000;
    background: #ffff8c;
}


@media print,
(max-width: 767px)
{
    .cookie_modal
    {
        bottom: 0;

        width: 375px;
        max-width: 100%;
        padding: 15px;

        font-size: 16px;
    }


    .cookie_modal .btn
    {
        width: 116px;
        height: 48px;
    }
}



@media print,
(max-width: 1279px)
{
    .has_question .info
    {
        width: 328px;
    }


    .has_question .btns
    {
        width: 240px;
        margin-left: 28px;
    }


    .has_question .btns > * + *
    {
        margin-top: 28px;
    }
}



@media print,
(max-width: 1023px)
{
    .has_question .data
    {
        display: block;

        padding: 20px 28px 28px;
    }


    .has_question .info
    {
        width: 320px;
        margin-left: auto;
    }


    .has_question .info .title
    {
        font-size: 26px;
    }


    .has_question .info .desc
    {
        font-size: 16px;
    }


    .has_question .btns
    {
        width: 320px;
        margin-top: 28px;
        margin-left: auto;
    }


    .has_question .btns > * + *
    {
        margin-top: 20px;
    }
}



@media print,
(max-width: 767px)
{
    .has_question .img
    {
        display: none;
    }


    .has_question .info
    {
        width: 100%;

        text-align: center;
    }


    .has_question .info .title
    {
        font-size: 24px;
    }


    .has_question .info .desc
    {
        font-size: 15px;

        width: 280px;
        margin-top: 16px;
        margin-right: auto;
        margin-left: auto;
    }


    .has_question .btns
    {
        width: 100%;
        margin-top: 20px;
    }


    .has_question .btns > * + *
    {
        margin-top: 16px;
    }
}



@media print,
(max-width: 479px)
{
    .has_question .data
    {
        padding: 20px;
    }


    .has_question .info .title
    {
        font-size: 22px;
    }


    .has_question .info .desc
    {
        font-size: 14px;
    }
}

/**************** css/media.css *****************/
@media only screen and (max-width : 1199px) {
    .top-link {
        bottom: 60px;
    }
}

@media only screen and (max-width : 1060px) {
    .wrapper {
        width: 960px;
    }

    .services-section__col .wrapper {
        width: 480px;
    }
	
	.documents_full_width .services-section__col .wrapper {
		width: 960px;
	}

    .nav__list-link {
        padding: 0 46px;
    }

    .form-section__col_2 {
        padding: 0 15px;
    }

    .form-section__row {
        margin: 0 -15px;
    }

    .form-section__row-col {
        padding: 0 15px;
    }

    .map-section__header {
        width: 960px;
        margin-left: -480px;
    }

    .map-section__header-title {
        width: 40%;
    }

    .news-excerpt__content {
        min-height: 318px;
    }

    .article_text_content{
        display: block;
    }
    
    .article_content{
        display: block;
        width: initial;
    }

    .article_text{
        padding-right: 0;
        display: block;
    }

    .content-article-desc{
        display: none;
    }

    .content-article-mob{
        display: block;
    }
}

@media only screen and (max-width : 1000px) {
    h1, 
    .h1 {
        font-size: 32px;
    }

    h2, 
    .h2 {
        font-size: 28px;
    }

    h3, 
    .h3 {
        font-size: 24px;
    }

    .wrapper {
        width: 740px;
    }

    .services-section__col .wrapper {
        width: 370px;
    }
	
	.documents_full_width .services-section__col .wrapper {
		width: 740px;
	}

    .header__content {
        height: 110px;
    }

    .header__logo {
        top: 28px;
    }

    .logo__img {
        width: 140px;
        height: auto;
    }

    .header__phone {
        top: 10px;
    }

    .phone {
        font-size: 16px;
    }

    .header__order-call {
        width: 135px;
        top: 43px;
    }

    .order-call-btn {
        font-size: 12px;
    }

    .header__nav {
        right: 135px;
        top: 43px;
		left: unset;
    }
	
	

    .nav {
        font-size: 12px;
    }

    .nav__list-link {
        padding: 0 16px;
    }

    .form-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .form-section__title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .form-section__col {
        padding: 0 10px;
    }

    .form-section__col_1 {
        padding-left: 0;
    }

    .form-section__col_2 {
        padding-right: 0;
    }

    .form-section__row {
        margin: 0 -10px;
    }

    .form-section__row-col {
        padding: 0 10px;
    }

    .form-row {
        margin-bottom: 20px;
    }

    textarea {
        height: 130px;
    }

    .projects__header {
        padding-top: 24px;
    }

    .projects__title {
        font-size: 28px;
        margin-bottom: 24px;
        font-weight: 300;
    }

    .projects__nav {
        padding: 0 40px;
    }

    .projects__nav-item {
        height: 120px;
    }

    .projects__nav-link.is-active:before {
        bottom: -38px;
    }

    .projects__nav-link.is-active:after {
        bottom: -55px;
    }

    .project__title {
        margin-bottom: 50px;
    }

    .project__objects-list {
        margin-bottom: 50px;
    }

    .project__info-field {
        padding: 30px 30px 0 30px;
    }

    .project__description-field {
        padding: 100px 30px 30px 30px;
    }

    .footer__phone {
        width: 240px;
        font-size: 16px;
    }

    .footer__content {
        margin-bottom: 30px;
    }

    .footer {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .service__header-content {
        height: 150px;
    }

    .services-section:before {
        top: 175px;
        bottom: 60px;
    }

    .news-section__title {
        font-size: 32px;
        margin-bottom: 24px;
        font-weight: 300;
    }

    .main-block__title {
        font-size: 32px;
    }

    .main-content {
        margin-bottom: 120px;
    }

    .main-content__item-link {
        font-size: 14px;
        width: 310px;
        padding: 10px 5px 10px 15px;
    }

    .main-content__dropdown {
        left: 340px;
    }

    .main-content__dropdown-item-link {
        font-size: 14px;
        line-height: 22px;
    }

    .main-block__inner {
        border-bottom-width: 6px;
    }

    .main-block__btn {
        border-width: 6px;
        height: 56px;
        line-height: 44px;
    }

    .map-section {
        background: #fff;
    }

    .map-section__header {
        position: static;
        width: 740px;
        margin: 0 auto;
        padding: 20px 0 24px;
    }

    .map-section__header-title {
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 24px;
        float: none;
        width: auto;
    }

    .map-section__header-content {
        font-size: 14px;
        line-height: 24px;
        float: none;
        width: auto;
        letter-spacing: 0;
    }

    .map {
        height: 600px;
    }

    .news-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .news-section__title {
        font-size: 28px;
    }

    .news-section__header {
        margin-bottom: 24px;
    }

    .news-list__item {
        width: 50%;
    }

    .news-list__item:nth-child(3n+1) {
        clear: none;
    }

    .news-list__item:nth-child(2n+1) {
        clear: both;
    }

    .news-excerpt__content {
        min-height: 290px;
    }

    .reviews {
        margin: 30px -3px 0 0;
    }

    .top-links {
        display: block;
    }

    .top-links__item {
        display: inline-block;
        width: auto;
    }

    .images img {
        height: 200px;
        margin: 0 10px 20px 0;
    }
}

@media only screen and (max-width : 767px) {
    .text-block ol li {
        padding-left: 40px;
    }

    .text-block ol li:before {
        width: 30px;
        height: 30px;
        line-height: 26px;
        border: 2px solid #6aafa0;
        font-size: 14px;
        font-weight: 300;
        top: -5px;
    }

    .form-row {
        margin-bottom: 10px;
    }

    input[type='email'], 
    input[type='file'], 
    input[type='password'], 
    input[type='search'], 
    input[type='tel'], 
    input[type='text'], 
    input[type='url'], 
    textarea, 
    select {
        height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }

    textarea {
        height: 100px;
    }

    .form-section__row {
        margin: 0 -5px;
    }

    .form-section__row-col {
        padding: 0 5px;
    }

    .captcha {
        height: 40px;
    }

    label.error {
        margin-bottom: -8px;
    }

    .btn {
        height: 40px;
        line-height: 38px;
        font-size: 13px;
    }

    .wrapper {
        width: auto;
        margin: 0 15px;
    }

    .services-section__col .wrapper, .documents_full_width .services-section__col .wrapper {
        width: auto;
        margin: 0 15px !important;
        padding: 0 !important;
    }

    .header {
     
		background-position: 23% top;
height: 80px;
    }

    .header__content {
        height: 80px;
    }

    .header__nav {
        position: fixed;
        z-index: 1001;
        left: -100%;
        width: 100%;
        top: 0;
        bottom: 0;
        background: #000;
        background: rgba(0,0,0,0.85);
        text-align: center;
        padding: 40px 0;
        overflow-y: auto;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        opacity: 0;
        visibility: hidden;

        transition: all 0.25s ease-in-out;
    }

    html.is-nav-opened {
        overflow: hidden;
    }

    html.is-nav-opened .header__nav {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .header__nav:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        height: 100%;
    }

    .nav {
        display: inline-block;
        width: 90%;
        vertical-align: middle;
    }

    .nav__list {

    }

    .nav__list-item {
        float: none;
    }

    .nav__list-link:before {
        display: none;
    }

    .nav__list-item .submenu
    {
        display: none;
    }

    .header__nav-close {
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background: url('../images/close.png') 0 0 no-repeat;
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .header__logo {
        top: 16px;
    }

    .header__order-call {
        width: auto;
        right: 45px;
        top: 33px;
    }

    .order-call-btn {
        width: 48px;
        height: 48px;
        text-indent: -9999px;
        border: none;
        background: url('../images/phone.png') center center / cover no-repeat !important;
    }

    .header__nav-target {
        display: block;
        position: absolute;
        right: -7px;
        top: 33px;
    }

    .nav-target {
        width: 48px;
        height: 48px;
        text-indent: -9999px;
        border: none;
        background: url('../images/nav-target.png') center center /cover no-repeat !important;
    }

    .header__phone {
        top: 5px;
    }

    .phone {
        font-size: 24px;
    }

    .services-section__col {
        float: none;
        width: auto;
    }

    .services-section:before {
        display: none;
    }

    .service__title {
        font-size: 26px;
    }

    .service__header-content {
        height: 100px;
    }

    .form-section__col {
        float: none;
        width: auto;
        padding: 0;
    }

    .form-section__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .projects__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .project__info-field {
        background: #f8f8f8;
        padding: 20px;
        float: none;
        width: auto;
    }

    .project__description-field {
        background: #fff;
        padding: 20px;
        margin-left: 0;
    }

    .project__title {
        margin-bottom: 30px;
    }

    .project__objects-list li {
        margin-bottom: 18px;
    }

    .captcha-row__image {
        height: 40px;
    }

    .popup-window {
        padding: 20px;
    }

    .services-info-row {
        padding-left: 0;
    }

    .footer__info {
        float: left;
        width: 50%;
    }

    .footer__social {
        float: right;
        margin-top: 0;
    }

    .footer__phone {
        float: none;
        width: auto;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .footer__address {
        float: none;
        width: auto;
    }

    .dev {
        letter-spacing: 0;
    }

    .dev:before {
        right: -21px;
    }

    .top-link {
        width: 40px;
        height: 40px;
        background-size: 40px 80px;
        bottom: 10px;
    }

    .top-link:before {
        background-size: 40px 80px;
        background-position: 0 -40px;    
    }

    .footer__dev {
        margin-top: 0;
    }

    .projects__nav-link.is-active:before {
        border-left: 24px solid transparent;
        border-right: 24px solid transparent;
        border-bottom: 18px solid #ffc600;
        bottom: -38px;
        margin-left: -24px;
    }

    .projects__nav-link.is-active:after {
        border-left: 24px solid transparent;
        border-right: 24px solid transparent;
        border-bottom: 19px solid #f8f8f8;
        bottom: -52px;
        margin-left: -24px;
    }

    .services-info-row {
        margin-bottom: 0;
    }

    .news-section__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .news-section__header .more-link {
        margin-top: 4px;
    }

    .main-block {
        padding-top: 130px;
        padding-bottom: 20px;
        background-attachment: fixed;
    }

    .main-block__content {
        min-height: 0;
        height: auto;
    }

    .main-block__inner {
        position: static;
        border: none;
    }

    .main-block__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .main-block__btn {
        position: static;
        display: block;
        width: 100%;
        text-align: center;
    }

    .main-content {
        margin-bottom: 30px;
    }

    .main-content__item {
        margin-bottom: 8px;
    }

    .main-content__item-link {
        width: auto;
    }

    .main-content__item-link.is-active:before {
        background-position: 0 0;
    }

    .main-content__dropdown {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        margin-left: 27px;
        -webkit-transition: all 0.35s linear;
        transition: all 0.35s linear;
    }

    .main-content__item-link.is-active + .main-content__dropdown {
        visibility: visible;
        max-height: 600px;
        margin-top: 8px;
    }

    .more-link {
        font-size: 12px;
    }

    .map-section__header {
        width: auto;
        margin: 0 15px;
    }

    .map {
        height: 360px;
    }

    .map-ballon {
        width: 260px;
        padding: 15px;
        border-bottom-width: 6px;
    }

    .map-ballon__close {
        right: 10px;
        top: 10px;
    }

    .map-ballon__inner {
        padding-top: 0;
    }

    .map-ballon__region {
        position: static;
        padding-right: 20px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .map-ballon__title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .map-ballon__content {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 18px;
    }

    .map-ballon__more-link {
        font-size: 11px;
    }

    .map-ballon:before {
        bottom: -16px;
    }

    .news-list {
        margin: 0;
    }

    .news-list__item {
        float: none;
        width: auto;
        clear: both;
        padding: 0;
        margin-bottom: 32px;
    }

    .news-excerpt__content {
        min-height: 0;
    }

    .news-excerpt__title {
        font-size: 18px;
        line-height: 24px;
    }

    .news-excerpt__footer {
        margin-top: 16px;
        padding-top: 10px;
    }

    .contacts {
        font-size: 14px;
    }

    .contacts__map {
        height: 300px;
    }

    .reviews {
        margin-right: -1px;
    }

    .reviews__item {
        width: 50%;
    }

    .reviews__item_empty {
        display: none;
    }

    .top-links__item {
        display: block;
    }

    .top-links__link {
        margin: 4px 0 0 0;
        text-align: left;
        padding: 10px 15px;
        white-space: normal;
        line-height: 16px;
    }
}

@media only screen and (max-width : 514px) {
    .form-section__row {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .form-section__row .g-recaptcha > div {
        margin-bottom: 15px;
        left: unset;
        width: 100% !important;
    }

    .form-section__row  .g-recaptcha > div iframe {
        width: 100% !important;
    }

    .form-section__row .privacy-policy {
        margin-left: 5px;
        margin-top: 0;
        margin-bottom: 10px;
        -ms-align-self: flex-start;
        align-self: flex-start;
    }
    .form-section__row .privacy-policy input {
        margin-right: 5px;
    }
}
@media only screen and (max-width : 479px) {
    .form-section__row-col {
        width: 50%;
    }

    .content .js-fancy-link {
        display: block;
    }


    .form-section__row-col:last-child {
        width: 100%;
    }

    .project__objects-list li {
        margin-bottom: 10px;
    }

    .footer__info {
        float: none;
        width: auto;
        margin-bottom: 15px;
    }

    .footer__social {
        float: none;
    }

    .footer__content {
        margin-bottom: 15px;
    }

    .footer__copyright {
        float: none;
        margin-bottom: 15px;
    }

    .footer__dev {
        float: none;
    }

    .project__objects-list {
        margin-bottom: 30px;
    }

    .project__objects-list li {
        padding-left: 25px;
    }

    .reviews {
        margin-right: 0;
    }

    .reviews__item {
        width: 100%;
        margin-right: 0;
    }

    .images {
        margin: 20px 0;
    }

    .images img {
        height: 180px;
        margin: 0 10px 20px 0;
    }

    .principi__item {
        width: 100%;
    }
	
	
	footer .contacts_footer {
		flex-direction: column;
	}
	
	footer .contacts_footer > * {
		width: 100%;
	}
	
	footer .feedback_btn {
		    width: 151px !important;
    height: 45px !important;
    margin-left: 0px !important;
    margin-bottom: 10px;
	}
}

@media only screen and (max-width : 767px) {
	.footer__nav .nav__list-item {
		float: left;
		
	}
	
	.footer__nav  .nav {
		width: 100%;
		
	}
	
	.footer {
	  padding-top: 0px;
	}
}

@media print,
(max-width: 1023px)
{
	.nav__list-link {
		font-size: 12px;
	}
	
    footer
    {
        padding: 40px 0;
    }


    footer .cont + .cont
    {
        margin-top: 48px;
    }



    footer .logo
    {
        font-size: 14px;

        width: 192px;
    }



    footer .contacts
    {
        padding-top: 12px;
    }

    footer .contacts + .contacts
    {
        padding-top: 10px;
    }



    footer .time,
    footer .phone,
    footer .email,
    footer .location
    {
        font-size: 14px;
        line-height: 18px;
    }

    footer .phone,
    footer .email
    {
        margin-top: 24px;
    }


    footer .time img,
    footer .phone img,
    footer .location img
    {
        margin-right: 12px;
    }

    footer .email img
    {
        margin-right: 11px;
    }



    footer .feedback_btn
    {
        width: 160px;
        height: 51px;
    /*    margin-top: 28px; */
        margin-left: 28px;
    }



    footer .copyright
    {
        width: 100%;
    }


    footer .privacy_policy_link
    {
        margin-top: 20px;
        margin-left: 0;
    }


    footer .creator
    {
        margin-top: 20px;
    }
}



@media print,
(max-width: 767px)
{
    footer .logo
    {
        width: 100%;
        margin-bottom: 40px;
    }


    footer .slogan
    {
        margin-top: 12px;
    }



    footer .contacts,
    footer .contacts + .contacts
    {
        display: flex;
        flex-direction: column;

        width: 100%;
        padding: 0;
    }

    footer .contacts + .contacts
    {
        margin-top: 40px;
    }


    footer .contacts > *
    {
        margin-right: auto;
        margin-left: auto;
    }


    footer .copyright,
    footer .privacy_policy_link,
    footer .creator
    {
        width: 100%;

        text-align: center;
    }
}
