@charset "UTF-8";
/*
Theme Name: SIRA Child
Theme URI: https://example.com/sira-child/
Description: Child theme for the Twenty Twenty-One theme.
Author: Your Name
Author URI: https://example.com
Template: twentytwentyone
Version: 1.0.0
*/
:root {
  --sira-text-dark: black;
  --sira-text-light: #888;
  --sira-white: #ffffff;
  --sira-bg-light: #f8f8f8;
  --sira-border-color: #e0e0e0;
  --sira-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  color: var(--sira-text-dark);
  line-height: 1.6;
  padding-top: 120px;
  position: relative;
  overflow-x: hidden;
  transition: padding-top 0.3s ease;
}

body.mobile-menu-open {
  overflow: hidden;
  padding-right: 15px !important;
}
@media (max-width: 1023px) {
  body.mobile-menu-open {
    padding-right: 0 !important;
  }
}
@media (max-width: 1199px) {
  body.mobile-menu-open .site-header__nav-mobile.is-open {
    overflow: scroll !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--sira-transition);
  width: 100vw;
  max-width: 100vw;
  padding: 0;
  height: 100px;
}
.site-header.scrolled {
  background: var(--sira-white);
  height: 100px;
  max-width: 100vw;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .site-header.scrolled {
    height: 70px;
  }
}
.site-header__container {
  max-width: 1360px;
  width: 100vw;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1349px) {
  .site-header__container {
    width: 90vw;
    margin: 0 auto;
  }
}
.site-header__left, .site-header__right {
  flex: 1;
}
.site-header__right {
  display: flex;
  justify-content: flex-end;
}
.site-header__logo {
  flex: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  top: 10px;
  left: 10px;
}
.site-header__logo-image {
  max-height: 90px;
  transition: max-height 0.3s ease;
}
@media (max-width: 1023px) {
  .site-header__logo-image {
    max-height: 60px;
  }
}
.site-header.scrolled .site-header__logo-image {
  position: relative;
  top: -7px;
  max-height: 50px;
}
@media (max-width: 600px) {
  .site-header.scrolled .site-header__logo-image {
    max-height: 30px;
  }
}
.site-header.scrolled .site-header__mobile-toggle {
  width: 30px;
  height: 21px;
  top: 0px;
}
.site-header.scrolled .site-header__mobile-toggle-line {
  height: 3px;
}
.site-header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease-in-out;
  width: 50px;
  height: 38px;
  background-color: transparent !important;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  position: relative;
  top: 15px;
  right: 10px;
}
@media (max-width: 1023px) {
  .site-header__mobile-toggle {
    top: 0;
    width: 30px;
    height: 21px;
  }
}
.site-header__mobile-toggle:hover, .site-header__mobile-toggle:focus {
  outline: none;
}
.site-header__mobile-toggle-line {
  width: 100%;
  height: 5px;
  border-radius: 2px;
  transition: var(--sira-transition);
  background: black;
}
@media (max-width: 1023px) {
  .site-header__mobile-toggle-line {
    height: 3px;
  }
}
.site-header.scrolled .site-header__mobile-toggle-line {
  background: var(--sira-text-dark);
}
body.mobile-menu-open .site-header__mobile-toggle-line {
  background: var(--sira-text-dark);
}
body.mobile-menu-open .site-header__mobile-toggle-line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
body.mobile-menu-open .site-header__mobile-toggle-line:nth-child(2) {
  opacity: 0;
}
body.mobile-menu-open .site-header__mobile-toggle-line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.site-header__nav-mobile {
  position: fixed;
  top: 100px;
  left: 50%;
  right: 0;
  width: 90%;
  max-width: 1840px;
  height: auto;
  background-color: var(--sira-white);
  z-index: 9999;
  transition: var(--sira-transition);
  transform: translate(-50%, -100%);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1199px) {
  .site-header__nav-mobile {
    top: 0;
    width: 100%;
  }
}
.site-header__nav-mobile.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  min-height: 540px;
}
@media (max-width: 1199px) {
  .site-header__nav-mobile.is-open {
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    transform: translateY(0) !important;
    max-height: 100vh;
  }
}
.site-header__nav-mobile-content {
  padding: 40px 60px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .site-header__nav-mobile-content {
    min-height: calc(100vh + 200px);
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .site-header__nav-mobile-content {
    padding: 30px 20px 100px 20px;
  }
}
@media (max-width: 600px) {
  .site-header__nav-mobile-content {
    padding: 10px 20px 100px 20px;
  }
}

.site-header__nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 80%;
  margin: 40px auto;
}
@media (max-width: 1199px) {
  .site-header__nav-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .site-header__nav-columns {
    gap: 10px;
  }
}
@media (max-width: 479px) {
  .site-header__nav-columns {
    margin: 20px 0 0;
  }
}

.site-header__nav-column-title {
  font-size: 28px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
  display: inline-block;
  width: 400px;
  background-color: #425f5a;
  padding: 10px 20px;
  color: white;
}
@media (max-width: 1199px) {
  .site-header__nav-column-title {
    font-size: 18px;
    margin-bottom: 15px;
    width: 250px;
  }
}
.site-header__nav-column-title-link {
  color: inherit;
  text-decoration: none;
  transition: var(--sira-transition);
  display: block;
  font-weight: 500;
}
.site-header__nav-column-title-link:hover {
  opacity: 0.7;
  text-decoration: none;
  transform: translateX(2px);
}
.site-header__nav-column-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 50px;
}
.site-header__nav-column-list li {
  margin-bottom: 12px;
}
.site-header__nav-column-list li:last-child {
  margin-bottom: 0;
}

.site-header__nav-column:nth-last-child(1) .site-header__nav-column-title {
  background-color: #abc3a3;
}

.site-header__nav-mobile-link {
  display: block;
  padding: 6px 0;
  font-size: 28px;
  font-family: "Open Sans", sans-serif;
  color: var(--sira-text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: var(--sira-transition);
  border-bottom: none !important;
  line-height: 1.4;
}
.site-header__nav-mobile-link:hover {
  opacity: 0.6;
  text-decoration: none;
  border-bottom: none !important;
  transform: translateX(4px);
}
@media (max-width: 1199px) {
  .site-header__nav-mobile-link {
    font-size: 15px;
    padding: 4px 0;
  }
}

.site-header__nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.site-header__nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/*
========================================
Main Styles
========================================
*/
.site-main {
  max-width: 1920px;
  margin: 0 auto 100px;
  padding: 0;
}
@media (max-width: 600px) {
  .site-main {
    margin: 0 auto 0px;
  }
}

/*
========================================
Footer Styles
========================================
*/
.site-footer {
  background-color: var(--sira-bg-light);
  color: var(--sira-text-dark);
  padding: 40px 0 0;
  width: 100vw;
  max-width: 1920px;
}

.footer-content__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 20px;
}
@media (max-width: 1349px) {
  .footer-content__container {
    width: 90vw;
    margin: 0 auto;
  }
}

.footer-content__main-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer-content__main-container {
    flex-direction: column;
    align-items: center;
  }
}

.footer-content__main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}
@media (max-width: 1199px) {
  .footer-content__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-content__main {
    align-items: center;
  }
}
.footer-content__main .footer-content__logo-icons {
  display: flex;
}
@media (max-width: 600px) {
  .footer-content__main .footer-content__logo-icons {
    flex-direction: column;
    gap: 40px;
  }
}

.footer-content__header {
  flex: 1;
}

.footer-content__title {
  font-size: 21px;
  font-weight: normal;
  margin: 0 0 40px 0;
  line-height: 1.2;
  margin-right: 20px;
}

.footer-content__social-link {
  display: block;
  width: 45px;
  height: auto;
  background-color: #f0f0f0;
  border-radius: 5px;
}

