/* .welcome-hiw {
    --Welcome-HIW-Content-Horizontal-Paddings: var(--Side-Padding-Large);
    display: flex;
    padding: 120px 0px;
    align-self: stretch;

    .welcome-hiw-content {
        display: flex;
        padding: 80px var(--Welcome-HIW-Content-Horizontal-Paddings);
        justify-content: center;
        align-items: flex-start;
        flex: 1 0 0;
        background-color: var(--Colors-Yellow-Light);

        .welcome-hiw-list {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            flex: 1 0 0;
            padding-inline-start: 0;
            margin-block: 0;

            .welcome-hiw-list-item {
                display: flex;
                align-items: center;
                gap: 16px;
                padding: 20px 40px;

                font-size: 20px;
                font-weight: 600;
                line-height: 28px;
                color: var(--Colors-Main-Dark);
                text-align: right;

                .welcome-hiw-list-marker {
                    width: 24px;
                    height: 24px;
                }
            }
        }

        .welcome-hiw-title {
            display: flex;
            justify-content: flex-end;
            font-size: 40px;
            font-weight: 700;
            line-height: 56px;
            color: var(--Colors-Main-Dark);
            width: 405px;
        }
    }

    @media screen and (max-width: 1440px) {
        --Welcome-HIW-Content-Horizontal-Paddings: 80px;
    }

    @media screen and (max-width: 1024px) {
        --Welcome-HIW-Content-Horizontal-Paddings: 40px;
    }

    @media screen and (max-width: 980px) {
        .welcome-hiw-content {
            flex-direction: column-reverse;
            gap: 32px;

            .welcome-hiw-title {
                width: auto;
                align-self: center;
            }

            .welcome-hiw-list {
                .welcome-hiw-list-item {
                    padding: 20px 80px;
                }
            }
        }
    }

    @media screen and (max-width: 660px) {
        .welcome-hiw-content {
            .welcome-hiw-list {
                .welcome-hiw-list-item {
                    padding: 20px 0;
                }
            }
        }
    }
}

html[dir='rtl'] {
    .welcome-hiw {
        .welcome-hiw-content {
            @media screen and (min-width: 980px) {
                flex-direction: row-reverse;
            }

            .welcome-hiw-list {
                align-items: flex-start;

                .welcome-hiw-list-item {
                    flex-direction: row-reverse;
                }
            }

            .welcome-hiw-title {
                @media screen and (min-width: 980px) {
                    justify-content: flex-start;
                }
            }
        }
    }
} */

.welcome-hiw {
    --Welcome-HIW-Content-Horizontal-Paddings: var(--Side-Padding-Large);
    display: flex;
    padding: 120px 0px;
    align-self: stretch;
}
.welcome-hiw .welcome-hiw-content {
    display: flex;
    padding: 80px var(--Welcome-HIW-Content-Horizontal-Paddings);
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
    background-color: var(--Colors-Yellow-Light);
}
.welcome-hiw .welcome-hiw-content .welcome-hiw-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex: 1 0 0;
    padding-inline-start: 0;
    margin-block: 0;
}
.welcome-hiw .welcome-hiw-content .welcome-hiw-list .welcome-hiw-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--Colors-Main-Dark);
    text-align: right;
}
.welcome-hiw .welcome-hiw-content .welcome-hiw-list .welcome-hiw-list-item .welcome-hiw-list-marker {
    width: 24px;
    height: 24px;
}
.welcome-hiw .welcome-hiw-content .welcome-hiw-title {
    display: flex;
    justify-content: flex-end;
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    color: var(--Colors-Main-Dark);
    width: 405px;
}
@media screen and (max-width: 1440px) {
    .welcome-hiw {
        --Welcome-HIW-Content-Horizontal-Paddings: 80px;
   }
}
@media screen and (max-width: 1024px) {
    .welcome-hiw {
        --Welcome-HIW-Content-Horizontal-Paddings: 40px;
   }
}
@media screen and (max-width: 980px) {
    .welcome-hiw .welcome-hiw-content {
        flex-direction: column-reverse;
        gap: 32px;
   }
    .welcome-hiw .welcome-hiw-content .welcome-hiw-title {
        width: auto;
        align-self: center;
   }
    .welcome-hiw .welcome-hiw-content .welcome-hiw-list .welcome-hiw-list-item {
        padding: 20px 80px;
   }
}
@media screen and (max-width: 660px) {
    .welcome-hiw .welcome-hiw-content .welcome-hiw-list .welcome-hiw-list-item {
        padding: 20px 0;
   }
}
@media screen and (min-width: 980px) {
    html[dir='rtl'] .welcome-hiw .welcome-hiw-content {
        flex-direction: row-reverse;
   }
}
html[dir='rtl'] .welcome-hiw .welcome-hiw-content .welcome-hiw-list {
    align-items: flex-start;
}
html[dir='rtl'] .welcome-hiw .welcome-hiw-content .welcome-hiw-list .welcome-hiw-list-item {
    flex-direction: row-reverse;
}
@media screen and (min-width: 980px) {
    html[dir='rtl'] .welcome-hiw .welcome-hiw-content .welcome-hiw-title {
        justify-content: flex-start;
   }
}
