[Tex/LaTex] Reduce blank space in moderncv template

moderncvtemplates

I would like to know how I can reduce the blank space after the title in the moderncv latex template, look at the picture below :

enter image description here

EDIT :

\documentclass[10pt,a4paper]{moderncv}
\moderncvtheme[blue]{classic}                
\usepackage[utf8]{inputenc}
\usepackage[top=0.3cm, bottom=1.0cm, left=1.2cm, right=1.2cm]{geometry}
% Largeur de la colonne pour les dates
\setlength{\hintscolumnwidth}{3.5cm}
\renewcommand*{\namefont}{\fontsize{20}{20}\mdseries\upshape}

\address{X}{X}{X}    
\email{X}                      
%\homepage{X}
\mobile{X} 
\usepackage{xpatch}
\xpatchcmd{\makecvhead}{%
\usebox{\makecvheadnamebox}\fi%
\\[2.5em]%
}{%
\usebox{\makecvheadnamebox}\fi%
\\[1em]%
}{}{}
%% add the following additionally
\xpatchcmd{\makecvhead}{\quotestyle{\@quote}\end{minipage}\\[2.5em]}{%
\quotestyle{\@quote}\end{minipage}\\[1em]}{}{}
\extrainfo{X}
\firstname{X}
\familyname{X} 
\title{X} 

\begin{document}
\maketitle

Best Answer

If you don't use quote:

\documentclass{moderncv}
\moderncvstyle{classic}
\usepackage[scale=0.8]{geometry}
\name{The name}{}
\title{Some title}
\address{address\\address\\address\\}
\phone[mobile]{123456789}
%\quote{some quote here}
\usepackage{xpatch}
\xpatchcmd{\makecvhead}{%
  \usebox{\makecvheadnamebox}\fi%
  \\[2.5em]%
  }{%
  \usebox{\makecvheadnamebox}\fi%
  \\[1em]%                   %%% change 1em to anything you like
  }{}{}
\begin{document}
\maketitle
\section{Formations}

\end{document}

If you use quote:

\documentclass{moderncv}
\moderncvstyle{classic}
\usepackage[scale=0.8]{geometry}
\name{The name}{}
\title{Some title}
\address{address\\address\\address\\}
\phone[mobile]{123456789}
\quote{some quote here}
\usepackage{xpatch}
\xpatchcmd{\makecvhead}{%
  \usebox{\makecvheadnamebox}\fi%
  \\[2.5em]%
  }{%
  \usebox{\makecvheadnamebox}\fi%
  \\[1em]%
  }{}{}
%% add the following additionally
\xpatchcmd{\makecvhead}{\quotestyle{\@quote}\end{minipage}\\[2.5em]}{%
  \quotestyle{\@quote}\end{minipage}\\[1em]}{}{}
\begin{document}
\maketitle
\section{Formations}

\end{document}