@charset "utf-8";

/* Roboto  */
@font-face {
  font-family: 'robotoblack';
  src: url('webfonts/roboto-black-webfont.woff2') format('woff2'), url('../webfonts/roboto-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotobold';
  src: url('webfonts/roboto-bold-webfont.woff2') format('woff2'), url('../webfonts/roboto-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotoitalic';
  src: url('webfonts/roboto-italic-webfont.woff2') format('woff2'), url('../webfonts/roboto-italic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotomedium';
  src: url('webfonts/roboto-medium-webfont.woff2') format('woff2'), url('../webfonts/roboto-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotoregular';
  src: url('webfonts/roboto-regular-webfont.woff2') format('woff2'), url('../webfonts/roboto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'robotolight';
  src: url('webfonts/roboto-light-webfont.woff2') format('woff2'), url('../webfonts/roboto-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.freeIcon {
  height: 30px;
  position: absolute;
  top: -14px;
  right: -45px;
}

/* --------------------------------------------
      Allgemein / Main
-------------------------------------------- */
:root {
  /* diverse Farben */
  --ci: #002f74;
  --grauD: #333333;
  --grauM: #808080;
  --grauH: #ebebeb;
  --gruen: #77b52b;
  --orange: #eb9c3a;
  --blau: #48abd9;
  /*PAdding Wechselbox*/
  --WBpaddingX: 150px;
  --WBpaddingY: 100px;
  --paleblue: #6682ac;
}

html {
  scroll-padding-top: 250px;
  /* height of sticky header */
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  font-family: "robotolight";
  font-size: 16px;
  color: var(--ci);
  max-width: 1920px;
  margin: 0 auto;
}

video,
img {
  max-width: 100%;
}

@media(min-width: 1300px) {
  .container {
    max-width: 1270px;
    margin: 0 auto;
  }

}

footer .awesomplete {
  flex: 1 1 auto;
}


footer .btn {
  padding: 10px 15px;
}

footer input[type="text"] {
  background-color: #444;
  border: 0 none;
  color: #fff;
}

.d-flex {
  flex-wrap: wrap;
}

/* --------------------------------------------
    Schriften
-------------------------------------------- */
h1,
h2 {
  font-family: "robotolight";
  font-size: 50px;
  line-height: 54px;
}

.h2 {
  font-family: "robotolight";
  font-size: 50px;
  line-height: 54px;
  display: block;
}

h3 {
  font-family: "robotolight";
  font-size: 30px;
  margin-bottom: 0;
}

.h3 {
  font-family: "robotolight";
  font-size: 30px;
  margin-bottom: 0;
  display: block;
}
h1+h2,
h2+h3 {
  font-family: "robotolight";
  font-size: 30px;
  line-height: 35px;
  margin-bottom: 50px;
}
p {
  font-size: 100%;
  line-height: 20px;
  margin-bottom: 30px;
}

a {
  text-decoration: none;
  color: var(--ci);
}

a:hover,
a:focus,
a:active {
  opacity: 0.8;
}

strong,
b {
  font-family: 'robotobold';
}

main ul {
  padding: 0;
  list-style: none
}

main ul li {
  text-indent: -13px;
  padding-left: 26px;
}

main ul li::before {
  display: inline-block;
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  padding-right: 10px;
}

.fa-brands {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
}

table tr:nth-child(odd) {
  background-color: var(--grauH);
}

table td {
  padding: 5px;
}

iframe,
embed,
video {
  max-width: 100%;
}


/* --------------------------------------------
    Header
-------------------------------------------- */
header {
  padding-bottom: 30px;
  position: relative;
  z-index: 9;
}

header #top-bar {
  margin: 0 auto;
  text-align: center;
  clear: both;
  height: 45px;
  padding: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

header #top-bar .youtubeLink {
  color: #f00;
}

header #top-bar .linkedinLink {
  color: #0a66c2;
  padding: 0 20px;
}

header #top-bar .custom {
  display: block;
}

header #top-bar .custom p {
  display: block;
  float: left;
  margin-right: 30px;
  margin-bottom: 0;
}

header #top-bar .custom p::after {
  content: "|";
  margin-left: 30px;
}

header #top-bar .custom p:last-of-type {
  margin-right: 0;
}

header #top-bar .custom p:last-of-type::after {
  content: "";
}

header #logo {
  flex: 0 0 320px;
}

header #top-navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 40px;
}

header #top-navigation ul li.parent {
  position: relative;
  cursor: pointer;
}

header #top-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 9;
  background: #fff;
  padding: 15px;
  width: 330px;
  box-shadow: 2px 3px 5px 0px #bebebe;
}

header #top-navigation ul li:hover ul {
  display: block;
}

header #top-navigation ul li a {
  font-family: 'robotolight';
  color: var(--ci);
  padding: 10px;
}

