/* Root Variables */
:root {
    --bg-color: #181818;
    --text-color: #ECECEC;
    --rose-color: #EC39BC;
    --main-line-color: #484848;
    --sec-line-color: #303030;
    --sec-text-color: #767676;
    --preloader-text-color: #c9c9c9;
    --bor-rad: 4%;
    /* --hero-main_text: #1c1c1c; */
    --hero-main_text: #202020;
}

body {
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--text-color);
    z-index: 999999;
    overflow: hidden;
}

.preloader__text {
    font-size: 10vw;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    letter-spacing: -0.22vw;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    color: var(--preloader-text-color);

    overflow: hidden;
}

#loadingImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 40vw;

    animation: preload infinite 2s linear;

}

.preloader__text>svg>path:not(:last-child) {
    animation: preload infinite 1.5s linear;
}

@keyframes preload {
    0% {
        fill: #cdcdcd;
    }

    50% {
        fill: #dbdbdb;
    }

    100% {
        fill: #cdcdcd;
    }
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-variant-numeric: lining-nums;
}

body::-webkit-scrollbar {
    width: 0.3125vw;
    /* 6px */
}

body::-webkit-scrollbar-track {
    background: transparent;
    /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--rose-color);
    border-radius: 1.25vw;
    /* 20px */
}

.section_forward {
    position: relative;
    z-index: 10000;
}

/* Font Sizes */
.t-12 {
    font-size: 0.9vw;
    /* 0.9214vw */
    font-weight: 300;
}

.t-14 {
    font-size: 1vw;
    /* 1.075vw */
    font-weight: 300;
}

.t-16 {
    font-size: 1.3vw;
    /* 1.17vw */
    font-weight: 300;
}

.t-18 {
    font-size: 1.5vw;
    /* 1.3vw */
    font-weight: 300;
}

.t-20 {
    font-size: 1.55vw;
    /* 1.433vw */
    font-weight: 300;
}

.t-30 {
    font-size: 2vw;
    /* 2.15vw */
}

.container {
    width: 100%;
    /* max-width: 1940px; */
    padding: 0 1.8vw;
    margin: 0 auto;
}

.content_grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
}

.section_title {
    /* font-family: "Oswald", serif; */
    /* text-transform: uppercase;
    font-weight: 600; */
    font-size: 1.5vw;
    /* text-align: center; */
    border-bottom: 1px solid var(--main-line-color);
    margin-bottom: 7.5vw;
    padding-bottom: 0.5vw;
    letter-spacing: -0.05rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    /* background-image: linear-gradient(var(--text-color), var(--bg-color));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text; */
    /* margin-bottom: 100px; */
}

.section_title__circle {
    width: 0.6vw;
    height: 0.6vw;
    background-color: var(--rose-color);
    border-radius: 100%;
}

.color_gray {
    color: var(--sec-text-color);
}

.color_rose {
    color: var(--rose-color);
}


/* Иконка бургера */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    z-index: 1000;
    padding: 2.5vw;
    margin-left: 3vw;
    /* border: 1px solid var(--rose-color); */
    border-radius: 3.43333333332vw;
}

.burger_contact_btn {
    display: block;
    width: 100%;
    border-radius: 0 !important;
    background-color: var(--bg-color) !important;
    padding-top: 8vw !important;
    padding-bottom: 8vw !important;
}

.burger-menu .burger_inner {
    display: flex;
    align-items: center;
    gap: 2vw;
    color: var(--text-color);
    font-weight: 600;

    /* font-size: 4vw; */
}

.burger_inner_text.menu_open {
    color: var(--bg-color);
}

/* Мобильное меню */
.mobile-nav {
    display: none;
    gap: 10vw;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    display: grid;
    /* align-items: center; */
    background-color: var(--text-color);
    transform: translateX(100%);
    z-index: 999;
}

