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

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

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

main {
    width: 100%;
    min-height: 858px;
    padding-top: 148px;
    background: url("../img/Bg_2.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: 40px;
}

.title b {
    font-weight: 800;
}

.yellow {
    color: #FFDC41;
}

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

.subtitle span {
    font-size: 44px;
}

.subtitle .yellow {
    font-weight: 700;
}

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

.steps {
    display: flex;
    width: 100%;
    background: #372873;
    height: 92px;
    gap: 20px;
    border-radius: 12px;
    padding-top: 20px;
    padding-right: 32px;
    padding-bottom: 20px;
    padding-left: 32px;
    align-items: center;
    justify-content: center;
    margin-bottom: 166px;
}

.step-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.step-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

footer {
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0;
}

.footer-list {
    display: flex;
    margin: 0 auto;
    align-items: center;
    max-width: 600px;
    justify-content: space-between;
}

@media (max-width: 900px) {
    main {
        background: url("../img/Bg_mob.webp") top/100vw no-repeat;
        min-height: 647px;
        padding: 120px 0 116px;
    }

    .title {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
        margin-bottom: 270px;
    }

    .subtitle {
        margin-bottom: 36px;
    }

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

    .btn {
        margin: 0 auto;
    }

    .steps {
        width: calc(100% - 16px);
        margin: 44px auto 0;
        height: 494px;
        flex-direction: column;
        padding: 0;
    }

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

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

    footer {
        bottom: 52px;
    }

    .footer-list {
        width: 279px;
    }

    .footer-list img {
        width: 60px;
        height: 24px;
    }
}