@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");

@-webkit-keyframes marqueeMove {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-1 * (var(--marquee-shift) + var(--marquee-gap))));
    }
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(calc(-1 * (var(--marquee-shift) + var(--marquee-gap))));
    }
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background: rgb(235, 235, 235);
}

::-webkit-scrollbar-track {
    background: rgb(235, 235, 235);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgb(255, 85, 0);
    border-radius: 4px;
}

@supports (-ms-ime-align:auto) or (-moz-appearance: none) {
    * {
        scrollbar-width: thin;
        scrollbar-color: rgb(255, 85, 0) rgb(235, 235, 235);
    }
}

html {
    font-family: Unbounded, sans-serif;
    background: rgb(235, 235, 235);
    color: rgb(29, 27, 27);
    font-size: 0.067vw;
    scroll-behavior: smooth;
    scroll-padding: 180rem;
}

main {
    overflow: hidden;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.section_client,
.section_expertise,
.section_projects {
    padding: 45rem 0px;
}

.section_hero,
.section_approach,
.section_banner {
    margin-bottom: 45rem;
}

.container {
    max-width: 1440rem;
    margin: 0px auto;
    padding: 0px 30rem;
}

.header {
    min-height: 168rem;
}

.header .nav {
    position: fixed;
    z-index: 10000;
    top: 30rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1380rem;
    margin: 0px auto;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40rem;
    padding: 20rem 30rem;
    background: rgb(255, 255, 255);
    border-radius: 30rem;
    max-width: unset;
}

.logo svg {
    width: 132rem;
    height: auto;
}

.header__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    gap: 8rem;
    outline: none;
}

.header__burger span {
    display: block;
    width: 47rem;
    height: 4rem;
    background: #FF5500;
    border-radius: 90rem;
    transition: all 0.3s ease;
}

.header.is-active .header__burger span:nth-child(1) {
    transform: translateY(12rem) rotate(45deg);
}

.header.is-active .header__burger span:nth-child(2) {
    opacity: 0;
}

.header.is-active .header__burger span:nth-child(3) {
    transform: translateY(-12rem) rotate(-45deg);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 40rem;
    transition: all 0.3s ease;
    flex: 1;
}

.header__menu ul {
    display: flex;
    gap: 20rem 40rem;
    flex-wrap: wrap;
    margin-inline: auto;
    list-style: none;
    padding: 0 !important;
}

.header__menu ul a {
    font-family: inherit;
    text-decoration: none;
    font-size: 14rem;
    line-height: 1;
    font-weight: 400;
    transition: color 0.3s;
    color: rgb(0, 0, 0) !important;
}

.header__menu ul a.is-active,
.header__menu ul a:hover {
    color: rgb(255, 85, 0) !important;
}

.btn {
    font-weight: 500;
    font-size: 14rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.03em;
    background: rgb(255, 255, 255);
    padding: 15rem 30rem;
    text-decoration: none;
    border-radius: 100rem;
    transition: opacity 0.3s;
    height: 50rem;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    -o-border-image: initial;
    border-image: initial;
    cursor: pointer;
    font-family: inherit !important;
    color: rgb(29, 27, 27) !important;
}

.btn:hover {
    opacity: 0.8;
}

.btn.btn_primary {
    background: rgb(255, 85, 0);
    color: rgb(255, 255, 255) !important;
}

.section_hero,
.section_approach {
    padding: 0px 30rem;
}

.section_hero .container {
    padding: 80rem 40rem 0px;
    max-width: 1380rem;
    background: rgb(246, 246, 246);
    border-radius: 30rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.section_hero .container::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 296rem;
    height: 356rem;
    right: 0px;
    top: 0px;
    background: url("https://static.tildacdn.com/tild3064-3832-4263-a663-323635343532/main_bg_before.png") left top / cover no-repeat;
}

.section_hero .container::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 1037rem;
    height: 163rem;
    left: 84rem;
    bottom: 0px;
    background: url("https://static.tildacdn.com/tild6463-3261-4239-a131-343464656236/main_bg_after.png") left top / cover no-repeat;
}

.section_hero__uptitle {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
    padding-left: 36rem;
    padding-bottom: 20rem;
    --c-light: #e5e5e5c9;
    --c-dark: #d0d0d0bd;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
}

.section_hero__uptitle h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.21;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(29, 27, 27);
    padding: 10rem 15rem;
    border-radius: 100rem;
    background: linear-gradient(153deg, rgb(230 230 230 / 60%), rgb(255 255 255 / 60%) 60%);
    -webkit-backdrop-filter: blur(40rem);
    backdrop-filter: blur(40rem);
    box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1rem 2rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -1rem -1rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -2rem -6rem 1rem -5rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.5rem -0.5rem 3rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), inset -0.5rem 1rem 0rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0rem 2rem 3rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 1rem -4rem 0.5rem -3rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0rem 0.5rem 0.5rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
}

.bar img {
    vertical-align: middle;
    transform: translateY(-0.075em);
}

.section_banner__title,
.section_hero__title {
    text-indent: 36rem;
    font-weight: 600;
    font-size: 70rem;
    line-height: 1.29;
    text-transform: uppercase;
}

.section_hero__title .accent {
    padding-left: 195rem;
}

.section_hero__subtitle {
    position: absolute;
    left: 685rem;
    top: 182rem;
    max-width: 400rem;
    font-size: 14rem;
    line-height: 1;
}

.accent {
    color: rgb(255, 86, 2);
}

.section_hero__title .bar {
    padding-left: 36rem;
}

.section_hero__buttons {
    display: flex;
    justify-content: center;
    gap: 20rem;
    margin-top: 30rem;
}

