:root {
  --bs-primary: #4c76ab;
  --bs-secondary: #333333;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  height: 100%;
  color: var(--bs-secondary);
}

/* TYPOGRAPHY */
h1, .h1, 
h2, .h2, 
h3, .h3, 
h4, .h4, 
h5, .h5, 
h6, .h6 {
  font-family: 'Kalam', 'Montserrat', sans-serif;
  font-weight: 300;
  margin: 30px 0;
  line-height: 1.25;
  color: var(--bs-primary);
}
h1, .h1 {
  margin-top: 0;
  font-size: 45px;
}
h2, .h2 {
  font-size: 40px;
  color: var(--bs-secondary);
}
h3, .h3 {
  font-size: 35px;
  color: var(--bs-secondary);
}
h4, .h4 {
  font-size: 30px;
  color: var(--bs-secondary);
} 
h5, .h5 {
  font-size: 25px;
  color: var(--bs-secondary);
} 
h6, .h6 {
  font-size: 20px;
  color: var(--bs-secondary);
}

h1 small, .h1 small, 
h2 small, .h2 small, 
h3 small, .h3 small, 
h4 small, .h4 small, 
h5 small, .h5 small, 
h6 small, .h6 small {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  margin-left: 30px;
  color: var(--bs-secondary);
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

.signature {
  font-family: 'Kalam', 'Montserrat', sans-serif;
  font-size: 32px;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: var(--bs-secondary);
  text-decoration: none;
}

small {
  display: block;
  font-size: 75%;
  font-weight: 300;
}

strong, b, .fw-bold {
  font-weight: 600 !important;
}

hr {
  display: block;
  margin: 30px 0;
}

ul {
  list-style-image: url('../img/ul-primary.png');
  padding-inline-start: 25px;
}
ul li {
  font-size: 18px;
  margin-bottom: 5px;
}
ul li:last-child {
  margin-bottom: 0;
}

.ul {
  list-style-image: url('../img/ul-primary.png');
  padding-inline-start: 25px;
}
.bg-primary .ul,
.bg-secondary .ul {
  list-style-image: url('../img/ul-light.png');
} 
.ul li {
  margin-bottom: 15px;
  font-size: 22px;
}
.ul li:last-child{
  margin-bottom: 0;
}

.ul.ul-lg li {
  margin-bottom: 30px;
} 

/* CTA */
.cta {
  display: block;
  padding: 60px 30px;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  transition: all .25s;
  z-index: 1;
  background-image: url('../img/cta.png');
  background-position: center bottom -50px;
  background-repeat: no-repeat;
  background-size: auto;
}
.cta:hover {
  color: var(--bs-white);
  background-color: var(--bs-primary);
  background-position: center bottom;
}

/* IMAGES */
.img-content {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  border: 5px solid var(--bs-primary);
  box-shadow: 0 0 0 5px var(--bs-white);
}

/* BUTTONS */
.btn {
  border-radius: 15px;
  border: none;
  padding: 10px 20px;
}
.btn:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #406591 !important;
  color: var(--bs-white);
}

