[Tex/LaTex] reduce space at the top using maketitle

spacingtitles

I'm using XeLaTeX for my document and want to style my title page. The problem is, that \maketitle make a large top space, my text begins ca. 10 cm from the top. How can I reduce this space? In the moment it looks very crimped at the bottom.

Here's the explicit code:

\documentclass[a4paper,12pt,twoside,ngerman]{article}
\parindent0pt
\parskip6pt
\usepackage{fontspec}
\usepackage{lmodern}
\usepackage{microtype}

\setmainfont[Path = fonts/,
    BoldFont = akko-w01-bold.ttf,
    ItalicFont = akko-w01-italic.ttf,
    BoldItalicFont = akko-w01-bold-italic.ttf
 ]{akko-w01-regular.ttf}

\usepackage[ngerman]{babel} % Paket für die neue deutsche Rechtschreibung
\usepackage[...]{hyperref}
...
\title{Title}
\date{}
\author{}
\begin{document}
\input{./acronyms}
\input{./glosaries}
\maketitle
\thispagestyle{empty}
\begin{center}
\textbf{{\large Thesis}}\\
\ \\
von

Name Name\\
aus City

Matrikel-Nr.: Number

{\today}\\
\ \\
\ \\
\textbf{{\large University}}

University long

University subtitle

Vorgelegt bei

\textbf{Name of the prof}

\ \\
\textbf{{\large company}}

department

city
\end{center}


\begin{minipage}{.5\textwidth}
  \begin{flushleft}
    \includegraphics[width=0.9\linewidth]{images/university.png}
  \end{flushleft}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\begin{flushright}
    \includegraphics[width=0.9\linewidth]{images/company.png}
\end{flushright}
\end{minipage}

Best Answer

Include the \vspace command in the title command, i.e. change the line

\title{Title}

into

\title{\vspace{-2cm}Title}