body {
    background-color: #16103D;
    font-family: "Poppins", serif;
    color: #fff;
    position: relative;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 32px;
}

.logo img {
    width: 180px;
    height: 52px;
}

main {
    width: 100%;
    min-height: 858px;
    padding-top: 148px;
    background: url("../img/desc.webp") top / 1440px no-repeat;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.title {
    font-weight: 600;
    font-style: italic;
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 32px;
}

.title b {
    font-weight: 800;
}

.yellow {
    color: #FFDC41;
}

.subtitle {
    font-weight: 500;
    font-style: italic;
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 52px;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: -o-linear-gradient(179.03deg, #E3BA08 0%, #FFDC41 47.5%, #E3BA08 100%);
    background: linear-gradient(270.97deg, #E3BA08 0%, #FFDC41 47.5%, #E3BA08 100%);
    width: 303px;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #FFE46D;
    -webkit-box-shadow: 0px 0px 50px 0px #C0A00D;
            box-shadow: 0px 0px 50px 0px #C0A00D;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #1E1E28;
    margin-bottom: 128px;
}

.steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background: #372873;
    height: 92px;
    gap: 20px;
    border-radius: 0 12px 12px 0;
    padding-top: 20px;
    padding-right: 32px;
    padding-bottom: 20px;
    padding-left: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 178px;
    position: relative;
}

.info-steps {
    position: absolute;
    top: -56px;
    left: 0;
    background-color: #6331A9;
    height: 56px;
    width: 472px;
    border-radius: 12px 12px 0 0;
    padding: 12px 24px;
}

.info-steps span {
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
}

.step-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: 20%;
}

.step-content-large {
    width: 25%;
}

.step-number {
    color: #1CE8AC;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40px;
    height: 52px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.step-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    background: #372873;
    border-radius: 12px 12px 0 0;
    width: 700px;
    height: 100px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

footer span {
    font-size: 16px;
    line-height: 24px;
}


.scroll-wrapper {
    display: none;
    width: 50px;
    height: 61px;
    margin-left: 229px;
}

.scroll-wrapper span {
    font-size: 14px;
    font-weight: 500;
}

.scroll-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
    gap: 1px;
}

.arrow img {
    width: 100%;
}

.arrow {
    width: 100%;
    height: 10px;
    animation: animate 2s infinite;
    margin: auto;
}

.arrow:nth-child(1) {
    animation-delay: 0s;
}

.arrow:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(5px);
    }
}

@media (max-width: 900px) {
    header {
        text-align: center;
    }

    main {
        background: url("../img/mob.webp") center -40px / 100vw no-repeat;
        min-height: 672px;
        padding: 104px 0 212px;
    }

    .logo img {
        width: 152px;
        height: 44px;
    }

    .title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
        margin-bottom: 320px;
    }

    .subtitle {
        margin: 0 auto 52px;
        max-width: 320px;
    }

    .subtitle,
    .subtitle span {
        font-size: 24px;
        line-height: 30px;
        text-align: center;
    }

    .btn {
        margin: 0 auto;
    }

    .steps {
        width: calc(100% - 16px);
        margin: 44px auto 0;
        height: 494px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 0;
        border-radius: 12px;
    }

    .info-steps {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 242px;
        height: 82px;
        top: -82px;
    }

    .info-steps span {
        font-size: 20px;
        line-height: 28px;
    }

    .step-content {
        width: 296px;
        margin: 0 auto;
    }

    .step-arrow {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    .step-text br {
        display: none;
    }
    
    .scroll-wrapper {
        display: block;
        margin: 40px auto 80px;
    }

    footer {
        width: 100%;
        height: 140px;
        padding: 24px;
    }

    footer span {
        font-size: 16px;
        line-height: 24px;
    }
}