/* Manrope Medium */
@font-face {
    font-family: 'Manrope';
    src: url('./fonts/MANROPE-VARIABLEFONT.ttf') format('truetype');
    font-weight: 100 900;
    /* Діапазон ваги від 100 до 900 */
    font-style: normal;
}

/* Evolventa Bold */
@font-face {
    font-family: 'Evolventa';
    src: url('./fonts/Evolventa-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Вага шрифту для Bold */
    font-style: normal;
}

/* Akaya Kanadaka Regular */

/* Manrope Regular */


:root {
    --font-family: "Manrope", sans-serif;
    --second-family: "Evolventa", sans-serif;

    --colors-prototype-1000: #fff;
    --colors-prototype-900: #f0f0f0;
    --colors-prototype-800: #ccc;
    --colors-prototype-700: #b3b3b3;
    --colors-prototype-600: #999;
    --colors-prototype-500: #808080;
    --colors-prototype-400: #666;
    --colors-prototype-300: #4d4d4d;
    --colors-prototype-200: #333;
    --colors-prototype-100: #191919;
    --colors-grey-900: #101028;
    --colors-grey-800: #1d1d39;
    --colors-grey-700: #343454;
    --colors-grey-600: #474767;
    --colors-grey-500: #666685;
    --colors-grey-400: #9898b3;
    --colors-grey-300: #d0d0dd;
    --colors-grey-200: #e4e4ec;
    --colors-grey-100: #f0f0f4;
    --colors-primary-900: #42307d;
    --colors-primary-800: #53389e;
    --colors-primary-700: #6941c6;
    --colors-primary-600: #7f56d9;
    --colors-primary-500: #9e77ed;
    --colors-primary-400: #b692f6;
    --colors-primary-300: #d6bbfb;
    --colors-primary-200: #e9d7fe;
    --colors-primary-100: #f4ebff;
    --colors-success-900: #19854b;
    --colors-success-800: #18a95c;
    --colors-success-700: #17d36f;
    --colors-success-600: #15ef7b;
    --colors-success-500: #2efa8d;
    --colors-success-400: #53fda2;
    --colors-success-300: #84ffbd;
    --colors-success-200: #b2ffd6;
    --colors-success-100: #d1ffe6;
    --colors-primary-50: #f9f5ff;
    --colors-primary-25: #fcfaff;
    --colors-grey-50: #f6f6f8;
    --colors-grey-25: #fff;
    --colors-success-50: #effff6;
    --colors-success-25: #f5fffa;
    --colors-secondary-900: #054f31;
    --colors-secondary-800: #05603a;
    --colors-secondary-700: #027948;
    --colors-secondary-600: #039855;
    --colors-secondary-500: #12b76a;
    --colors-secondary-400: #32d583;
    --colors-secondary-300: #6ce9a6;
    --colors-secondary-200: #a6f4c5;
    --colors-secondary-100: #d1fadf;
    --colors-secondary-50: #ecfdf3;
    --colors-secondary-25: #f6fef9;
    --colors-error-900: #7a271a;
    --colors-error-800: #912018;
    --colors-error-700: #b32318;
    --colors-error-600: #d92d20;
    --colors-error-500: #f04438;
    --colors-error-400: #f97066;
    --colors-error-300: #fda19b;
    --colors-error-200: #fecdc9;
    --colors-error-100: #fee4e2;
    --colors-error-50: #fef3f2;
    --colors-error-25: #fffafa;
    --colors-warning-900: #792e0d;
    --colors-warning-800: #93370d;
    --colors-warning-700: #b54708;
    --colors-warning-600: #dc6803;
    --colors-warning-500: #f79009;
    --colors-warning-400: #fdb022;
    --colors-warning-300: #fec84b;
    --colors-warning-200: #fedf89;
    --colors-warning-100: #feefc6;
    --colors-warning-50: #fffaeb;
    --colors-warning-25: #fffcf5;
}

a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
    font: inherit;
    font-size: 100%;
    line-height: 1.5;
}

/* Вирівнювання заголовків і абзаців */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

/* Очищення списків */
ul,
ol {
    list-style: none;
}

