@charset "UTF-8";
/*
This file contains the basic configurations of the page, which are
consistent throughout the website. This file is imported in the main.scss file.
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;1,300&display=swap");
@font-face {
  font-family: "Ubuntu Sans Downloaded";
  src: url("/assets/fonts/UbuntuSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-stretch: 200%;
}
html {
  scroll-behavior: smooth;
}

section {
  max-width: 1200px;
  padding: 6vw 32px;
  margin: 0 auto;
}

* {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.1em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.875em;
}

h6 {
  font-size: 1em;
}

p, ul, ol {
  font-size: 1em;
  hyphens: auto;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: all 1s ease;
}
a:hover {
  transition: all 0.5s ease;
  color: #F29203;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media only screen and (max-width: 430px) {
  h1 {
    font-size: 1.75em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.25em;
  }
  h4 {
    font-size: 1.1em;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: 1em;
  }
  p, ul, ol {
    font-size: 1em;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.75em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.25em;
  }
  h5 {
    font-size: 1.1em;
  }
  h6 {
    font-size: 1em;
  }
  p, ul, ol {
    font-size: 1.1em;
    line-height: 1.5;
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.75em;
  }
  h4 {
    font-size: 1.5em;
  }
  h5 {
    font-size: 1.25em;
  }
  h6 {
    font-size: 1.1em;
  }
  p, ul, ol {
    font-size: 1.25em;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3em;
  }
  h2 {
    font-size: 2.5em;
  }
  h3 {
    font-size: 2em;
  }
  h4 {
    font-size: 1.75em;
  }
  h5 {
    font-size: 1.5em;
  }
  h6 {
    font-size: 1.25em;
  }
  p, ul, ol {
    font-size: 1.375rem;
    line-height: 1.6;
    hyphens: none;
  }
}
/*
Here you can find the basic configurations for the elements of the page, which are
consistent throughout the website. This file is imported in the main.scss file.
*/
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.button-standard {
  transition: all 0.2s ease-out;
  overflow: hidden;
  border: 1px solid black;
  background: #fff;
  border-radius: 3.125rem;
  color: black;
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 24px;
  min-height: 3rem;
  cursor: pointer;
}

.button-standard:hover {
  color: black;
  border-color: #F29203;
  background: #F29203;
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  z-index: 1;
}

.button-link {
  transition: all 0.2s ease-out;
  width: fit-content;
  overflow: hidden;
  border: 1px solid black;
  background: #fff;
  border-radius: 3.125rem;
  color: black;
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 24px;
  min-height: 3rem;
  cursor: pointer;
  text-decoration: none;
  /* Entfernt die Standard-Link-Unterstreichung */
}

