/* Slider */ 
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Главная */

.main-page__serveces-block_restyle {
    margin-bottom: 44px;
}

.main-page__serveces-block_restyle h2 {
    font-size: 44px;
    margin-bottom: 44px;
    margin-top: 60px;
}

.main-page__serveces-list_restyle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-page__serveces-item_restyle {
    position: relative;
}

.main-page__serveces-item_restyle a {
    border-radius: 6px;
    display: block;
    overflow: hidden;
}

.main-page__serveces-item_restyle a img {
   # border-radius: 3%;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    width: 100%;
}

.main-page__serveces-item_restyle a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.main-page__serveces-item_restyle a span {
    bottom: 28px;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    left: 24px;
    position: absolute;
}

.main-page__serveces-item_restyle a h3 {
    bottom: 28px;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    left: 24px;
    position: absolute;
}


.projects-block_restyle {
    margin-top: 100px;
}

.project-list_restyle, .projects-slider_restyle {
    list-style: none;
}

.projects-headline_restyle {
    position: relative;
}

.projects-headline_restyle a {
    border: 2px #6cbc3b solid;
    border-radius: 7px;
    color: #6cbc3b;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0px;
}

.projects-headline_restyle h2 {
    font-size: 28px;
    margin-bottom: 44px;
}

.project-list_restyle {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 0;
}

.projects-item_restyle {
    padding: 0 16px 28px;
    width: 25%;
}

.projects-img__wrapper_restyle {
    padding: 0;
    width: 100%;
}



.projects-slider_restyle {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.projects-slider_restyle .slick-arrow {
    background-color: #000;
    border: none;
    color: transparent;
    height: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 28px;
    z-index: 1;
}

.projects-slider_restyle .slick-prev {
    left: 0;
}

.projects-slider_restyle .slick-prev::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 10px;
    position: absolute;
    top: 9px;
    transform: rotate(-135deg);
    width: 10px;
}

.projects-slider_restyle .slick-next {
    right: 0;
}

.projects-slider_restyle .slick-next::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 7px;
    position: absolute;
    top: 9px;
    transform: rotate(45deg);
    width: 10px;
}

.projects-slider__item_restyle {
    cursor: pointer;
    padding: 2px 1.5px 0;
}

.projects-slider__item_restyle:focus, .projects-img__wrapper_restyle li:focus, .projects-slider_restyle .slick-arrow:focus {
    outline: none;
} 

.project-item__info-wrapper {
    border: 1px solid #efefef;
    padding: 21px 17px;
}

.project-item__number_restyle {
    color: #252525;
    display: block;
    font-weight: bold;
}

.project-item__area_restyle {
    background-color: #6cbc3b;
    border-radius: 5px;
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    margin-top: 3px;
    padding: 12px 9px;
}

.project-item__price-wrapper_restyle {
    margin-left: 4px;
    margin-top: 15px;
}

.project-item__price-wrapper_restyle span {
    color: #252525;
    display: block;
    font-weight: bold;
}