header #top-navigation ul ul li a {
  color: #fff;
  padding: 10px;
  background-color: var(--blau);
  width: 100%;
  display: block;
  font-family: 'robotolight';
  margin-bottom: 10px;
  text-align: center;
}

header #top-navigation ul ul li:first-child a {
  background-color: var(--blau);
}

header #top-navigation ul ul li:last-child a {
  background-color: var(--orange);
  margin-bottom: 0;
}

header #top-navigation .mod-languages ul li {
  margin-right: 0;
  height: 15px;
  border-right: 1px solid;
  line-height: 1;
  padding-right: 10px;
  position: relative;
  top: 1px;
}

header #top-navigation .mod-languages ul li a {
  font-family: 'robotolight';
  padding: 0;
}

header #top-navigation .youtubeLink {
  padding-left: 10px;
  margin-left: 0px;
  border-left: 1px solid var(--ci);
  height: 15px;
  display: block;
}

header #top-navigation .youtubeLink i {
  position: relative;
  top: -4px;
  color: #f00;
}

header #navigation ul li.item-164,
header #navigation ul li.item-101 {
  display: none;
}

header #navigation ul li:last-child {
  border-right: 0;
}



header #navigation ul li.parent .fa {
  position: absolute;
  top: 4px;
  right: 25px;
}

header #navigation ul li.item-210>a,
header #navigation ul li.item-218>a {
  background: url('../img/privassist.png') no-repeat 160px 5px;
  background-size: 80px;
}

header #navigation ul li.item-218>a {
  background-position: 180px 5px;
}

footer ul li.parent .fa,
header #top-navigation ul li.parent .fa {
  display: none;
}

header #navigation ul li span,
header #navigation ul li a {
  font-family: 'robotolight';
  padding: 10px;
  color: var(--ci);
}

header #navigation ul.mod-menu>li>span,
header #navigation ul.mod-menu>li>a {
  font-size: 20px;
  padding: 10px 60px
}
header #navigation ul li.parent {
    position: relative;
}
header #navigation ul ul {
  display: none;
}
li.item-107 {
    position: unset !important;
}
@media(min-width: 1201px) {
  .mod-menu_sub_solution>li.nav-item-end a {
    display: inline-block !important;
    color: #8e8e8d !important;
}

  header #navigation ul li:hover>ul.mod-menu_sub_solution::after {
    height: 1px;
    width: calc(100% - 100px);
    background: linear-gradient(90deg,var(--ci),#2da9df);
    content: '';
    position: absolute;
    top: 0px;
    left: 50px;
}
  li.item-107 .fa {
    float: right;
    position: relative !important;
    margin-left: -15px;
}
  header .d-flex.justify-content-between {
    position: relative;
  }
  header #navigation ul.mod-menu>li.active>span,
  header #navigation ul.mod-menu>li.active>a {
    color: var(--grauD);
  }

  header #navigation ul.mod-menu__sub li.active>span,
  header #navigation ul.mod-menu__sub li.active>a {
    background-color: var(--grauH);
  }

  header #navigation ul.mod-menu__sub li.active>a:active,
  header #navigation ul.mod-menu__sub li.active>a:hover,
  header #navigation ul.mod-menu__sub li.active>a:focus {
    color: var(--ci);
  }

  header #navigation ul li:hover>ul {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 400px;
    padding: 0px;
    background: #fff;
    border: 1px solid;
  }
  header #navigation ul li:hover>ul.mod-menu_sub_solution {
    display: flex;
}
.mod-menu_sub_solution>li {
    flex: 0 0 30%;
}
.mod-menu_sub_solution .nav-item-headline {
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'robotobold' !important;
    position: relative;
}
  header #navigation ul li.item-107:hover>ul {
    min-width: 410px;
  }
  .mod-menu_sub_solution {
    padding: 20px 50px 30px !important;
    flex-wrap: wrap;
    right: 48px !important;
    max-width: 1200px;
    justify-content: space-between;
    top: 50px !important;
    border: 0 !important;
    box-shadow: 5px 11px 10px #00000075;
}
  .mod-menu_sub_solution ul {
    display: block !important;
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: auto !important;
    min-width: 10px !important;
    padding: 0px;
    background: #fff !important;
    border: 0 !important;
}
.mod-menu_sub_solution .subline {
    font-size: 16px;
    color: var(--blau);
    font-family: 'robotoregular';
    padding-left: 10px;
    text-decoration: underline;
}
.mod-menu_sub_solution .nav-item.hasSubline {
    line-height: 1;
}
header #navigation .mod-menu_sub_solution>li ul li>a {
    text-align: left;
    padding: 4px 10px !important;
    background-color: transparent !important;
    color: var(--ci) !important;
    font-family: 'robotoregular' !important;
}
.mod-menu_sub_solution .nav-item.hasSubline>a::before {
    content: "-";
    padding-right: 10px;
    color: var(--blau);
}
header #navigation .mod-menu_sub_solution>li ul li>a {
    text-align: left;
    padding: 4px 10px !important;
    background-color: transparent !important;
    color: var(--ci) !important;
    font-family: 'robotoregular' !important;
}
.mod-menu_sub_solution>li.nav-item-end {
    flex: 0 0 100%;
    text-align: center;
    margin-top: 20px;
    color: #8e8e8d;
}
.mod-menu_sub_solution>li.nav-item-end span {
    text-transform: uppercase;
    font-size: 16px;
    border-bottom: 1px solid #8e8e8d;
    display: block;
    text-align: center;
    font-family: 'robotobold' !important;
    color: #8e8e8d !important;
    max-width: 490px;
    margin: 0 auto;
}
.mod-menu_sub_solution .nav-item-headline::after {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,var(--ci),#2da9df);
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
}
}

