@charset "UTF-8";
.partner-logos-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.partner-logos-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Standard grid for 8 or fewer items */
.partner-logos-container:not(.partner-logos-container--carousel) .partner-logos-track {
  grid-template-columns: repeat(4, 1fr);
}

/* Carousel mode for more than 8 items */
.partner-logos-container--carousel {
  cursor: -webkit-grab;
  cursor: grab;
  padding: 0 1rem;
}

.partner-logos-container--carousel.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.partner-logos-container--carousel .partner-logos-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 1rem;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.partner-logos-container--carousel .partner-logo-item {
  min-width: 200px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 110px;
  background: linear-gradient(90deg, #F2F7FF, #DCEBF9);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.partner-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px #8CD500;
}
.partner-logo-item:hover .partner-logo-item__image {
  filter: grayscale(0%);
}

.partner-logos-container--carousel.is-dragging .partner-logo-item {
  pointer-events: none;
}

.partner-logo-item__image {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

/* Fade edges effect for carousel */
.partner-logos-container--carousel::before,
.partner-logos-container--carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}

.partner-logos-container--carousel::before {
  /*left: 0;*/
  /*background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
}

.partner-logos-container--carousel::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .partner-logos-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-logos-container--carousel .partner-logos-track {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }
  .partner-logos-container--carousel .partner-logo-item {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .partner-logos-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .partner-logos-container--carousel .partner-logos-track {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }
  .partner-logos-container--carousel .partner-logo-item {
    min-width: 150px;
  }
  .partner-logo-item {
    padding: 1.5rem 1rem;
    min-height: 100px;
  }
  .partner-logo-item__image {
    max-height: 60px;
  }
  .partner-logos-container--carousel::before,
  .partner-logos-container--carousel::after {
    width: 40px;
  }
}
@media (max-width: 480px) {
  .partner-logos-track {
    grid-template-columns: 1fr;
  }
  .partner-logos-container--carousel .partner-logos-track {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }
  .partner-logos-container--carousel .partner-logo-item {
    min-width: 120px;
  }
}
.news .list-view-more {
  justify-content: flex-end;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 768px) and (max-width: 991px) {
  .news .list-view-more {
    justify-content: center;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 0 0 #8CD500;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card .news-img-wrap {
  width: 100%;
}
.news-card .news-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-bottom: 0;
}
.news-card .news-card-body {
  padding: 0.625rem;
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
  width: 100%;
}
.news-card .news-card-body .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
.news-card .news-card-body .news-card-title {
  font-size: 1.25rem;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-card .news-card-body .news-card-title {
    font-size: 16px;
    min-height: revert;
  }
}
.news-card .news-card-body .teaser-text {
  font-size: 1.25rem;
  line-height: 26px;
  font-weight: 400;
  flex: 1 1 auto;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-card .news-card-body .teaser-text {
    font-size: 16px;
  }
  .news-card .news-card-body .teaser-text p {
    margin-bottom: 0;
  }
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-card .news-card-body .more {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px) {
  .news-card .news-card-body .more {
    font-size: 1.25rem;
  }
}

.top-termin .news-card-body {
  width: 50%;
}

.news-single h1 {
  font-size: 2.75rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-single h1 {
    font-size: 2rem;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
.news-single h1 p {
  margin: 0;
}
.news-single h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-single h2 {
    font-size: 2rem;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
.news-single .img-fluid {
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 2rem;
}
.news-single .caption {
  font-size: 1rem;
  line-height: 1.2rem;
  opacity: 0.5;
  margin-top: 0.3rem;
}
.news-single .lead {
  box-shadow: -4px 0 0 0 #8CD500;
  padding-left: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-single .lead {
    font-size: 2rem;
  }
}
.news-single .border-bottom {
  border-bottom: none !important;
}
.news-single .news-related-files {
  background: linear-gradient(to right, #F2F7FF 0%, #DCEBF9 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.news-single .news-related-files .list-group-item {
  background-color: transparent;
  border: none;
  padding: 20px 0 0 0;
}
.news-single .news-related-files .list-group-item .fa-file {
  background-image: url("../Icons/pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  font-size: inherit;
  line-height: 1.2;
  top: -6px;
  width: 32px;
  height: 32px;
}
.news-single .news-related-files .list-group-item .fa-file::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url("../Icons/pdf.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.news-single .news-related-news {
  padding-bottom: 2rem;
}
.news-single .news-related-news .list-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.news-single .news-related-news .list-group-item {
  border-color: transparent;
  padding: 0;
  background: linear-gradient(90deg, rgb(242, 247, 255) 0%, rgb(220, 235, 249) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 0 0 #8CD500;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-single .news-related-news .list-group-item img {
  max-width: 100%;
  height: 14rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-single .news-related-news .list-group-item .news-card-title {
  font-size: 1.25rem;
  line-height: 26px;
  font-weight: 700;
  margin: 0.75rem;
}
.news-single {
  /* =========================
   TABLET 
   ========================= */
}
@media (min-width: 992px) and (max-width: 1199px), (min-width: 768px) and (max-width: 991px) {
  .news-single .news-related-news .list-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .news-single .news-related-news .list-group-item img {
    height: 12rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news-single .news-related-news .list-group-item .news-card-title {
    font-size: 1.125rem;
    line-height: 24px;
  }
}
.news-single {
  /* =========================
   MOBILE 
   ========================= */
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-single .news-related-news .list-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .news-single .news-related-news .list-group-item img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news-single .news-related-news .list-group-item .news-card-title {
    font-size: 1rem;
    line-height: 22px;
    margin: 0.75rem;
  }
}
.news-single .news-related-links {
  background: linear-gradient(to right, #F2F7FF 0%, #DCEBF9 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.news-single .news-related-links .list-group-item {
  background-color: transparent;
  border: none;
  padding: 20px 0 0 0;
}
.news-single .news-related-links .fa-solid,
.news-single .news-related-links .fas {
  font-weight: 900;
  padding-right: 10px;
}
.news-single h1:after,
.news-single h2:after {
  display: none;
}

.news-section-in-hero .gradient-background {
  position: absolute;
  top: 90%;
  height: 45%;
  z-index: 4;
  background: linear-gradient(135deg, #0d5580 0%, #1a6ba8 50%, #2778b8 100%);
  -webkit-clip-path: polygon(0 1%, 40% 1%, 50% 10%, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 1%, 40% 1%, 50% 10%, 100% 10%, 100% 100%, 0 100%);
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .news-section-in-hero .gradient-background {
    position: absolute;
    top: 90%;
    height: 160%;
    z-index: 4;
    -webkit-clip-path: polygon(0 1%, 60% 1%, 70% 3%, 100% 3%, 100% 100%, 0 100%);
            clip-path: polygon(0 1%, 60% 1%, 70% 3%, 100% 3%, 100% 100%, 0 100%);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .news-section-in-hero .gradient-background {
    height: 95%;
    -webkit-clip-path: polygon(0 1%, 60% 1%, 70% 5%, 100% 5%, 100% 100%, 0 100%);
            clip-path: polygon(0 1%, 60% 1%, 70% 5%, 100% 5%, 100% 100%, 0 100%);
  }
}
.news-section-in-hero .content {
  position: relative;
  z-index: 6;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px), (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px), (min-width: 1200px) and (max-width: 1399px), (min-width: 1400px) {
  .news-section-in-hero .content h2 {
    margin-top: 1rem;
    position: absolute;
    z-index: 8;
    top: -60px;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px), (min-width: 1200px) and (max-width: 1399px), (min-width: 1400px) {
  .news-section-in-hero .content h2 {
    top: -115px;
  }
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-section-in-hero .content .news-list-items {
    padding-top: 2rem;
  }
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .news-section-in-hero .content .news-list-items .news-card:last-child {
    margin-bottom: 0;
    transform: translateY(0);
  }
}

@media (min-width: 767px) {
  #top-termin .news-card-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
  }
}
#top-termin .news-card-body {
  padding: 1.25rem;
}

#top-termin .teaser-text {
  overflow: hidden;
}
#top-termin .teaser-text p {
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.teaser-cropped {
  display: none;
}

@media (max-width: 767px) {
  .teaser-full {
    display: none;
  }
  .teaser-cropped {
    display: block;
  }
}
.frame-layout-1655112172 .card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 0px 0px #8CD500;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 0;
}
.frame-layout-1655112172 .card .card-header {
  background: linear-gradient(90deg, #F2F7FF, #DCEBF9);
  padding: 0;
}
.frame-layout-1655112172 .card .card-body {
  padding: 0;
}
.frame-layout-1655112172 .card .card-title {
  color: #0F2A47;
  font-size: 1.25rem;
  line-height: 26px;
  font-weight: 700;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.frame-layout-1655112172 .card .card-text {
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.frame-layout-1655112173 .card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 0 0 #8CD500;
  display: flex;
  flex-direction: column;
  height: 500px;
  border: 0;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .frame-layout-1655112173 .card {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 1400px) {
  .frame-layout-1655112173 .card {
    max-height: 420px;
  }
}
.frame-layout-1655112173 .card .card-header {
  background: linear-gradient(90deg, #F2F7FF, #DCEBF9);
  padding: 0;
}
.frame-layout-1655112173 .card .card-body {
  padding: 0;
}
.frame-layout-1655112173 .card .card-body .card-title {
  color: #0F2A47;
  font-size: 1.25rem;
  line-height: 26px;
  font-weight: 700;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.frame-layout-1655112173 .card .card-body .card-text {
  font-size: 1.25rem;
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.frame-layout-1655112173 .card .card-body .card-text p {
  color: #00131A;
}

.blau-section {
  position: relative;
}
.blau-section h2 {
  color: #ffffff;
}
.blau-section p {
  color: #ffffff;
}

.blau-section1 {
  position: relative;
}
.blau-section1 h2 {
  color: #ffffff;
}
.blau-section1 p {
  color: #ffffff;
}
.blau-section1::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 98vw;
  height: 100%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to right, #094B72 0%, #206CB1 100%);
}
.blau-section1 .ce-gallery {
  width: 100%;
}
.blau-section1 .ce-gallery .ce-column {
  width: 100%;
}
.blau-section1 .ce-gallery .ce-column .image {
  width: 100%;
}
.blau-section1 .ce-gallery .ce-column .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.button-wrapper {
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  font-size: 1.25rem;
  font-weight: 600;
  background-color: #206CB1;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
  border: none;
}
.btn-primary:hover {
  background: linear-gradient(90deg, #094B72, #206CB1);
  border: none;
}

.btn-primary-white {
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #ffffff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0;
  border: none;
}
.btn-primary-white:hover {
  background: linear-gradient(90deg, #F2F7FF, #DCEBF9);
  border: none;
}

.counter .cube {
  position: relative;
  height: 500px;
  padding: 0 5px;
  margin-bottom: 30px;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .counter .cube {
    margin-bottom: 20px;
  }
}
.counter .cube .item-animate {
  position: absolute;
  transition: all ease 0.3s;
  height: 50%;
  flex-direction: column;
  align-items: center !important;
  flex-wrap: wrap;
  left: 0;
  right: 0;
  margin: 0 5px;
  justify-content: center;
  align-content: center;
}
.counter .cube .back-image-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.counter .cube .back-image-container .counter-img-bg {
  overflow: hidden;
  flex: 1;
}
.counter .cube .back-image-container .counter-img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.counter .cube .back-image-container .counter-img-bg ::before,
.counter .cube .back-image-container .counter-img-bg ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.counter .cube:nth-child(1) .item-animate {
  background: linear-gradient(90deg, #A67C00, #7B5E09);
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  border-radius: 0 0 12px 12px;
  color: #ffffff;
}
.counter .cube:nth-child(2) .item-animate {
  background: linear-gradient(90deg, #C0FE1A, #6EA400);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px 12px 0 0;
  color: #0F2A47;
}
.counter .cube:nth-child(3) .item-animate {
  background: linear-gradient(90deg, #094B72, #206CB1);
  background-repeat: no-repeat;
  background-position: center;
  bottom: 0;
  border-radius: 0 0 12px 12px;
  color: #ffffff;
}
.counter .cube:nth-child(4) .item-animate {
  background: linear-gradient(90deg, #A67C00, #7B5E09);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
}
.counter .code {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 17px;
}
.counter .key-fact-title {
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}

#top-termin {
  display: flex;
  flex-direction: row;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  #top-termin {
    flex-direction: column-reverse;
  }
}

@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .newsevent-list-termine {
    background: #DCEBF9;
    border-radius: 12px;
  }
  .newsevent-list-termine header {
    padding: 1rem;
  }
  .newsevent-list-termine header h2 {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}
@media (min-width: 320px) and (max-width: 480px) and (min-width: 320px) and (max-width: 480px), (min-width: 320px) and (max-width: 480px) and (min-width: 481px) and (max-width: 767px), (min-width: 481px) and (max-width: 767px) and (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) and (min-width: 481px) and (max-width: 767px) {
  .newsevent-list-termine .event-list .list-view-more {
    transform: translateY(60%);
  }
}

.event-card {
  background: #DCEBF9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 2px;
  padding: 1.37rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .event-card {
    padding: 1rem;
    border-bottom: solid #ffffff;
    border-radius: 0;
  }
}
.event-card .event-title {
  font-weight: 700;
}
.event-card .event-datetime {
  font-size: 1.25rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .event-card .event-datetime {
    font-size: 13px;
  }
}

.news-termin-box {
  background: linear-gradient(90deg, rgb(242, 247, 255) 0%, rgb(220, 235, 249) 100%);
}

.ansprechpartner {
  height: 100%;
}

.link-list {
  list-style: none;
}

.link-list li {
  list-style: none;
  position: relative;
  padding: 1rem;
  margin-left: -2rem;
  max-width: 1000px;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgb(242, 247, 255) 0%, rgb(220, 235, 249) 100%);
  border-radius: 10px;
  margin: 10px 0;
}

.link-list li:hover {
  background: rgb(220, 235, 249);
}

.link-list ul {
  padding: 0;
}
.link-list li:hover a:after {
  opacity: 1;
}
.link-list li a:after {
  opacity: 0;
  transition: all 0.3s ease;
  content: "";
  width: 4rem;
  height: 4rem;
  background-image: url(../Icons/Arrow_big.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  filter: brightness(100%);
  float: right;
  margin-top: 6px;
}

.shariff ul {
  display: flex;
  gap: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .shariff ul {
    margin-bottom: -1rem;
    margin-top: -1rem;
  }
}
.shariff .orientation-horizontal.button-style-standard li {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  flex: 0 0 56px !important;
  border: 3px solid #8CD500;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shariff .orientation-horizontal.button-style-standard li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  padding: 0;
}
.shariff .orientation-horizontal.button-style-standard li {
  /* Text ausblenden */
}
.shariff .orientation-horizontal.button-style-standard li .share_text {
  display: none;
}
.shariff .orientation-horizontal.button-style-standard li {
  /* Icons */
}
.shariff .orientation-horizontal.button-style-standard li span {
  font-size: 24px;
  color: #8CD500;
}
.shariff .orientation-horizontal.button-style-standard li:hover {
  background-color: #8CD500;
}
.shariff .orientation-horizontal.button-style-standard li:hover span {
  color: #ffffff;
}

.tx-t3social .filter-button-group {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
}
.tx-t3social .btn.btn-secondary {
  font-size: 1.25rem;
  font-weight: 700;
  background: #206CB1;
  border-radius: 0;
  border: 0;
}
.tx-t3social .btn.btn-secondary:hover, .tx-t3social .btn.btn-secondary:focus {
  background: linear-gradient(90deg, #094B72, #206CB1);
}
.tx-t3social .btn.btn-secondary:not(:first-child) {
  width: 76px;
  font-size: 0;
}
.tx-t3social .btn.btn-secondary:not(:first-child) i {
  font-size: 2rem;
}
.tx-t3social #post-container .sm-item-container {
  padding-top: 1rem;
  box-shadow: revert;
}
.tx-t3social #post-container .sm-item-container .card {
  background-color: #DCEBF9;
  border-color: #DCEBF9;
  border-radius: 12px;
}
.tx-t3social #post-container .sm-item-container .card .post-date {
  font-size: 18px;
}
.tx-t3social #post-container .sm-item-container .card i {
  color: #206CB1;
}
.tx-t3social #post-container .sm-item-container .card .card-body {
  font-size: 16px;
}
.tx-t3social #post-container .sm-item-container .card .card-body .more {
  text-decoration: underline;
}

/* almarai-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Almarai";
  font-style: normal;
  font-weight: 300;
  src: url("../Fonts/Almarai/almarai-v19-latin-300.eot"); /* IE9 Compat Modes */
  src: url("../Fonts/Almarai/almarai-v19-latin-300.eot?#iefix") format("embedded-opentype"), url("../Fonts/Almarai/almarai-v19-latin-300.woff2") format("woff2"), url("../Fonts/Almarai/almarai-v19-latin-300.woff") format("woff"), url("../Fonts/Almarai/almarai-v19-latin-300.ttf") format("truetype"), url("../Fonts/Almarai/almarai-v19-latin-300.svg#Almarai") format("svg"); /* Legacy iOS */
}
/* almarai-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Almarai";
  font-style: normal;
  font-weight: 400;
  src: url("../Fonts/Almarai/almarai-v19-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../Fonts/Almarai/almarai-v19-latin-regular.eot?#iefix") format("embedded-opentype"), url("../Fonts/Almarai/almarai-v19-latin-regular.woff2") format("woff2"), url("../Fonts/Almarai/almarai-v19-latin-regular.woff") format("woff"), url("../Fonts/Almarai/almarai-v19-latin-regular.ttf") format("truetype"), url("../Fonts/Almarai/almarai-v19-latin-regular.svg#Almarai") format("svg"); /* Legacy iOS */
}
/* almarai-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Almarai";
  font-style: normal;
  font-weight: 700;
  src: url("../Fonts/Almarai/almarai-v19-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../Fonts/Almarai/almarai-v19-latin-700.eot?#iefix") format("embedded-opentype"), url("../Fonts/Almarai/almarai-v19-latin-700.woff2") format("woff2"), url("../Fonts/Almarai/almarai-v19-latin-700.woff") format("woff"), url("../Fonts/Almarai/almarai-v19-latin-700.ttf") format("truetype"), url("../Fonts/Almarai/almarai-v19-latin-700.svg#Almarai") format("svg"); /* Legacy iOS */
}
/* almarai-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Almarai";
  font-style: normal;
  font-weight: 800;
  src: url("../Fonts/Almarai/almarai-v19-latin-800.eot"); /* IE9 Compat Modes */
  src: url("../Fonts/Almarai/almarai-v19-latin-800.eot?#iefix") format("embedded-opentype"), url("../Fonts/Almarai/almarai-v19-latin-800.woff2") format("woff2"), url("../Fonts/Almarai/almarai-v19-latin-800.woff") format("woff"), url("../Fonts/Almarai/almarai-v19-latin-800.ttf") format("truetype"), url("../Fonts/Almarai/almarai-v19-latin-800.svg#Almarai") format("svg"); /* Legacy iOS */
}
:root {
  /* Abstände / Größen */
  --header-height: 120px;
  --search-width: 32rem;
  --search-height: 3rem;
  --border-radius-small: 12px;
  --border-radius-round: 999px;
  /* Animation */
  --transition-fast: 0.3s ease;
}

.container-narrow .image {
  padding-right: 3rem;
}
@media(min-width: 1400px) ,
  (min-width: 1200px) and (max-width: 1399px) {
  .container-narrow {
    padding: 0 20rem;
  }
  .container-narrow h1,
  .container-narrow h2 {
    margin-left: -20rem;
    margin-bottom: 0rem;
    margin-right: -20rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container-narrow {
    padding: 0 10rem;
  }
  .container-narrow h1,
  .container-narrow h2 {
    margin-left: -10rem;
    margin-bottom: 0rem;
    margin-right: -10rem;
  }
}
.container-narrow h2 {
  box-shadow: -4px 0 0 0 #8CD500;
  padding-left: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-size: 2.25rem;
  font-weight: 300;
  color: #0F2A47;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .container-narrow h1 {
    margin-bottom: 0rem;
  }
}

@media(min-width: 1400px) ,
  (min-width: 1200px) and (max-width: 1399px) {
  .karr {
    padding: 0 20rem;
  }
  .karr h1 {
    margin-left: -20rem;
    margin-right: -20rem;
  }
  .karr h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .karr {
    padding: 0 10rem;
  }
  .karr h1 {
    margin-left: -10rem;
    margin-right: -10rem;
  }
  .karr h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px), (min-width: 768px) and (max-width: 991px) {
  .karr h2 {
    font-size: 1.65rem !important;
    margin-bottom: 1rem;
  }
}

.bg-hellblau {
  background: linear-gradient(to right, #F2F7FF 0%, #DCEBF9 100%);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.bg-hellblau:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px #8CD500;
}

.bg-hellblau-text .frame-type-text {
  background: linear-gradient(to right, #F2F7FF 0%, #DCEBF9 100%);
  border-radius: 12px;
  padding: 1.5rem;
  height: auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.bg-hellblau-text .frame-type-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px #8CD500;
}

.green-div .frame-type-div hr {
  height: 3px;
  color: #8CD500;
  opacity: 1;
}

.bg-senf {
  background: linear-gradient(to right, #A67C00 0%, #D4AF37 100%);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.bg-senf:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px #8CD500;
}

.bg-senf-text .frame-type-textpic {
  background: linear-gradient(to right, #A67C00 0%, #D4AF37 100%);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.bg-senf-text .frame-type-textpic:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0 #8CD500;
}

.ce-image .ce-gallery img {
  border-radius: 12px;
}

.gradient-background {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, #0d5580 0%, #1a6ba8 50%, #2778b8 100%);
  -webkit-clip-path: polygon(0 0, 68% 0, 75% 5%, 100% 5%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 68% 0, 75% 5%, 100% 5%, 100% 100%, 0 100%);
  z-index: 1;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px), (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px), (min-width: 1200px) and (max-width: 1399px), (min-width: 1400px) {
  .gradient-background {
    position: absolute;
    top: 0;
    height: 95%;
    z-index: -1;
    -webkit-clip-path: polygon(0 1%, 60% 1%, 70% 3%, 100% 3%, 100% 100%, 0 100%);
            clip-path: polygon(0 1%, 60% 1%, 70% 3%, 100% 3%, 100% 100%, 0 100%);
  }
}
@media (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px), (min-width: 1200px) and (max-width: 1399px), (min-width: 1400px) {
  .gradient-background {
    height: 92%;
    -webkit-clip-path: polygon(0 1%, 40% 1%, 50% 10%, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 1%, 40% 1%, 50% 10%, 100% 10%, 100% 100%, 0 100%);
  }
}

footer {
  background-color: #0B4E78;
  margin-top: 6rem;
  padding: 1rem;
  color: #ffffff;
}
footer .ce-image .ce-gallery img {
  border-radius: 0;
}
@media (max-width: 575px) {
  footer .ce-center .ce-inner {
    position: relative;
    float: left;
    right: -50%;
    width: 50%;
  }
}
footer .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
footer ::after, footer ::before {
  box-sizing: border-box;
  color: #ffffff;
}
footer a {
  color: #ffffff !important;
}
footer sub {
  color: #ffffff;
}
footer p {
  color: #ffffff;
  font-size: 1.125rem;
}
footer .socialemail {
  align-items: center;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  footer .socialemail {
    align-items: flex-start;
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  footer .socialemail .social-media span {
    padding-right: 0.5rem;
  }
}

.social-media {
  display: flex;
  gap: 0.75rem;
}
.social-media .sm-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-media .sm-icon i {
  font-size: 1.5rem;
  line-height: 1;
}

.footer-nav {
  flex-wrap: wrap;
}
.footer-nav .nav {
  font-size: 1.125rem;
}

.footer-email {
  margin-bottom: -10px;
}

.logo-partner {
  justify-content: flex-end;
  text-align: right;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .logo-partner {
    justify-content: flex-start;
    text-align: left;
  }
  .logo-partner p {
    font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .impressum .nav {
    flex-direction: column;
  }
  .impressum .nav .nav-link {
    padding: 0.15rem 0;
    font-size: 12px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #ffffff !important;
}
@media (min-width: 1400px) {
  .navbar .navbar-collapse {
    padding-left: 8%;
  }
}
.navbar .navbar-collapse .navbar-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.navbar img {
  max-height: 80px;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .navbar img {
    width: 100px;
  }
}
.navbar .navbar-toggler {
  border-color: transparent;
}
.navbar .navbar-toggler-icon {
  background-image: url(../Icons/Hamburger.svg);
  width: 3rem;
  height: 3rem;
  display: inline-block;
}
.navbar .offcanvas-top {
  flex-direction: row;
}
.navbar .collapse {
  font-size: 1.125rem;
}
.navbar .collapse .nav-link {
  color: #00131A;
  text-decoration: none;
  font-size: 1.125rem;
  white-space: nowrap;
}
.navbar .collapse .nav-link:hover {
  text-decoration: underline;
  color: #0F2A47;
}
.navbar .collapse::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #8CD500;
}

@media (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px), (min-width: 1200px) and (max-width: 1399px), (min-width: 1400px) {
  #main-nav {
    margin-top: 3rem;
  }
}

@media (min-width: 768px) and (max-width: 991px), (min-width: 992px) and (max-width: 1199px) {
  #main-menu .nav-link {
    font-size: 14px !important;
  }
}
#main-menu .nav-item.dropdown .dropdown-menu {
  border: none !important;
}
#main-menu .nav-item.dropdown .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.5rem !important;
}

#slider-container {
  padding: 0;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: visible;
  z-index: 4;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .hero-section {
    min-height: 85vh;
  }
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .hero-section h1 {
    font-size: 32px;
  }
}
.hero-section .hero-header-blau {
  margin-top: 0;
}
.hero-section .hero-header-blau h2 {
  color: #ffffff;
}
.hero-section h1::after, .hero-section h2::after {
  text-decoration: none;
  background: none;
}
.hero-section {
  position: relative;
  width: 100%;
  min-height: 91vh;
  overflow: visible;
  /* Hintergrundbild */
}
.hero-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero-section {
  /* Overlay */
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-section {
  /* SVG-Shape unten (Union.svg) */
  /* Container für Text */
}
.hero-section .container {
  padding-top: 8rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .hero-section .container {
    padding-top: 5rem;
  }
}
.hero-section {
  /* Text + transparenter Kasten */
}
.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 606px;
  color: #00131A;
}
.hero-section .hero-content::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -2rem;
  right: -6rem;
  bottom: -1.5rem;
  background: rgba(255, 255, 255, 0.68);
  z-index: -1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 59%, 84% 100%, 0% 100%, 0% 15%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 59%, 84% 100%, 0% 100%, 0% 15%);
  border-radius: 10px;
}
.hero-section .hero-content h1 {
  margin-bottom: 1rem;
}
.hero-section .hero-content p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section::after {
    height: 100px;
    background-size: 100% auto;
  }
  .hero-section .hero-content::before {
    left: -1rem;
    right: -1rem;
    top: -1rem;
    bottom: -1rem;
  }
}
.sticky-menu {
  position: fixed;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  background: #ffffff;
  padding: 32px 20px;
  border-left: solid 3px #8CD500;
  transition: right 0.3s ease;
}
.sticky-menu .btn-arrow {
  position: absolute;
  top: 14%;
  left: -81px;
  transform: translateY(50%) scale(0.7);
  z-index: 996;
  border: none;
  background: none;
}
.sticky-menu:hover {
  right: 0;
}
.sticky-menu.hover-paused:hover {
  right: 0;
}

