:root{
        --gap_content: 4rem;
        --max-content: 1308px;
    }
    .decor_infoblock{
        display: flex;
        gap: var(--gap_content);
        align-items: center;
        justify-content: space-between;
        flex-direction: row;

        .text-content {
            flex: 0 0 calc((var(--max-content) - var(--gap_content)) / 2 - 20px);

            .text{
                font-weight: 400;
                font-size: 16px;
                line-height: 26px;
                color: var(--text-color);
            }
        }

        .image-content{
            flex: 0 0 calc((var(--max-content) - var(--gap_content)) / 2 + 20px);
        }

    }

    @media (max-width: 1380px) {
        :root{
            --gap_content: clamp(1rem, 2vw, 1.5rem);
        }
        .decor_infoblock{
            .text-content {
                flex: 0 0 43.4%;
            }
            .image-content{
                flex: 0 0 57.6%;
            }
        }
    }
    @media (max-width: 1260px) {
        .decor_infoblock{
            flex-direction: column;
        }
    }
    @media (max-width: 700px) {
        .decor_infoblock{
            .text-content br{
                display: none;
            }
            .text-content {
                flex: 0 0 50%;
            }
            .image-content{
                flex: 0 0 50%;

                img{
                    max-width: 100%;
                }
            }
        }
    }
    @media (max-width: 500px) {
        .decor_infoblock{
            .text-content br{
                display: none;
            }
        }
    }
