body {
    /*background: #F4F4F4;*/
    background: #000;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Neue';
    color: #000;
    overflow-x: hidden;
    width: 100vw;
    font-size: 20px;
}

a {
    border-bottom: 1px solid #ffffff60;
    display: inline-block;
    opacity: 1;
    transition: all .2s;
}
a:hover {
    opacity: .8;
    transition: all .3s;
}
a:active {
    transform: scale3d(.98,.98,.98);
    transition: all .3s;
}

.landing-logo {
    width: 10vw;
}
.disable {
    cursor: not-allowed;
    opacity: .55;
}
.loader.full-load {
    opacity: 0;
    transition: all .3s;
}
.loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99;
    display: flex;
    background: #111;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.loader svg {
    animation: rotating 6s linear;
    /*opacity: 0;*/
    width: 10%;
    height: 10%;
}
.loader .gallery-wrap {
    display: none;
}
@keyframes rotating {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: rotate(180deg);
        opacity: 1;
    }
}

section.scrolling-landing {
    display: flex;
    width: 100vw;
    height: 100vh;
}
.main-container .btn {
    display: inline-block;
    height: auto;
    color: #ffffff80;
    text-decoration: none;
}
.main-container span i {
    margin-left: 1vw;
}
.main-container span {
    color: #ffffff80;
    font-size: .8vw;
    width: 32%;
    display: block;
    margin: 2vw;
    font-family: 'Roboto Neue'; font-weight: 300;
}
.landing-main h1  {
    color: #fff;
    font-size: 4vw;
    width: 40%;
    letter-spacing: -.13vw;
    font-family: 'Roboto Neue'; font-weight: 300;
    text-align: center;
    margin: 2vw 0 0;
    line-height: 100%;
}
.landing-main a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    font-size: 18px;
}
.landing-main h2  {
    color: #767676;
    font-size: 18px;
    text-align: center;
    margin: 1vw;
}
.landing-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@media only screen and (max-width: 760px) {
    .landing-logo {
        width: 150px;
    }
    .landing-main a {
        font-size: 17px;
        font-family: 'Roboto Neue';
    }
    .landing-main h2 {
        font-size: 17px;
        width: 90%;
        text-align: center;
        margin: 15px 0;
        font-family: 'Roboto Neue';
    }
    .landing-main h1 {
        width: 90%;
        font-size: 40px;
        margin: 15px 0;
    }
}


section.scrolling {
    width: 100vw;
    height: 100vh;
    padding: 1px 0;
    min-height: 100vh;
}

header {
    padding: 1vw;
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: flex-start;
    z-index: 10;
    background: #000;
}
header .logo a {
    text-decoration: none;
    border-bottom: none;
}
header .logo a:hover {
    opacity: .8;
}
footer {
    position: relative;
    padding: 3vw 2vw 5vw;
    width: 96vw;
    display: flex;
    justify-content: flex-start;
    background: #111;
}
footer .logo {
    width: 25vw;
    text-align: right;
}
header.active .menu:after {
    background: #fff;
    width: 40%;
    display: block;
    content: '';
    position: absolute;
    z-index: -1;
    padding: 1vw;
    height: calc(100% + 10px);
    border-radius: 10px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
    margin-top: -30px;
    margin-left: 5.7vw;
    transform: scale3d(.95,.95,.95);
    opacity: 0;
    transition: all .1s;
}
header.active .menu:hover:after {
    opacity: 1;
    transform: scale3d(1,1,1);
    transition: all .5s;
}
header.active .menu:hover ul li a {
    color: #000;
}
header .menu .menu-header,
footer .menu .menu-header {
    color: #767676;
    margin-bottom: 20px;
    cursor: default;
}
header .menu,
footer .menu {
    font-size: 16px;
}
header .logo svg,
footer .logo svg {
    width: 8vw;
    margin-top: .5vw;
}
header .menu,
footer .menu {
    display: flex;
    align-items: center;
    align-content: center;

}
/*header.active .menu:hover ul li, */
header .menu ul li,
footer .menu ul li {
    overflow: hidden;
    max-height: 2vw;
}
header .menu ul li a:hover,
footer .menu ul li a:hover {
    transition: all .3s;
    opacity: .4;
}
header.active .menu ul li,
footer.active .menu ul li {
    max-height: 0;
    margin: 0;
    transition: max-height .3s;
}
/*header.active .menu ul:hover li {*/
/*    height: auto;*/
/*}*/
header.active .menu ul li a,
footer.active .menu ul li a {
    border-bottom: 1px solid #00000060;
    transform: translate3d(0, -100%, 0);
    transition: all .3s;
}
header.active:hover .menu ul li a,
footer.active:hover .menu ul li a {
    transform: translate3d(0, 0, 0);
    transition: all .6s;
}
header .menu ul li a,
footer .menu ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all .3s;
    /*display: block;*/
}
header .menu ul,
footer .menu ul {
    list-style: none;
    margin: 0 0 0 8vw;
    padding: 0;
}
header.active .menu:hover ul li,
footer.active .menu:hover ul li {
    max-height: 2vw;
    margin-top: 5px;
}


header .action {
    background: #fff;
    border-radius: 10px;
    position: absolute;
    width: 20vw;
    right: 0;
    margin-top: -1vw;
    padding: 1vw;
    height: max-content;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
}
footer .action {
    position: relative;
    border-radius: 10px;
    border: 1px solid #3d3d3d;
    width: 20vw;
    right: 0;
    padding: 1vw;
    height: max-content;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
}
header .action-header,
footer .action-header {
    border-bottom: 1px solid #00000020;
    padding-bottom: 20px;
}
header .action-bottom,
footer .action-bottom {
    padding-top: 20px;
}
header .action-header, header .action-bottom,
footer .action-header, footer .action-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .action-header .action-logo,
footer .action-header .action-logo {
    width: 2vw;
    fill: #000;
}
header .action-header .action-text p,
footer .action-header .action-text p {
    margin: 0 1vw;
    font-size: 14px;
    color: #767676;
}
header .action-header .action-button .btn:hover,
footer .action-header .action-button .btn:hover {
    transition: all .3s;
    background: #FF4900;
}
header .action-header .action-button .btn {
    background: #000;
    border-radius: 5px;
    display: flex;
    padding: 0 25px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s;
}
footer .action-header .action-button .btn {
    background: #fff;
    border-radius: 5px;
    display: flex;
    padding: 0 25px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    border-bottom: none;
    transition: all .3s;
}
footer .action-name {
    color: #ffffff;
}
.btn {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    user-select: none;
}
header .action-bottom .action-link a:hover {
    opacity: .4;
    transition: all .3s;
}
footer .action-bottom .action-link a:hover {
    opacity: .4;
    transition: all .3s;
}
header .action-bottom .action-link a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    transition: all .3s;
}
footer .action-bottom .action-link a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: all .3s;
}
header .action-link span,
footer .action-link span {
    color: #767676;
}
header .action-bottom .action-link,
footer .action-bottom .action-link {
    font-size: 16px;
}
header .action-bottom .action-name,
footer .action-bottom .action-name {
    font-size: 24px;
}

.scrolling video {
    position: absolute;
    z-index: -1;
    top: 6vw;
    right: 0;
}
.main-container h1 {
    color: #fff;
    font-size: 4vw;
    width: 65%;
    letter-spacing: -.13vw;
    line-height: 100%;
    font-weight: 400;
    font-family: 'Roboto Neue';
    margin: 15vw 0 0 2vw;
}
.main-desc p {
    width: 33vw;
    font-size: 1.3vw;
    margin: 0;
    color: #808080;
}
.main-desc {
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    margin-top: -3vw;
    justify-content: flex-end;
}
.about-main .about-services .services-text span.underline {
    border-bottom: 2px #00000020 solid;
}
.about-main .about-services {
    margin-bottom: 0;
}
.about-main .about-numbers {
    padding: 0 2vw 5vw;
}
.about-main {
    background: #fff;
}
.main-desc-content {

}
.main-action-avatar {
    display: flex;
    margin-top: 20px;
}
.main-action-avatar span {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    margin-left: 40px;
    font-size: 1.3vw;
}
.main-action-avatar img {
    border-radius: 5vw;
    width: 4.3vw;
    margin-right: -1.3vw;
    -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
}
.main {
    /*height: 100vh;*/
}
.main-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.main-action-button a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    margin-left: 5vw;
    margin-top: 17px;
    border-bottom: 1px solid #ffffff60;
}


@media only screen and (max-width: 1730px) {
    header .action {
        width: 30vw;
    }
}

.project {
    padding: 1rem;
    max-width: 1000px;
    margin: 20vh auto;
    display: grid;
    grid-column-gap: 7vw;
    grid-row-gap: 0.5rem;
}

.project--intro {
    grid-template-columns: 1fr;
    grid-template-areas: 'label-name'
    'name'
    'label-date'
    'date'
    'title'
    'label-mission'
    'mission';

}

.project--details {
    grid-template-areas: 'label-default' 'paragraph';
    grid-template-columns: 1fr;
}

.project--left {
    justify-content: start;
}

