html, body 
    {
    height: 100%;
    }
body 
    {
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    background-color: #fff;
    }

* html #wrap 
    {
    height: 100%;
    }
    body #wrap 
        {
        min-height: 100%;
        width: 100%;
        margin: auto;
        position: relative;
        }



/* Variables */        
:root
    {
    --main-color: #4D4D4D;
    --active-color: #b5b5b5;
    --dark-bg: #2e2e2e;
    --header-height: 60px;
    }


.box_click
    {
    cursor: pointer;
    }


/* Hamburger button */
.mm_button
    {
    display: block;
    width: 35px;
    padding: 5px 10px;
    cursor: pointer;
    }
    .mm_button span 
        {
        background: #fff;
        display: block;
        height: 2px;
        width: 100%;
        margin: 6px 0;
        border-radius: 2px;
        transition: transform 0.5s ease-in-out, opacity 0.5s linear;
        }
    .mm_button.active span:nth-child(1)  { transform: translate(0, 8px) rotate(45deg)  }
    .mm_button.active span:nth-child(2)  { opacity: 0 }
    .mm_button.active span:nth-child(3)  { transform: translate(0, -8px) rotate(-45deg) }
    

.round_btn
     {
     display: block;
     background: #D9D9D9;
     padding: 8px 20px;
     border: 0;
     border-radius: 9999px;
     color: #000;
     text-transform: lowercase;
     font-size: 14px;
     transition: background 0.3s ease-in-out, color 0.5s ease-in-out;
     }
     .round_btn:hover
         {
         background: #fff;
         color: #000;
         cursor: pointer;
         }

.discuss_float_btn
    {
    display: none;
    position: fixed;
    width: 160px;
    left: 10px;
    bottom: 10px;
    }
    .discuss_float_btn .discuss_project
        {
        /*
        font-family: 'PT Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 12.6668px;        
        text-align: center;
        */
        }


.more_projects_arrow
    {
    background: var(--dark-bg);
    margin: 0 -20px;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    cursor: pointer;
    }
    .more_projects_arrow .arrow
        {
        margin: 10px auto;
        width: 40px;
        height: 22px;
        background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8" standalone="no"%3F><svg width="39.511093" height="21.743855" viewBox="0 0 39.511093 21.743855" fill="none" version="1.1" id="svg1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs1" /><path d="M 0.24999941,0.43301304 19.749999,11.691308 l 19.5,-11.25829496" stroke="%23d9d9d9" id="path1" /><path d="M 0.25007465,9.907964 19.75559,21.166451 39.261104,9.907964" stroke="%23d9d9d9" id="path1-6" style="stroke-width:1.00016" /></svg>');
        background-repeat: no-repeat;
        background-size: 100% auto;
        animation: arrow_bounce 2s infinite ease-in-out;
        }
    .more_projects_arrow:hover .arrow
        {
        }



@keyframes arrow_bounce {
    0%     { transform: translateY(0);    }
    50%    { transform: translateY(8px);  }
    100%   { transform: translateY(0);    }
    }


.lang_bar
    {
    position: relative;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 60px;
    }
    .lang_bar .current
        {
        cursor: pointer;
        position: absolute;
        text-align: center;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        }

        .lang_bar .current:after
            {
            display: block;
            position: absolute;
            top: 0;
            right: 5px;
            font-size: 12px;
            content: '▼';
            transform: scaleY(0.5);
            transition: transform 0.3s ease-in-out;
            }
            .lang_bar .current.active:after
                {
                transform: scaleY(-0.5);
                }
    
    
    .lang_bar .lang_items
        {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 5px 0;
        z-index: 9999;
        text-align: center;
        background: var(--dark-bg);
        }
        .lang_bar .lang_items a
            {
            display: block;
            padding: 5px 10px;
            color: #fff;
            }
        .lang_bar .lang_items a:hover,
        .lang_bar .lang_items a.active
            {
            color: var(--active-color);
            }


section,
.container,
.row
    {
    position: relative;
    margin: 0 auto;
    }


