.pattern-text-section {
    padding-top: clamp(3.38rem, 1rem + 7.7vw, 5.06rem);
    padding-bottom: 5.06rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.pattern-text-section::before,
.pattern-text-section::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    width: 33%;
    height: 40%;
    background-image: url('../../decorations/bottom-left-rect.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
}
.pattern-text-section::before {
    left: 0;
}
.pattern-text-section::after {
    right: 0;
    transform: scaleX(-1);
}
@media (width <= 576px) {
    .pattern-text-section::before,
    .pattern-text-section::after {
        width: 42%;
        bottom: -15%;
    }
    .pattern-text-section {
        min-height: 385px !important;
    }
}