main {
    gap: 50px;
}

.polirovka-far {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}

.flex-row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.polirovka-img {
    width: 100%;
    max-width: 300px;
    min-width: 250px;
    height: auto;
}

.inst-posts {
    display: flex;
    gap: 40px;
}

.inst-section {
    display: flex;
    flex-direction: column;
}


@media (min-width: 1px) and (max-width: 1000px) {
    main {
        gap: 20px;
    }

    .polirovka-far {
        width: 100%;
    }

    .flex-row {
        flex-direction: column;
    }

    .inst-posts {
        flex-direction: column;
    }
}