/* Нормалізація таблиць */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Нормалізація посилань */
a {
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

a:focus {
    outline: none;
}

/* Вирівнювання зображень */
img {
    max-width: 100%;
    display: block;
}

/* Нормалізація форм */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

html {
    width: 100%
}

body {
    background: var(--colors-grey-50);
    width: 100%
}

main {
    width: 100%;
}

.container {
    padding: 0 80px;
    width: 1440px;
    margin: 0 auto;
    height: auto;
}

#lottie-animation {
    background: var(--colors-primary-600);
}

#lottie {
    width: 100vw;
    height: 100vh;
}

header {
    height: 0px;
    width: 1440px;
    margin: 0 auto;
}

/* HEADER */

header>.container {
    padding: 0 64px;
    z-index: 8;
    top: 20px;
    height: fit-content;
    position: fixed;

}


.header-box {

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--colors-primary-700);

    width: 100%;
    height: fit-content;
    border-radius: 360px;
    padding: 4px 16px;
}

.header-box.scrolled {
    box-shadow: 0 12px 48px 0 rgba(71, 84, 103, 0.12);
}

.logo-wrap {
    height: 64px;
    width: 181px;

}

.logo-img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
}

.links-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--colors-grey-25);
    border-radius: 360px;
    padding: 8px 16px;
    width: auto;
    height: 100%;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: var(--colors-grey-25);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.links-nav+.links-nav {
    border: 1px solid var(--colors-grey-25);
    background: var(--colors-grey-25);
    color: var(--colors-primary-600);
}



.links-nav:focus {
    border: 2px solid var(--colors-grey-25);
    outline: none;
}

.links-nav+.links-nav:focus {
    border: 1px solid var(--colors-primary-600);
    outline: none;
}

.links-nav:hover {
    border: 1px solid var(--colors-grey-25);
    outline: none;
    background: var(--colors-primary-600);
}

.links-nav+.links-nav:hover {
    border: 1px solid var(--colors-primary-50);
    background: var(--colors-primary-50);

}

.links-nav:active {
    border: 1px solid var(--colors-grey-25);
    outline: none;
    background: var(--colors-primary-500);
}

.links-nav+.links-nav:active {
    border: 1px solid var(--colors-primary-100);
    outline: none;
    background: var(--colors-primary-100);

}




/* HERO */

.hero {
    background: var(--colors-primary-700);
    height: fit-content;
    width: 100%;
    border-radius: 0 0 40px 40px;
    position: relative;
    z-index: 2;
}

.hero>.container {


    padding: 112px 80px 40px 80px;

    display: flex;
    gap: 40px;
    height: auto;
    justify-content: space-between;
    align-items: start;
}

.hero-img_wrap {
    border-radius: 40px;
    width: 620px;
    height: 531px;
}



.hero-img {
    border-radius: 40px;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.hero-title_wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 531px;
    width: calc(100% - 620px - 40px);
}

.hero-title {
    margin-top: 104px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 52px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--colors-grey-25);
}

.hero-info_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 34px;
    line-height: 100%;
    color: var(--colors-grey-25);
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 56px;
}

.hero-nav>.links-nav {
    width: 302px;
    font-size: 16px;
    line-height: 137%;

}

/* QUEST */

.quest {
    border: 1px solid var(--colors-primary-700);
    background: var(--colors-grey-100);
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
    top: -40px;
    border-radius: 0 0 40px 40px;
    margin-bottom: -40px;
}


.quest>.container {

    padding: 96px 80px 56px 80px;


}

.quest-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--colors-grey-900);
}

/* ABOUT */
.about {
    width: 100%;
    height: fit-content;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.about>.container {
    padding: 80px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
}

.about-info_box {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 840px;
}

.about-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--colors-grey-900);
    margin-bottom: 20px;
}

.about-text {
    font-family: var(--font-family);

    font-size: 24px;
    line-height: 140%;

    font-weight: 500;
    color: var(--colors-grey-600);
}

.about-bold {
    font-weight: 700;
    color: var(--colors-primary-700);
}