.marquee {
    display: flex;
    overflow: hidden;
    padding: 20rem 0px;
    background: rgb(255, 255, 255);
    --marquee-gap: 50rem;
}

.section_main__marquee {
    margin: 100rem -40rem 0px;
}

.marquee__track {
    display: flex;
    gap: var(--marquee-gap);
}

.marquee.is-animated .marquee__track {
    -webkit-animation: 40s linear 0s infinite normal none running marqueeMove;
    animation: 40s linear 0s infinite normal none running marqueeMove;
}

.marquee__container {
    display: flex;
    flex-shrink: 0;
    gap: var(--marquee-gap);
}

.marquee span {
    font-weight: 500;
    font-size: 14rem;
    line-height: 1.3;
    text-transform: uppercase;
    display: flex;
    gap: 8rem;
    align-items: center;
}

.marquee span::after {
    content: "";
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNiAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNTY2NDEgMTMuODEyNUwxMy41ODExIDEuNzk3ODVNMTMuNTgxMSAxLjc5Nzg1SDEuNTY2NDFNMTMuNTgxMSAxLjc5Nzg1VjEzLjgxMjUiIHN0cm9rZT0iI0ZGNTUwMCIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") center center / contain no-repeat;
    width: 16rem;
    height: 16rem;
    flex-shrink: 0;
}

h3.section__uptitle {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
}

h2.section__title {
    font-weight: 600;
    font-size: 40rem;
    line-height: 1.29;
    text-transform: uppercase;
}

p.section__descr {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
    margin-top: 15rem;
}

.section__top-info {
    display: flex;
    flex-direction: column;
    gap: 15rem;
    max-width: 660rem;
}

.section_slider .section__top {
    display: flex;
    gap: 40rem;
    justify-content: space-between;
    align-items: flex-end;
}

.section_slider__arrows {
    display: flex;
    gap: 20rem;
    align-items: center;
}

.section_slider__arrows-item {
    background: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    -o-border-image: initial;
    border-image: initial;
    border-radius: 100rem;
    width: 64rem;
    height: 64rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.section_slider__arrows-item svg {
    width: 28rem;
    height: 28rem;
}

.section_slider__arrows-item path {
    transition: 0.3s;
}

.section_slider__arrows-item:hover {
    background: rgb(255, 86, 2);
}

.section_slider__arrows-item:hover path {
    stroke: rgb(255, 255, 255);
}

.section_slider__item {
    max-width: 460rem;
    background: rgb(246, 246, 246);
    padding: 30rem;
    border-radius: 20rem;
    display: flex !important;
    flex-direction: column;
    gap: 15rem;
    height: unset !important;
    margin-right: 30rem;
}

.title {
    font-size: 24rem;
    line-height: 1.3;
    font-weight: 500;
}

.section_client .title {
    font-size: 18rem;
}

.section_client__item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40rem;
}

.section_client__item-top img {
    height: 30rem;
}

.section__bottom {
    margin-top: 30rem;
}

.section_client__item-middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 5rem;
    --c-light: #e5e5e5c9;
    --c-dark: #d0d0d0bd;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.section_client__item-middle li {
    padding: 10rem 15rem;
    border-radius: 100rem;
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.3;
    background: linear-gradient(153deg, rgb(230 230 230 / 60%), rgb(255 255 255 / 60%) 60%);
    -webkit-backdrop-filter: blur(40rem);
    backdrop-filter: blur(40rem);
    box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1rem 2rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -1rem -1rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -2rem -6rem 1rem -5rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.5rem -0.5rem 3rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), inset -0.5rem 1rem 0rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0rem 2rem 3rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 1rem -4rem 0.5rem -3rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0rem 0.5rem 0.5rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
}

.descr {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
}

.section_client__item-bottom.descr {
    opacity: 0.8;
}

.section_expertise .section__descr {
    max-width: 322rem;
}

.section_expertise .section__bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(11, 1fr);
    gap: 28rem;
    margin-top: -270rem;
    margin-bottom: 45rem;
}

.section_expertise__card {
    position: relative;
    border-radius: 20rem;
    overflow: hidden;
    isolation: isolate;
    padding: 15rem;
    display: flex;
    flex-direction: column;
    gap: 15rem;
    min-height: 346rem;
}

.section_expertise__card .title {
    text-transform: uppercase;
}

.section_expertise__card-icon {
    width: 22rem;
    margin-bottom: auto;
}

.section_expertise__card-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section_expertise__card:nth-child(6n-5) {
    grid-area: 5 / 1 / 10;
    color: rgb(255, 255, 255);
}

.section_expertise__card:nth-child(6n-4) {
    grid-area: 4 / 2 / 9;
}

.section_expertise__card:nth-child(6n-3),
.section_expertise__card:nth-child(6n-2) {
    grid-column: 3;
}

.section_expertise__card:nth-child(6n-3) {
    grid-row: 1 / 6;
}

.section_expertise__card:nth-child(6n-2) {
    grid-row: 6 / 11;
    color: rgb(255, 255, 255);
}

.section_expertise__card:nth-child(6n-1),
.section_expertise__card:nth-child(6n) {
    grid-column: 4;
}

.section_expertise__card:nth-child(6n-1) {
    grid-row: 2 / 7;
    color: rgb(255, 255, 255);
}

.section_expertise__card:nth-child(6n) {
    grid-row: 7 / 12;
}

.section_expertise {
    position: relative;
    isolation: isolate;
}

.section_expertise::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 265rem;
    right: -4rem;
    width: 1440rem;
    height: 910rem;
    background: url("https://static.tildacdn.com/tild3834-3265-4363-b563-356136386665/expertise_bg.png") right center / contain no-repeat;
    pointer-events: none;
}

.section_banner__title {
    text-indent: unset;
}