.menu-button {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  border: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.menu-button:hover {
  transform: scale(1.1);
}
.menu-button.service-button, .menu-button.btn-job, .menu-button.btn-phone {
  background: #8CD500;
}
.menu-button i {
  color: #ffffff;
  font-size: 20px;
}

.slideout-panel {
  position: fixed;
  right: -600px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 258px;
  height: 250px;
  border-radius: 10px 0 0 10px !important;
  background: #ffffff;
  box-shadow: -5px 0 15px rgba(54, 54, 54, 0.3019607843);
  transition: right 0.4s ease;
  z-index: 998;
  overflow-y: hidden;
}
.slideout-panel.active {
  right: -40px;
}
.slideout-panel .panel-content {
  padding: 0;
}
.slideout-panel .panel-content .map-container {
  border: 2px solid #8CD500;
  border-radius: 13px 0 0 13px;
  width: 100%;
  height: 235px;
  background: #ffffff;
  border: 3px solid #8CD500;
  margin-bottom: 0;
}
.slideout-panel .panel-content .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.slideout-panel .panel-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 10px 0;
}
.slideout-panel#contactPanel {
  border: 2px solid #8CD500;
  border-radius: 13px 0 0 13px;
}
.slideout-panel#contactPanel .contact-container {
  padding: 0;
}
.slideout-panel#contactPanel .contact-container .contact-item {
  display: flex;
  align-items: center;
  margin-top: 3px;
  margin-left: 15px;
}
.slideout-panel#contactPanel .contact-container .contact-item .contact-item-content {
  margin-top: 33px;
}
.slideout-panel#contactPanel .contact-container .contact-item .contact-item-content p {
  margin: 0;
  font-size: 18px;
}
.slideout-panel#contactPanel .contact-container .contact-item .contact-item-content p a {
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}
.slideout-panel#jobPanel {
  border: 2px solid #8CD500;
  border-radius: 13px 0 0 13px;
}
.slideout-panel#jobPanel .job-container {
  padding: 0;
}
.slideout-panel#jobPanel .job-container .job-item {
  display: flex;
  align-items: center;
  margin-top: 3px;
  margin-left: 15px;
}
.slideout-panel#jobPanel .job-container .job-item .job-item-content {
  margin-top: 33px;
}
.slideout-panel#jobPanel .job-container .job-item .job-item-content p {
  margin: 0;
  font-size: 18px;
}
.slideout-panel#jobPanel .job-container .job-item .job-item-content p a {
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}
.slideout-panel#servicePanel {
  border: 2px solid #8CD500;
  border-radius: 13px 0 0 13px;
}
.slideout-panel#servicePanel .service-container {
  padding: 0;
}
.slideout-panel#servicePanel .service-container .service-item {
  display: flex;
  align-items: center;
  margin-top: 3px;
  margin-left: 15px;
}
.slideout-panel#servicePanel .service-container .service-item .service-item-content {
  margin-top: 33px;
}
.slideout-panel#servicePanel .service-container .service-item .service-item-content p {
  margin: 0;
  font-size: 18px;
}
.slideout-panel#servicePanel .service-container .service-item .service-item-content p a {
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 996;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.share-button.copied {
  position: relative;
  box-shadow: 2px 2px 2px rgba(0, 128, 0, 0.4117647059);
}
.share-button.copied:after {
  content: "Link kopiert!";
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #8CD500;
  display: table;
  top: 0;
  padding: 10px;
  left: -100px;
  background-color: #ffffff;
  box-shadow: 2px 2px 2px rgba(0, 128, 0, 0.4117647059);
  border-radius: 8px;
}