.btn-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #111 !important;
  color: var(--bs-white);
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.bg-primary h1,
.bg-primary .h1,
.bg-primary h2,
.bg-primary .h2,
.bg-primary h3,
.bg-primary .h3,
.bg-primary h4,
.bg-primary .h4,
.bg-primary h5,
.bg-primary .h5,
.bg-primary h6,
.bg-primary .h6,
.bg-primary small {
  color: var(--bs-white);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.bg-secondary h1,
.bg-secondary .h1,
.bg-secondary h2,
.bg-secondary .h2,
.bg-secondary h3,
.bg-secondary .h3,
.bg-secondary h4,
.bg-secondary .h4,
.bg-secondary h5,
.bg-secondary .h5,
.bg-secondary h6,
.bg-secondary .h6,
.bg-secondary small {
  color: var(--bs-white);
}

.bg-grey {
  background-color: #f5f5f5 !important;
}

/* CCM19 */
.ccm-settings-summoner {
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  border-radius: 15px 0 0 0;
}
.ccm-settings-summoner--link {
  box-shadow: none !important;
}
.ccm-settings-summoner--icon {
  border-radius: 15px 0 0 0 !important;
  border-top: 1px solid var(--bs-white) !important;
  border-left: 1px solid var(--bs-white) !important;
}

/* NAV */
.navbar {
  background-color: transparent !important;
  padding-top: 30px;
  padding-bottom: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  transition: all .25s;
}
.navbar-brand-logo {
  width: 100%;
  max-width: 160px;
  transition: all .25s;
}
.navbar-brand-caption {
  display: inline-block;
  vertical-align: middle;
  color: var(--bs-secondary);
  line-height: 1.25;
  font-size: 14px;
  font-weight: 400;
  margin-left: 15px;
  opacity: 1;
}
.navbar-brand-caption strong {
  font-size: 32px;
  font-weight: 600;
  color: var(--bs-primary);
}
.navbar-menu {
  display: flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
  color: var(--bs-secondary);
  text-transform: uppercase;
}
.navbar-menu .navbar-menu-title {
  opacity: 1;
  font-size: 18px;
  font-weight: 600;
  transform: rotate(-90deg);
  margin-right: -10px;
}
.navbar-menu .navbar-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 55px;
  height: 55px;
}
.navbar-menu .menu-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--bs-secondary);
  transition: all .25s;
}
.navbar-menu.active .navbar-menu-inner {
  justify-content: center;
}
.navbar-menu:hover .menu-line {
  background-color: var(--bs-primary);
}
.navbar-menu:hover .menu-line:nth-child(2) {
  width: 75%;
}
.navbar-menu:hover .menu-line:nth-child(3) {
  width: 50%;
}

.navbar.fixed-top {
  background-color: var(--bs-white) !important;
  padding: 10px 0;
  box-shadow: 0 0 10px 0 rgba(33,33,33,.5);
}
.navbar.fixed-top .navbar-brand-logo {
  max-width: 100px;
}

.navbar-nav .nav-link {
  font-size: 20px;
  font-weight: 300;
  padding: 0 0 20px 0;
  transition: all .25s;
  color: var(--bs-secondary);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  font-weight: 600;
}