@media(min-width: 1201px) {
  header #navigation ul ul li a {
    color: var(--ci);
    font-size: 16px;
    padding: 10px 15px;
    display: block;
  }

}


@media(min-width: 1201px) {
  header #menuToggle {
    display: none;
  }
}

/* --------------------------------------------
    Footer
-------------------------------------------- */
footer {
  background-color: var(--grauD);
  color: #fff;
  padding: 60px 0;
}

footer p {
  margin-bottom: 0;
}

footer ul.mod-menu>li {
  margin-right: 30px;
}

footer #mod-custom153 p strong,
footer #mod-custom112 .nav-header,
footer #mod-custom193 .nav-header,
footer ul li .nav-header,
footer ul .item-114>a {
  font-size: 20px;
  font-family: "robotomedium";
  margin-bottom: 20px;
  display: block;
}

footer #mod-custom112 .nav-header,
footer #mod-custom193 .nav-header {
  padding-top: 5px;
  margin-bottom: 35px;
}

footer ul li.item-147 {
  position: absolute;
  bottom: 0;
  left: 280px;
}

footer ul li a:hover {
  color: var(--grauM);
}

footer ul.mod-menu__sub li {
  text-indent: -8px;
}

footer ul.mod-menu__sub li a {
  padding-left: 8px;
}

footer ul.mod-menu__sub li.active a {
  font-family: 'robotolight';
  letter-spacing: 0.04em;
}

footer ul.mod-menu__sub li a::before {
  content: "- ";
}

footer ul li.item-147 a {
  font-family: 'robotolight'
}

footer #mod-custom112 a,
footer ul li a,
footer #mod-custom193 a,
footer ul li a {
  color: #fff;
}

footer #mod-custom112 a,
footer #mod-custom193 a {
  font-size: 40px;
  padding-right: 15px;
}

footer #mod-custom112 a .fa-linkedin,
footer #mod-custom193 a .fa-linkedin {
  color: #0a66c2;
}

footer #mod-custom112 a .fa-twitter,
footer #mod-custom193 a .fa-twitter {
  color: #1d9bf0;
}

footer li .fa-youtube,
footer #mod-custom112 a .fa-youtube,
footer #mod-custom193 a .fa-youtube {
  color: #FF0000;
}

footer #copyright {
  text-align: center;
  margin-top: 60px;
}

footer #mod-custom153 {
  flex: 0 0 305px;
}

footer #mod-custom153 {
  flex: 0 0 305px;
}



footer #mod-custom153 p strong {
  font-weight: normal;
  text-transform: uppercase;
}

footer .navbar-expand-md {
  padding-top: 0;
}

footer #mod-custom224 .d-flex {
    gap: 10px;
    justify-content: flex-end;
    max-width: 155px;
    margin-left: auto;
    margin-right: auto;
}

footer #mod-custom224 div>a,
footer #mod-custom224 .dropdown button {
    flex: 0 0 45px;
    max-width: 45px;
    height: 45px;
    background: #252525;
    color: #fff;
    text-align: center;
    font-size: 23px;
    padding: 12px 0;
}

footer #mod-custom224 .dropdown button {
    display: flex;
    flex-direction: column;
    width: 45px;
    justify-content: center;
    align-items: center;
    border: 0;
    min-width: 10px !important;
}

footer #mod-custom224 .youtube {
    color: #f00;
}

footer #mod-custom224 .linkedin {
    color: #0a66c2;
}

footer #mod-custom224 .reddit {
    color: #FF5700;
}

footer #mod-custom224 .facebook {
    color: #1877F2;
}

footer #mod-custom224 .threads {
    color: #fff;
}

footer #mod-custom224 .instagram .fa-brands {
    background: linear-gradient(45deg, #405DE6, #C13584, #FD1D1D, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer #mod-custom224 .twitter {
    color: #fff;
}

footer #mod-custom224 .tiktok .fa-brands {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer #mod-custom224 .facebook:hover,
footer #mod-custom224 .threads:hover,
footer #mod-custom224 .reddit:hover,
footer #mod-custom224 .youtube:hover,
footer #mod-custom224 .linkedin:hover,
footer #mod-custom224 .twitter:hover {
    color: #fff
}