body {
  background-color: #FDFEFF;
  font-family: "Almarai";
  color: #00131A;
  padding-top: var(--header-height);
  font-size: 1.25rem;
  line-height: 26px;
}

:root {
  /* Schrift */
  --font-family: "Almarai";
  --font-size-base: 1.25rem;
  --font-size-input: 1.25rem;
}

h1,
h2 {
  position: relative;
  display: inline-block;
}
h1::after,
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #A67C00, #927214);
  -webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  h1::after,
  h2::after {
    height: 6px;
  }
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #0F2A47;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

h2 {
  font-size: 3.12rem;
  font-weight: 800;
  color: #0F2A47;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  h2 {
    font-size: 34px;
  }
}

.h2-white h2 {
  color: #ffffff;
}

h3 {
  font-size: 2.875rem;
  font-weight: 800;
  color: #0F2A47;
}

a {
  color: #00131A;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #0F2A47;
}

/* Ansprechpartner */
.lead {
  font-size: 2.25rem;
  font-weight: 300;
  color: #0F2A47;
  margin-bottom: auto;
  line-height: normal;
}

.frame-layout-10 p {
  font-size: 1.25rem;
  line-height: 26px;
}
.frame-layout-10 h1 {
  font-size: 2.75rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .frame-layout-10 h1 {
    font-size: 32px;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
.frame-layout-10 h1::after {
  display: none;
}
.frame-layout-10 h2 {
  font-size: 2.25rem;
}
@media (min-width: 320px) and (max-width: 480px), (min-width: 481px) and (max-width: 767px) {
  .frame-layout-10 h2 {
    font-size: 2rem;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
.frame-layout-10 h2::after {
  display: none;
}
.frame-layout-10 h3 {
  font-size: 1.75rem;
}
.frame-layout-10 table.contenttable td,
.frame-layout-10 table.contenttable th {
  vertical-align: top;
}
.frame-layout-10 table.contenttable td,
.frame-layout-10 table.contenttable th,
.frame-layout-10 table.contenttable tr {
  border: 0;
}
.frame-layout-10 table.contenttable tbody td {
  padding: 0 15px 6px 0;
}
.frame-layout-10 table.contenttable tbody td:first-child {
  width: 20%;
}

a.icon-mail::before {
  content: "";
  background-image: url(../Icons/email.svg);
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-bottom: -5px;
}

.icon-tel::before {
  content: "";
  background-image: url(../Icons/phone.svg);
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-bottom: -5px;
}

.icon-mob-tel::before {
  content: "";
  background-image: url(../Icons/smart-phone.svg);
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-bottom: -5px;
}

.icon-foto::before {
  content: "";
  background-image: url(../Icons/Foto.svg);
  background-size: contain;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-bottom: -5px;
}

.icon-pdf::before {
  content: "";
  background-image: url(../Icons/pdf.svg);
  background-size: contain;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-bottom: -5px;
}

.mark-text {
  box-shadow: -4px 0 0 0 #8CD500;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