.project-item__price-wrapper_restyle .project-item__price_restyle {
    color: #6cbc3b;
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.project-item__detailed-list_restyle {

    list-style: none;
    margin-left: 4px;
    margin-top: 12px;
    padding: 0;
}

.project-item__detailed-list_show {
    display: block;
}

.project-item__detailed-list_restyle li {
    margin-top: 6px;
}

.project-item__detailed-list_restyle li span:first-of-type {
    color: #252525;
    font-size: 12px;
    font-weight: bold;
}

.project-item__detailed-list_restyle li span:nth-of-type(n+2) {
    color: #252525;
    font-size: 12px;
}

.project-item__detailed_restyle {
    background-color: #6cbc3b;
    border-radius: 5px;
    color: #FFF;
    display: block;
    font-weight: bold;
    margin-top: 14px;
    padding: 10px 8px;
    text-align: center;
    text-transform: uppercase;
}


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

.advantages-block__headline {
    color: #252525;
    font-size: 44px;
}

.advantages-block__list {
    display: grid;
    grid-column-gap: 90px;
    grid-row-gap: 60px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    list-style: none;
    margin-top: 50px;
    padding-left: 0;
}

.advantages-block__list li {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.advantages-block__list li div {
    height: 80px;
}

.advantages-block__list li span {
    color: #777;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.66em;
    text-align: center;
}

.advantages-block__more-link {
    background-color: #76b529;
    border-radius: 5px;
    color: #fff!important;
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    line-height: 100%;
    outline: 0;
    padding: 20px 28px;
    text-align: center;
}


/* Услуги */


.filter-headline-wrapper_restyle {
    background-color: #f4f4f4;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 60px;
    text-align: center;
}

.filter-headline-wrapper_restyle h2 {
    border-bottom: solid 3px #639440;
    display: inline-block;
    font-size: 28px;
    margin: 0 20px;
    padding-bottom: 10px;
    white-space: normal;
}

.filter-list {
    list-style: none;
    margin: 38px 0 0;
    padding: 0;
}

.filter-list:first-of-type {
    margin: 46px 0 0;
}

.filter-list__item > span {
    color: #252525;
    font-size: 18px;
    font-weight: bold;
}

.filter-list__item-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 16px;
    padding: 0;
}

.filter-list__item-list li {
   margin-bottom: 8px;
}

.filter-list__item-list li a {
    background-color: #f4f4f4;
    border-radius: 5px;
    color: #252525;
    display: inline-block;
    font-size: 14px;
    margin-right: 11px;
    min-width: 176px;
    padding: 10px 12px;
    text-align: center;
}

.filter-list__item-list li a:hover ,.filter-list__item-list a.activeItem{
    font-weight: bold;
    background-color: #6cbc3b;
}

.projects-wrapper__service-page {
    background-color: #f4f4f4;
}

.projects-wrapper__service-page .projects-block_restyle {
    margin-top: 50px;
    padding-top: 60px;
}

.projects-wrapper__service-page .projects-headline_restyle h2 {
    margin-bottom: 54px;
}

.projects-wrapper__service-page .project-item__info-wrapper {
    background-color: #fff;
}
#column-left.hidden-xs{
    display:block !important;
}

/* Карточка товара */

.container .breadcrumb_without-background {
    background-color: #FFF;
}

.card-product-block__bottom-border {
    border-bottom: 1px solid #e5e5e5;
}

.card-product-block {
    display: flex;
    margin-bottom: 44px;
    margin-top: 16px;
}

.card-product-block__slider-half {
    width: 50%;
}

.card-product-block__slider-half .projects-img__wrapper_restyle {
    margin-bottom: 0;
    position: relative;
}