.navbar-nav .dropdown-menu {
  padding: 0;
  border-radius: 15px;
  border: none;
  box-shadow: 0 0 10px 0 rgba(33,33,33,.15);
  margin-bottom: 15px;
}
.dropdown-item {
  padding: 10px 15px;
  font-size: 16px;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: transparent !important;
  color: var(--bs-secondary);
  font-weight: 600;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle {
  padding-right: 25px !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>');
  background-position: top 5px right;
  background-repeat: no-repeat;
  background-size: 22px;
}
.dropdown-toggle.show {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23333" class="bi bi-chevron-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708z"/></svg>');
}

.navbar-btns {
  display: flex;
  flex-direction: column;
  position: relative;
}
.navbar-btns .btn {
  font-size: 14px;
  padding: 0;
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-btns .btn:first-child,
.navbar-btns .btn:first-child i {
  border-radius: 15px 15px 0 0;
}
.navbar-btns .btn:first-child {
  border-bottom: 1px solid var(--bs-secondary);
}
.navbar-btns .btn:last-child,
.navbar-btns .btn:last-child i {
  border-radius: 0 0 15px 15px;
}
.navbar-btns .btn span {
  display: block;
  padding: 5px 15px;
}
.navbar-btns .btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  font-size: 18px;
  text-align: center;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  border-radius: 14px 0 0 14px;
}

/* SUBNAV */
.subnav {
  display: block;
  position: relative;
  margin: 15px 0;
}
.subnav-link {
  font-family: 'Kalam', 'Montserrat', sans-serif;
  color: var(--bs-secondary);
  margin-bottom: 15px;
  text-align: center;
  display: block;
  font-size: 30px;
  padding: 0 10px;
}
.subnav-link:hover,
.subnav-link.active {
  color: var(--bs-primary);
}

/* CONTAINER */
.container {
  padding-left: 30px;
  padding-right: 30px;
}
.container-inner {
  display: block;
  position: relative;
  background-color: var(--bs-white);
  border-radius: 15px 15px 0 0;
  margin-top: -150px;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* SECTION */
.section {
  display: block;
  position: relative;
  padding: 75px 0;
}
#section-start {
  min-height: auto;
  background-image: url('../img/section-start.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: start;
  padding-top: 165px;
}

/* CONTENT */
.content {
  display: block;
  position: relative;
  padding: 60px;
  color: var(--bs-white);
  border-radius: 15px;
  background-image: url('../img/content-bg.png');
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  min-height: 730px;
}
.content-title {
  font-size: 36px;
  margin-top: 0;
}
.content-title small {
  font-size: 26px;
}
.content-portrait {
  max-width: 220px;
  border-radius: 50%;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  padding: 45px 0;
  background-color: var(--bs-secondary);
  color: var(--bs-white);
}
.footer-sign {
  display: block;
  width: 100%;
  min-height: 200px;
  background-image: url('../img/mediation-sign.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 320px;
}
.footer .copyright small {  
  font-size: 14px;
}
.footer a {
  color: var(--bs-white);
}
.footer a:hover {
  color: var(--bs-white);
  opacity: .5;
}
.footer-nav {
  display: block;
}
.footer-nav a {
  margin-right: 10px;
}
.footer-nav a:last-child {
  margin-right: 0;
}
.footer-partner {
  border-radius: 15px;
}

/* SEO */
.seo {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.seo .seo-item {
  transition: none;
}

/* OFFCANVAS */
.offcanvas {
  border: none !important;
  box-shadow: none;
  top: 15px !important;
  right: 15px !important;
  bottom: 15px !important;
  border-radius: 15px;
}
.offcanvas-title {
  font-family: 'Kalam', 'Montserrat', sans-serif;
  font-size: 28px;
}
.offcanvas-header {
  padding: 30px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 15px 15px 0 0;
}
.offcanvas-body {
  padding: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--bs-white);
}
.offcanvas-header .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

/* CARD */
.card {
  border-radius: 15px;
  border: none;
  margin-top: 30px;
  background-color: #f5f5f5;
  height: calc(100% - 30px);
}
.bg-grey .card {
  background-color: var(--bs-white);
}
.card-img-top,
.card-top-video,
.card-top-audio {
  border-radius: 15px 15px 0 0;
}
.card-title {
  color: var(--bs-primary);
}
.card-body {
  padding: 30px;
}
.card-media {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* POSTIT */
.postit {
  margin: 15px auto;
  border-radius: 15px;
  width: 290px;
  height: 220px;
  padding: 25px 15px;
  background: #fefabc linear-gradient(150deg, #efec88 0%, #fefabc 100%);
  box-shadow: 5px 5px 3px 0 rgba(33,33,33,0.1);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom-right-radius: 60px 5px;
  position: relative;
}
.postit::before {
  content: "";
  background-color: rgba(0,0,0,0.025);
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0;
  height: 40px;
  z-index: -1;
  border-radius: 15px 15px 0 0;
}
.postit::after {
  content: attr(data-postit);
  width: 45px;
  height: 45px;
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 25px;
  font-family: 'Kalam', 'Montserrat', sans-serif;
}
.postit .postit-text {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  font-family: 'Kalam', 'Montserrat', sans-serif;
  padding-top: 25px;
  line-height: 1.25;
}
.postit .postit-text small {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.postit.r1 {
  transform: rotate(-2.5deg);
}
.postit.r2 {
  transform: rotate(2.5deg);
}

.phasen-headline {
  font-size: 25px;
  font-weight: 600;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  background-image: url('../img/phasen2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* NEWS */
.newsitem {
  display: block;
  position: relative;
  margin-bottom: 30px;
}
.newsitem-img {
  width: 100%;
  max-width: 320px;
  border-radius: 15px;
  margin-bottom: 15px;
}
.newsitem-title {
  margin-top: 0;
  font-size: 22px;
}

/* ACCORDION */
.accordion-item {
  border: none;
  border-radius: 15px !important;
  margin-bottom: 15px;
}
.accordion-button {
  border-radius: 15px !important;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-secondary);
  color: var(--bs-white);
  box-shadow: none !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-body {
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
  text-align: justify;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}
.form-control,
.form-select {
  padding: 15px;
  border-radius: 15px;
  border-color: var(--bs-secondary);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: none;
}

.form-check-input:checked {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary);
}
.form-check-input,
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--bs-secondary);
}

.has-error .form-check-label,
.has-error .form-label,
.has-error .help-block {
  color: var(--bs-danger);
}
.has-error .form-control,
.has-error .form-select {
  border-color: var(--bs-danger);
}

#danke {
  display: none;
}

/* MOBIL */
@media (max-width: 1399.98px) {
  /* SUBNAV */
  .subnav-link {
    font-size: 22px;
  }
}
@media (max-width: 1199.98px) {
  /* NAV */
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand-logo {
    max-width: 100px;
  }

  .navbar-btns {
    position: fixed;
    right: 0;
    bottom: 53px;
    flex-direction: column;
  }
  .navbar-btns .btn {
    border: none;
    height: 48px;
    width: 48px;
    border-radius: 15px 0 0 15px;
    border-top: 1px solid var(--bs-white);
    border-left: 1px solid var(--bs-white);
    border-bottom: 1px solid var(--bs-white) !important;
    margin-top: 5px;
  }
  .navbar-btns .btn span {
    display: none;
  }
  .navbar-btns .btn:first-child, 
  .navbar-btns .btn:first-child i,
  .navbar-btns .btn:last-child, 
  .navbar-btns .btn:last-child i {
    border-radius:15px 0 0 15px;
  }
  .navbar-btns .btn i {
    background-color: transparent;
    color: var(--bs-white);
    border-radius: 15px 0 0 15px !important;
    height: 48px;
    width: 48px;
    font-size: 22px;
  }

  .navbar-menu .navbar-menu-title {
    font-size: 16px;
  }
  .navbar-menu .navbar-menu-inner {
    height: 45px;
  }

  /* CONTAINER */
  .container-inner {
    margin-top: -75px;
  }

  /* CONTENT */
  .content {
    padding: 30px;
  }

  /* SECTION */
  .section {
    padding: 30px 0;
  }
  #section-start {
    padding-top: 106px;
  }

  /* FOOTER */
  .footer h3 {
    font-size: 22px;
  }
  .footer-partner {
    max-width: 55px;
  }
}
@media (max-width: 991.98px) {
  /* TYPOGRAPHY */
  h1, .h1 {
    margin-top: 0;
    font-size: 38px;
  }
  h2, .h2 {
    font-size: 34px;
  }
  h3, .h3 {
    font-size: 30px;
  }
  h4, .h4 {
    font-size: 26px;
  } 
  h5, .h5 {
    font-size: 22px;
  } 
  h6, .h6 {
    font-size: 18px;
  }

  /* NAV */
  .navbar-brand-caption {
    display: none;
  }

  /* SUBNAV */
  .subnav-link {
    font-size: 18px;
    padding: 0;
  }

  /* SECTION */
  #section-start {
    padding-top: 90px;
  }

  /* CONTENT */
  .content-title {
    font-size: 24px;
  }
  .content .ul li {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  /* SECTION */
  #section-start {
    padding-top: 105px;
  }

  /* NEWS */
  .newsitem-img {
    max-width: 100%;
    object-fit: cover;
    object-position: center bottom;
    height: 280px;
  }
}
@media (max-width: 575.98px) {
  /* CONTAINER */
  .container-inner {
    border-radius: 0;
  }

  /* NEWS */
  .newsitem-img {
    max-width: 100%;
    object-fit: cover;
    object-position: center bottom;
    height: 240px;
  }
}