.section_banner .container {
    max-width: 1180rem;
}

.section_banner__title-shift {
    padding-left: 96rem;
}

.section_banner__title-right {
    padding-left: 342rem;
    position: relative;
}

.section_banner__title-right::after {
    content: "";
    position: absolute;
    width: 115rem;
    height: 115rem;
    top: 50%;
    left: calc(100% + 60rem);
    transform: translateY(-50%);
    background: url("https://static.tildacdn.com/tild6532-3866-4637-b466-343034346661/bg_ellipse_right.png") center center / contain no-repeat;
}

.section_banner__card {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    padding: 15rem;
    border-radius: 20rem;
    background: linear-gradient(153deg, rgb(230 230 230 / 60%), rgb(255 255 255 / 60%) 60%);
    backdrop-filter: blur(12rem);
    -webkit-backdrop-filter: blur(12rem);
    max-width: 302rem;
    margin-top: -20rem;
    --c-light: #fff;
    --c-dark: #d2d2d2;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 2rem 3rem 0rem -2rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -2rem -2rem 0rem -2rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -3rem -8rem 1rem -6rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.3rem -1rem 4rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent),
        inset -1rem 2rem 0rem -2rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0rem 3rem 4rem -2rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 2rem -6rem 1rem -4rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0rem 1rem 1rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
}

.section_banner__card .title.title__accent {
    font-size: 40rem;
    color: rgb(255, 86, 2);
}

.section_banner__card .descr {
    opacity: 0.8;
}

.section_banner {
    position: relative;
    isolation: isolate;
    visibility: visible;
    z-index: 1;
}

.section_banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    width: 586rem;
    height: 820rem;
    left: 0px;
    top: 306rem;
    background: url("https://static.tildacdn.com/tild6461-6533-4161-b131-663832363830/banner_bg.png") left center / contain no-repeat;
}

.section_projects {
    position: relative;
    z-index: 2;
}

.section_projects .section__descr {
    max-width: 316rem;
}

.section_projects__card {
    position: relative;
    isolation: isolate;
    padding: 20rem 10rem;
    border-radius: 20rem;
    overflow: hidden;
    min-height: 242rem;
    display: flex;
    flex-direction: column;
    color: rgb(255, 255, 255);
    --c-light: #b8b8b875;
    --c-dark: #d3d3d33d;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
}

.section_projects .section__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30rem;
}

.section_projects__card img {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.section_projects .tags {
    margin-bottom: auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.section_projects__card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12rem;
}

.section_projects__card:nth-child(5n-4) {
    width: 558rem;
    color: rgb(0, 0, 0);
    --c-light: #e5e5e5c9;
    --c-dark: #d0d0d0bd;
}

.section_projects__card:nth-child(5n-3) {
    width: 322rem;
}

.section_projects__card:nth-child(5n-2) {
    width: 440rem;
}

.section_projects__card:nth-child(5n-1),
.section_projects__card:nth-child(5n) {
    width: 675rem;
}

.section_projects .tag {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.3;
    padding: 5rem 10rem;
    border-radius: 100rem;
    backdrop-filter: blur(40rem);
    -webkit-backdrop-filter: blur(40rem);
    color: inherit;
    background: rgba(29, 27, 27, 0.1);
    box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 1rem 2rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1rem -1rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2rem -6rem 1rem -5rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.5rem -0.5rem 3rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent),
        inset -0.5rem 1rem 0rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0rem 2rem 3rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 1rem -4rem 0.5rem -3rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0rem 0.5rem 0.5rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
}

.section_projects__card:nth-child(5n-4) .tag {
    background: linear-gradient(153deg, rgb(230 230 230 / 60%), rgb(255 255 255 / 60%) 60%);
}

.year {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
}

.section_projects__card-info {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.section_projects__card .title {
    font-weight: 500;
    font-size: 18rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.section_projects__card .btn {
    padding: 10rem 20rem;
    height: 40rem;
}

.section_projects__card:nth-child(5n-4) .title {
    max-width: 223rem;
}

.project-popup {
    position: fixed;
    inset: 0px;
    z-index: 100000;
    background: rgba(29, 27, 27, 0.8);
    -webkit-backdrop-filter: blur(15rem);
    backdrop-filter: blur(15rem);
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    padding: 30rem;
    display: flex;
}

.project-popup.is-active {
    pointer-events: all;
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}

.project-popup__content {
    padding: 45rem 30rem;
    background: rgb(246, 246, 246);
    border-radius: 20rem;
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30rem;
    transform: translateY(20%);
    transition: transform 0.3s;
}

.project-popup.is-active .project-popup__content {
    transform: translateY(0px);
}

.project-popup__close {
    position: absolute;
    z-index: 10;
    right: 60rem;
    top: 60rem;
    width: 40rem;
    height: 40rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    -o-border-image: initial;
    border-image: initial;
    background: rgb(255, 255, 255);
    cursor: pointer;
}

.project-popup__close svg {
    width: 14rem;
}

.project-popup__header-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    --c-light: #e5e5e5c9;
    --c-dark: #d0d0d0bd;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
}

.project-popup__header-tags .tag {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.3;
    padding: 10rem 15rem;
    border-radius: 100rem;
    color: rgb(29, 27, 27);
    background: linear-gradient(153deg, rgb(230 230 230 / 60%), rgb(255 255 255 / 60%) 60%);
    -webkit-backdrop-filter: blur(40rem);
    backdrop-filter: blur(40rem);
    box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1rem 2rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent), inset -1rem -1rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent), inset -2rem -6rem 1rem -5rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.5rem -0.5rem 3rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent), inset -0.5rem 1rem 0rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0rem 2rem 3rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 1rem -4rem 0.5rem -3rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0rem 0.5rem 0.5rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
}