.card-product-block__slider-half .projects-img__wrapper_restyle li img {
    width: 100%;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-arrow {
    background-color: #000;
    border: none;
    color: transparent;
    height: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 28px;
    z-index: 1;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-prev {
    left: 0;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-prev::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 10px;
    position: absolute;
    top: 9px;
    transform: rotate(-135deg);
    width: 10px;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-next {
    right: 0;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-next::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 7px;
    position: absolute;
    top: 9px;
    transform: rotate(45deg);
    width: 10px;
}

.card-product-block__slider-half .projects-img__wrapper_restyle .slick-prev:focus, .card-product-block__slider-half .projects-img__wrapper_restyle .slick-next:focus {
    outline: none;
}

.card-product-block__info-half {
    padding: 8px 28px 0;
    position: relative;
    width: 50%;
}

.card-product-block__headline {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-transform: none;
}

.card-product-block__info-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 44px;
    padding: 0;
}

.card-product-block__info-list li {
    margin-bottom: 16px;
}

.card-product-block__info-list li span {
    color: #252525;
}

.card-product-block__info-list li span:first-of-type {
    font-weight: bold;
    margin-bottom: 16px;
}

.card-product-block__price-wrapper {
    margin-top: 100px;
}

.card-product-block__price-wrapper span {
    display: block;
}

.card-product-block__price-wrapper span:first-of-type {
    color: #252525;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
}

.card-product-block__price-wrapper span:nth-of-type(2) {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
}

.card-product-block__get-smeta {
    background-color: #6cbc3b;
    border-radius: 5px;
    bottom: 0;
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    padding: 10px 8px 8px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
}

.card-product-gallery__wrapper {
    margin-bottom: 36px;
    margin-top: 36px;
}

.card-product-gallery__headline {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: none;
    text-align: start;
}

.card-product-gallery {
    margin: 0;
    padding: 0;
    position: relative;
}

.card-product-gallery .slick-arrow {
    background-color: #000;
    border: none;
    color: transparent;
    height: 28px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
    width: 28px;
    z-index: 1;
}

.card-product-gallery .slick-prev {
    left: 0;
}

.card-product-gallery .slick-next {
    right: 0;
}

.card-product-gallery .slick-prev:focus, .card-product-gallery .slick-next:focus {
    outline: none;
}

.card-product-gallery .slick-prev::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 10px;
    position: absolute;
    top: 9px;
    transform: rotate(-135deg);
    width: 10px;
}

.card-product-gallery .slick-next::after {
    border-top: 2px solid #f3f3f3;
    border-right: 2px solid #f3f3f3;
    background-color: transparent;
    content: "";
    height: 10px;
    left: 7px;
    position: absolute;
    top: 9px;
    transform: rotate(45deg);
    width: 10px;
}

.card-product-equipment {
    margin-bottom: 36px;
    margin-top: 36px;
}

.card-product-equipment__headline {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: none;
    text-align: start;
}

.card-product-equipment>span {
    display: block;
    font-size: 14px;
    margin-bottom: 28px;
}

.card-product-equipment__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.card-product-equipment__item {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    padding: 6px 0 8px;
}

.card-product-equipment__item:last-of-type {
    border-bottom: none;
}

.card-product-equipment__item span {
    color: #252525;
    font-weight: bold;
    font-style: 16px;
}

.card-product-materials {

}

.card-product-materials__filter {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 120px 0 0;
    padding: 0;
}

.card-product-materials__filter-item {
    border-bottom: 3px solid transparent;
    color: #929292;
    display: inline-block;
    margin-bottom: -1px;
    margin-right: 28px;
    padding: 8px 0;
    transition: all .3s ease-in-out;
}

.card-product-materials__filter-item_active {
    border-bottom: 3px solid #6cbc3b;
    color: #252525;
}

.card-product-materials__filter-item:hover {
    color: #252525;
}

.card-product-materials__list {
    list-style: none;
    margin-top: 44px;
    padding: 0;
}

.card-product-materials__list-item {
    border-bottom: 1px solid #f0f8eb;
    margin-top: 36px;
    padding-bottom: 36px;
}

.card-product-materials__list-item:last-of-type {
    border-bottom: none;
}

.card-product-materials__headline {
    color: #252525;
    display: none;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

.card-product-materials__type-list {
    display: block;
    grid-column-gap: 120px;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    padding: 0;
}

.card-product-materials__type-list > li {

}

.card-product-materials__type-list > li > span {
    color: #252525;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 24px;
}

.card-product-materials__info-list {
    list-style: none;
    padding: 0;
}

.card-product-materials__info-list li {
    color: #252525;
    margin-bottom: 16px;
}

.card-product-materials__info-list li:last-of-type {
    margin-bottom: 0;
}

.card-product-materials__info-list li::before {
    background-color: #6cbc3b;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 9px;
    margin-right: 16px;
    width: 9px;
}

.card-product-form__background {
    background-image: url(/image/card-product/card-product-form-background.png);
}

.card-product-form__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 100px;
    padding-top: 10px;
}

main .card-product-form__wrapper::after, main .card-product-form__wrapper::before {
    display: none;
}

.card-product-form__headline-half {
    align-items: center;
    display: flex;
}

.card-product-form__headline-half h2 {
    color: #FFF;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 60px;
    max-width: 300px;
    text-align: start;
    text-transform: none;
}

.card-product-form__form-half {

}

.card-product-form {
    display: flex;
    flex-direction: column;
}

.card-product-form input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #FFF;
    font-size: 12px;
    font-weight: bold;
    margin-top: 68px;
    padding: 12px 0;
}