.footer-content__social-icons {
  display: flex;
  gap: 50px;
}
@media (max-width: 379px) {
  .footer-content__social-icons {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.footer-content__social-icon {
  max-width: 100%;
  border-radius: 10px;
  width: 45px;
  height: 45px;
}

.site-footer__bottom {
  border-top: 1px solid var(--sira-border-color);
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .site-footer__bottom {
    width: 90vw;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .site-footer__bottom {
    border-top: none;
  }
}

.site-footer__bottom-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .site-footer__bottom-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .site-footer__copyright {
    text-align: left;
    order: 1;
  }
}
.site-footer__copyright p {
  margin: 0;
  font-size: 14px;
  color: #4e4e4d;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__social-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--sira-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer__social-icons {
  display: flex;
  gap: 15px;
}

.site-footer__links {
  display: flex;
  gap: 25px;
}
@media (max-width: 600px) {
  .site-footer__links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.site-footer__link {
  font-size: 14px;
  color: #4e4e4d;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: normal;
}
.site-footer__link:hover {
  opacity: 0.7;
}

.footer-content__logo .footer-content__logo-icon {
  margin-right: 20px;
  width: 100px;
  height: 100px;
}

/*
========================================
Hero Section Styles
========================================
*/
.hero {
  position: relative;
  min-height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #2b2b2b;
}
.hero__container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 800px;
}
@media (max-width: 600px) {
  .hero__container {
    height: 400px;
  }
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  height: 800px;
  max-width: 100%;
}
.hero__team-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 600px) {
  .hero__team-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content;
  }
}
.hero__team-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.hero__team-member {
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
  background: rgba(80, 80, 80, 0.6);
}
@media (max-width: 600px) {
  .hero__team-member {
    height: 133px;
    width: 100%;
  }
}
.hero__team-member.is-dimmed .hero__team-image {
  opacity: 0.5;
  transform: scale(1);
}
.hero__team-member.is-highlighted .hero__team-image {
  opacity: 1;
}
.hero__team-member:not(:has(img[src])) {
  background: transparent;
  pointer-events: none;
}
.hero__team-member:empty {
  background: transparent;
  pointer-events: none;
}
.hero__team-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease, opacity 0.8s ease;
  opacity: 0.5;
}
.hero__team-image:hover {
  transform: scale(1.05);
  opacity: 1;
}
.hero__team-member:not(.is-dimmed):not(.is-highlighted) .hero__team-image {
  opacity: 0.5;
}
.hero__text-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  top: 50%;
  left: 58%;
  transform: translate(-60%, 0);
}
@media (max-width: 600px) {
  .hero__text-content {
    left: 50%;
    transform: translate(-50%, -120%);
  }
}
.hero__title {
  font-size: 94px;
  font-weight: 600;
  margin: 0 0 30px 0;
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 54px;
  }
}
.hero__statement {
  font-size: 21px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero__statement {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hero__statement {
    font-size: 16px;
  }
}

.about__values {
  max-width: 1360px;
  margin: 0 auto;
  font-size: 30px;
  padding: 20px 170px 80px 0;
}
@media (max-width: 1349px) {
  .about__values {
    padding: 20px 0 40px 0;
  }
}
@media (max-width: 600px) {
  .about__values {
    font-size: 21px;
  }
}
.about__description {
  max-width: 1360px;
  margin: 0 auto;
  font-size: 30px;
  padding: 40px 100px;
}
@media (max-width: 767px) {
  .about__description {
    padding: 40px 0;
  }
}
@media (max-width: 1349px) {
  .about__container {
    width: 90vw;
    margin: 0 auto;
  }
}

/*
========================================
Services Section Styles
========================================
*/
.services {
  padding: 0;
  max-width: 1920px;
  position: relative;
  height: 535px;
  margin: 0 auto;
}
.services__container {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 100%;
}
.services__slider {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.services__slider-track {
  display: flex;
  animation: slide 30s linear infinite;
  gap: 20px;
  height: 100%;
}
.services__slide {
  flex: 0 0 auto;
  width: 675px;
  height: 535px;
  overflow: hidden;
}
.services__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services__badge {
  position: absolute;
  bottom: -100px;
  right: 150px;
  z-index: 10;
  pointer-events: none;
}
.services__badge-image {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*
========================================
Testimonials Section Styles
========================================
*/
.page-template-page-beratung .testimonials {
  padding: 40px 0;
  background: white;
  max-width: 1920px;
  margin: 0 auto;
}
.page-template-page-beratung .testimonials__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 979px) {
  .page-template-page-beratung .testimonials__container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__container {
    padding: 0;
    width: 90vw;
    margin: 0 auto;
  }
}
.page-template-page-beratung .testimonials__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 979px) {
  .page-template-page-beratung .testimonials__grid {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__grid {
    gap: 40px;
  }
}
.page-template-page-beratung .testimonials__item {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #ffffff;
  flex: 1 1 calc(50% - 30px);
  min-width: 400px;
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__item {
    flex: 1 1 100%;
    min-width: auto;
  }
}
.page-template-page-beratung .testimonials__person-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__person-image {
    height: 300px;
  }
}
.page-template-page-beratung .testimonials__person-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-template-page-beratung .testimonials__content {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  margin-left: auto;
  padding-right: 90px;
}
@media (max-width: 979px) {
  .page-template-page-beratung .testimonials__content {
    max-width: 90vw;
    padding-right: 0;
    margin: 0;
  }
}
.page-template-page-beratung .testimonials__person-info {
  margin-bottom: 20px;
}
.page-template-page-beratung .testimonials__person-name {
  font-size: 21px;
  font-weight: bold;
  color: #333;
  margin: 0 0 5px 0;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__person-name {
    font-size: 21px;
  }
}
.page-template-page-beratung .testimonials__person-title {
  font-size: 16px;
  color: black;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__person-title {
    font-size: 18px;
  }
}
.page-template-page-beratung .testimonials__quote {
  font-size: 21px;
  line-height: 1.6;
  font-weight: normal;
  color: #2c2c2c;
  margin: 0;
}
.page-template-page-beratung .testimonials__quote::before {
  content: "";
}
.page-template-page-beratung .testimonials__quote::after {
  content: "";
}
@media (max-width: 768px) {
  .page-template-page-beratung .testimonials__quote {
    font-size: 16px;
  }
}
.page-template-page-beratung .testimonials__item:nth-child(2) .testimonials__content {
  max-width: 720px;
  padding-right: 190px;
}
@media (max-width: 979px) {
  .page-template-page-beratung .testimonials__item:nth-child(2) .testimonials__content {
    max-width: 100%;
    padding-right: 0;
    margin: 0;
  }
}

.page-template-page-sira-homepage .testimonials,
.page-template-page-arbeitgeber .testimonials {
  padding: 40px 0;
  background: white;
}
.page-template-page-sira-homepage .testimonials__container,
.page-template-page-arbeitgeber .testimonials__container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) {
  .page-template-page-sira-homepage .testimonials__container,
  .page-template-page-arbeitgeber .testimonials__container {
    padding: 0;
  }
}
@media (max-width: 1349px) {
  .page-template-page-sira-homepage .testimonials__container,
  .page-template-page-arbeitgeber .testimonials__container {
    width: 90vw;
  }
}
.page-template-page-sira-homepage .testimonials__grid,
.page-template-page-arbeitgeber .testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-template-page-sira-homepage .testimonials__item,
.page-template-page-arbeitgeber .testimonials__item {
  padding: 30px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 80px;
  background: #ffffff;
}
.page-template-page-sira-homepage .testimonials__item:nth-child(odd) .testimonials__person-image,
.page-template-page-arbeitgeber .testimonials__item:nth-child(odd) .testimonials__person-image {
  order: 2;
}
@media (max-width: 979px) {
  .page-template-page-sira-homepage .testimonials__item,
  .page-template-page-arbeitgeber .testimonials__item {
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }
}
.page-template-page-sira-homepage .testimonials__person-image,
.page-template-page-arbeitgeber .testimonials__person-image {
  width: 100%;
  height: 690px;
  overflow: hidden;
  flex-basis: 50%;
}
.page-template-page-sira-homepage .testimonials__person-image img,
.page-template-page-arbeitgeber .testimonials__person-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-template-page-sira-homepage .testimonials__content,
.page-template-page-arbeitgeber .testimonials__content {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 979px) {
  .page-template-page-sira-homepage .testimonials__content,
  .page-template-page-arbeitgeber .testimonials__content {
    order: 3;
  }
}
.page-template-page-sira-homepage .testimonials__quote,
.page-template-page-arbeitgeber .testimonials__quote {
  font-size: 30px;
  line-height: 1.6;
  font-weight: normal;
  color: #2c2c2c;
  margin: 0;
}
.page-template-page-sira-homepage .testimonials__quote strong,
.page-template-page-arbeitgeber .testimonials__quote strong {
  display: block;
}
.page-template-page-sira-homepage .testimonials__quote::before,
.page-template-page-arbeitgeber .testimonials__quote::before {
  content: none !important;
}
@media (max-width: 600px) {
  .page-template-page-sira-homepage .testimonials__quote,
  .page-template-page-arbeitgeber .testimonials__quote {
    font-size: 21px;
  }
}
.page-template-page-sira-homepage .testimonials__person-info,
.page-template-page-arbeitgeber .testimonials__person-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 40px;
}
.page-template-page-sira-homepage .testimonials__person-name,
.page-template-page-arbeitgeber .testimonials__person-name {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .page-template-page-sira-homepage .testimonials__person-name,
  .page-template-page-arbeitgeber .testimonials__person-name {
    font-size: 21px;
  }
}
.page-template-page-sira-homepage .testimonials__person-title,
.page-template-page-arbeitgeber .testimonials__person-title {
  font-size: 30px;
  color: #333;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .page-template-page-sira-homepage .testimonials__person-title,
  .page-template-page-arbeitgeber .testimonials__person-title {
    font-size: 21px;
  }
}

