/* catalog-items */
.catalog-items {
    padding: 0 0 0;
    display: flex;
    flex-wrap: wrap;
}

.catalog-items.space-between {
    justify-content: space-between;
}

.catalog-item {
    box-sizing: border-box;
    width: 50%;
    position: relative;
    padding-bottom: 30%;
    overflow: hidden;
}

.catalog-item a {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 5px;
    overflow: hidden;
}

.catalog-item a.text-left {
    justify-content: inherit;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 3% 5%;
}

.catalog-item a.text-uchastki {
    justify-content: space-between;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
    height: 100%;
    padding: 3% 5%;
}

.catalog-item-title_left span,
.catalog-item-title-name span {
    text-transform: initial;
    font-weight: 300;
    display: inline;
    margin-left: 3%;
    white-space: nowrap;
}

.catalog-item-title-name {
    width: 80%;
}

.catalog-item-title-number {
    margin: 1vw 0;
    font-size: 40px;
    font-size: 1.9vw;
    text-transform: uppercase;
}

@media screen and (max-width: 1050px) {
    .catalog-item-title-number {
        font-size: 16px;
        margin: 0;
        line-height: 1.6;
    }
}

.catalog-item:nth-child(even) a {
    margin-right: 0;
}

.catalog-item:nth-child(odd) a {
    margin-left: 0;
}

.catalog-item-title {
    position: relative;
    z-index: 2;
    margin-bottom: 2vw;
    transition: all 1s ease;
}

.catalog-item-title-nocaps h3 {
    text-transform: inherit;
}

.catalog-item-title-nocaps h3 span {
    text-transform: uppercase;
}

.catalog-item-title_left {
    position: relative;
    text-align: left;
    z-index: 2;
    width: 100%;
    transition: all 1s ease;
}

.catalog-item img {
    transition: all 1s ease-out
}

.catalog-item:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.catalog-item-image {
    transition: all 1s ease-out;
    box-sizing: border-box;
    overflow: hidden;
}

.catalog-item-image:after,
.catalog-item-image:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 80%);
}

.catalog-item-image:after {
    background: rgba(0, 0, 0, 0);
    transition: all .3s ease;
}

.catalog-item:hover .catalog-item-image:after {
    background: rgba(0, 0, 0, 0.15);
}

.catalog-item-action .cia-inner {
    overflow: hidden;
    background: #323137;
    height: calc(100% - 5px);
    width: calc(100% - 5px);
    position: absolute;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-item-area {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.cia-content {
    position: relative;
    z-index: 2;
}

.cia-button {
    text-align: center;
    margin-top: 20px;
}

.cia-button span {
    display: inline-block;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    font-size: .85vw;
    FONT-VARIANT: JIS04;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    border: 2px px solid #FFF;
    padding: 25px 60px;
    border-radius: 50px;
    background: #FFF;
    color: #000;
    cursor: pointer;
    transition: all .3s ease;
}

.cia-button span:hover {
    background: #FBD691;
    color: #000;
    border-color: #FBD691;
    box-shadow: 0px 6px 34px rgb(251 214 145 / 45%);
}

.cia-title {
    color: #FFF;
}

.catalog-item_actions_els .catalog-item_actions_els_link {
    color: #FFF;
    display: flex;
    margin: 0 0 1vw 0;
    font-size: 40px;
    font-size: 1.9vw;
    line-height: 120%;
    margin: 2vw 0;
}

.catalog-item_actions_els .catalog-item_actions_els_link .catalog-item-title_name {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 10px 0 0;

    display: inline;
    white-space: nowrap;
    transition: color .3s ease;
}

.catalog-item-title_left span {
    text-transform: initial;
    font-weight: 300;
    display: inline;
    margin-left: 3%;
    white-space: nowrap;
}

@media screen and (max-width: 700px) {
    .catalog-item {
        width: 100%;
        padding-bottom: 75%;
    }

    .catalog-item a {
        height: 70vw;
        margin-bottom: 10px;
    }

    .catalog-item a.text-left {
        padding: 5% 5%;
    }

    .catalog-item:nth-child(odd) a {
        margin-right: 0;
    }

    .catalog-item:nth-child(even) a {
        margin-left: 0;
    }

    .catalog-item-action .cia-inner {
        height: 100%;
        width: 100%;
        margin: 5px 0;
    }

    .cia-button span {
        font-size: 12px;
    }

    .catalog-item-title {
        margin-bottom: 20px;
    }

    .catalogPage .TextMediaBlock-container.padd_TB_n {
        padding: 40px 0;
    }

    .TextMediaBlock.padd_mb_TB_n.padd_TB_n {
        padding: 40px 0;
    }
}

/* CATALOG ITEM V2 */

.catalog-items_v2 {
    padding: 0 0 10vw;
    background-color: #28282C;
    justify-content: space-between;
}

.catalog-item_v2 {
    width: 48.6vw;
    margin: 1.8vw 0 0 0;
    overflow: hidden;
}

.catalog-item_v2-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 25vw;
}

.catalog-item_v2-image figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transition: all .8s ease;
}