.card-product-form input::placeholder {
    color: #FFF;
    opacity: 0.75;
}

.card-product-form input:focus {
    outline: none;
}

.card-product-form .card-product-form__submit {
    background-color: #6cbc3b;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 26px;
    padding: 12px 47px 9px;
    text-transform: uppercase;
    width: fit-content;
}

.card-product-form .card-product-form__submit:hover {
    color: #439647;
}

.similar-houses {
    padding-top: 80px;
}

.similar-houses h2 {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    padding-left: 16px;
    text-align: start;
    text-transform: none;
}

.card-product-gallery__item a:focus {
    outline: none;
}


/* Все проекты */


.all-projects__headline {
    color: #252525;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 12px;
    text-align: start;
    text-transform: none;
}

.all-projects__page {
    display: flex;
}

.all-projects__aside {
    margin-right: 7px;
    width: 25%;
}

.all-projects__navigation-list {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}

.all-projects__navigation-list-item {

}

.all-projects__navigation-list-item a {
    border: 1px solid #ebeef1;
    color: #252525;
    display: block;
    font-size: 14px;
    margin-bottom: -1px;
    padding: 12px 20px;
    position: relative;
}

.all-projects__navigation-list-item a:hover {
    border: 1px solid #5baa00;
    color: #252525;
    z-index: 1;
}

.all-projects__navigation-list-item_active a {
    background-color: #5baa00;
    border: 1px solid #5baa00;
    color: #FFF;
    font-weight: 600;
}

.all-projects__navigation-list-item_active a:hover {
    color: #FFF;
}

.all-project__content {
    width: 75%;
}

.all-project__content .projects-item_restyle {
    width: 33.33%;
}

.all-projects__filters-wrapper {
    border: 1px solid #ebeef1;
    margin-bottom: 16px;
    /* padding: 12px 20px; */
}

.all-projects__calculate-block {

}

.all-projects__calculate-block p {
    color: #252525;
    font-style: italic;
    font-size: 14px;
}

.all-projects__calculate-button {
    background-color: #5baa00;
    border-radius: 5px;
    color: #FFF;
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-top: 14px;
    padding: 10px 7px;
    text-align: center;
    text-transform: uppercase;
}

.all-projects__show-filter {
    background-color: #5baa00;
    border-radius: 5px;
    color: #FFF;
    display: none;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 10px 7px;
    text-align: center;
}
.card-product-materials__type-list >  li{
    margin-bottom:20px;
}
.card-product-materials__list{
    display:none;
}
.card-product-materials__list.tab-item1{
    display:block;
}
.card-product-materials__filter-item{
    cursor:pointer;
}
.project-item__detailed-list_restyle-wrapper{
    display:none;
    background-color:#fff;
}
.projects-item_restyle:hover .project-item__detailed-list_restyle-wrapper {
     display:block;
 }

.all-projects__filters-wrapper #column-left{
    width: 100%;
    padding: 0;
}
.projects-img__wrapper_restyle{
    cursor:pointer;
}
.projects-item_restyle{
    height:465px;
    overflow:visible;
}
.projects-item_restyle:hover{
    z-index:100;
}
.project-item__info-wrapper{
    background-color:#fff;
}
/* Адаптив */