.project--right {
    justify-content: end;
}

.project--details p {
    grid-area: paragraph;
    max-width: 400px;
}

.project__label--default {
    grid-area: label-default;
}

.project p {
    line-height: 1.4;
    margin: 0;
    color: var(--color-text-alt);
}

.project__label {
    color: var(--color-label);
}

.project__label--name {
    grid-area: label-name;
}

.project__label--date {
    grid-area: label-date;
}

.project__label--mission {
    grid-area: label-mission;
}

.project__name {
    grid-area: name;
}

.project__date {
    grid-area: date;
}

.project__mission {
    grid-area: mission;
    line-height: 1.4;
}

.project__mission p:first-child {
    grid-area: p1;
}

.project__mission p:child {
    grid-area: p2;
}

.project__mission p {
    color: var(--color-text-alt);
}

.project__title {
    grid-area: title;
    font-size: clamp(2rem, 13vw, 8rem);
    font-weight: 400;
    margin: 10vh 0;
    line-height: 1;
}

.project__heading {
    color: var(--color-label);
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}

.gallery-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20vh auto;
    overflow: hidden;
}

.gallery-wrap--auto {
    height: auto;
}

.gallery-wrap--large {
    height: 110vh;
}

.gallery-wrap--dense {
    margin: 0;
}

.gallery {
    position: relative;
    width: 100%;
    height: 100%;
    flex: none;
}

.gallery--breakout {
    width: min-content;
}

.gallery__item {
    background-position: 50% 50%;
    background-size: cover;
    flex: none;
    border-radius: 6px;
    position: relative;
    filter: brightness(1);
}

.gallery__item-cut {
    overflow: hidden;
    display: grid;
    place-items: center;
}

.gallery__item-inner {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.caption {
    font-size: clamp(1rem, 3vw, 1.75rem);
    z-index: 101;
    color: var(--color-caption);
    font-weight: 400;
}

.gallery--row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    --size-factor: 1.25;
    --item-height: 20vh;
}

.gallery--row .gallery__item {
    width: auto;
    aspect-ratio: 2 / 3;
}

.gallery--row .gallery__item--s {
    height: var(--item-height);
}

.gallery--row .gallery__item--m {
    height: calc(var(--size-factor) * var(--item-height));
}

.gallery--row .gallery__item--l {
    height: calc(var(--size-factor) * 2 * var(--item-height));
}

.gallery--row .gallery__item--xl {
    z-index: 100;
    height: calc(var(--size-factor) * 3 * var(--item-height));
}

.gallery--switch.gallery--row .gallery__item--m,
.gallery--switch.gallery--row .gallery__item--l {
    height: var(--item-height);
}

.gallery--row .caption {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -50vh;
    left: 0;
    padding: 4.5vw;
    max-width: 730px;
    opacity: 0;
}

.gallery--switch.gallery--row .caption {
    bottom: 0;
    opacity: 1;
}

.gallery--one {
    display: grid;
    place-items: center;
}

.gallery--one .gallery__item {
    width: 400%;
    height: 400%;
    filter: brightness(1) hue-rotate(90deg);
}

.gallery--switch.gallery--one .gallery__item {
    width: 100%;
    height: 100%;
    filter: brightness(0.7) hue-rotate(0deg);
}

.gallery--one .caption {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    margin: 100vh 0 0 -50vw;
    font-size: clamp(2rem,5vw,3rem);
    display: grid;
    place-items: center;
}

.gallery--switch.gallery--one .caption {
    margin-top: -50vh;
}

.gallery--grid {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3,auto);
    grid-template-rows: repeat(3,auto);
    row-gap: 2.5vw;
    column-gap: 3vw;
}

.gallery--grid .gallery__item {
    height: 33vh;
    width: 33vw;
}

.gallery--switch.gallery--grid {
    gap: 0;
}

.gallery--switch.gallery--grid .gallery__item {
    height: 110vh;
    width: 110vw;
    filter: brightness(0.65);
}

.gallery--grid .caption {
    position: absolute;
    width: 100vw;
    height: 100vh;
    padding: 0;
    top: 50%;
    left: 50%;
    margin-top: 50vh;
    margin-left: -50vw;
    display: grid;
    place-items: center;
    max-width: none;
    opacity: 0;
}

.gallery--switch.gallery--grid .caption {
    margin-top: -40vh;
    opacity: 1;
}

.gallery--grid .caption p {
    padding: 50vh 30vw 10vh 10vw;
}

.gallery--switch.gallery--grid .caption p {
    margin-top: 0;
}

.gallery--stack {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    align-items: center;
    justify-content: start;
    gap: 2rem;
    padding: 2rem;
    --offset: 1rem;
}

.gallery--stack .gallery__item {
    border-radius: 1.5vw;
    width: 25vw;
    height: 35vw;
    z-index: 1;
}

.gallery--stack-glass .gallery__item {
    filter: opacity(1);
}

.gallery--switch.gallery--stack .gallery__item {
    grid-area: 1 / 1 / 2 / 2;
}

.gallery--stack .caption {
    position: absolute;
    bottom: 0;
    left: 100vw;
    width: 100vw;
    padding: 5vw;
    color: var(--color-text-alt);
    opacity: 0;
    z-index: 0;
}

.gallery--stack .caption p {
    margin: 0;
}

.gallery--switch.gallery--stack .caption {
    left: 0;
    opacity: 1;
}

.gallery--stack-inverse .gallery__item:nth-child(5) {
    z-index: 2;
}
.gallery--stack-inverse .gallery__item:nth-child(4) {
    z-index: 3;
}
.gallery--stack-inverse .gallery__item:nth-child(3) {
    z-index: 4;
}
.gallery--stack-inverse .gallery__item:nth-child(2) {
    z-index: 5;
}
.gallery--stack-inverse .gallery__item:nth-child(1) {
    z-index: 6;
}

