article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
a,
input,
button {
  touch-action: manipulation;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* ========== responsive breakpoint =========== */
/*  ============= retina ============== */
/**
  * default less template startingpoint
  * author: Frank Fuchs BrainSellers Mediendesign
  * @brainseller http://frankfuchs.net
**/
/* ------------------------------------- *\
          mixins (CSS3 Helpers)
\* ------------------------------------- */
/* ======== rounded corners ======== */
/* ======== box shadow ======== */
/* ======== transition ======== */
/* ======== transform ======== */
/* ======== top-to-bottom gradient ======== */
/* ======== left-to-right gradient ======== */
/* ======== top-to-bottom 3 stop gradient ======== */
/* ======== left-to-right 3 stop gradient ======== */
/* ======== top-to-bottom 4 stop gradient ======== */
/* ======== left-to-right 4 stop gradient ======== */
/* ------------------------------------- *\
            variables
\* ------------------------------------- */
/* ======== colors ======== */
/* ======== sizes ======== */
/* ------------------------------------- *\
            CSS document
            Basics and typography
\* ------------------------------------- */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: "Fira Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
  background-color: #fefefe;
  color: #16192D;
}
html,
body {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #1F39E0;
}
a:hover {
  color: #C4216B;
}
strong {
  font-weight: 700;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-weight: 400;
  line-height: 1.25em;
  color: #C4216B;
}
.condensed {
  font-family: "Fira Sans Condensed", sans-serif;
}
.large {
  font-size: 1.125em;
}
/* ---------------------------------------- */
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
}
.mainContainer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.mainContainer > .mainElement {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.mainContainer > #mainContent {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.navList {
  list-style: none;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.navList li a {
  text-decoration: none;
  text-transform: uppercase;
}
/* !-------- Header -------------- */
#mainHeader {
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 2em 0 0;
  background-image: url(../images/headerBackground@2x.png);
  background-repeat: no-repeat;
  background-position-x: right;
  background-size: auto 19px;
}
@media screen and (min-width: 910px) {
  #mainHeader {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    -webkit-align-items: center;
            align-items: center;
  }
}
.siteTitle {
  /*
  text-align: right;
  direction: rtl;
  overflow: hidden;
*/
  width: 393px;
  max-width: 100%;
  -webkit-align-self: flex-end;
          align-self: flex-end;
}
.siteTitle a {
  text-indent: -50000px;
  display: inline-block;
  width: 100%;
  max-width: 393px;
  height: 129px;
  background-image: url(../images/dc_logo@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 910px) {
  .mainNav {
    -webkit-flex-grow: 1;
            flex-grow: 1;
    margin-right: 4em;
    max-width: 40%;
  }
}
.mainNav a.navListLink {
  font-size: 1.25em;
  font-family: "Fira Sans Condensed", sans-serif;
}
.mainNav .active a.navListLink {
  color: #C4216B;
}
/* !---------- Footer ----------- */
#mainFooter {
  background-color: #16192D;
}
.footDivider {
  width: 90%;
  max-width: 960px;
  margin: -20px auto 0;
  border: none;
  height: 35px;
  min-height: 35px;
  background-image: url(../images/bar-central@2x.png);
  background-repeat: no-repeat;
  background-size: 299px;
  background-position: right top;
}
.footContent {
  width: 90%;
  max-width: 960px;
  margin: auto;
  background-image: url(../images/footerBackground@2x.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 37px;
  padding: 3em 0;
  color: #fefefe;
}
@media screen and (min-width: 910px) {
  .footContent {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
.footLogo {
  margin: 0 0 2em;
}
.phone {
  font-size: 1.875em;
  font-weight: bold;
}
.mail {
  font-size: 1.5em;
}
.footContact {
  text-align: right;
}
.footNavList {
  display: block;
  margin: 4em 0;
  text-align: right;
}
.footNavList .navListItem {
  margin: 2em 0;
}
.footNavList a.navListLink {
  font-size: 1.25em;
  color: #fefefe;
}
.footNavList a.navListLink:hover {
  color: #C4216B;
}
.footNavList .active > a.navListLink {
  color: #C4216B;
}
.footNavList .subNavList {
  padding-left: 1em;
  list-style: none;
}
.footNavList .subNavList .navListItem {
  margin: 1em 0;
}
.footNavList .subNavList a.navListLink {
  font-size: 1em;
}
@media screen and (min-width: 550px) {
  .footNavList {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (min-width: 910px) {
  .footNavList {
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 1400px) {
  .footNavList {
    display: -webkit-flex;
    display: flex;
  }
  .footNavList .navListItem {
    margin-right: 2.5em;
  }
}
/* !------------ Content --------- */
.keyImage {
  padding: 0;
  margin: 0;
  position: relative;
}
.keyImage img {
  width: 100%;
}
#mainContent {
  width: 90%;
  max-width: 960px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 0 6em;
}
.keyArticle {
  margin-top: 0;
}
.keyArticle .articleTitle {
  margin-top: 1rem;
}
.keyTitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 2rem;
  color: white;
  text-shadow: 0px 3px 23px black;
}
.keyTitle span {
  display: block;
  width: 90%;
  max-width: 960px;
  margin: auto;
}
@media screen and (min-width: 550px) {
  .keyTitle {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 910px) {
  .keyTitle {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .keyTitle {
    font-size: 3rem;
  }
}
.columns {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 640px;
}
.columnLeft {
  margin-right: 2em;
}
.column-left {
  width: 100%;
  max-width: 393px;
  text-align: right;
}
.column-right {
  width: 100%;
  max-width: 393px;
  text-align: right;
}
@media screen and (min-width: 550px) {
  .column-right {
    padding-left: 2em;
  }
}
@media screen and (min-width: 910px) {
  .column-right {
    text-align: left;
  }
}
.contentArticle {
  width: 100%;
}
/* !----- Teaser ----- */
.teaserArticle {
  width: 100%;
}
.teaserList {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 550px) {
  .teaserList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 1400px) {
  .teaserList {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
.teaserTitle {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  width: 150px;
  text-align: center;
}
.teaserTitle a {
  font-size: 1rem;
  text-decoration: none;
}
.teaserTitle a:hover {
  text-decoration: underline;
}
.teaserImage {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.teaserImage:hover {
  border: 3px solid #C4216B;
}
/* ! ---- Testimonials ------ */
.testimonialList {
  padding: 0;
  list-style: none;
  display: grid;
  grid-gap: 1rem;
}
.testimonialList li {
  margin: 1em 0;
  border: 1px solid #ccc;
  border-radius: 0.2rem;
  -webkit-align-self: flex-start;
          align-self: flex-start;
  padding: 0;
}
@media screen and (min-width: 910px) {
  .testimonialList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ranking {
  text-indent: -99999px;
  display: block;
  width: 100px;
  height: 17px;
  background: url(../images/stars@2x.png);
  background-size: 100%;
}
.ranking5 {
  background-position-y: 17px;
}
.testimonialBody {
  font-size: 0.825rem;
  font-style: italic;
  background-color: #EEEFF7;
  border-radius: 0.2rem 0.2rem 0 0;
  padding: 0.25rem 1rem;
  margin-top: 0;
}
.author {
  font-size: 0.825rem;
  padding: 0.2rem 1rem;
  margin: 0;
}
.author a {
  text-decoration: none;
}
/* ------------------------------------------------------------ *\
   ------------------- ELEMENTS -------------------------------
\* ------------------------------------------------------------ */
article {
  margin: 2em 0;
}
.articleTitle {
  margin: 0 0 2em;
}
.subTitle {
  font-style: italic;
}
.serviceKeyImage {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 550px) {
  .serviceKeyImage {
    width: 50%;
    max-width: 500px;
    float: right;
    margin: 0 0 1em 2em;
  }
}
.readon a {
  font-size: 0.875em;
  background: url(../images/readon-blue@2x.png) no-repeat left center;
  background-size: 18px;
  padding-left: 24px;
  text-decoration: none;
}
.readon a:hover {
  background-image: url(../images/readon-red@2x.png);
}
.button {
  border-radius: 0.3em;
  border: 1px solid #1F39E0;
  padding: 0.3em 0.6em;
}
.button:hover {
  background-color: #1F39E0;
  border-color: #C4216B;
  color: #fefefe;
}
/* !--------- Kontakt ----------- */
#nbgMap,
#eftMap {
  width: 100%;
  height: 550px;
  border-radius: 0.3em;
  border: 1px solid #ccc;
}
.mailFormFieldset {
  border-radius: 0.2em;
  border: 1px solid #ccc;
  background-color: #EEEFF7;
  padding: 0.5em 1.5em;
}
.mailFormFieldset label {
  display: inline-block;
  width: 30%;
}
.textField {
  width: 100%;
  border: 1px solid #E4E7E5;
  border-radius: 0.3em;
  padding: 0.3em 0.5em;
}
@media screen and (min-width: 550px) {
  .textField {
    width: 65%;
  }
}
.textField.error {
  border-color: #C4216B;
}
.msg-error {
  color: #C4216B;
  font-size: 0.825rem;
  display: block;
}
@media screen and (min-width: 550px) {
  .msg-error {
    margin-left: 30%;
  }
}
/* !Stellenanzeigen ----------------------- */
.gender {
  font-size: 0.75em;
}
.jobFacts {
  color: #485294;
}
.jobDate {
  font-size: 0.75rem;
  color: #485294;
}
/* IE10 hack */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .siteTitle {
    float: right;
  }
  .mainNavList {
    margin-top: 6em;
  }
  .mainNavList li {
    display: inline-block;
    margin-right: 1em;
  }
  .teaserList li {
    display: inline-block;
    margin-right: 0.2em;
  }
}
.honey {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
/* ! cookie popup */
#cookie-popup {
  background: #fff;
  border: 1px solid #C4216B;
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 9999;
  font-size: 14px;
  line-height: 20px;
  padding: 20px 0;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
#cookie-popup.hidden {
  display: none;
}
.hinweis {
  width: 90%;
  max-width: 960px;
  margin: auto;
}
.cookie-control {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  gap: 1.5em;
}