footer #mod-custom224 .instagram:hover .fa-brands,
footer #mod-custom224 .tiktok:hover .fa-brands {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

footer #mod-custom224 .dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0;
    vertical-align: 0;
}

footer .headline a,
footer .headline span {
    font-size: 20px;
    font-family: 'robotobold';
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #fff;
    color: #fff
}

#mod-custom232,
#mod-custom230,
#mod-custom231,
#mod-custom223,
#mod-custom227,
#mod-custom228 {
    margin-top: 80px;
}

#mod-custom236 ul,
#mod-custom229 ul,
#mod-custom223 ul,
#mod-custom230 ul,
#mod-custom231 ul,
#mod-custom232 ul,
#mod-custom227 ul,
#mod-custom228 ul {
    padding-left: 0;
    list-style: none;

}

#mod-custom230 ul a,
#mod-custom231 ul a,
#mod-custom232 ul a,
#mod-custom223 ul a,
#mod-custom227 ul a,
#mod-custom228 ul a {
    font-size: 14px;
    display: block;
    padding: 3px 0;

}

#mod-custom230 ul,
#mod-custom223 ul {
    column-count: 2;
    column-gap: 15px;
}

#mod-custom236 ul,
#mod-custom229 ul {
    display: flex;
    gap: 20px;
    text-align: right;
    justify-content: flex-end;
    margin-top: 22px;

}

footer #themes {
    background: #252525;
    padding: 30px;
    margin: 60px 0px 20px;
}

#mod-custom234 p,
#mod-custom226 p {
    text-align: right;
}

footer .article-tags {
    text-align: right;
}

footer .article-tags .tag,
#mod-custom234 span,
#mod-custom226 span {
    background-color: var(--grauD);
    display: inline-block;
    margin: 4px 2px;
    padding: 4px 8px;
}

footer #copyright {
    text-align: left;
    margin-top: 0;
}

footer #copyright p {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer #copyright a {
    display: inline-block;
    height: 70px;
    width: 70px;
    overflow: hidden;
}

footer #copyright a img {
    width: 72px;
    max-width: 72px;
    position: relative;
    left: -1px;
    top: -1px;
}
.btn-primary {
    color: #fff;
    border-radius: 0;
    border: 1px solid #002f74;
    background-color: #002f74;
    padding: 10px 20px;
    font-family: 'robotolight';
    background: #002f74;
    text-decoration: none;
}
/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media(max-width: 1550px) {
  :root {
    --WBpaddingX: 100px;
    --WBpaddingY: 50px;
  }

}

@media(max-width: 1355px) {

  h1,
  h2 {
    font-size: 45px;
    line-height: 40px;
  }

}

@media(max-width: 1300px) {

  header #navigation ul.mod-menu>li>span,
  header #navigation ul.mod-menu>li>a {
    padding: 10px 60px 10px 30px;
  }

  footer .navbar-expand-md,
  footer .navbar-expand-md ul.nav {
    width: 100%;
  }

  footer ul.mod-menu>li {
    margin-right: 0;
    flex: 1 1 auto;
  }

  footer ul li.item-147 {
    position: relative;
    bottom: 0;
    left: 0;
    order: 2;
  }

  footer .footerRight {
    margin-top: 3rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  footer #mod-custom112,
  footer #mod-custom193 {
    flex: 0 0 305px;
  }

  footer .btn {
    padding: 10px 15px;
    min-width: 120px;
  }

}

@media(max-width: 1200px) {
  header {
    padding-top: 10px;
  }

  header #navigation ul li.item-210>a {
    background-position: 200px 10px;
  }

  header #navigation ul li.item-218>a {
    background-position: 225px 10px;
  }

  #menuToggle {
    margin-top: 10px;
  }

  header #logo {
    flex: 0 0 100%;
  }
  header #logo svg,
  header #logo img {
    max-width: 300px;
    display: block;
    margin: 20px auto;
  }

  header #top-navigation {
    margin-left: auto;
    margin-right: 30px;
  }

  header #menuToggle .burger-line:not(:last-child) {
    height: 5px;
    background: var(--ci);
    margin-top: 4px;
    display: block;
    position: relative;
    transition: 0.3s;
  }

  header #menuToggle .burger-line:last-child {
    text-transform: uppercase;
  }

  .menu-open #menuToggle .burger-line:first-child {
    transform: rotate(10deg);
    top: 6px;
  }

  .menu-open #menuToggle .burger-line:nth-child(2) {
    transform: rotate(-10deg);
    top: -3px;
  }

  header #navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--ci);
    z-index: 9;
    padding-top: 0px;
    transition: 0.3s;
  }

  header #navigation ul.mod-menu>li>span,
  header #navigation ul.mod-menu>li>a {
    padding: 10px;
  }

  header #navigation .mod-languages {
    padding: 0 8px;
  }

  .menu-open header #navigation {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
  }

  #top-navigation-xs {
    border-right: 1px solid #fff;
    width: 270px;
  }

  #top-navigation-xs,
  header #navigation>ul {
    padding: 20px 0;
  }

  header #navigation>ul {
    padding: 20px 0;
    width: 710px;
  }

  #top-navigation-xs .navbar {
    padding: 0;
  }

  header #navigation ul.mod-menu>li {
    padding: 0 3%;
    width: 50%;
  }

  header #navigation #top-navigation-xs ul.mod-menu>li {
    width: 100%
  }

  header #navigation #navbar110 ul.mod-menu>li {
    width: 95%;

  }

  header #navigation ul li span,
  header #navigation ul li a {
    font-family: 'robotolight';
    padding: 10px;
    color: #fff;
    display: block;
  }

  header #navigation ul.mod-menu>li>span,
  header #navigation ul.mod-menu>li>a {
    font-size: 25px;
    line-height: 28px;
    text-transform: uppercase;
  }

  header #navigation ul ul {
    display: block;
    padding-bottom: 15px;
  }

  header #navigation ul ul li a {
    padding: 15px 5%;
    border-bottom: 1px solid #3b5173;
    font-family: 'robotolight';
    font-size: 20px;
    line-height: 23px;
  }

  footer ul.mod-menu>li {
    margin-right: 30px;
    margin-bottom: 30px;
  }

}