.project-popup__header-tags .tag:first-child {
    color: rgb(255, 255, 255);
    background: rgb(255, 85, 0);
    box-shadow: none;
}

.project-popup__header {
    display: flex;
    flex-direction: column;
    gap: 20rem;
}

.project-popup__header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40rem;
}

.project-popup__header-info .title {
    max-width: 870rem;
    font-weight: 500;
    font-size: 30rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.project-popup__header-info-logos {
    display: flex;
    gap: 36rem;
}

.project-popup__header-info-logos img {
    height: 48rem;
}

.project-popup__body {
    display: flex;
    gap: 20rem;
}

.project-popup__body-left,
.project-popup__body-right {
    flex: 1 1 0%;
}

.project-popup__body-right img {
    width: 100%;
    -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.2) 4rem 4rem 12rem);
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 4rem 4rem 12rem);
}

.project-popup__body-right {
    position: relative;
}

.project-popup__body-card-row {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50rem;
    padding-bottom: 15rem;
    margin-bottom: 15rem;
    border-bottom: 1px dashed rgb(29, 27, 27);
}

.project-popup__body-card .title {
    font-weight: 700;
    font-size: 14rem;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0.8;
}

.project-popup__body-card .title.accent {
    opacity: 1;
}

.project-popup__body-card p,
.project-popup__body-card li {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.3;
    opacity: 0.8;
}

.project-popup__body-card ul {
    padding-left: 20rem;
    list-style: disc !important;
}

.project-popup__body-card-row:last-child {
    padding-bottom: 0px !important;
    margin-bottom: 0px;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
}

.project-popup__body-card {
    padding: 20rem;
    border-radius: 20rem;
    background: rgb(255, 255, 255);
}

.infographics {
    display: flex;
    gap: 10rem;
    margin-top: 15rem;
}

.infographic-card {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding: 10rem 15rem;
    border-radius: 15rem;
    background: rgb(255, 255, 255);
}

.infographic-card p {
    font-size: 14rem;
    line-height: 1.3;
    opacity: 0.8;
}

.infographic-card h4 {
    font-size: 24rem;
    line-height: 1.3;
    font-weight: 600;
    color: rgb(255, 85, 0);
}

.project-popup__body-right .btn {
    position: absolute;
    left: 0px;
    bottom: 0px;
    gap: 8rem;
    text-decoration: underline !important;
}

.project-popup__body-right .btn:after {
    content: '';
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDggMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik03LjYzMzIzIDQuMjk1MTVDOC4xMjIyNiA0LjYwODQyIDguMTIyMjYgNS4zOTE1OCA3LjYzMzIzIDUuNzA0ODVMMS4xMDAzMSA5Ljg4OTc1QzAuNjExMjg1IDEwLjIwMyAtMi40NjgzZS0wOCA5LjgxMTQzIDAgOS4xODQ5TDMuMjk3MzllLTA3IDAuODE1MTAxQzMuNTQ0MjJlLTA3IDAuMTg4NTcgMC42MTEyODcgLTAuMjAzMDExIDEuMTAwMzIgMC4xMTAyNTVMNy42MzMyMyA0LjI5NTE1WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==') no-repeat center / contain;
    display: block;
    flex-shrink: 0;
    width: 8rem;
    height: 10rem;
}

.section_approach .container {
    display: flex;
    gap: 30rem;
    max-width: 1380rem;
    padding: 60rem 30rem;
    background: rgb(255, 255, 255);
    border-radius: 30rem;
}

.section_approach .section__top {
    width: 100%;
    max-width: 292rem;
}

.section_approach__item {
    padding-bottom: 20rem;
    margin-bottom: 20rem;
    border-bottom: 1px dashed rgb(29, 27, 27);
    display: flex;
    gap: 93rem;
}

.section_approach__item:last-child {
    margin-bottom: 0;
}

.section_approach__item-digit {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
    opacity: 0.8;
    margin-top: 7rem;
}

.section_approach__item-info {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.section_approach__item-info .title {
    text-transform: uppercase;
}

.footer {
    padding: 60rem 0px 30rem;
    background: url("https://static.tildacdn.com/tild3236-3363-4265-b433-633634313131/footer_logo.svg") 732rem center / auto 100% no-repeat, rgb(20, 19, 17);
    color: rgb(255, 255, 255);
}

.footer a {
    color: rgb(255, 255, 255) !important;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 116rem;
}

.footer__title {
    font-weight: 700;
    font-size: 14rem;
    line-height: 1.2;
}

.footer__top-middle li a,
.footer__top-right a,
.footer__bottom-copyright,
.footer__bottom-links a {
    font-weight: 400;
    font-size: 14rem;
    line-height: 1.2;
    opacity: 0.8;
    text-decoration: none;
}

.footer__top-middle li a,
.footer__top-right a {
    text-decoration: underline !important;
}

.footer__top {
    display: flex;
    gap: 104rem;
}

.footer__top-middle {
    display: flex;
    gap: 134rem;
}

.footer__top-middle ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15rem;
    margin: 0px !important;
    padding: 0px !important;
}

