@font-face {
    font-family: 'GolosText';
    src: url('../fonts/Golos_Text/static/GolosText-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GolosText';
    src: url('../fonts/Golos_Text/static/GolosText-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GolosText';
    src: url('../fonts/Golos_Text/static/GolosText-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'GolosText';
    src: url('../fonts/Golos_Text/static/GolosText-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GolosText';
    src: url('../fonts/Golos_Text/static/GolosText-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "SangBleu";
    src: local("SangBleu"), url("../fonts/SangBleu/sangbleusunrise-medium.woff") format("woff"), url("../fonts/SangBleu/sangbleusunrise-medium.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SangBleuItalic";
    src: local("SangBleu"), url("../fonts/SangBleu/sangbleusunrise-mediumitalic.woff") format("woff"), url("../fonts/SangBleu/sangbleusunrise-mediumitalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'GolosText', sans-serif;
}

html,
body {
    width: 100%;
    font-family: 'GolosText', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    background-color: #272727;
}

html {
    font-size: 16px;
}


.container-wrapper {
    width: 100%;
}

.container-wrapper:nth-of-type(1) {
    padding-top: 60px;

    background: linear-gradient(to bottom,
            #272727 0%,
            #272727 55%,
            #2a2f28 62%,
            #2f382a 68%,
            #37442d 74%,
            #435632 80%,
            #536c37 85%,
            #69883d 89%,
            #83aa43 93%,
            #a2cc49 97%,
            #C2F04F 100%);
}

.container-wrapper:nth-of-type(2) {
    padding-top: 45px;
    padding-bottom: 45px;
    background: linear-gradient(to bottom,
            #272727 0%,
            #272727 85%,
            #282b26 86%,
            #2e3a2b 87%,
            #3b4c2f 88%,
            #485d33 89%,
            #7a9e40 91%,
            #9ebc47 92%,
            #C2F04F 93%,
            #E0FF80 98%);
}

@media (max-width: 770px) {
    .container-wrapper:nth-of-type(2) {
        background: linear-gradient(to bottom,
                #272727 0%,
                #272727 75%,
                #282b26 80%,
                #2e3a2b 81%,
                #3b4c2f 84%,
                #485d33 85%,
                #7a9e40 86%,
                #9ebc47 87%,
                #C2F04F 88%,
                #E0FF80 91%);
    }
}

.container-wrapper__solid {
    width: 100%;
    background-color: #272727;
}

.container {
    position: relative;
    max-width: 1270px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

.container-custom {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center top;
    padding-bottom: 190px;
}

a,
a:active,
a:visited,
a:hover {
    color: inherit;
}

.checkbox-group label,
.checkbox-group label span.checkbox_default__caption,
input.checkbox_default {
    vertical-align: middle;
    cursor: pointer;
}

input.checkbox_default {
    appearance: none;
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    background-size: 100% 100%;
    background-image: url('../img/icons/unchecked_new.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin-right: 5px;
    outline: none;
}

input.checkbox_custom {
    width: 25px;
    height: 25px;
}

input.checkbox-fundraizing:checked {
    background-image: url('../img/icons/checked-fandraizing_new.png');
}

input.checkbox-nanimateli:checked {
    background-image: url('../img/icons/checked-nanimateli_new.png');
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.checkbox-group__custom {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.checkbox_default__label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.checkbox_default__caption {
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: rgba(255, 255, 255);
}

.checkbox_custom__caption {
    font-size: 10.3px;
}

.checkbox_custom__text {
    display: block;
    max-width: 141px;
    font-size: 10.3px;
    line-height: 110%;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
    margin-top: 10px;
    cursor: default;
}

@media (max-width: 770px) {
    .checkbox_custom__text {
        font-size: 12px;
        max-width: 157px;
        margin-top: 20px;
    }

    .checkbox_custom__caption {
        font-size: 14px;
    }

    input.checkbox_default,
    input.checkbox_custom {
        width: 29px;
        height: 29px;
    }
}




header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    padding-top: 22px;
    padding-bottom: 17px;

    background-color: #2F2F2F;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.25);
}

.header_inside {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.header_inside-wrap {
    display: flex;
    flex-direction: row;
    gap: 75px;
}

.header_inside-item_custom {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.header_inside-item {
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF !important;
    font-weight: 500;

    text-decoration: none;
    padding-bottom: 5px;

    white-space: nowrap;
}

.header_inside-item-disabled {
    color: rgba(255, 255, 255, 0.5) !important;
}

.header_inside-item_custom2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header_inside-hr {
    width: 57px;
    border-bottom: 1px solid #979797;
    height: 1px;
    cursor: default;
}

.header_inside-item.active {
    border-bottom: 1px solid #C3F050;
    padding-left: 4px;
    padding-right: 4px;
}



.welcome-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.welcome-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;

    padding-top: 52px;
    margin-bottom: 230px;
}

.welcome-title {
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 500;
}

.welcome-logo {
    width: 190px;
}

@media (max-width: 770px) {
    .container-wrapper:nth-of-type(1) {
        padding-top: 54px;
    }

    .container-wrapper:nth-of-type(2) {
        padding-bottom: 50px;
    }

    .container-custom {
        background-image: url("../img/bg_header_main-mob.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100%;
        padding-bottom: 60px;
    }

    header {
        padding-top: 19px;
        padding-bottom: 15px;
    }

    .header_inside-item {
        font-size: 15px;
    }

    .welcome-wrap {
        gap: 150px;
        align-items: inherit;
    }

    .checkbox-group__custom {
        order: 2;
        justify-content: center;
        gap: 20px;
    }

    .welcome-caption {
        order: 1;
    }

    .welcome-box {
        gap: 16px;
        padding-top: 35px;
        margin-bottom: 175px;
    }

    .welcome-title {
        font-size: 16px;
    }

    .welcome-logo {
        width: 165px;
    }
}

.header-burger__icon {
    display: none;
}

@media (max-width: 950px) {
    .header_inside-wrap {
        gap: 30px;
    }
}

@media (max-width: 650px) {
    header {
        display: none;
    }

    .container-custom {
        padding-top: 55px;
    }

    .header-burger__icon {
        cursor: pointer;
        display: block;
        padding: 20px;
        margin-left: -10px;
    }

    .container-wrapper:nth-of-type(1) {
        padding-top: 0;
    }

    .welcome-box {
        padding-top: 40px;
    }

}


.burger-menu {
    display: none;
    background-color: #2F2F2F;
    width: 88%;
    height: 100vh;
    padding: 75px 10px 50px 30px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 500;
    box-shadow: 0px 0.26px 1.04px 0px rgba(202, 202, 202, 0.25);
}

.burger-menu__bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background: rgba(255, 255, 255, 0.3);
}

.burger-menu__wrap {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}

.burger-menu__close {
    width: 22px;
    cursor: pointer;
    margin-bottom: 55px;
}

.burger-menu .footer-wrap4 {
    gap: 20px;
}

.burger-menu__text1 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.burger-menu__logo {
    max-width: 190px;
    margin-bottom: 32px;
}

.burger-menu .header_inside {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.burger-menu .header_inside-wrap {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.burger-menu .header_inside-item {
    font-size: 24px;
    width: fit-content;
}

.burger-menu .header_inside-item_custom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.burger-menu .header_inside-hr {
    width: 1px;
    height: 55px;
    border-bottom: none;
    border-left: 1px solid #979797;
}

.burger-menu .header_inside-item_custom2 img {
    width: 15px;
}




.welcome-caption {
    font-size: clamp(2.1875rem, 0.8542rem + 6.6667vw, 6.6875rem);
    /* from 35px to 107px */
    line-height: 89%;
    color: #FFFFFF;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.welcome-caption__2 {
    align-self: flex-start;
    padding-right: 280px;
}

@media (max-width: 770px) {
    .welcome-caption__2 {
        padding-right: 0;
    }
}

.checkbox_custom__text {
    transition: all 0.4s ease-out;
}

.welcome-caption__3 {
    transition: all 0.4s ease-out;
}


.welcome-timer {
    font-size: clamp(1.875rem, 1.0231rem + 4.2593vw, 4.75rem);
    /* from 76px to 30px */
    line-height: 99%;
    font-weight: 500;
    color: rgba(255, 255, 255);
    margin-top: 255px;
}

.welcome-timer__days {
    font-family: "SangBleuItalic", sans-serif;
}

.welcome-timer__small {
    font-size: 27px;
    line-height: 99%;
    font-weight: 500;
    color: #FFFFFF;
    padding: 0 5px;
    vertical-align: middle;
    white-space: nowrap;
}

.welcome-btn {
    font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.5rem);
    color: #2F2F2F;
    line-height: 100%;
    font-weight: 500;
    border-radius: 30px;
    outline: none;
    border: 0;
    cursor: pointer;
    background-color: #FFFFFF;
    width: 100%;
    height: 60px;
    max-width: 600px;
}

.welcome-timer__mobile {
    display: none;
}

@media (max-width: 770px) {
    .welcome-timer {
        margin-top: 155px;
    }

    .welcome-timer__small {
        display: none;
    }

    .welcome-timer__mobile {
        display: inline;
        font-size: 14px;
        line-height: 99%;
        font-weight: 500;
        color: #FFFFFF;
        vertical-align: middle;
        white-space: nowrap;
        padding-left: 5px;
    }

    .welcome-btn {
        height: 43px;
    }
}


.section1 {
    margin-bottom: 100px;
}

.section1-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.section1-wrap__text1 {
    font-size: clamp(1.5625rem, 1.4699rem + 0.463vw, 1.875rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 782px;
}

.section1-wrap__texts {
    max-width: 325px;
}

.section1-wrap__logo {
    max-width: 124px;
    float: left;
    margin-right: 25px;
    margin-bottom: 7px;
}

.section1-wrap__text2 {
    font-size: 16px;
    line-height: 110%;
    font-weight: 500;
    color: #FBFBFB;
}

.section1-text3 {
    font-size: clamp(1.5625rem, 1.4699rem + 0.463vw, 1.875rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    padding-top: 63px;
    padding-bottom: 45px;
}

@media (max-width: 770px) {
    .section1 {
        margin-bottom: 10px;
    }

    .section1-wrap {
        flex-direction: column;
        gap: 50px;
    }

    .section1-wrap__text1 {
        line-height: 110%;
    }

    .section1-wrap__texts {
        max-width: 600px;
        width: 100%;
    }

    .section1-text3 {
        padding-top: 60px;
        padding-bottom: 35px;
    }
}

.section1-image {
    background-image: url("../img/section1_back.png");
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 1160px;
    margin: 0 auto;
    width: 100%;

    aspect-ratio: 1160 / 427;


    padding: 30px 50px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.section1-link1 {
    font-size: clamp(1rem, 0.8333rem + 0.8333vw, 1.5625rem);
    line-height: 110%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 290px;
    text-decoration: none;
    cursor: default;
}

.section1-link1:hover,
.section1-link2:hover {
    color: #FFFFFF;
    text-decoration: inherit;
}

.section1-link2 {
    font-size: clamp(1rem, 0.8333rem + 0.8333vw, 1.5625rem);
    line-height: 110%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 390px;
    text-decoration: none;
    margin-top: 80px;
    cursor: default;
}

.section1-link1:hover span,
.section1-link2:hover span {
    border-bottom: none;
}

.section1-link1 span,
.section1-link2 span {
    border-bottom: 1px solid #C3F150 !important;
}

@media (max-width: 1170px) {
    .section1-link1 {
        max-width: 250px;
    }

    .section1-link2 {
        max-width: 300px;
    }
}

@media (max-width: 1020px) {
    .section1-image {
        padding: 20px 35px;
    }

    .section1-link1 {
        max-width: 200px;
    }

    .section1-link2 {
        margin-top: 60px;
        max-width: 250px;
    }
}

@media (max-width: 770px) {
    .section1-image {
        background-image: url("../img/section1_back-mob.png");
        flex-direction: column;
        padding: 20px 20px 30px;
        max-width: 500px;
        width: 100%;

        aspect-ratio: 335 / 338;
    }

    .section1-link1 {
        max-width: 220px;
    }

    .section1-link2 {
        margin-top: 0;
        margin-left: 30px;
        max-width: 259px;
    }
}

.section2 {
    margin-bottom: 230px;
}

.section2_text1 {
    font-size: clamp(1.5625rem, 1.2847rem + 1.3889vw, 2.5rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 931px;
    width: 100%;
}

@media (max-width: 770px) {
    .section2 {
        margin-bottom: 30px;
    }

    .section2_text1 {
        line-height: 110%;
    }
}

canvas {
    flex-grow: 1;
    width: 100%;
    /* max-width: 1900px; */
}

.controls {
    width: 85%;
    /* margin: 0 auto; */
    /* max-width: 600px; */
    /* padding: 40px; */
}

input[type=range] {
    width: 100%;
    cursor: pointer;

    -webkit-appearance: none;
    appearance: none;
    background: transparent;


    opacity: 50%;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #FFFFFF;
    height: 1px;
    border-radius: 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -20px;
    background-color: #FFFFFF;
    height: 40px;
    width: 30px;
    border-radius: 74px;
}

input[type="range"]::-moz-range-track {
    background: #FFFFFF;
    height: 1px;
    border-radius: 0;
}

input[type="range"]::-moz-range-thumb {
    margin-top: -20px;
    background-color: #FFFFFF;
    height: 40px;
    width: 30px;
    border-radius: 74px;
}

.range-tip {
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 20px;
    text-align: center;
    opacity: 50%;
}

@media (max-width: 770px) {
    .controls {
        width: 95%;
        margin: 0 auto;
    }
}

::-webkit-slider-thumb {
    background-color: #FFFFFF;
}

.section3 {
    margin-bottom: 250px;
    margin-left: 100px;
}

.section3_text1 {
    font-size: clamp(1.5625rem, 1.2847rem + 1.3889vw, 2.5rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 920px;
    width: 100%;
    margin-bottom: 25px;
}

.section3_text1 span {
    border-bottom: 1px solid #C3F150;
}

@media (max-width: 770px) {
    .section3 {
        margin-bottom: 140px;
    }

    .section3_text1 {
        line-height: 110%;
    }
}


.percentage-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(6.875rem, 4.838rem + 10.1852vw, 13.75rem);
    color: white;
}

.overlapping-numbers {
    display: grid;
    place-items: flex-end;
}

.number {
    grid-area: 1 / 1;
    -webkit-text-stroke: 2px;
    color: transparent;
}

.num-4 {
    -webkit-text-stroke-color: #FF6E32;
}

.num-6 {
    -webkit-text-stroke-color: #AA6EFF;
}

.static-part {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

.section3-wrap1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    margin-bottom: 40px;
}

.section3-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.section3_text2 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 80%;
    font-weight: 500;
    color: #AA6EFF;
    max-width: 400px;
    width: 100%;
}

.section3_text3 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 80%;
    font-weight: 500;
    color: #FF6E32;
    max-width: 460px;
    width: 100%;
}

@media (max-width: 770px) {
    .section3-wrap1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 35px;
    }

    .section3-wrap {
        flex-direction: column;
    }
}


.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(2.1875rem, 0.7986rem + 6.9444vw, 6.875rem);
    line-height: 75%;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 70px;
}

.top-row-stack {
    display: grid;
    place-items: flex-end;
}

.word {
    grid-area: 1 / 1;
    color: transparent;
    -webkit-text-stroke: 1px;
}

.word-orange {
    -webkit-text-stroke-color: #FF6E32;
}

.word-purple {
    -webkit-text-stroke-color: #AA6EFF;
}

.bottom-row {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    white-space: nowrap;
    font-weight: 500;
}

@media (max-width: 770px) {
    .text-container {
        line-height: 80%;
        margin-bottom: 35px;
    }
}

.section4 {
    margin-bottom: 230px;
}

.section4-wrap {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
}

.section4_text1 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 130%;
    font-weight: 500;
    color: #AA6EFF;
}

.section4_text2 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 130%;
    font-weight: 500;
    color: #FF6E32;
}

@media (max-width: 770px) {
    .section4 {
        margin-bottom: 115px;
    }

    .section4_text1,
    .section4_text2 {
        line-height: 120%;
    }

    .section4-wrap {
        flex-direction: column;
        gap: 25px;
    }
}

.section5 {
    margin-bottom: 330px;
}

.section5_text1 {
    font-size: clamp(1.5625rem, 1.2847rem + 1.3889vw, 2.5rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 925px;
    width: 100%;
    margin-bottom: 105px;
}

.section5_text1 span {
    border-bottom: 1px solid #C3F150;
}

.section5-image__desktop {
    max-width: 880px;
    display: block;
    width: 100%;
    margin: 0 auto;
}

.section5-image__mob {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    display: none;
}

@media (max-width: 770px) {
    .section5 {
        margin-bottom: 40px;
    }

    .section5_text1 {
        margin-bottom: 60px;
    }

    .section5-image__desktop {
        display: none;
    }

    .section5-image__mob {
        display: block;
    }
}


.section6 {
    background-image: url("../img/section6.png");
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 330px;
}

.section6_text1 {
    text-align: center;
    font-size: clamp(1.5625rem, 1.2847rem + 1.3889vw, 2.5rem);
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 880px;
    width: 100%;
}

@media (max-width: 770px) {
    .section6 {
        background-image: url("../img/section6.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: contain;
        min-height: 272px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 145px;
    }
}

.section7-wrap1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section7-text1 {
    font-size: 30px;
    line-height: 120%;
    font-weight: 500;
    color: #2F2F2F;

    display: inline-block;
    line-height: 1;
    text-align: center;
    width: 1em;
    margin-left: -8px;

    animation: rotate-axis 3s linear infinite;
}

@keyframes rotate-axis {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.section7-text2 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 120%;
    font-weight: 500;
    color: #2F2F2F;
    max-width: 600px;
    width: 100%;
}

.section7-text3 {
    font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.5rem);
    line-height: 100%;
    font-weight: 500;
    color: #2F2F2F;
}

.section7-text4 {
    font-size: clamp(1.5625rem, 1.3773rem + 0.9259vw, 2.1875rem);
    line-height: 115%;
    font-weight: 500;
    color: #2F2F2F;
}

@media (max-width: 770px) {
    .section7-wrap1 {
        flex-direction: row;
        gap: 10px;
        align-items: flex-start;
    }

    .section7-text1 {
        margin-left: 0;
        margin-top: -5px;
    }
}

.section7-wrap2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 50px;
    margin: 40px 0 35px;
}

.section7-btn {
    font-size: clamp(0.875rem, 0.6898rem + 0.9259vw, 1.5rem);
    color: #FFFFFF;
    line-height: 100%;
    font-weight: 500;
    border-radius: 30px;
    outline: none;
    border: 0;
    cursor: pointer;
    background-color: #282828;
    width: 100%;
    height: 68px;
    max-width: 707px;
}

.section7-wrap3 {
    max-width: 404px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 17px;
    cursor: pointer;
}

.section7-icon {
    width: 27px;
}


@media (max-width: 770px) {
    .section7-btn {
        height: 43px;
        max-width: 500px;
    }

    .section7-wrap2 {
        flex-direction: column;
        gap: 25px;
        margin: 22px 0 55px;
    }

    .section7-icon {
        width: 22px;
    }

    .section7-wrap3 {
        max-width: 270px;
    }
}






footer {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 55px;
    padding-bottom: 60px;
    background-color: #272727;
}

.footer-block {
    max-width: 500px;
    width: 100%;
}

.footer-wrap1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    max-width: 186px;
}

.footer-text1 {
    font-size: clamp(0.75rem, 0.6019rem + 0.7407vw, 1.25rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
}

.footer-text2 {
    font-size: clamp(0.75rem, 0.6019rem + 0.7407vw, 1.25rem);
    line-height: 120%;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 30px;
}

.footer-wrap2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
}

.footer-wrap3 {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
}

.footer-wrap4 {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.footer-social {
    max-width: 35px;
}

.footer-link1 {
    font-size: clamp(0.75rem, 0.6019rem + 0.7407vw, 1.25rem);
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF !important;
}

.footer-text3 {
    font-size: clamp(0.75rem, 0.6019rem + 0.7407vw, 1.25rem);
    line-height: 100%;
    font-weight: 500;
    color: #FFFFFF;
    margin-right: 10px;
}


.footer-text4 {
    font-size: clamp(0.875rem, 0.7639rem + 0.5556vw, 1.25rem);
    line-height: 110%;
    font-weight: 500;
    color: #FFFFFF;
    max-width: 394px;
    width: 100%;
    margin-bottom: 25px;
}

.footer-input {
    font-size: 14px;
    line-height: 100%;
    font-weight: 500;
    color: #272727;
    background-color: #FFFFFF;
    border: 0;
    width: 100%;
    height: 51px;
    outline: none;
    padding: 0 25px;
}

.footer-input__email {
    margin-bottom: 25px;
}

.footer-input__name {
    margin-bottom: 7px;
}

.footer-input::placeholder {
    color: #D9D9D9;
    font-size: 14px;
    line-height: 100%;
    font-weight: 400;
}

.footer-btn {
    font-size: clamp(0.75rem, 0.6204rem + 0.6481vw, 1.1875rem);
    color: #FFFFFF;
    line-height: 100%;
    font-weight: 400;
    border-radius: 30px;
    outline: none;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    background-color: transparent;
    width: 100%;
    height: 50px;
    margin-top: 20px;
}

.footer-checkbox__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 770px) {
    footer {
        flex-direction: column;
        gap: 55px;
        padding-top: 25px;
        padding-bottom: 35px;
    }

    .footer-btn {
        height: 33px;
        margin-top: 15px;
    }

    .footer-input {
        height: 45px;
        padding: 0 15px;
    }

    .footer-input__email {
        margin-bottom: 15px;
    }

    .footer-input::placeholder {
        font-size: 12px;
    }

    .footer-block__1 {
        order: 2;
    }

    .footer-block__2 {
        order: 1;
    }

    .footer-text1,
    .footer-text2 {
        line-height: 110%;
    }

    .footer-logo {
        max-width: 124px;
    }

    .footer-wrap1 {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .footer-wrap2 {
        margin-top: 20px;
    }

    .footer-text4 {
        max-width: 270px;
        width: 100%;
        margin-bottom: 15px;
    }
}

.footer-checkbox__label {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
}

.footer-checkbox__input {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 13px;
    background-size: 100% 100%;
    background-image: url('../img/icons/checkbox_footer.svg');
    background-repeat: no-repeat;
    cursor: pointer;
    outline: none;
}

.footer-checkbox__input:checked {
    background-image: url('../img/icons/checkbox_footer__cheked.svg');
}

.footer-checkbox__span {
    font-size: clamp(0.625rem, 0.588rem + 0.1852vw, 0.75rem);
    line-height: 110%;
    font-weight: 500;
    color: #FFFFFF;
    cursor: pointer;
}

@media (max-width: 770px) {
    .footer-checkbox__input {
        width: 14px;
        height: 12px;
    }

    .footer-checkbox__label {
        gap: 5px;
    }
}

.popup-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(47, 47, 47, 1) 0%, rgba(47, 47, 47, 0.7) 100%);
}

.popup-research {
    display: none;
    max-width: 848px;
    width: 100%;
    height: 592px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #C2F04F;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    background-image: url('../img/popup-bg.png');
    background-repeat: no-repeat;
    background-position: left center;
    padding-right: 50px;
}

.popup-research__close {
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
}

.popup-research__wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.popup-research__block {
    max-width: 360px;
    width: 100%;
}

.popup-research__text1 {
    font-size: clamp(1.25rem, 1.0648rem + 0.9259vw, 1.875rem);
    line-height: 105%;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.popup-research .footer-btn {
    background-color: #FFFFFF;
    border: 1px solid #C2F04F;
    font-size: clamp(0.875rem, 0.8194rem + 0.2778vw, 1.0625rem);
    color: #272727;
}

.popup-research .footer-input {
    background-color: transparent;
    border: 1px solid #C2F04F;
    font-weight: 400;
    color: #FFFFFF;
    font-size: clamp(0.875rem, 0.8194rem + 0.2778vw, 1.0625rem);
    padding: 0 15px;
}

.popup-research .footer-input::placeholder {
    color: #A9A9A9;
    font-size: clamp(0.875rem, 0.8194rem + 0.2778vw, 1.0625rem);
}

.popup-research .footer-input__name {
    margin-bottom: 15px;
}

.popup-research .footer-input__email {
    margin-bottom: 40px;
}

.popup-research__social {
    vertical-align: middle;
    height: 1em;
    padding: 4px 2px;
}

.popup-research__social_link {
    text-decoration: none;
    color: inherit !important;
}

@media (max-width: 890px) {
    .popup-research__text1 {
        margin-bottom: 15px;
    }

    .popup-research {
        max-width: inherit;
        max-width: 350px;
        width: 90%;
        height: auto;
        border-radius: 60px;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid #C2F04F;
        position: fixed;
        z-index: 30;
        background-image: url('../img/popup-bg__mob.png');
        background-repeat: no-repeat;
        background-position: top center;
        padding-right: 0;
        padding: 140px 25px 35px;
    }

    .popup-research .footer-input {
        height: 35px;
    }

    .popup-research__wrap {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .popup-research__block {
        max-width: inherit;
        width: 100%;
    }

    .popup-research .footer-input__email {
        margin-bottom: 20px;
    }

    .popup-research__close {
        position: absolute;
        right: -3px;
        top: -20px;
        cursor: pointer;
        width: 27px;
    }
}


.popup-research__success {
    display: none;
}

.popup-research__text2 {
    font-size: clamp(0.875rem, 0.7269rem + 0.7407vw, 1.375rem);
    line-height: 105%;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 50px;
}

@media (max-width: 890px) {
    .popup-research__text2 {
        margin-top: 25px;
    }

}


.welcome-copy .section7-text3 {
    color: rgba(255, 255, 255);
}


/* Уведомление*/
#access-notification {
    position: fixed;
    top: 67px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.notification-content {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    padding: 10px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.notification-icon {
    margin-right: 7px;
    flex-shrink: 0;
}

.notification-text {
    white-space: nowrap;
    overflow: hidden;
}

.notification-visible {
    opacity: 1;
    pointer-events: auto;
}

.notification-hidden {
    opacity: 0;
}

@media (max-width: 650px) {
    #access-notification {
        width: 90%;
    }

    .notification-content {
        font-size: 16px;
    }

    .notification-text {
        white-space: inherit;
    }
}

/* Уведомление*/