@media(max-width: 991px) {

  header #navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 140px);
    height: 100%;
    overflow: auto;
  }

  header #navigation ul.mod-menu>li {
    padding: 0 3%;
    width: 100%;
  }

  header #navigation #navbar110 ul.mod-menu>li {
    width: 100%;

  }

  .navbar-expand-md .navbar-collapse {
    display: block !important;
  }


  .menu-open header #navigation {
    display: block;
  }

  #top-navigation-xs {
    border-bottom: 1px solid #fff;
  }

  #top-navigation-xs,
  header #navigation>ul {
    width: 100% !important;
    display: block;
  }

  header #top-bar {
    padding: 10px;
  }

  .scroll header #top-bar .custom p {
    margin-bottom: 15px;
  }

  h1,
  h2,
  .h2 {
    font-size: 40px;
    line-height: 35px;
  }


  header #navigation>ul {
    width: 470px;
  }

  .home #faq .faq-list>div {
    flex: 0 0 100%;
  }

  footer ul.mod-menu>li {
    margin-right: 0;
    margin-bottom: 30px;
    flex: 0 0 33%;
    padding-right: 30px;
  }

  footer ul li.item-147 {
    left: 230px;
  }


  footer #mod-custom112,
  footer #mod-custom193,
  footer #mod-custom153 {
    flex: 0 0 255px;
  }


  #searchModule {
    padding-left: 30px;
    flex: 0 0 calc(100% - 255px);
  }
  footer #mod-custom224 .d-flex {
    max-width: 100%;
    margin-top: 20px;
    justify-content: flex-start;
    align-items: end;
}

}

@media(max-width: 768px) {

  h1+h2,
  h2+h3 {
    font-size: 25px;
    line-height: 30px;
  }
  header {
    padding-top: 0;
    padding-bottom: 15px;
  }

  header #top-bar {
    width: 100%;
    height: 40px;
    padding: 0;
    background: var(--ci);
    margin: 0px -3rem;
    width: 120%;
    width: calc(100% + 6rem);
    margin-bottom: 10px;
  }


  header #top-navigation {
    display: none;
  }

  header #top-bar .custom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header #top-bar .custom p {
    margin-left: 0px;
    margin-bottom: 0px;
  }

  header #top-bar .custom p a {
    font-size: 15px;
    padding: 6px 10px;
    color: #fff;
    display: block;
  }
  header #top-bar .custom p::after {
   display: none;
}

  div.mod-languages ul.lang-inline li {
    display: inline-block;
    margin: 0;
  }

  footer .navbar-collapse {
    display: block !important;
  }

  footer ul.mod-menu>li {
    flex: 0 0 100%;
    padding-right: 0px;
  }

  footer ul li.item-147 {
    left: 0;
    position: relative;
  }


  footer #mod-custom112,
  footer #mod-custom193 {
    text-align: left;
  }

  footer #mod-custom112,
  footer #mod-custom193,
  footer #mod-custom153,
  footer #newsletter,
  #searchModule {
    flex: 0 0 100%;
    padding: 0 !important;
  }


  footer #newsletter {
    margin-top: 20px;
  }
  #fooerlogo {
    max-width: 300px;
}
footer #mod-custom224 .d-flex {
    margin-bottom: 50px;
}#themes+.container .row {
    flex-direction: column-reverse;
}
#mod-custom236 ul, #mod-custom229 ul {
    justify-content: flex-start;
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
}
}