.mobile-nav ul {
    /* height: 100%; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 3vw;

    font-family: "Oswald", serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12vw;
    color: var(--bg-color);


}

.mobile-nav ul li {
    width: 100%;
}

.mobile-nav ul a {
    padding: 0 4vw;
    color: var(--bg-color);
    display: block;
    width: 100%;
    padding-bottom: 4vw;
    border-bottom: 1px solid var(--sec-text-color);
    text-align: left;
}

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

}

/* header */

.header {
    width: 100%;
    padding-top: 0.8vw;
    padding-bottom: 0.8vw;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.header__logo img {
    height: 100%;
}

.header__nav {
    grid-column-start: 2;
    grid-column-end: 4;
    display: flex;
    justify-content: center;
}

.header__nav_link {
    color: var(--text-color);
    font-weight: 400;
    /* font-size: 1vw; */
    transition: all .3s ease-in-out;
}

.header__nav_link:hover {
    color: var(--rose-color);
    /* font-weight: 600; */
}

.header__nav_list {
    display: flex;
    gap: 2vw;
    align-self: center;
    /* flex-direction: column; */
    /* gap: 5px; */
}

.header__contact_btn {

    min-width: min-content;
    height: min-content;
    background-color: var(--rose-color);
    /* border-radius: var(--bor-rad); */
    border-radius: 1.43333333332vw;
    text-align: center;
    padding: 0.7vw 2.36875vw;
    color: var(--text-color);
    justify-self: end;
    font-weight: 500;
    transition: all .3s ease-in-out;
    /* font-size: 1.1428vw; */
}

.header__contact_btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* hero section */

.hero_section {
    height: 100vh;
    width: 100%;
    min-height: 600px;
    position: relative;
}

.hero_section__content {
    /* height: 100%; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-60%);
}

.hero_section__bot {
    width: 100%;
    z-index: 9999;
    position: absolute;
    bottom: 2vw;
    left: 0;
    color: var(--sec-text-color);
}

.hero_section__bot_content {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.hero_section__bot_content_text {}

.hero_section__bot_content_scroll {
    display: flex;
    align-items: center;
    gap: 1vw;

}

.hero_section__bot_content_scroll_icon {
    width: 1vw;
    animation: iconjumps infinite 1.5s ease-in-out;
}

@keyframes iconjumps {
    0% {
        transform: translateY(15%);
    }

    50% {
        transform: translateY(-15%);
    }

    100% {
        transform: translateY(15%);
    }
}

.hero_section__content_h1 {
    font-family: "Oswald", serif;
    font-weight: 600;
    letter-spacing: -0.8vw;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--hero-main_text);
    /* font-size: 2350%; */
    font-size: 17vw;
    text-align: center;
    pointer-events: none;
    z-index: 994;
}

.hero_section__content_desc {
    margin-bottom: 1.5vw;
    text-align: center;
}

.hero_section__content_desc p {
    margin-bottom: 5px;
}

.hero_section__content_desc_gr {
    /* font-size: 1.3vw; */
    color: var(--text-color);
    width: 100%;
    text-align: right;
    margin-bottom: 4vw;
    line-height: 120%;
}

/* .hero_section__name {
    font-size: 15.714vw;
    font-size: 18vw;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.8vw;
    line-height: 8.5vw;
}

.hero_section__name_small {
    font-weight: 300;
    font-size: 1.7vw;
    font-size: 1.7142vw;
    letter-spacing: normal;
    padding-left: 1.3vw;
    line-height: 7vw;
}

.hero_section__services {
    display: flex;
    justify-content: space-between;
    margin-top: 2.86666666664vw;
    text-transform: lowercase;
    font-weight: 200;
    padding-left: 1.3vw;
    display: none;   
} */

/* par */

.par {
    height: 200vh;
    display: grid;
    align-items: center;
    justify-content: start;
}

/* about */

.about {
    height: 220vh;
    display: grid;
    align-items: center;
    justify-content: center;
}

.about__title_wrap {
    grid-column-start: 3;
    grid-column-end: 4;
    margin-bottom: 2vw;
    display: flex;
    align-items: center;
    gap: 0.7vw;
}

.about__title {
    /* text-transform: uppercase;
    font-family: "Oswald", serif;
    font-weight: 600; */
    font-size: 1.5vw;
}

.about__title_dot {
    width: 0.7vw;
    height: 0.7vw;
    background-color: var(--rose-color);
    border-radius: 100%;
}

.about__me {
    /* font-size: 1.2857vw; */
    font-weight: 300;
    grid-column-start: 3;
    grid-column-end: 4;
    line-height: 1.3;
}

/* works */

.works {
    /* padding-bottom: 200px; */
    padding-bottom: 30vw;
}

.works .content_grid:not(:last-child) {
    margin-bottom: 7.5vw;
}

/* .works__item:nth-child(1) {
    grid-column-start: 5;
    grid-column-end: 8;
}

.works__item:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 4;
}

.works__item:nth-child(3) {
    grid-column-start: 5;
    grid-column-end: 8;
    grid-row-start: 3;
    grid-row-end: 4;
}

.works__item:nth-child(4) {
    grid-column-start: 3;
    grid-column-end: 6;
    grid-row-start: 4;
    grid-row-end: 5;
} */

.works__item {
    color: var(--text-color);
}

.works__item_num {
    /* font-size: 1.142857vw; */
    margin-bottom: 0.8vw;
}

.works__item_dis {
    width: fit-content;
    height: fit-content;
    padding: 0.5vw 1vw;
    position: absolute;
    top: 1vw;
    left: 1vw;
    border-radius: 5vw;
    background-color: #fd6060;
}

.works__item_img_block {
    /* margin-bottom: 30px; */
    width: 100%;
    overflow: hidden;
    height: 70vh;
    /* min-height: 410px; */
    cursor: pointer;
    border-radius: var(--bor-rad);
    display: grid;
    align-items: end;
    transition: all .5s ease-in-out;

    position: relative;
}

/* .works__item_img_block:hover img {
    transform: scale(1.05);
} */

.works__item_img_block img {
    display: block;
    width: 100%;
    height: 120%;
    object-fit: cover;
    /* transition: all .7s ease-in-out; */
}

.works__item_info {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    transform: translateX(-50%) translateY(-50%);
    /* display: none; */
    pointer-events: none;
    z-index: 99999;
}



/* .works__item:hover .works__item_info {
    display: block;
} */

.works__item:hover .works__item_img_block {
    filter: brightness(0.5);
}

.works__item_info_name {
    /* font-size: 5.7142857vw; */
    font-size: 5.825vw;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -0.15vw;
    overflow-y: hidden;
    font-family: "Oswald";
    margin-bottom: 0.5vw;
}

.works__item_info_desc {
    overflow: hidden;
    line-height: 140%;
}

.works__item_desc_inner {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.works__item_name_inner {
    display: block;
    transform: translateY(115%);

}

.works__big_height {
    padding-bottom: 0.7vw;
}

.works__item_desc_inner {
    /* opacity: 0; */
    transform: translateY(105%);
    /* transition: opacity 0.5s ease, transform 0.5s ease; */
}

.works .content_grid {
    grid-template-columns: repeat(8, 1fr);
}

.w-1 {
    grid-column-start: 1;
    grid-column-end: 4;
}

.w-2 {
    grid-column-start: 2;
    grid-column-end: 5;
}

.w-3 {
    grid-column-start: 3;
    grid-column-end: 6;
}

.w-4 {
    grid-column-start: 4;
    grid-column-end: 7;
}

.w-5 {
    grid-column-start: 5;
    grid-column-end: 8;
}

.w-6 {
    grid-column-start: 6;
    grid-column-end: 9;
}

/* approach */

.approach {
    /* padding-bottom: 200px; */
    padding-bottom: 30vw;
}

.approach__spin {
    grid-column-start: 1;
    grid-column-end: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5.825vw;
}

.approach__spin img {
    animation: circle2_anim 8s infinite linear;
    min-width: 7vw;
}

/* .approach__main_text {
    font-family: "Oswald", serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4.3vw;
    grid-column-start: 1;
    grid-column-end: 4;
    letter-spacing: -0.2vw;
    margin-bottom: 5.825vw;
    align-self: start;
    line-height: 110%;
} */

.approach__main_text {
    font-size: 4.3vw;
    grid-column-start: 1;
    grid-column-end: 4;
    letter-spacing: -0.2vw;
    margin-bottom: 5.825vw;
    align-self: start;
    line-height: 110%;
}

.approach__sticky_block {
    /* height: 200vh; */
    grid-column-start: 1;
    grid-column-end: 5;
}

.approach__sticky_block_h3 {
    padding: 0.7vw 1.4vw;
    background-color: var(--sec-line-color);
    width: fit-content;
    height: fit-content;
    border-radius: 5vw;

    margin-bottom: 1vw;
}

.approach__sec_text_money {
    grid-column-start: 3;
    grid-column-end: 4;
    /* font-size: 1.7142857vw; */
    margin-bottom: 2.15vw;
    color: var(--text-color);
}

.approach__sec_text_target {
    grid-column-start: 1;
    display: block;
    grid-column-end: 5;
    font-size: 1.15vw;
    /* font-size: 1.15vw; */
    text-align: right;
    line-height: 1.3;
    display: flex;
    justify-content: end;
    /* padding-left: 12vw; */
    color: var(--sec-text-color);
}

.approach__sec_text_target_in {
    /* max-width: 44rem; */
    max-width: 33%;
}

/* services */

.services {
    /* padding-bottom: 200px; */
    padding-bottom: 15vw;
    position: relative;
}

.services .section_title {
    position: sticky;
    top: 4vw;
    margin-bottom: 0;
}


.services .section_title {
    grid-column-start: 1;
    grid-column-end: 2;
    border: none;
    align-self: start;
}

.services__item_types {
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 0.3vw;
    margin-bottom: 1vw;
}

.services__item_types_item.approach__sticky_block_h3 {
    margin-bottom: 0;
}

.services__items {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    grid-column-start: 3;
    grid-column-end: 5;
}

.services__item {}

.services__item_name {
    font-family: "Oswald", serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3vw;
    margin-bottom: 1vw;
    letter-spacing: -0.1vw;

    /* color: var(--sec-text-color); */
    /* font-weight: 400; */

}

.services__item_desc {
    grid-column-start: 3;
    grid-column-end: 4;
    /* margin-bottom: 4vw; */
    font-weight: 300;
    line-height: 1.2;
    display: flex;
    align-items: center;
    line-height: 140%;
}

.services__item_img {
    grid-column-start: 2;
    grid-column-end: 3;
    width: 100%;
    padding-right: 4vw;
    overflow: hidden;
}

.services__item_img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--bor-rad);
}

.services__item_props {
    align-self: end;
    grid-column-start: 3;
    grid-column-end: 5;
}

.services__item_props_item {
    font-weight: 300;
    padding: 0.55vw 0;
    border-top: 1px solid var(--sec-line-color);
}

.services__item:not(:last-child) {
    /* margin-bottom: 12vw; */
}

/* marquee_line */

.marquee_line {
    overflow: hidden;
    padding-bottom: 15vw;
    display: grid;
    align-items: center;
    justify-content: center;
    height: 70vh;
}

.marquee_line_wrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 1500%;
}

