For my own use (consisting in putting a box before the first item !), I want to change the indentation of the first item, something like this file:

I obtained this result, by the ugly method in the .tex file what I add here, just to watch up the result I want to obtain:
\documentclass[12pt]{article}
\newcounter{ItemsCounter}
\begin{document}
\pagestyle{empty}
\noindent
\textbf{Hello world}
\begin{list}
{\bfseries{}\arabic{ItemsCounter}.~}
{
\usecounter{ItemsCounter}
\addtolength\leftmargin{14mm}
}
\item A\\ multilined\\ text
\end{list}
\begin{list}
{\bfseries{}\arabic{ItemsCounter}.~}
{
\usecounter{ItemsCounter}
\setcounter{ItemsCounter}{1}}
\item Item two
\item Item three
\end{list}
\end{document}
I want to change only the first item by something like the command \addtolength\leftmargin{14mm}, but it's accepted only in global option and not locally for one item. I used this acrobaty, using two successive list environments, and iterating the items, to obtain the suitable result, but I obviously want to use a more elegant method, for enumerate and itemize environments. How can I obtain the compilation here, so change the indentation only for the first item, with a useful method ? Thank you.

\color{white}– Faouzi Bellalouna Jan 15 '18 at 14:45leftmarginof an individual item without recurring to an additional list (nested or sequential)? – gusbrs Jan 15 '18 at 14:56\setenumerate[0]{font=\textcolor{Green}, align=left, labelwidth=-6pt, itemsep=10pt,leftmargin=*}and as I Thank, with this global command, the command\color{white}has no effect. The first item is in green and is under the box ! – Faouzi Bellalouna Jan 15 '18 at 15:59\color{white}command for more than an hour? – Jan 15 '18 at 16:01Indentedenumerate, using commands such\begin{list} ... \end{list}... Any idea ? – Faouzi Bellalouna Jan 15 '18 at 16:49