.page-template-page-arbeitgeber .testimonials__item .testimonials__person-image {
  height: 590px;
}
.page-template-page-arbeitgeber .testimonials__item:nth-child(odd) .testimonials__person-image {
  order: -1 !important;
}
.page-template-page-arbeitgeber .testimonials__item:nth-child(odd) .testimonials__content {
  padding-left: 0;
}
@media (max-width: 979px) {
  .page-template-page-arbeitgeber .testimonials__item:nth-child(odd) .testimonials__content {
    padding-left: 40px;
    margin: 40px 0;
  }
}
.page-template-page-arbeitgeber .testimonials__item:nth-child(even) .testimonials__person-image {
  order: 2 !important;
}
.page-template-page-arbeitgeber .testimonials__item:nth-child(even) .testimonials__content {
  padding-right: 80px;
}
@media (max-width: 979px) {
  .page-template-page-arbeitgeber .testimonials__item:nth-child(even) .testimonials__content {
    padding-right: 0;
    padding-left: 40px;
    margin: 40px 0;
  }
}

.beratung-partners__header {
  max-width: 1360px;
  text-align: left;
  margin: 0 auto 60px;
}
@media (max-width: 768px) {
  .beratung-partners__header {
    margin-bottom: 40px;
  }
}
.beratung-partners__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-transform: none;
}
@media (max-width: 768px) {
  .beratung-partners__title {
    font-size: 21px;
  }
}
.beratung-partners__subtitle {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .beratung-partners__subtitle {
    font-size: 36px;
  }
}

/*
========================================
Bottom Section Styles
========================================
*/
.belt {
  width: 80px;
  height: 6px;
  background-color: black;
  margin-bottom: 20px;
}

.bottom {
  padding: 40px 0;
  background: #ffffff;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .bottom {
    width: 90vw;
    margin: 0 auto;
  }
}
.bottom__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 180px;
}
@media (max-width: 979px) {
  .bottom__container {
    flex-direction: column;
    gap: 40px;
  }
}
.bottom__content {
  margin: 0;
  text-align: left;
  flex-basis: 48%;
}
.bottom__title {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .bottom__title {
    font-size: 36px;
  }
}
.bottom__subtitle {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  color: black;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .bottom__subtitle {
    font-size: 21px;
  }
}
.bottom__description {
  font-size: 21px;
  width: 90%;
  line-height: 1.6;
  margin: 40px 0 50px 0;
  color: black;
}
@media (max-width: 768px) {
  .bottom__description {
    font-size: 21px;
  }
}
.bottom__expandable-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  flex-basis: 40%;
}
@media (max-width: 979px) {
  .bottom__expandable-items {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    padding-right: 20%;
  }
}
@media (max-width: 600px) {
  .bottom__expandable-items {
    padding-right: 0;
  }
}
.bottom__item-title {
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid #171717;
  position: relative;
}
.bottom__item-title::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.bottom__item-title.active::after {
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 600px) {
  .bottom__item-title {
    font-size: 16px;
  }
}
.bottom__item-content {
  padding: 20px 0px;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  color: black;
  display: none;
}
.bottom__item-content.active {
  display: block;
}

/*
========================================
BERATUNG PAGE STYLES
========================================
*/
.sira-beratung {
  min-height: 100vh;
  background: var(--sira-white);
}

.header-hero {
  background: #415e59;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-hero {
    flex-direction: column;
  }
}
.header-hero__container {
  max-width: 100%;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1023px) {
  .header-hero__container {
    flex-direction: column;
    gap: 40px;
    font-size: 18px;
    align-items: center;
  }
}
.header-hero__image {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .header-hero__image {
    box-shadow: -4px -2px 8.3px white;
  }
}
@media (max-width: 1023px) {
  .header-hero__image {
    flex-basis: auto;
    order: 2;
  }
}
.header-hero__bg-image {
  width: auto;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 50vw;
}
@media (max-width: 1023px) {
  .header-hero__bg-image {
    max-width: 100vw;
  }
}
@media (max-width: 600px) {
  .header-hero__bg-image {
    height: auto;
  }
}
.header-hero__content {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .header-hero__content {
    flex-basis: auto;
    order: 2;
    text-align: center;
    align-items: center;
  }
}
.header-hero__text {
  max-width: 100%;
}
.header-hero__subtitle {
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .header-hero__subtitle {
    font-size: 36px;
  }
}
.header-hero__title {
  font-size: 36px;
  font-weight: 500;
  color: white;
  margin: 0 0 30px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .header-hero__title {
    font-size: 28px;
  }
}
.header-hero__description {
  font-size: 18px;
  line-height: 1.6;
  color: black;
  margin: 0;
}
@media (max-width: 768px) {
  .header-hero__description {
    font-size: 21px;
  }
}

.page-template-page-arbeitgeber .header-hero {
  background: #abc3a2;
}
.page-template-page-arbeitgeber .header-hero__container {
  width: 100%;
  position: relative;
}
.page-template-page-arbeitgeber .header-hero__text {
  margin-left: auto;
}
.page-template-page-arbeitgeber .header-hero__title {
  font-size: 30px;
  font-weight: bold;
}
.page-template-page-arbeitgeber .header-hero__subtitle {
  font-size: 65px;
  font-weight: 400;
}
.page-template-page-arbeitgeber .header-hero__statement {
  position: absolute;
  left: 52%;
  top: 25%;
  transform: translateX(-50%);
  height: 210px;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .page-template-page-arbeitgeber .header-hero__statement {
    left: 80%;
    top: 50%;
  }
}
@media (max-width: 600px) {
  .page-template-page-arbeitgeber .header-hero__statement {
    height: 150px;
    width: 150px;
    top: 40%;
  }
}
@media (max-width: 479px) {
  .page-template-page-arbeitgeber .header-hero__statement {
    top: 25%;
  }
}
@media (max-width: 379px) {
  .page-template-page-arbeitgeber .header-hero__statement {
    top: 25%;
  }
}
.page-template-page-arbeitgeber .header-hero__image {
  order: 1;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  max-height: 600px;
}
.page-template-page-arbeitgeber .header-hero__image img {
  width: 110%;
  height: auto;
}
@media (min-width: 1024px) {
  .page-template-page-arbeitgeber .header-hero__image img {
    border-left: 1px solid white;
  }
}

