One image of one entry is by far not enough to code a full style, so this can only be a start.
The following captures the main aspects of the style as I see it from the picture. If you need more help, please ask separate questions about each change you need to apply.
A good start for customising biblatex styles is Guidelines for customizing biblatex styles.
Special format for cite and Change Reference appearance with bold authoryear above entry are similar to your desired output, so with a similar approach we might want to try
\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[
backend=biber,
citestyle=ext-authoryear,
bibstyle=ext-authortitle,
sorting=nyt,
introcite=plain,
]{biblatex}
\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\renewcommand*{\introcitepunct}{\mkbibbold{\addcolon\space}}
\DeclareNameAlias{sortname}{family-given}
\DeclareDelimAlias[bib]{finalnamedelim}{multinamedelim}
\DeclareDelimFormat[bib]{nametitledelim}{\addcolon\space}
\renewcommand{\locdatedelim}{\addspace}
\renewbibmacro{pubinstorg+location+date}[1]{%
\usebibmacro{location+date}}
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{sigfridsson,worman,nussbaum,geer}
\printbibliography
\end{document}