.button-link:hover, .button-link:active {
  color: black;
  border-color: #F29203;
  background: #F29203;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  z-index: 1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
header a {
  text-decoration: none;
  font-size: 1rem;
}
header li {
  list-style: none;
}
header nav {
  background-color: #fff;
  position: sticky;
  top: 0;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
}
header nav .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header nav .logo img {
  width: auto;
  height: 32px;
}
header nav ul {
  display: none;
  gap: 60px;
}
header nav button {
  color: #fff;
  background-color: #f39200;
  border-radius: 5px;
  border: 1px solid #f39200;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}
header nav button:hover {
  background-color: #fff;
  border-color: #f39200;
  color: #f39200;
}
header nav button#menuButton {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 7px;
}
header nav .button-standard {
  display: none;
}
header nav.open {
  position: absolute;
  height: 100%;
  width: 100vw;
}
header nav.open ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
header nav.open .overlay {
  display: flex;
}
header .contact-button {
  display: none;
}
header .contact-button:hover {
  color: #000;
}
header .menu {
  position: relative;
}
header .menu .dropdown-content {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  top: 100%;
  left: 0;
  width: fit-content;
  min-width: 300px;
  transform: translateY(-10px);
  padding: 1rem 0;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 1rem 1rem;
  background-color: #fff;
  transition: visibility 0.25s, opacity 0.25s ease, transform 0.25s ease;
}
header .menu .dropdown-content a {
  padding: 12px 20px;
  display: block;
  transform: translateY(-5px);
  opacity: 0;
}
header .menu .dropdown-content a:hover {
  background-color: #f5f5f5;
}
header .menu:hover .dropdown-content {
  transition: opacity 0.5s ease, transform 0.5s ease;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
header .menu:hover .dropdown-content a {
  opacity: 1;
  transform: translateY(0);
}
header .navigation-content {
  display: flex;
  height: 100%;
}
header .side-bar {
  display: flex;
  padding: 20px;
  color: white;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 30%;
  background: rgb(69, 123, 166);
}
header .side-bar p {
  text-align: justify;
  margin: 1rem 0;
  font-size: 1rem;
}
header .side-bar a,
header .side-bar button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .side-bar a:hover {
  background-color: white;
  color: black;
}
header .overlay {
  position: fixed;
  top: 80px;
  min-height: fit-content;
  left: 0;
  right: 0;
  background-color: #f0f0f0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: height 0.5s ease;
  z-index: 900;
}
header .overlay-nav {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgb(255, 255, 255);
  overflow-x: hidden;
  transition: 0.5s;
}
header .overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  margin-top: 30px;
}
header .overlay-nav a {
  padding: 8px 24px;
  font-size: 1.5rem;
  display: block;
}
header .overlay-nav button:hover, header .overlay-nav button:focus {
  transition: all 0.5s ease;
  color: #f39200;
  cursor: pointer;
}
header .overlay-nav .closebtn {
  background: transparent;
  border: none;
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}
header .nav-dropdown {
  margin-left: 30px;
  margin-bottom: 20px;
}
header .nav-dropdown a {
  font-size: 1.2rem;
  font-weight: 500;
}
header .navigation-links {
  width: 70%;
  padding: 1rem;
  display: flex;
  align-items: center;
}
header .navigation-links .opened-navigation {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1px;
}
header .navigation-links ul li {
  margin-bottom: 20px;
  font-size: 1rem;
  height: 100%;
}
header .navigation-links ul li a {
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 430px) {
  header nav {
    padding: 0 16px;
  }
}
@media screen and (min-width: 576px) {
  header nav {
    padding: 0 16px;
  }
  header nav .logo img {
    height: 50px;
  }
}
@media screen and (min-width: 1060px) {
  header nav {
    padding: 0 40px;
  }
  header nav .button-standard {
    display: block;
  }
  header nav ul {
    display: flex;
    gap: calc(12px + (100vw - 1060px) / 20);
  }
  header nav .header-elements-list {
    height: 100%;
    align-items: center;
  }
  header nav .header-elements-list .header-element {
    height: 100%;
    display: flex;
    align-items: center;
  }
  header nav button#menuButton {
    display: none;
  }
  header .contact-button {
    display: block;
  }
  header .navigation-links {
    width: 45%;
  }
  header .side-bar {
    width: 300px;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul {
    gap: calc(35px + (100vw - 1060px) / 20);
  }
}

@media screen and (max-height: 450px) {
  .overlay-nav .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
footer {
  padding: 35px 40px;
  padding-bottom: 15px;
  background-color: #f8f0e5;
}
footer .footer-contents {
  max-width: 1440px;
  margin: auto;
  color: black;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .footer-contents .logo-spruch-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .footer-contents .logo-spruch-container .spruch {
  margin: 0.8rem 0;
}
footer .footer-contents .logo-spruch-container img {
  width: 160px;
}
footer .footer-contents .footer-infos {
  display: flex;
  flex-direction: column;
}
footer .footer-contents .footer-infos h1 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
footer .footer-contents .footer-infos .address-media {
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}
footer .footer-contents .footer-infos .address-media .logo {
  margin-bottom: 2rem;
}
footer .footer-contents .footer-infos .address-media .address {
  margin-bottom: 1.2rem;
}
footer .footer-contents .footer-infos .address-media .address .tabulation {
  display: inline-block;
  margin-left: 4.7em;
}
footer .footer-contents .footer-infos .address-media .footer-links-desktop {
  display: none;
}
footer .footer-contents .footer-infos .address-media p {
  white-space: nowrap;
}
footer .footer-contents .footer-infos .services-footer,
footer .footer-contents .footer-infos .quicklinks-footer {
  margin: 1.5rem 0;
}
footer .footer-contents .footer-infos .services-footer h4,
footer .footer-contents .footer-infos .quicklinks-footer h4 {
  margin-bottom: 0.6rem;
}
footer .footer-contents .footer-infos .services-footer,
footer .footer-contents .footer-infos .quicklinks-footer {
  align-self: flex-start;
}
footer .footer-contents .footer-infos .services-footer ul,
footer .footer-contents .footer-infos .quicklinks-footer ul {
  list-style-type: none;
}
footer .footer-contents .footer-infos .services-footer li,
footer .footer-contents .footer-infos .quicklinks-footer li {
  margin-bottom: 0.25rem;
}
footer .footer-contents .footer-infos .services-footer a,
footer .footer-contents .footer-infos .quicklinks-footer a {
  text-decoration: none;
}
footer .footer-contents .footer-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer .footer-contents .footer-links .footer-links-socials, footer .footer-contents .footer-links .footer-links-associations {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .footer-contents .footer-links .footer-links-socials .title, footer .footer-contents .footer-links .footer-links-associations .title {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  margin-top: 0.8rem;
}
footer .footer-contents .footer-links .footer-links-socials .icons, footer .footer-contents .footer-links .footer-links-associations .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer .footer-contents .footer-links .footer-links-socials .icons .actual-links, footer .footer-contents .footer-links .footer-links-associations .icons .actual-links {
  display: flex;
  width: 100%;
  gap: 20px;
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media, footer .footer-contents .footer-links .footer-links-socials .icons .association, footer .footer-contents .footer-links .footer-links-associations .icons .social-media, footer .footer-contents .footer-links .footer-links-associations .icons .association {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
@media (max-width: 425px) {
  footer .footer-contents .footer-links .footer-links-socials .icons .social-media, footer .footer-contents .footer-links .footer-links-socials .icons .association, footer .footer-contents .footer-links .footer-links-associations .icons .social-media, footer .footer-contents .footer-links .footer-links-associations .icons .association {
    flex-direction: column;
  }
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a, footer .footer-contents .footer-links .footer-links-socials .icons .association a, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a, footer .footer-contents .footer-links .footer-links-associations .icons .association a {
  background-color: white;
  padding: 0.5em 1em;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  box-sizing: border-box;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a::before, footer .footer-contents .footer-links .footer-links-socials .icons .association a::before, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a::before, footer .footer-contents .footer-links .footer-links-associations .icons .association a::before {
  content: attr(data-social);
  position: absolute;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-30px) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(0.5, 0.01, 0.39, 1.98);
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a::after, footer .footer-contents .footer-links .footer-links-socials .icons .association a::after, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a::after, footer .footer-contents .footer-links .footer-links-associations .icons .association a::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--accent-color);
  transform: translateY(0) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(0.5, 0.01, 0.39, 1.98);
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a:hover, footer .footer-contents .footer-links .footer-links-socials .icons .association a:hover, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a:hover, footer .footer-contents .footer-links .footer-links-associations .icons .association a:hover {
  background-color: var(--accent-color);
  transition: fill 0s;
  fill: white;
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a:hover .ihk-rect, footer .footer-contents .footer-links .footer-links-socials .icons .association a:hover .ihk-rect, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a:hover .ihk-rect, footer .footer-contents .footer-links .footer-links-associations .icons .association a:hover .ihk-rect {
  fill: white;
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a:hover::before, footer .footer-contents .footer-links .footer-links-socials .icons .association a:hover::before, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a:hover::before, footer .footer-contents .footer-links .footer-links-associations .icons .association a:hover::before {
  transform: translateY(-65px) rotate(0);
  opacity: 1;
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a:hover::after, footer .footer-contents .footer-links .footer-links-socials .icons .association a:hover::after, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a:hover::after, footer .footer-contents .footer-links .footer-links-associations .icons .association a:hover::after {
  transform: translateY(-43px) rotate(0);
  opacity: 1;
}
footer .footer-contents .footer-links .footer-links-socials .icons .social-media a svg, footer .footer-contents .footer-links .footer-links-socials .icons .association a svg, footer .footer-contents .footer-links .footer-links-associations .icons .social-media a svg, footer .footer-contents .footer-links .footer-links-associations .icons .association a svg {
  height: 24px;
}
footer .footer-contents .footer-links .footer-links-socials .icons .policy-and-impress, footer .footer-contents .footer-links .footer-links-associations .icons .policy-and-impress {
  display: flex;
  gap: 20px;
  align-items: center;
}
footer .footer-contents .copyright-sponsors p {
  font-size: 0.9rem;
}
footer .footer-contents .copyright-sponsors {
  flex-direction: column;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1024px) {
  footer .footer-contents .logo-spruch-container .spruch p {
    font-size: 0.95rem;
  }
  footer .footer-contents .logo-spruch-container .footer-infos a {
    font-size: 1.1rem;
  }
  footer .footer-contents .copyright-sponsors {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  footer .footer-contents .logo-spruch-container .spruch p {
    font-size: 1.2rem;
  }
  footer .footer-contents .footer-links .social-media a img {
    width: 3rem;
  }
  footer .footer-contents .footer-infos p,
  footer .footer-contents .footer-infos a {
    font-size: 1.1rem;
  }
  footer .footer-contents .footer-infos h4 {
    font-size: 1.2rem;
  }
  footer .footer-contents .footer-infos {
    justify-content: space-between;
    align-items: start;
  }
  footer .footer-contents .footer-infos .address-media .footer-links-desktop {
    display: flex;
  }
  footer .footer-contents .footer-infos .address-media .address .maps-container {
    margin: 20px 0;
  }
  footer .footer-contents .footer-infos .services-footer,
  footer .footer-contents .footer-infos .quicklinks-footer {
    margin: 0;
  }
  footer .footer-contents .footer-infos {
    flex-direction: row;
  }
  footer .footer-contents .copyright-sponsors {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.wirDigitalisierenContent {
  margin: auto;
  background-image: url("/assets/img/home/background.webp");
  background-size: cover;
  /* Deckt den gesamten Bildschirm ab */
  background-position: center bottom;
  /* Zentriert das Bild */
  background-repeat: no-repeat;
}
.wirDigitalisierenContent .wirDigitalisieren {
  margin-top: 0;
  max-width: 1440px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 3;
  position: relative;
  padding-bottom: 50px;
}
.wirDigitalisierenContent .wirDigitalisieren img {
  max-width: 25vw;
}
.wirDigitalisierenContent .wirDigitalisieren .subheader {
  color: #f39200;
}
.wirDigitalisierenContent .wirDigitalisieren .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wirDigitalisierenContent .wirDigitalisieren .text h1 {
  margin-top: 10px;
}
.wirDigitalisierenContent .wirDigitalisieren .text p {
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 30px;
}
.wirDigitalisierenContent .wirDigitalisieren .text a {
  margin-left: 10px;
}
.wirDigitalisierenContent .wirDigitalisieren img {
  max-width: 40vw;
}
@media screen and (min-width: 576px) {
  .wirDigitalisierenContent {
    padding-top: 0px;
    overflow: visible;
  }
  .wirDigitalisierenContent .wirDigitalisieren::before,
  .wirDigitalisierenContent .wirDigitalisieren::after {
    width: 150px;
    height: 150px;
  }
  .wirDigitalisierenContent .wirDigitalisieren img {
    max-width: 40vw;
  }
}
@media screen and (min-width: 768px) {
  .wirDigitalisierenContent .wirDigitalisieren {
    flex-direction: row;
    justify-content: space-between;
    padding: 0px;
    padding-top: 140px;
  }
  .wirDigitalisierenContent .wirDigitalisieren img {
    max-width: 25vw;
  }
  .wirDigitalisierenContent .wirDigitalisieren::before {
    bottom: -10%;
    transform: translate(-50%, -30%);
  }
}
@media screen and (min-width: 992px) {
  .wirDigitalisierenContent {
    max-height: 1000px;
  }
  .wirDigitalisierenContent .wirDigitalisieren img {
    max-width: 25vw;
  }
}
@media screen and (min-width: 1440px) {
  .wirDigitalisierenContent .wirDigitalisieren img {
    max-width: 12.5vw;
  }
  .wirDigitalisierenContent .wirDigitalisieren::before,
  .wirDigitalisierenContent .wirDigitalisieren::after {
    width: 300px;
    height: 300px;
  }
}

.slider {
  width: 100vw;
  max-width: none;
  margin: 0;
}
.slider .slider-header-and-content h2 {
  margin-bottom: 2rem;
}
.slider .slider-header-and-content .mobile-not-show {
  display: none;
}
.slider .slider-header-and-content p {
  margin: 1.5rem 0;
}
.slider .slider-content {
  max-width: 1440px;
  margin: auto;
  background-color: #ededed;
  border-radius: 20px;
  padding: 1rem;
  overflow: hidden;
}
.slider .image-and-nav {
  margin-bottom: 2rem;
  position: relative;
}
.slider .image-and-nav .image-container {
  width: 100%;
  height: calc(100px + (100vw - 300px) / 2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.slider .image-and-nav .image-container img {
  width: 100%;
  border-radius: 20px;
  position: absolute;
  left: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}
.slider .image-and-nav .image-container img.active {
  z-index: 2;
  transform: translateX(0);
}
.slider .image-and-nav .image-container img.previous {
  z-index: 1;
  transform: translateX(-100%);
}
.slider .image-and-nav #nav-desktop {
  display: none;
}
.slider .box .text-box-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.slider .box .text-box-container .text-box {
  position: absolute;
  width: 100%;
  left: 0;
  transform: translateX(100%);
  transition: opacity 0s 0.5s, transform 0.5s ease-in-out;
}
.slider .box .text-box-container .text-box a {
  margin-left: 10px;
}
.slider .box .text-box-container .text-box.active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
}
.slider .box .text-box-container .text-box.previous {
  opacity: 0;
  z-index: 1;
  transform: translateX(-100%);
}
.slider .nav-contents {
  margin-top: 1.5rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.slider .nav-contents .nav {
  max-width: 80%;
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: end;
  gap: 10px;
  padding-bottom: 2rem;
}
.slider .nav-contents .nav .nav-number {
  cursor: pointer;
  display: block;
  flex: 1 0 0;
  color: gray;
  padding: 2px 5px;
  font-family: "Ubuntu Sans", "Ubuntu Sans Downloaded", sans-serif;
  font-size: 1rem;
  font-weight: 550;
  border-top: 2px solid grey;
  transition: flex-grow 0.5s ease, color 0.5s ease, border-top-color 0.5s ease;
}
.slider .nav-contents .nav .nav-number.active {
  flex-grow: 1.5;
  color: black;
  border-top: 2px solid black;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .slider .slider-header-and-content .mobile-not-show {
    display: block;
  }
  .slider .slider-header-and-content .slider-content {
    padding: 2rem;
  }
  .slider .slider-header-and-content .nav-contents .nav .nav-number {
    font-size: 1.5rem;
  }
  .slider .slider-header-and-content .image-and-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .slider {
    background-image: url(/assets/img/home/slider/slider-background.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .slider .slider-header-and-content .mobile-not-show {
    display: block;
  }
  .slider .slider-header-and-content .slider-content {
    background-color: transparent;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 49% 49%;
    grid-template-rows: auto auto;
  }
  .slider .slider-header-and-content .slider-content .image-and-nav {
    display: inline-block;
    grid-area: 1/1/2/2;
    width: 100%;
    height: fit-content;
    margin: 0;
    z-index: 1;
  }
  .slider .slider-header-and-content .slider-content .image-and-nav .image-container {
    height: min(280px + (100vw - 1024px) / 6, 392.6666666667px);
  }
  .slider .slider-header-and-content .slider-content .image-and-nav img {
    width: 100%;
  }
  .slider .slider-header-and-content .slider-content .image-and-nav #nav-desktop {
    display: unset;
  }
  .slider .slider-header-and-content .slider-content .box {
    background-color: #ededed;
    padding: 1rem;
    border-radius: 20px;
    display: inline-block;
    width: calc(100% + 100px);
    grid-area: 2/2/3/3;
    position: relative;
    top: -150px;
    left: -60px;
  }
  .slider .slider-header-and-content .slider-content .box .text-box-container {
    height: 300px;
    margin: 0 60px;
  }
  .slider .slider-header-and-content .slider-content #nav-mobile {
    display: none;
  }
  .slider .nav-contents .nav .nav-number {
    font-size: 1.8rem;
  }
  .slider .na v-contents {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .slider .slider-header-and-content .slider-text {
    margin-bottom: 5rem;
  }
}

.motto .motto-content .title {
  margin-bottom: 2rem;
}
.motto .motto-content p {
  margin: 1.5rem 0;
}

.services-products {
  padding: 10rem auto;
}

.container {
  margin: 0 auto;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 3rem;
  margin-top: 8rem;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.card-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.card-link {
  width: 100%;
  text-decoration: none;
}

.card,
.card-without-button {
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between;
}

.card:hover {
  box-shadow: 0 0 12px rgba(243, 146, 0, 0.5);
}

.card-content {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 24px;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: black;
}

.card-text {
  line-height: 1.6;
  align-self: center;
  color: black;
}

.cta-button {
  position: absolute;
  bottom: 24px;
  padding: 8px 16px;
  color: #f39200;
  border-radius: 8px;
  font-size: 1.25rem;
}

.cta-button-raised {
  position: absolute;
  bottom: 24px;
  padding: 8px 16px;
  color: white;
  background-color: #f39200;
  border-radius: 8px;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  text-decoration: none;
}

.cta-button-raised:hover {
  color: white;
}

.no-pointer {
  cursor: default;
}

.cta-button.left {
  left: 24px;
}

.cta-button.right,
.cta-button-raised.right {
  right: 24px;
}

@media (min-width: 768px) {
  .card-wrapper {
    flex-direction: row;
  }
  .card-wrapper.reverse {
    flex-direction: row-reverse;
  }
  .card-image {
    width: 50%;
  }
  .card-link {
    width: 50%;
  }
}
.unserFramework {
  /* Tablets 768px bis 1024px */
  /* Desktop ab 1024px */
}
.unserFramework .dxFrameworkImgDesktop {
  display: none;
}
.unserFramework .dxFrameworkImgMobile {
  display: block;
  width: 100%;
}
.unserFramework h2 {
  text-align: right;
  font-size: clamp(1.5rem, 8vw, 4rem);
  margin-bottom: 2rem;
}
.unserFramework .customer-feedback {
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
.unserFramework .customer-feedback .customer-image {
  width: 90%;
}
.unserFramework .customer-feedback .textblock {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.unserFramework .customer-feedback .textblock .anfuehrungszeichen {
  width: 3rem;
}
.unserFramework .customer-feedback .textblock .pfeil-knopf {
  align-self: center;
  background-color: white;
  border: 1px solid #000;
  width: 40%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.unserFramework .customer-feedback .textblock .pfeil-knopf .pfeil {
  width: 30%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .unserFramework {
    /* Tablet spezifische Stile */
  }
  .unserFramework .customer-feedback {
    flex-direction: row;
  }
  .unserFramework .customer-feedback .customer-image {
    width: 50%;
  }
  .unserFramework .customer-feedback .textblock {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .unserFramework {
    /* Desktop spezifische Stile */
  }
  .unserFramework .customer-feedback {
    flex-direction: row;
    max-height: 50%;
  }
  .unserFramework .customer-feedback .customer-image {
    width: fit-content;
    max-width: 550px;
    flex: 1;
  }
  .unserFramework .customer-feedback .textblock {
    flex: 2;
  }
  .unserFramework .dxFrameworkImgDesktop {
    display: block;
    width: 100%;
  }
  .unserFramework .dxFrameworkImgMobile {
    display: none;
  }
}

.info-box .info-box-content .title {
  margin-bottom: 2rem;
}
.info-box .info-box-content .items-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-box .info-box-content .items-container .item {
  width: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  padding: 2rem;
  border-bottom: 0.25rem solid transparent;
}
.info-box .info-box-content .items-container .item .title i {
  display: unset;
  font-size: 2.5rem;
  margin-right: 1rem;
  color: #F29203;
}
.info-box .info-box-content .items-container .item .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  padding-bottom: 0.5rem;
}

.zeichnetUnsAusContent {
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zeichnetUnsAusContent .zeichnetUnsAus {
  padding-bottom: 50px;
  margin: 0;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image {
  margin-top: 0px;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image a {
  color: #F29203;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image h1 {
  margin-bottom: 2rem;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .imageContainer {
  display: flex;
  justify-content: center;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image img {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 2rem;
}
.zeichnetUnsAusContent .zeichnetUnsAus h3 {
  font-size: 1.75em;
  text-align: center;
  margin: 2rem;
}
.zeichnetUnsAusContent .zeichnetUnsAus h2 {
  margin: 0;
  margin-bottom: 2rem;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3rem;
  width: 48%;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .imageContainer {
  width: 48%;
  max-height: 520px;
  display: flex;
  justify-content: right;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image img {
  position: unset;
  max-width: 400px;
  width: 100%;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image h2 {
  margin: 0;
}
.zeichnetUnsAusContent .zeichnetUnsAus .text-and-image p {
  text-align: justify;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .zeichnetUnsAusContent .zeichnetUnsAus h2, .zeichnetUnsAusContent .zeichnetUnsAus h3 {
    margin: 0;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus h3 {
    font-size: 1.5em;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .text {
    width: 56%;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .text p {
    text-align: justify;
    margin: 3rem 0;
    font-size: 1rem;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .imageContainer {
    width: 36%;
    display: flex;
    justify-content: right;
  }
}
@media screen and (max-width: 768px) {
  .zeichnetUnsAusContent .zeichnetUnsAus h3 {
    margin: 0;
    font-size: 1.25em;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus h2 {
    margin-bottom: 2rem;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image {
    flex-direction: column;
    gap: 0;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image p {
    margin: 0;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .text, .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .imageContainer {
    width: 100%;
  }
  .zeichnetUnsAusContent .zeichnetUnsAus .text-and-image .imageContainer {
    justify-content: center;
    margin-bottom: 48px;
  }
}

.contactContent {
  padding: 6vw 32px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
}
.contactContent .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.contactContent .contact .contact-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.contactContent .contact .contact-text .zukunftssicher-wachsen i {
  display: none;
  font-size: 2.2em;
  margin-right: 1rem;
  color: #F29203;
}
.contactContent .contact .contact-text .zukunftssicher-wachsen .headline {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.contactContent .contact .contact-text .zukunftssicher-wachsen .headline h2 {
  font-size: 2.2em;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}
.contactContent .contact .contact-text .zukunftssicher-wachsen p {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  max-width: 900px;
}
.contactContent .contact .contact-text h2 {
  font-size: 1.8em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}
.contactContent .contact .contact-text .timeline {
  position: relative;
  padding-left: 30px;
  margin-left: 20px;
}
.contactContent .contact .contact-text .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 35px;
  width: 4px;
  background: #F29203;
}
@media screen and (max-width: 395px) {
  .contactContent .contact .contact-text .timeline::before {
    bottom: 60px;
  }
}
.contactContent .contact .contact-text .timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.contactContent .contact .contact-text .timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F29203;
}
.contactContent .contact .contact-text .timeline-item p {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}
.contactContent .contact .contact-button {
  margin-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contactContent .contact .contact-text .zukunftssicher-wachsen i {
    display: unset;
  }
  .contactContent .contact .contact-text .zukunftssicher-wachsen .timeline::before {
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .contactContent .contact {
    padding: 0 15px;
  }
  .contactContent .contact .contact-text .zukunftssicher-wachsen .headline h2 {
    font-size: 1.9em;
  }
  .contactContent .contact .contact-text .zukunftssicher-wachsen p {
    font-size: 1.05em;
  }
  .contactContent .contact .contact-text h2 {
    font-size: 1.6em;
  }
}

.drei-schritte {
  padding-top: 5.313rem;
  padding-bottom: 5.313rem;
}
.drei-schritte h2 {
  margin-top: 0.75rem;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items {
  display: flex;
  margin-top: 4.375rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item {
  width: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  padding: 2rem;
  border-bottom: 0.25rem solid transparent;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item .headline {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  height: fit-content;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item .headline img {
  height: 2rem;
  width: auto;
  color: #f39200;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item .icon {
  width: 2.875rem;
  height: 2.875rem;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item .icon i {
  font-size: 2.5rem;
  color: #f39200;
}
.drei-schritte .ganzheitliche-beratung .drei-schritte-items .item p {
  margin-top: 1.25rem;
  color: #1c1e53;
}

.framework {
  padding-top: 0;
  display: flex;
  justify-content: center;
}
.framework .framework-mobile {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
.framework .framework-desktop {
  padding-top: 4rem;
  display: none;
  width: 100%;
}

.drei-leitfragen .drei-leitfragen-items {
  padding-top: 3rem;
}
.drei-leitfragen .drei-leitfragen-items .items-container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
}
.drei-leitfragen .drei-leitfragen-items .items-container .item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 30px;
}
.drei-leitfragen .drei-leitfragen-items .items-container .item .kreis {
  width: 75px;
  height: 75px;
  background-color: #F29203;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
}
.drei-leitfragen .drei-leitfragen-items .items-container .item .text {
  width: calc(100% - 105px);
  min-height: 165px;
  padding-top: 1.5rem;
}
.drei-leitfragen .drei-leitfragen-items .items-container .item .text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.drei-leitfragen .drei-leitfragen-items .items-container .item .text ul {
  padding-left: 1.5rem;
}
.drei-leitfragen .drei-leitfragen-items .items-container .linie {
  width: 1px;
  height: 100px;
  background-color: black;
  margin: 0 10px;
  align-self: flex-start;
  position: relative;
  left: 27px;
  bottom: 50px;
}

.kreislauf {
  padding-top: 0;
}
.kreislauf img {
  width: 100%;
}
.kreislauf .kreislauf-desktop {
  display: none;
}
.kreislauf .kreislauf-mobile {
  display: block;
  margin: 2rem 0;
}
.kreislauf .kreislauf-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kreislauf .kreislauf-items .item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  border-bottom: 0.25rem solid transparent;
  padding: 1.5rem;
  height: 100%;
}
.kreislauf .kreislauf-items .item .headline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.kreislauf .kreislauf-items .item .headline img {
  height: 2rem;
  width: auto;
}
.kreislauf .kreislauf-items .item .headline h4 {
  font-size: 1.3rem;
  margin: 0;
}
.kreislauf .kreislauf-items .item .text-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.kreislauf .kreislauf-items .item .text-content p,
.kreislauf .kreislauf-items .item .text-content ul {
  font-size: 1rem;
  margin: 0;
}
.kreislauf .kreislauf-items .item .text-content ul {
  padding-left: 1rem;
}

.attributes.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 576px) {
  .drei-leitfragen .drei-leitfragen-items .items-container {
    padding: 0% 10%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .framework .framework-mobile {
    display: none;
  }
  .framework .framework-desktop {
    display: block;
  }
  .attributes .attribute-items {
    gap: 0.625rem;
    justify-content: space-between;
  }
  .attributes .attribute-items .item {
    width: 49%;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container {
    padding: 0% 15%;
  }
}
@media screen and (min-width: 1024px) {
  .framework .framework-mobile {
    display: none;
  }
  .framework .framework-desktop {
    display: block;
  }
  .attributes .attribute-items {
    gap: 0.625rem;
    justify-content: space-between;
  }
  .attributes .attribute-items .item {
    width: 49%;
  }
  .drei-schritte .ganzheitliche-beratung .drei-schritte-items .item {
    width: 32%;
  }
  .drei-schritte .ganzheitliche-beratung .drei-schritte-items .item p {
    font-size: 1rem;
  }
  .drei-leitfragen .drei-leitfragen-items {
    margin-top: 4rem;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container {
    padding: 0px 5vw;
    flex-direction: row;
    justify-content: center;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 0px;
    width: 40vw;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .item .kreis {
    width: 100px;
    height: 100px;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .item .text {
    width: 100%;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .item .text h4 {
    text-align: center;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .item .text ul {
    padding-top: 0.75vw;
  }
  .drei-leitfragen .drei-leitfragen-items .items-container .linie {
    left: 0px;
    width: 15vw;
    height: 1px;
    bottom: -50px;
  }
  .kreislauf .kreislauf-desktop {
    display: block;
  }
  .kreislauf .kreislauf-mobile {
    display: none;
  }
  .kreislauf .kreislauf-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.3rem;
  }
  .kreislauf .kreislauf-items .item {
    height: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .attributes .attribute-items {
    gap: 2rem;
  }
  .attributes .attribute-items .item {
    width: 48%;
  }
}
.hauptseite .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin: 0;
  padding: 1rem 0;
  max-width: none;
  width: 100vw;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/assets/img/home/slider/slider-background.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hauptseite .hero .hero-content .left {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.hauptseite .hero .hero-content .left h1 {
  margin-top: 0.625rem;
  font-weight: bold;
}
.hauptseite .hero .hero-content .left h1 span {
  color: #f39200;
}
.hauptseite .hero .hero-content .left p {
  color: #1c1e53;
  margin-top: 1.25rem;
  line-height: 1.4;
}
.hauptseite .hero .hero-content .right img {
  width: 15.75rem;
}
.hauptseite .hero.visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .hauptseite .hero {
    padding: 2rem 0;
  }
  .hauptseite .hero .hero-content {
    flex-direction: row;
  }
  .hauptseite .hero .hero-content .right img {
    width: 23.75rem;
  }
}
@media screen and (min-width: 992px) {
  .hauptseite .hero {
    padding: 2.5rem 0;
  }
  .hauptseite .hero .hero-content {
    justify-content: space-between;
  }
  .hauptseite .hero .hero-content .right img {
    width: 23.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .hauptseite .hero {
    padding: 3rem 0;
  }
  .hauptseite .hero .hero-content .right img {
    width: 31.25rem;
  }
}
@media screen and (min-width: 1440px) {
  .hauptseite .hero {
    padding: 4rem 0;
  }
}

.banner-section {
  width: 100%;
}
.banner-section img {
  width: 100%;
  background-position: top;
}

@media screen and (min-width: 1440px) {
  .banner-section {
    width: 100%;
  }
}
.attributes h2 {
  margin-top: 0.75rem;
}
.attributes .attribute-items {
  display: flex;
  margin-top: 4.375rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.attributes .attribute-items .item {
  width: 100%;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  padding: 2rem;
  border-bottom: 0.25rem solid transparent;
}
.attributes .attribute-items .item .headline {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.attributes .attribute-items .item .headline i {
  font-size: 2.5rem;
  color: #f39200;
}
.attributes .attribute-items .item .icon {
  width: 2.875rem;
  height: 2.875rem;
}
.attributes .attribute-items .item .icon i {
  font-size: 2.5rem;
  color: #f39200;
}
.attributes .attribute-items .item p {
  margin-top: 1.25rem;
}

.attributes.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 576px) {
  .attributes .attribute-items .item {
    width: 49%;
  }
}
@media screen and (min-width: 768px) {
  .attributes .attribute-items {
    gap: 0.625rem;
    justify-content: space-between;
  }
  .attributes .attribute-items .item {
    width: 49%;
  }
}
@media screen and (min-width: 1440px) {
  .attributes .attribute-items {
    gap: 2rem;
  }
  .attributes .attribute-items .item {
    width: 48%;
  }
}
.tools {
  padding: 5.625rem 0;
  display: flex;
  align-items: center;
  gap: 3.75rem;
}
.tools .left {
  background-color: #f7ede3;
  border-radius: 0.625rem 0.625rem 0 0;
}
.tools .right h2 {
  margin-top: 1.25rem;
}
.tools .right p {
  margin-top: 1.875rem;
}

.tools-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.625rem 0;
  background-color: #f7ede3;
  border-radius: 0.625rem 0.625rem 0 0;
}
.tools-image img {
  align-self: center;
  justify-self: center;
}

.cybersecurity-tools-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7ede3;
  border-radius: 0.625rem 0.625rem 0 0;
}
.cybersecurity-tools-image img {
  height: 60%;
  align-self: center;
  justify-self: center;
}

@media screen and (max-width: 1440px) {
  .tools {
    padding: 5.625rem 85px;
  }
  .tools-image {
    padding: 5.625rem 85px;
  }
}
@media screen and (max-width: 1200px) {
  .tools-image img {
    width: 90%;
  }
  .cybersecurity-tools-image img {
    width: 90%;
  }
}
@media screen and (max-width: 992px) {
  .tools {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .tools {
    padding: 5.313rem 2.625rem;
  }
  .tools-image img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .tools-image img {
    width: 160%;
  }
}
.citation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.citation .left {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.citation .left h1 {
  bottom: -20px;
  font-size: 87px;
  font-style: italic;
  color: #f39200;
  position: relative;
}
.citation .right {
  width: 62%;
  margin: auto;
  height: 37.5rem;
  background-color: #f39200;
  padding: 4rem 5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.citation .right .textblock {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.citation .right .textblock .header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.citation .right .textblock .header .title {
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.citation .right .textblock .header .sub-title {
  color: #fff;
  font-weight: 400;
}
.citation .right .textblock p {
  color: #fff;
}
.citation .right img {
  position: absolute;
  width: 60%;
  top: 16%;
  right: -10%;
  box-shadow: 0.313rem 0.25rem 0.625rem rgba(37, 37, 37, 0.5);
}
.citation .button-link:hover {
  background-color: #fff;
}

@media screen and (max-width: 1440px) {
  .citation {
    padding: 5.625rem 0;
  }
  .citation .right {
    height: 30rem;
  }
  .citation .right img {
    top: 16%;
  }
}
@media screen and (max-width: 1200px) {
  .citation {
    padding: 5.625rem 0;
  }
  .citation .right {
    height: 26rem;
  }
}
@media screen and (max-width: 992px) {
  .citation {
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
  }
  .citation .left {
    width: 100%;
  }
  .citation .right {
    width: 95%;
    align-items: flex-start;
    margin-left: 0;
  }
  .citation .right .textblock {
    width: 80%;
  }
  .citation .right img {
    top: 15%;
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .citation {
    padding: 0 0 5.313rem 0;
  }
  .citation .right {
    height: 22rem;
    padding: 4rem 3rem;
  }
  .citation .right img {
    top: 15%;
    width: 55%;
  }
}
@media screen and (max-width: 576px) {
  .citation .right {
    height: 15rem;
    padding: 1rem;
    width: 100%;
  }
  .citation .right .textblock {
    width: 80%;
  }
  .citation .right .textblock h3 {
    font-size: 1.2rem;
  }
  .citation .right .textblock h6 {
    font-size: 0.8rem;
  }
  .citation .right .textblock p {
    width: 90%;
    font-size: 0.8rem;
  }
  .citation .right img {
    width: 60%;
    top: 22%;
    right: -5%;
  }
  .citation .button-link {
    font-size: smaller;
    padding: 0.5rem;
    min-height: auto;
  }
}
.rework {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.rework .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  border-radius: 0.725rem;
  background-color: #ffffff;
  padding: 1.5rem;
  overflow: hidden;
  transition: 0.6s ease-in;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.rework .card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.rework .card h6 {
  margin: 0 0 1rem 0;
  font-weight: 600;
}
.rework .card ul {
  padding: 0px 0px 0 20px;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 1440px) {
  .rework {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    max-width: 90%;
  }
}
.time-cost {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.time-cost img {
  width: 100%;
  max-width: 400px;
}
.time-cost h3 {
  text-align: center;
}
.time-cost h3 span {
  color: #f39200;
}

@media screen and (min-width: 1024px) {
  .time-cost {
    flex-direction: row;
  }
  .time-cost img {
    max-width: 33%;
  }
}
.details {
  margin: 0 auto;
  padding-bottom: 0;
}
.details h1,
.details h2,
.details p {
  margin-bottom: 3.75rem;
}
.details .center {
  text-align: center;
}
.details .episode {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.details .title {
  font-weight: 600;
}
.details .episode__number {
  font-size: 10vw;
  padding: 10px 0;
  top: 10%;
  text-align: left;
  height: calc(10vw + 20px);
  transition: all 0.2s ease-in;
  color: #f39200;
}
.details .episode__content {
  border-top: 2px solid #f39200;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  padding: 15px 0;
}
.details .episode__content .title p {
  margin: 0;
}
.details .episode__content .story {
  line-height: 26px;
  font-size: 15px;
}
@media (min-width: 576px) {
  .details .episode__content .story {
    font-size: 16px;
  }
}
@media (min-width: 600px) {
  .details .episode__content {
    grid-template-columns: 1fr 4fr;
  }
}
@media (min-width: 992px) {
  .details .episode {
    grid-template-columns: 1fr 3fr;
  }
  .details .episode__number {
    font-size: 5vw;
    text-align: center;
    position: sticky;
  }
}

.unserTeam {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
}
.unserTeam .h2-desktop {
  display: none;
}
.unserTeam .headline {
  height: 30vh;
  width: 100%;
  max-width: 1440px;
  position: relative;
  display: flex;
  margin-bottom: 4rem;
  justify-self: center;
  align-self: center;
}
.unserTeam .headline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
@media screen and (min-width: 1440px) {
  .unserTeam .headline img {
    object-position: 50% 5%;
  }
}
.unserTeam .text-with-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.unserTeam .text-with-image img {
  order: 1;
  width: 100%;
  margin: 4rem 0;
}
.unserTeam .text-with-image .team-block {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
.unserTeam .text-with-image .team-block p {
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .unserTeam {
    padding: auto;
  }
  .unserTeam .text-with-image {
    flex-direction: row;
    gap: 8%;
  }
  .unserTeam .text-with-image img {
    order: 2;
    width: 46%;
  }
  .unserTeam .text-with-image .team-block {
    order: 1;
    width: 46%;
  }
  .unserTeam .text-with-image .team-block p {
    text-align: left;
  }
  .unserTeam .h2-mobile {
    display: none;
  }
  .unserTeam .h2-desktop {
    display: unset;
  }
  .unserTeam .text-with-image img {
    max-width: 38vw;
  }
}

.partnersContent {
  margin-bottom: 0;
}
.partnersContent .partners h2,
.partnersContent .partners p {
  padding-bottom: 3rem;
}
.partnersContent .partners .cards-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.partnersContent .partners .cards-container .card {
  --transition-time: 1s;
  padding: 2rem;
  display: grid;
  grid-template-rows: 100%;
  grid-template-columns: 25% 75%;
  grid-template-areas: "logo text";
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .partnersContent .partners .cards-container .card {
    grid-template-rows: 20% 80%;
    grid-template-columns: 100%;
    grid-template-areas: "logo" "text";
    gap: 0;
  }
}
@media screen and (max-width: 425px) {
  .partnersContent .partners .cards-container .card {
    grid-template-rows: 10% 90%;
    grid-template-columns: 100%;
    grid-template-areas: "logo" "text";
  }
}
.partnersContent .partners .cards-container .card .logo-container {
  grid-area: logo;
  align-content: center;
}
.partnersContent .partners .cards-container .card .logo-container svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.partnersContent .partners .cards-container .card .text-container {
  grid-area: text;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  gap: 1rem;
}
.partnersContent .partners .cards-container .card .text-container .title {
  display: flex;
  justify-content: center;
}
.partnersContent .partners .cards-container .card .text-container .title a {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .partnersContent .partners .cards-container .card .text-container {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.partnersContent .partners .cards-container .card {
  position: relative;
  background-color: white;
  border-radius: 0.9rem;
  transition: var(--transition-time);
}
.partnersContent .partners .cards-container .card::after, .partnersContent .partners .cards-container .card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(#f39200, #f33500, #f3ae00, #f39200, #f39200);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border-radius: 1rem;
  padding: 1px;
}
.partnersContent .partners .cards-container .card::before {
  transition: var(--transition-time);
  filter: blur(1rem);
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .partnersContent .partners .cards-container .card::before {
    filter: blur(0.75rem);
    opacity: 0.25;
  }
}
.partnersContent .partners .cards-container .card:hover::before {
  transition: var(--transition-time);
  filter: blur(1.5rem);
  opacity: 0.5;
}
.partnersContent .partners .cards-container .card:hover {
  transition: var(--transition-time);
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
}

.unsereKunden {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.unsereKunden .h2-desktop {
  display: none;
}
.unsereKunden p {
  text-align: center;
}
.unsereKunden h2 {
  margin-bottom: 2rem;
}
.unsereKunden .headline {
  height: 30vh;
  width: 100%;
  max-width: 1440px;
  position: relative;
  display: flex;
  margin-bottom: 4rem;
}
.unsereKunden .headline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.unsereKunden .kunden-banner {
  max-width: 1200px;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10%;
  row-gap: 2rem;
}
.unsereKunden .kunden-banner a {
  width: 12.5%;
  min-height: 100px;
  min-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.unsereKunden .kunden-banner a img {
  border-radius: 20px;
  margin: auto;
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.unsereKunden .kunden-banner img:hover {
  filter: grayscale(0%);
  transition: filter 0.5s ease;
}
.unsereKunden .firmen-daten {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.unsereKunden .firmen-daten .firmen-daten-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.unsereKunden .firmen-daten .firmen-daten-item h1 {
  margin: 0;
}

.kunden-zitat {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 8rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.kunden-zitat img {
  width: 100%;
  max-width: 300px;
}
.kunden-zitat .zitat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.kunden-zitat .zitat-block h2 {
  margin: 0;
  font-size: 10rem;
  color: #f39200;
  font-style: italic;
  position: relative;
  bottom: -40px;
}
.kunden-zitat .zitat-block h3 {
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 5rem;
}
.kunden-zitat .zitat-block .button-standard {
  border-color: #f39200;
  color: #f39200;
  font-size: 3rem;
  padding: 0px 60px;
  text-align: center !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .kunden-zitat {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-top: 8rem;
    align-items: center;
  }
  .kunden-zitat img {
    width: 40%;
  }
  .kunden-zitat .zitat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
  }
  .kunden-zitat .zitat-block h2 {
    margin: 0;
    font-size: 10rem;
    color: #f39200;
    font-style: italic;
  }
  .kunden-zitat .zitat-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 5rem;
  }
  .kunden-zitat .zitat-block .button-standard {
    border-color: #f39200;
    color: #f39200;
    font-size: 3rem;
    padding: 11px 80px;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .kunden-zitat .zitat-block h3 {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .kunden-zitat {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-top: 8rem;
    align-items: center;
  }
  .kunden-zitat .h2-mobile {
    display: none;
  }
  .kunden-zitat .h2-desktop {
    display: unset;
  }
  .kunden-zitat img {
    width: 50%;
  }
  .kunden-zitat .zitat-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
  }
  .kunden-zitat .zitat-block h2 {
    margin: 0;
    font-size: 10rem;
    color: #f39200;
    font-style: italic;
  }
  .kunden-zitat .zitat-block h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 5rem;
  }
  .kunden-zitat .zitat-block .button-standard {
    border-color: #f39200;
    color: #f39200;
    font-size: 3rem;
    padding: 11px 80px;
    text-align: center !important;
  }
}
@media screen and (max-width: 992px) {
  .firmen-daten {
    flex-direction: column;
  }
}
.footer-image-anchor {
  background-image: url("/assets/img/home/unsereKunden/muenchen_orange.png");
  background-repeat: no-repeat;
  height: 365px;
  background-position: center center;
}

.pagination-container {
  margin-top: 2rem;
  padding: 2rem 0;
  overflow-x: scroll;
}
.pagination-container .pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}
.pagination-container .pagination .page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}
.pagination-container .pagination .page-numbers a.active {
  color: black;
  border-color: #F29203;
  background: #F29203;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  z-index: 1;
  color: white;
}
.pagination-container .pagination .page-numbers .button-link {
  justify-content: center;
  width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  align-items: center;
  border-color: #999;
  color: #999;
}
.pagination-container .pagination .page-numbers .button-link:hover, .pagination-container .pagination .page-numbers .button-link:active {
  border-color: #F29203;
  color: white;
}
.pagination-container .pagination button.button-link-next-prev {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  background-color: white;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.pagination-container .pagination button.button-link-next-prev i {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}
.pagination-container .pagination button.button-link-next-prev:hover {
  transition: all 0.5s ease;
  color: #F29203;
}
.pagination-container .pagination button.button-link-next-prev.disabled {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .pagination-container .pagination .button-link:hover {
    transform: translateY(0px);
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    box-shadow: inherit;
  }
}

.blog-page {
  margin: auto;
  background-image: url("/assets/img/home/background.webp");
  /* Deckt den gesamten Bildschirm ab */
  background-position: center bottom;
  /* Zentriert das Bild */
  background-repeat: no-repeat;
}
.blog-page .blog-section {
  margin-top: 0;
}
.blog-page .blog-section .blog-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  width: 100%;
}
.blog-page .blog-section .blog-container .headline {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "left right";
}
@media screen and (max-width: 425px) {
  .blog-page .blog-section .blog-container .headline {
    display: flex;
    flex-direction: column;
  }
}
.blog-page .blog-section .blog-container .headline .symbol h2 {
  font-size: clamp(5rem, 4rem + 5vw, 10rem);
  color: #f39200;
  font-style: italic;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-page .blog-section .blog-container .headline .left {
  grid-area: left;
}
.blog-page .blog-section .blog-container .headline .left .zitat-block {
  margin: 0 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 425px) {
  .blog-page .blog-section .blog-container .headline .left .zitat-block {
    margin: 0%;
  }
}
.blog-page .blog-section .blog-container .headline .left .zitat-block h3 {
  text-align: justify;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 5rem;
}
.blog-page .blog-section .blog-container .headline .right {
  grid-area: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-page .blog-section .blog-container .headline .right img {
  width: 90%;
}
@media screen and (max-width: 425px) {
  .blog-page .blog-section .blog-container .headline .right img {
    width: 80%;
  }
}
.blog-page .blog-section .blog-container .blog-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .blog-page .blog-section .blog-container .blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "card-1 card-1 card-2" "card-1 card-1 card-3" "card-4 card-5 card-6";
  }
  .blog-page .blog-section .blog-container .blog-card .item-1 {
    grid-area: card-1;
  }
  .blog-page .blog-section .blog-container .blog-card .item-1 .blog-text .blog-title {
    font-size: 2.5rem !important;
    padding: 24px;
  }
  .blog-page .blog-section .blog-container .blog-card .item-1 .blog-text .blog-paragraph {
    padding: 24px;
    font-size: 1.25rem !important;
  }
  .blog-page .blog-section .blog-container .blog-card .item-1 .blog-text .author {
    padding: 24px;
    font-size: 1.5rem !important;
  }
  .blog-page .blog-section .blog-container .blog-card .item-2 {
    grid-area: card-2;
  }
  .blog-page .blog-section .blog-container .blog-card .item-3 {
    grid-area: card-3;
  }
  .blog-page .blog-section .blog-container .blog-card .item-4 {
    grid-area: card-4;
  }
  .blog-page .blog-section .blog-container .blog-card .item-5 {
    grid-area: card-5;
  }
  .blog-page .blog-section .blog-container .blog-card .item-6 {
    grid-area: card-6;
  }
}
@media (max-width: 1024px) {
  .blog-page .blog-section .blog-container .blog-card .blog-item {
    width: 600px;
  }
}
.blog-page .blog-section .blog-container .blog-card .blog-item {
  color: inherit;
  text-decoration: inherit;
  margin-top: 1rem;
  border: 1px solid #ddd;
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.blog-page .blog-section .blog-container .blog-card .blog-item:hover {
  border-color: #f39200;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.blog-page .blog-section .blog-container .blog-card .blog-item:hover .blog-text .blog-title {
  color: #f39200;
}
.blog-page .blog-section .blog-container .blog-card .blog-item .blog-image {
  color: transparent;
  width: 100%;
  min-width: 15rem;
  height: auto;
  display: block;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.blog-page .blog-section .blog-container .blog-card .blog-item .blog-text {
  padding-left: 0.5rem;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-page .blog-section .blog-container .blog-card .blog-item .blog-text .blog-title {
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  line-height: 1.25;
  --tw-text-opacity: 1;
  color: #000;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
  transition: color 0.3s ease;
}
.blog-page .blog-section .blog-container .blog-card .blog-item .blog-text .blog-paragraph {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  --tw-text-opacity: 1;
  color: rgb(74, 58, 88, var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
}
.blog-page .blog-section .blog-container .blog-card .blog-item .blog-text .author {
  font-weight: bold;
  font-size: 1rem;
  color: #F29203;
}
@media (max-width: 425px) {
  .blog-page .blog-section .blog-container .blog-card .blog-item .blog-text .blog-title {
    font-size: 1rem;
  }
  .blog-page .blog-section .blog-container .blog-card .blog-item .blog-text .blog-paragraph {
    font-size: 0.75rem;
  }
}
.blog-page .blog-section .blog-container .blog-card .blog-item.hidden {
  display: none;
}

/* Hero Section Styles */
.hero-section {
  background-color: #ffffff;
  padding: 6vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 15px;
}

.hero-text {
  flex: 1.3;
  color: #333333;
  padding-right: 20px;
}

.hero-subtitle {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  color: #F29203;
  margin-bottom: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-text h1 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 0.4em;
  line-height: 1.2;
  color: #000000;
}

.hero-text p {
  font-size: 1em;
  margin-bottom: 1em;
  line-height: 1.5;
  color: #555555;
  max-width: 560px;
}

.customer-rating {
  text-align: left;
  margin-bottom: 12px;
}

.customer-rating img {
  max-width: 160px;
  height: auto;
}

.products-cta-button {
  padding: 12px 30px;
  background-color: #F29203;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-top: 5px;
}

.products-cta-button:hover {
  background-color: #d68203;
  transform: translateY(-2px);
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .hero-content {
    gap: 60px;
  }
  .hero-text h1 {
    font-size: 2.6em;
  }
  .hero-text p {
    font-size: 1.15em;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 6vw 0;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    margin-bottom: 40px;
  }
  .hero-text {
    order: 2;
    padding-right: 0;
  }
  .hero-image {
    order: 1;
    width: 85%;
  }
  .hero-text h1 {
    font-size: 2.2em;
    margin-bottom: 0.7em;
  }
  .hero-text p {
    font-size: 1.05em;
    margin: 0 auto 2em auto;
    max-width: 500px;
  }
  .customer-rating {
    text-align: center;
    margin-bottom: 20px;
  }
}
.hero-trusted-by-logos {
  margin-top: 0;
  padding: 12px 0;
  width: 100%;
  text-align: center;
}

.hero-trusted-by-title {
  font-size: 0.9em;
  color: #6a737d;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero-company-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-company-logos img {
  max-height: 30px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.hero-company-logos img:hover {
  transition: filter 0.4s ease, opacity 0.4s ease;
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-company-logos {
    justify-content: center;
    gap: 15px;
  }
  .hero-trusted-by-logos {
    margin-top: 0;
    padding: 25px 0;
  }
  .hero-trusted-by-title {
    font-size: 0.85em;
  }
  .hero-company-logos img {
    max-height: 30px;
  }
}
/* Benefits Section Styles */
.benefits-section {
  padding: 6vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.benefits-main-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background-color: #f8f9fa;
  text-align: left;
  height: auto;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  font-size: 2.2em;
  color: #F29203;
  margin-bottom: 20px;
}

.benefit-icon i {
  display: block;
}

.benefit-title {
  font-size: 1.35em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefit-divider {
  border: none;
  height: 1px;
  background-color: #e0e0e0;
  margin-bottom: 0;
  margin-top: auto;
}

.section-cta-container {
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .benefit-item {
    min-height: 250px;
  }
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefits-main-title {
    font-size: 1.9em;
    margin-bottom: 40px;
  }
  .benefit-title {
    font-size: 1.25em;
  }
  .benefit-item {
    min-height: auto;
    padding: 25px;
  }
  .benefit-description {
    margin-bottom: 20px;
  }
  .section-cta-container {
    margin-top: 40px;
  }
}
/* Statistics Section Styles (formerly Problem Section) */
.statistics-section {
  padding: 6vw 0;
  background-color: #ffffff;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.statistics-main-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.statistics-item {
  background-color: #f8f9fa;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistics-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.statistics-number {
  font-size: 4.5em;
  font-weight: 700;
  color: #e74c3c;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.statistics-number-alt-color {
  color: #27ae60;
}

.statistics-item-title {
  font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.statistics-item-description {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .statistics-main-title {
    font-size: 2.1em;
    margin-bottom: 40px;
  }
  .statistics-number {
    font-size: 3.8em;
    margin-bottom: 15px;
  }
  .statistics-item-title {
    font-size: 1.15em;
  }
}
/* Problems Section Styles */
.problems-section {
  padding: 6vw 0;
  background-color: #ffffff;
}

.problems-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.problems-image {
  flex: 0.9;
  text-align: center;
}

.problems-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.problems-text-content {
  flex: 1.1;
}

.problems-headline {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.problems-description-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.problems-cta {
  margin-top: 15px;
  text-align: left;
}

@media (max-width: 768px) {
  .problems-container {
    flex-direction: column;
    text-align: center;
  }
  .problems-text-content {
    margin-bottom: 0;
    order: 2;
  }
  .problems-image {
    order: 1;
    width: 90%;
    margin: 0 auto 30px;
  }
  .problems-headline {
    font-size: 1.9em;
  }
  .problems-description-text {
    font-size: 1em;
    text-align: center;
  }
  .problems-cta {
    text-align: center;
  }
}
/* Solution Section Styles */
.solution-section {
  padding: 6vw 0;
  background-color: #ffffff;
}

.solution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.solution-text-content {
  flex: 1.1;
}

.solution-headline {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.solution-sentence {
  font-size: 1em;
  color: #37474f;
  line-height: 1.7;
  margin-bottom: 15px;
}

.solution-cta {
  margin-top: 10px;
  text-align: left;
}

.solution-image {
  flex: 0.9;
  text-align: center;
}

.solution-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .solution-container {
    flex-direction: column;
    text-align: center;
  }
  .solution-text-content {
    margin-bottom: 40px;
    order: 2;
  }
  .solution-image {
    order: 1;
    width: 90%;
    margin: 0 auto 30px;
  }
  .solution-headline {
    font-size: 1.9em;
  }
  .solution-sentence {
    font-size: 1.05em;
  }
  .solution-cta {
    text-align: center;
  }
}
/* Testimonials Section Styles */
.testimonials-section {
  padding: 6vw 0;
  background-color: #f8f9fa;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.testimonials-main-title {
  font-size: 2.2em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 25px;
}

.testimonial-item {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  font-size: 4em;
  color: #F29203;
  position: absolute;
  top: 5px;
  left: 15px;
  line-height: 1;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 0.9em;
  color: #37474f;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-author {
  text-align: right;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  position: relative;
  z-index: 1;
}

.author-name {
  display: block;
  font-size: 1em;
  color: #2c3e50;
  font-weight: 600;
}

.author-title {
  display: block;
  font-size: 0.85em;
  color: #555;
}

.testimonials-cta {
  /* This class was on a div, now unused if we use .section-cta-container */
  text-align: center;
}

@media (max-width: 768px) {
  .testimonials-main-title {
    font-size: 2em;
    margin-bottom: 35px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .testimonial-text {
    font-size: 1em;
  }
}
/* FAQ Section Styles */
.faq-section {
  padding: 6vw 0;
  background-color: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.faq-main-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 25px;
}

.faq-item {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #e9e9e9;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question-btn {
  background-color: transparent;
  border: none;
  padding: 22px 15px;
  width: 100%;
  text-align: left;
  font-size: 1.05em;
  color: #1d1d1f;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.1s ease;
}

.faq-question-btn:hover {
  background-color: #f5f5f7;
}

.faq-icon {
  font-size: 1.5em;
  color: #555555;
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out, padding-top 0.25s ease-out, padding-bottom 0.25s ease-out;
  background-color: #ffffff;
}

.faq-answer {
  padding: 0px 15px 22px 15px;
  font-size: 0.9em;
  color: #4f4f51;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-main-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .faq-question-btn {
    font-size: 1em;
    padding: 20px 10px;
  }
  .faq-icon {
    font-size: 1.4em;
  }
  .faq-answer {
    font-size: 0.85em;
    padding: 0px 10px 20px 10px;
  }
}
.products-overview-hero {
  background-color: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}
.products-overview-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.overview-description {
  font-size: 1.2rem;
  color: #555;
  max-width: 1200px;
  margin: 0 auto;
}

.products-overview-section {
  padding: 60px 0;
}

.products-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 220px;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #333;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #555;
}
.product-feature i {
  color: #F29203;
  font-size: 1.2rem;
}

.product-cta-button {
  display: inline-block;
  background-color: #F29203;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
}
.product-cta-button:hover {
  background-color: #d68203;
  color: white;
}

@media (max-width: 1200px) {
  .products-grid {
    justify-content: center;
  }
  .product-card {
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .product-card {
    max-width: 100%;
  }
  .products-overview-hero {
    padding: 40px 0;
  }
  .products-overview-hero h1 {
    font-size: 2rem;
  }
}
/* Product Details Section Styles */
.product-details-section {
  padding: 6vw 0;
}

.product-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-details-headline {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.product-details-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-details-text {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-details-description {
  font-size: 1.05em;
  color: #555;
  line-height: 1.7;
}

.product-details-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.product-details-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 1.8em;
  color: #F29203;
  flex-shrink: 0;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
}

.feature-description {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-details-headline {
    font-size: 1.9em;
    margin-bottom: 25px;
  }
  .product-details-content {
    gap: 30px;
  }
  .product-details-features {
    grid-template-columns: 1fr;
  }
  .product-details-description {
    font-size: 1em;
  }
}
.related-links-section {
  padding: 6vw 0;
  background-color: #f8f9fa;
}
.related-links-section .related-links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.related-links-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 600;
  color: #333;
  position: relative;
}
.related-links-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #F29203;
}
.related-links-section .related-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-links-section .related-link-item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.related-links-section .related-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.related-links-section .related-link-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-links-section .related-link-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  text-align: center;
}
.related-links-section .related-link-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
  flex: 1;
}
.related-links-section .related-link-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
}
.related-links-section .related-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-links-section .related-link-item:hover .related-link-icon img {
  transform: scale(1.05);
}
.related-links-section .related-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #F29203;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}
.related-links-section .related-link-btn span {
  margin-right: 5px;
}
.related-links-section .related-link-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.related-links-section .related-link-btn:hover {
  color: #d68203;
}
.related-links-section .related-link-btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .related-links-section .related-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-links-section {
    padding: 50px 0;
  }
  .related-links-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .related-links-section .related-links-grid {
    grid-template-columns: 1fr;
  }
  .related-links-section .related-link-item {
    padding: 25px;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 6vw 0;
  background-color: #f8f9fa;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-main-title {
  font-size: 2.2em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-subtitle {
  font-size: 1.2em;
  color: #F29203;
  margin-bottom: 10px;
  font-weight: 500;
}

.pricing-description {
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-tier {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
}

.pricing-tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #F29203;
}

.pricing-tier-popular {
  background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
  border: 3px solid #F29203;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(242, 146, 3, 0.15);
}

.pricing-tier-popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px rgba(242, 146, 3, 0.2);
}

.pricing-tier-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(242, 146, 3, 0.3);
}

.pricing-tier-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-tier-name {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.pricing-tier-price {
  margin-bottom: 10px;
}

.pricing-tier-amount {
  font-size: 2.8em;
  font-weight: 800;
  color: #F29203;
  display: block;
}

.pricing-tier-unit {
  font-size: 1em;
  color: #666;
  margin-top: 5px;
  display: block;
}

.pricing-tier-starting {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.pricing-tier-highlight {
  background-color: #F29203;
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.pricing-tier-note {
  font-size: 0.85em;
  color: #27ae60;
  font-style: italic;
  margin-bottom: 15px;
}

.pricing-tier-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing-tier-example {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.pricing-example-title {
  font-size: 0.9em;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.pricing-example-calculation {
  font-size: 0.85em;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pricing-example-total {
  font-size: 1.1em;
  font-weight: 700;
  color: #F29203;
  margin-bottom: 5px;
}

.pricing-example-note {
  font-size: 0.8em;
  color: #666;
  font-style: italic;
}

.pricing-tier-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  font-size: 1.3em;
  color: #27ae60;
  min-width: 20px;
}

.pricing-feature-excluded .pricing-feature-icon {
  color: #e74c3c;
}

.pricing-feature-text {
  font-size: 1em;
  color: #555;
  line-height: 1.4;
}

.pricing-feature-excluded .pricing-feature-text {
  color: #999;
  opacity: 0.7;
}

.pricing-tier-cta {
  margin-top: auto;
  text-align: center;
}

.pricing-tier-cta .products-cta-button {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(242, 146, 3, 0.3);
  transition: all 0.3s ease;
}

.pricing-tier-cta .products-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 146, 3, 0.4);
}

.pricing-tier-popular .products-cta-button {
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
  box-shadow: 0 6px 20px rgba(242, 146, 3, 0.4);
}

.pricing-tier-popular .products-cta-button:hover {
  background: linear-gradient(135deg, #d68203 0%, #b8720a 100%);
  box-shadow: 0 8px 25px rgba(242, 146, 3, 0.5);
}

.pricing-additional-costs {
  margin-bottom: 50px;
}

.additional-costs-title {
  font-size: 1.8em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.additional-costs-description {
  font-size: 1em;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.additional-costs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.additional-cost-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.additional-cost-title {
  font-size: 1.2em;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.additional-cost-description {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.additional-cost-pricing {
  font-size: 1em;
  color: #F29203;
  font-weight: 600;
  margin-bottom: 8px;
}

.additional-cost-note {
  font-size: 0.8em;
  color: #999;
  font-style: italic;
}

.pricing-benefits {
  margin-bottom: 40px;
}

.pricing-benefits-title {
  font-size: 1.8em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.pricing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.pricing-benefit-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-benefit-item:hover {
  transform: translateY(-3px);
}

.pricing-benefit-icon {
  font-size: 2em;
  color: #F29203;
  margin-bottom: 15px;
}

.pricing-benefit-title {
  font-size: 1.1em;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.pricing-benefit-description {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
}

/* dx-Buddies Section Styles */
.dx-buddies-section {
  padding: 6vw 0;
  background-color: #ffffff;
}

.dx-buddies-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.dx-buddies-header {
  text-align: center;
  margin-bottom: 50px;
}

.dx-buddies-main-title {
  font-size: 2.2em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.dx-buddies-subtitle {
  font-size: 1.2em;
  color: #F29203;
  margin-bottom: 20px;
  font-weight: 500;
}

.dx-buddies-description {
  font-size: 1em;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.dx-buddies-overview {
  margin-bottom: 50px;
}

.dx-buddies-overview-title {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 600;
}

.dx-buddies-overview-description {
  font-size: 1em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.dx-buddies-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.dx-buddies-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  color: #555;
}

.dx-buddies-benefit-icon {
  color: #27ae60;
  font-size: 1.2em;
}

.dx-buddies-agents {
  margin-bottom: 50px;
}

.dx-buddies-agents-title {
  font-size: 1.8em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.dx-buddies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.dx-buddy-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dx-buddy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dx-buddy-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.dx-buddy-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.dx-buddy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dx-buddy-info {
  flex-grow: 1;
}

.dx-buddy-name {
  font-size: 1.3em;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.dx-buddy-department {
  font-size: 0.95em;
  color: #F29203;
  margin-bottom: 3px;
  font-weight: 500;
}

.dx-buddy-version {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 5px;
}

.dx-buddy-price {
  font-size: 1.1em;
  color: #2c3e50;
  font-weight: 600;
}

.dx-buddy-description {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dx-buddy-capabilities-font-size {
  font-size: 1rem;
}

.dx-buddy-capabilities,
.dx-buddy-use-cases {
  margin-bottom: 20px;
}

.dx-buddy-capabilities h5,
.dx-buddy-use-cases h5 {
  font-size: 1em;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.dx-buddy-capabilities-list,
.dx-buddy-use-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dx-buddy-capabilities-list li,
.dx-buddy-use-cases-list li {
  font-size: 0.9em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
}

.dx-buddy-capabilities-list li:before,
.dx-buddy-use-cases-list li:before {
  content: "•";
  color: #F29203;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.dx-buddies-pricing-summary {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.dx-buddies-pricing-title {
  font-size: 1.8em;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.dx-buddies-pricing-description {
  font-size: 1em;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.dx-buddies-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.dx-buddies-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  color: #555;
  padding: 8px 0;
}

.dx-buddies-feature-icon {
  color: #27ae60;
  font-size: 1.2em;
}

.dx-buddies-custom {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-left: 4px solid #F29203;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.dx-buddies-custom:hover {
  background-color: #f1f3f4;
  border-color: #dee2e6;
  transform: translateY(-2px);
}

.dx-buddies-custom-title {
  font-size: 1.3em;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dx-buddies-custom-title:before {
  content: "⚙️";
  font-size: 1.2em;
}

.dx-buddies-custom-description {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.dx-buddies-custom-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 25px;
}

.dx-buddies-custom-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  color: #666;
  padding: 4px 0;
}

.dx-buddies-custom-feature-icon {
  color: #F29203;
  font-size: 1.1em;
}

.dx-buddies-custom-cta {
  text-align: center;
  margin-top: 20px;
}

.dx-buddies-custom-button {
  background-color: transparent;
  color: #F29203;
  border: 2px solid #F29203;
  font-weight: 500;
  padding: 10px 25px;
  font-size: 0.95em;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.dx-buddies-custom-button:hover {
  background-color: #F29203;
  color: white;
  transform: translateY(-1px);
}

.dx-buddies-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.dx-buddies-category {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dx-buddies-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.dx-buddies-category-title {
  font-size: 1.4em;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.dx-buddies-category-description {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.dx-buddies-category-agents {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dx-buddies-category-agent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.dx-buddies-category-agent:hover {
  background-color: #e9ecef;
}

.agent-name {
  font-size: 1em;
  color: #2c3e50;
  font-weight: 600;
  flex: 1;
}

.agent-department {
  font-size: 0.85em;
  color: #F29203;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.agent-price {
  font-size: 0.95em;
  color: #2c3e50;
  font-weight: 600;
  text-align: right;
  flex: 1;
}

@media (max-width: 992px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
  }
  .pricing-tier-popular {
    transform: none;
  }
  .pricing-tier-popular:hover {
    transform: translateY(-5px);
  }
  .dx-buddies-grid {
    grid-template-columns: 1fr;
  }
  .dx-buddies-categories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pricing-main-title {
    font-size: 1.9em;
  }
  .pricing-tier {
    padding: 25px;
  }
  .pricing-tier-name {
    font-size: 1.6em;
  }
  .pricing-tier-amount {
    font-size: 2.4em;
  }
  .pricing-tier-starting {
    font-size: 1.2em;
  }
  .pricing-tier-highlight {
    font-size: 0.8em;
    padding: 5px 12px;
  }
  .pricing-tier-example {
    padding: 12px;
    margin-top: 15px;
  }
  .pricing-example-title {
    font-size: 0.85em;
  }
  .pricing-example-calculation {
    font-size: 0.8em;
  }
  .pricing-example-total {
    font-size: 1em;
  }
  .dx-buddies-main-title {
    font-size: 1.9em;
  }
  .dx-buddies-header {
    margin-bottom: 40px;
  }
  .dx-buddies-overview {
    margin-bottom: 40px;
  }
  .dx-buddies-agents {
    margin-bottom: 40px;
  }
  .dx-buddies-benefits {
    grid-template-columns: 1fr;
  }
  .dx-buddies-pricing-summary {
    padding: 30px 20px;
  }
  .dx-buddies-features {
    grid-template-columns: 1fr;
  }
  .dx-buddies-categories {
    grid-template-columns: 1fr;
  }
  .dx-buddies-custom {
    padding: 20px;
    margin-top: 30px;
  }
  .dx-buddies-custom-features {
    grid-template-columns: 1fr;
  }
  .dx-buddies-custom-title {
    font-size: 1.2em;
  }
  .dx-buddies-category {
    padding: 20px;
  }
  .dx-buddies-category-agent {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .agent-name,
  .agent-department,
  .agent-price {
    text-align: left;
  }
}
.product-page {
  padding: 5rem 3rem;
}
@media screen and (max-width: 768px) {
  .product-page {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 425px) {
  .product-page {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-page .container {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .product-page .container {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .product-page .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
.product-page .container .product-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 425px) {
  .product-page .container .product-header {
    flex-direction: column;
  }
  .product-page .container .product-header .image-container {
    width: 100%;
  }
}
.product-page .container .product-header .product-info {
  width: 75%;
}
.product-page .container .product-header .product-info .product-title {
  margin: 0;
  --tw-space-y-reverse: 0;
  line-height: 1.25;
  font-size: 2.25rem;
  --tw-text-opacity: 1;
  color: rgb(243, 146, 0, var(--tw-text-opacity));
  letter-spacing: -0.025em;
  font-weight: 700;
}
.product-page .container .product-header .image-container {
  display: flex;
  width: 20%;
}
@media screen and (max-width: 425px) {
  .product-page .container .product-header .image-container {
    width: 90%;
  }
}
.product-page .container .product-header .image-container img {
  color: transparent;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.product-page .container .content {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .product-page .container .content {
    line-height: 1.7777778;
  }
}
.product-page .container .content ul, .product-page .container .content ol {
  padding-left: 2rem;
}
.product-page .container .content h1,
.product-page .container .content h2,
.product-page .container .content h3,
.product-page .container .content h4,
.product-page .container .content h5,
.product-page .container .content h6 {
  color: rgb(243, 146, 0);
  padding-top: 2rem;
  padding-bottom: 0.4rem;
}
.product-page .container .content h1 {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .product-page .container .content h1 {
    font-size: 1.75rem;
  }
}
.product-page .container .content h2 {
  font-size: 2rem;
}
.product-page .container .content h3 {
  font-size: 1.75rem;
}
.product-page .container .content h4 {
  font-size: 1.5rem;
}
.product-page .container .content h5 {
  font-size: 1.25rem;
}
.product-page .container .content h6 {
  font-size: 1rem;
}
.product-page .container .content p img {
  width: 70%;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  display: block;
  margin: auto;
}
.product-page .container .content .contact {
  align-items: flex-start;
  gap: 0.5rem;
}
.product-page .container .content .contact .title {
  color: black;
}
.product-page .container .content .contact-button {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Pricing Page Styles - Modern Minimalistic Design */
.pricing-page {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  min-height: 100vh;
}

.pricing-page section,
.pricing-page .pricing-benefits-section,
.pricing-page .pricing-cta-section,
.pricing-page .pricing-additional-section {
  max-width: none;
  padding: 0 !important;
  margin: 0;
}

/* Hero Section */
.pricing-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.pricing-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #1a1d29;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pricing-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #F29203;
  margin-bottom: 12px;
  font-weight: 500;
}

.pricing-hero-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.pricing-main-content {
  padding: 80px 0;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Titles */
.pricing-section-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #1a1d29;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-section-description {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

/* Platform Pricing Section */
.pricing-platform-section {
  margin-bottom: 120px;
}

.pricing-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
  margin-top: 20px;
  align-items: stretch;
}

/* Modern Minimalistic Pricing Cards */
.pricing-tier-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.pricing-tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
  border-color: #F29203;
}

.pricing-tier-popular {
  background: linear-gradient(135deg, #fef7ff 0%, #ffffff 100%);
  border: 2px solid #F29203;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(242, 146, 3, 0.15);
}

.pricing-tier-popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 32px 64px rgba(242, 146, 3, 0.2);
}

.pricing-tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(242, 146, 3, 0.3);
  z-index: 20;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  border: 2px solid #ffffff;
}

.pricing-tier-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-tier-name {
  font-size: 1.5rem;
  color: #F29203;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pricing-tier-price {
  margin-bottom: 16px;
}

.pricing-tier-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #F29203;
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-tier-unit-h2 {
  font-size: 1.875rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

.pricing-tier-unit {
  font-size: 1.175rem;
  color: #64748b;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* Price breakdown for Pro tier */
.pricing-tier-breakdown {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
}

.pricing-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-breakdown-item:last-child {
  border-bottom: none;
}

.pricing-breakdown-users {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
}

.pricing-breakdown-price {
  font-size: 0.875rem;
  color: #F29203;
  font-weight: 600;
}

.pricing-tier-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

/* Example section with modern design */
.pricing-tier-example {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.pricing-example-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-example-calculation {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.5;
}

.pricing-example-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F29203;
  margin-bottom: 8px;
}

.pricing-example-note {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Modern feature list */
.pricing-tier-features {
  flex-grow: 1;
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0;
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  font-size: 1rem;
  color: #10b981;
  min-width: 20px;
  margin-top: 2px;
  background: #ecfdf5;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-feature-excluded .pricing-feature-icon {
  color: #ef4444;
  background: #fef2f2;
}

.pricing-feature-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  font-weight: 500;
}

.pricing-feature-excluded .pricing-feature-text {
  color: #94a3b8;
  opacity: 0.7;
}

/* Modern CTA button */
.pricing-tier-cta {
  margin-top: auto;
}

.pricing-cta-button {
  display: block;
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(242, 146, 3, 0.3);
}

.pricing-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 146, 3, 0.4);
  color: white;
}

.pricing-cta-popular {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pricing-cta-popular:hover {
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* dx-Buddies Section */
.pricing-buddies-section {
  margin-bottom: 120px;
}

.pricing-buddies-intro {
  margin-bottom: 60px;
}

.pricing-buddies-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-buddies-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #64748b;
  padding: 16px 0;
  font-weight: 500;
}

.pricing-buddies-feature-icon {
  color: #10b981;
  font-size: 1rem;
  background: #ecfdf5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-buddies-categories {
  margin-bottom: 60px;
}

.pricing-buddies-category {
  margin-bottom: 80px;
}

.pricing-buddies-category-title {
  font-size: 1.5rem;
  color: #1a1d29;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pricing-buddies-category-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pricing-buddies-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

/* Modern buddy cards */
.pricing-buddy-detailed-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-buddy-detailed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #F29203;
}

.pricing-buddy-detailed-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-buddy-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #F29203;
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
}

.pricing-buddy-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-buddy-info {
  flex: 1;
}

.pricing-buddy-name {
  font-size: 1.25rem;
  color: #1a1d29;
  margin-bottom: 4px;
  font-weight: 600;
}

.pricing-buddy-department {
  font-size: 0.875rem;
  color: #F29203;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-buddy-version {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 8px;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
}

.pricing-buddy-price {
  font-size: 1.125rem;
  color: #1a1d29;
  font-weight: 700;
}

.pricing-buddy-description {
  margin-bottom: 24px;
}

.pricing-buddy-description p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.pricing-buddy-capabilities,
.pricing-buddy-use-cases {
  margin-bottom: 24px;
}

.pricing-buddy-capabilities:last-child,
.pricing-buddy-use-cases:last-child {
  margin-bottom: 0;
}

.pricing-buddy-capabilities h5,
.pricing-buddy-use-cases h5 {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-buddy-capabilities h5:before {
  content: "⚙️";
  font-size: 1rem;
}

.pricing-buddy-use-cases h5:before {
  content: "💡";
  font-size: 1rem;
}

.pricing-buddy-capabilities-list,
.pricing-buddy-use-cases-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-buddy-capabilities-list li,
.pricing-buddy-use-cases-list li {
  padding: 8px 0;
  font-size: 0.8125rem;
  color: #64748b;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.pricing-buddy-capabilities-list li:before,
.pricing-buddy-use-cases-list li:before {
  content: "•";
  color: #F29203;
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Custom dx-Buddies */
.pricing-custom-buddies {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-left: 4px solid #F29203;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.pricing-custom-title {
  font-size: 1.5rem;
  color: #1a1d29;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-custom-title:before {
  content: "⚙️";
  font-size: 1.25rem;
}

.pricing-custom-description {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-custom-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-custom-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #64748b;
  padding: 8px 0;
  font-weight: 500;
}

.pricing-custom-feature-icon {
  color: #F29203;
  font-size: 1rem;
}

.pricing-custom-cta {
  text-align: center;
}

.pricing-custom-button {
  display: inline-block;
  background: transparent;
  color: #F29203;
  border: 2px solid #F29203;
  padding: 12px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-custom-button:hover {
  background: #F29203;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 146, 3, 0.3);
}

/* Additional Costs Section */
.pricing-page .pricing-additional-section {
  margin-bottom: 120px;
  padding: 0 !important;
}

.pricing-additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.pricing-additional-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-additional-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #F29203;
}

.pricing-additional-title {
  font-size: 1.25rem;
  color: #1a1d29;
  margin-bottom: 12px;
  font-weight: 600;
}

.pricing-additional-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.6;
}

.pricing-additional-pricing {
  font-size: 1.125rem;
  color: #F29203;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-additional-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Benefits Section */
.pricing-page .pricing-benefits-section {
  margin-bottom: 120px;
  padding: 0 !important;
}

.pricing-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.pricing-benefit-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #F29203;
}

.pricing-benefit-icon {
  font-size: 2.5rem;
  color: #F29203;
  margin-bottom: 20px;
}

.pricing-benefit-title {
  font-size: 1.125rem;
  color: #1a1d29;
  margin-bottom: 12px;
  font-weight: 600;
}

.pricing-benefit-description {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* CTA Section */
.pricing-page .pricing-cta-section {
  background: linear-gradient(135deg, #1a1d29 0%, #2d3748 100%);
  color: white;
  padding: 80px 0 !important;
  text-align: center;
  margin-top: 80px;
}

.pricing-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-cta-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-cta-description {
  font-size: 1.125rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

.pricing-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, #F29203 0%, #d68203 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(242, 146, 3, 0.3);
}

.pricing-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 146, 3, 0.4);
  color: white;
}

.pricing-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-tiers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-tier-popular {
    transform: none;
  }
  .pricing-tier-popular:hover {
    transform: translateY(-8px);
  }
  .pricing-buddies-detailed-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 0 40px;
  }
  .pricing-hero-container,
  .pricing-container,
  .pricing-cta-content {
    padding: 0 20px;
  }
  .pricing-main-content {
    padding: 60px 0;
  }
  .pricing-platform-section,
  .pricing-buddies-section {
    margin-bottom: 80px;
  }
  .pricing-section-description {
    margin-bottom: 40px;
  }
  .pricing-tier-card {
    padding: 32px 24px;
  }
  .pricing-buddies-features {
    grid-template-columns: 1fr;
  }
  .pricing-custom-buddies {
    padding: 24px;
  }
  .pricing-custom-features {
    grid-template-columns: 1fr;
  }
  .pricing-buddy-detailed-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pricing-buddy-avatar {
    margin-bottom: 16px;
  }
  .pricing-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .pricing-cta-primary,
  .pricing-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .pricing-hero-container,
  .pricing-container,
  .pricing-cta-content {
    padding: 0 16px;
  }
  .pricing-tier-card {
    padding: 24px 20px;
  }
  .pricing-buddy-detailed-card {
    padding: 24px;
  }
  .pricing-additional-item,
  .pricing-benefit-item {
    padding: 24px;
  }
  .pricing-custom-buddies {
    padding: 20px;
  }
}
#page_job {
  padding: 0 var(--font-size-xxl);
  padding-bottom: var(--font-size-xxxl);
  min-height: 50vh;
  height: auto;
}
#page_job .job-title {
  position: relative;
  padding: 5rem 0 1rem 0;
  display: flex;
  justify-content: center;
}
#page_job .job-title .title-image {
  width: 100%;
}
#page_job .job-title .centered {
  font-size: var(--font-size-xl);
  color: white;
  position: absolute;
  top: 27%;
}
#page_job .title-text {
  padding-bottom: 5rem;
}
#page_job .container-pageblog {
  display: flex;
  flex-wrap: wrap;
  --margin: 1rem;
  --multiplier: calc(40rem - 100%);
}
#page_job .container-pageblog > * {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: calc(var(--multiplier) * 999);
  margin: var(--margin);
}
#page_job .container-pageblog > :nth-child(1) {
  min-width: calc(80% - var(--margin) * 2);
}
#page_job .container-pageblog > :nth-child(2) {
  min-width: calc(20% - var(--margin) * 2);
}
#page_job .artikel {
  display: grid;
  grid-template-columns: 120px auto auto auto;
  grid-template-rows: repeat(4, auto);
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-bottom: var(--font-size-xxl);
}
#page_job .artikel .div1 {
  grid-area: 1/1/4/2;
  margin-right: var(--font-size-sm);
}
#page_job .artikel .div1 img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0px 0px 33px 9px rgba(10, 103, 153, 0.8);
}
#page_job .artikel .div2 {
  grid-area: 1/2/2/3;
}
#page_job .artikel .div3 {
  grid-area: 1/3/2/4;
}
#page_job .artikel .div4 {
  grid-area: 1/4/2/5;
  justify-self: end;
}
#page_job .artikel .div5 {
  grid-area: 2/2/3/5;
  margin: var(--font-size-md) 0;
}
#page_job .artikel .div6 {
  grid-area: 3/2/4/5;
  text-align: left;
}
#page_job .artikel .div7 {
  grid-area: 4/1/5/2;
}

.button-read-more {
  border: 1px solid var(--first-color);
  padding: var(--font-size-sm);
  color: var(--first-color);
  font-size: var(--font-size-base);
  margin-top: var(--font-size-xl);
  margin-bottom: var(--font-size-xxxl);
  display: flex;
  align-content: center;
  width: 190px;
  line-height: 24px;
}
.button-read-more img:first-child {
  margin-left: var(--font-size-base);
}

.button-archive {
  border: 1px solid var(--first-color);
  padding: var(--font-size-sm);
  color: var(--first-color);
  font-size: var(--font-size-base);
  margin-top: var(--font-size-xl);
  margin-bottom: var(--font-size-xxxl);
  display: flex;
  align-content: center;
  line-height: 24px;
}
.button-archive img:first-child {
  margin-left: var(--font-size-base);
}

/*-einzel Blog */
#page-job-post {
  background: rgb(0, 0, 0);
  background: linear-gradient(153deg, rgba(0, 19, 29, 0.855) 1%, rgb(2, 58, 88) 50%, rgba(0, 19, 29, 0.855) 100%);
  padding: 0 var(--font-size-xxl);
  padding-bottom: var(--font-size-xxxl);
  min-height: 100vh;
  height: auto;
  padding: 2rem 20%;
}
#page-job-post .container-newblog {
  display: flex;
  flex-wrap: wrap;
  --margin: var(--font-size-base);
  --multiplier: calc(40rem - 100%);
  margin-top: var(--font-size-xl);
}
#page-job-post .container-newblog .job {
  min-width: calc(80% - var(--margin) * 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page-job-post .container-newblog .job h2 {
  margin: var(--font-size-base) 0;
}
#page-job-post .container-newblog .job img {
  width: 100%;
  height: auto;
  max-height: 300px;
  padding-top: 3%;
  background-color: #ce6f09;
}
#page-job-post .container-newblog .job .contact {
  position: relative;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}
#page-job-post .container-newblog .job .contact .img {
  width: 100%;
  height: auto;
  max-height: 500px;
  padding-top: 3%;
  background-color: #ce6f09;
}
#page-job-post .container-newblog .job .contact .centered {
  position: absolute;
  top: 60%;
  left: 4%;
}
#page-job-post .container-newblog .job .contact .button-mail {
  border: 3px solid white;
  padding: 10px;
  color: white;
  font-size: 1.25vw;
  line-height: 24px;
  display: flex;
}
#page-job-post .container-newblog .job em {
  font-size: var(--font-size-sm);
}
#page-job-post .container-newblog .job .content {
  margin-top: var(--font-size-xl);
  text-align: left;
}
#page-job-post .container-newblog > * {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: calc(var(--multiplier) * 999);
  margin: var(--margin);
}
#page-job-post .headline {
  display: flex;
  flex-wrap: wrap;
  --margin: var(--font-size-base);
  --multiplier: calc(40rem - 100%);
  padding-top: var(--font-size-xl);
}
#page-job-post .headline > * {
  max-width: 100%;
  flex-grow: 1;
  flex-basis: calc(var(--multiplier) * 999);
  margin: var(--margin);
}
#page-job-post .headline > :nth-child(1),
#page-job-post .headline > :nth-child(2),
#page-job-post .headline > :nth-child(3) {
  min-width: calc(33% - var(--margin) * 2);
}

/* Global Styles */
#policy-and-impress {
  padding: 2rem;
  /* Container */
  /* Section Styles */
  /* Table Styles */
  /* Policy Content Styles */
  /* Responsive Design */
}
#policy-and-impress body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}
#policy-and-impress a {
  color: #007bff;
  text-decoration: none;
}
#policy-and-impress a:hover {
  text-decoration: underline;
}
#policy-and-impress .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
#policy-and-impress .section__height {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#policy-and-impress h2 {
  font-size: 2.5em;
  margin-bottom: 8px;
  color: #333;
}
#policy-and-impress h3,
#policy-and-impress h4,
#policy-and-impress h5 {
  margin-bottom: 8px;
  color: #333;
  padding-bottom: 4px;
}
#policy-and-impress h3 {
  font-size: 1.8em;
  border-bottom: 2px solid #F29203;
}
#policy-and-impress h4 {
  font-size: 1.5em;
  border-bottom: 2px solid #333;
}
#policy-and-impress h5 {
  font-size: 1.3em;
  border-bottom: 1px solid #899;
}
#policy-and-impress ul,
#policy-and-impress ol {
  padding-left: 24px;
}
#policy-and-impress p,
#policy-and-impress ul,
#policy-and-impress ol {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #666;
}
#policy-and-impress li {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #666;
}
#policy-and-impress .margin-left {
  margin-left: 24px;
}
#policy-and-impress table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
#policy-and-impress table td {
  text-align: left;
  font-size: 1.2em;
  padding: 8px 0;
}
#policy-and-impress table td a {
  color: #007bff;
}
#policy-and-impress #policy-and-impress {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}
#policy-and-impress #policy-and-impress h3 {
  color: #444;
  margin-top: 40px;
}
#policy-and-impress #policy-and-impress p {
  margin: 10px 0;
}
@media screen and (min-width: 1024px) {
  #policy-and-impress {
    padding: 3rem;
  }
  #policy-and-impress .container {
    padding: 15px;
  }
  #policy-and-impress h3 {
    font-size: 1.6em;
  }
  #policy-and-impress p,
  #policy-and-impress li,
  #policy-and-impress ul,
  #policy-and-impress ol {
    font-size: 1em;
    text-align: justify;
  }
  #policy-and-impress table td {
    font-size: 1em;
  }
}
#policy-and-impress .margin-left {
  margin-left: 12px;
}

.action-list {
  max-width: none;
  width: 100vw;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/assets/img/home/slider/slider-background.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.action-list .contact-form-page {
  max-width: 1440px;
  margin: auto;
}
.action-list .contact-form-page .contact-text-container .title {
  margin-bottom: 2rem;
}
.action-list .contact-form-page .contact-text-container .timeline {
  position: relative;
  padding-left: 30px;
  margin-left: 20px;
}
.action-list .contact-form-page .contact-text-container .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 35px;
  width: 4px;
  background: #F29203;
}
@media screen and (max-width: 395px) {
  .action-list .contact-form-page .contact-text-container .timeline::before {
    bottom: 30px;
  }
}
.action-list .contact-form-page .contact-text-container .timeline-item {
  position: relative;
  margin-bottom: 20px;
  height: 45px;
}
.action-list .contact-form-page .contact-text-container .timeline-item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F29203;
}
.action-list .contact-form-page .contact-text-container .timeline-content {
  line-height: 1.5;
}
.action-list .contact-form-page .contact-address-container {
  --box-size: 25vw;
  --box-offset: 35%;
  --transition-transform-function: cubic-bezier(0.43, 0.05, 0.01, 1.35);
  --transition-translate-value: calc(var(--box-offset) / 6);
  --transition-time: 1s;
  --box-margin: calc(var(--box-size) / 2);
  margin: var(--box-margin) auto;
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
}
.action-list .contact-form-page .contact-address-container .address, .action-list .contact-form-page .contact-address-container .map {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1.5px solid #F29203;
  transition: var(--transition-time) ease;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
}
.action-list .contact-form-page .contact-address-container .address:hover, .action-list .contact-form-page .contact-address-container .map:hover {
  transition: var(--transition-time) var(--transition-transform-function);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.75);
}
.action-list .contact-form-page .contact-address-container .address, .action-list .contact-form-page .contact-address-container .map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition-time) var(--transition-transform-function);
}
.action-list .contact-form-page .contact-address-container .address h1, .action-list .contact-form-page .contact-address-container .map h1 {
  font-size: 4vw;
}
.action-list .contact-form-page .contact-address-container .address a, .action-list .contact-form-page .contact-address-container .map a {
  font-size: 1vw;
}
.action-list .contact-form-page .contact-address-container .address p, .action-list .contact-form-page .contact-address-container .map p {
  font-size: 1.25vw;
}
.action-list .contact-form-page .contact-address-container .address {
  top: calc(-1 * var(--box-offset));
  right: calc(-1 * var(--box-offset));
  z-index: 1;
  padding: 0 1rem;
  justify-content: flex-start;
  background-color: rgba(243, 146, 0, 0.125);
}
.action-list .contact-form-page .contact-address-container .address h1 {
  padding: 5% 0;
}
.action-list .contact-form-page .contact-address-container .address p {
  padding: 7.5% 0;
}
.action-list .contact-form-page .contact-address-container .address:hover {
  transform: translateX(var(--transition-translate-value)) translateY(calc(-1 * var(--transition-translate-value)));
}
.action-list .contact-form-page .contact-address-container .map {
  position: relative;
  top: var(--box-offset);
  right: var(--box-offset);
  z-index: 2;
  border: 1.5px solid black;
  background-color: white;
}
.action-list .contact-form-page .contact-address-container .map iframe, .action-list .contact-form-page .contact-address-container .map h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.action-list .contact-form-page .contact-address-container .map iframe {
  z-index: 1;
  border-radius: 0.9rem;
}
.action-list .contact-form-page .contact-address-container .map h2 {
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5%;
}
.action-list .contact-form-page .contact-address-container .map:hover {
  transform: translateX(calc(-1 * var(--transition-translate-value))) translateY(var(--transition-translate-value));
}
@media screen and (max-width: 768px) {
  .action-list .contact-form-page .contact-address-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: static;
  }
  .action-list .contact-form-page .contact-address-container .address, .action-list .contact-form-page .contact-address-container .map {
    width: calc(var(--box-size) + 5vw);
    height: calc(var(--box-size) + 5vw);
    margin: 0.5rem;
    top: auto;
    right: auto;
  }
  .action-list .contact-form-page .contact-address-container {
    transform: translateY(-20%);
  }
  .action-list .contact-form-page .contact-address-container .address {
    transform: translateX(-75%);
  }
  .action-list .contact-form-page .contact-address-container .address p {
    padding-top: 4vw;
    font-size: 1.5vw;
  }
  .action-list .contact-form-page .contact-address-container .map {
    transform: translateX(75%);
  }
}
@media screen and (max-width: 425px) {
  .action-list .contact-form-page .contact-address-container .address {
    transform: translate(0);
    width: 50%;
  }
  .action-list .contact-form-page .contact-address-container .address p {
    font-size: 2vw;
  }
  .action-list .contact-form-page .contact-address-container .map {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .action-list .contact-form-page .contact-text .timeline::before {
    bottom: 30px;
  }
  .action-list .contact-form-page .contact-text .timeline .timeline-item p {
    padding-top: 2px;
  }
}
@media (max-width: 768px) {
  .action-list .contact-form-page .contact-text .timeline .timeline-item p {
    padding-top: 5px;
  }
}
@media (max-width: 425px) {
  .action-list .contact-form-page .contact-text .timeline .timeline-item p {
    padding-top: 7.5px;
  }
}
@media (max-width: 375px) {
  .action-list .contact-form-page .contact-text .timeline .timeline-item {
    height: 70px;
  }
}
.form .contact-form-page {
  max-width: 1440px;
  margin: auto;
}
.form .contact-form-page .contact-form-container {
  margin-top: 40px;
  width: 95%;
  position: relative;
}
.form .contact-form-page .contact-form-container::after, .form .contact-form-page .contact-form-container::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(#f39200, #f33500, #f3ae00, #f39200, #f39200);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border-radius: 1rem;
  padding: 1px;
}
.form .contact-form-page .contact-form-container::before {
  transition: 1s;
  filter: blur(1.5rem);
  opacity: 0.35;
}
.form .contact-form-page .contact-form-container:hover::before {
  transition: 1s;
  filter: blur(2rem);
  opacity: 0.65;
}
.form .contact-form-page .contact-form-container .contact-form {
  min-height: 27.5rem;
  display: grid;
  grid-template-rows: 75% 20% 5%;
  grid-template-columns: 50% 50%;
  grid-template-areas: "left right" "bottom-left-top bottom-right" "bottom-left-bot bottom-right";
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 0.9rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group {
  margin-bottom: 15px;
}
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group input,
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group select,
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group input:focus,
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group select:focus,
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group textarea:focus {
  border-color: rgb(243, 146, 0);
  outline: none;
}
.form .contact-form-page .contact-form-container .contact-form .contact-form-item .form-group textarea {
  width: 100%;
  height: 100%;
  resize: none;
}
.form .contact-form-page .contact-form-container .contact-form .right, .form .contact-form-page .contact-form-container .contact-form .left {
  padding: 0 10px;
}
.form .contact-form-page .contact-form-container .contact-form .left {
  grid-area: left;
}
.form .contact-form-page .contact-form-container .contact-form .left .full-name {
  display: flex;
  gap: 15px;
  margin-bottom: 1.1rem;
}
.form .contact-form-page .contact-form-container .contact-form .left .full-name .name-child {
  flex: 1 1 50%;
}
.form .contact-form-page .contact-form-container .contact-form .right {
  grid-area: right;
}
.form .contact-form-page .contact-form-container .contact-form .right .message {
  height: 12.6rem;
}
.form .contact-form-page .contact-form-container .contact-form .captcha-container {
  grid-area: bottom-left-top;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .contact-form-page .contact-form-container .contact-form .checkbox-container {
  grid-area: bottom-left-bot;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .contact-form-page .contact-form-container .contact-form .checkbox-container .checkbox-items {
  text-align: center;
}
.form .contact-form-page .contact-form-container .contact-form .checkbox-container .checkbox-items input {
  vertical-align: middle;
}
.form .contact-form-page .contact-form-container .contact-form .checkbox-container .checkbox-items label {
  font-size: 12px;
}
.form .contact-form-page .contact-form-container .contact-form .submit-button {
  grid-area: bottom-right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form .contact-form-page .contact-form-container .contact-form .submit-button button {
  width: 30%;
  min-width: 115px;
  padding: 10px;
  display: block;
  margin: 0 auto;
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
}
.form .contact-form-page .contact-form-container .contact-form .submit-button button:hover {
  cursor: pointer;
  background-color: #f39200;
  border-color: #f39200;
  transform: scale(1.1);
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .form .contact-form-page .contact-form-container .contact-form {
    display: flex;
    flex-direction: column;
  }
  .form .contact-form-page .contact-form-container .contact-form .right .message {
    height: 8rem;
  }
  .form .contact-form-page .contact-form-container .contact-form .captcha-container {
    margin-top: 1.5rem;
  }
  .form .contact-form-page .contact-form-container .contact-form .submit-button {
    order: 999;
    margin-top: 0.5rem;
  }
}
@media (max-width: 425px) {
  .form .contact-form-page .contact-text .timeline .timeline-item p {
    padding-top: 7.5px;
  }
  .form .contact-form-page .contact-form-container .contact-form .captcha-container .h-captcha {
    scale: 0.8;
  }
}
@media (max-width: 375px) {
  .form .contact-form-page .contact-text .timeline .timeline-item {
    height: 70px;
  }
}
@media (max-width: 366px) {
  .form .contact-form-page .contact-form-container .contact-form label {
    font-size: 12px;
  }
  .form .contact-form-page .contact-form-container .contact-form select {
    font-size: 12px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}
.map-address-cards {
  max-width: none;
  width: 100vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(/assets/img/home/slider/slider-background.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.map-address-cards .contact-form-page {
  max-width: 1440px;
  margin: auto;
}
.map-address-cards .contact-form-page .contact-address-container {
  --box-size: 25vw;
  --box-offset: 37.5%;
  --transition-transform-function: cubic-bezier(0.43, 0.05, 0.01, 1.35);
  --transition-translate-value: calc(var(--box-offset) / 5);
  --transition-time: 1s;
  --box-margin: calc(var(--box-size) / 2);
  margin: var(--box-margin) auto;
  width: var(--box-size);
  height: var(--box-size);
  position: relative;
}
.map-address-cards .contact-form-page .contact-address-container .address, .map-address-cards .contact-form-page .contact-address-container .map {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1.5px solid #f39200;
  transition: var(--transition-time) ease;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
}
.map-address-cards .contact-form-page .contact-address-container .address:hover, .map-address-cards .contact-form-page .contact-address-container .map:hover {
  transition: var(--transition-time) var(--transition-transform-function);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.75);
}
.map-address-cards .contact-form-page .contact-address-container .address, .map-address-cards .contact-form-page .contact-address-container .map {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: transform var(--transition-time) var(--transition-transform-function);
}
.map-address-cards .contact-form-page .contact-address-container .address h1, .map-address-cards .contact-form-page .contact-address-container .map h1 {
  font-size: 3vw;
}
.map-address-cards .contact-form-page .contact-address-container .address a, .map-address-cards .contact-form-page .contact-address-container .map a {
  font-size: 1vw;
}
.map-address-cards .contact-form-page .contact-address-container .address p, .map-address-cards .contact-form-page .contact-address-container .map p {
  font-size: 1.25vw;
}
.map-address-cards .contact-form-page .contact-address-container .address {
  top: calc(-1 * var(--box-offset));
  right: calc(-1 * var(--box-offset));
  z-index: 1;
  padding: 0 1rem;
  justify-content: flex-start;
  background-color: rgba(243, 146, 0, 0.3098039216);
}
.map-address-cards .contact-form-page .contact-address-container .address h1 {
  padding: 5% 0;
}
.map-address-cards .contact-form-page .contact-address-container .address:hover {
  transform: translateX(var(--transition-translate-value)) translateY(calc(-1 * var(--transition-translate-value)));
}
.map-address-cards .contact-form-page .contact-address-container .map {
  position: relative;
  top: var(--box-offset);
  right: var(--box-offset);
  z-index: 2;
  border: 1.5px solid black;
  background-color: white;
}
.map-address-cards .contact-form-page .contact-address-container .map iframe, .map-address-cards .contact-form-page .contact-address-container .map h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.map-address-cards .contact-form-page .contact-address-container .map iframe {
  z-index: 1;
  border-radius: 0.9rem;
  height: 100%;
}
.map-address-cards .contact-form-page .contact-address-container .map h2 {
  z-index: 2;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 1.25%;
}
.map-address-cards .contact-form-page .contact-address-container .map:hover {
  transform: translateX(calc(-1 * var(--transition-translate-value))) translateY(var(--transition-translate-value));
}
@media screen and (max-width: 1024px) {
  .map-address-cards .contact-form-page .contact-address-container {
    --box-size: 35vw;
  }
  .map-address-cards .contact-form-page .contact-address-container .address p {
    font-size: 1.75vw;
  }
  .map-address-cards .contact-form-page .contact-address-container .map a {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .map-address-cards .contact-form-page .contact-address-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    position: static;
  }
  .map-address-cards .contact-form-page .contact-address-container .address, .map-address-cards .contact-form-page .contact-address-container .map {
    width: calc(var(--box-size) + 5vw);
    height: calc(var(--box-size) + 5vw);
    margin: 0.5rem;
    top: auto;
    right: auto;
    justify-content: center;
  }
  .map-address-cards .contact-form-page .contact-address-container {
    transform: translateY(-20%);
  }
  .map-address-cards .contact-form-page .contact-address-container .address {
    transform: translateX(-60%);
  }
  .map-address-cards .contact-form-page .contact-address-container .address:hover {
    transform: translateX(-60%);
  }
  .map-address-cards .contact-form-page .contact-address-container .address p {
    margin-top: 0.5rem;
    font-size: 2.25vw;
  }
  .map-address-cards .contact-form-page .contact-address-container .map {
    transform: translateX(60%);
  }
  .map-address-cards .contact-form-page .contact-address-container .map:hover {
    transform: translateX(60%);
  }
}
@media screen and (max-width: 425px) {
  .map-address-cards .contact-form-page .contact-address-container .address {
    flex-direction: row;
    gap: 1rem;
    transform: translate(0);
  }
  .map-address-cards .contact-form-page .contact-address-container .address:hover {
    transform: translate(0);
  }
  .map-address-cards .contact-form-page .contact-address-container .address {
    width: 75%;
  }
  .map-address-cards .contact-form-page .contact-address-container .address h1 {
    font-size: 4vw;
  }
  .map-address-cards .contact-form-page .contact-address-container .address p {
    font-size: 3vw;
  }
  .map-address-cards .contact-form-page .contact-address-container .map {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .map-address-cards .contact-form-page .contact-address-container .address p {
    font-size: 2.6vw;
  }
}

.not-found-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not-found-page img {
  max-width: 100%;
  transform: translateX(3.5%);
}
@media screen and (max-width: 425px) {
  .not-found-page .button-link {
    font-size: small;
    min-height: 0;
  }
}

.thank-you-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank-you-container .title {
  padding: 5rem 0 0 0;
}
.thank-you-container .text {
  padding: 5rem 0;
  text-align: center;
}
.thank-you-container .home-button {
  padding-bottom: 2rem;
}

.die-vielfalt .item-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.die-vielfalt .item-container .item {
  display: flex;
  flex-direction: column;
}
.die-vielfalt .item-container .item a {
  justify-self: end;
  margin-top: 1rem;
}
@media screen and (min-width: 576px) {
  .die-vielfalt .item-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .die-vielfalt .item-container {
    gap: 2rem;
  }
}

.events-dashboard {
  margin: 0 auto;
}
.events-dashboard button {
  transition: 1s ease;
  border: 1px solid black;
  color: black;
  background: white;
  cursor: pointer;
  margin: 12px;
}
.events-dashboard button:hover, .events-dashboard button.active {
  background-color: #F29203;
  border-color: #F29203;
  color: white;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: 0.5s ease;
}
.events-dashboard .filter-search {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  display: none;
}
.events-dashboard .filter-search .events-search-label {
  display: none;
}
.events-dashboard .filter-search #events-search {
  flex: 1 1 auto;
  min-width: 200px;
  width: 100%;
  height: 3rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border: 0.5px solid black;
  border-radius: 0.625rem;
  color: #1c1e53;
}
.events-dashboard .filter-search #events-search:focus {
  border-bottom: 0.25rem solid #f39200;
  outline: none;
}
.events-dashboard .filter-search .filter-buttons-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.events-dashboard .filter-search .filter-buttons-container .filter-button {
  border-radius: 4rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.events-dashboard .events-container .event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.events-dashboard .events-container .event-cards .event-card {
  width: 100%;
  color: inherit;
  text-decoration: inherit;
  margin-top: 1rem;
  border: 1px solid rgb(180, 180, 180);
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.events-dashboard .events-container .event-cards .event-card:hover {
  border-color: #f39200;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}
.events-dashboard .events-container .event-cards .event-card:hover .event-details h3 {
  color: #f39200;
}
.events-dashboard .events-container .event-cards .event-card .image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.events-dashboard .events-container .event-cards .event-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.events-dashboard .events-container .event-cards .event-card .event-details {
  padding-left: 0.5rem;
  margin: 1rem 0;
}
.events-dashboard .events-container .event-cards .event-card .event-details h3 {
  margin: 0.3rem;
  line-height: 1.25;
  color: #000;
  font-weight: 600;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
.events-dashboard .events-container .event-cards .event-card .event-details p {
  margin: 1rem 0 0 0;
  color: rgb(74, 58, 88, var(--tw-text-opacity));
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.events-dashboard .events-container .pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.events-dashboard .events-container .pagination button {
  padding: 0.5rem 1rem;
  min-width: 40px;
  height: 40px;
  border-radius: 20px;
  margin: 0 0.25rem;
}
.events-dashboard .events-container .event-card.visible {
  display: block;
}
.events-dashboard .events-container .event-card:not(.visible) {
  display: none;
}
@media screen and (min-width: 576px) {
  .events-dashboard .filter-search {
    flex-direction: row;
  }
  .events-dashboard .filter-search #events-search {
    width: calc(50% - 0.5rem);
  }
}

@media screen and (max-width: 1200px) {
  .events-dashboard .events-container .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .events-dashboard .events-container .event-cards {
    grid-template-columns: 1fr;
  }
}
.next-event .box {
  position: relative;
  padding: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.next-event .box .circel {
  width: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem);
  height: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem);
  background-color: #F29203;
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
}
.next-event .box h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: gray;
}
.next-event .box .headline {
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-bottom: 0;
}
.next-event .box .headline span {
  color: #F29203;
}
.next-event .box {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
}
@media only screen and (max-width: 430px) {
  .next-event .box .circel {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .next-event .box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
  }
}

.training-types h2 {
  margin-top: 0.75rem;
}
.training-types .attribute-items {
  display: flex;
  justify-content: center;
  margin-top: 4.375rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.training-types .item-t-typ {
  box-shadow: 0 10px 1rem rgba(0, 0, 0, 0.35);
  border-radius: 0.625rem;
  padding: 2rem;
  border-bottom: 0.25rem solid transparent;
}
.training-types .item-t-typ .headline {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.training-types .item-t-typ .headline i {
  font-size: 2.5rem;
  color: #f39200;
}
.training-types .item-t-typ p {
  margin-top: 1.25rem;
  color: black;
}

.training-types.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Basisstil für die gesamte Sektion */
/* Basisstil für die gesamte Sektion */
.unsere-referenten {
  position: relative;
  /* Für die Positionierung der Navigationspfeile */
  /* Navigationspfeile  aktiviere wenn mehrere Referenten*/
  /* Verstecken der Pfeile auf mobilen Geräten */
}
.unsere-referenten h2 {
  margin-top: 0.75rem;
}
.unsere-referenten .referenten-container {
  display: flex;
  gap: 2rem;
  margin-top: 20px;
  padding-bottom: 10px;
}
.unsere-referenten .referenten-container .referent {
  flex: 0 0 auto;
  margin: 10px;
  text-align: center;
}
.unsere-referenten .referenten-container .referent img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F29203;
  box-shadow: 0 10px 1rem rgba(0, 0, 0, 0.35);
}
.unsere-referenten .referenten-container .referent .referent-name {
  font-size: 1.4rem;
  display: block;
  margin-top: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.unsere-referenten .nav-button {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 10px;
  z-index: 1;
}
.unsere-referenten .nav-button.prev {
  left: 0;
}
.unsere-referenten .nav-button.next {
  right: 0;
}
@media (max-width: 756px) {
  .unsere-referenten .nav-button {
    display: none;
  }
  .unsere-referenten .referenten-container {
    flex-direction: column;
  }
}

.die-vielfalt .item, .training-types .item {
  transition: 1s ease;
  width: 100%;
  box-shadow: 0 10px 1rem rgba(0, 0, 0, 0.35);
  border-radius: 0.625rem;
  padding: 2rem;
  border-bottom: 0.25rem solid transparent;
}
.die-vielfalt .item:hover, .training-types .item:hover {
  transition: 1s ease;
  transform: translateY(-15px);
  box-shadow: 0 15px 1.5rem rgba(0, 0, 0, 0.5);
}
.die-vielfalt .item .headline, .training-types .item .headline {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.die-vielfalt .item .headline i, .training-types .item .headline i {
  font-size: 2.5rem;
  color: #f39200;
}
.die-vielfalt .item p, .training-types .item p {
  margin-top: 1.25rem;
  color: black;
}

/*
    This is the styling of the subpages for the layout training
    in the _layouts folder which defines the styling for each subpage
    of the training page.
*/
.training-hero .hero-content {
  margin: 60px 0;
}

.training-page {
  margin: 0 auto 4rem auto;
  /* Media Queries für größere Bildschirme */
  /* Anpassungen der Listenabstände und Markierungsgrößen */
}
.training-page .box-shadowing {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  border-bottom: 0.25rem solid transparent;
  padding: 1rem;
}
.training-page .training-image {
  margin: 2rem 0;
  width: 100%;
  margin: auto;
  --transition-time: 1s;
}
.training-page .training-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.training-page .training-section {
  margin-top: 4rem;
}
.training-page .training-section h4 {
  margin-bottom: 1rem;
}
.training-page .training-section ul,
.training-page .training-section ol {
  padding-left: 0.5rem;
}
.training-page .training-section ul ul,
.training-page .training-section ol ul {
  padding-left: 1.5rem;
}
.training-page .dates ul {
  margin-left: 1rem;
}
.training-page .gains-and-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.training-page .gains-and-details .gains,
.training-page .gains-and-details .seminar-details {
  width: 100%;
}
.training-page .gains-and-details .gains ul li {
  list-style-type: disc;
  margin-left: 1rem;
}
.training-page .gains-and-details .seminar-details {
  background-color: #f8f0e5;
}
.training-page .gains-and-details .seminar-details ul li {
  margin-top: 0.5rem;
  list-style-type: none;
}
.training-page .gains-and-details .seminar-details ul li .label {
  font-weight: 600;
}
.training-page .content-and-referents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.training-page .content-and-referents .content,
.training-page .content-and-referents .referent {
  width: 100%;
}
.training-page .content-and-referents .content {
  background-color: #f8f0e5;
}
.training-page .content-and-referents .content ol {
  margin-left: 1.5rem;
}
.training-page .content-and-referents .content ol li::marker {
  font-weight: 600;
}
.training-page .content-and-referents .referent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.training-page .content-and-referents .referent .referent-card {
  width: 100%;
}
.training-page .content-and-referents .referent .referent-image {
  display: flex;
  justify-content: center;
}
.training-page .content-and-referents .referent .referent-image img {
  border-radius: 150px;
  border: #F29203 solid 0.25rem;
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
}
.training-page .content-and-referents .referent .referent-details .referent-name {
  text-align: center;
}
.training-page .content-and-referents .referent .referent-details .referent-description {
  width: 100%;
  margin-top: 1rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.training-page .content-and-referents .referent .referent-details .referent-description summary {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}
.training-page .content-and-referents .referent .referent-details .referent-description[open] summary {
  margin-bottom: 0.5rem;
}
.training-page .content-and-referents .referent .referent-details .referent-description p {
  margin: 0;
  padding-top: 0.5rem;
}
.training-page .registration {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.training-page .registration h4 {
  color: #F29203;
}
.training-page .registration ul {
  margin-left: 1.5rem;
}
.training-page .registration h5 {
  margin: 0.4rem 0;
}
.training-page .registration .anmelden-button {
  align-self: center;
}
.training-page .registration .registration-form-container .registration-form {
  display: flex;
  flex-direction: column;
}
.training-page .registration .registration-form-container .registration-form .form-group {
  margin: auto;
  margin-bottom: 1rem;
}
.training-page .registration .registration-form-container .registration-form .form-group label {
  display: block;
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}
.training-page .registration .registration-form-container .registration-form .form-group input,
.training-page .registration .registration-form-container .registration-form .form-group select,
.training-page .registration .registration-form-container .registration-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.training-page .registration .registration-form-container .registration-form .form-group input:focus,
.training-page .registration .registration-form-container .registration-form .form-group select:focus,
.training-page .registration .registration-form-container .registration-form .form-group textarea:focus {
  border-color: #F29203;
  outline: none;
}
.training-page .registration .registration-form-container .registration-form .form-group textarea {
  height: 100%;
  resize: none;
}
.training-page .registration .registration-form-container .registration-form .form-group .h-captcha {
  display: flex;
  justify-content: center;
  align-items: center;
}
.training-page .registration .registration-form-container .registration-form .form-group .checkbox-items {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0.5rem;
}
.training-page .registration .registration-form-container .registration-form .form-group .checkbox-items input {
  display: inline;
  vertical-align: middle;
  justify-content: center;
  width: 10px;
}
.training-page .registration .registration-form-container .registration-form .form-group .checkbox-items label {
  display: inline;
  font-size: 0.75rem;
  font-weight: normal;
  text-align: center;
}
.training-page .registration .registration-form-container .registration-form .checkbox-container {
  display: flex;
  justify-content: center;
}
.training-page .info ul {
  margin-left: 1.5rem;
}
.training-page .faq {
  margin-bottom: 4rem;
}
.training-page .faq h4 {
  color: #F29203;
}
.training-page .faq .faq-item {
  margin: 1rem 0;
}
.training-page .faq .faq-item h5 {
  margin-bottom: 0.3rem;
}
.training-page li::marker {
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  .training-page .training-image {
    width: 80%;
  }
  .training-page .gains-and-details,
  .training-page .content-and-referents {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
  }
  .training-page .gains-and-details {
    flex-direction: row;
  }
  .training-page .gains-and-details .gains {
    width: 40%;
  }
  .training-page .gains-and-details .seminar-details {
    width: 60%;
  }
  .training-page .content-and-referents {
    flex-direction: row;
  }
  .training-page .content-and-referents .content {
    width: 60%;
  }
  .training-page .content-and-referents .referent {
    width: 40%;
  }
  .training-page .registration-form-container .registration-form .form-group .checkbox-items label {
    font-size: 1rem;
  }
}
@media screen and (min-width: 578px) {
  .training-page ol {
    margin-left: 1.2em;
  }
  .training-page li::marker {
    font-size: 1em;
  }
}
@media screen and (min-width: 768px) {
  .training-page .registration-form-container .registration-form .registration-form-item .full-name {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .training-page .registration-form-container .registration-form .registration-form-item .full-name .form-group {
    margin: 0;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .training-page ol {
    margin-left: 1.5em;
  }
  .training-page li::marker {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 1024px) {
  .training-page .registration .registration-form-container .registration-form {
    display: grid;
    grid-template-rows: 70% 10% 15%;
    grid-template-columns: 49% 49%;
    gap: 2%;
    grid-template-areas: "left right" "terms terms" "button button";
  }
  .training-page .registration .registration-form-container .registration-form .form-group .checkbox-items label {
    font-size: 0.75rem;
  }
  .training-page .registration .registration-form-container .registration-form .left {
    grid-area: left;
  }
  .training-page .registration .registration-form-container .registration-form .right {
    grid-area: right;
  }
  .training-page .registration .registration-form-container .registration-form .checkbox-container {
    grid-area: terms;
  }
  .training-page .registration .registration-form-container .registration-form .submit-button {
    grid-area: button;
  }
}
@media screen and (min-width: 1200px) {
  .training-page ol {
    margin-left: 2em;
  }
  .training-page h5 {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 1440px) {
  .training-page .registration-form-container .registration-form .form-group .checkbox-items label {
    font-size: 0.95rem;
  }
}

.blog-page {
  padding: 5rem 3rem;
}
@media screen and (max-width: 768px) {
  .blog-page {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 425px) {
  .blog-page {
    padding-left: 0;
    padding-right: 0;
  }
}
.blog-page .container {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .blog-page .container {
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .blog-page .container {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}
.blog-page .container .blog-header .image-container {
  margin-bottom: 2rem;
  margin-top: 0.5rem;
}
.blog-page .container .blog-header .image-container img {
  color: transparent;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.25);
}
.blog-page .container .blog-header .blog-title {
  margin: 0;
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  line-height: 1.25;
  font-size: 2.25rem;
  --tw-text-opacity: 1;
  color: rgb(243, 146, 0, var(--tw-text-opacity));
  letter-spacing: -0.025em;
  font-weight: 700;
}
.blog-page .container .blog-header .blog-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 1rem;
}
.blog-page .container .blog-header .blog-info b {
  font-weight: 600;
}
.blog-page .container .blog-header .blog-info .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 2px solid rgb(243, 146, 0);
}
.blog-page .container .blog-header .blog-info .author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-page .container .blog-header .blog-info .author-info .author {
  color: rgb(54, 43, 61);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.blog-page .container .blog-header .blog-info .author-info .author-title {
  color: rgba(54, 43, 61, 0.5);
  font-size: 0.8rem;
}
.blog-page .container .blog-header .blog-info .blog-published {
  align-content: center;
  --tw-text-opacity: 1;
  color: rgb(54, 43, 61);
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-left: auto;
}
.blog-page .container .content {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .blog-page .container .content {
    line-height: 1.7777778;
  }
}
.blog-page .container .content ul, .blog-page .container .content ol {
  padding-left: 2rem;
}
.blog-page .container .content h1,
.blog-page .container .content h2,
.blog-page .container .content h3,
.blog-page .container .content h4,
.blog-page .container .content h5,
.blog-page .container .content h6 {
  color: rgb(243, 146, 0);
  padding-top: 2rem;
  padding-bottom: 0.4rem;
}
.blog-page .container .content h1 {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .blog-page .container .content h1 {
    font-size: 1.75rem;
  }
}
.blog-page .container .content h2 {
  font-size: 2rem;
}
.blog-page .container .content h3 {
  font-size: 1.75rem;
}
.blog-page .container .content h4 {
  font-size: 1.5rem;
}
.blog-page .container .content h5 {
  font-size: 1.25rem;
}
.blog-page .container .content h6 {
  font-size: 1rem;
}
.blog-page .container .content p img {
  width: 70%;
  border-radius: 1.5rem;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  display: block;
  margin: auto;
}
.blog-page .container .content .contact {
  align-items: flex-start;
  gap: 0.5rem;
}
.blog-page .container .content .contact .title {
  color: black;
}
.blog-page .container .content .contact-button {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pagination-container {
  margin-top: 2rem;
  padding: 2rem 0;
  overflow-x: scroll;
}
.pagination-container .pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}
.pagination-container .pagination .page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
}
.pagination-container .pagination .page-numbers a.active {
  color: black;
  border-color: #F29203;
  background: #F29203;
  box-shadow: 0 6px 5px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
  z-index: 1;
  color: white;
}
.pagination-container .pagination .page-numbers .button-link {
  justify-content: center;
  width: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  height: clamp(2rem, 1.9rem + 0.5vw, 2.5rem);
  align-items: center;
  border-color: #999;
  color: #999;
}
.pagination-container .pagination .page-numbers .button-link:hover, .pagination-container .pagination .page-numbers .button-link:active {
  border-color: #F29203;
  color: white;
}
.pagination-container .pagination button.button-link-next-prev {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  background-color: white;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.pagination-container .pagination button.button-link-next-prev i {
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
}
.pagination-container .pagination button.button-link-next-prev:hover {
  transition: all 0.5s ease;
  color: #F29203;
}
.pagination-container .pagination button.button-link-next-prev.disabled {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .pagination-container .pagination .button-link:hover {
    transform: translateY(0px);
    color: inherit;
    background-color: inherit;
    border-color: inherit;
    box-shadow: inherit;
  }
}

.news-page .news-section {
  margin-top: 80px;
  --transition-time: 0.75s;
  --card-height: 340px;
  --card-gap: 5rem;
  --meta-margin: 1rem;
  --read-more-width: 80px;
  max-width: 85%;
}
@media screen and (max-width: 768px) {
  .news-page .news-section {
    --card-gap: 1rem;
    --meta-margin: 0.75rem;
    --card-height: 420px;
    max-width: 95%;
  }
}
.news-page .news-section .news-background {
  position: absolute;
  z-index: -1;
  top: -600px;
  right: 0;
  opacity: 0.5;
  width: 100%;
}
.news-page .news-section .headline {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "left right";
}
@media screen and (max-width: 425px) {
  .news-page .news-section .headline {
    display: flex;
    flex-direction: column;
  }
}
.news-page .news-section .headline .symbol h2 {
  font-size: clamp(5rem, 4rem + 5vw, 10rem);
  color: #f39200;
  font-style: italic;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news-page .news-section .headline .left {
  grid-area: left;
}
.news-page .news-section .headline .left .zitat-block {
  margin: 0 0 10% 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 425px) {
  .news-page .news-section .headline .left .zitat-block {
    margin: 0%;
  }
}
.news-page .news-section .headline .left .zitat-block h3 {
  text-align: justify;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  font-weight: 400;
  margin-bottom: 5rem;
}
.news-page .news-section .headline .right {
  grid-area: right;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-page .news-section .headline .right img {
  width: 70%;
}
@media screen and (max-width: 425px) {
  .news-page .news-section .headline .right img {
    width: 50%;
  }
}
.news-page .news-section .center-container {
  display: flex;
  justify-content: center;
}
.news-page .news-section .center-container .newsletter-container {
  padding: auto;
  margin-bottom: 2.5rem;
  max-width: 1500px;
}
.news-page .news-section .center-container .newsletter-container .title {
  font-size: 2em;
  font-weight: bold;
  padding-bottom: 0;
}
.news-page .news-section .center-container .newsletter-container .text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-page .news-section .center-container .newsletter-container .text-container .title {
  align-self: baseline;
}
@media screen and (max-width: 1100px) {
  .news-page .news-section .center-container .newsletter-container .text-container .title {
    padding-right: 0;
  }
}
.news-page .news-section .center-container .newsletter-container .text-container .text {
  font-size: 1.3em;
  padding-bottom: 2rem;
  hyphens: auto;
}
.news-page .news-section .center-container .newsletter-container .text-container .text a {
  cursor: pointer;
}
.news-page .news-section .center-container .newsletter-container form {
  max-height: 150px;
  grid-template-columns: 80% 20%;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: "text-field button" "consent consent" "captcha captcha";
  gap: 1rem;
  width: 100%;
}
.news-page .news-section .center-container .newsletter-container form .text-field {
  grid-area: text-field;
  padding-left: 1rem;
}
.news-page .news-section .center-container .newsletter-container form .submit {
  grid-area: button;
}
.news-page .news-section .center-container .newsletter-container form .checkbox {
  grid-area: consent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.25rem;
  flex-wrap: wrap;
  max-width: 100%;
}
.news-page .news-section .center-container .newsletter-container form .checkbox span {
  display: inline;
  line-height: 0.85;
  word-break: break-word;
}
.news-page .news-section .center-container .newsletter-container form .h-captcha {
  grid-area: captcha;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .news-page .news-section .center-container .newsletter-container form {
    grid-template-columns: 70% 20%;
  }
}
@media screen and (max-width: 768px) {
  .news-page .news-section .center-container .newsletter-container form {
    grid-template-columns: 60% 20%;
    max-height: 200px;
  }
  .news-page .news-section .center-container .newsletter-container form .checkbox {
    display: inline;
  }
}
@media screen and (max-width: 425px) {
  .news-page .news-section .center-container .newsletter-container form {
    flex-direction: column;
    max-height: 300px;
  }
  .news-page .news-section .center-container .newsletter-container form .text-field,
  .news-page .news-section .center-container .newsletter-container form .submit,
  .news-page .news-section .center-container .newsletter-container form .checkbox {
    width: 100%; /* Makes elements full width */
  }
  .news-page .news-section .center-container .newsletter-container form .text-field {
    min-height: 32px;
  }
}
.news-page .news-section .center-container .newsletter-container .response {
  margin-top: 1.5rem;
}
.news-page .news-section .center-container .newsletter-container .loader-container {
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
}
.news-page .news-section .center-container .newsletter-container .loader-container .loader {
  width: 50px;
  height: 50px;
  border: 5px solid #F29203;
  border-top: 5px solid #f8f9fa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.news-page .news-section .news-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--card-gap);
  height: auto;
}
.news-page .news-section .news-cards .news-card {
  width: 85%;
  display: flex;
  flex-direction: column;
  border-top: 2px solid #F29203;
  overflow: hidden;
  transition: all var(--transition-time) ease;
}
@media screen and (min-width: 1600px) {
  .news-page .news-section .news-cards .news-card {
    width: 1500px;
  }
}
@media screen and (max-width: 425px) {
  .news-page .news-section .news-cards .news-card {
    padding: 0 1rem;
  }
}
.news-page .news-section .news-cards .news-card .news-date {
  color: #F29203;
  font-weight: bold;
  align-self: flex-start;
  font-size: 1em;
  padding: 0.5rem 0;
}
.news-page .news-section .news-cards .news-card .news-title,
.news-page .news-section .news-cards .news-card .intro-container,
.news-page .news-section .news-cards .news-card .news-content,
.news-page .news-section .news-cards .news-card .news-quick-links {
  padding: 0 4.5%;
}
.news-page .news-section .news-cards .news-card .news-quick-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-page .news-section .news-cards .news-card .news-quick-links :last-child {
  text-align: right;
}
.news-page .news-section .news-cards .news-card .news-title {
  padding-top: 1rem;
}
.news-page .news-section .news-cards .news-card .intro-container {
  width: 100%;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-page .news-section .news-cards .news-card .intro-container .intro {
  transition: all var(--transition-time) ease;
}
.news-page .news-section .news-cards .news-card .intro-container .read-more {
  align-self: flex-end;
  color: #F29203;
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
  cursor: pointer;
  padding-bottom: 5px;
}
.news-page .news-section .news-cards .news-card .intro-container .read-more:hover {
  text-decoration: underline;
}
.news-page .news-section .news-cards .news-card .intro-container .content.hidden {
  /* your styles here */
  display: none;
  opacity: 0;
}
.news-page .news-section .news-cards .news-card .news-content {
  flex: 1;
  width: 100%;
  transition: opacity var(--transition-time) ease-in-out;
  padding-left: 8%;
}
.news-page .news-section .news-cards .news-card .news-content .keypoints,
.news-page .news-section .news-cards .news-card .news-content .summary,
.news-page .news-section .news-cards .news-card .news-content .relevance,
.news-page .news-section .news-cards .news-card .news-content .audio {
  padding-top: 3rem;
}
.news-page .news-section .news-cards .news-card .news-content .keypoints .title,
.news-page .news-section .news-cards .news-card .news-content .summary .title,
.news-page .news-section .news-cards .news-card .news-content .relevance .title,
.news-page .news-section .news-cards .news-card .news-content .audio .title {
  color: #F29203;
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}
.news-page .news-section .news-cards .news-card .news-content .audio {
  padding-right: 8%;
}
.news-page .news-section .news-cards .news-card .news-content .audio audio {
  width: 100%;
}
.news-page .news-section .news-cards .news-card .news-content .keypoints ul {
  padding-left: 2.5%;
}
.news-page .news-section .news-cards .news-card .news-content p {
  padding-left: 2.5%;
}
.news-page .news-section .news-cards .news-card .news-content.hidden {
  opacity: 0;
}
.news-page .news-section .news-cards .news-card .news-quick-links {
  flex: 0 0 auto;
  padding: 1.25rem 0%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.news-page .news-section .news-cards .news-card .news-quick-links .up-chevron {
  transition: all var(--transition-time) ease-in-out;
  display: none;
}
.news-page .news-section .news-cards .news-card .news-quick-links .up-chevron:hover {
  fill: #F29203;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.news-page .news-section .news-cards .news-card.expanded .news-title,
.news-page .news-section .news-cards .news-card.expanded .intro-container,
.news-page .news-section .news-cards .news-card.expanded .news-content,
.news-page .news-section .news-cards .news-card.expanded .news-quick-links {
  background-color: rgba(243, 146, 0, 0.125);
  transition: background-color 0.5s ease-in-out;
}
.news-page .news-section .news-cards .news-card.expanded .news-title {
  border-top-left-radius: 0.725rem;
  border-top-right-radius: 0.725rem;
}
.news-page .news-section .news-cards .news-card.expanded .intro-container .intro {
  white-space: normal;
}
.news-page .news-section .news-cards .news-card.expanded .intro-container .read-more {
  display: none;
}
.news-page .news-section .news-cards .news-card.expanded .news-quick-links {
  border-bottom-left-radius: 0.725rem;
  border-bottom-right-radius: 0.725rem;
  padding: 1rem 2rem;
}
.news-page .news-section .news-cards .news-card.expanded .news-quick-links .up-chevron {
  display: block;
}
.news-page .news-section .news-cards .news-card.collapsed {
  max-height: var(--card-height);
}
.news-page .news-section .news-cards .news-card.collapsed:hover {
  cursor: pointer;
}
.news-page .news-section .news-cards .news-card.collapsed .news-quick-links .up-chevron {
  display: none;
}
.news-page .news-section .news-cards .news-card.collapsed .intro-container .intro {
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-page .news-section .news-cards .news-card.hidden {
  display: none;
}
.news-page .news-section .newsletter-container {
  margin-top: 4rem;
  padding: auto;
}
.news-page .news-section .newsletter-container .text {
  padding-bottom: 2rem;
}
.news-page .news-section .newsletter-container form {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none; /* keeps it hidden initially */
  grid-template-columns: 80% 20%;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: "text-field button" "consent consent" "captcha captcha";
  gap: 2rem;
  width: 100%;
  margin-bottom: 5rem;
}
.news-page .news-section .newsletter-container form.visible {
  display: grid;
  opacity: 1;
}
.news-page .news-section .newsletter-container form .text-field {
  grid-area: text-field;
  padding-left: 1rem;
}
.news-page .news-section .newsletter-container form .submit {
  grid-area: button;
  display: flex;
  margin-left: 25%;
}
@media screen and (max-width: 425px) {
  .news-page .news-section .newsletter-container form .submit {
    margin-left: 0;
  }
}
.news-page .news-section .newsletter-container form .checkbox {
  grid-area: consent;
}
@media screen and (max-width: 1024px) {
  .news-page .news-section .newsletter-container form {
    grid-template-columns: 70% 20%;
  }
}
@media screen and (max-width: 768px) {
  .news-page .news-section .newsletter-container form {
    grid-template-columns: 65% 35%;
  }
}
@media screen and (max-width: 425px) {
  .news-page .news-section .newsletter-container form {
    flex-direction: column;
  }
  .news-page .news-section .newsletter-container form .text-field,
  .news-page .news-section .newsletter-container form .submit,
  .news-page .news-section .newsletter-container form .checkbox {
    width: 100%;
    /* Makes elements full width */
  }
  .news-page .news-section .newsletter-container form .text-field {
    min-height: 32px;
  }
}

.news-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-page .container {
  max-width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-page .container .news-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.news-page .container .news-header .avatar {
  width: 15%;
  height: 15%;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #F29203;
}
.news-page .container .content .audio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-page .container .content .audio audio {
  width: 100%;
}
.news-page .container .content .intro {
  padding-top: 2.5rem;
}
.news-page .container .content .keypoints, .news-page .container .content .summary, .news-page .container .content .relevance {
  padding-top: 2rem;
}
.news-page .container .content .keypoints .title, .news-page .container .content .summary .title, .news-page .container .content .relevance .title {
  color: #F29203;
}
.news-page .container .content .keypoints ul {
  padding-left: 2rem;
}
.news-page .container .content .summary .summary-content {
  padding-left: 2rem;
}
.news-page .container .content .relevance .relevance-content {
  padding-left: 2rem;
}
.news-page .container .source {
  padding: 1.25rem 0;
}
.news-page .container .back-button {
  padding: 1rem 0;
}
@media screen and (max-width: 425px) {
  .news-page .container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .news-page .container .news-header .avatar {
    width: 30%;
    height: 30%;
  }
  .news-page .container .content h2 {
    margin-top: 2.5vh;
  }
}
@media screen and (max-width: 768px) {
  .news-page .container .news-header {
    hyphens: auto;
  }
}
@media screen and (max-width: 425px) {
  .news-page .container .news-header {
    flex-direction: column;
  }
  .news-page .container .news-header .avatar {
    order: -1;
    width: 50%;
    height: 50%;
  }
  .news-page .container .content h2 {
    margin-top: 1.5vh;
  }
}

.site-contents {
  padding-top: 80px;
}

/*# sourceMappingURL=base.css.map */