.beratung-trust {
  padding: 40px 0;
  background: var(--sira-white);
}
.beratung-trust__container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .beratung-trust__container {
    padding: 0;
    width: 90vw;
    margin: 0 auto;
  }
}
.beratung-trust__content {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .beratung-trust__content {
    flex-direction: column;
    gap: 40px;
  }
}
.beratung-trust__text {
  flex-basis: 50%;
  padding: 70px 0 70px 60px;
  order: 1;
}
@media (max-width: 1023px) {
  .beratung-trust__text {
    flex-basis: auto;
    padding: 70px 0;
    width: 90vw;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .beratung-trust__text {
    padding: 0;
  }
}
.beratung-trust__subtitle {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .beratung-trust__subtitle {
    font-size: 36px;
  }
}
.beratung-trust__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .beratung-trust__title {
    font-size: 21px;
  }
}
.beratung-trust__description {
  font-size: 18px;
  line-height: 1.6;
  color: black;
  margin: 0 0 30px 0;
}
@media (max-width: 768px) {
  .beratung-trust__description {
    font-size: 21px;
  }
}
.beratung-trust__points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.beratung-trust__point {
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0 0 15px 0;
  padding-left: 20px;
  position: relative;
}
.beratung-trust__point:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sira-text-dark);
}
.beratung-trust__point:last-child {
  margin-bottom: 0;
}
.beratung-trust__image {
  flex-basis: 60%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .beratung-trust__image {
    flex-basis: auto;
  }
}
.beratung-trust__bg-image {
  width: 100%;
  height: auto;
}

.beratung-values {
  padding: 120px 0;
  background: var(--sira-text-dark);
  color: var(--sira-white);
  position: relative;
  overflow: hidden;
  max-width: 1680px;
  margin: 80px auto 40px;
}
@media (max-width: 767px) {
  .beratung-values {
    margin: 0 auto;
  }
}
.beratung-values__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}
.beratung-values__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.beratung-values__content {
  text-align: center;
  margin: 0 auto;
}
.beratung-values__title {
  font-size: 45px;
  font-weight: 400;
  margin: 0 0 30px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .beratung-values__title {
    font-size: 36px;
  }
}
.beratung-values__subtitle {
  font-size: 45px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .beratung-values__subtitle {
    font-size: 21px;
  }
}

.beratung-team {
  padding: 40px 0;
  background: var(--sira-white);
}
.beratung-team__container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .beratung-team__container {
    padding: 0;
    width: 90vw;
    margin: 0 auto;
  }
}
.beratung-team__content {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .beratung-team__content {
    flex-direction: column;
    gap: 40px;
  }
}
.beratung-team__text {
  flex-basis: 50%;
  padding: 70px 0 0 160px;
  order: 0;
}
@media (max-width: 1023px) {
  .beratung-team__text {
    flex-basis: auto;
    padding: 70px 0;
    width: 90vw;
    margin: 0 auto;
  }
}
.beratung-team__subtitle {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .beratung-team__subtitle {
    font-size: 36px;
  }
}
.beratung-team__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .beratung-team__title {
    font-size: 21px;
  }
}
.beratung-team__description {
  font-size: 21px;
  width: 90%;
  line-height: 1.6;
  margin: 40px 0 50px 0;
  color: black;
}
@media (max-width: 768px) {
  .beratung-team__description {
    font-size: 21px;
  }
}
.beratung-team__points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.beratung-team__point {
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0 0 15px 0;
  position: relative;
}
.beratung-team__point:last-child {
  margin-bottom: 0;
}
.beratung-team__image {
  flex-basis: 60%;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .beratung-team__image {
    flex-basis: auto;
  }
}
.beratung-team__bg-image {
  width: 100%;
  height: auto;
}

.bottom-contact {
  padding: 40px 0;
  max-width: 1920px;
  margin: 0 auto;
}
.bottom-contact .contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100vw;
  background-color: lightgray;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .bottom-contact .contact-container {
    gap: 40px;
    width: 90vw;
  }
}
@media (max-width: 1023px) {
  .bottom-contact .contact-container {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 479px) {
  .bottom-contact .contact-container {
    width: 100vw;
  }
}
.bottom-contact__container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .bottom-contact__container {
    gap: 40px;
    width: 90vw;
  }
}
.bottom-contact__header {
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .bottom-contact__header {
    margin-bottom: 40px;
  }
}
.bottom-contact__title {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
  text-transform: none;
}
@media (max-width: 768px) {
  .bottom-contact__title {
    font-size: 21px;
  }
}
.bottom-contact__subtitle {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 30px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .bottom-contact__subtitle {
    font-size: 36px;
  }
}
.bottom-contact__description {
  font-size: 21px;
  line-height: 1.6;
  color: black;
  margin: 0;
  max-width: 970px;
}
@media (max-width: 768px) {
  .bottom-contact__description {
    font-size: 21px;
  }
}
.bottom-contact__content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  width: 100vw;
  background-color: lightgray;
  max-width: 1920px;
}
@media (max-width: 1024px) {
  .bottom-contact__content {
    flex-direction: column;
    gap: 40px;
  }
}
.bottom-contact__info {
  flex: 0 0 40%;
  color: var(--sira-text-dark);
  padding: 60px 0;
}
@media (max-width: 1024px) {
  .bottom-contact__info {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .bottom-contact__info {
    padding: 40px 20px;
  }
}
.bottom-contact__info h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
  font-family: "Open Sans", sans-serif;
}
.bottom-contact__info p {
  margin: 0 0 15px 0;
  font-size: 21px;
  line-height: 1.5;
}
.bottom-contact__info p:last-child {
  margin-bottom: 0;
}
.bottom-contact__info a {
  color: var(--sira-white);
  text-decoration: underline;
}
.bottom-contact__info a:hover {
  opacity: 0.8;
}
.bottom-contact__company {
  margin-bottom: 40px;
  padding-bottom: 30px;
}
.bottom-contact__details p {
  margin-bottom: 10px;
}
.bottom-contact__details p a {
  color: black;
  text-decoration: none;
}
.bottom-contact__form {
  flex: 1;
  background: var(--sira-white);
  padding: 60px 70px;
}
@media (max-width: 768px) {
  .bottom-contact__form {
    padding: 40px 20px;
  }
}
.bottom-contact__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}
.bottom-contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.bottom-contact__form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance {
  position: relative;
  display: block;
  float: left;
  margin-right: 20px;
  margin-top: 5px;
}
.bottom-contact__form input[type=text],
.bottom-contact__form input[type=email],
.bottom-contact__form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  background: #fff;
}
.bottom-contact__form input[type=text]:focus,
.bottom-contact__form input[type=email]:focus,
.bottom-contact__form textarea:focus {
  outline: none;
  border-color: var(--sira-text-dark);
}
.bottom-contact__form textarea {
  min-height: 80px;
  height: 120px;
  resize: vertical;
}
.bottom-contact__form .wpcf7-submit {
  border: none;
  padding: 10px 40px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--sira-transition);
  align-self: flex-start;
  background-color: white !important;
  border: 2px solid black !important;
  width: 100%;
  color: black !important;
  font-weight: bold !important;
}
.bottom-contact__form .wpcf7-submit:hover {
  opacity: 0.9;
}
.bottom-contact__form .wpcf7-form-control-wrap {
  width: 100%;
}
.bottom-contact__form .wpcf7-form-control-wrap input[type=checkbox] {
  margin: 0;
  width: 25px;
  height: 25px;
  border: 1px solid black;
  padding: 5px;
  margin-top: -5px;
}

@media (max-width: 768px) {
  .beratung-hero,
  .beratung-trust,
  .beratung-values,
  .beratung-team,
  .bottom-contact {
    padding: 40px 0;
  }
  .beratung-values {
    padding: 40px 0;
  }
}
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animate:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-animate:nth-child(2) {
  transition-delay: 100ms;
}
.scroll-animate:nth-child(3) {
  transition-delay: 200ms;
}
.scroll-animate:nth-child(4) {
  transition-delay: 300ms;
}
.scroll-animate:nth-child(5) {
  transition-delay: 400ms;
}

