section.adventage {
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: #f5f5f5;
    padding: 100px 0;

    .list {
        width: 1140px;
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;

        .element {
            width: 250px;
            height: 250px;

            padding: 25px 0;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 10px;

            p {
                width: 200px;
                text-align: center;
            }

            p.title {
                font-weight: bold;
            }

            img {
                width: 88px;
                height: 88px;
            }
        }
    }
}