.main-block {
    position: relative;
    margin-top: 162px;
    margin-bottom: 100px;
    .content {
        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            .notification {
                padding: 10px 14px;
                border-radius: 32px;
                border: var(--border-3);
                background: var(--bg-5);
                box-shadow: var(--shadow-2);
                backdrop-filter: blur(10px);
                font-size: 15px;
                font-weight: 500;
                color: var(--text-2);
                display: flex;
                align-items: center;
                gap: 4px;
                img {
                    width: 14px;
                }
            }
            .hero {
                border: var(--border-4);
                background: var(--bg-10);
                padding: 10px;
                box-shadow: var(--shadow-3);
                backdrop-filter: blur(10px);
                border-radius: 20px;
                position: relative;
                max-width: 996px;
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                margin-bottom: 10px;
                h1 {
                    border-radius: 10px;
                    padding: 40px;
                    background: var(--bg-7);
                    color: var(--text-5);
                    font-weight: 800;
                    font-size: 44px;
                    text-align: center;
                    span {
                        color: var(--text-11);
                        font-weight: 800;
                        font-size: 44px;
                    }
                }
                p {
                    font-size: 20px;
                    color: var(--text-5);
                    max-width: 628px;
                    text-align: center;
                    margin-bottom: 20px;
                }
            }
            .buttons {
                display: flex;
                gap: 16px;
                button {
                    a {
                        &::before {
                            content: '\f00c';
                        }
                    }
                }
            }
        }
    }
}
.requirements {
    h2 {
        text-align: center;
        font-weight: 800;
        font-size: 32px;
        color: var(--text-23);
        margin-bottom: 12px;
    }
    p {
        text-align: center;
        margin-bottom: 40px;
    }
    .items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        .item {
            background: var(--bg-13);
            border-radius: 12px;
            padding: 20px;
            &:nth-child(1) {
                h3 {
                    &::before {
                        content: '\f00d';
                    }
                }
            }
            &:nth-child(2) {
                h3 {
                    &::before {
                        content: '\f00f';
                    }
                }
            }
            &:nth-child(3) {
                h3 {
                    &::before {
                        content: '\f010';
                    }
                }
            }
            &:nth-child(4) {
                h3 {
                    &::before {
                        content: '\f00e';
                    }
                }
            }
            &:nth-child(5) {
                h3 {
                    &::before {
                        content: '\f012';
                    }
                }
            }
            &:nth-child(6) {
                h3 {
                    &::before {
                        content: '\f011';
                    }
                }
            }
            h3 {
                font-weight: 700;
                font-size: 18px;
                color: var(--text-23);
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                gap: 10px;
                &::before {
                    font-weight: 400;
                    font-family: icon;
                    background: var(--bg-1);
                    border-radius: 10px;
                    width: 40px;
                    height: 40px;
                    font-size: 20px;
                    color: var(--text-11);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
            }
            p {
                text-align: unset;
                margin-bottom: 0;
            }
        }
    }
}
@media screen and (max-width: 768px) {
    .requirements {
        .items {
            grid-template-columns: 1fr;
        }
    }
}