a
    {
    color: var(--main-color);
    text-decoration: none;
    }
    a:hover
        {
        color: var(--active-color);
        }

p
    {
    margin-bottom: 10px;
    color: var(--main-color);
    }


/* Main elements */
h1,h2,h3
    {
    color: var(--main-color);
    margin: 15px 0 25px 0; 
    }


h1
    {
    font-size: 40px;
    }

h2,
.h2_like
    {
    font-size: 25px;
    font-weight: 600;
    }

.btn
    {
    
    }

input
    {
    padding: 5px 20px;
    font-size: 18px;
    }




/* Crumbreads */
.crumbreads
    {
    padding: 0 5px 5px 0;
    }
    .crumbreads a,
    .crumbreads span
        {
        text-decoration: none;
        font-size: 14px;
        }
        .crumbreads a:hover 
            {
            text-decoration: underline;
            }
        .crumbreads > span + span::before 
            {
            padding: 0 5px;
            color: #000;
            content: "/ ";
            }



.soc_icons
    {
    display: flex;
    gap: 15px;
    }
    .soc_icons a
        {
        display: flex;
        align-items: center;
        text-transform: lowercase;
        }
        .soc_icons a img
            {
            width: 24px;
            height: auto;
            }
.zoom
    {
    transition: all 0.5s ease;
    }
.zoom:hover
    {
    transform: scale(1.2);
    }


.to_top
    {
    display: block;

    height: 30px;
    width: 80px;

    position: fixed;
    bottom: -100px;
    left: calc(50% - 40px);
    text-align: center;
    border-radius: 5px;
    align-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 9999; 
    transition: bottom 0.5s ease;
    }
    .to_top img
        {
        height: 70%;
        width: auto;
        }
.to_top.active
    {
    bottom: 50px;
    }



header
    {
    position: sticky;
    top: 0;
    background-color: var(--dark-bg);
    color: #fff;
    height: var(--header-height);
    padding: 0 15px;
    z-index: 9999;
    }
    header > .container
        {
        height: 100%;
        }
    header a
        {
        color: #fff;
        display: flex;
        align-items: center;
        }
    header p
        {
        margin: 0;
        }

    header .col_1,
    header .col_3
        {
        flex: 1 1 20%;
        }
    header .col_2
        {
        flex: 0 0 100px;
        }
    header .slogan
        {
        white-space: nowrap;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 15%;
        }


    header .col_1 { justify-content: flex-start }
    header .col_2 { justify-content: center     }
    header .col_3 { justify-content: flex-end   }


    header .col_1,
    header .col_3
        {
        gap: 10px;
        }
    header .col_2 img.logo
        {
        width: 98px;
        height: auto;
        }

    header .phones
        {
        margin-left: 20px;
        }

    header .zooi_about_btn
        {
        height: 16px;
        transition: transform 0.5s linear;
        }
    header .zooi_about_btn.active
        {
        transform: rotate(90deg);
        }

    header .zooi_about_content
        {
        background-color: #fff;
        position: absolute;
        top: var(--header-height);
        right: -15px;
        transform: scaleX(0);
        transform-origin: top right;
        width: calc(50% + 15px);
        height: 100vh;
        overflow-y: scroll;
        border: 1px #e3e3e3 solid;
        padding: 10px 50px 100px 50px;
        box-sizing: border-box;
        transition: transform 0.5s ease-in-out;
        z-index: 100;
        }
        header .zooi_about_content a
            {
            display: inline;
            color: #000;
            text-decoration: underline;
            }
            header .zooi_about_content a:hover
                {
                color: var (--active-color);
                }
        header .zooi_about_content.active
            {
            transform: scaleX(1);
            }
        header .zooi_about_content p
            {
            margin-bottom: 15px;
            }




    header .tm
        {
        position: absolute;
        top: var(--header-height);
        padding: 20px 0;
        left: -15px;
        background-color: var(--dark-bg); 
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out;
        }
        header .tm.active
            {
            transform: translateX(0);
            }
        header .tm a
            {
            position: relative;
            display: flex;
            align-items: center;
            padding: 10px 90px 10px 70px;
            font-size: 18px;
            }
            header .tm a:hover,
            header .tm a.active
                {
                background: #484848;
                }
        header .tm a.carret:after
            {
            display: block;
            content: ' ';
            margin-left: 10px;

            border-left:  5px solid transparent;
            border-right: 5px solid transparent;
            border-top:   7px solid currentColor;
            transition: transform 0.3s ease-in-out;
            }
        header .tm a.carret.open:after
            {
            transform: scaleY(-1);
            }

        header .subitems
            {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            }
            header .subitems.open
                {
                max-height: 300px;
                }
        header .subitems a
            {
            padding-left: 90px;
            }



