body{
    width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    background: #000;
    font-display: swap !important;
}

/*** Scrollbar & Default Cursor***/
:root {
    scrollbar-color: rgb(232, 143, 78) rgb(0, 0, 0) !important;
    scrollbar-width: thin !important;
    cursor: url(../images/cursors/default/frame_1.png), default;
    animation: cursor_default 700ms infinite !important;
    -webkit-animation: cursor_default 700ms infinite !important;
}

@media only screen and (min-width: 767px) {
    ::-webkit-scrollbar,
    -webkit-scrollbar {
        width: 10px !important;
    }
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%) !important;
    background: #000 !important;
}

::-webkit-scrollbar-thumb {
    background-color: #ee991a !important;
    -webkit-box-shadow: inset 0 0 5px rgb(0 0 0) !important;
    box-shadow: inset 0 0 5px rgb(0 0 0) !important;
}

#__nuxt{
    z-index: 1;
    position: relative;
}
/*
@-webkit-keyframes cursor_default {
    0% {
        cursor: url(../images/cursors/default/frame_1.webp), default;
    }

    12.5% {
        cursor: url(../images/cursors/default/frame_2.webp), default;
    }

    25% {
        cursor: url(../images/cursors/default/frame_3.webp), default;
    }

    40.5% {
        cursor: url(../images/cursors/default/frame_4.webp), default;
    }

    56% {
        cursor: url(../images/cursors/default/frame_5.webp), default;
    }

    68.5% {
        cursor: url(../images/cursors/default/frame_6.webp), default;
    }

    91.5% {
        cursor: url(../images/cursors/default/frame_7.webp), default;
    }

    100% {
        cursor: url(../images/cursors/default/frame_8.webp), default;
    }
}

@keyframes cursor_default {
    0% {
        cursor: url(../images/cursors/default/frame_1.webp), default;
    }

    12.5% {
        cursor: url(../images/cursors/default/frame_2.webp), default;
    }

    25% {
        cursor: url(../images/cursors/default/frame_3.webp), default;
    }

    40.5% {
        cursor: url(../images/cursors/default/frame_4.webp), default;
    }

    56% {
        cursor: url(../images/cursors/default/frame_5.webp), default;
    }

    68.5% {
        cursor: url(../images/cursors/default/frame_6.webp), default;
    }

    91.5% {
        cursor: url(../images/cursors/default/frame_7.webp), default;
    }

    100% {
        cursor: url(../images/cursors/default/frame_8.webp), default;
    }
}
*/

/* Default Cursor Animation - Fixed by "Chemist Desnomad" */
@-webkit-keyframes cursor_default {
    0%, 100% {
        cursor: url(../images/cursors/default/frame_1.png), default;
    }

    12.5% {
        cursor: url(../images/cursors/default/frame_2.png), default;
    }

    25% {
        cursor: url(../images/cursors/default/frame_3.png), default;
    }

    37.5% {
        cursor: url(../images/cursors/default/frame_4.png), default;
    }

    50% {
        cursor: url(../images/cursors/default/frame_5.png), default;
    }

    62.5% {
        cursor: url(../images/cursors/default/frame_6.png), default;
    }

    75% {
        cursor: url(../images/cursors/default/frame_7.png), default;
    }

    87.5% {
        cursor: url(../images/cursors/default/frame_8.png), default;
    }
}

@keyframes cursor_default {
    0%, 100% {
        cursor: url(../images/cursors/default/frame_1.png), default;
    }

    12.5% {
        cursor: url(../images/cursors/default/frame_2.png), default;
    }

    25% {
        cursor: url(../images/cursors/default/frame_3.png), default;
    }

    37.5% {
        cursor: url(../images/cursors/default/frame_4.png), default;
    }

    50% {
        cursor: url(../images/cursors/default/frame_5.png), default;
    }

    62.5% {
        cursor: url(../images/cursors/default/frame_6.png), default;
    }

    75% {
        cursor: url(../images/cursors/default/frame_7.png), default;
    }

    87.5% {
        cursor: url(../images/cursors/default/frame_8.png), default;
    }
}

/*** Scrollbar & Default Cursor -- END ***/


/***Banner**/

.banner-message-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-image: url(../images/hero/UA-FLAG.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.banner-message-header-section {
    position: relative;
    padding: 5% 0 5%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: #f2e8d9;
    text-shadow: 5px 8px 5px rgb(0 0 0 / 95%);
}
.UA_to_ru {
    font-weight: 600;
    font-size: 3rem;
    color: red;
    opacity: 0;
}
.banner-message-section-wrap {
    position: relative;
    background-color: #2a282c;
    z-index: 1;
}
.banner-message-section {
    position: relative;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    font-size: 18px;
    color: #f2e8d9;
    z-index: 2;
}

.banner-message-section p a{
    text-decoration: underline;
}

.vid-overlay{
    position: absolute;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.video-wrap {
    position: absolute;
    z-index: 0;
    align-self: center;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    box-sizing: border-box;
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media only screen and (max-width: 600px) {
    .banner-message-section {
        font-size: 15px;
    }
    .d-none{
        display: none;
    }
}

/***Banner END**/