.footer__top-right {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.footer__top-right a {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.footer__bottom {
    display: flex;
    gap: 230rem;
}

.footer__bottom-links {
    display: flex;
    gap: 30rem;
}

.section_banner__title .arrow img {
    width: 55rem;
}

.section_approach .section__bottom {
    margin: 0;
}

.uc-form .t-container {
    max-width: unset;
    padding: 0 118rem !important;
}

.uc-form .t-container.t-section__container {
    padding: 60rem 118rem 0 !important;
}

.uc-form .t678 {
    max-width: 1380rem;
    margin: 0 auto;
    background: url('https://static.tildacdn.com/tild3635-3834-4962-b335-626465616236/bg.png') no-repeat center / cover;
    border-radius: 30rem;
    overflow: hidden;
}

.uc-form .marquee {
    margin-top: 60rem;
}

.uc-form .t-col {
    max-width: unset;
    margin: 0 !important;
    padding: 0 !important;
}

.uc-form {
    padding: 0 30rem;
}

.uc-form * {
    font-family: Unbounded, sans-serif;
}

.uc-form .t-section__title {
    color: #ffffff !important;
    font-size: 40rem;
    line-height: 1.29;
    margin-bottom: 40rem !important;
    font-weight: 600;
    text-transform: uppercase;
}

.uc-form .t-input-title {
    font-size: 14rem;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 500;
    padding: 0 !important;
    margin-bottom: 15rem;
}

.uc-form .t-input-group {
    margin-bottom: 20rem !important;
}

.uc-form .t-input {
        border-radius: 100rem;
        backdrop-filter: blur(40rem);
        -webkit-backdrop-filter: blur(40rem);
        background: linear-gradient(153deg, rgb(230 230 230 / 20%), rgb(255 255 255 / 20%) 60%);
        box-shadow: inset 0 0 0 1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 1rem 2rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -1rem -1rem 0rem -1rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -2rem -6rem 1rem -5rem color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.5rem -0.5rem 3rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 12%), transparent),
        inset -0.5rem 1rem 0rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0rem 2rem 3rem -1rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 1rem -4rem 0.5rem -3rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0rem 0.5rem 0.5rem 0rem color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
        --c-light: #ffffffc9;
        --c-dark: #432813bd;
        --glass-reflex-dark: 1;
        --glass-reflex-light: 1;
        border: none !important;
        height: 62rem;
        font-size: 14rem !important;
        padding: 0 15rem;
        color: #ffffff !important;
        }