.black_squares
    {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    }
    .doc_type_zooi_menu .black_squares,
    .doc_type_zooi_project_category .black_squares
        {
        display: flex;
        justify-content: center;
        margin: 0 -20px;
        }
        .doc_type_zooi_menu .black_squares .item,
        .doc_type_zooi_project_category .black_squares .item
            {
            flex: 1;
            }


    .black_squares .item
        {
        aspect-ratio: 1 / 1;
        position: relative;
        overflow: hidden;
        justify-content: center;
        }

        /* Project menu */
        .id_161 .black_squares .item
            {
            aspect-ratio: 1 / 1.5;
            }
        
        .black_squares .item .text
            {
            padding: 20px;
            width: 100%;
            transition: all 1s ease;
            }
        .black_squares .item .text a
            {
            display: block;
            text-align: center;
            font-size: 20px;
            text-transform: lowercase;
            color: #fff;
            }
        .id_161 .black_squares .item .text a
            {
            font-size: 32px;
            }

        
        .black_squares .item .text .short_content
            {
            max-height: 0;
            overflow: hidden;
            transition: max-height 1s ease;
            box-sizing: border-box;
            margin-top: 20px;
            }
            .black_squares .item .text .short_content p
                {
                color: #fff;
                }

        .black_squares .item .bg
            {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #e3e3e3;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -1;
            transform: scale(1.1);
            transition: all 1s ease;
            }
            .black_squares .item .bg .mask
                {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(41,41,41,0.7);
                opacity: 1;
                transition: all 1s ease;
                }

        .black_squares .item:hover .bg
            {
            transform: scale(1.2);
            }
            .black_squares .item:hover .bg .mask
                {
                opacity: 0;
                }

        
        .black_squares .item:hover .text
            {
            background: rgba(0,0,0,0.7);
            transform: scale(1.2);
            }
        
        .black_squares .item:hover .text .short_content
            {
            max-height: 250px;
            }



.doc_type_zooi_menu .site_sections,
.doc_type_zooi_project_list .site_sections
    {
    margin: 0 -20px;
    }
    .site_sections .item
        {
        display: flex;
        flex-wrap: nowrap;
        }
    .doc_type_zooi_project_list .site_sections .item .text,
    .doc_type_zooi_project_list .site_sections .item .gallery
        {
        box-sizing: border-box;
        }

        .site_sections .item:nth-child(even) .text    { order: 2 }
        .site_sections .item:nth-child(even) .gallery { order: 1 }


        .site_sections .item .text 
            {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-weight: bold;
            padding: 50px;
            }
        .site_sections .item .text .announce
            {
            font-weight: normal;
            }
            .site_sections .item .text a
                {
                display: block;
                font-size: clamp(16px, 5vw, 40px);
                margin-bottom: 20px;
                }

        .site_sections .item .text .short_content
            {
            width: 100%;
            }

        .site_sections .item .gallery,
        .site_sections .item .text a
            {
            transition: all 0.2s ease-in-out;
            }

        .site_sections .item:hover .gallery
            {
            opacity: 0.8;
            }
        .site_sections .item:hover .text a
            {
            color: var(--active-color);
            }


        .site_sections .item .text,
        .site_sections .item .gallery 
            {
            flex: 0 0 50%;
            box-sizing: border-box;
            }

        .site_sections .item .gallery 
            {
            aspect-ratio: 1 / 1;
            background-position: center center;
            background-size: cover;
            }

            


