@import url(https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap);

* {
    box-sizing: border-box
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
b-footer,
details,
figcaption,
figure,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

p {
    margin: 0
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

input[type=checkbox] {
    -webkit-appearance: checkbox
}

textarea {
    resize: none
}

a,
button {
    cursor: pointer;
    background: 0 0;
    outline: 0
}

a {
    color: inherit;
    text-decoration: none;
    display: block;
}

button,
input[type=submit] {
    cursor: pointer
}

img {
    display: inline-block;
    border: none;
    max-width: 100%;
    height: auto;
}

a:hover {
    text-decoration: none
}

strong {
    font-weight: 700
}

html {
    min-height: 100%;
    height: 100%;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    height: 100%;
}

strong {
    font-weight: 700;
}

.step-button {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Oswald', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 68px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(268deg, #FFD902 10%, #FF6A00 80%);
    border: none;
    border-radius: 40px;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.016em;
    line-height: 1.2;
    color: #000;
    position: relative;
    z-index: 0;
}

.step-button::before {
    background: linear-gradient(262deg, #FFD902 30%, #FF6A00 150%);
    border-radius: 40px;
    content: '';
    display: block;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    transition: opacity 0.3s ease-out;
    z-index: -1;
}

.step-button:hover::before {
    opacity: 1;
}

.step-button::after {
    background: linear-gradient(262deg, #FFD902 5%, #FF6A00 80%);
    border-radius: 40px;
    content: '';
    display: block;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    opacity: 0.7;
    top: 60%;
    left: 15px;
    right: 15px;
    bottom: -35%;
    position: absolute;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
    z-index: 1;
}

.step-button:hover::after {
    background: linear-gradient(268deg, #FFD902 10%, #FFD902 80%);
}

.step-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    max-width: 500px;
}

.step-buttons-wrap .step-button {
    word-break: break-word;
    margin: 0 auto;
    width: calc(50% - 8px);
}

.step-buttons-wrap .step-button-wide {
    width: 100%;
}

.step-button-wide:not(:last-child)::after {
    display: none;
}

.step-button.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
}

/* Video */

.video-block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.video-block::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5));
    background-color: rgba(0, 0, 0, 0.2);
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-block::after {
    background-image: url(../images/spiderweb-1.png), url(../images/spiderweb-2.png), url(../images/spiderweb-3.png), url(../images/spiderweb-4.png), url(../images/bats-1.svg), url(../images/bats-2.svg);
    background-size: auto 30%, auto 32.5%, auto 43.5%, auto 29%, auto 27.5%, auto 23%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%, 3.5% 19.5%, 97.75% 88%;
    background-repeat: no-repeat;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.video-bg,
.video-item {
    display: block;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    height: 100vh;
    height: 100dvh;
    width: 100%;
}

.video-bg {
    -webkit-filter: blur(15px);
    filter: blur(15px);
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: -1;
}

.video-item {
    margin: 0 auto;
    max-width: 1920px;
    z-index: 0;
}

@media (max-width: 767px) {
    .video-block::after {
        background-image: url(../images/spiderweb-1-mob.png), url(../images/spiderweb-2-mob.png), url(../images/spiderweb-3-mob.png), url(../images/spiderweb-4-mob.png), url(../images/bats-mob.svg);
        background-size: auto 9%, auto 19%, auto 26%, auto 15%, auto 5%;
        background-position: 0 0, 100% 0, 100% 100%, 0 100%, 43% 97%;
    }
}

/* Header */

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    position: relative;
    z-index: 1;
}

.header .logo {
    display: block;
}

/* Steps */

.main-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
    max-height: 900px;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.steps-wrap {
    width: 100%;
    padding: 30px 15px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
    position: relative;
    z-index: 0;
}

.steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 0 auto;
}

.step {
    -webkit-animation: fade-in 0.4s linear .5s both;
    animation: fade-in 0.4s linear .5s both;
    display: none;
    text-align: center;
    padding: 23px 23px 28px;
    width: 100%;
}

.step.active {
    display: block;
}

.text-content {
    margin: 0 auto;
    max-width: 620px;
}

.step-title {
    font-size: 45px;
    margin-bottom: 15px;
    text-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.step p {
    margin-bottom: 35px;
    text-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.loader {
    margin: 0 auto 22px;
    width: 90px;
    position: relative;
}

.loader::before {
    -webkit-animation: rotating 1s linear infinite both;
    animation: rotating 1s linear infinite both;
    background: url(../images/loader.svg) no-repeat center;
    background-size: contain;
    content: '';
    display: block;
    top: 15%;
    left: 5%;
    right: 5%;
    bottom: -15%;
    position: absolute;
    z-index: -1;
    -webkit-filter: blur(10px);
    filter: blur(10px);
}

.loader img {
    -webkit-animation: rotating 1s linear infinite both;
    animation: rotating 1s linear infinite both;
    display: block;
}

.tiles {
    display: flex;
    gap: 14px;
    margin: 0 auto 32px;
}

.tile {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}

.tile::after {
    background: linear-gradient(268deg, #FFD902 10%, #FF6A00 80%);
    border-radius: 28px;
    display: block;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.tile img {
    border-radius: 28px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    padding: 2px;
    transition: padding 0.1s ease-out;
}

.tile.selected img {
    padding: 10px;
}

.mb30 {
    margin-bottom: 30px!important;
}

@media (max-width: 767px) {
    body {
        font-size: 22px;
        line-height: 1.1;
    }

    .header {
        padding: 12px 30px;
    }

    .header .logo {
        width: 230px;
    }

    .step-button {
        font-size: 18px;
        line-height: 1.1;
        min-height: 57px;
    }

    .step-buttons-wrap {
        gap: 8px;
        max-width: 420px;
    }

    .step-buttons-wrap .step-button {
        width: calc(50% - 4px);
    }

    .step-buttons-wrap .step-button-wide {
        width: 100%;
    }

    .text-content {
        max-width: 520px;
    }

    .step-title {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .step p {
        margin-bottom: 25px;
    }

    .loader {
        width: 70px;
    }

    .tiles {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
        max-width: 420px;
    }

    .tile {
        width: calc(50% - 4px);
    }

    .tile.selected img {
        padding: 8px;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes rotating {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes rotating {
    0% {
        transform: rotate(-360deg);
    }

    100% {
        transform: rotate(0);
    }
}