.sec1.introduction .wh1200.items1 {
    .item {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        img {
            object-fit: cover;
            margin: 40px auto 0;
        }
    }
}

.sec2.features .wh1200.items1 {
    flex-direction: row;
    gap: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 48px;

    .item {
        flex: 1;
        display: flex;
        flex-direction: column;
        background-color: white;
        height: 280px;
        color: white;
        border-radius: 16px;
        box-shadow: 0 4px 9px 3px rgba(0, 75, 225, 0.1);
        gap: 11px;

        .item-header {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 34px;
            padding: 32px 0 0 0;

            .item-img {
                width: 64px;
                height: 64px;
                flex-shrink: 0;
            }

            .item-title {
                font-size: 20px;
                line-height: 1.4;
                color: #004BE1;
            }
        }

        .item-content {
            width: 263px;
            margin: 0 auto;

            .item-description {
                color: #333;
                font-size: 16px;
                line-height: 1.4;
                text-align: center;
            }
        }
    }
}

.sec3.advantages .wh1200.items1 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    flex-direction: row;
    gap: 24px;

    .item {
        flex: 1;
        display: flex;
        flex-direction: column;
        background-color: white;
        height: 160px;
        gap: 23px;
        color: white;
        border-radius: 16px;
        box-shadow: 0 4px 9px 3px rgba(0, 75, 225, 0.1);

        .item-header {
            height: 77px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .item-content {
            padding: 0 10px;

            .item-description {
                color: #333;
                font-size: 20px;
                line-height: 1.4;
                text-align: center;
            }
        }
    }
}

.sec4.scenes .wh1200.items1 {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 48px;

    .item {
        flex: 1;
        display: flex;
        flex-direction: row-reverse;
        background-color: white;
        align-items: center;
        height: 544px;
        color: white;
        border-radius: 16px;
        box-shadow: 0 4px 9px 3px rgba(0, 75, 225, 0.1);

        .item-header {
            flex: 1;
            display: flex;
            align-items: start;
            justify-content: center;
            flex-direction: column;
            gap: 16px;

            .item-img {
                flex-shrink: 0;
                border-radius: 16px;
                /*box-shadow: 0 4px 9px 0 rgba(137, 169, 234, 0.15);*/

                /*img {*/
                /*    padding: 16px;*/
                /*}*/
            }

            .item-title {
                font-size: 20px;
                line-height: 1.4;
                color: #333333;
            }
        }

        .item-content {
            flex-shrink: 0;
            width: 513px;
            padding: 0 66px;
            display: flex;
            flex-direction: column;
            gap: 16px;

            .item-title {
                font-size: 16px;
                line-height: 1.4;
                color: #333333;

                &:before {
                    content: '';
                    position: relative;
                    left: -8px;
                    top: 2px;
                    display: inline-block;
                    width: 4px;
                    border-radius: 8px;
                    height: 16px;
                    background-color: #004BE1;
                }
            }

            .item-description {
                color: #666666;
                font-size: 16px;
                line-height: 1.6;
            }
        }
    }
}