@media(max-width: 575px) {
  :root {
    --WBpaddingX: 15px;
    --WBpaddingY: 50px;
  }


  header #navigation .mod-languages {
    padding: 0;
  }

  .w-50 {
    width: 100% !important;
  }

  .h4,
  h4 {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  header #navigation>ul,
  #top-navigation-xs {
    width: 100%;
    padding: 20px 10px;
  }


  header #navigation>ul {
    max-width: 100%;
  }

  header #navigation ul.mod-menu>li {
    padding: 0 5px;
  }

  .btn {
    width: 100%;
  }
footer .container{
        padding-right: var(--bs-gutter-x, .75rem) !important;
    padding-left: var(--bs-gutter-x, .75rem) !important;
}
  footer ul.list-unstyled {
    padding-left: 5%;
    padding-right: 5%;
  }


  footer ul li .nav-header {
    padding: 0 30px;
  }
  footer .footerRight {
    padding: 0 30px;
}
  footer ul.mod-menu__sub li a {
    padding: 8px;
    border-bottom: 1px solid var(--grauM);
    display: block;
  }

  footer ul.mod-menu__sub li:last-child a {
    border-bottom: 0;
  }

  footer .btn {
    margin-top: 5px;
  }

  footer .item-119 {
    position: relative;
  }

  footer .item-119 button {
    position: absolute;
    top: 5px;
    right: 0;
  }
#mod-custom230 ul, #mod-custom223 ul {
    column-count: 1;
}
}


@media(max-width: 430px) {
  header .px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  header #navigation {
    width: calc(100% - 80px);
  }

  header #top-bar {
    width: calc(100% + 63px);
  }
}

@media(max-width: 370px) {

  header #logo img,
  .scroll header #logo img {
    max-width: 160px;
  }

  #aside .custom p strong {
    font-size: 20px;
  }
}


.d-none {
  display: none !important;
}
#finished .d-flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
#finished .dottedArrow {
    text-align: center;
    margin-bottom: -90px;
    margin-top: 50px;
}
main {
  max-width: 900px;
  margin: 0 auto 50px;

}

#finished .h1,
main h1#isHeadline {
  font-size: 70px;
  font-family: 'robotoblack';
  color: var(--ci);
  line-height: 50px;
}
#finished .h2,
main h1#isHeadline span {
  display: block;
  font-size: 40px;
  font-family: 'robotolight';
}

.container {
  margin: 0 auto;
  padding: 0 !important;
}

.login.mat-card {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-top: 4px solid #aaa !important;
  box-shadow: none !important;
  background: #ebebeb;
  padding: 50px;
}

.login .mat-card-title {
  display: none;
  margin-bottom: 0px;
}

.login .mat-card-subtitle {
  color: #333333;
  font-size: 16px;
  max-width: 80%;
  font-family: 'robotolight';
}

.mat-form-field-appearance-outline .mat-form-field-outline {
  display: none !important;
}

.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 0 !important;
}

.mat-form-field-appearance-outline .mat-form-field-wrapper {
  margin: 30px 0 0 !important;
}

.mat-form-field-appearance-outline .mat-form-field-flex {
  padding: 0 !important;
  margin-top: 0 !important;
  position: relative !important;
}

.mat-form-field-label-wrapper {
  top: -30px !important;
  padding-top: 30px !important;
}

.mat-form-field-appearance-outline .mat-form-field-label {
  top: 0 !important;
  margin-top: 0 !important;
  width: 100% !important;
}

.mat-form-field-label {
  font-size: 16px !important;
  font-family: 'robotoblack' !important;
  transform: none !important;
}

.mat-form-field-infix {
  padding: 0;
  border-top: 0;
}

.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 0;
}

input.mat-input-element {
  border: none;
  padding: 0;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.mat-flat-button.mat-primary.mat-button-disabled,
.mat-flat-button.mat-accent.mat-button-disabled,
.mat-flat-button.mat-warn.mat-button-disabled,
.mat-flat-button.mat-button-disabled.mat-button-disabled,
.mat-raised-button.mat-primary.mat-button-disabled,
.mat-raised-button.mat-accent.mat-button-disabled,
.mat-raised-button.mat-warn.mat-button-disabled,
.mat-raised-button.mat-button-disabled.mat-button-disabled,
.mat-fab.mat-primary.mat-button-disabled,
.mat-fab.mat-accent.mat-button-disabled,
.mat-fab.mat-warn.mat-button-disabled,
.mat-fab.mat-button-disabled.mat-button-disabled,
.mat-mini-fab.mat-primary.mat-button-disabled,
.mat-mini-fab.mat-accent.mat-button-disabled,
.mat-mini-fab.mat-warn.mat-button-disabled,
.mat-mini-fab.mat-button-disabled.mat-button-disabled {
  opacity: 0.5;
}

#steps {
  margin-top: 50px;
  margin-bottom:-5px;
}

#steps .step {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 33.33333%;
  opacity: 0.6;
  color: #7d7d7d;
  padding-bottom: 20px;
  z-index: 2;
}

#steps .round {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px dashed var(--ci);
  border-radius: 50%;
}

