:root {
    --color-primary: #0033FF;
    --color-secondary: #39B659;
    --freedom-gradient: linear-gradient(94.57deg, #0033FF -0.2%, #39B659 99.8%);
    --2g-gradient: linear-gradient(94.57deg, #FFAF44 -0.2%, #39B659 99.8%);
}

@font-face {
    font-family: Euclid;
    src: url("../fonts/Euclid Circular A Regular.ttf") format("truetype"), url("../fonts/EuclidCircularA-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Euclid;
    src: url("../fonts/Euclid Circular A SemiBold.ttf") format("truetype"), url("../fonts/EuclidCircularA-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

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

.container {
    max-width: 1220px;
    margin: 0px auto;
    width: 100%;
    padding: 0px 20px;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
    padding: 29px 0px;
}

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

header .header__logo {
    width: 100px;
}

header .btn {
    border: 2px solid rgb(255, 255, 255);
    border-radius: 0.4rem;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-size: 2rem;
    font-family: Euclid, sans-serif;
    color: rgb(255, 255, 255);
    background: #080B10;
    text-align: center;
}

a:-webkit-any-link, a:link, a:visited, a:any-link {
    text-decoration: none;
    color: inherit;
}

.header_menu {
    display: flex;
    align-items: center;
    gap: 4rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.header_menu .btn {
    display: flex;
}

.fw-600 {
    font-weight: 600;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
    transition: 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

.lang_switcher {
    display: flex;
    align-items: stretch;
    gap: 1.6rem;
}

.lang_switcher .lang_btn {
    display: flex;
}

.sep {
    width: 1px;
    background: rgb(255, 255, 255);
}

.lang_switcher .lang_btn.active {
    opacity: 0.4;
}

.first_section {
    height: 100vh;
    max-height: 90rem;
    min-height: 90rem;
}

section {
    position: relative;
}

.bg-wrapper {
    position: absolute;
    inset: 0px;
    z-index: -1;
}

img, video {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-wrapper.lines {
}

.boy {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.series_logo {
    position: absolute;
    top: 26rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.line_front {
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    height: 100%;
    z-index: 2;
}

.banner_content {
    position: absolute;
    z-index: 4;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.banner_content span, .banner_content h2 {
    background: linear-gradient(0deg, rgb(185, 0, 0), rgb(245, 66, 66) 49%, rgb(185, 0, 0) 100%) text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 6.4rem;
}

section {
    padding: 8rem 0px;
}

.first_section::after {
    content: "";
    left: 0px;
    right: 0px;
    bottom: 0px;
    position: absolute;
    background: linear-gradient(0deg, #080B10, #080b1000 100%);
    z-index: 3;
    height: 39rem;
}

.second_section .fw-600 {
    max-width: 59rem;
    margin: 0px auto 4rem;
    font-size: 3.2rem;
}

.second_section {
    padding-bottom: 12.2rem;
}

.wrapper {
    position: relative;
}

.secont_section .video_frame {
    width: 79.4rem;
    height: 44rem;
    border-radius: 0.8rem;
}

iframe * {
    border-radius: inherit;
}

.two_gis_section {
    padding-bottom: 12.2rem;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.two_gis_logo {
    margin-bottom: 3.2rem;
    & img {
        margin: 0px auto;
        width: 13.8rem;
    }
}

.mouse {
    margin: 6rem auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mouse_img {
    width: 9.2rem;
    height: 6.4rem;
    object-fit: contain;
}

.circle {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
    will-change: transform;
    isolation: isolate;

    object-fit: contain;
}

.circle.animated {
    animation: scroll 1.5s ease-in-out infinite both;
}

.mw-60 {
    max-width: 60rem;
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.4;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-50%) translateY(30%) ;
    }
    100% {
        transform: translateX(-50%);
    }
}
.two_gis_content {
    max-width: 96rem;
    margin: 0px auto;
}

.two_gis_content .btn {
    border-width: 2px;
    font-size: 1.4rem;
    max-width: 20.4rem;
    padding: 1.6rem 2.4rem;
    margin: 3.2rem auto 0px;
}

.two_gis_content .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0.4rem;
    padding: 2px;
    background:var(--2g-gradient);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.gradient_btn_2 {
    font-size: 1.4rem;
    max-width: 19.1rem;
    margin: 2rem auto 0px;
    padding: 1.6rem 4rem;
}

.gradient_btn_2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0.4rem;
    padding: 2px;
    background:var(--freedom-gradient);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}


.two_gis_content p {
    margin-top: 1.6rem;
}

h3 {
    font-size: 3.2rem;
}

.third_section .text {
    max-width: 59rem;
    margin: 0px auto;
    line-height: 1.4;
    z-index: 10;
    display: inline-block;
    position: relative;
}

.chars {
    position: relative;
    width: 79.7rem;
    height: 110.6rem;
    overflow: hidden;
    margin: 0px auto;
    margin-top: -10rem;
    margin-bottom: -20rem;
}

.chars::before {
    background: url("../img/gradient_left.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 24.5rem;
    content: "";
    z-index: 2;
}

.chars::after {
    background: url("../img/gradient_right.png") no-repeat center center;
    background-size: cover;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 24.5rem;
    content: "";
    z-index: 5;
}

.char1, .char2, .char3 {
    position: absolute;
}

.char1 {
    bottom: 0px;
    left: -3rem;
    z-index: 1;
    width: 22.9rem;
    height: auto;
}

.char2 {
    bottom: 0px;
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
        width: 100%;
    height: auto;
}

.char3 {
    bottom: 0px;
    right: -27rem;
    width: 88.1rem;
    height: auto;
    z-index: 4;
}

.fades {
    position: absolute;
    inset: 0px;
    z-index: 6;
}

.chars .fades::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 19.8rem;
    background: url("../img/bg_top.png") no-repeat center center;
    background-size: cover;
    z-index: 7;
}

.chars .fades::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 19.8rem;
    background: url("../img/bg_bottom.png") no-repeat center center;
    background-size: cover;
    z-index: 7;
}

.video_frame_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.4rem;
    z-index: 10;
    position: relative;
}

.fourth_section {
    padding-top: 0;
    padding-bottom: 29rem;
}

.fmedia3d {
    max-width: 38rem;
    margin: 0px auto;
    margin-top: 2rem;
}

.video_frame {
    width: 79.4rem;
    height: 44rem;
    border-radius: 0.8rem;
}

.video_frame video {
    border-radius: inherit;
}

.modal {
    background: #1B1B1B;
    color: #fff;
    border-radius: 2rem;
    padding: 8rem 12rem;
    max-width: 79.4rem;
    margin: 0px auto;
}

.qr {
    margin: 3.2rem auto 0px;
}

.text p, .text ol, .text ul, .text li {
    margin-top: 1.6rem;
    list-style-position: outside;
}

.text ul, .text ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: list-counter;
}

.text li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.6rem;
    counter-increment: list-counter;
}

.text li::marker{
    display: none;
}

.text li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob {
    display: none;
}

@media screen and (max-width: 1000px) {

    .pc {
        display: none;
    }
    html {
        font-size: calc(10/390*100vw);
    }

    .first_section {
        height: 100vh;
        max-height: 60rem;
        min-height: 60rem;
    }

    header {
        background: #080B10;
    }

    body {
        font-size: 1.4rem;
    }
    .btn {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 4rem;
    }

    .banner_content {
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 3.2rem);
}

.mw-60 {font-size: 1.2rem; line-height: 1.5;}

.container {
    max-width: 100%;
    padding: 0px 1.6rem;
}

.second_section {
    padding-bottom: 4rem;
}

.series_logo {
    width: 34rem;
    height: 24rem;
    top: 36rem;
    z-index: 10;
}

.second_section .fw-600, h3 {
    font-size: 2rem;
}

.header_menu {
    gap: 1.6rem;
}

.lang_switcher {
    gap: 1.2rem;
}

.lang_switcher .lang_btn {
    font-size: 1.4rem;
}

.lang_switcher .sep {
    width: 1px;
}

.header_menu .btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0.4rem;
    border: 2px solid rgb(255, 255, 255);
}

header {
    padding: 1.6rem 0px;
}

section {
    padding: 4rem 0px;
}

.first_section {
    height: 66.8rem;
    max-height: 66.8rem;
    min-height: 66.8rem;
}

.two_gis_section {
    padding: 4rem 0px;
}

.chars {
    width: 100%;
    height: 54.1rem;
    margin-top: 0px;
    margin-bottom: 0px;
}

.char1 {
    width: 11.2rem;
}

.char2 {
    width: 100%;
}

.char3 {
    width: 100%;
    height: 100%;
}

.chars .fades::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 11.8rem;
    background: url(../img/bg_bottom.png) no-repeat center center;
    background-size: cover;
    z-index: 7;
}

.chars .fades::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 4.8rem;
    background: url(../img/bg_top.png) no-repeat center center;
    background-size: cover;
    z-index: 7;
}

.video_frame_wrapper {
    gap: 3.4rem;
}

.third_section {
    padding-bottom: 2.3rem;
}

.fmedia3d {
    max-width: calc(100% - 3.2rem);
    margin: 0px auto;
}

.third_section .text {
    max-width: calc(100% - 3.2rem);
}

.fourth_section {
    padding-bottom: 8rem;
}

.video_frame {
    width: 100%;
    height: 64rem;
}

.third_section .video_frame {
    height: 24rem;
}

.qr {
    display: none;
}

.modal {
    padding: 4rem 1.6rem;
    max-width: calc(100% - 2.4rem);
    margin: 0px auto;
}

.mob {
    display: block;
    margin: 0px auto;
}

.modal .mob {
    margin-top: 4.8rem;
}
}