@media (max-width: 1200px) {
    .projects-block_restyle .projects-item_restyle, .similar-houses .projects-item_restyle  {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 33.33%;
    }

    .projects-block_restyle .projects-img__wrapper_restyle, .projects-block_restyle .projects-slider_restyle, .projects-block_restyle .project-item__info-wrapper {
        width: 203px;
    }

    .similar-houses .projects-img__wrapper_restyle, .similar-houses .projects-slider_restyle, .similar-houses .project-item__info-wrapper {
        width: 203px;
    }

    .advantages-block__list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .similar-houses h2 {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .projects-headline_restyle {
        text-align: center;
    }

    .projects-headline_restyle a {
        margin-bottom: 40px;
        position: static;
    }

    .projects-headline_restyle h2 {
        margin-bottom: 32px;
    }

    .main-page__serveces-list_restyle {
        grid-template-columns: 1fr 1fr;
    }

    .card-product-block__get-smeta {
        margin-top: 28px;
        position: static;
    }

    .card-product-materials__type-list {
        grid-column-gap: 60px;
    }

    .all-project__content .projects-item_restyle {
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 33.33%;
    }

    .all-project__content .projects-img__wrapper_restyle, .all-project__content .projects-slider_restyle, .all-project__content .project-item__info-wrapper {
        width: 203px;
    }

    .all-projects__page {
        flex-wrap: wrap;
    }

    .all-projects__aside {
        margin-right: 0;
        width: 100%;
    }

    .all-project__content {
        margin-top: 40px;
        width: 100%;
    }

    .all-projects__calculate-block p {
        display: none;
    }

    .all-projects__calculate-block {
        bottom: 0;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 100
    }

    .all-projects__show-filter {
        display: block;
    }

    .all-projects__navigation-list, .all-projects__filters-wrapper {
        display: none;
    }

    .all-projects__aside_show-filter .all-projects__navigation-list, .all-projects__aside_show-filter .all-projects__filters-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .advantages-block__list {
        grid-template-columns: 1fr 1fr;
    }

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

    .card-product-block {
        flex-wrap: wrap;
    }

    .card-product-block__slider-half, .card-product-block__info-half {
        width: 100%;
    }

    .card-product-block__info-half {
        padding-top: 40px;
        text-align: center;
    }

    .card-product-block__price-wrapper {
        margin-top: 40px;
    }

    .card-product-gallery__item a img {
        margin: 0 auto;
    }

    .card-product-form__wrapper {
        grid-template-columns: 1fr;
    }

    .card-product-form__headline-half {
        justify-content: center;
    }

    .card-product-form__headline-half h2 {
        text-align: center;
    }

    .card-product-form .card-product-form__submit {
        margin: 26px auto 0;
    }

    body #offer-link-popup {
        bottom: 0;
        left: 0;
    }
}

@media (max-width: 700px) {
    .projects-block_restyle  .projects-item_restyle, .similar-houses .projects-item_restyle, .all-project__content .projects-item_restyle {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .main-page__serveces-list_restyle {
        grid-template-columns: 1fr;
    }

    .projects-block_restyle  .projects-item_restyle, .similar-houses .projects-item_restyle, .all-project__content .projects-item_restyle {
        width: 100%;
    }

    .filter-list__item-list {
        justify-content: center;
    }

    .filter-headline-wrapper_restyle h2 {
        font-size: 30px;
        word-break: break-all;
    }

    .card-product-materials__type-list {
        grid-row-gap: 28px;        
        grid-template-columns: 1fr;
    }

    .card-product-materials__filter {
        margin-top: 40px;
    }
}

@media (max-width: 450px) {
    .advantages-block__list {
        grid-template-columns: 1fr 1fr;
		grid-column-gap: 0;
    }
}

/* фильтр во "все проекты" */

#block_filter_vier {
    margin-bottom: 0;
}

#filter_vier span {
    text-transform: none;
}

#filter_vier .text_param {
    color: #888;
    font-size: 14px;
}

#filter_vier .strel_hid_fa i {
    font-size: 14px!important;
}

#filter_vier .link_fv .checkb:before {
    background-position: -30px -1px;
}

#filter_vier .input_slider input {
    padding: 4px;
}

#filter_vier .input_slider input:focus {
    outline: none;
}