.gallery--switch.gallery--stack .gallery__item:nth-child(2) {
    margin-left: var(--offset);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(3) {
    margin-left: calc(var(--offset) * 2);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(4) {
    margin-left: calc(var(--offset) * 3);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(5) {
    margin-left: calc(var(--offset) * 4);
}

.gallery--switch.gallery--stack .gallery__item:nth-child(6) {
    margin-left: calc(var(--offset) * 5);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(2) {
    filter: brightness(0.8);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(3) {
    filter: brightness(0.7);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(4) {
    filter: brightness(0.6);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(5) {
    filter: brightness(0.5);
}

.gallery--switch.gallery--stack-dark .gallery__item:nth-child(6) {
    filter: brightness(0.4);
}

.gallery--switch.gallery--stack-glass .gallery__item {
    opacity: 0.7;
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(2) {
    transform: scale(0.98);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(3) {
    transform: scale(0.96);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(4) {
    transform: scale(0.94);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(5) {
    transform: scale(0.92);
}

.gallery--switch.gallery--stack-scale .gallery__item:nth-child(6) {
    transform: scale(0.9);
}

.gallery--gridtiny {
    display: grid;
    grid-template-columns: repeat(10,1fr);
    width: 300%;
    padding: 0 2vh;
    height: min-content;
    gap: 1vh;
}

.gallery--switch.gallery--gridtiny {
    width: 100%;
    gap: 2vh;
}

.gallery--gridtiny .gallery__item {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    filter: contrast(0.8) saturate(0) brightness(0.6) opacity(1);
}

.gallery--switch.gallery--gridtiny .gallery__item {
    filter: contrast(1) saturate(1) brightness(0.8) opacity(0.8);
}

.gallery--gridtiny .caption {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 50%;
    top: 50%;
    margin: -50vh 0 0 -50vw;
    display: grid;
    place-items: center;
    font-size: clamp(2rem, 8vw, 4rem);
    opacity: 0;
}

.gallery--switch.gallery--gridtiny .caption {
    opacity: 1;
}

.gallery--switch .gallery__item--center {
    height: 100vh;
    width: 100vw;
    aspect-ratio: auto;
    filter: brightness(0.5);
}

.gallery--bento {
    display: grid;
    gap: 1vh;
    grid-template-columns: repeat(3, 32.5vw);
    grid-template-rows: repeat(4,23vh);
    justify-content: center;
    align-content: center;
}

.gallery--switch.gallery--bento {
    grid-template-columns: repeat(3, 100vw);
    grid-template-rows: repeat(4,49.5vh);
    gap: 15vh;
}

.gallery--bento .gallery__item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.gallery--bento .gallery__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.gallery--bento .gallery__item:nth-child(3) {
    grid-area: 2 / 2 / 4 / 3;
}

.gallery--bento .gallery__item:nth-child(4) {
    grid-area: 1 / 3 / 3 / 3;
}

.gallery--bento .gallery__item:nth-child(5) {
    grid-area: 3 / 1 / 3 / 2;
}

.gallery--bento .gallery__item:nth-child(6) {
    grid-area: 3 / 3 / 5 / 4;
}

.gallery--bento .gallery__item:nth-child(7) {
    grid-area: 4 / 1 / 5 / 2;
}

.gallery--bento .gallery__item:nth-child(8) {
    grid-area: 4 / 2 / 5 / 3;
}

.gallery--bento .caption {
    position: absolute;
    width: 40vw;
    height: 75vh;
    top: 50%;
    left: 55%;
    margin: 100vh 0 0 -50vw;
    font-size: 2vw;
    display: grid;
    place-items: center;
}

.gallery--switch.gallery--bento .caption {
    margin-top: -50vh;
}

.gallery--grid10 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2vw;
}

.gallery--switch.gallery--grid10 {
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: 1fr 60vh 1fr;
    grid-gap: 0;
}

.gallery--switch.gallery--grid10 .gallery__item {
    grid-area: 2 / 2 / 3 / 3;
}

.gallery--grid10 .caption {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    margin: 100vh 0 0 -50vw;
    display: grid;
    place-items: center;
    font-size: clamp(2rem, 8vw, 6rem);
}

.gallery--switch.gallery--grid10 .caption {
    opacity: 1;
    margin-top: -50vh;
}

@media screen and (min-width: 53em) {
    .frame {
        grid-template-columns: auto auto auto 1fr;
        grid-template-areas: 'title prev ... sponsor';
        align-content: space-between;
        justify-items: start;
        grid-gap: 2rem;
    }
    .frame__demos {
        justify-self: end;
    }
    .project--intro {
        grid-template-columns: auto 1fr;
        grid-template-areas: 'label-name name'
        'label-date date'
        'title title'
        'label-mission mission';

    }

    .project--details {
        grid-template-areas: 'label-default paragraph';
        grid-template-columns: auto auto;
    }
    .project__label {
        text-align: right;
    }
    .project__mission {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 'p1 ...' '... p2';
        column-gap: 2rem;
    }
    .gallery--grid10 {
        grid-template-columns: repeat(10,1fr);
        grid-template-rows: repeat(4,1fr);
    }
    .gallery--grid10:not(.gallery--switch) .pos-1 { grid-area: 1 / 1; }
    .gallery--grid10:not(.gallery--switch) .pos-2 { grid-area: 1 / 2; }
    .gallery--grid10:not(.gallery--switch) .pos-3 { grid-area: 1 / 4; }
    .gallery--grid10:not(.gallery--switch) .pos-4 { grid-area: 1 / 5; }
    .gallery--grid10:not(.gallery--switch) .pos-5 { grid-area: 3 / 6; }
    .gallery--grid10:not(.gallery--switch) .pos-6 { grid-area: 1 / 7; }
    .gallery--grid10:not(.gallery--switch) .pos-7 { grid-area: 1 / 9; }
    .gallery--grid10:not(.gallery--switch) .pos-8 { grid-area: 3 / 10; }
    .gallery--grid10:not(.gallery--switch) .pos-9 { grid-area: 2 / 8; }
    .gallery--grid10:not(.gallery--switch) .pos-10 { grid-area: 4 / 9; }
    .gallery--grid10:not(.gallery--switch) .pos-11 { grid-area: 3 / 8; }
    .gallery--grid10:not(.gallery--switch) .pos-12 { grid-area: 2 / 2; }
    .gallery--grid10:not(.gallery--switch) .pos-13 { grid-area: 3 / 1; }
    .gallery--grid10:not(.gallery--switch) .pos-14 { grid-area: 3 / 4; }
    .gallery--grid10:not(.gallery--switch) .pos-15 { grid-area: 4 / 3; }
    .gallery--grid10:not(.gallery--switch) .pos-16 { grid-area: 4 / 7; }

    .gallery--stack .caption {
        bottom: 40%;
        width: 60vw;
        max-width: 800px;
    }

    .gallery--switch.gallery--stack .caption {
        left: 40vw;
    }

    body #cdawrap {
        justify-self: end;
    }
}

.pin-spacer {
    margin-bottom: 0 !important;
}
.project-text  {
    background: #ffffff;
    padding: 10vw 2vw;
}
.project-text h3 i {
    position: relative;
    padding-right: 3.5vw;
}
.project-text h3 i svg {
    position: absolute;
    width: 3vw;
    top: .5vw;
}
.project-text h3 {
    font-weight: 400;
    font-size: 3vw;
    width: 60%;
    letter-spacing: -.1vw;
    line-height: 110%;
}
.in-sale, .cases {
    background: #ffffff;
}
.in-sale h2, .cases h2, .about h2, .calc h2, .about h1 {
    margin: 0;
    font-size: 6vw;
    font-weight: 400;
    margin-left: 2vw;
    letter-spacing: -.3vw;
    font-family: 'Roboto Neue';
}
.in-sale-list-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2vw;
}
.in-sale-list-item-photo {
    width: 35vw;
}
.swiper-slide img {
    width: 100%;
}
.in-sale-list-item-text {
    margin-left: 2vw;
}
.in-sale-list-item-text-header {
    font-size: 3vw;
    line-height: 105%;
    letter-spacing: -.2vw;
}
.cases-list-item {
    display: flex;
    padding: 2vw 2vw 7vw;
}
.cases-list-item-photo {
    width: 40vw;
    padding: 0 1vw;
}
.cases-list-item-photo img {
    width: 100%;
    border-radius: 10px;
}
.cases-list-item-text {
    padding: 0 1vw;
    width: 50vw;
}
.cases-list-item-text-header {
    font-size: 4vw;
    letter-spacing: -.2vw;
}
.cases-list-item-text-money {
    color: #ff4a00;
}
.cases-list-item-text-desc {
    font-size: 2vw;
    font-weight: 400;
    letter-spacing: -.03vw;
    margin-top: 20px;
}
.cases-list-item-numbers {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
}
.cases-list-item-numbers div span {
    color: #999;
}
.cases-list-item-numbers div h3 {
    font-size: 2vw;
    margin: 0;
    font-weight: 400;
}
.calc-block h3 {
    font-weight: 400;
}
.cases-list-item-numbers div {
    width: 30%;
    margin: 20px 0;
}
.about {
    background: #fff;
    padding-top: 4vw;
}
.contacts .about h1 {
    padding: 0;
}
.contacts .about {
    background: none;
    padding-top: 4vw;
    color: #fff
}
.about-block {
    display: flex;
    padding: 2vw;
}
.about-photo {
    width: 30vw;
}
.number-block-block p {
    font-size: 1vw;
    color: #00000060;
    width: 80%;
    margin: 0 3vw;
}
.number-block-block {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.about-text p span {
    border-bottom: 1px solid #00000040;
}
.about-text p {
    font-size: 1.2vw;
    font-family: 'Roboto Neue'; font-weight: 300;
    letter-spacing: -.02vw;
    max-width: 85%;
    color: #00000095
}
.about-text h4 a {
    color: #00000060;
    text-decoration: none;
    border-bottom: 1px solid #00000040;
}
.about-text h4 {
    margin-top: 5px;
    font-family: 'Roboto Neue'; font-weight: 300;
    color: #00000060;
    font-size: 1vw;
}
.about-text h3 {
    font-size: 3vw;
    letter-spacing: -.2vw;
    font-weight: 400;
    margin: 0;
    line-height: 100%;
}
.about-text {
    width: 50vw;
    margin-left: 5vw;
    margin-right: 5vw;
}
.about-photo img {
    width: 100%;
}
.calc {
    background: #ffffff;
    padding-bottom: 5vw;
}
.calc-block-text {
    font-size: 2vw;
    font-weight: 400 !important;
    letter-spacing: -.1vw;
    width: 50vw;
}
.calc-block {
    display: flex;
    padding: 2vw;
}
.calc-block-calc {
    width: 45vw;
    margin-right: 5vw;
}
.calc-block-calc-row, .calc-block-calc-result {
    margin-bottom: 2vw;
}
.calc-block-calc-row h3, .calc-block-calc-result h3 {
    color: #999;
    margin: 0 0 15px 0;
    font-weight: 400;
}
.calc-block-calc-result h3 {
    margin: 0;
}
.calc-block-calc-row-buttons {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
}
.calc-block-calc-row-buttons-item:hover {
    background: #ff4a00;
    transition: all .4s;
}
.calc-block-calc-row-buttons-item.active {
    background: #000;
    color: #fff;
    cursor: default;
}
.calc-block-calc-row-buttons-item {
    padding: .6vw 1.4vw;
    border-radius: 5px;
    background: #f2f2f2;
    cursor: pointer;
    margin-right: 1.2vw;
    font-size: 1.3vw;
    transition: all .2s;
}
/*.calc-block-text h3 {*/
/*    margin: 0;*/
/*}*/
.calc-block-calc-result-text {
    font-size: 4vw;
    letter-spacing: -.3vw;
}

/* заявка на обучение */
.request-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background:rgba(7, 4, 6, 0.60);
}

.request-form.open {
    display: flex;
}


.js-request-ok.open {
    display: flex;
}

.request-form__content {
    position: relative;
    width: 700px;
    padding: 64px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 2px 4px 20px 0 rgba(41, 6, 6, 0.15);
}

@media (max-width: 1023px) {
    .request-form__content {
        width: 558px;
        padding: 32px 32px 64px;
    }
}

@media (max-width: 599px) {
    .request-form__content {
        width: 100vw;
        height: 100vh;
        padding: 80px 16px;
        border-radius: 0;
        overflow-y: scroll;
    }
}

.request-form__close:hover svg path {
    fill: #fff;
    transition: all .3s;
}
.request-form__close:hover {
    background: #FF4900;

    border: 1px solid rgba(255, 2555, 255, 0.30);
    transition: all .3s;
}
.request-form__close {
    transition: all .2s;
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    width: 56px;
    height: 56px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(143, 143, 143, 0.30);
    background: #FFF;
    cursor: pointer;
}

@media (max-width: 960px) {
    .request-form__close {
        width: 32px;
        height: 32px;
        padding: 6px;
        right: 20px;
        position: fixed;
    }

    .request-form__close svg {
        width: 18px;
        height: 18px;
    }
}

.request-form__img {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid #e8e8e8;
}

@media (max-width: 960px) {
    .request-form__img {
        margin-top: 50px;
        width: 86px;
        height: 86px;
    }
    .button-block {
        margin-bottom: 50px;
    }
}

.request-form__img._green {
    border: 4px solid var(--status-green, #31C251);
}

.request-form__desc {
    margin: 0 0 32px;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.64px;
    color: #13010A;
}

@media (max-width: 1023px) {
    .request-form__desc {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.24px;
    }
}

.request-form__desc._pink {
    margin: 0 0 8px;
    color: var(--pink-primary, #FF4900);
}

.request-form__desc._green {
    margin: 0 0 8px;
    color: var(--status-green, #31C251);
}

.request-form__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 32px;
}

.request-form__field {
    width: calc(50% - 8px);
    position: relative;
}

.burger, .mobile-menu, .action-mobile {
    display: none;
}

@media (max-width: 1023px) {
    .request-form__field {
        width: 100%;
    }
}

.request-form__field .placeholder.active {
    color: #13010A;
}

.request-form__field_select svg {
    transition: all 0.3s ease;
}


.request-form__field_select.open svg {
    transform: rotate(180deg);
}

.request-form__input {
    width: calc(100% - 32px);
    height: 64px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(143, 143, 143, 0.30);
    background: #F1F1F1;
    color: #13010A;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.request-form__input::placeholder {
    color: rgba(37, 31, 34, 0.70);
}

.request-form__input:focus {
    border: 1px solid #000;
    caret-color: #000;
}

.request-form__field .placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(37, 31, 34, 0.70);
}

.request-form__option {
    padding: 12px 16px;
    color: #13010A;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-bottom: 1px solid #F1F1F1;
    background: #FFF;
    cursor: pointer;
}

.request-form__option:hover {
    color: #FF4900;
}

.request-form__list {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(143, 143, 143, 0.30);
    box-shadow: 2px 4px 20px 0 rgba(41, 6, 6, 0.15);
    overflow-y: scroll;
    max-height: 247px;
    display: none;
}

@media (max-width: 599px) {
    .request-form__list {
        top: unset;
        bottom: 72px;
    }
}

.request-form__list.open {
    display: block;
}

::-webkit-scrollbar {
    position: absolute;
    left: 0;
    width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FF4900;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #FF4900;
}

.request-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    padding: 20px 32px;
    border-radius: 10px;
    background: #000;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all .2s;
}
.request-form__submit:hover {
    transition: all .3s;
    background: #FF4900;
}

.request-form__success-text {
    max-width: 447px;
    width: 100%;
    margin: 16px auto 0;
    color: rgba(37, 31, 34, 0.70);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.14px;
}
.contact h2 {
    font-size: 3vw;
    line-height: 127%;
    font-weight: 400;
    letter-spacing: -.05em;
    width: 55vw;
    margin-left: 5.5vw;
    margin-top: 5vw;
    margin-bottom: 10vw;
    margin-right: 5vw;
    color: #ffffff;
}

.contacts h3 a {
    color: #fff;
    font-size: 5vw;
    font-weight: 400;
    text-decoration: none;
    border-bottom: none;
}
.contacts h3 {
    margin-left: 2.4vw;
}
.contacts {
    margin-top: 5vw;
    margin-left: 3vw;
    margin-bottom: 5vw;
}
.c_content {
    width: 96vw;
    margin: 0 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c_content {
    align-items: flex-start;
}
.c_content_messenger, .c_content_social, .c_content_mail {
    margin-left: 0.5vw;
    text-align: left;
}
.c_content_messenger, .c_content_social, .c_content_mail {
    margin-bottom: 2vw;
    color: #999;
}
.c_content_messenger ul, .c_content_social ul, .c_content_mail ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 1.5vw;
    line-height: 132%;
    font-weight: 400;
    letter-spacing: -.03em;
}
.c_content_social.rek {
    margin-left: 3vw;
}
.c_content_social.rek span {
    display: block;
    color: #fff;
    font-size: 120%;
}
.c_content ul li {
    margin: 0 1vw 0 0;
}
.c_content ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
}
.contacts-photo img {
    width: 100%;
}
.contacts-photo {
    width: 34%;
    position: absolute;
    top: 10vw;
    right: 5vw;
    z-index: -1;
    overflow: visible !important;
}
.contact {
    display: flex;
    margin-top: 5vw;
    margin-left: 5.4vw;
    margin-bottom: 7vw;
}
.bg-parallax {
    padding: 5vw 0 10vw;
    background: #fff;

}
.bg-parallax-block img {
    width: 100%;
}
.bg-parallax-block {
    width: 100vw;
    height: 80vh;
    overflow: hidden;
}
.contact-photo img {
    width: 100%;
}
.contact-photo {
    width: 26%;
}
.about h1 {
    padding-top: 2vw;
}
#hr-widget h2 {
    letter-spacing: normal !important;

}
.about-urban {
    display: flex;
    justify-content: flex-end;
}
.about-urban h3 {
    font-weight: 400;
    font-size: 3vw;
    width: 60%;
    margin-right: 2vw;
    letter-spacing: -.1vw;
    line-height: 110%;
}
.about-two-photo {
    margin: 2vw;
    padding-top: 5vw;
    display: flex;
    border-top: 1px solid #ccc;
}
.left-photo img, .right-photo img {
    width: 100%;
}
.left-photo {
    margin-right: 2vw;
    width: 30%;
}
.right-photo {
    width: 68%;
}

header.white .menu ul li a {
    color: #fff;
    border-bottom: 1px solid #ffffff60;
    font-size: 115%;
}
.left-photo p {
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: -.03vw;
}
.about-mission, .about-services {
    margin: 5vw 2vw;
    padding: 4vw 0;
    border-top: 1px solid #00000060;
    display: flex;
    flex-wrap: wrap;
}
.about-mission-header {
    width: 30%;
    color: #767676;
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: -.03vw;
}
.about-mission-text {
    margin-left: 3%;
    width: 67%;
    font-size: 6vw;
    letter-spacing: -0.4vw;
    line-height: 94%;
}
.about-mission-text-bottom {
    font-size: 6vw;
    letter-spacing: -0.4vw;
    line-height: 94%;
    margin-left: 6vw;
}
.innovation span, .about-mission span {
    font-family: 'Roboto Neue'; font-weight: 400;
}
.big-photo {
    display: flex;
    height: 80vh;
    overflow: hidden;
}
.big-photo img {
    width: 100%;
}
.about-numbers {
    display: flex;
    padding: 5vw 2vw;
    justify-content: space-around;

}
.number-block span {
    font-size: 1.5vw;
    letter-spacing: -.03vw;
    margin-top: 2vw;
    margin-left: 1vw;
    margin-right: 1vw;
}
.number-block h4 {
    margin: 0;
    font-size: 9vw;
    font-weight: 400;
    font-family: 'Roboto Neue'; font-weight: 400;
}
.number-block {
    display: flex;
    border-left: 1px solid #00000060;
    padding-left: 3vw;
}
.services-header {
    width: 35%;
    color: #767676;
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: -.03vw;
}
.services-text {
    margin-left: 5%;
    width: 60%;
}
.services-text h4 {
    color: #767676;
    font-size: 1.5vw;
    font-weight: 400;
    letter-spacing: -.03vw;
    width: 90%;
    margin: 0;
    margin-bottom: 4vw;
}
.services-block {
    display: flex;
    align-content: flex-start;
    border-top: 1px solid #00000060;
    padding: 2vw 0;
    align-items: center;
}
.finmodel .services-block p {
    font-family: 'Roboto Neue'; font-weight: 400;
}
.services-block p {
    margin: 0;
    font-size: 2vw;
}
.services-block span {
    color: #00000060;
    margin-right: 1vw;
    font-size: 1vw;
    width: auto;
}
.img-graph img {
    width: 100%;
}
.img-graph {
    padding: 2vw 2vw 8vw;
}
.why .about-text  {
    width: 50%;
}
.why .about-text p {
    font-size: 2vw;
    letter-spacing: -.03vw;
    font-weight: 400;
}
.why .about-text h4 {
    color: #999;
    font-size: 1.5vw;
    font-weight: 400;
}
.why .about-text h3 {
    font-size: 4vw;
    letter-spacing: -.3vw;
    font-weight: 400;
}
.team-block p {
    font-size: 2vw;
    letter-spacing: -.03vw;
    font-weight: 400;
    margin-bottom: 3vw;
    width: 65%;
}
.team-block {
    display: flex;
    position: relative;
    width: 50%;
    margin-right: 2vw;
    margin-left: 48%;
    flex-direction: column;
}
.team-item:nth-child(even) {
    margin-left: 6%;
}
.team-item-list {
    display: flex;
    flex-wrap: wrap;
}
.team-item span {
    font-size: 1.5vw;
    margin-top: 1vw;
    padding-bottom: 1vw;
    display: block;
    border-bottom: 1px solid #00000060;
}
.team-item img {
    width: 100%;
}
.team-item {
    width: 47%;
    margin-bottom: 5vw;
}
.team-item.empty p {
    width: 100%;
    margin-bottom: 0;
}
.team-item.empty {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.team-item.empty span {
    border-bottom: none;
    color: #999;
}
.team {
    padding-bottom: 10vw;
}
.block-1, .block-2, .block-3, .block-4 {
    height: 100vh;
    position: relative;
}
.block-1 {
    z-index: 1;
}
.block-2 {
    background: #999;
    z-index: 2;
}
.block-3 {
    background: #fff;
    z-index: 3;
}
.boss-img img {
    width: 100%;
}
.boss-img {
    width: 25vw;
    margin-top: -4vw;
    position: relative;
}
.boss-border {
    font-size: 3vw;
    letter-spacing: -.03vw;
    font-weight: 400;
    width: 220%;
    margin-top: -8vw;
}
.reviews .number-block {
    height: 10vw;
    margin-bottom: 20vw;
}
.reviews .number-block:nth-child(1) {
    border: none;
}
.contacts-photo-block div {
    overflow: visible !important;
}
.innovation {
    background: #fff;
}
.innovation h2 {
    border-top: 1px solid #00000060;
    text-align: right;
    padding: 2vw;
    font-size: 6vw;
    margin: 0 2vw;
    letter-spacing: -0.4vw;
    line-height: 94%;
    font-weight: 400;
}
.innovation-block {
    display: flex;
}
.reviews .about-two-photo {
    border: none;
}
.number-block h4 sup {
    font-size: 60%;
}
.innovation .about-two-photo {
    padding-top: 0;
}
.reviews .about h2 {
    letter-spacing: -.2vw;
    margin-left: 0;
}
.innovation-block {
    padding-bottom: 5vw;
}
.about-page .project-text h3 {
    margin: 0;
}
.about-page .project-text {
    margin: 0;
    /*padding: 0 2vw 10vw;*/
}
.about-page .about-block {
    padding-bottom: 10vw;
}
.why h3 {
    font-weight: 400;
    font-size: 3vw;
    width: 60%;
    letter-spacing: -.1vw;
    line-height: 110%;
    color: #fff
}
.why .services-block p {
    color: #fff;
    max-width: 80%;
}
.why .services-block span {
    color: #ffffff60;
    margin-top: 0.5vw;
}
.about-numbers.managment {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}
.about-numbers.managment .number-block span {
    color: #767676;
    font-family: 'Roboto Neue'; font-weight: 300;
    font-size: 1.3vw;
    letter-spacing: 0;
}
.managment_request .send-lead:hover, .invest-rental-modal:hover {
    background: #000;
    color: #ffffff;
}
.about-numbers.managment .managment_request {
    margin: 0;
}
.managment_request {
    display: flex;
    justify-content: center;
    margin: 6vw 0 2vw;
}
.about-numbers.managment .number-block h3 {
    margin: 0;
    margin-bottom: 40px;
}
.about-numbers.managment .number-block {
    padding-left: 3vw;
    margin-bottom: 5vw;
    margin-right: 3%;
    width: 27%;
    flex-direction: column;
}
.why {
    background: #111;
}
.why .services-block {
    border-top: 1px solid #ffffff60;
    align-items: flex-start;
}
.subscribe {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 10vw 0;
}
.form-block-right {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.lead-form h3 {
    font-size: 1.7vw;
    font-weight: 400;
    letter-spacing: -.03vw;
    color: #ffffff90;
    margin-top: 1vw;
}
.lead-form h2 {
    margin: 0;
    font-family: 'Roboto Neue'; font-weight: 300;
    color: #ffffff60;
    font-size: .9vw;
}
#form-lead input {
    width: 50%;
    margin-right: 2%;
    height: 64px;
    padding: 0 16px;
    border-radius: 15px;
    border: 1px solid rgba(143, 143, 143, 0.30);
    background: #111111;
    color: #fff;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.send-lead:hover, .invest-rental-modal:hover {
    background: #fff;
    color: #000;
}
.thanks {
    width: 100%;
    color: #fff;
    font-size: 5vw;
    padding: 5vw;
    text-align: center;
}
.thanks.hide {
    height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}
.form-blocks.hide-form {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .3s;
}
.send-lead, .invest-rental-modal {
    background: #ff4a00;
    border: none;
    border-radius: 15px;
    padding: 0 90px;
    height: 64px;
    font-family: 'Roboto Neue';
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lead-form form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.lead-form .form-blocks:nth-child(1) {
    width: 60%;
    margin-right: 10%;
}
.lead-form .form-blocks img {
    width: 100%;
}
.lead-form .form-blocks:nth-child(2) {
    width: 20%;
    /*margin-right: 10%;*/
}
.lead-form {
    width: 80%;
    background: #111;
    padding: 3vw;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    border-radius: 14px;
}

.flipping-page .right-photo {
    margin-right: 5%;
}
.flipping-page .number-block span {
    margin-top: -2vw;
    margin-left: 0;
}
.for-investment {
    margin-top: 3vw;
}
.flipping-page .number-block-block .number-block span {
    font-size: 1.5vw;
    letter-spacing: -.03vw;
    margin-top: 2vw;
    margin-left: 1vw;
    margin-right: 1vw;
}
.flipping-page .why h2 {
    color: #fff;
    padding-top: 5vw;
}
.flipping-page .why {
    background: #111;
}
.flipping-page .summary .number-block-block p {
    margin: 0 0 0 12vw;
}
.flipping-page .number-block-block p {
    font-size: 1.5vw;
    color: #00000060;
    width: 40%;
    margin: 0 0 0 3vw;
}
.flipping-page .number-block-block {
    width: 90%;
    margin-left: 8vw;
    margin-top: 3vw;
    margin-bottom: 5vw;
}
.flipping-page .left-photo .number-block {
    display: flex;
    border-bottom: 1px solid #00000060;
    padding-left: 0;
    border-left: 0;
    flex-direction: column;
    padding-bottom: 2vw;
}
.for-whom-block svg {
    position: absolute;
    width: 1.5vw;
    left: -2vw;
    margin-top: 4px;
}
.for-whom-block {
    font-size: 1.5vw;
    width: 35%;
    margin: 0 2vw;
    position: relative;
}
.for-whom {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 8vw;
    margin-top: 3vw;
    gap: 3vw 6vw;
}
.whom {
    margin-top: 6vw;
    margin-bottom: 4vw;
}
.flipping-page .big-photo {
    margin: 8vw 0;
}
.finmodel h3 span {
    font-family: 'Roboto Neue'; font-weight: 400;
    color: #ff4a02;
}
.finmodel .services-block span {
    color: #00000060;
    margin-right: 10px;
    font-size: 1.5vw;
    width: 70%;
}
.finmodel .services-block.last {
    justify-content: flex-end;
    flex-direction: row;
    font-family: 'Roboto Neue'; font-weight: 400;
}
.finmodel .services-block {
    align-items: center;
    justify-content: space-between;
}
.finmodel .about-numbers {
    padding: 0 2vw;
}
.finmodel .summary .number-block-block {
    margin-top: 0;
}
.finmodel .summary .number-block h4 span {
    font-size: 9vw;
    font-family: 'Roboto Neue'; font-weight: 400;
    color: #ff4a02;
}
.finmodel .summary .number-block {
    flex-wrap: wrap;
    padding: 0;
    border: none;
}
.finmodel .about-services {
    border: none;
    padding: 0;
    margin-bottom: 0;
}
.finmodel h3 {
    text-align: right;
    margin: 0 5vw;
    font-weight: 400;
    font-size: 3vw;
    letter-spacing: -.1vw;
    line-height: 110%;
}
.flipping-page .team {
    padding-bottom: 0;
    padding-top: 7vw;
}
.case-desc {
    font-size: 1.5vw;
    color: #00000060;
    width: 40%;
    margin-left: 2vw;
}
.case-img img {
    width: 100%;
    object-fit: contain !important;
}
.case-img {
    margin: 0 2vw;
    width: 96%;
}
.case-block .services-block:nth-last-child(1) p {
    font-weight: 600;
}
.case-block .summary  {
    margin: 0;
    padding: 0;
    justify-content: flex-end;

}
.case-block .summary .number-block-block .number-block {
    border: none;
    margin: 0;
    flex-direction: column;
}
.case-block .summary .number-block-block {
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
/*.case-block .about-numbers .number-block-block .number-block.month h4 {*/
/*    line-height: 100%;*/
/*}*/
.case-block .arrow {
    margin: 0;
    font-family: 'Roboto Neue'; font-weight: 500;
    font-size: 9vw !important;
    color: #ff4a02;
}
.case-block .number-block .summ {
    color: #000;
    text-wrap: nowrap;
}
.case-block .about-numbers .number-block-block .number-block.month span {
    margin: 0;
}
.case-block .about-numbers .number-block-block {
    color: #00000060;
    /*margin-bottom: 0;*/
}
.case-block .about-numbers {
    padding: 0 2vw;
}
.case-block .services-block:nth-child(1) {
    border-top: none;
}
.case-block .about-services {
    margin: 0 2vw;
    padding: 0;
    border-top: none;
}
.case-block {
    margin-top: 7vw;
    padding-top: 2vw;
    border-top: 1px solid #00000040;
}
.why .about-services {
    padding: 4vw 0 7vw;
}
.flipping-page .team {
    padding-top: 0;
}
.principles-page .services-block i {
    font-style: normal;
    color: #ff4a02;
}
.principles-page .services-block span {
    margin-top: 0.7vw;
}
.principles-page .services-block {
    align-items: flex-start;
}
.principles-page .services-text {
    margin-left: 3%;
    width: 72%;
}
.principles-page .subscribe {
    padding: 0 0 10vw 0;
}
.principles-page .services-header {
    width: 25%;
}
.service-all {
    display: flex;
    margin: 10vw 2vw;
    gap: 1vw;
    flex-wrap: wrap;
    justify-content: space-around;
}
.service-all a p {
    margin: 0;
    font-size: 14px;
    color: #767676;
    margin-top: 20px;
}
.service-all a h3 {
    font-size: 1.2vw;
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.service-all a {
    width: 17%;
    border: none;
    text-decoration: none;
    background: #1d1d1d;
    border-radius: 10px;
    display: flex;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    padding: 2vw 3vw;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;

}
.rental {
    margin: 5vw 0;
    padding: 5vw 0;
    border-top: 1px solid #ccc;
}
.chatbot {
    text-wrap-mode: nowrap;
}
.main-container span {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
}
.invest-rental.subscribe {
    justify-content: right;
    padding: 5vw;
}
.invest-rental h3 span {
    color: #fff;
}
.invest-rental .lead-form h2 {
    letter-spacing: normal;
}
.invest-rental .lead-form .form-blocks:nth-child(1) {
    width: 100%;
    margin: 0;
}
.invest-rental .lead-form {
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.55);
    padding: 3vw;
    position: relative;
    width: 35%;
}
.invest-variants-block-body-desc, .invest-variants-block-body-sum {
    font-size: 1.7vw;
    font-weight: 400;
    letter-spacing: -.03vw;
    color: #ffffff90;
    margin-top: 1vw;
}
.invest-variants-block-body-forward {
    font-size: 1vw;
    font-weight: 300;
    letter-spacing: normal;
    color: #ffffff90;
    margin-right: 6%;
    margin-top: 1vw;
}
.invest-variants-block-body-forward-block {
    display: flex;
    justify-content: flex-start;
}
.invest-variants-block-body-sum {
    font-size: 3vw;
}
.invest-variants-block-body-sum, .invest-variants-block-body-forward span {
    color: #fff;
}
.invest-variants-block h3 {
    margin: 0;
    font-family: 'Roboto Neue';
    font-weight: 300;
    color: #ffffff60;
    font-size: .9vw;
}
.invest-variants-block:hover {
    box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.25);
    transition: all .3s;
}
.invest-variants-block {
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.45);
    padding: 3vw;
    margin: 2%;
    width: 35%;
    background: #111;
    border-radius: 14px;
    transition: all .2s;
    display: flex;
}
.invest-variants-block-body-more.black:hover {
    background: #fff;
}
.invest-variants-block-body-more.black {
    outline:2px solid #ffffff90;
    outline-offset:-4px;
    background: none;
}
.invest-variants-block-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.invest-variants-block-body-modal {
    margin-right: 3%;
}
.invest-variants-block-body-link {
    display: flex;
    margin-top: 4vw;
}
.invest-variants {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1480px) {
    header .menu, footer .menu {
        width: 40vw;
        margin-left: 3vw;
    }
    header .menu ul, footer .menu ul {
        margin: 0 0 0 6vw;
    }
    .main-container h1 {
        margin: 19vw 0 0 2vw;
    }
    header .menu ul li, footer .menu ul li, header.active .menu:hover ul li, footer.active .menu:hover ul li {
        max-height: 2vw;
    }
    header.active .menu:after {
        margin-left: 2.7vw;
        width: 40%;
        padding: 2vw 1vw;
    }
    footer .action {
        width: 35vw;
    }
    .invest-rental .lead-form {
        width: 45%;
    }
    .invest-variants-block {
        width: 40%;
    }
    .invest-rental .send-lead, .invest-rental-modal {
        padding: 0px 80px;
    }

}
@media only screen and (max-width: 1280px) {
        header.active .menu:after {
        width: 40%;
        }
        .contacts {
            margin-top: 20vw;
        }
        .invest-variants {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
        }
    .invest-variants-block {
        width: 70%;
    }
    }
@media only screen and (max-width: 1024px) {
    header .action {
        width: 40vw;
    }
    header .menu, footer .menu {
        margin-left: 0;
    }
    header .menu ul, footer .menu ul {
        margin: 0 0 0 4vw;
    }
    footer .action {
        width: 50vw;
    }
    header .menu, footer .menu {
        width: 52vw;
        margin-top: 0;
    }
    header .logo svg, footer .logo svg {
        width: 10vw;
    }
    header.active .menu:after {
        margin-left: 0.7vw;
        margin-top: -1vw;
    }
}
@media only screen and (max-width: 960px) {
    .invest-variants-block-body-link {
        display: flex;
        margin-top: 10vw;
        flex-direction: column;
    }
    .invest-variants-block {
        width: 80%;
        margin: 5% 2%;
        padding: 13vw 7vw;
    }
    .invest-variants-block h3 {
        font-size: 4vw;
    }
    .invest-variants-block-body-sum {
        font-size: 9vw;
    }
    .invest-variants-block-body-desc {
        font-size: 5.5vw;
        margin-top: 5vw;
    }
    .invest-variants {
        margin-top: 10vw;
    }
    .invest-variants-block-body-forward {
        font-size: 4vw;
        margin-top: 10vw;
    }
    .invest-page .whom {
        margin-bottom: 15vw;
    }
    .invest-page .finmodel {
        margin-top: 10vw;
    }
    .invest-page .about-services {
        margin: 5vw 2vw 15vw;
    }
    .invest-rental .lead-form {
        width: 100%;
        padding: 8vw;
    }
    .invest-rental.subscribe {
        padding: 3vw 3vw 15vw;
    }
    header .logo svg, footer .logo svg {
        width: 30vw;
    }
    header {
        padding: 5vw 2vw;
        width: 100vw;
    }
    .service-all {
        gap: 3vw;
        margin: 10vw 2vw 0;
    }
    .service-all a {
        width: 100%;
        background: #161616;
    }
    .cases {
        padding: 15vw 2vw;
    }
    .managment-page .flipping-page .left-photo .number-block {
        flex-direction: row;
    }
    .case-block .summary .number-block-block {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: space-around;
        align-items: flex-start;
    }
    .flipping-page .summary .number-block-block .number-block:nth-child(2) p {
        display: block;
        margin: 0;
        font-size: 4.5vw;
        width: 90%;
    }
    .flipping-page .summary .number-block-block .number-block:nth-child(2) {
        border: none;
        margin: 0;
        padding: 0;
    }
    .flipping-page .summary .number-block-block .number-block span:nth-child(2) {
        margin-left: 18vw;
    }
    .flipping-page .summary .number-block-block .number-block span:nth-child(2) {
        margin-left: 0;
    }
    .case-block .summary .number-block-block .number-block {
        border-left: 1px solid #00000060;
        padding-left: 3vw;
        margin-top: 5vw;
        margin-bottom: 10vw;
    }
    .case-block .summary .number-block-block {
        margin-left: 2vw;
    }
    .case-block .summary .number-block h4 span {
        font-size: 14vw;
    }
    .main-container h1 {
        margin: 25vh 0 0 2vw;
        font-size: 9vw;
        width: 97%;
        letter-spacing: -.3vw;
        font-weight: 400;
        font-family: 'Roboto Neue';
    }
    .main-desc {
        justify-content: flex-start;
        margin-top: 10vh;
        margin-left: 2vw;
    }
    .main-desc p {
        width: 96vw;
        font-size: 5vw;
        font-weight: 400;
        color: #b4b4b4;
        margin: 0;
    }
    .main-action-avatar img {
        border-radius: 11vw;
        width: 11vw;
        margin-right: -3vw;
    }
    .main-action-avatar span {
        margin-left: 20px;
        font-size: 5vw;
    }
    .main-action-button a {
        display: none;
    }
    .scrolling video {
        position: absolute;
        z-index: -1;
        top: 40vh;
        right: 0;
        width: 170%;
        left: -10%;
    }
    .gallery--bento .caption {
        font-size: 8vw;
    }
    .project-text h3 {
        font-weight: 400;
        font-size: 6vw;
        width: 96%;
        letter-spacing: -.2vw;
    }
    .project-text h3 i svg {
        width: 7vw;
    }
    .calc {
        padding-bottom: 15vh;
    }
    .project-text h3 i {
        padding-right: 8vw;
    }
    .in-sale h2, .cases h2, .about h2, .calc h2, .about h1 {
        font-size: 11vw;
        font-family: 'Roboto Neue';
    }
    .cases-list-item {
        flex-direction: column;
        padding: 5vh 2vw 12vh;
    }
    .cases-list-item-photo, .cases-list-item-text {
        width: 100%;
        padding: 0;
    }
    .cases-list-item-text-header {
        font-size: 8vw;
        margin-top: 5px;
    }
    .cases-list-item-text-desc {
        font-size: 5vw;
        font-weight: 400;
        letter-spacing: -.2vw;
        margin-top: 3px;
    }
    .cases-list-item-numbers {
        margin: 10px 0;
    }
    .cases-list-item-numbers div {
        width: 50%;
        margin: 10px 0;
    }
    .cases-list-item-numbers div h3 {
        font-size: 8vw;
        font-weight: 400;
    }
    .cases-list-item-numbers div span {
        color: #999;
        font-size: 5vw;
        margin-top: 0;
        display: block;
    }
    .cases-list-item:nth-child(even) {
        flex-direction: column-reverse;
    }
    .calc-block {
        flex-direction: column;
    }
    .calc-block-calc {
        width: 100%;
        margin-right: 0;
    }
    .calc-block-text {
        font-size: 5vw;
        font-weight: 400 !important;
        letter-spacing: -.2vw;
        width: 100%;
    }
    .calc-block-calc-row h3, .calc-block-calc-result h3 {
        font-size: 5vw;
    }
    .calc-block-calc-row-buttons-item {
        padding: 2vw;
        border-radius: 5px;
        background: #f2f2f2;
        cursor: pointer;
        margin-right: 3vw;
        font-size: 4.5vw;
    }
    .calc-block-calc-result-text {
        font-size: 11vw;
    }
    .calc-block-calc-row, .calc-block-calc-result {
        margin-bottom: 3vh;
    }
    footer {
        flex-direction: column-reverse;
    }
    header .menu ul, footer .menu ul {
        margin: 1vh 0;
        width: 50%;
    }
    header .menu, footer .menu {
        width: 100%;
        display: flex;
        margin: 15px 0;
        flex-direction: row;
        flex-wrap: wrap;
    }
    header .menu .menu-header, footer .menu .menu-header {
        margin-bottom: 3px;
        font-size: 3vw;
    }
    header .menu ul li, footer .menu ul li {
        margin-top: 2px;
    }
    header .menu ul li, footer .menu ul li, header.active .menu:hover ul li, footer.active .menu:hover ul li {
        max-height: 4vh;
    }
    header .menu ul li a, footer .menu ul li a {
        font-size: 4vw;
    }
    header .menu, .action {
        display: none;
    }
    .action-mobile {
        background: #fff;
        border-radius: 10px;
        position: relative;
        width: 88%;
        margin: 15vh 2vw 2vw 2vw;
        padding: 4vw;
        height: max-content;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    }
    footer .action {
        position: relative;
        border-radius: 10px;
        border: 1px solid #3d3d3d;
        width: 20vw;
        right: 0;
        padding: 1vw;
        height: max-content;
        box-shadow: 0 0 30px 0 rgba(0,0,0,0.15);
    }
    .action-header,
    footer .action-header {
        border-bottom: 1px solid #00000020;
        padding-bottom: 10px;
    }
    .action-bottom,
    footer .action-bottom {
        padding-top: 10px;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }
    .action-header, header .action-bottom,
    footer .action-header, footer .action-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .action-header .action-logo,
    footer .action-header .action-logo {
        width: 2vw;
        fill: #000;
    }
    .action-header .action-text p,
    footer .action-header .action-text p {
        font-size: 3.4vw;
        margin-top: 5px;
        color: #767676;
    }
    .action-header .action-button .btn:hover,
    footer .action-header .action-button .btn:hover {
        transition: all .3s;
        background: #FF4900;
    }
    .action-header .action-button .btn {
        background: #000;
        border-radius: 5px;
        display: flex;
        padding: 0 25px;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: all .3s;
    }
    footer .action-header .action-button .btn {
        background: #fff;
        border-radius: 5px;
        display: flex;
        padding: 0 25px;
        color: #000;
        text-decoration: none;
        font-size: 16px;
        border-bottom: none;
        transition: all .3s;
    }
    footer .action-name {
        color: #ffffff;
    }
    .action-bottom .action-link a:hover {
        opacity: .4;
        transition: all .3s;
    }
    .action-bottom .action-link a:hover {
        opacity: .4;
        transition: all .3s;
    }
    .action-bottom .action-link a {
        color: #000;
        text-decoration: none;
        margin-left: 20px;
        transition: all .3s;
    }
    .action-bottom .action-link a {
        color: #fff;
        text-decoration: none;
        margin-left: 20px;
        transition: all .3s;
    }
    .action-link span {
        color: #767676;
        font-size: 3.4vw;
    }
    .action-bottom .action-link,
    footer .action-bottom .action-link {
        font-size: 16px;
    }
    .action-bottom .action-name,
    footer .action-bottom .action-name {
        font-size: 5vw;
    }
    .action-header, header .action-bottom, footer .action-header, footer .action-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .action-header .action-logo, footer .action-header .action-logo {
        width: 10%;
    }
    .action-text {
        width: 76%;
        padding-right: 10%;
    }
    .action-button {
        width: 100vw;
        margin-top: 2vh;
    }
    .action-link a {
        display: none;
    }
    .calc-block h3 {
        font-weight: 400;
    }
    .main {
        width: 100vw;
        overflow: hidden;
        position: relative;
        padding-bottom: 23vh;
        margin-bottom: -23vh;

    }


    .burger {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .burger .menu-items {
        display: flex;
    }

    .burger .nav-container li {
        list-style: none;
    }

    .burger .nav-container a {
        text-decoration: none;
        color: #0e2431;
        font-weight: 500;
        font-size: 1.2rem;
        padding: 0.7rem;
    }

    .burger {
        width: 90%;
        z-index: 99;
        padding-right: 2vw;
    }
    .burger .nav-container a:hover{
        font-weight: bolder;
    }

    .nav-container {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 9px 10px 9px 7px;
        border-radius: 5px;
        justify-content: flex-end;
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    }

    .nav-container .checkbox {
        display: block;
        height: 15px;
        width: 32px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    .nav-container .hamburger-lines {
        height: 10px;
        width: 35px;
        position: absolute;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .nav-container .hamburger-lines .line {
        display: block;
        height: 2px;
        width: 100%;
        background: #000;
    }

    .nav-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .nav-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .nav-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(14deg);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-14deg);
    }
    .mobile-menu.show {
        transform: translate3d(0, 0, 0);
        transition: all .3s;
    }
    .mobile-menu .action-mobile {
        margin: 10vh 2vw;
    }
    .mobile-menu {
        display: block;
        width: 100vw;
        height: 100vh;
        overflow: scroll;
        position: fixed;
        z-index: 9;
        background: #111;
        transform: translate3d(100%, 0, 0);
        transition: all .2s;
    }
    .mobile-menu-list ul a {
        color: #fff;
        text-decoration: none;
        font-weight: 400;
        font-size: 5vw;
    }
    .mobile-menu-list ul {
        list-style: none;
        margin: 5vh 0;
        padding: 0 0 0 10vw;
    }
    .mobile-menu-list {
        padding-top: 50px;
    }
    .mobile-menu .menu-header {
        font-size: 3.4vw;
        color: #686868;
    }
    .contacts {
        margin-top: 15vh;
        margin-left: 2vw;
    }
    .contacts-photo {
        top: 16vh;
    }
    .contacts h3 a {
        font-size: 10vw;
    }
    .c_content {
        margin: 0;
    }
    .c_content p {
        font-size: 4vw;
    }
    .c_content_messenger ul, .c_content_social ul, .c_content_mail ul {
        font-size: 5vw;
    }
    .c_content ul li {
        margin: 0 4vw 0 0;
    }
    .contact {
        display: flex;
        margin-top: 10vh;
        margin-left: 3vw;
        margin-bottom: 7vh;
    }
    .contacts h3 {
        margin-left: 0;
    }
    .contact h2 {
        margin-left: 3.5vw;
        font-size: 5vw;
    }
    .mobile-menu li {
        margin-bottom: 7px;
    }
    .bg-parallax-block {
        height: 55vh;
    }
    .flipping-page .nav-container .hamburger-lines .line,
    .about-page .nav-container .hamburger-lines .line,
    .reviews .nav-container .hamburger-lines .line {
        background: #000;
    }
    .flipping-page .nav-container input[type=checkbox]:checked + .hamburger-lines .line,
    .about-page .nav-container input[type=checkbox]:checked + .hamburger-lines .line,
    .reviews .nav-container input[type=checkbox]:checked + .hamburger-lines .line {
        /*background: #fff;*/
    }

    .flipping-page .number-block-block {
        margin-top: 5vw;
        margin-bottom: 10vw;
        width: 96%;
    }
    .flipping-page .number-block {
        flex-direction: column;
    }
    .flipping-page .number-block h4 {
        font-size: 15vw;
    }
    .flipping-page .number-block-block .number-block span {
        font-size: 5vw;
        letter-spacing: -.03vw;
        margin-top: 0;
    }
    .flipping-page .services-text h4 {
        color: #767676;
    }
    .why .services-block p {
        max-width: 92%;
    }
    .flipping-page .why h2 {
        color: #fff;
        padding-top: 11vw;
    }
    .flipping-page .number-block-block p {
        display: none;
    }
    .flipping-page .number-block-block {
        margin-left: 2vw;
    }
    .for-whom {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 8vw;
        margin-top: 3vw;
        gap: 7vw 6vw;
    }
    .finmodel h3 {
        font-size: 6vw;
    }
    .finmodel .services-block span {
        font-size: 3.2vw;
    }
    .services-block p {
        font-size: 3.5vw;
    }
    .for-whom-block {
        font-size: 4.5vw;
        width: 85%;
    }
    .for-whom-block svg {
        position: absolute;
        width: 4.5vw;
        left: -6vw;
    }
    .about h1 {
        margin-top: 16vw;
    }
    .reviews .number-block:nth-child(1) {
        border: none;
        width: 100%;
        padding-left: 0;
        margin-top: -15vw;
    }
    .about-numbers {
        display: flex;
        flex-direction: column;
    }
    .boss-img {
        width: 100%;
    }
    .reviews .number-block {
        height: max-content;
        margin-bottom: 8vw;
        border: none;
        padding-left: 3vw;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    .boss-border {
        font-size: 7vw;
        letter-spacing: -.03vw;
        font-weight: 400;
        width: 100%;
        margin-top: -28vw;
    }

    .number-block h4 {
        font-size: 25vw;
    }
    .number-block span {
        font-size: 6vw;
        letter-spacing: -.03vw;
        text-align: left;
    }
    .number-block-block p {
        width: 100%;
        font-size: 4vw;
    }
    .number-block-block {
        width: 90%;
        margin-bottom: 40px;
    }
    .about .about-block {
        display: flex;
        flex-direction: column-reverse;
    }
    .about .about-photo {
        width: 100%;
    }
    .about .about-text {
        width: 100%;
        margin: 0;
    }
    .about .about-text h3 {
        margin-top: 2vw;
        font-size: 7vw;
    }
    .about .about-text p {
        font-size: 4vw;
        max-width: 92%;
    }
    .about {
        padding-bottom: 15vw;
    }
    .about .about-text h4 {
        font-size: 4vw;
    }
    .content__text {
        font-size: 5vw;
    }
    .content--card {
        height: max-content;
        aspect-ratio: 2;
        padding: 10vw 5vw;
        width: 85vw;
    }
    .content__titles {
        font-size: 4vw;
    }

    .content__about {
        font-size: 3vw;
    }
    .content__text-block-all {
        margin-left: 4vw;
    }
    .content__text-block {
        height: 40%;
    }
    .reviews .bg-parallax {
        padding: 19vw 0 10vw;
        margin-top: -2px;
    }
    .innovation h2 {
        font-size: 11vw;
        padding: 13vw 0;
    }
    .reviews .bg-parallax-block {
        height: max-content;
    }
    .innovation-block .number-block h4 sup {
        font-size: 100%;
        vertical-align: baseline;
    }
    .innovation-block .number-block span {
        margin-top: -2vw;
    }
    .innovation-block {
        padding-top: 15vw;
        flex-direction: column;
    }
    .reviews .innovation-block .number-block:nth-child(1) {
        margin-top: 0;
    }
    .about-two-photo {
        flex-direction: column;
    }
    .left-photo p {
        font-size: 5vw;
        margin-bottom: 20vw;
    }
    .managment-page .left-photo p {
        margin-bottom: 0;
    }
    .managment_request {
        margin: 6vw 2vw 2vw;
    }
    .about-numbers.managment {
        flex-direction: column;
        justify-content: flex-start;
    }
    .about-numbers.managment .number-block {
        width: 93%;
        margin-bottom: 8vw;
    }
    .about-numbers.managment .number-block h3 {
        margin-bottom: 10px;
    }
    .about-numbers.managment .number-block span {
        margin-left: 0;
        font-size: 4vw;
        margin-top: 0;
    }
    .right-photo {
        width: 100%;
        padding-bottom: 20vw;
    }
    .managment-page .right-photo {
        padding-bottom: 10vw;
    }
    .left-photo {
        width: 100%;
    }
    .about-urban h3 {
        font-size: 5vw;
        margin: 11vw 2vw 7vw 0;
        width: 70%;
    }
    .about-mission-header {
        font-size: 3.5vw;
        width: 21%;
    }
    .about-mission-text-bottom {
        font-size: 9vw;
        letter-spacing: -0.4vw;
        line-height: 94%;
        margin-left: 0;
    }
    .about-mission {
        padding: 10vw 0;
    }

    .about-services {
        margin: 15vw 2vw;
        padding: 10vw 0 15vw;
    }
    .why .about-services {
        margin: 0 2vw 15vw 2vw;
    }
    .about-mission-text {
        margin-left: 9%;
        width: 70%;
        font-size: 9vw;
    }
    .about-page .number-block {
        margin-bottom: 3vw;
    }
    .about-page .number-block span {
        text-align: left;
        margin-top: 5vw;
        margin-left: 4vw;
    }
    .managment-page.about-page .number-block span {
        margin-top: 2vw;
    }
    .services-header {
        font-size: 3.5vw;
        width: 100%;
        margin-left: 1vw;
        margin-bottom: 3vw;
        font-family: 'Roboto Neue'; font-weight: 300;
    }
    .services-text {
        width: 95%;
    }
    .services-text h4 {
        color: #000000;
        font-size: 4vw;
        width: 100%;
    }
    .services-block {
        padding: 5vw 0;
    }
    .services-block p {
        font-size: 4vw;
        text-wrap: nowrap;
    }
    .services-block span {
        font-size: 3vw;
        width: 6%;
    }
    .team-block p {
        margin-bottom: 7vw;
        width: 85%;
        font-size: 4.5vw;
    }
    .team-block {
        width: 96%;
        margin-right: 2vw;
        margin-left: 2vw;
    }
    .team-item-list {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .team-item {
        width: 100%;
        margin-bottom: 15vw;
    }
    .team-item:nth-child(even) {
        margin-left: 0;
    }
    .team-item span {
        font-size: 6vw;
        margin-top: 3vw;
        padding-bottom: 5vw;
    }
    .loader svg {
        width: 20%;
        height: 20%;
    }
    .lead-form {
        width: 83%;
        padding: 11vw 6vw;
    }
    .lead-form form {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }
    .lead-form .form-blocks:nth-child(2) {
        display: none;
    }
    .lead-form .form-blocks {
        width: 100%;
        margin: 0;
    }
    .lead-form h2 {
        font-size: 4vw;
    }
    .lead-form h3 {
        font-size: 5.5vw;
        margin-top: 4vw;
    }
    .form-block-right {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .lead-form .form-blocks:nth-child(1) {
        width: 100%;
    }
    #form-lead input {
        width: calc(100% - 32px);
        margin-right: 0;
        margin-top: 10px;
    }
    .send-lead, .invest-rental-modal {
        justify-content: center;
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }
    .gallery--bento .caption {
        max-width: 80% !important;
        width: 80% !important;
    }
    .subscribe {
        padding: 0 0 20vw;
    }
    .main-container span {
        font-size: 4vw;
        width: 90%;
        margin: 7vw 2vw 2vw;
    }
    .chatbot-menu {
        justify-content: center;
        width: 80vw;
        margin-left: 10vw;
        padding: 0;
        margin-top: 10px;
        background: #ff4a00;
        border: none;
        border-radius: 5px;
        height: 64px;
        font-family: 'Roboto Neue';
        color: #fff;
        text-decoration: none;
        transition: all .3s;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    .case-block .number-block-block {
        margin-bottom: 2vw;
    }
    .case-block:nth-child(2) {
        border: none;
        margin-top: 0;
        padding: 0;
    }
    .case-block {
        border-top: 1px solid #00000040;
        margin: 20vw 0;
        padding-top: 2vw;
    }
    .case-block .case-desc {

        font-size: 4.5vw;
        width: 90%;
    }
    .why p {
        text-wrap: wrap;
    }
    .principles-page p {
        text-wrap: wrap;
    }
    .principles-page .services-text {
        margin-left: 1%;
        width: 98%;
    }
}