.catalog-item_v2:hover figure img {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.catalog-item_v2-infopanel {
    background-color: #242428;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 2vw;
}

.civ2-title {
    font-size: 40px;
    font-size: 1.9vw;
    line-height: 1.2;
}

.civ2-params {
    display: flex;
    color: #68686b;
    margin: 0 1vw;
}

.civ2-param-title {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-size: 1.2vw;
    margin: 0 1vw .7vw 0;
}

.civ2-param-icon svg,
.civ2-param-icon img {
    display: block;
    width: 1vw;
    height: auto;
}

.civ2-param-name {
    margin-left: .5vw;
    line-height: 1;
}

.civ2-param-value {
    color: #FFF;
    font-size: 14px;
    font-size: 1.2vw;
    line-height: 1;
    margin-left: 1.5vw;
    text-align: center;
    width: calc(100% - 3vw);
}

.catalog-item_v2-regardImg {
    position: absolute;
    z-index: 2;
    top: 2vw;
    left: 2vw;
    width: 5vw;
    height: auto;
    display: block;
}

.civ2-more.button-bordered a:hover {
    box-shadow: none;
}

@media screen and (min-width: 1600px) {
    .civ2-more.button-bordered a {
        padding: 1.2vw 2vw;
    }
}

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

    .catalog-item_v2-infopanel {
        flex-wrap: wrap;
    }

    .civ2-title {
        width: 100%;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .civ2-param-icon svg,
    .civ2-param-icon img {
        width: 12px;
    }

    .civ2-param-title {
        font-size: 14px;
        margin: 0 15px 10px 0;
    }

    .civ2-param-value {
        font-size: 14px;
    }

    .civ2-more.button-bordered a {
        padding: 20px 30px;
        display: inline-block;
        min-width: 50px;
    }
}

@media screen and (max-width: 990px) {
    .civ2-more {
        width: 100%;
        margin-top: 20px;
    }
}

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

    .catalog-item_v2-infopanel {
        padding: 25px;
    }
}

@media screen and (max-width: 700px) {
    .catalog-item_v2 {
        width: 100%;
        margin: 30px 0 0 0;
    }

    .catalog-item_v2-image {
        height: 70vw;
    }
}


/* Project map page*/
.projectMap_title {
    margin: 15px 0 40px;
    margin: 1vw 0 3vw;
}

.project-params {
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

.project-param {
    margin: 0 3vw;
}

.project-params.more4els {
    flex-wrap: wrap;
    max-width: 1300px;
}

.project-params.more4els .project-param {
    width: calc(33.3% - 6vw);
    margin-top: 1vw;
}

.project-params.more4els .project-param:nth-child(1),
.project-params.more4els .project-param:nth-child(2),
.project-params.more4els .project-param:nth-child(3) {
    margin-top: 0;
}

.project-param-title {
    margin-bottom: 10px;
}

.project-param-info {
    font-size: 48px;
    font-size: 2.5vw;
    font-weight: bold;
    line-height: 120%;
    margin: 1vw 0;
}

@media screen and (min-width: 1900px) {
    .project-param-info {
        font-size: 48px;
    }
}

@media screen and (max-width: 1050px) {
    .project-params {
        flex-wrap: wrap;
    }

    .project-param-info {
        font-size: 30px;
        margin: 5px 0 0;
    }

    .project-param {
        margin: 0 15px;
    }
}

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

    .project-param,
    .project-params.more4els .project-param {
        width: 100%;
        margin-bottom: 35px;
    }

    .project-param:last-child {
        margin-bottom: 0;
    }

    .project-param-title {
        font-size: 14px;
        margin-bottom: 0;
    }
}