.site_sections.project_list .text
    {
    padding: 100px;
    }
.project_list .short_content
    {
    font-weight: 200;
    }
    .project_list .short_content .title
        {
        font-weight: 600;
        margin: 60px 0 10px 0;
        color: var(--project-color);
        }

    .project_list .short_content .path
        {
        display: inline-block;
        color: #fff;
        background-color: var(--project-color);
        padding: 5px 10px;
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 10px;
        }
    .project_list .short_content .props 
        {
        font-size: 12px;
        text-transform: uppercase;
        color: var(--project-color);
        }
        .project_list .short_content .props span:not(:last-child):after,
        .doc_type_zooi_project .intro .col_2 .props span:not(:last-child):after

            {
            display: inline;
            content: '•';
            }
    .project_list .coda
        {
        margin-top: 70px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        }
        .project_list .coda .attrs
            {
            color: #606060;
            font-size: 14px;
            }
        .site_sections .item .text .coda .more_link
            {
            display: inline-block;
            color: var(--project-color);

            font-size: 14px;
            padding: 0;
            margin: 0;
            border-bottom-width: 1px;
            border-bottom-style: solid;
            border-color: var(--project-color);
            }


.top_5_projects
    {
    }
    .top_5_projects h2
        {
        text-align: center;
        font-size: clamp(16px, 5vw, 40px);
        padding: 20px 0;
        margin: 0;
        background-color: var(--dark-bg);
        color: #fff;
        }
    .top_5_projects .site_sections
        {
        }

    .top_5_projects .site_sections .item:nth-child(even) .text    { order: 1 }
    .top_5_projects .site_sections .item:nth-child(even) .gallery { order: 2 }

    .top_5_projects .site_sections .item:nth-child(odd) .text    { order: 2 }
    .top_5_projects .site_sections .item:nth-child(odd) .gallery { order: 1 }


.doc_type_zooi_project
    {
    --img-size: 720px;
    }
    .doc_type_zooi_project .intro
        {
        padding: 50px;
        margin: 0 -20px;
        background-color: var(--project-color);
        }
    .doc_type_zooi_project .intro h1,
    .doc_type_zooi_project .intro p
        {
        color: #fff;
        }
    .doc_type_zooi_project .intro h1
        {
        margin: 0;
        padding: 0;
        font-weight: 200;
        margin-bottom: 10px;
        }
    .doc_type_zooi_project .intro .dash
        {
        height: 2.5px;
        width: 30px;
        background: #fff;
        }

    .doc_type_zooi_project .intro .col_1,
    .doc_type_zooi_project .intro .col_2
        {
        flex: 0 0 50%;
        }
    .doc_type_zooi_project .intro .col_2
        {
        justify-content: center;
        text-align: center;
        text-transform: uppercase;
        color: rgba(255,255,255,0.7);
        line-height: 26px;
        }
        .doc_type_zooi_project .intro .col_2 .attrs
            {
            text-transform: lowercase;
            border-top: 1px rgba(255,255,255,0.7) solid;
            margin-top: 20px;
            padding-top: 20px;
            }
    .doc_type_zooi_project .intro .text
        {
        margin-top: 50px;
        }


    .doc_type_zooi_project .gallery
        {
        margin: 0 -20px;
        
        }
        .doc_type_zooi_project .item .text,
        .doc_type_zooi_project .item .img
            {
            width: 50%;
            box-sizing: border-box;
            }
        .doc_type_zooi_project .item .text
            {
            order: 2;
            text-align: center;
            font-size: 18px;
            padding: 50px;
            }
        .doc_type_zooi_project .item .img
            {
            order: 1;
            height: var(--img-size);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            }
            .doc_type_zooi_project .item .img img
                {
                display: none;
                }
        .doc_type_zooi_project .item .img a
            {
            display: block;
            height: 100%;
            }

        .doc_type_zooi_project .item:nth-child(even) .text { order: 1 }
        .doc_type_zooi_project .item:nth-child(even) .img  { order: 2 }