.about-text+.about-text {
    margin-top: 10px;
}


.about-img_wrap {
    border-radius: 40px;
    width: 400px;
    height: 352px;
}

.about-img {
    border-radius: 40px;
    object-fit: contain;
    height: 100%;
    width: 100%;
}


/* MISSION */
.mission {
    width: 100%;
    height: fit-content;
    border-radius: 40px;
    background: var(--colors-secondary-600);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;

}

.mission>.container {

    padding: 56px 80px;

}

.top-box {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.mission-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--colors-grey-25);
}

.bottom-box>.mission-title {
    font-family: var(--second-family);
    color: var(--colors-grey-900);
    width: 690px;
}

.mission-title>br {
    display: none;
}

.mission-text {
    width: 840px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: var(--colors-secondary-100);
}

.bottom-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--colors-secondary-500);
    border-radius: 40px;
    padding: 40px;
    background: var(--colors-grey-25);
}

.mission-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;

}

.mission-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid var(--colors-secondary-500);
    border-radius: 360px;
    padding: 8px;
    width: 470px;
    height: 64px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: var(--colors-grey-800);
}

.wrap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 360px;
    width: 48px;
    height: 48px;
    background: var(--colors-secondary-500);
}


.mission-icon {
    width: 32px;
    height: 32px;
}


/* WORK */
.work {
    width: 100%;
    height: fit-content;
}

.work>.container {

    position: relative;
    padding: 80px 0px;


}

.work-title {
    position: sticky;
    top: 136px;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--colors-grey-900);
    margin-bottom: 60px;
}

.work-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 100px;
    width: 100%;

}

.work-item {
    position: sticky;
    width: 100%;
    z-index: 1;

}




.work-item:nth-child(1) {
    top: 240px;
    z-index: 1;
    /* Відступ від верху вюпорта для першого елемента */
}

.work-item:nth-child(2) {
    top: 240px;
    z-index: 2;
}

.work-item:nth-child(3) {
    top: 240px;
    z-index: 3;

}








.work-item>.work-box {
    position: relative;
    display: flex;
    align-items: end;
    gap: 40px;
    flex-direction: row;
    width: 100%;
    background: var(--colors-grey-25);
    border: 1px solid var(--colors-secondary-500);
    border-radius: 40px;
    padding: 56px 80px;

}


.work-item>.work-box::before {
    box-sizing: border-box;
    background: var(--colors-grey-25);
    content: "";
    top: 0;
    transform: translateY(-50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--colors-secondary-500);
    border-radius: 360px;
    padding: 8px 8px 8px 8px;
    width: 64px;
    height: 64px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 40px;
    line-height: 240%;
    text-transform: uppercase;
    text-align: center;
    color: var(--colors-secondary-500);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.work-item:nth-child(1)>.work-box:before {
    content: "1";
    left: 80px
}

.work-item:nth-child(2)>.work-box:before {
    content: "2";
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.work-item:nth-child(3)>.work-box:before {
    content: "3";
    right: 80px;
}

.work-item:nth-child(2)>.work-box {
    transform: translateY(48px);
    -webkit-transform: translateY(48px);
    -moz-transform: translateY(48px);
    -ms-transform: translateY(48px);
    -o-transform: translateY(48px);
}

.work-item:nth-child(3)>.work-box {
    transform: translateY(96px);
    -webkit-transform: translateY(96px);
    -moz-transform: translateY(96px);
    -ms-transform: translateY(96px);
    -o-transform: translateY(96px);
}

.work-item:nth-child(even)>.work-box {
    flex-direction: row-reverse;
}






.work-text_wrap {
    width: 620px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: start;
}

.work-subtitle {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: var(--colors-secondary-600);
}

.work-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: var(--colors-grey-600);
}

.work-img_wrap {
    border-radius: 40px;
    width: 620px;
    height: 368px;
}

.work-img {
    border-radius: 40px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}






/* DOWNLOAD */
.download {
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 2;
    background: var(--colors-primary-700);
    border-radius: 40px;
    margin-top: 125px;
}

.download>.container {

    padding: 80px 80px 80px 80px;


    display: flex;
    align-items: center;
    justify-content: space-between;

}

.download-img {
    position: absolute;
    transform: translateY(-30%);
    width: 632px;
    height: 660px;
    object-fit: contain;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
}

.download-img_wrap {
    position: relative;
    width: 660px;
    height: 260px;
}

.download-text_wrap {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 620px;
}

.download-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    color: var(--colors-grey-25);
}