.marquee_line_wrap p {
    font-size: 5.8vw;
    text-transform: uppercase;
    font-family: "Oswald", sans-serif;
    letter-spacing: -0.22vw;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.marquee_line_wrap svg {
    height: 3rem;
    animation: circle_anim 1s infinite linear;
}

@keyframes circle_anim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes circle2_anim {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* footer */

.footer {
    height: 100vh;
    position: relative;
    padding-top: 1.2vw;
}

.footer__sentance_text {
    color: var(--sec-text-color);
    text-align: center;
    position: relative;
    z-index: 9997;
}

.footer__contacts_item {
    margin-bottom: 1.43333333332vw;
}

.footer__contacts_soc {
    color: var(--sec-text-color);
    grid-column-start: 2;
    grid-column-end: 3;
    justify-self: end;
    align-self: end;
    padding-right: 0.5vw;
}

.footer__contacts_link {
    text-decoration: underline;
    color: var(--text-color);
}

.footer__bottom_block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sec-text-color);
    text-transform: lowercase;
    padding: 1vw 0;
}

.mobile-nav .footer__bottom_block {
    padding: 0 4vw 4vw 4vw;
}

.footer__center_block {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer__main_btn {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 7vw;
    text-transform: uppercase;
    color: var(--text-color);
    /* letter-spacing: -0.5vw; */
    transition: all .2s ease-in-out;
    font-family: "Oswald", sans-serif;
    letter-spacing: -0.22vw;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

    z-index: 9998;
    /* background-color: var(--text-color); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.hero_section__content_h2 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-45%);
    font-size: 7vw;
    text-transform: uppercase;
    color: var(--text-color);
    font-family: "Oswald", sans-serif;
    letter-spacing: -0.22vw;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;

    z-index: 9998;
}

.footer__main_btn:hover {
    color: var(--rose-color);
    /* font-size: 7.3vw; */
    font-weight: 700;
}

/* .footer__main_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: var(--rose-color);
} */

canvas {
    z-index: 9999;
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* min-height: 500px;
    min-width: 500px; */
    height: 26vw;
    width: 26vw;
    pointer-events: none;
    /* filter: blur(0.35vw);
    opacity: 50%; */
}