/* Project-map-plan */
.project-map {
    padding: 0;
    display: flex;
}

.pm-area {
    box-sizing: border-box;
}

.project-map-plan {
    width: 65%;
    padding: 5vw 10vw;
}

.project-map-params {
    width: 35%;
    background: #FAFAFA;
    padding: 10vw 7vw 5vw;
}

.plan-header {
    margin-bottom: 50px;
}

.plan-header .super-text {
    margin-bottom: 35px;
}

.plan-header h2 {
    font-size: 2.7vw;
}

.project-params-menu {
    margin-bottom: 35px;
}

.pp-menu-item {
    font-size: 32px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all .2s ease;
}

.pp-menu-item.active {
    font-weight: bold;
}

.pp-menu-item:last-child {
    margin-bottom: 0;
}

.plan-item img {
    max-width: 100%;
}

.plan-items,
.project-params-list {
    position: relative;
}

.plan-item,
.pp-list-item {
    position: absolute;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}

.plan-item.active,
.pp-list-item.active {
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.project-params-table tr td {
    font-size: 16px;
    line-height: 1.4;
    padding-bottom: 20px;
}

.project-params-table tr td:first-child {
    text-align: center;
    opacity: .5;
    padding-right: 25px;
}

.project-params-table tr:first-child td {
    opacity: 1;
    font-weight: bold;
    color: #000;
    font-size: 20px;
}

.project-map-params .tmb-text-button a {
    width: 100%;
}

@media screen and (max-width: 1050px) {
    .plan-header h2 {
        font-size: 30px;
    }

    .project-map {
        flex-wrap: wrap;
    }

    .project-map-plan {
        width: 100%;
        padding: 50px 10%;
    }

    .project-map-params {
        width: 100%;
        padding: 50px 10% 100px;
    }

    .plan-item {
        height: 80vw;
    }

    .plan-item img {
        height: 100%;
        width: auto;
        max-width: 100%;
        display: block;
        -o-object-fit: contain;
        object-fit: contain;
    }

    .project-map-params .tmb-text-button a {
        width: auto;
    }

    .project-map-params .button-bg {
        text-align: center;
    }
}

.project-info-header {
    text-align: center;
}

.project-info-header .super-text {
    margin-bottom: 15px;
}

.project-info-planTrigger {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3vh 0;
}

.project-info .pp-menu-item {
    margin: 25px 20px;
}

.project-info .pp-menu-item:hover {
    transition: all .5s ease;
    color: #FBD691;
}

.project-info .pp-menu-item.active:hover {
    color: #000;
}

.plan-item-img {
    text-align: center;
}

.plan-item-img img {
    display: inline-block;
    max-height: 80vh;
    width: auto;
}

.plan-item-img {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0s ease;
}

.plan-item-img.active {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: all .5s ease;
}

@media screen and (max-width: 1050px) {
    .plan-item-img img {
        width: 100%;
        height: auto;
        display: block;
        max-height: inherit;
    }

    .pp-menu-item {
        font-size: 23px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 620px) {
    .project-info-planTrigger {
        flex-direction: column;
        margin-top: 15px;
    }

    .project-info .pp-menu-item {
        margin: 0 20px 5px;
    }

    .pp-menu-item {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .plan-items {
        margin-top: 15px;
    }
}

.get_catalog_wide {
    padding: 5vw 0;
    color: #FFF;
    background: #28282C url(/include/images/wood-texture-wide.png) right 50% no-repeat;
    background-size: 60%;
}

.gcw-inner {
    padding-left: 10vw;
}

.get_catalog_wide h3 {
    margin-bottom: 1.5vw;
}

.get_catalog_wide .csa-btn a {
    padding: 0.5vw 2vw;
}

@media screen and (max-width: 1050px) {
    .get_catalog_wide {
        padding: 60px 0;
        background: #28282C url(/include/images/wood-texture-wide.png) 50% 50% no-repeat;
        background-size: cover;
    }

    .gcw-inner {
        padding-left: 0;
        text-align: center;
    }

    .get_catalog_wide h3 {
        margin-bottom: 25px;
    }

    .get_catalog_wide .csa-btn a {
        font-size: 14px;
        font-weight: 500;
        padding: 15px 20px;
        display: inline-block;
        min-width: 150px;
    }
}

.catalog-item_actions {
    box-sizing: border-box;
    width: calc(50% - 0.2vw);
    margin-bottom: 0.4vw;
    position: relative;
    padding-bottom: 30%;
    overflow: hidden;
}

a.cia-abslink {
    position: absolute;
    z-index: 2;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.catalog-item_actions img {
    /* filter: saturate(0.2) brightness(1) contrast(0.8); */
    transition: all .5s ease;
}

.catalog-item_actions:hover img {
    filter: saturate(1) brightness(1) contrast(1);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}

.catalog-item-title_name {
    transition: color .3s ease;
}

.catalog-item_actions:hover .catalog-item-title_name {
    color: #fbd691;
}

.catalog-item_actions_els {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 3% 5% 5%;
}

.catalog-item_actions_els h3 {
    color: #FFF;
    display: flex;
    margin: 0 0 1vw 0;
}

.catalog-item_actions_els h3 .catalog-item-title_name {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 10px 0 0;
}

.c-item_actions {
    display: flex;
    align-items: center;
    width: 100%;
}

.c-item_actions .csa-btn a {
    margin: 0;
    min-width: 16vw;
    display: inline-block;
    padding: 1.3vw 2vw;
}

.c-item_actions div:first-child {
    margin-right: 1vw;
}

@media screen and (max-width: 920px) {
    .c-item_actions {
        display: block;
    }

    .c-item_actions div:first-child {
        margin: 0 0 10px;
    }

    .c-item_actions .csa-btn a {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 700px) {
    .catalog-item_actions {
        width: calc(100% - 0.2vw);
        padding-bottom: 75%;
    }
}

@media screen and (max-width: 620px) {}

/* awards */
.awards-items {
    padding-bottom: 7vw;
}

.awards-item {
    background-color: #323137;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    width: 90%;
    max-width: 1000px;
    box-sizing: border-box;
    margin: 0 auto 2vw;
}

.awards-item-icon,
.awards-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-item-icon {
    width: 15%;
}

.awards-item-icon img {
    display: block;
    max-width: 50%;
}

.awards-item-image {
    width: 15%;
    position: relative;
    overflow: hidden;
}

.awards-item-image img {
    display: block;
    line-height: 0;
    max-height: 80%;
    max-width: 80%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.awards-item-text {
    width: 70%;
    display: flex;
    align-items: center;
    padding: 3vw 0;
}

.awards-item-textTop {
    font-size: .9vw;
    line-height: 1.3;
    margin-bottom: 5px;
}

.awards-item-textBottom {
    font-size: 1.25vw;
    line-height: 1.3;
}

.t-header-r-button .button-solidBg a {
    display: inline-block;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 16px;
    font-size: 0.85vw;
    letter-spacing: 0.2px;
    line-height: 0;
    text-align: center;
    white-space: nowrap;
    padding: 1.5vw 2vw;
    border: 0;
    background-color: #FFF;
    color: #000;
    border-radius: 50px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .awards-item-textTop {
        font-size: 14px;
    }

    .awards-item-textBottom {
        font-size: 18px;
    }

    .awards-item-icon img {
        max-width: 65px;
    }
}

@media screen and (min-width: 1900px) {
    .awards-item-textTop {
        font-size: 16px;
    }

    .awards-item-textBottom {
        font-size: 22px;
    }
}

@media screen and (max-width: 1050px) {
    .t-header-r-button .button-solidBg a {
        font-size: 14px;
        font-weight: 500;
        padding: 25px 30px;
        display: inline-block;
        min-width: 250px;
    }
}

@media screen and (max-width: 750px) {
    .awards-item {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .awards-item-icon,
    .awards-item-text,
    .awards-item-image {
        width: 100%;
    }

    .awards-item-icon {
        padding-top: 3vw;
    }

    .awards-item-text {
        justify-content: center;
        align-items: center;
    }

    .awards-item-image {
        padding-bottom: 25%;
    }

    .awards-item-image img {
        display: block;
        line-height: 0;
        max-height: unset;
        max-width: 250px;
        object-fit: unset;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .awards-item-image:after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        padding: 0;
        box-sizing: border-box;
        background: linear-gradient(180deg, #000000 0%, #323137 120%);
        pointer-events: none;
    }
}

@media screen and (max-width: 550px) {
    .awards-item-image img {
        max-width: 210px;
        max-height: 210px;
    }

    .awards-item-image {
        padding-bottom: 25%;
    }
}

@media screen and (max-width: 450px) {
    .awards-item-image {
        padding-bottom: 35%;
    }
}

.catalog-item-regardImg {
    display: block;
    line-height: 1;
    position: absolute;
    z-index: 3;
    right: 5%;
    bottom: 8%;
    pointer-events: none;
    transform: translateY(.7vw);
    max-width: 3.5vw;
}

.catalog-item_actions:hover img.catalog-item-regardImg {
    transform: translateY(0) scale(1);
}

body .c-filter-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    columns: unset;
    -moz-columns: unset;
    -webkit-columns: unset;
    column-gap: 0;
    -moz-column-gap: 0;
    -webkit-column-gap: 0;
}

.catalog_control_selector_data_line {
    margin-left: 15px;
    margin-right: 15px;
}

@media screen and (min-width: 1500px) {
    .catalog-item-regardImg {
        bottom: 8%;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1050px) {
    .catalog-item-regardImg {
        bottom: auto;
        top: 5%;
        max-width: 65px;
        transform: translateY(0);
    }
}

.project-info-plans {
    display: flex;
    justify-content: center;
    margin: 3vw 0;
}

.pi-plan-item {
    max-width: 33%;
}

.pi-plan-title {
    font-size: 32px;
    text-align: center;
    font-weight: 600;
}

.pi-plan-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1050px) {
    .pi-plan-title {
        font-size: 23px;
    }
}

@media screen and (max-width: 750px) {
    .project-info-plans {
        display: block;
    }

    .pi-plan-item {
        max-width: 100%;
        width: 100%;
        margin-top: 50px;
    }
}


.whiteSection :is(h2, .h2) {
    margin: 1.7vw auto 0;
}

.whiteSection h3 {
    margin: 1.7vw auto 0;
}

.project-tags__title {
    font-size: 2.7vw !important;
    line-height: 110%;

    @media screen and (max-width: 1200px) {
        font-size: 25px !important;
    }

    @media screen and (max-width: 1050px) {
        font-size: 18px !important;
    }
}

.project-tags__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
}

.project-tags__item {
    font-weight: 600;
}

.media-item a svg {
    width: 10%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.9s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.media-item a svg.play_round {
    left: 49%;
    width: 15%;
}

.media-item a:hover svg {
    -webkit-filter: drop-shadow(5px 5px 5px rgba(251, 214, 145, 0.4));
    filter: drop-shadow(5px 5px 5px rgba(251, 214, 145, 0.4));
}

.media-item.media-item-single {
    width: 75%;
    padding-bottom: 50%;
    margin: 0 auto;
}

@media screen and (min-width: 1900px) {
    .whiteSection :is(h2, .h2) {
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 700px) {
    .media-item.media-item-single {
        width: 100%;
        padding-bottom: 75%;
    }
}