.download-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    color: var(--colors-primary-100);
    margin-top: 20px;
    margin-bottom: 40px;
}

.download-list {
    display: flex;
    gap: 16px;
    align-items: center;
}

.download-item {
    border-radius: 7px;
}

.download-item:first-child {
    width: 132px;
    height: 44px;
}

.download-item:last-child {
    width: 148.5px;
    height: 44px;
    border-radius: 5px;
}

.download-app {
    border-radius: 7px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.download-item:last-child>.download-app {
    border-radius: 5px;
}


/* ADVANTAGE */
.advantage {
    width: 100%;
    height: fit-content;
    position: relative;
    top: -40px;
    z-index: 1;
    border: 1px solid var(--colors-primary-700);
    border-radius: 0 0 40px 40px;
    background: var(--colors-grey-100);
    margin-bottom: 0px;
}

.advantage>.container {

    padding: 215px 80px 56px 80px;

    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.advantage-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    text-transform: uppercase;
    text-align: center;
    color: var(--colors-grey-900);

    width: 100%;
}

.advantage-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: var(--colors-grey-600);

    width: 100%;
}

.advantage-all-box {
    width: 100%;
    height: auto;
    position: relative;
}

.advantage-text-list {
    width: calc(100% - 80px);
    position: absolute;
    z-index: 1;
    top: 40px;
    left: 40px;
    display: flex;
    justify-content: space-between;
    height: fit-content;
}



.advantage-text-list.bottom {
    top: unset;
    bottom: 40px;

}


.advantage-item {
    width: 470px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    height: fit-content;
}

.advantage-item-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: var(--colors-grey-25);
}

.advantage-item-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: var(--colors-grey-25);
}

.advantage-text>br {
    display: none;
}


.advantage-img_wrap {
    background-image: url("./img/Advantages.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 40px;

    width: 100%;
    height: 616px;
}

.advantage-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid var(--colors-primary-600);
    border-radius: 360px;
    padding: 8px 12px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 137%;
    text-align: center;
    color: var(--colors-primary-600);
    height: 56px;
}

/* FOOTER */

footer {
    width: 100%;
    height: fit-content;
    background: var(--colors-primary-700);
    border-radius: 40px 40px 0 0;
}


footer>.container {

    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
}