.other_projects .slider-outer-wrap
    {
    position: relative;
    margin: 0 -15px;
    }
    .other_projects .swiper-container
        {
        height: 200px;
        }


.index .swiper-container
    {
    height: 200px;
    width: 100%;
    }
    .swiper-container .swiper-slide
        {
        background-size: cover;
        background-position: center center;
        }
        .swiper-container .swiper-slide a
            {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            color: #fff;
            text-transform: uppercase;
            font-size: 18px;
            font-weight: bold;
            transition: background-color 0.3s ease-in-out;
            text-shadow: 2px 2px 10px rgba(0,0,0,1);
            }
        .swiper-container .swiper-slide a:hover
            {
            background-color: rgba(0,0,0,0);
            }

.other_projects .slider-outer-wrap .prev,
.other_projects .slider-outer-wrap .next
    {
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    width: 40px;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 34.075 34.075" xml:space="preserve"><g><g><path style="fill:%23FFFFFF;" d="M24.57,34.075c-0.505,0-1.011-0.191-1.396-0.577L8.11,18.432c-0.771-0.771-0.771-2.019,0-2.79 L23.174,0.578c0.771-0.771,2.02-0.771,2.791,0s0.771,2.02,0,2.79l-13.67,13.669l13.67,13.669c0.771,0.771,0.771,2.021,0,2.792 C25.58,33.883,25.075,34.075,24.57,34.075z"/></g></g></svg>');
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
    }
.other_projects .slider-outer-wrap .prev:hover,
.other_projects .slider-outer-wrap .next:hover
    {
    opacity: 1;
    }

.other_projects .slider-outer-wrap .next
    {
    left: auto;
    right: 0;
    transform: rotate(180deg);
    }
.other_projects .slider-outer-wrap .swiper-button-disabled  
    {
    opacity: 0;
    }

.main_content
    {
    padding: 5px 20px 20px 20px;
    }


.question_form_wrap input
    {
    width: 100%;
    margin: 10px;
    box-sizing: border-box;
    }
.question_form_wrap input:nth-child(1),
.question_form_wrap input:nth-child(2)
    {
    width: 46%;
    }



footer
    {
    background: var(--dark-bg);
    padding: 50px 0;
    }
    footer,
    footer p,
    footer a
        {
        color: #fff;
        }

    footer .footer_h2
        {
        text-align: center;
        margin: 0 auto 50px;
        }

    footer .contacts_bar    
        {
        padding: 50px 5%;
        }
        footer .col_2
            {
            text-align: right;
            }
            footer .col_2 .lang_items a
                {
                text-transform: capitalize;
                }
            footer .col_2 .lang_items .active
                {
                text-decoration: underline;
                }
            footer .col_2 .current
                {
                display: none;
                }
            footer .col_2 .soc_icons
                {
                margin-top: 30px;
                justify-content: flex-end;
                }

    footer .container:first-child
        {
        border-bottom: 1px #fff solid;
        }
        footer .discuss_form.footer .form_elements
            {
            padding: 0 15%;
            }
        footer .discuss_form.footer .logo_wrap,
        footer .logo_wrap.footer_2
            {
            display: none;
            }
    
    footer .discuss_form.footer .info  input[type="text"],
    footer .discuss_form.footer .info  input[type="email"]
        {
        background-color: var(--dark-bg);
        border: 0;
        border-bottom: 1px #fff solid;
        font-size: 14px;
        padding: 5px 0;
        margin: 5px 0;
        color: #fff;
        }

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



