/* .welcome-about {
    --Welcome-About-Horizontal-Padding: 240px;
    --Welcome-About-Vertical-Padding: 120px;
    display: flex;
    padding: var(--Welcome-About-Vertical-Padding) var(--Welcome-About-Horizontal-Padding);
    justify-content: center;
    align-items: center;
    gap: 80px;
    align-self: stretch;
    position: relative;
    flex-direction: row-reverse;
    overflow: hidden;

    .about-text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        flex: 1 0 0;

        .about-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 56px;
            min-width: 442px;
        }

        .about-text {
            font-size: 24px;
            font-weight: 400;
            line-height: 32px;

            br {
                display: block;
                content: '';
                margin: 0 0 40px;

                @media screen and (max-width: 560px) {
                    margin: 0 0 32px;
                }
            }
        }
    }

    .about-images {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 610px;
        height: 638px;

        .about-single-image {
            width: 574px;
            height: 670px;
        }

        .about-main-image {
            width: 380px;
            height: 478px;
            flex-shrink: 0;
            position: absolute;
            bottom: 0;
            right: 0;
        }

        .about-secondary-image {
            width: 380px;
            height: 478px;
            flex-shrink: 0;
            position: absolute;
            top: 0;
            left: 0;
        }
    }

    @media screen and (max-width: 1800px) {
        --Welcome-About-Horizontal-Padding: 200px;
    }

    @media screen and (max-width: 1680px) {
        --Welcome-About-Horizontal-Padding: 160px;
    }

    @media screen and (max-width: 1560px) {
        --Welcome-About-Horizontal-Padding: 120px;
    }

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

    @media screen and (max-width: 1280px) {
        .about-images {
            width: 586px;

            .about-main-image {
                right: -25px;
            }
        }
    }

    @media screen and (max-width: 1140px) {
        margin-left: 60px;
        .about-images {
            width: 436px;
            height: 515px;
            flex-shrink: 0;

            .about-single-image {
                position: relative;
                left: -80px;
            }

            .about-secondary-image, .about-main-image {
                width: 306px;
                height: 386px;
            }
        }
    }

    @media screen and (max-width: 980px) {
        --Welcome-About-Horizontal-Padding: 40px;
        --Welcome-About-Vertical-Padding: 80px;
        flex-direction: column;
        margin-left: 0;

        .about-images {
            .about-single-image {
                position: static;
            }

            &:has(:only-child) {
                width: auto;
                height: auto;
            }
        }

        .about-text-block {
            text-align: center;
            align-items: center;

            .about-title {
                min-width: unset;
            }
        }
    }

    @media screen and (max-width: 640px) {
        .about-images {
            .about-single-image {
                width: 335px;
                height: 390px;
            }
        }
    }

    @media screen and (max-width: 560px) {
        .about-images {
            width: 317px;
            height: 331px;

            .about-secondary-image {
                width: 176px;
                height: 225px;
            }

            .about-main-image {
                width: 196px;
                height: 247px;
                right: 0;
            }
        }
    }

    @media screen and (max-width: 500px) {
        --Welcome-About-Horizontal-Padding: 20px;
        --Welcome-About-Vertical-Padding: 64px;
        gap: 40px;
    }
}

html[dir="rtl"] {
    .welcome-about {
        .about-images {
            .about-single-image {
                left: unset;
                right: -80px;
            }
        }
    }
} */

.welcome-about {
    --Welcome-About-Horizontal-Padding: 240px;
    --Welcome-About-Vertical-Padding: 120px;
    display: flex;
    padding: var(--Welcome-About-Vertical-Padding) var(--Welcome-About-Horizontal-Padding);
    justify-content: center;
    align-items: center;
    gap: 80px;
    align-self: stretch;
    position: relative;
    flex-direction: row-reverse;
    overflow: hidden;
}
.welcome-about .about-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex: 1 0 0;
}
.welcome-about .about-text-block .about-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    min-width: 442px;
}
.welcome-about .about-text-block .about-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}
.welcome-about .about-text-block .about-text br {
    display: block;
    content: '';
    margin: 0 0 40px;
}
@media screen and (max-width: 560px) {
    .welcome-about .about-text-block .about-text br {
        margin: 0 0 32px;
   }
}
.welcome-about .about-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 610px;
    height: 638px;
}
.welcome-about .about-images .about-single-image {
    width: 574px;
    height: 670px;
}
.welcome-about .about-images .about-main-image {
    width: 380px;
    height: 478px;
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
.welcome-about .about-images .about-secondary-image {
    width: 380px;
    height: 478px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width: 1800px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 200px;
   }
}
@media screen and (max-width: 1680px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 160px;
   }
}
@media screen and (max-width: 1560px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 120px;
   }
}
@media screen and (max-width: 1440px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 80px;
   }
}
@media screen and (max-width: 1280px) {
    .welcome-about .about-images {
        width: 586px;
   }
    .welcome-about .about-images .about-main-image {
        right: -25px;
   }
}
@media screen and (max-width: 1140px) {
    .welcome-about {
        margin-left: 60px;
   }
    .welcome-about .about-images {
        width: 436px;
        height: 515px;
        flex-shrink: 0;
   }
    .welcome-about .about-images .about-single-image {
        position: relative;
        left: -80px;
   }
    .welcome-about .about-images .about-secondary-image, .welcome-about .about-images .about-main-image {
        width: 306px;
        height: 386px;
   }
}
@media screen and (max-width: 980px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 40px;
        --Welcome-About-Vertical-Padding: 80px;
        flex-direction: column;
        margin-left: 0;
   }
    .welcome-about .about-images .about-single-image {
        position: static;
   }
    .welcome-about .about-images:has(:only-child) {
        width: auto;
        height: auto;
   }
    .welcome-about .about-text-block {
        text-align: center;
        align-items: center;
   }
    .welcome-about .about-text-block .about-title {
        min-width: unset;
   }
}
@media screen and (max-width: 640px) {
    .welcome-about .about-images .about-single-image {
        width: 335px;
        height: 390px;
   }
}
@media screen and (max-width: 560px) {
    .welcome-about .about-images {
        width: 317px;
        height: 331px;
   }
    .welcome-about .about-images .about-secondary-image {
        width: 176px;
        height: 225px;
   }
    .welcome-about .about-images .about-main-image {
        width: 196px;
        height: 247px;
        right: 0;
   }
}
@media screen and (max-width: 500px) {
    .welcome-about {
        --Welcome-About-Horizontal-Padding: 20px;
        --Welcome-About-Vertical-Padding: 64px;
        gap: 40px;
   }
}
html[dir="rtl"] .welcome-about .about-images .about-single-image {
    left: unset;
    right: -80px;
}