.scroll-animate-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}
.scroll-animate-fade.animate-in {
  opacity: 1;
}

.scroll-animate-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate-slide.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-fade-only {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0s;
}
.scroll-animate-fade-only.animate-in {
  opacity: 1;
}
.scroll-animate-fade-only:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-animate-fade-only:nth-child(2) {
  transition-delay: 150ms;
}
.scroll-animate-fade-only:nth-child(3) {
  transition-delay: 300ms;
}
.scroll-animate-fade-only:nth-child(4) {
  transition-delay: 450ms;
}
.scroll-animate-fade-only:nth-child(5) {
  transition-delay: 600ms;
}
.scroll-animate-fade-only:nth-child(6) {
  transition-delay: 750ms;
}
.scroll-animate-fade-only:nth-child(7) {
  transition-delay: 900ms;
}
.scroll-animate-fade-only:nth-child(8) {
  transition-delay: 1050ms;
}
.scroll-animate-fade-only:nth-child(9) {
  transition-delay: 1200ms;
}
.scroll-animate-fade-only:nth-child(10) {
  transition-delay: 1350ms;
}
.scroll-animate-fade-only:nth-child(11) {
  transition-delay: 1500ms;
}
.scroll-animate-fade-only:nth-child(12) {
  transition-delay: 1650ms;
}
.scroll-animate-fade-only:nth-child(13) {
  transition-delay: 1800ms;
}
.scroll-animate-fade-only:nth-child(14) {
  transition-delay: 1950ms;
}
.scroll-animate-fade-only:nth-child(15) {
  transition-delay: 2100ms;
}
.scroll-animate-fade-only:nth-child(16) {
  transition-delay: 2250ms;
}
.scroll-animate-fade-only:nth-child(17) {
  transition-delay: 2400ms;
}
.scroll-animate-fade-only:nth-child(18) {
  transition-delay: 2550ms;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-animate,
  .scroll-animate-fade,
  .scroll-animate-slide {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .scroll-animate-fade-only {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--sira-white);
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero {
    min-height: 80vh;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__container {
  max-width: 1680px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}
.page-template-page-arbeitgeber .arbeitgeber-hero__content {
  display: flex;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
}
.page-template-page-arbeitgeber .arbeitgeber-hero__text {
  flex-basis: 50%;
  padding: 80px;
  order: 1;
}
@media (max-width: 1024px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__text {
    flex-basis: 100%;
    padding: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__text {
    padding: 20px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__title {
  font-size: 72px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 1024px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__title {
    font-size: 42px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__subtitle {
  font-size: 24px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__subtitle {
    font-size: 21px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__statement {
  font-size: 18px;
  line-height: 1.6;
  color: black;
  margin: 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__statement {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .page-template-page-arbeitgeber .arbeitgeber-hero__image {
    position: relative;
    width: 100%;
    height: 50vh;
    order: 2;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-hero__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page-template-page-arbeitgeber .beratung-trust.arbeitgeber-why .beratung-trust__additional {
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 30px 0 0 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .beratung-trust.arbeitgeber-why .beratung-trust__additional {
    font-size: 18px;
    padding: 15px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial {
  padding: 50px 0;
  max-width: 1920px;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__container,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__container {
  margin: 0 auto;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__header,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__header {
  max-width: 1360px;
  margin-bottom: 60px;
  margin: 0 auto 60px auto;
}
@media (max-width: 1349px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__header,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__header {
    width: 90vw;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__header,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__header {
    margin-bottom: 40px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__subtitle,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__subtitle {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  text-transform: none;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__subtitle,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__subtitle {
    font-size: 21px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__title,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__title,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__title {
    font-size: 36px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description {
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right {
  flex-basis: 40%;
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left,
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left p, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right p,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left p,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right p {
  margin: 0 0 20px 0;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left p:last-child, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right p:last-child,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left p:last-child,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right p:last-child {
  margin-bottom: 0;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left ul, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right ul,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left ul,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left ul li, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right ul li,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left ul li,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left ul li:before, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right ul li:before,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left ul li:before,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sira-text-dark);
  font-weight: bold;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-left ul li:last-child, .page-template-page-arbeitgeber .arbeitgeber-team-alltag__description-right ul li:last-child,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-left ul li:last-child,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__description-right ul li:last-child {
  margin-bottom: 0;
}
.page-template-page-arbeitgeber .arbeitgeber-team-alltag .services__slider,
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial .services__slider {
  width: 100vw;
  margin: 0 auto;
  padding: 0;
  max-width: 1920px;
  height: 535px;
  margin: 0 auto;
}
.page-template-page-arbeitgeber .arbeitgeber-roles {
  padding: 40px 0;
  background: var(--sira-white);
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 1349px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles {
    width: 90vw;
    margin: 0 auto;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__container {
  max-width: 1360px;
  margin: 0 auto;
}
.page-template-page-arbeitgeber .arbeitgeber-roles__header {
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__header {
    margin-bottom: 40px;
    text-align: left;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__title {
    font-size: 36px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__subtitle {
  font-size: 30px;
  font-weight: 500;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__subtitle {
    font-size: 21px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__description {
  font-size: 21px;
  line-height: 1.6;
  color: black;
  margin: 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__description {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
  max-width: 100%;
  padding: 20px 0;
  margin-left: -30px;
}
@media (max-width: 1600px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__categories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1023px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__categories {
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__category {
  background: var(--sira-white);
  padding: 30px;
  border-right: 1px solid #e5e5e5;
  border-radius: 0;
  transition: var(--sira-transition);
  min-width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__category {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__category {
    padding: 25px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__category-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 40px 0;
  line-height: 1.3;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__category-title {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__category-location {
  font-size: 21px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 25px 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__category-location {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 25px;
}
@media (max-width: 379px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__apply-btn {
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  transition: var(--sira-transition);
  border: 2px solid;
  border-color: var(--sira-text-dark);
  border-radius: 4px;
  text-align: center;
  flex: 1;
  max-width: 180px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__apply-btn {
    padding: 8px 16px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__apply-btn {
    flex: none;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__assistant {
  background: var(--sira-bg-light);
  padding: 50px;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__assistant {
    padding: 40px 30px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__assistant-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 10px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__assistant-title {
    font-size: 24px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__assistant-location {
  font-size: 18px;
  color: black;
  margin: 0 0 25px 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__assistant-location {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-roles__assistant-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0 0 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-roles__assistant-description {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial {
  padding: 50px 0;
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__container {
    width: 90vw;
    margin: 0 auto;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__header {
  text-align: left;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__header {
    margin-bottom: 40px;
    text-align: center;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__subtitle {
  font-size: 30px;
  color: black;
  margin: 0 0 10px 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__subtitle {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__title {
    font-size: 36px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__content {
    gap: 60px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-employee-testimonial__testimonials .testimonials__container {
  max-width: none;
  padding: 0;
  max-width: 1680px;
  margin: 0 auto;
}
.page-template-page-arbeitgeber .arbeitgeber-kununu {
  padding: 0 0 40px;
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 1349px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__container {
    width: 90vw;
    margin: 0 auto;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__content {
  text-align: left;
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__logo {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__logo {
    margin-bottom: 60px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__logo-image {
  max-height: 100px;
  width: auto;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__logo-image {
    max-height: 80px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__reviews {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__reviews {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__review {
  background: var(--sira-white);
  border-radius: 0;
  text-align: left;
  border-right: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__review {
    padding: 0;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__review-date {
  font-size: 30px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__review-date {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__review-stars {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__review-stars {
    font-size: 21px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__review-text {
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__review-text {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact {
  background: var(--sira-white);
  padding: 60px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__contact {
    padding: 40px 30px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__contact-title {
    font-size: 28px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact-text {
  font-size: 18px;
  line-height: 1.6;
  color: black;
  margin: 0 0 30px 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__contact-text {
    font-size: 16px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact-details {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0;
}
@media (max-width: 768px) {
  .page-template-page-arbeitgeber .arbeitgeber-kununu__contact-details {
    font-size: 18px;
  }
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact-details a {
  color: var(--sira-text-dark);
  text-decoration: none;
}
.page-template-page-arbeitgeber .arbeitgeber-kununu__contact-details a:hover {
  text-decoration: underline;
}
.page-template-page-arbeitgeber .bottom-contact.arbeitgeber-contact {
  background: var(--sira-white);
}
.page-template-page-arbeitgeber .bottom-contact.arbeitgeber-contact .bottom-contact__form .wpcf7-form .wpcf7-form-control[type=file] {
  border: 2px dashed var(--sira-border-color);
  padding: 20px;
  background: var(--sira-bg-light);
}
.page-template-page-arbeitgeber .bottom-contact.arbeitgeber-contact .bottom-contact__form .wpcf7-form .wpcf7-form-control[type=file]:hover {
  border-color: var(--sira-text-dark);
}

.single-job .job-detail-section {
  padding: 50px 0;
  background: var(--sira-white);
}
.single-job .job-detail-section .container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
.single-job .job-detail-section__content {
  max-width: 800px;
  margin: 0 auto;
}
.single-job .job-detail-section__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.single-job .job-detail-section__intro {
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
  margin: 0 0 50px 0;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.single-job .job-detail-section__section {
  margin: 0 0 40px 0;
}
.single-job .job-detail-section__section:last-child {
  margin-bottom: 0;
}
.single-job .job-detail-section__section-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin: 0 0 20px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__section-title {
    font-size: 21px;
  }
}
.single-job .job-detail-section__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-job .job-detail-section__benefits-list li {
  position: relative;
  padding-left: 25px;
  margin: 0 0 12px 0;
  font-size: 21px;
  line-height: 1.6;
  color: var(--sira-text-dark);
}
.single-job .job-detail-section__benefits-list li:before {
  content: "•";
  color: var(--sira-text-dark);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
.single-job .job-detail-section__benefits-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__benefits-list li {
    font-size: 18px;
  }
}
.single-job .job-detail-section__contact {
  background: var(--sira-bg-light);
  padding: 40px;
  border-radius: 8px;
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__contact {
    padding: 30px 20px;
    margin-top: 40px;
  }
}
.single-job .job-detail-section__contact-button {
  display: inline-block;
  background: var(--sira-text-dark);
  color: var(--sira-white);
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--sira-transition);
  margin-bottom: 30px;
}
.single-job .job-detail-section__contact-button:hover {
  background: black;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .single-job .job-detail-section__contact-button {
    padding: 12px 25px;
    font-size: 18px;
  }
}
.single-job .job-detail-section__contact-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sira-text-dark);
}
.single-job .job-detail-section__contact-intro p {
  margin: 0 0 15px 0;
}
.single-job .job-detail-section__contact-intro p:last-child {
  margin-bottom: 0;
}
.single-job .job-detail-section__contact-intro a {
  color: var(--sira-text-dark);
  text-decoration: none;
  font-weight: 500;
}
.single-job .job-detail-section__contact-intro a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .single-job .job-detail-section__contact-intro {
    font-size: 18px;
  }
}
.single-job .job-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.single-job .job-modal.active {
  display: flex;
}
.single-job .job-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.single-job .job-modal__content {
  position: relative;
  background: var(--sira-white);
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
}
@media (max-width: 768px) {
  .single-job .job-modal__content {
    width: 95%;
    border-radius: 0;
  }
}
.single-job .job-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .single-job .job-modal__header {
    padding: 15px 20px;
  }
}
.single-job .job-modal__logo img {
  max-height: 40px;
  width: auto;
}
.single-job .job-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  color: black;
  transition: var(--sira-transition);
}
.single-job .job-modal__close:hover {
  color: var(--sira-text-dark);
}
.single-job .job-modal__close span {
  display: block;
  line-height: 1;
}
.single-job .job-modal__body {
  padding: 30px;
}
@media (max-width: 768px) {
  .single-job .job-modal__body {
    padding: 20px;
  }
}
.single-job .job-modal__form .wpcf7-form .wpcf7-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 15px;
}
.single-job .job-modal__form .wpcf7-form .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--sira-text-dark);
}
.single-job .job-modal__form .wpcf7-form .wpcf7-submit {
  background: var(--sira-text-dark);
  color: var(--sira-white);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--sira-transition);
}
.single-job .job-modal__form .wpcf7-form .wpcf7-submit:hover {
  background: black;
}

.site-main.single-job {
  max-width: 1360px;
  min-height: 70vh;
  margin: 120px auto;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 979px) {
  .site-main.single-job {
    max-width: 90vw;
    margin: 0 auto;
  }
}
.site-main.single-job .job-header {
  margin-bottom: 40px;
}
.site-main.single-job .job-header__line {
  width: 60px;
  height: 5px;
  background: #000;
  margin-bottom: 18px;
}
.site-main.single-job .job-header__meta {
  font-size: 21px;
  color: #222;
  margin-bottom: 12px;
}
.site-main.single-job .job-header__title {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .site-main.single-job .job-header__title {
    font-size: 28px;
  }
}
.site-main.single-job .job-header__intro {
  font-size: 21px;
  margin-bottom: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.site-main.single-job .job-header__desc {
  font-size: 21px;
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
}
.site-main.single-job .job-columns {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.site-main.single-job .job-columns__col {
  flex: 1;
}
.site-main.single-job .job-columns__col h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .site-main.single-job .job-columns__col h2 {
    font-size: 28px;
  }
}
.site-main.single-job .job-columns__col ul {
  padding-left: 18px;
}
.site-main.single-job .job-columns__col ul li {
  font-size: 21px;
  margin-bottom: 12px;
}
@media (max-width: 800px) {
  .site-main.single-job .job-columns {
    flex-direction: column;
    gap: 24px;
  }
}
.site-main.single-job .job-cta {
  margin-top: 40px;
}
.site-main.single-job .job-cta h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .site-main.single-job .job-cta h2 {
    font-size: 28px;
  }
}
.site-main.single-job .job-cta__desc {
  font-size: 21px;
  margin-bottom: 40px;
  font-family: "Open Sans", sans-serif;
}
.site-main.single-job .job-cta__btn {
  margin-top: 20px;
  border: 2px solid #222 !important;
  background: #fff !important;
  color: #222 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

@media (max-width: 600px) {
  .single {
    width: 90vw;
    margin: 0 auto;
  }
}

/* ========================================
   Bewerbungsformular Modal Styles (custom)
   ======================================== */
.job-application-modal {
  position: fixed;
  top: -90px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.18);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  overflow-y: auto;
  padding: 20px;
  /* Drag & Drop Multiple File Upload for CF7 */
}
@media (max-width: 1349px) {
  .job-application-modal {
    top: -90px;
  }
}
@media (max-width: 768px) {
  .job-application-modal {
    padding: 10px;
  }
  .job-application-modal__content {
    width: 100vw;
    max-height: calc(100vh - 20px);
    padding: 30px 20px;
  }
}
.job-application-modal.active {
  display: flex;
}
.job-application-modal__content {
  background: #fff;
  border-radius: 0;
  max-width: 700px;
  width: 95vw;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 30px 60px;
  position: relative;
  font-family: "Open Sans", sans-serif;
  animation: modalIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-height: 800px) {
  .job-application-modal__content {
    padding: 40px 60px;
  }
}
@media (max-height: 600px) {
  .job-application-modal__content {
    padding: 30px 60px;
  }
}
.job-application-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff !important;
  border: none;
  font-size: 32px;
  color: lightgray !important;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.job-application-modal__close:hover {
  color: #abc3a2;
  background: #f5f5f5;
}
.job-application-modal h2 {
  font-size: 38px;
  font-weight: 500;
  margin: 0 0 18px 0;
  color: #222;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .job-application-modal h2 {
    font-size: 36px;
  }
}
.job-application-modal h3 {
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #222;
}
.job-application-modal .label-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 8px;
}
.job-application-modal .form-name {
  display: flex;
  gap: 16px;
}
.job-application-modal .form-name > * {
  flex: 1;
}
.job-application-modal .details-name {
  display: flex;
  gap: 16px;
}
.job-application-modal .details-name > div {
  flex: 1;
}
.job-application-modal input[type=text],
.job-application-modal input[type=email],
.job-application-modal input[type=tel] {
  width: 100%;
  padding: 0 0 10px 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1rem;
  margin-bottom: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.job-application-modal input[type=text]::-moz-placeholder, .job-application-modal input[type=email]::-moz-placeholder, .job-application-modal input[type=tel]::-moz-placeholder {
  color: #222;
  opacity: 1;
  font-size: 1.1rem;
}
.job-application-modal input[type=text]::placeholder,
.job-application-modal input[type=email]::placeholder,
.job-application-modal input[type=tel]::placeholder {
  color: #222;
  opacity: 1;
  font-size: 1.1rem;
}
.job-application-modal input[type=text]:focus,
.job-application-modal input[type=email]:focus,
.job-application-modal input[type=tel]:focus {
  outline: none;
  border-color: #abc3a2;
  background: transparent;
}
.job-application-modal textarea {
  min-height: 80px;
  resize: vertical;
}
.job-application-modal .wpcf7-form-control-wrap {
  width: 100%;
}
.job-application-modal .wpcf7-not-valid-tip {
  color: #d32f2f;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.job-application-modal .wpcf7-response-output {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #388e3c;
  background: #e8f5e9;
  border-radius: 4px;
  padding: 10px 16px;
  border: 1px solid #c8e6c9;
}
.job-application-modal .form-actions {
  margin-top: 24px;
}
.job-application-modal .form-actions p {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 600px) {
  .job-application-modal .form-actions p {
    flex-direction: column;
    gap: 10px;
  }
}
.job-application-modal .form-actions button,
.job-application-modal .form-actions input[type=submit] {
  flex-basis: 50%;
  background-color: #fff !important;
  color: #222 !important;
  border: 1.5px solid #222;
  border-radius: 0;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.job-application-modal .form-actions button:hover,
.job-application-modal .form-actions input[type=submit]:hover {
  color: #3d3d3d !important;
}
.job-application-modal .form-actions #abortButton {
  background: #fff;
  color: #222;
  border: 1.5px solid #222;
}
.job-application-modal .form-actions #abortButton:hover {
  background: #eee;
}
.job-application-modal .form-actions .wpcf7-spinner {
  display: none;
}
.job-application-modal .checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  margin: 0;
}
.job-application-modal .checkbox-wrapper input[type=checkbox] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
  border: 1px solid black;
  margin-right: 5px;
}
.job-application-modal .checkbox-wrapper label {
  display: inline;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  color: #222;
}
.job-application-modal .checkbox-wrapper a {
  color: #222;
  text-decoration: underline;
  margin-left: 4px;
}
.job-application-modal .checkbox-wrapper a:hover {
  color: #abc3a2;
}
.job-application-modal .checkbox-wrapper input[type=checkbox]::after {
  display: block;
  left: 3px;
  top: 2px;
  position: absolute;
  width: 7px;
  height: 7px;
}
.job-application-modal .wpcf7-drag-n-drop {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}
.job-application-modal .wpcf7-drag-n-drop .wpcf7-drag-n-drop-file {
  flex: 1;
  border: 2px dashed #abc3a2;
  border-radius: 8px;
  background: #f8f8f8;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: border 0.2s, background 0.2s;
}
.job-application-modal .wpcf7-drag-n-drop .wpcf7-drag-n-drop-file:hover {
  border-color: #222;
  background: #f0f0f0;
}
.job-application-modal .wpcf7-drag-n-drop .wpcf7-drag-n-drop-file .wpcf7-drag-n-drop-label {
  font-weight: 600;
  margin-bottom: 6px;
}
.job-application-modal .wpcf7-drag-n-drop .wpcf7-drag-n-drop-file .wpcf7-drag-n-drop-or {
  font-size: 0.95rem;
  color: #888;
}
@media (max-width: 600px) {
  .job-application-modal__content {
    padding: 20px;
  }
  .job-application-modal .form-name,
  .job-application-modal .details-name {
    flex-direction: column;
    gap: 0;
  }
  .job-application-modal .wpcf7-drag-n-drop {
    flex-direction: column;
    gap: 0;
  }
}
.job-application-modal #job-title-modal {
  margin-top: 24px;
  font-size: 21px !important;
  margin-bottom: 40px !important;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}
@media (max-width: 600px) {
  .job-application-modal #job-title-modal {
    font-size: 18px !important;
  }
}
.job-application-modal .attachment_container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .job-application-modal .attachment_container {
    flex-direction: column;
    gap: 20px;
  }
}
.job-application-modal .attachment_container h3,
.job-application-modal .attachment_container span,
.job-application-modal .attachment_container a {
  font-size: 16px !important;
}

@keyframes modalIn {
  0% {
    opacity: 0;
    transform: scale(0.98) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.aktuelles .bottom__expandable-items {
  margin-top: 130px;
}
@media (max-width: 1023px) {
  .aktuelles .bottom__expandable-items {
    margin-top: 0px;
  }
}

.aktuelles__featured-videos {
  margin: 40px 0 60px 0;
  display: flex;
  grid-template-columns: 1fr 1fr;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .aktuelles__featured-videos {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0 40px 0;
  }
}

.aktuelles__featured-title {
  font-size: 21px;
  display: inline;
  margin: 0 0 15px 0;
  font-weight: 600;
}
.aktuelles__featured-title .aktuelles__video-link--featured {
  font-size: 21px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.aktuelles__featured-title .aktuelles__video-link--featured:hover {
  color: #8fb085;
  text-decoration: underline;
}

.aktuelles__featured-description {
  display: inline;
  margin: 0;
  color: black;
  font-size: 21px;
  line-height: 1.6;
}

.aktuelles__video-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aktuelles__video-list .aktuelles__video-item {
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}
.aktuelles__video-list .aktuelles__video-item:last-child {
  border-bottom: none;
}
.aktuelles__video-list .aktuelles__video-link {
  text-decoration: none;
  color: black;
  font-size: 21px;
  line-height: 1.6;
}
.aktuelles__video-list .aktuelles__video-description {
  color: black;
  font-size: 0.95rem;
  font-style: italic;
  margin-left: 8px;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  display: flex;
  opacity: 1;
}
.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.video-modal__content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  width: 800px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: videoModalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: -340px;
  top: -10vh;
}
@media (max-width: 768px) {
  .video-modal__content {
    width: 95vw;
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 8px;
    left: 0;
    top: -20vh;
  }
}
.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  color: gray !important;
  font-size: 21px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  background-color: transparent !important;
  z-index: 900;
  font-size: 33px;
}
.video-modal__header {
  padding: 20px 25px 10px;
  background: #fff;
  display: none;
}
.video-modal__title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .video-modal__title {
    font-size: 1.1rem;
    padding-right: 35px;
  }
}
.video-modal__video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 0;
  overflow: hidden;
}
.video-modal__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.video-modal__thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.video-modal__play-button {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.video-modal__play-button:hover {
  transform: scale(1.1);
}
.video-modal__play-button svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.video-modal__thumbnail:hover .video-modal__thumbnail-image {
  transform: scale(1.05);
}
.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal__description {
  padding: 15px 25px 25px;
  color: black;
  font-size: 0.95rem;
  line-height: 1.5;
  background: transparent;
  display: block;
  color: black;
  width: 100%;
  height: auto;
  z-index: 10;
  font-size: 27px;
  padding-right: 30%;
  position: absolute;
  top: 0;
  left: 0;
}
.video-modal__description:empty {
  display: none;
}

.video-modal__iframe {
  height: 110% !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}

@keyframes videoModalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.kontakt-hours-map {
  padding: 40px 0 80px;
}
.kontakt-hours-map__container {
  max-width: 1360px;
  margin: 0 auto;
}
.kontakt-hours-map__content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .kontakt-hours-map__content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
.kontakt-hours-map__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 40px 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .kontakt-hours-map__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.kontakt-opening-hours__item {
  display: flex;
  flex-basis: 30%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 110px;
  border-bottom: 1px solid #e8e8e8;
}
.kontakt-opening-hours__item:last-child {
  border-bottom: none;
}
.kontakt-opening-hours__day {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
}
.kontakt-opening-hours__time {
  font-size: 1.1rem;
  color: black;
  font-weight: 400;
}

.kontakt-hours-map__map {
  flex-basis: 50%;
}

.kontakt-map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .kontakt-map-container {
    height: 300px;
  }
}

.kontakt-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.kontakt-map-address {
  text-align: center;
  font-size: 1.1rem;
  color: black;
  line-height: 1.6;
}
.kontakt-map-address strong {
  color: #222;
  font-weight: 600;
}
.kontakt-map-address p {
  margin: 0.5rem 0;
}

.sira-impressum .page-header,
.sira-datenschutz .page-header {
  padding: 120px 0 0px;
  border-bottom: none;
}
.sira-impressum .page-header__container,
.sira-datenschutz .page-header__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.sira-impressum .page-header__content,
.sira-datenschutz .page-header__content {
  text-align: left;
}
.sira-impressum .page-header__title,
.sira-datenschutz .page-header__title {
  font-size: 48px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #333;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 600px) {
  .sira-impressum .page-header__title,
  .sira-datenschutz .page-header__title {
    font-size: 32px;
  }
}
.sira-impressum .page-header__subtitle,
.sira-datenschutz .page-header__subtitle {
  font-size: 1.2rem;
  color: black;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sira-impressum .page-header__subtitle,
  .sira-datenschutz .page-header__subtitle {
    font-size: 1.1rem;
  }
}
.sira-impressum .impressum-content,
.sira-datenschutz .impressum-content {
  padding: 80px 0;
}
.sira-impressum .impressum-content__container,
.sira-datenschutz .impressum-content__container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.sira-impressum .impressum-content__text,
.sira-datenschutz .impressum-content__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}
.sira-impressum .impressum-content__text h1,
.sira-impressum .impressum-content__text h2,
.sira-impressum .impressum-content__text h3,
.sira-impressum .impressum-content__text h4,
.sira-impressum .impressum-content__text h5,
.sira-impressum .impressum-content__text h6,
.sira-datenschutz .impressum-content__text h1,
.sira-datenschutz .impressum-content__text h2,
.sira-datenschutz .impressum-content__text h3,
.sira-datenschutz .impressum-content__text h4,
.sira-datenschutz .impressum-content__text h5,
.sira-datenschutz .impressum-content__text h6 {
  color: #222;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.sira-impressum .impressum-content__text h1,
.sira-datenschutz .impressum-content__text h1 {
  font-size: 2.5rem;
}
.sira-impressum .impressum-content__text h2,
.sira-datenschutz .impressum-content__text h2 {
  font-size: 2rem;
}
.sira-impressum .impressum-content__text h3,
.sira-datenschutz .impressum-content__text h3 {
  font-size: 1.5rem;
}
.sira-impressum .impressum-content__text p,
.sira-datenschutz .impressum-content__text p {
  margin-bottom: 1.5rem;
}
.sira-impressum .impressum-content__text ul,
.sira-impressum .impressum-content__text ol,
.sira-datenschutz .impressum-content__text ul,
.sira-datenschutz .impressum-content__text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
.sira-impressum .impressum-content__text ul li,
.sira-impressum .impressum-content__text ol li,
.sira-datenschutz .impressum-content__text ul li,
.sira-datenschutz .impressum-content__text ol li {
  margin-bottom: 0.5rem;
}
.sira-impressum .impressum-content__text strong,
.sira-datenschutz .impressum-content__text strong {
  color: #222;
  font-weight: 600;
}
.sira-impressum .impressum-content__text a,
.sira-datenschutz .impressum-content__text a {
  color: #abc3a2;
  text-decoration: none;
}
.sira-impressum .impressum-content__text a:hover,
.sira-datenschutz .impressum-content__text a:hover {
  text-decoration: underline;
}
.sira-impressum .impressum-sections,
.sira-datenschutz .impressum-sections {
  padding: 60px 0;
  background: #f8f9fa;
}
.sira-impressum .impressum-sections__container,
.sira-datenschutz .impressum-sections__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.sira-impressum .impressum-section,
.sira-datenschutz .impressum-section {
  margin-bottom: 60px;
}
.sira-impressum .impressum-section:last-child,
.sira-datenschutz .impressum-section:last-child {
  margin-bottom: 0;
}
.sira-impressum .impressum-section__title,
.sira-datenschutz .impressum-section__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
}
.sira-impressum .impressum-section__content,
.sira-datenschutz .impressum-section__content {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}
.sira-impressum .impressum-section__content h3,
.sira-impressum .impressum-section__content h4,
.sira-datenschutz .impressum-section__content h3,
.sira-datenschutz .impressum-section__content h4 {
  color: #222;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.sira-impressum .impressum-section__content p,
.sira-datenschutz .impressum-section__content p {
  margin-bottom: 1.2rem;
}
.sira-impressum .impressum-section__content ul,
.sira-impressum .impressum-section__content ol,
.sira-datenschutz .impressum-section__content ul,
.sira-datenschutz .impressum-section__content ol {
  margin: 1.2rem 0;
  padding-left: 1.5rem;
}
.sira-impressum .impressum-section__content ul li,
.sira-impressum .impressum-section__content ol li,
.sira-datenschutz .impressum-section__content ul li,
.sira-datenschutz .impressum-section__content ol li {
  margin-bottom: 0.4rem;
}
.sira-impressum .impressum-section__content strong,
.sira-datenschutz .impressum-section__content strong {
  color: #222;
}
.sira-impressum .impressum-section__content a,
.sira-datenschutz .impressum-section__content a {
  color: #abc3a2;
  text-decoration: none;
}
.sira-impressum .impressum-section__content a:hover,
.sira-datenschutz .impressum-section__content a:hover {
  text-decoration: underline;
}
.sira-impressum .impressum-contact,
.sira-datenschutz .impressum-contact {
  padding: 80px 0;
}
.sira-impressum .impressum-contact__container,
.sira-datenschutz .impressum-contact__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.sira-impressum .impressum-contact__title,
.sira-datenschutz .impressum-contact__title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 30px 0;
  text-align: center;
}
.sira-impressum .impressum-contact__details,
.sira-datenschutz .impressum-contact__details {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
}
.sira-impressum .impressum-contact__details p,
.sira-datenschutz .impressum-contact__details p {
  margin-bottom: 1rem;
}
.sira-impressum .impressum-contact__details strong,
.sira-datenschutz .impressum-contact__details strong {
  color: #222;
  display: block;
  margin-bottom: 0.5rem;
}
.sira-impressum .impressum-contact__details a,
.sira-datenschutz .impressum-contact__details a {
  color: #abc3a2;
  text-decoration: none;
}
.sira-impressum .impressum-contact__details a:hover,
.sira-datenschutz .impressum-contact__details a:hover {
  text-decoration: underline;
}

.bottom-contact__map {
  flex: 1;
  max-width: 500px;
}
@media (max-width: 600px) {
  .bottom-contact__map {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .bottom-contact__map {
    max-width: 100%;
    margin-top: 30px;
  }
}

.bottom-contact__map-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sira-text-dark);
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 768px) {
  .bottom-contact__map-title {
    font-size: 1.1rem;
  }
}

.bottom-contact__map-container {
  position: relative;
  width: 600px;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .bottom-contact__map-container {
    height: 250px;
    width: 60vw;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .bottom-contact__map-container {
    width: 80vw;
  }
}

.bottom-contact__map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.bottom-contact__map-address {
  text-align: center;
  font-size: 0.95rem;
  color: black;
  line-height: 1.5;
}
.bottom-contact__map-address strong {
  color: var(--sira-text-dark);
  font-weight: 600;
}
@media (max-width: 768px) {
  .bottom-contact__map-address {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=style.css.map */