.uc-form .t-input::placeholder {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

.uc-form textarea.t-input {
    border-radius: 15rem;
    padding: 10rem 15rem;
    resize: none;
}

.uc-form .t-checkbox__indicator {
    border-color: #ffffff;
    border-radius: 3rem !important;
    width: 18rem;
    height: 18rem;
}

.uc-form .t-checkbox__indicator:after {
    height: 8rem;
    width: 3rem;
    left: 4rem;
    top: 0rem;
}

.uc-form .t-checkbox__control>span {
    color: #ffffff;
    font-size: 13rem;
    font-weight: 500;
    line-height: 1.4;
}

.uc-form .t-form__submit {
    margin: 0 !important;
    padding: 0 !important;
}

.uc-form .t-submit {
    width: 100%;
    border-radius: 100rem;
    height: 50rem;
    padding: 15rem 30rem;
    font-size: 14rem;
    letter-spacing: -0.03em;
    line-height: 1.4;
    background: #ffffff !important;
    color: #ff5602 !important;
}

.uc-form {
    margin-bottom: 45rem;
}

.uc-form .t-form__errorbox-middle {
    display: none !important;
}

@media screen and (max-width: 768px) {
    html {
        font-size: 0.1302vw;
    }

    .header .nav {
        left: 30rem;
        right: 30rem;
        top: 30rem;
        width: unset;
        transform: unset;
    }

    .header {
        min-height: 154rem;
    }

    .header .container {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto 0fr;
        transition: all 0.3s ease;
        padding: 15rem;
        gap: 0 60rem;
        align-items: start;
        overflow: hidden;
        border-radius: 15rem;
        max-height: calc(100vh - 60rem);
    }

    .header .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .header__menu {
        grid-column: span 2;
        flex-direction: column;
        gap: 60rem;
        grid-row: 2;
        overflow: hidden;
        pointer-events: none;
        opacity: 0;
        overflow-y: auto;
        max-height: 100%;
    }

    .header.is-active .container {
        grid-template-rows: auto 1fr;
    }

    .header.is-active .header__menu {
        opacity: 1;
        pointer-events: all;
    }

    .header__menu ul {
        flex-direction: column;
        align-items: center;
        gap: 40rem;
        margin-top: 60rem;
    }

    .header__burger {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        margin-top: 24rem;
    }

    .section_hero__uptitle h3 {
        font-size: 12rem;
    }

    .section_hero__uptitle {
        padding-left: 0;
    }

    .section_hero .container {
        padding: 50rem 24rem 0px;
        border-radius: 15rem;
    }

    .section_hero__buttons {
        margin-top: 20rem;
    }

    .section_main__marquee {
        margin-top: 50rem;
    }

    .section_hero .container::after {
        width: 703rem;
        height: 128rem;
        left: -54rem;
        background-size: contain;
    }

    .section_hero__title {
        text-indent: unset;
    }

    .section_banner__title,
    .section_hero__title {
        font-size: 45rem;
    }

    .section_banner__title .arrow {
        padding-left: 21rem;
    }

    .section_hero__title .accent {
        padding-left: 33rem;
    }

    .section_hero__title .bar {
        padding-left: 10rem;
    }

    .bar img {
        height: 0.89em !important;
    }

    .mob-shift {
        padding-left: 118rem;
    }

    .mob-shift-bottom {
        padding-left: 91rem;
    }

    .section_hero .container::before {
        width: 144rem;
        height: 176rem;
        transform: rotate(-90deg) scaleY(-1);
        right: 10rem;
        top: -30rem;
    }

    .section_hero__subtitle {
        max-width: 188rem;
        font-size: 12rem;
        left: 424rem;
        top: 112rem;
        line-height: 1.25;
    }

    .btn {
        font-size: 12rem;
        padding: 12rem 24rem;
        height: 41rem;
    }

    .marquee {
        padding: 15rem 0;
    }

    .section__top-info {
        gap: 10rem;
    }

    h2.section__title {
        font-size: 30rem;
    }

    .section_slider__arrows-item {
        width: 48rem;
        height: 48rem;
    }

    .section_slider__arrows {
        gap: 15rem;
        margin-bottom: 15rem;
    }

    .section_slider__arrows-item svg {
        width: 20rem;
        height: 20rem;
    }

    .section_client .title {
        font-size: 22rem;
    }

    .section_slider__item {
        padding: 20rem 15rem;
        margin-right: 15rem;
        max-width: 339rem;
        gap: 10rem;
        border-radius: 15rem;
    }

    .section_client__item-middle li,
    .section_client__item-bottom.descr {
        font-size: 12rem;
    }

    .section_client,
    .section_expertise,
    .section_projects {
        padding: 30rem 0;
    }

    .section_hero,
    .section_approach,
    .section_banner {
        margin-bottom: 30rem;
    }

    .section_expertise .section__bottom {
        margin-top: 60rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: unset;
        gap: 15rem;
        margin-bottom: 30rem;
    }

    .section_expertise__card {
        grid-column: unset !important;
        grid-row: unset !important;
        gap: 10rem;
        min-height: 242rem;
        border-radius: 15rem;
    }

    .section_expertise__card:nth-child(6n-4),
    .section_expertise__card:nth-child(6n-1) {
        transform: translateY(-30rem);
    }

    .section_expertise__card-icon {
        width: 15rem;
    }

    .section_expertise__card .title {
        font-size: 14rem;
    }

    .section_expertise__card .descr {
        font-size: 10rem;
    }

    .section_expertise::after {
        width: 811rem;
        height: 513rem;
        right: -70rem;
        top: 477rem;
    }

    .section_expertise::after {
        width: 811rem;
        height: 513rem;
        right: -70rem;
        top: 477rem;
    }

    .section_banner__title-shift {
        padding-left: 17rem;
    }

    .section_banner__title .bar img {
        max-width: 190rem;
    }

    .section_banner__title-right {
        padding-left: 237rem;
    }

    .section_banner__title .arrow img {
        width: 35rem;
    }


    .section_banner__card .title.title__accent {
        font-size: 30rem;
    }

    .section_banner__card .descr {
        font-size: 12rem;
    }

    .section_banner__card {
        margin-top: -29rem;
        max-width: 222rem;
        padding: 10rem;
        gap: 3rem;
        border-radius: 15rem;
    }

    .section_banner::after {
        width: 447rem;
        height: 500rem;
        top: 247rem;
    }

    .section_projects .section__bottom {
        gap: 15rem;
    }

    .section_projects__card:nth-child(5n-4) {
        width: 306rem;
    }

    .section_projects__card {
        padding: 15rem;
        min-height: 181rem;
        border-radius: 15rem;
    }

    .section_projects__card-info {
        gap: 5rem;
    }

    .section_projects__card-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10rem;
    }

    .year {
        font-size: 10rem;
    }

    .section_projects__card .title {
        font-size: 14rem;
    }


    .section_projects .tag {
        font-size: 10rem;
        padding: 5rem 6rem;
    }

    .section_projects__card .btn {
        font-size: 10rem;
        height: 26rem;
        padding: 6rem 12rem;
    }

    .section_projects__card:nth-child(5n-3) {
        width: 146rem;
    }

    .section_projects__card:nth-child(5n-2) {
        width: 226rem;
    }

    .section_projects__card:nth-child(5n-1),
    .section_projects__card:nth-child(5n) {
        width: 346rem;
    }

    .section_client__item-middle li {
        padding: 8rem 6rem;
    }

    .section_approach .section__bottom {
        margin: 0;
    }

    .section_approach .container {
        padding: 30rem 15rem;
        gap: 80rem;
        border-radius: 15rem;
    }

    .section_approach .section__top {
        max-width: unset;
        width: 226rem;
        flex-shrink: 0;
    }

    p.section__descr {
        font-size: 12rem;
        margin-top: 10rem;
    }

    .section_expertise .section__descr {
        max-width: 435rem;
    }

    .section_approach__item {
        gap: 32rem;
        padding-bottom: 15rem;
        margin-bottom: 15rem;
    }

    .title {
        font-size: 14rem;
    }

    .section_approach__item-digit {
        margin-top: 3rem;
        font-size: 10rem;
    }

    .section_approach__item-info {
        gap: 8rem;
    }

    .descr {
        font-size: 12rem;
        line-height: 1.25;
    }

    .section_banner__title-right::after {
        display: none;
    }

    .footer__top-middle {
        gap: 57rem;
    }

    .footer__top-middle ul {
        gap: 25rem;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        gap: 15rem;
    }

    .footer__bottom-links {
        gap: 20rem;
    }

    .footer {
        background: url("https://static.tildacdn.com/tild3236-3363-4265-b433-633634313131/footer_logo.svg") 365rem bottom / auto 200rem no-repeat, rgb(20, 19, 17);
        padding: 30rem 0;
    }

    .project-popup__header-info {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 15rem;
    }

    .project-popup__body {
        flex-direction: column;
    }

    .project-popup__content {
        padding: 30rem 15rem;
        border-radius: 15rem;
    }

    .project-popup__body-card-row {
        display: flex;
        flex-direction: column;
        gap: 10rem;
        margin: 0;
        padding: 0;
        border: none;
    }

    .project-popup__body-card .title {
        font-size: 16rem;
        font-weight: 500;
    }

    .project-popup__body-card {
        padding: 15rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15rem;
    }

    .project-popup__body-card p,
    .project-popup__body-card li {
        font-size: 12rem;
    }

    .project-popup__header-tags .tag {
        padding: 10rem 12rem;
    }

    .project-popup__header-info-logos img {
        height: 30rem;
    }

    .project-popup__header-info-logos {
        gap: 15rem;
    }

    .project-popup__body-card-row:nth-child(2) {
        padding-left: 15rem;
        border-left: 1rem dashed #1D1B1B;
    }

    .project-popup__body-card-row:nth-child(3) {
        padding-top: 15rem;
        border-top: 1rem dashed #1D1B1B;
        grid-column: span 2;
    }

    .infographic-card h4 {
        font-size: 30rem;
    }

    .infographic-card p {
        font-size: 12rem;
    }

    .project-popup__body-right .btn {
        height: 45rem;
    }

    .infographic-card {
        padding: 10rem;
    }

    .uc-form .t-container.t-section__container {
        padding: 30rem 15rem 0 !important;
    }
    
    .uc-form .t-container {
        padding: 0 15rem !important;
    }
    
    .uc-form .t-section__title {
        margin-bottom: 14rem !important;
        font-size: 30rem;
    }
    
    .uc-form .t-input-title {
        font-size: 12rem;
        margin-bottom: 10rem;
    }
    
    .uc-form .t-input {
        font-size: 12rem !important;
        height: 55rem;
    }
    
    .uc-form textarea.t-input {
        padding: 20rem 15rem;
    }
    
    .uc-form .t-input-group {
        margin-bottom: 15rem !important;
    }
    
    .uc-form .t-checkbox__control>span {
        font-size: 10rem;
    }
    
    .uc-form .t-checkbox__indicator {
        width: 18rem;
        height: 18rem;
    }
    
    .uc-form .t-checkbox__indicator:after {
        left: 4rem;
        top: 1rem;
    }
    
    .uc-form .t-checkbox__control {
        gap: 10rem;
    }
    
    .uc-form .t-submit {
        font-size: 12rem;
        height: 41rem;
        padding: 12rem 24rem;
    }
    
    .uc-form .marquee {
        margin-top: 30rem;
    }
    
    .uc-form .t678 {
        border-radius: 15rem;
    }

    .uc-form {
        margin-bottom: 30rem;
    }
}

