We first look for a non-trivial solution of the system
$\begin{align*}
&x \equiv 1 \mod 11\\
&x \equiv 1 \mod 5\\
&x \equiv 1 \mod 21
\end{align*}$
We have $5 \times 21 = 105$, coprime with $11$. Hence, we can find $a_1, b_1 \in \mathbb Z$ such that $11 a_1 + 105b_1 = 1$. Using your favourite algorithm (for example, one adapted from the Euclide GCD algorithm) you find
$11\times(-19) + 105 \times 2 = 1$.
We repeat this process for the other equations:
$11 \times 21 = 231$ and
$5 \times (-46) + 231 \times 1 = 1$
And for the final equation,
$11 \times 5 = 55$ and
$21 \times 21 + 55 \times (-8) = 1$
We have computed some interesting things, but what was the point of all that ? Well, if you look carefully at what we have just done, you notice that the first Bezout relation that we computed tells us that $105 \times 2 = 210 \equiv 1 \mod 11$. Moreover, because $105 = 5 \times 21$, we automatically have that $210 \equiv 0 \mod 21$ and $210 \equiv 0 \mod 5$.
Combining those results, we have:
$7 \times 210 \equiv 7 \mod 11$ and is equal to $0 \mod 5$ and $\mod 21$
$1 \times 231 \equiv 1 \mod 5$ and is equal to $0 \mod 11$ and $\mod 21$
$18 \times 55 \times (-8) \equiv 18 \mod 21$ and is equal to $0 \mod 5$ and $\mod 11$
We compute the sum of those three number:
$x = 7 \times 210 + 1 \times 231 + 18 \times 55 \times (-8) = -6219$
We can "get this number back" in a more appropriate range:
$-6219 \equiv -6219 + (6\times 1155) \equiv 711 \mod 1155$
Everything we have done shows that $711$ is a solution to your initial system.
TL;DR: followed the method from the wikipedia page of the CRT