#steps .step .text {
  padding-left: 15px;
  ;
}

#steps .step .text p {
  margin-bottom: 0;
  font-size: 16px;

}

#steps .step .text b {
  display: block;
  text-transform: uppercase;
}

#steps.step-1-active .step-1,
#steps.step-2-active .step-1,
#steps.step-2-active .step-2,
#steps.step-3-active .step-1,
#steps.step-3-active .step-2,
#steps.step-3-active .step-3 {
  opacity: 1;
  color: var(--ci);
  border-bottom: 6px solid var(--ci);
}
#steps.step-2-active .step-1 .round,
#steps.step-3-active .step-1 .round,
#steps.step-3-active .step-2 .round {
  border-style: solid;
  background-color: var(--ci);
}
#steps.step-2-active .step-1 .round::before,
#steps.step-3-active .step-1 .round::before,
#steps.step-3-active .step-2 .round::before {
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  padding: 5px 6px;
}


h1+p, h2+div, h2+div.row, h2+p, h2+ul, ul+h2, ul+h3, table+h3, p+h2, p+h3 {
  margin-top: 0px;
}
.section, .pdf_style, .generator_wrapper {
  border: 1px solid #aaa !important;
  border-top: 4px solid #aaa!important;
  padding: 0 !important;
}
.pdf_style {
  padding: 30px 50px !important;
}
.pdf_style + .buttons {
  place-content: center flex-end !important;
}
.pdf_style + .buttons button:first-child {
  margin-right: 10px;
  color: var(--ci) !important;
  border: 1px solid var(--ci);
  background-color: #fff;
}
.pdf_style .pdf_style_headline {
  height: auto !important;
  width: 100% !important;
  inline-size: 100% !important;
}
.mat-typography h2.section_headline {
  margin-top: 16px;
  font-size: 21px;
  font-family: 'robotoregular';
  font-weight: normal;
}
.mat-typography h2 {
  margin-top: 16px;
  font-size: 16px;
  font-family: 'robotoregular';
  font-weight: normal;
  line-height: 21px;
}
.mat-checkbox-inner-container {
  margin: 0 !important;
  margin-right: 8px !important;
  position: relative;
  top: 3px;
}
.mat-checkbox-layout .mat-checkbox-label {
  line-height: 20px !important;
}
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #f44336;
  background: #fff !important;
  border-color: #f44336 !important;
}
.result-text {
  padding-left: 0 !important;
}
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover:not([aria-disabled]), .mat-step-header:hover[aria-disabled=false] {
  background-color: transparent !important;
}
.generator_wrapper .questions {
  border: 0 !important;
  padding: 0 !important;
}
.generator_wrapper .mat-step-icon .mat-icon {
  color: #fff;
}
.generator_wrapper .questions .mat-radio-group {
  margin-top: 15px !important;
  display: block;;
}
.generator_wrapper .questions .mat-radio-button {
  margin-right: 30px !important;
}
.generator_wrapper .mat-vertical-content {
  padding: 0 25px 0;
}
.generator_wrapper .mat-step-text-label { 
  font-size: 18px;
  font-weight: normal;
}
.generator_wrapper .mat-vertical-content .buttons { 
  place-content: center flex-end !important;
}

.generator_wrapper .mat-vertical-content .buttons button { 
  background-color: #fff;
  color: var(--ci) !important;
  border: 1px solid var(--ci);
}
.generator_wrapper .mat-vertical-content .buttons button:nth-child(2), 
.generator_wrapper .mat-vertical-content .buttons button[type="submit"] { 
  background-color:var(--ci);
  color: #fff !important;
}
.generator_wrapper .mat-vertical-content .buttons button:last-child { 
  margin-left: 10px;
  b
}
.generator_wrapper > .step-container:last-of-type .buttons {
  place-content: center space-evenly !important;
}
.mat-stepper-vertical-line::before {
  display: none !important;
}
.section_headline {
  padding: 0 50px;
}
.mat-stepper-vertical > .mat-step,
.section > .ng-star-inserted{
 padding: 30px 50px;
}
.mat-stepper-vertical > .mat-step:nth-of-type(odd),
.section > .ng-star-inserted:nth-of-type(odd){

 background-color: #ebebeb;
}