@media screen and (max-width: 480px) {
    .section_hero__uptitle h3 {
        font-size: 13rem;
        text-align: left;
        padding: 8rem 10rem;
    }

    html {
        font-size: 0.267vw;
    }

    .logo svg {
        width: 81rem;
    }

    .header__burger {
        margin-top: 15rem;
        gap: 5rem;
    }

    .header .container {
        padding: 15rem 10rem;
    }

    .header .nav {
        left: 15rem;
        right: 15rem;
        top: 15rem;
    }

    .section_hero,
    .section_approach {
        padding: 0 15rem;
    }

    .container {
        padding: 0 15rem;
    }

    .header__burger span {
        width: 26rem;
        height: 2rem;
    }

    .header.is-active .header__burger span:nth-child(1) {
        transform: translateY(7rem) rotate(45deg);
    }

    .header.is-active .header__burger span:nth-child(3) {
        transform: translateY(-7rem) rotate(-45deg);
    }

    .header {
        min-height: 108rem;
    }

    .section_hero .container {
        padding: 20rem 10rem 0;
    }

    .section_hero__uptitle {
        gap: 5rem;
        padding-bottom: 8rem;
    }

    .section_hero__title {
        font-size: 24rem;
    }

    .section_hero__title .accent {
        padding-left: 8rem;
    }

    .mob-shift {
        padding: 0;
    }

    .mob-shift-middle {
        padding-left: 43rem;
    }

    .mob-shift-bottom {
        padding-left: 0;
    }

    .section_hero__buttons {
        flex-direction: column;
        gap: 10rem;
        margin-top: 25rem;
    }

    .btn {
        font-size: 13rem;
        height: 46rem;
    }

    .section_main__marquee {
        margin-top: 25rem;
    }

    .marquee {
        padding: 10rem 0;
    }

    .marquee span {
        font-size: 13rem;
    }

    .marquee span::after {
        width: 15rem;
        height: 15rem;
    }

    .section_hero .container::after {
        display: none;
    }

    .section_hero__subtitle {
        position: unset;
        max-width: unset;
        margin-top: 15rem;
        font-size: 13rem;
    }

    .section_hero__subtitle {
        position: unset;
        max-width: unset;
        margin-top: 15rem;
        font-size: 13rem;
    }

    .section_client,
    .section_expertise,
    .section_projects {
        padding: 22.5rem 0;
    }

    .section_hero,
    .section_approach,
    .section_banner {
        margin-bottom: 22.5rem;
    }

    h3.section__uptitle {
        font-size: 13rem;
    }

    .section__top-info {
        gap: 8rem;
    }

    h2.section__title {
        font-size: 22rem;
    }

    .section_slider__arrows {
        display: none;
    }

    .section_slider__item {
        max-width: 293rem;
        padding: 20rem 10rem;
        gap: 15rem;
    }

    .section__bottom {
        margin-top: 15rem;
    }

    .section_client .title {
        font-size: 20rem;
    }

    .section_client__item-top img {
        height: 20rem;
    }

    .section_client__item-top {
        gap: 20rem;
    }

    .section_client__item-middle li,
    .section_client__item-bottom.descr {
        font-size: 10rem;
    }

    .header__menu ul {
        gap: 30rem;
        margin-top: 35rem;
    }

    .header__menu {
        gap: 35rem;
    }

    p.section__descr {
        margin-top: 7rem;
        font-size: 13rem;
    }

    .section_expertise .section__bottom {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 15rem;
        gap: 10rem;
        margin-bottom: 42rem;
    }

    .section_expertise__card:nth-child(6n-4),
    .section_expertise__card:nth-child(6n-1) {
        transform: unset;
    }

    .section_expertise__card {
        padding: 10rem;
        min-height: 230rem;
        gap: 8rem;
    }

    .section_expertise__card .title {
        font-size: 12rem;
    }

    .section_expertise::after {
        display: none;
    }

    .section_expertise {
        margin-bottom: 22.5rem;
    }

    .section_banner__title-shift {
        padding: 0;
    }

    .section_banner__title .arrow {
        padding: 0;
    }

    .section_banner__title .arrow img {
        width: 19rem;
    }

    .section_banner__title .bar img {
        max-width: 94rem;
    }

    .section_banner__title-right {
        padding-left: 103rem;
    }

    .section_banner__title {
        font-size: 23rem;
    }

    .section_banner__card {
        margin-top: 30rem;
        gap: 10rem;
        padding: 8rem 10rem;
        max-width: 267rem;
    }

    .section_banner__card .title.title__accent {
        font-size: 24rem;
    }

    .section_banner__card .descr {
        font-size: 13rem;
    }

    .section_expertise:before {
        content: '';
        position: absolute;
        z-index: -1;
        right: 0;
        bottom: -81rem;
        width: 125rem;
        height: 463rem;
        background: url('https://static.tildacdn.com/tild6333-3066-4136-b330-303534613739/expertise_bg_mob.png') no-repeat left center / cover;
    }

    .section_projects__card {
        padding: 20rem 10rem;
        width: 100% !important;
        border-radius: 30rem;
        min-height: 327rem;
    }

    .section_projects .section__bottom {
        display: flex;
    }

    .section_projects__card-info {
        gap: 8rem;
    }

    .section_projects__card-bottom {
        gap: 15rem;
    }

    .section_projects__card .btn {
        font-size: 13rem;
        height: 46rem;
        padding: 15rem 24rem;
    }

    .year {
        font-size: 13rem;
    }

    .section_projects__card .title {
        font-size: 20rem;
    }

    .section_projects .tag {
        font-size: 13rem;
        padding: 8rem 10rem;
    }

    .section_projects__card:nth-child(5n-4) {
        height: 412rem;
    }

    .section_projects__card:nth-child(5n-4) .title {
        max-width: unset;
    }

    .section_projects__card:nth-child(5n) {
        min-height: 412rem;
    }

    .section_approach .container {
        padding: 20rem 10rem;
        flex-direction: column;
        gap: 20rem;
    }

    .section_approach .section__top {
        width: unset;
    }

    .section_approach__item {
        gap: 44rem;
    }

    .section_approach__item-digit {
        font-size: 13rem;
        margin-top: 5rem;
    }

    .descr {
        font-size: 13rem;
    }

    .title {
        font-size: 20rem;
    }

    .footer__top {
        flex-direction: column;
        gap: 20rem;
    }

    .footer__top-middle li a,
    .footer__top-right a,
    .footer__bottom-copyright,
    .footer__bottom-links a {
        font-size: 13rem;
    }

    .footer__title {
        font-size: 13rem;
    }

    .footer__top-middle ul {
        gap: 20rem;
    }

    .footer__top-right {
        gap: 8rem;
    }

    .footer .container {
        gap: 158rem;
    }

    .footer__bottom-links {
        flex-direction: column;
    }

    .footer__bottom {
        gap: 30rem;
    }

    .footer {
        padding: 45rem 0 20rem;
        background: url("https://static.tildacdn.com/tild3236-3363-4265-b433-633634313131/footer_logo.svg") -66rem bottom / auto 252rem no-repeat, rgb(20, 19, 17);
    }

    .project-popup {
        padding: 0;
    }

    .project-popup__content {
        padding: 66rem 15rem 35rem;
        border-radius: 0;
        gap: 20rem;
    }

    .project-popup__close {
        top: 15rem;
        right: 15rem;
    }

    .project-popup__header-tags .tag {
        font-size: 13rem;
        padding: 8rem 10rem;
    }

    .project-popup__header-info-logos img {
        height: 20rem;
    }

    .project-popup__header-info .title {
        font-size: 20rem;
    }

    .project-popup__body-card {
        display: flex;
        flex-direction: column;
        padding: 10rem;
        border-radius: 15rem;
    }

    .project-popup__body-card-row {
        gap: 8rem;
        padding: 0 0 15rem 0 !important;
        border-left: none !important;
        border-top: none !important;
        border-bottom: 1px dashed #1D1B1B;
    }

    .project-popup__body-card p,
    .project-popup__body-card li {
        font-size: 13rem;
    }

    .infographics {
        margin-top: 10rem;
    }

    .infographic-card h4 {
        font-size: 24rem;
    }

    .infographic-card p {
        font-size: 10rem;
    }

    .project-popup__body-right .btn {
        position: unset;
        margin-top: 10rem;
    }

    .uc-form {
        padding: 0 15rem;
        margin-bottom: 20rem;
    }
    
    .uc-form .t-container {
        padding: 0 10rem !important;
    }
    
    .uc-form .t-container.t-section__container {
        padding: 30rem 10rem 0 !important;
    }
    
    .uc-form .t-section__title {
        text-align: left;
        font-size: 22rem;
        margin-bottom: 16rem !important;
    }
    
    .uc-form .t-input-title {
        font-size: 13rem;
        margin-bottom: 8rem;
    }
    
    .uc-form .t-input {
        height: 46rem;
        font-size: 13rem !important;
    }
    
    .uc-form textarea.t-input {
        padding: 8rem 15rem;
    }
    
    .uc-form .marquee {
        margin-top: 20rem;
    }
}