.navbar_desktop,
.navbar,
.navbar_desktop #logo {
    z-index: 999;
}

.logo img {
    max-height: 85px;
    max-width: 120px;
}

.loader img {
    max-width: 70px;
}

@media screen and (max-width: 992px) {
    .img--square-mobile img {
        min-height: 110vw;
        object-fit: cover;
    }
    #head_subpage #title_head {
        font-weight: 300 !important;
        font-size: 34px !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }
    #page, #portfolio {
        padding-bottom: 0 !important;
    }
}

.popup {
    position: fixed;
    bottom: 40px;
    right: 0;
    background: #fff;
    padding: 20px 40px;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    z-index: 99;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.popup__control {
    font-weight: 400;
    font-size: 26px;
    color: #000;
    background-color: transparent;
    border: 0;
    margin: 0 0 0 30px;
    transition: color 300ms ease-in-out;
}

.popup:hover .popup__control {
    color: #625dd7;
}


/* filters */

.navbar-filters-toggler {
    position: fixed;
    height: 20px;
    top: 21px;
    right: 70px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.navbar-filters-toggler img {
    height: 100%;
    max-width: 100%;
}

.filters-wrapper {
    position: relative;
    z-index: 9;
    margin: 70px 0 0 0;
    transition: top 300ms ease-in-out;
}

.filters {
    position: absolute;
    margin: 30px 30px 0 0;
    padding: 60px;
    z-index: 9;
    width: 820px;
}

.filters-toggler {
    margin: 0;
    border: 0;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    background-color: #fff;
    padding: 20px 20px 20px 0;
}

.filters-toggler img {
    margin: -10px 18px 0 8px;
    width: 40px;
}

.filters:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #323136;
    clip-path: url(#clipPathPolygonGenId0);
}

.filters .filters__content {
    position: relative;
}

.filters .filters__row {
    display: flex;
    margin: 50px -10px 0 -10px;
}

.filters .filters__col {
    width: calc(100% / 3 - 20px);
    margin: 0 10px;
}

.filters .filters__label {
    margin: 0 0 20px 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

.filters .filters__close {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.filters .filters__close span {
    position: absolute;
    display: block;
    height: 2px;
    width: 20px;
    background-color: #fff;
}

.filters .filters__heading,
.filters .filters__subheading {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.filters .filters__heading {
    margin: 0 0 5px 0;
}

.filters .filters__dropdownblock {
    display: block;
    position: relative;
    height: 35px;
}

.filters .filters__dropdown {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    height: 35px;
    overflow-y: hidden;
    transition: height 300ms ease-in-out;
    z-index: 999;
}

.filters .filters__dropdown.active {
    height: auto;
    max-height: 280px;
    overflow-y: scroll;
}

.filters .filters__option, .filters .filters__active {
    height: 35px;
    min-height: 35px;
    display: flex;
    align-items: center;
    padding: 0 10px !important;
    border-bottom: 1px solid #323136;
    cursor: pointer;
}

.filters .filters__option {
    transition: opacity 300ms ease-in-out;
}

.filters .filters__option:hover {
    opacity: .75;
}

.filters .filters__close span:nth-of-type(1) {
    transform: rotate(-45deg);
}

.filters .filters__close span:nth-of-type(2) {
    transform: rotate(45deg);
}

.filters .filters__footer {
    margin: 60px 0 30px 0;
}

.filters .filters__search {
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    border: 1px solid #fff;
    padding: 20px 30px;
}

.filters .filters__search img {
    transform: rotate(-180deg);
    margin: 0 15px 0 0;
}

.filters--sticky .filters-toggler {
    width: 60px;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    padding: 22px 20px 15px 0;
}

@media screen and (max-width: 992px) {
    .filters-toggler {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 15px;
        display: none;
    }

    .filters-toggler img {
        margin: -7px 8px 0 14px;
        width: 26px;
    }

    .filters {
        position: fixed;
        width: 100vw;
        top: 63px;
        left: 0;
        padding: 30px 30px 0 30px;
        margin: 0;
    }

    .filters:before {
        clip-path: unset;
    }

    .filters .filters__heading,
    .filters .filters__subheading {
        font-size: 18px;
        line-height: 1.25;
    }

    .filters .filters__row {
        flex-direction: column;
        margin: 0;
    }

    .filters .filters__col {
        width: 100%;
        margin: 30px 0 0 0;
    }

    .filters .filters__label {
        font-size: 15px;
    }

    .filters .filters__label {
        margin: 0 0 10px 0;
    }

    .filters .filters__footer {
        margin: 30px 0;
    }

    .filters .filters__search {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        justify-content: center;
    }

    .filters .filters__content {
        overflow-y: scroll;
    }

    .filters .filters__col:nth-of-type(1) {
        z-index: 1003;
    }
    
    .filters .filters__col:nth-of-type(2) {
        z-index: 1002;
    }
    
    .filters .filters__col:nth-of-type(3) {
        z-index: 1001;
    }
}

@media screen and (min-width: 991px) {
    .navbar-filters-toggler {
        display: none;
    }
}

/* end filters */

/* team */

.team__bar {
    display: flex;
    align-items: flex-start;
    margin: 90px 0 5px 0;
}

.team__heading {
    display: inline-block;
    font-weight: 900;
    font-size: 26px;
    margin: 0;
    padding: 0;
}

.team__arrow {
    position: relative;
    top: 5px;
    background-color: transparent;
    border: 0;
    margin: 0 40px 0 0;
    padding: 0;
}

.team__arrow img {
    width: 42px;
}

.team__group {
    display: flex;
    flex-wrap: wrap;
}

.team__member {
    width: calc(25% - 40px);
}

.team__member .team__member-img {
    position: relative;
    background-color: #eee;
    overflow: hidden;
}

.team__member .team__member-img img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.team__member .team__member-title {
    margin: 30px 0 20px 0;
    padding: 0;
    font-size: 22px;
    line-height: 1.25;
    word-break: break-word;
}

.team__member .team__member-title strong {
    font-weight: 600;
}

.team__member .team__member-text {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 28px;
    font-weight: 300;
    word-break: break-word;
}

@media screen and (max-width: 1299px) {
    .team__member {
        width: calc(100% / 3 - 40px);
    }
}

@media screen and (max-width: 991px) {
    .team__member {
        width: calc(50% - 20px);
        margin: 0 10px 50px 10px;
    }

    .team__group {
        margin: 0;
    }

    .team__arrow {
        display: none;
    }

    .team__bar {
        margin: 50px 0 20px 0;
    }

    .team__member .team__member-title {
        font-size: 15px;
    }

    .team__member .team__member-text {
        font-size: 11px;
        line-height: 1.35;
    }

    .team__heading {
        font-size: 20px;
    }
    .filters-toggler {
        display: none !important;
    }
} 

/* end team */

.arrow--rotate-180 {
    transform: rotate(-180deg);
}

.arrow--fix-left {
    transform: rotate(-90deg);
    height: 41px;
}

.arrow--fix-right {
    transform: rotate(90deg) !important;
    height: 41px;
}

.sm_list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sm_list .sm_item {
    margin: 0 0 0 10px !important;
}

.sm_list .sm_item:first-of-type {
    margin: 0 !important;
}

.sm_list .sm_item img {
    height: 30px;
}

.sm_list .sm_item a {
    transition: opacity 300ms ease-in-out;
}

.sm_list .sm_item a:hover {
    opacity: .75;
}

@media screen and (max-width: 991px) {
    .sm_list {
        position: absolute;
        height: 80px;
        right: 100px;
    }
}

.single_3d_iframe_view {
    width: 100%;
    height: 80vh;
    margin: 0 0 40px 0;
}

@media screen and (min-width: 991px) {
    .footer_grey {
        padding: 45px 30px;
    }
    footer .footer-top-block {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: flex-start;
    }

    footer .footer-top-block .nav {
        padding: 0 !important;
        margin: 5px 15px 0 0 !important;
    }
}

.empty-filters {
    margin: 100px 0 0 0 ;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 40px;
}

.empty-filters-text {
    font-weight: 800;
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
}

@media screen and (min-width: 991px) {
    .empty-filters {
        margin: 100px 0 -100px 0;
    }
}

.team-postcontent {
    margin: 50px 0 0 0;
}

.team-postcontent img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 60px 0;
}

@media screen and (min-width: 991px) {
    .team-postcontent {
        margin: 100px 0;
    }
}

@media screen and (max-width: 992px) {
    .team-postcontent.page-team-wrapper {
        padding: 0 10px;
    }
    
    .page-team-wrapper #title_head {
        text-align: left !important;
    }

    #head_subpage #title_head {
        margin-top: 60px;
    }
    .first_image_content_item_full {
        margin: 30px 0 0 0;
    }
    .first_arrow_content_item_full {
        margin-bottom: 30px;
    }

    p {
        font-weight: 400 !important;
    }

    .list_contnet_rows_list_items p {
        margin-top: 0 !important;
    }
    #cart_content .cart_content_item_full, #cart_content .cart_content_item_half {
        margin-bottom: -10px !important;
    }
    #cart_content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: -20px !important;
    }
}

html, body {
    overflow-x: hidden !important;
}

#realisation .realisation_subcontent_white a {
    font-weight: 900;
}

#cart_content_footer .cart_content_footer_end #arrow_footer .row .col-sm-6 .arrow_left, #cart_content_footer .cart_content_footer_end #arrow_footer .row .col-sm-6 .arrow_right {
    position: relative;
    top: 5px;
}

#realisation_mobile_list a {
    font-weight: 900;
}

#page iframe {
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
}