.section > .ng-star-inserted input.mat-input-element {
    border: 1px solid #aaa;
}
.section > .ng-star-inserted h3,
.section > .ng-star-inserted .mat-form-field-appearance-outline .mat-form-field-wrapper {
  margin: 0 !important;
}
.section > .ng-star-inserted .mat-form-field-wrapper {
  padding-bottom: 0 !important;
}
.section > h2.ng-tns-c115-0 {
  display: none;
}
.section .radio-group {
  margin-bottom: 20px;
}
@media(min-width:769px) {
.section .radio-button {
  min-width: 100px !important;
}
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: var(--ci);
}
.mat-radio-button.mat-accent .mat-radio-inner-circle, .mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: var(--ci);
}
.mat-checkbox-frame {
  background-color: #fff !important;
  border-width: 1px !important;
}
.mat-radio-outer-circle {
  border-width: 1px !important;
  background: #fff !important;
}
.generator_result table,
.generator_result table td,
.generator_result table tr,
.generator_result table th {
  border: 0 !important
}
.generator_result table td {
  padding: 40px 30px;
}
.generator_result table th {
  padding: 0 20px 10px;
}
.generator_result table thead tr {
  background-color: #fff !important;
}
.generator_result table thead tr:first-child th { 
  font-size: 20px !important;
  color: var(--ci) !important;
  font-weight: normal !important;
}
.generator_result table td:first-child {
  color: var(--ci);
  font-size: 20px;
}
.generator_result table td:last-child {
  background-color: inherit !important;
}
.generator_result table td p {
    font-size: 16px;
    margin-bottom: 0;

}
.generator_result table td b.ng-star-inserted {
    position: relative;
    top: 34px;
    left: 15px;
    color: var(--ci);
}
.generator_result table td b.ng-star-inserted + span {
  border: 1px solid var(--ci);
  display: block;
  padding: 40px 15px 15px;
  background: #fff;
  color: var(--ci);
}
.generator_result .buttons .button {
  margin-right: 30px;
}

#finished .box {
  padding: 30px;
  height: 100%;
}
#finished .box .h3 {
  font-size: 20px;
}
#finished .box p {
  font-family: 'robotolight';
}
#finished .box .h3 {
  font-size: 20px;
  font-family: 'robotoregular';
}
#finished .box.boxBlue {
  background: var(--ci);
  color: #fff;
}
#finished .box.boxBlue input {
  display: block;
  width: 100%;
  padding: 10px;
  border: 0;
  margin-bottom: 10px;
}
#finished .box.boxBlue button {
  display: block;
  width: 100%;
  padding: 10px;
  border: 0;
  background-color: var(--blau);
  color: #fff;;
}
#finished .box.boxOutline {
  border: 1px solid #aaa
}
#finished #generatoren li {
  text-indent: 0;
  padding-left: 0;
}
#finished #generatoren li a {
 background-color: #ebebeb;
 display: flex;
 width: 100%;
 margin-bottom: 5px;
 position: relative;
 color:var(--ci);
 padding: 13px;
}
#finished #generatoren li a:hover {
 background-color: var(--ci);
 color:#fff
}
#finished #generatoren li::before {
display: none;
}
#finished #generatoren li a span  {
  flex: 0 0 50%;
  display: block;
}
#finished #generatoren li a > i  {
  position: absolute;
  top: 16px;
  right: 15px;
}
.directToMail {
  width: 100% !important;
}
.notifier__container-list {
  display: none !important;
}
#pdfSent {
  display: none;
  font-size: 20px;
  text-align: center;
}
@media(max-width: 991px) {
  main {
    max-width: 720px;
    margin: 0 auto 50px;
  }

  #finished .h1,
  main h1#isHeadline {
    font-size: 40px;
    line-height: 30px;
    margin-top: 50px;
  }
  #finished .h2,
  main h1#isHeadline span {
    font-size: 30px;
  }
}

@media(max-width: 768px) {
  .section .radio-button {
    min-width: 10px !important;
    display: block !important;
}
  header #top-bar .custom p:last-of-type {
    display: none;
}
  main {
    max-width: 540px;
  }

  .login .mat-card-subtitle {
    color: #333333;
    max-width: 100%;
  }
  .section .radio-group {
    display: block !important;
}

  #steps .step {
    flex-direction: column;
    text-align: center;
  }

  #steps .step .text {
    padding-left: 0;
    padding-top: 15px;
    max-width: 130px;
  }
  #finished .d-flex {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
  #finished .dottedArrow {
    margin-bottom: 0;
}
  #finished .h1,
  #finished .h2 {
    text-align: center;
}
  #finished .d-flex img {
    margin: 30px auto;
    display: block;
}
}

@media(max-width: 575px) {
  #finished .box p {
    text-align: center;
}
  #finished #generatoren li a {
    display: block;
    text-align: center;
  }
  #finished #generatoren li a > i {
    display: none;
}
  .mat-stepper-vertical > .mat-step, .section > .ng-star-inserted {
    padding: 20px 20px;
}
  main {
    padding: 0 15px;
  }
  #finished .h1,
  main h1#isHeadline {
    font-size: 35px !important;
  }
  .section > .ng-star-inserted:nth-child(even) > .ng-star-inserted,
  .section > .ng-star-inserted:nth-child(odd) > .ng-star-inserted,
  .pdf_style,
  .login.mat-card {
    padding: 20px !important;
}

  #steps .step {
    display: flex;
    flex-direction: revert;
    flex-wrap: wrap;
    align-items: center;
    flex: 0 0 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  #steps .step .text {
    padding-left: 15px;
    padding-top: 0;
    max-width: 100%;
  }
}