.welcome-suitable {
    --Welcome-Suitable-Horisontal-Padding: var(--Side-Padding-Large);
    --Welcome-Suitable-Vertical-Padding: 120px;
    --Welcome-Suitable-List-Gap: 32px;
    display: flex;
    padding: var(--Welcome-Suitable-Vertical-Padding) var(--Welcome-Suitable-Horisontal-Padding);
    flex-direction: column;
    align-items: center;
    gap: 56px;
    align-self: stretch;

    .welcome-suitable-title {
        font-size: 40px;
        font-weight: 700;
        line-height: 56px;
        color: var(--Colors-Main-Dark);
        flex: 1 0 0;
        align-self: stretch;
    }

    .welcome-suitable-items {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: var(--Welcome-Suitable-List-Gap);
        align-self: stretch;

        ul {
            padding: 0;
        }

        .suitable-item {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 40px;
            height: 266px;

            .suitable-item-head {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                align-self: stretch;
                flex-direction: row-reverse;

                .suitable-item-img {
                    width: 84px;
                    height: 84px;
                }

                .suitable-item-title {
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 24px;
                    color: #7A7887;
                    flex: 1 0 0;
                }
            }

            .suitable-item-description {
                font-size: 20px;
                font-weight: 600;
                line-height: 28px;
                color: var(--Colors-Main-Dark);
                align-self: stretch;
            }
        }

        .large-items-list {
            display: flex;
            gap: var(--Welcome-Suitable-List-Gap);
            align-self: stretch;
            flex-direction: row-reverse;

            .suitable-item {
                flex: 1 0 0;
                background-color: var(--Local-Colors-Light-Grey);
                
                &:nth-child(2n) {
                    background-color: #FFFBEC;
                }

                &:nth-child(3n) {
                    background-color: #FCF2F0;
                }
            }
        }

        .small-items-list {
            display: flex;
            flex-direction: row-reverse;
            gap: var(--Welcome-Suitable-List-Gap);
            align-self: stretch;

            .suitable-item {
                background-color: var(--Colors-Violet-50);

                &:first-child {
                    background-color: var(--Local-Colors-Light-Grey);


                    @media screen and (max-width: 1440px) {
                        width: 843px;
                    }

                    @media screen and (max-width: 1280px) {
                        flex: 1 0 0;
                        width: auto;
                    }
                }

                &:last-child {
                    width: 458px;

                    @media screen and (max-width: 1440px) {
                        max-width: 25%;
                    }

                    @media screen and (max-width: 1280px) {
                        width: 352px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 1440px) {
        --Welcome-Suitable-Horisontal-Padding: 80px;
    }

    @media screen and (max-width: 1140px) {
        --Welcome-Suitable-Horisontal-Padding: 40px;
    }

    @media screen and (max-width: 1024px) {
        --Welcome-Suitable-List-Gap: 16px;

        .welcome-suitable-items {

            .suitable-item {
                padding: 24px;

                .suitable-item-head {
                    .suitable-item-img {
                        width: 48px;
                        height: 48px;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 900px) {
        .welcome-suitable-items {

            .large-items-list {
                flex-wrap: wrap;

                .suitable-item {

                    &:last-child {
                        min-width: 375px;
                    }
                }
            }

            .small-items-list {

                .suitable-item {
                    flex: 1 0 0;

                    &:last-child {
                        max-width: unset;
                        width: unset;
                    }
                    
                }
            }
        }
    }

    @media screen and (max-width: 580px) {
        --Welcome-Suitable-Horisontal-Padding: 20px;
        --Welcome-Suitable-Vertical-Padding: 64px;

        .welcome-suitable-title {
            text-align: center;
        }

        .welcome-suitable-items {
            .large-items-list, .small-items-list {
                flex-direction: column;

                .suitable-item {
                    flex: auto;
                    
                    &:last-child {
                        min-width: unset;
                    }

                    &:first-child {
                        flex: auto;
                    }
                }
            }
        }
    }
}