#filter_vier .irs-from, #filter_vier .irs-to {
    background-color: #5baa00;
}

#filter_vier .irs-slider.from, #filter_vier .irs-slider.to {
    cursor: pointer;
}

#name_filter {
    padding-top: 20px;
}

.block_fv.prs {
    border-bottom: 1px solid #ebeef1;
    padding: 0 12px;
}

.block_fv.attrb > .block_param {
    border-bottom: 1px solid #ebeef1;
    margin-bottom: 0;
    padding: 3px 12px;
}

.block_fv.attrb > .block_param:last-of-type {
    border-bottom: none;
}

.review-bottom {
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
}

.review-bottom a {
    align-items: center;
    background-color: #e2e2e2;
    border-radius: 40px;
    color: #515151;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    transition-duration: .3s;
}

.review-bottom a:hover {
    color: #6cbc3a;
}

.review-bottom a svg {
    margin-right: 6px;
    fill: #777777;
}

.review-bottom time {
    background-color: #e2e2e2;
    border-radius: 40px;
    color: #515151;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
}

@media (max-width: 992px) {
    .review-bottom a {
        padding: 8px 12px;
    }

    .review-bottom time {
        padding: 8px 12px;
    }
}

@media (max-width: 420px) {
    .review-bottom {
        flex-direction: column;
    }

    .review-bottom a {
        justify-content: center;
        margin-bottom: 8px;
    }

    .review-bottom time {
        text-align: center;
    }
}

.header_contacts div:last-of-type a {
    overflow: hidden;
}

@media (width: 768px) {
    #menu .dropdown-menu {
        display: none!important;
    }
}

