@font-face {
	font-family: "Montserrat";
	src:url("montserrat_reg.ttf") format("woff");
}

a,
a:hover {
	text-decoration: none
}

body {
	line-height: 1
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

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

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

a {
	color: inherit;
	outline: 0
}

p {
    margin: 0 0 5px;
}

img {
	max-width: 100%;
	height: auto
}

* {
	box-sizing: border-box
}

/* general */
html,
body {
    height: 100%;
}

body {
    color: #fff;
    height: 100%;
    font: 500 20px/1.42 'Montserrat', sans-serif;
    min-height: 100%;
    background: linear-gradient(to right, #e1d9d8, #bfb5b2);
    position: relative;
}

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

.wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
}

@media (max-width: 600px) {
    body {
        font-size: 17px;
    }

    .wrap {
        padding: 0 30px;
    }
}

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

.video-item {
    box-shadow: 0 0 20px rgba(49, 33, 31, 0.5);
    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%;
    margin: 0 auto;
    max-width: 1920px;
    z-index: 0;
}

@media (min-width: 3000px) and (min-height: 2000px) {
    .video-item {
        max-width: none;
    }
}

/* typography */
.title {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding-bottom: 8px;
    margin: 0;
}

.txt {
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding-bottom: 30px;
}

@media (max-width: 600px) {
    .title {
        font-size: 28px;
        padding-bottom: 10px;
    }

    .txt {
        padding-bottom: 30px;
    }
}

/* btn */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 5px;
    width: 100%;
    max-width: 150px;
    height: 56px;
    border: none;
    outline: 0;
    cursor: pointer;
    transition: transform 0.2s linear;
    overflow: hidden;
    z-index: 1;
    position: relative;
    text-transform: uppercase;
    background: radial-gradient(ellipse at left 50% bottom 5%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 70%);
    box-shadow: inset 0 0 0 2px #4C43CD, 4px 38px 62px rgba(0, 0, 0, 0.5);
    border-radius: 100px;
}

.btn--active {
    background-color: #4C43CD;
    background-image: radial-gradient(ellipse at left 30% top 32%, rgba(255, 255, 255, 0.36) 10%, rgba(255, 255, 255, 0) 60%), linear-gradient(-10deg, rgba(0, 0, 0, 0.23), rgba(0, 0, 0, 0) 86%);
    box-shadow: inset -3px -4px 7px rgba(255, 255, 255, 0.2), 4px 38px 62px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.btn--big {
    max-width: 400px;
    margin: 0 auto;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 600px) {
    .btn-wrap {
        gap: 10px;
    }

    .btn {
        font-size: 18px;
    }
}

/* content */
.content {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.step {
    position: relative;
    display: none;
    width: 100%;
    background: #00000033;
    padding: 20px;
    border-radius: 50px;
}

.step.active {
    display: block;
}

/* progress */
.progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 0 12vh;
}

.progress__item {
    width: 16px;
    height: 16px;
    position: relative;
    background-color: #4C43CD;
    background-image: radial-gradient(ellipse at left 30% top 34%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.05) 60%);
    box-shadow: inset -3px -4px 7px rgba(255, 255, 255, 0.2), 4px 38px 62px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.progress__item.active {
    background-image: radial-gradient(ellipse at left 25% top 25%, rgba(255, 255, 255, 0.55) 10%, rgba(255, 255, 255, 0) 50%);
}

@media (max-width: 600px) {
    .progress {
        padding: 25px 0 7vh;
    }

    .progress__item {
        width: 12px;
        height: 12px;
    }
}

/* animation */
.step.active .main-title,
.step.active .title {
    -webkit-animation: showTop 0.4s linear both;
    animation: showTop 0.4s linear both;
}

.step.active .txt {
    -webkit-animation: showTop 0.4s 0.2s linear both;
    animation: showTop 0.4s 0.2s linear both;
}

.step.active .btn-wrap {
    -webkit-animation: showTop 0.4s 0.4s linear both;
    animation: showTop 0.4s 0.4s linear both;
}

@-webkit-keyframes showTop {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes showTop {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}