.footer-box {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.footer-nav_box {
    width: 290px;
    display: flex;
    flex-direction: column;
    gap: 12px;

}

.footer-logo_wrap {
    width: 195px;
    height: 88px;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    width: 100%;

}

.footer-nav .links-nav {
    width: 100%;
    height: 37px;
}

.footer-docs {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.footer-docs_item,
.footer-docs_item>a {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 137%;
    text-align: center;
    color: var(--colors-grey-25);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}

.footer-contacts2 {
    display: none;
}


.footer-contacts_item,
.footer-contacts_item>a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: var(--colors-grey-50);
}


.soc-list {
    margin-top: 8px;
    display: flex;
    gap: 16px;
    justify-content: start;
    align-items: center;
}

.soc-item {
    width: 32px;
    height: 32px;
}

.soc-icon {
    width: 100%;
    height: 100%;
}

.footer-legasy {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: var(--colors-primary-200);
}



@media screen and (max-width: 780px) {

    body {
        width: 100%;
    }

    .container {
        padding: 0 20px;
        width: 390px;

    }

    header {

        width: 390px;

    }

    /* HEADER */

    header>.container {
        padding: 0 20px;
        z-index: 8;
        top: 16px;
        position: absolute;

    }

    .header-box {


        justify-content: center;
        box-shadow: none;
        background: none;

        border-radius: none;

    }


    .logo-wrap {
        height: 56px;
        width: 158px;

    }



    .site-nav {
        display: none;
    }





    /* HERO */


    .hero>.container {

        border-radius: 0 0 32px 32px;
        padding: 92px 20px 32px 20px;


        flex-direction: column;
        gap: 32px;
        justify-content: unset;
        align-items: start;
    }

    .hero-img_wrap {
        border-radius: 32px;
        width: 350px;
        height: 307px;
    }



    .hero-img {
        border-radius: 32px;

    }




    .hero-title_wrap {

        flex-direction: column;
        justify-content: unset;
        height: auto;
        width: 100%;
        gap: 24px;
    }

    .hero-title {
        margin-top: 0;
        font-size: 42px;

    }

    .hero-info_wrap {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .hero-text {

        font-size: 25px;

    }

    .hero-nav {
        flex-direction: column-reverse;
        gap: 12px;
        height: auto;
    }

    .hero-nav>.links-nav {
        width: 100%;
        font-size: 16px;
        height: 48px;
    }

    /* QUEST */

    .quest>.container {

        padding: 80px 20px 40px 20px;
        width: 390px;
        top: -32px;

    }

    .quest-title {

        font-size: 26px;

    }

    /* ABOUT */

    .about>.container {
        padding: 40px 20px;
        flex-direction: column;
        gap: 24px;
    }

    .about-info_box {

        width: 100%;
    }

    .about-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .about-text {


        font-size: 18px;
        line-height: 139%;
    }

    .about-bold {}

    .about-text+.about-text {
        margin-top: 8px;
    }


    .about-img_wrap {
        border-radius: 40px;
        width: 100%;
        height: auto;

    }



    /* MISSION */

    .mission>.container {

        padding: 40px 20px;
        height: auto;

    }

    .top-box {
        width: 100%;
        flex-direction: column;
        justify-content: unset;
        gap: 16px;
        margin-bottom: 24px;
    }

    .mission-title {
        font-family: var(--second-family);
        font-size: 26px;

    }

    .bottom-box>.mission-title {
        width: 100%;

        word-wrap: break-word;
        /*Дозволитипереноси*/
        hyphens: manual;
        font-family: var(--second-family);
        -webkit-hyphens: manual;
        -moz-hyphens: manual;
        -ms-hyphens: manual;

    }

    .mission-title>br {

        display: unset;
    }

    .mission-title>span {

        display: none;
    }

    .mission-text {
        width: 100%;
        font-size: 18px;
        line-height: 139%;

    }

    .bottom-box {
        width: 100%;
        flex-direction: column;
        justify-content: unset;
        gap: 20px;
        padding: 20px;

    }

    .mission-list {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;

    }

    .mission-item {
        width: 100%;
        gap: 8px;
        height: 56px;
        font-size: 18px;
        line-height: 139%;

    }

    .wrap-icon {

        width: 40px;
        height: 40px;

    }


    .mission-icon {
        width: 24px;
        height: 24px;
    }


    /* WORK */

    .work>.container {
        width: 100%;
        position: relative;



    }

    .work-title {
        position: sticky;
        top: 56px;
        font-size: 26px;
        margin-bottom: 48px;
    }

    .work-list {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
        width: 100%;

    }

    .work-item {
        position: sticky;
        width: 100%;
        z-index: 1;
        height: 576px;

    }




    .work-item:nth-child(1) {
        top: 140px;
        z-index: 1;
        /* Відступ від верху вюпорта для першого елемента */
    }

    .work-item:nth-child(2) {
        top: 140px;
        z-index: 2;
    }

    .work-item:nth-child(3) {
        top: 140px;
        z-index: 3;

    }








    .work-item>.work-box {

        align-items: center;
        gap: 24px;
        flex-direction: column;

        padding: 40px 20px 24px 20px;

    }


    .work-item>.work-box::before {
        box-sizing: border-box;
        background: var(--colors-grey-25);
        content: "";
        top: 0;
        padding: 8px 8px 8px 8px;
        width: 48px;
        height: 48px;
        font-size: 32px;
        line-height: 300%;

    }

    .work-item:nth-child(1)>.work-box:before {

        left: 20px
    }



    .work-item:nth-child(3)>.work-box:before {

        right: 20px;
    }

    .work-item:nth-child(2)>.work-box {
        transform: translateY(40px);
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
    }

    .work-item:nth-child(3)>.work-box {
        transform: translateY(80px);
        -webkit-transform: translateY(80px);
        -moz-transform: translateY(80px);
        -ms-transform: translateY(80px);
        -o-transform: translateY(80px);
    }

    .work-item:nth-child(even)>.work-box {
        flex-direction: column;
    }






    .work-text_wrap {
        width: 100%;

    }

    .work-subtitle {
        font-size: 22px;

    }

    .work-text {

        font-size: 18px;
        line-height: 139%;

    }

    .work-img_wrap {

        width: 100%;
        height: 354px
    }








    /* DOWNLOAD */

    .download>.container {
        padding: 0px 20px 40px 20px;
        margin-top: 50px;
        flex-direction: column;
        justify-content: unset;

    }

    .download-img {
        position: absolute;
        transform: translateY(-38%);
        width: 100%;
        height: 403px;
        -webkit-transform: translateY(-38%);
        -moz-transform: translateY(-38%);
        -ms-transform: translateY(-38%);
        -o-transform: translateY(-38%);
    }

    .download-img_wrap {
        position: relative;
        width: 100%;
        height: 260px;
    }

    .download-text_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .download-title {
        width: 100%;

        font-size: 26px;
        text-align: center;
    }

    .download-text {
        width: 100%;
        font-size: 18px;
        text-align: center;
        line-height: 139%;

        margin-top: 16px;
        margin-bottom: 24px;
    }

    .download-list {
        width: 100%;
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: center;
    }








    /* ADVANTAGE */
    .advantage {
        border: none;
        border-bottom: 1px solid var(--colors-primary-700);
    }


    .advantage>.container {
        top: -40px;

        padding: 80px 20px 40px 20px;
        width: 390px;
        display: flex;
        flex-direction: column;
        gap: unset;
        margin-bottom: 40px;

    }

    .advantage-title {

        font-size: 26px;
        margin-bottom: 16px;


        width: 100%;
    }

    .advantage-text {
        font-size: 18px;
        line-height: 139%;
        margin-bottom: 24px;
        width: 100%;
    }



    .advantage-text-list {
        width: 100%;
        position: static;
        flex-direction: column;
        gap: 8px;

        justify-content: unset;

    }

    .advantage-text-list.bottom {
        margin-bottom: 24px;

    }

    .advantage-item {
        width: 100%;
        border-radius: 40px;
        padding: 20px;
        background: var(--colors-grey-25);
        gap: unset;

    }

    .advantage-item-title {
        font-size: 18px;
        line-height: 139%;
        color: var(--colors-primary-700);
    }

    .advantage-item-text {
        font-size: 16px;
        line-height: 144%;
        color: var(--colors-grey-600);
    }

    .advantage-text>br {
        display: unset;
    }


    .advantage-img_wrap {
        margin: 8px 0;
        background-size: cover;


        width: 100%;
        height: 273px;
    }



    /* FOOTER */
    footer>.container {

        padding: 40px 20px;

        gap: 24px;

    }

    .footer-box {
        display: flex;
        align-items: start;
        justify-content: space-between;
        width: 100%;
    }

    .footer-nav_box {
        width: 135px;


    }

    .footer-logo_wrap {
        width: 135px;
        height: 48px;
    }

    .footer-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-nav {
        display: none;

        width: 100%;

    }



    .footer-docs {
        display: none;

    }

.footer-contacts2 {
    display: flex;
 

    flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
}

    .footer-contacts {
        height: 48px;
        align-items: center;
        justify-content: center;
        gap: unset;
    }

    .footer-contacts_item:nth-child(-n+3) {
        display: none;

    }
.footer-contacts_item2,
.footer-contacts_item2>a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    color: var(--colors-grey-50);
}


    .soc-list {
        margin-top: 0px;

    }

    .soc-item {
        width: 24px;
        height: 24px;
    }


    .footer-legasy {

        line-height: 144%;

    }



}