@media (max-width: 1060px) {
    .header_contacts {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .header_contacts div {
        margin-right: 0;
    }

    .header_contacts div:first-of-type {
        display: none;
    }
}

@media (max-width: 992px) {
    .header_contacts div:last-of-type a {
        text-align: center;
    }

    .header_contacts {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .header_contacts p {
        font-size: 14px;
        line-height: 24px;
    }

    .header_contacts div:last-of-type a {
        line-height: 40px;
        height: 40px;
    }

    #menu .nav > li > a {
        padding-left: 15px !important;
    }
}

@media (max-width: 713px) {
    .header_contacts {
        grid-template-columns: 190px 1fr;
    }
}

@media (max-width: 620px) {
    .header_contacts div:last-of-type {
        display: none;
    }

    .header_contacts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header_contacts p {
        font-size: 12px;
        line-height: 20px;
    }
}

footer a {
    word-wrap: break-word;
}


footer {
    background-color: #212121;
    padding: 0;
}

.footer-row {
    display: grid;
    gap: 24px 12px;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 32px;
}

.footer-row::before, .footer-row::after {
    display: none;
}

.footer-item__main-link {
    color: #68b13a;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 24px;
    padding: 2px 0;
    text-transform: none;
    transition: .2s all;
}

.footer-item__list-link {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.footer-item__list-link-item {
    padding: 0;
}

.footer-item__list-link-item a {
    color: #FFF;
    font-weight: 700;
    display: inline-block;
    text-transform: none;
    padding: 2px 0;
    transition: .2s all;
}

.footer-item__list-link-item a:hover {
    color: #68b13a;
}

.footer-bottom__wrapper {
    border-top: 1px solid #383838;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 33.333% 66.666%;
    padding: 15px;
    position: relative;
}

.footer-bottom::before, .footer-bottom::after {
    display: none;
}

.footer-logo {
    align-items: center;
    display: flex;
    width: fit-content;
}

.footer-logo svg {
    fill: #FFF;
    margin-right: 24px;
    transition: .2s all;
}

.footer-logo span {
    color: #FFF;
    text-transform: none;
    transition: .2s all;
}

.footer-logo:hover svg {
    fill: #68b13a;
}

.footer-logo:hover span {
    color: #68b13a;
}

.footer-about__wrapper {
    align-items: center;
    display: flex;
}

.footer-about {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-about span {
    color: #68b13a;
}

@media (max-width: 1200px) {
    .footer-bottom {
        gap: 20px;
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 768px) {
    .footer-row {
        gap: 0;
        grid-template-columns: 1fr;
        padding: 24px 0;
    }

    .footer-about {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .footer-item__main-link {
        margin: 0 0 8px;
    }

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

@media (max-width: 576px) {
    .footer-logo svg {
        margin-right: 8px;
    }

    .footer-logo span {
        font-size: 13px;
    }
}

.main h3 {
    word-break: break-word;
}

.uavc-list {
    list-style: none;
}




/* restyle from 10.09.2020 */

footer {
    margin-top: -20px;
}

@media (max-width: 576px) {

    #bannerpro0 .text-bannerpro {
        padding: 12px;
    }

    .main_slider div {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .main_slider a {
        font-size: 12px;
        padding: 6px;
    }

    .main-headline {
        font-size: 24px;
    }

    .main h1.main-headline, .main h3.main-headline {
        font-size: 24px;
    }

    .main-text {
        font-size: 18px;
        text-align: center;
    }

    .main-page__serveces-block_restyle h2 {
        font-size: 24px;
        margin: 0 auto 24px;
    }

    .projects-block_restyle {
        margin-top: 60px;
    }

    .projects-headline_restyle h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .projects-block_restyle .projects-img__wrapper_restyle, .projects-block_restyle .projects-slider_restyle, .projects-block_restyle .project-item__info-wrapper {
        width: 290px;
    }

    .projects-block_restyle .projects-img__wrapper_restyle .slick-slide img {
        width: 100%;
    }

    .main-page__serveces-item_restyle a h3 {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
    }

    .landgreen-headline {
        margin-bottom: 24px!important;
        font-size: 24px!important;
    }

    .landgreen-text {
        font-size: 18px!important;
    }

    .landgreen .uavc-list {
        padding: 0;
    }

    .landgreen .uavc-list-icon {
        margin-right: 12px!important;
    }

    .landgreen .uavc-list-content .aio-icon {
        height: 1em;
        width: 1em;
        line-height: 0.7em;
    }

    .landgreen .uavc-list-content .aio-icon .fa {
        font-size: 16px;
    }

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

    .landgreen.main {
        padding-bottom: 20px;
    }

    .main h2.advantages-block__headline {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .advantages-block__list li div {
        height: 68px;
    }

    .advantages-block__list li span {
        font-size: 16px;
    }

    .advantages-block__list {
        grid-row-gap: 40px;
    }

    .landwood-headline {
        font-size: 24px!important;
    }

    .landwood p {
        line-height: 24px;
    }

    .reviews-headline {
        font-size: 24px!important;
        margin-bottom: 24px!important;
    }

    .reviews-video {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        margin-bottom: 12px;
    }
	
	.video-box {
		position: absolute !important;
 left: 0;
  height: 100% !important;
	}
    
    .reviews-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .main h2.about-headline {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .about-video {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        margin-bottom: 12px;
    }

    .about-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .stocks-headline {
        font-size: 24px!important;
        margin-bottom: 24px;
    }

    .stocks-subheadline {
        font-size: 24px!important;
        margin-bottom: 24px!important;
    }

    .margin-b-mobile {
        margin-bottom: 40px;
    }

    .cat-menu-effect .cat-menu-info {
        background-color: rgba(0,0,0,.75);
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}
.how .advantages-block__list {
    grid-template-columns: 1fr 1fr 1fr;
}


	
	.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {

    
    background-color: #6cbc3b;
    border-color: #6cbc3b;

}

.pagination > li > a, .pagination > li > span {

   font-weight: bold;
    color: #6cbc3b;
}
.pagination-wrapper{
	text-align:center;
	margin-bottom:32px;
}
.credit-button{
	right:0;
	background-color:#252525;
	color:#FFF;
}
.credit-button:hover{
	color:#FFF;
}