/* Progress bar */
@-webkit-keyframes progress {to {background-position: 30px 0;}}
@-moz-keyframes progress {to {background-position: 30px 0;}}
@keyframes progress {to {background-position: 30px 0;}}
.barBg {width:100%;  height:15px;    border-radius: 8px; margin-bottom:5px;}
.bar {background: #7aff32;  height:30px;    height: 15px;   border-radius: 4px;}
.barFill {
    width: 100%;
    height: 15px;
    border-radius: 20px;
    -webkit-animation: progress 1s linear infinite;
    -moz-animation: progress 1s linear infinite;
    animation: progress 1s linear infinite;
    background-repeat: repeat-x;
    background-size: 30px 30px;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.hundred {  width: 100%;}   
.cornflowerblue {   background-color: CornflowerBlue;   box-shadow:inset 0px 0px 6px 2px rgba(255,255,255,.3);}



/* ============================================================================ */
/* Планшет - меньше 1700px  =================================================== */
/* ============================================================================ */
@media (max-width: 1700px) {
    
    header,
    footer,
    section
        {
        padding: 0;
        }

    .doc_type_zooi_menu .black_squares,
    .doc_type_zooi_project_category .black_squares
        {
        display: flex;
        justify-content: center;
        margin: 0 -20px;
        }

footer .discuss_form.footer .form_elements
    {
    padding: 0 5%;
    }


}


/* ============================================================================ */
/* Телефон - меньше 768px   =================================================== */
/* ============================================================================ */
@media (max-width: 768px) {


/* Variables */        
:root
    {
    --header-height: 80px;
    }

h1
    {
    font-size: 25px;
    margin: 10px 0;
    }


.main_content
    {
    padding: 0;
    }






.doc_type_zooi_menu .black_squares,
.doc_type_zooi_project_category .black_squares
    {
    display: flex;
    justify-content: center;
    margin: 0 -15px;
    }


.doc_type_zooi_menu .site_sections,
.doc_type_zooi_project_list .site_sections
    {
    margin: 0 -15px;
    }


.doc_type_zooi_menu .black_squares .item
    {
    flex: 1 1 50%;
    }
    /* Project menu */
    .id_161 .black_squares .item
        {
        aspect-ratio: 1 / 1.4;
        }
    .doc_type_zooi_menu .black_squares .item .text a
        {
        }
        .id_161 .black_squares .item .text a
            {
            font-size: 20px;
            }



.black_squares .item .text .short_content
    {
    display: none;
    }

.more_projects_arrow
    {
    margin: 0 -15px;
    padding: 5px 0;
    box-sizing: border-box;
    }
    .more_projects_arrow .arrow
        {
        margin: 10px auto;
        width: 30px;
        height: 16px;
        }



header .soc_icons,
header .phones,
header .mail_us,
header .discuss_project
    {
    display: none;
    }
header .zooi_about_content
    {
    left: 0;
    width: 100%;
    padding: 10px 10px 100px 10px;
    }
.discuss_float_btn
    {
    display: block;
    }

header .col_2 img.logo
    {
    width: 107px;
    }
header .col_1,
header .col_2,
header .col_3
    {
    margin-top: -12px;
    }

header .slogan
    {
    position: absolute;
    justify-content: center;
    left: calc(50% - 110px);
    bottom: 9px;
    width: 220px;
    font-size: 11px;
    }



.black_squares
    {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    }
.doc_type_zooi_menu .black_squares,
.doc_type_zooi_project_category .black_squares,
.doc_type_zooi_project .gallery .item,
.site_sections .item
    {
    flex-wrap: wrap;
    }

.doc_type_zooi_project_list .site_sections
    {
    margin: 0 -15px;
    }

.site_sections .item .text .short_content
    {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    }

.site_sections .item .text .short_content.menu_item
    {
    text-align: center;
    }
    .site_sections .item .text .short_content.menu_item a
        {
        height: 100%;
        margin-bottom: 0;
        align-content: center;
        }



.site_sections .item .text 
    {
    padding: 20px;
    font-weight: normal;
    text-align: center;
    }
.site_sections.project_list .item .text 
    {
    text-align: left;
    }
    .site_sections .item .text .title
        {
        margin: 0;
        }
    .site_sections .item .text .announce,
    .site_sections .item .text .coda .more_link
        {
        display: none;
        }
    .doc_type_zooi_menu .site_sections .item .text .announce
        {
        display: block;
        font-size: 12px;
        }

    
    .site_sections .item .text .coda
        {
        margin-top: 0;
        }

    .project_list .short_content .path
        {
        color: var(--project-color);
        background-color: #fff;
        padding: 0;
        font-size: 12px;
        margin-bottom: 0;
        }

.doc_type_zooi_project .intro
    {
    padding: 20px;
    margin: 0 -15px;
    }
    .doc_type_zooi_project .intro .text
        {
        margin: 20px 0 40px 0;
        }
    .doc_type_zooi_project .intro .col_2
        {
        text-align: left;
        justify-content: flex-start;
        }
    .doc_type_zooi_project .intro .col_2 .box
        {
        margin: 0;
        }

.doc_type_zooi_project .item:nth-child(even) .text { order: 2 }
.doc_type_zooi_project .item:nth-child(even) .img  { order: 1 }
        

.doc_type_zooi_project .gallery
    {
    background-color: var(--project-color);
    }

    .doc_type_zooi_project .gallery .item .text,
    .doc_type_zooi_project .gallery .item .img
        {
        flex: 1 1 100%;
        color: #fff;
        }
    .doc_type_zooi_project .gallery .item .text p,
    .doc_type_zooi_project .gallery .item .text h2
        {
        color: #fff;
        }
    .doc_type_zooi_project .gallery .item .text h2
        {
        text-transform: uppercase;
        font-weight: 400;
        }
    .doc_type_zooi_project .gallery .item .text h2:after
        {
        display: block;
        content: ' ';
        margin-top: 10px;
        width: 20px;
        height: 2px;
        background: #fff;
        }

    
    .doc_type_zooi_project .gallery .item .text.empty
        {
        padding: 5px;
        
        }
    .doc_type_zooi_project .gallery .item .mdash
        {
        display: none;
        }
    .doc_type_zooi_project .gallery .item .img
        {
        height: auto;
        background: none !important;
        }
    .doc_type_zooi_project .gallery .item .img img
        {
        display: block;
        width: 100%;
        height: auto;
        }

    
    .doc_type_zooi_project .gallery .item .text
        {
        padding: 20px;
        font-size: 16px;
        font-weight: 200;
        text-align: left;
        }
    .doc_type_zooi_project .gallery .item .text

    .doc_type_zooi_project .item:nth-child(even) .text { order: 2 }
    .doc_type_zooi_project .item:nth-child(even) .img  { order: 1 }


    .doc_type_zooi_project .intro .col_1,
    .doc_type_zooi_project .intro .col_2
        {
        flex: 1 1 100%;
        }


footer
    {
    margin-top: 0;
    }

footer .col_1,
footer .col_2 
    {
    text-align: center;
    width: 100%;
    }

    footer .col_2 .soc_icons
        {
        justify-content: center;
        }
    footer .contacts_bar    
        {
        padding: 50px 10px;
        }

    
    footer .discuss_form.footer
        {
        padding: 20px 0 0 0;
        }
    footer .container:first-child
        {
        border: 0;
        }

    footer .footer_h2
        {
        text-align: left;
        font-size: 20px;
        margin-bottom: 20px;
        }
    footer .discuss_form.footer .form_elements
        {
        padding: 0 10px;
        }
    footer .discuss_form.footer .logo_wrap.mobile
        {
        display: none;
        }
    .discuss_form .info .submit_wrap
        {
        margin: 0;
        padding: 33px 0 50px 0;
        }
        .discuss_form .info  input[type="submit"]
            {
            margin: 0 auto;
            width: 232px;
            font-size: 20px;
            font-weight: 200;
            height: 46px;
            }
    footer .contacts_bar
        {
        border-top: 1px #fff solid;
        padding-top: 0px;
        padding-bottom: 80px;
        text-align: center;
        font-size: 14px;
        }
        footer .logo_wrap.desktop
            {
            display: none;
            }
        footer .logo_wrap.footer_2
            {
            display: block;
            width: 100%;
            margin: 20px auto;
            }


}


