:root {
  /* Farben */
  --accent: rgba(3, 55, 102, 1);
  --accent-2: rgba(185, 10, 16, 1);

  --dark-bg: #181818;
  --light-bg: rgb(238, 238, 238);
  --ctn-bg: rgb(255, 255, 255);
  --highlighted-bg: rgb(255, 255, 255);
  --gradient-bg: linear-gradient(
    135deg,
    rgba(82, 75, 222, 0.325) 0%,
    #00000070 100%
  );

  --gradient-bg-2: linear-gradient(30deg, rgb(58, 49, 221) 0%, #000000 100%);

  --light-text: rgb(255, 255, 255);
  --dark-text: rgb(255, 255, 255);

  --placeholder-text: #ffffff4d;

  --warning: rgb(255, 0, 0);
  --success: lightgreen;

  --shadow: 0px 0px 10px rgba(82, 75, 222, 0.325);
  --text-shadow: 0px 0px 20px rgba(82, 75, 222, 0.589);
  --text-shadow-hover: 3px 3px 30px rgba(153, 147, 255, 0.916);
  --hover-shadow: 3px 3px 10px #00000070;

  --round-shadow: 0px 0px 10px #00000027;

  --border-clr: rgba(176, 176, 176, 0.2);

  /* Größen */
  --strong-radius: 10px;
  --light-radius: 5px;

  --bg-color: #151932;
  --bg-rgb: #15193245;

  --neon: rgba(74, 66, 234, 0.916);
  --neon-2: #a63040;

  --clr-neon: var(--neon);
  --clr-bg: var(--neon-2);
}

/* ------- Fonts -------- */
@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/Oswald-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Oswald";
  src: url("/assets/fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

*,
html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  overscroll-behavior: none;
  font-size: 16px;
}

body {
  background-color: var(--bg-color);
}

a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

ul li {
  list-style-type: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.privacy ul li {
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  color: var(--dark-text);
  text-shadow: var(--text-shadow);
}

h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1em;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
}

h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: var(--dark-text);
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
}

strong {
  font-size: inherit;
}

span {
  font-size: inherit;
}

a span {
  font-size: 1.2rem;
  text-decoration: none !important;
  font-weight: 600;
}

.highlighted {
  font-weight: 800;
}

b {
  font-weight: 800;
  font-size: 1.2rem;
}

.quote,
q {
  font-style: italic;
  font-size: 1.2rem;
  quotes: none;
  color: var(--accent-2);
}

.text-centered {
  text-align: center;
}

.light-clr {
  color: var(--light-bg);
}

.dark-clr {
  color: var(--accent) !important;
}

.trennlinie {
  width: 100px;
  height: 3px;
  background-color: var(--neon);
  box-shadow: var(--text-shadow-hover);
}

.trennlinie-light {
  width: 100px;
  height: 3px;
  background-color: var(--neon);
  box-shadow: var(--text-shadow-hover);
}

.logo-img {
  width: 100%;
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--light-radius);
}

.mobile {
  display: none;
}

.padding {
  padding: 1.5rem;
  border-radius: var(--light-radius);
}

.hor-img {
  width: 95%;
  box-shadow: var(--text-shadow);
  border-radius: var(--light-radius);
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hor-img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
    margin-top: 3rem;
    line-height: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: flex;
  }

  .padding {
    padding: 0.875rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .quote,
  q {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  ul li {
    font-size: 1rem;
  }
}

/* ----------------------------
        Allgemein Container 
------------------------------- */

wrapper {
  display: flex;
  flex-direction: column;
}

section {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: visible;
}

section > *:not(.overlay) {
  position: relative;
  z-index: 2;
}

.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  padding: 100px 50px;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
  height: 100%;
  z-index: 3;
  position: relative;
}

.no-padding {
  padding: 50px;
}

.hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  gap: 1.5rem;
}

.hero h2 {
  font-size: 1.2rem;
  font-weight: 500;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 1.5rem);
  flex: 0 0 auto;
  gap: 1rem;
  z-index: 2;
  align-self: center;
}

.flex100 {
  width: 100%;
}

.flex50 {
  width: 50%;
  min-width: 1000px;
}

.cta {
  text-align: center;
  padding: 100px 5rem;
  gap: 2rem;
  background-image: url("/assets/img/bg/Data-2.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  border-radius: var(--light-radius);
  backdrop-filter: blur(100px);
  box-shadow: var(--shadow);
}

.text-align-left {
  text-align: left;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--dark-bg);
  opacity: 0.8;
  backdrop-filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.cta h2,
.cta h4,
.cta p,
.cta .btn-ctn-centered {
  z-index: 3;
  color: white;
  text-shadow: var(--text-shadow);
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 2;
}

.wrap {
  flex-wrap: wrap;
}

.centered {
  align-items: center;
}

.row {
  flex-direction: row;
}

.space-evenly {
  justify-content: space-evenly;
}

.vert-center {
  align-self: center;
}

.flex-end {
  align-items: flex-end;
}

.w100 {
  width: 100%;
}

.w100 p {
  width: 80%;
}

.w50 {
  width: 50%;
}

.left-align {
  align-self: flex-start;
}

.right-align {
  align-self: flex-end;
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  box-sizing: border-box;
}

.icon-box .icon svg {
  fill: white;
  background-color: var(--accent-2);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-box .icon svg:hover {
  transform: translateY(-5px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--bg-color) 0%,
    var(--bg-rgb) 40%,
    var(--bg-rgb) 60%,
    var(--bg-color) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.grey-bg {
  background-color: rgb(226, 226, 226);
}

.blue-to-white-bg {
  box-shadow: var(--shadow);
  border-radius: var(--light-radius);
  padding: 2rem 1rem;
}

.blue-bg-2 {
  background: linear-gradient(130deg, var(--accent), rgb(5, 88, 161));
}

.light-blue-bg {
  box-shadow: var(--shadow);
}

.main-hero {
  height: 80vh;
  min-height: 900px;
}

.sub-hero {
  position: relative;
  height: 60vh;
  min-height: 700px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .icon svg {
    width: 50px;
    height: 50px;
    padding: 0.5rem;
  }

  .w100 p {
    width: 100%;
  }

  .w50 {
    width: 100%;
  }

  .flex50 {
    width: 100%;
    min-width: unset;
  }
}

/* ----------------------------
        Grafische Akzente
------------------------------- */

.rechts {
  transform: rotate(45deg);
}

.links {
  transform: rotate(135deg);
}

.aufbau-ausbildung-grafik {
  padding: 2rem 0;
  width: 70%;
}

/* ----------------------------
            Price Tables 
------------------------------- */

.price-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.price-table-heading {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem 0;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid rgba(31, 40, 108, 0.473);
}

.price-table-heading h4,
.price-table-heading h6 {
  color: var(--light-text);
  text-shadow: var(--text-shadow);
}

.price-table-content {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  gap: 1rem;
}

.price-table-content h3 {
  font-size: 3rem;
}

.price-table-content h5 {
  color: var(--accent-2);
  margin-top: -1rem;
}

/* ----------------------------
        Stile Bilder
------------------------------- */

.image-mask-wrapper {
  position: relative;
  display: inline-block;
  background-color: var(--bg-color);
}

.image-mask-wrapper {
  position: relative;
  display: inline-block;
  background-color: var(--bg-color);
  overflow: hidden;
}

.masked-image {
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 25%),
    linear-gradient(to bottom, transparent 0%, black 25%),
    linear-gradient(to left, transparent 0%, black 25%),
    linear-gradient(to right, transparent 0%, black 25%);

  mask-image: linear-gradient(to top, transparent 0%, black 25%),
    linear-gradient(to bottom, transparent 0%, black 25%),
    linear-gradient(to left, transparent 0%, black 25%),
    linear-gradient(to right, transparent 0%, black 25%);

  -webkit-mask-composite: intersect;
  mask-composite: intersect;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .masked-image {
    display: none;
  }
}

/* ----------------------------
            Bullet Boxes 
------------------------------- */

.bullet-box-ctn {
  display: flex;
  flex-direction: column;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
  width: 60%;
  padding-bottom: 2rem;
  min-height: 0;
}

.bullet-box-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.bullet-box-heading-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.itm {
  display: flex;
  align-items: center;
  background-color: var(--accent-2);
  padding: 1rem;
  height: 100px;
  border-radius: 5px 0 0 0;
  width: 60px;
}

.itm h6 {
  color: var(--light-text);
  transform: rotate(270deg);
}

.bullet-box-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: +1rem;
}

.bullet-box-logo img {
  width: 100%;
}

.bullet-box-content {
  display: flex;
  flex-direction: column;
  padding-left: 80px;
  padding-right: 1rem;
  gap: 1rem;
}

@media (max-width: 1430px) {
  .bullet-box-ctn {
    width: 80%;
  }
}

@media (max-width: 1024px) {
  .bullet-box-ctn {
    width: 100%;
  }

  .bullet-box-content {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ----------------------------
            Link Boxes 
------------------------------- */

.link-box {
  display: flex;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: var(--light-radius);
}

.link-box:hover {
  box-shadow: var(--text-shadow);
}

.link-box-img {
  width: 20%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.link-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-box-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  justify-content: center;
  width: 80%;
  gap: 0.5rem;
}

.link-box-heading h3 {
  text-decoration: underline;
  font-size: 1.5rem;
}

.link-box-text p {
  font-family: "oswald";
}

/* ----------------------------
        Tabellen
------------------------------- */

.table-ctn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

tbody tr td {
  font-family: "oswald";
}

thead th {
  color: #fff;
  text-align: left;
  padding: 1rem;
  font-family: "oswald";
  font-size: 1.2rem;
  text-shadow: var(--text-shadow);
  border-bottom: 1px solid #e5e7eb66;
}

tbody td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #dddddd10;
  font-size: 1.2rem;
  color: var(--dark-text);
}

.ausbildungsstruktur-img {
  width: 60%;
}

/* Webinar/Intensivkurs Gegenüberstellung Tabelle */

.crv-table-ctn {
  display: flex;
  width: 100%;
  overflow-x: auto;
  align-items: center;
  justify-content: center;
  border: 1px soild var(--accent);
  gap: 1rem;
}

.crv-table {
  max-width: 800px;
  color: var(--dark-text);
  min-width: 400px;
}

/* Betreuungspakete Gegenüberstellung Tabelle */

@media (max-width: 576px) {
  .ausbildungsstruktur-img {
    width: 100%;
  }

  .table-ctn {
    padding: 1rem;
  }

  .crv-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }

  .crv-table-ctn {
    width: 100%;
    justify-content: flex-start;
  }

  .crv-table thead tr th {
    font-size: 1.2rem;
    color: var(--accent);
    font-family: "oswald";
    border-radius: 10px 10px 0 0;
  }
}

/* ----------------------------
        Image Boxen (Team usw.)
------------------------------- */

.img-box-ctn {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33% - 1rem);
  box-sizing: border-box;
}

.img-box {
  padding: 0 2rem;
}

.img-box img {
  width: 100%;
  align-self: center;
  box-shadow: var(--hover-shadow);
}

.img-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin-bottom: 3rem;
  gap: 1rem;
}

.img-box-content h3 {
  text-align: center;
}

.img-box-content p {
  text-align: center;
}

/* ----------------------------
        Icon Boxes
------------------------------- */

.icon-box-2 {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% / 3) - (2rem / 3));
  box-sizing: border-box;
  box-shadow: var(--shadow);
  padding: 50px 15px;
  transition: all 0.3s ease;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(5px);
  border-radius: var(--light-radius);
}

.icon-box-4 {
  display: flex;
  flex-direction: column;
  width: calc(25% - 1rem);
  box-sizing: border-box;
  box-shadow: var(--shadow);
  padding: 50px 15px;
  transition: all 0.3s ease;
  align-items: center;
  gap: 1rem;
  background-color: var(--highlighted-bg);
  border-radius: var(--light-radius);
}

.row-4 {
  flex: 0 0 calc((100% / 4) - (3rem / 4));
}

.row-4 h4 {
  text-align: center;
}

.icon-box-2:hover {
  box-shadow: var(--text-shadow-hover);
}

.icon-box-2 svg {
  fill: var(--light-text);
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--text-shadow);
}

.icon-box-4:hover {
  box-shadow: var(--hover-shadow);
}

.icon-box-4 svg {
  fill: var(--light-text);
  width: 80px;
  height: 80px;
  padding: 10px;
  background-color: var(--accent);
  border-radius: 50%;
}

.icon-box-3 {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 50px 15px;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex: 0 0 calc((100% / 3) - (2rem / 3));
  height: 100%;
}

.icon-box-3 svg,
.icon-box-3 .icon svg {
  fill: var(--light-text);
  width: 80px;
  height: 80px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
  .icon-box-2 {
    flex: 0 0 calc((100% / 2) - (2rem / 2));
  }
}

@media (max-width: 576px) {
  .icon-box-2 {
    flex: 0 0 100%;
  }
}

/* ----------------------------
        Listen
------------------------------- */
.bullets-icon-list,
.hero-icon-list,
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullets-icon-list {
  gap: 2rem;
  border-left: 1px solid var(--accent);
  padding-left: 2rem;
}

.icon-list-item {
  display: flex;
  gap: 0.3rem;
  align-items: flex-start;
  font-size: 1.2rem;
  font-family: "oswald", sans-serif;
  text-align: start;
  color: var(--dark-text);
}

.hero-icon-list .icon-list-item {
  color: var(--light-text);
  text-shadow: var(--text-shadow);
}

.bullets-icon-list .icon-list-item {
  gap: 1rem;
}

.bullets-icon-list .icon-list-item svg {
  fill: var(--dark-text);
  width: 80px;
  height: 80px;
  border-radius: 100%;
  padding: 0.8rem;
  box-shadow: 0px 0px 20px rgba(81, 81, 216, 0.623);
}

.bullet-point {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.icon-list-item svg {
  fill: var(--accent-2);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.hero-icon-list .icon-list-item svg {
  fill: var(--light-bg);
}

@media (max-width: 576px) {
  .bullets-icon-list {
    border-left: none;
    padding-left: 0;
  }

  .bullets-icon-list .icon-list-item svg {
    width: 50px;
    height: 50px;
    padding: 0.5rem;
  }
}

/* ----------------------------
        Akkordeon (FAQs)
------------------------------- */

.akkordeon {
  background: none;
  cursor: pointer;
  padding: 1.2rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
  color: var(--dark-text);
  position: relative;
  box-shadow: var(--shadow);
}

.akkordeon:after {
  content: "\02795";
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  padding: 5px;
}

.akkordeon.active:after {
  content: "\2796";
  background: none;
}

.akkordeon:hover {
  background: none;
  box-shadow: var(--text-shadow);
}

.akkordeon.active {
  background: none;
  box-shadow: var(--text-shadow);
}

.panel {
  padding: 0 18px;
  background: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-top: -1rem;
}

.panel-content {
  padding: 1.3rem 0;
}

/* ----------------------------
        Akkordeon (Targets)
------------------------------- */

.target {
  cursor: pointer;
  padding: 1.2rem;
  width: 50%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
  color: var(--dark-text);
  position: relative;
  background-color: transparent;
  box-shadow: var(--shadow);
}

.target:after {
  content: "\02795";
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  color: var(--dark-text);
}

.target.active:after {
  content: "\2796";
  color: var(--dark-text);
}

.target:hover {
  color: var(--light-bg);
}

.target.active {
  color: var(--light-bg);
}

.target-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-top: -1rem;
  width: 50%;
}

.target-panel-content {
  padding: 1.3rem 0;
}

@media (max-width: 991px) {
  .target {
    width: 100%;
  }

  .target-panel {
    width: 100%;
  }
}

/* ----------------------------
           Tabs 
------------------------------- */

.tab {
  overflow: hidden;
  border: 1px solid var(--accent);
  border-bottom: none;
  backdrop-filter: blur(10px);
}

.tab button {
  background-color: transparent;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 2rem;
  transition: 0.3s;
}

.tablinks {
  color: var(--dark-text);
  font-family: "oswald", sans-serif;
  font-size: 1.3rem;
}

.tab button:hover {
  text-shadow: var(--text-shadow-hover);
}

.tab button:hover .tablinks {
  text-shadow: var(--text-shadow-hover);
}

.tab button.active {
  backdrop-filter: blur(10px);
  text-shadow: var(--text-shadow-hover);
}

.tabcontent {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--accent);
  border-top: none;
  margin-top: -18px;
  backdrop-filter: blur(10px);
}

.tab-ctn {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  align-items: flex-start;
}

.tab-ctn p {
  width: 80%;
  padding-right: 2rem;
}

.tab-ctn .bullet-box-ctn {
  width: 50%;
}

@media (max-width: 1024px) {
  .png-box {
    width: 100%;
  }

  .tab-ctn .bullet-box-ctn {
    width: 80%;
  }

  .tab-ctn p {
    width: 100%;
  }

  .tablinks {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .tab-ctn {
    flex-direction: column;
  }

  .tabcontent {
    padding: 1rem;
  }

  .tab-ctn .bullet-box-ctn {
    width: 100%;
  }
}

/* ----------------------------
        Responsive Stile
------------------------------- */

@media (max-width: 1024px) {
  .img-box-ctn {
    flex: 0 0 calc(50% - 1rem);
  }

  .sub-hero {
    height: 50vh;
    min-height: 500px;
  }

  .container {
    padding: 100px 30px;
  }

  .no-padding {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .box {
    width: 100%;
  }

  .sub-hero {
    height: 40vh;
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 50px 10px;
  }

  .icon-box {
    width: calc(50% - 0.5rem);
  }

  .img-box-ctn {
    flex: 0 0 100%;
    gap: 1rem;
  }

  .img-box-content {
    padding: 0;
  }

  .cta {
    padding: 50px 2rem;
  }

  .sub-hero {
    height: 50vh;
  }
}

/* ----------------------------
            Buttons 
------------------------------- */

.btn-ctn {
  display: flex;
  gap: 1rem;
}

.btn-ctn-centered {
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.normal-btn svg {
  transition: all 0.3s ease;
}

.normal-btn:hover svg {
  fill: var(--accent);
}

.cta-btn,
.normal-btn,
.normal-btn-2 {
  --color-1: #0e2d56;
  --color-2: #21256f;
  --color-1-shadow: #6a9afb23;
  --color-2-shadow: #2857ff23;
  --color-1-shadow-focus: #6ab2fb67;
  --color-2-shadow-focus: #1a40a167;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #174786b5;
  font-size: 1rem;
  color: var(--dark-text) !important;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.6, 0.12, 0.39, 0.83);
  backdrop-filter: blur(5px);
  background: none;
  z-index: 4;
}

.cta-btn:hover,
.cta-btn:active,
.cta-btn:focus,
.cta-btn:focus-visible,
.cta-btn:focus-within,
.normal-btn:hover,
.normal-btn:active,
.normal-btn:focus,
.normal-btn:focus-visible,
.normal-btn:focus-within,
.normal-btn-2:hover,
.normal-btn-2:active,
.normal-btn-2:focus,
.normal-btn-2:focus-visible,
.normal-btn-2:focus-within {
  box-shadow: -4px -4px 32px 4px var(--color-1-shadow-focus),
    4px 4px 32px 4px var(--color-2-shadow-focus);
}

.normal-btn-2 svg {
  transition: all 0.3s ease;
  fill: var(--neon);
}

.text-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "oswald";
  font-size: 1rem;
  color: var(--dark-text);
  text-shadow: var(--text-shadow);
  transition: all 0.3s ease;
  justify-content: center;
  white-space: nowrap;
}

.text-link svg {
  fill: var(--neon);
  transition: all 0.3s ease;
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.text-link:hover {
  color: var(--accent-2);
}

.text-link:hover svg {
  fill: var(--accent);
  transform: translateX(3px);
}

.p-link {
  text-shadow: var(--text-shadow);
  color: var(--dark-text);
  font-size: 1.2rem;
  font-weight: 800;
  transition: all 0.3s ease;
}

.p-link:hover {
  text-shadow: var(--text-shadow-hover);
}

.text-btn {
  background-color: transparent;
  border: none;
  color: var(--light-text);
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 400;
}

.text-btn:hover {
  color: var(--accent-2);
}

@media (max-width: 576px) {
  .btn-ctn-centered {
    flex-direction: column;
  }

  .btn-ctn {
    flex-direction: column;
  }

  .normal-btn,
  .cta-btn {
    font-size: 1rem;
  }

  .text-link {
    font-size: 0.8rem;
  }

  .text-link svg {
    width: 1rem;
    height: 1rem;
  }
}

/* ----------------------------
            Header 
------------------------------- */

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: fixed;
  z-index: 999;
  box-shadow: 1px 1px 10px rgba(49, 45, 132, 0.482);
  background: linear-gradient(360deg, rgb(24, 21, 75) 0%, var(--dark-bg) 100%);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  padding: 0 50px;
  gap: 1rem;
  max-width: 2600px;
}

.header-content .nav-ctn {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  width: 100%;
}

nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  display: block;
  color: var(--dark-text);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-shadow: var(--text-shadow);
}

nav ul li a:hover {
  transform: translateY(-3px);
  text-shadow: var(--text-shadow-hover);
}

nav ul li a.active {
  color: var(--accent-2);
}

nav ul li .dropdown {
  position: absolute;
  top: 35px;
  left: -20px;
  background-color: var(--bg-color);
  width: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 100px;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

nav ul li .dropdown li {
  display: flex;
}

nav ul li .dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  color: var(--dark-text);
  font-size: 1rem;
  font-weight: 600;
}

nav ul li.dropdown-parent:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-logo-ctn {
  width: 25%;
}

.header-logo-ctn img {
  width: 100%;
  max-width: 250px;
}

.icon-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  width: 25%;
}

.lang-select {
  display: flex;
  gap: 0.5rem;
}

.lang-select img {
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
}

.lang-select img:hover {
  transform: translateY(-2px);
}

.quick-links {
  display: flex;
  gap: 0.3rem;
}

.quick-links svg {
  box-shadow: var(--shadow);
  fill: var(--light-text);
  border-radius: 50%;
  padding: 0.5rem;
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.quick-links svg:hover {
  box-shadow: var(--text-shadow);
  transform: translateY(-2px);
}

@media (max-width: 1300px) {
  .header-logo-ctn {
    width: 15%;
  }

  .icon-btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    width: 25%;
  }
}

@media (max-width: 1200px) {
  .header-content .nav-ctn nav {
    display: none;
  }

  .header-logo-ctn {
    width: 50%;
  }
}

@media (max-width: 1024px) {
  .header-content {
    height: 80px;
    padding: 0 30px;
  }

  .quick-links {
    display: none;
  }

  .lang-select img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  header {
    padding: 0 10px;
  }

  .header-content {
    padding: 0 10px;
  }

  .header-logo-ctn {
    width: 70%;
  }

  .lang-select img {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
  }
}

/* ----------------------------
            Footer 
------------------------------- */

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
  position: relative;
  background-image: url("/assets/img/bg/Data_1.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
  box-shadow: var(--shadow);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-color) 0%,
    var(--bg-rgb) 40%,
    var(--bg-rgb) 60%,
    var(--bg-color) 100%
  );
  backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  /* <-- Hier ändern */
  justify-content: space-between;
  max-width: 1600px;
  padding: 100px 50px;
  width: 100%;
  z-index: 3;
}

.footer-logo-ctn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 30%;
}

.footer-logo-ctn img {
  width: 100%;
}

.footer-content nav {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  width: 50%;
}

.footer-content nav .link-gruppe {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-content nav h5 {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.3rem;
}

.footer-content nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  align-items: flex-start;
}

.footer-content nav ul li {
  all: unset;
  display: block;
}

.footer-content nav ul li a {
  all: unset;
  display: block;
  width: 100%;
  text-align: left;
  font-family: oswald, sans-serif;
  color: var(--dark-text);
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: var(--text-shadow);
}

.footer-content nav ul a:hover {
  text-shadow: var(--text-shadow-hover);
}

.footer-sub-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  gap: 1rem;
}

.footer-sub-content p {
  font-size: 0.7rem;
}

.footer-sub-content p a {
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .footer-logo-ctn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40%;
  }
}

@media (max-width: 991px) {
  .footer-content nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  footer {
    padding-top: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    padding: 50px 10px;
  }

  .footer-logo-ctn {
    width: 100%;
    justify-content: center;
  }

  .footer-logo-ctn img {
    width: 70%;
  }

  .footer-content nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-content nav .link-gruppe {
    display: flex;
    width: calc(50% - 2rem);
  }

  .footer-content nav ul {
    gap: 0.3rem;
    font-size: 0.75rem;
  }

  .footer-content nav ul a {
    font-size: 0.75rem;
  }

  .sub-footer {
    padding: 0.5rem 0rem;
  }

  .footer-sub-content {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .footer-sub-content p {
    line-height: unset;
  }
}

/* ----------------------------
            Mobile Menu 
------------------------------- */

.no-scroll {
  position: fixed;
  width: 100%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu .header-logo-ctn {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu .header-logo-ctn a img {
  width: 100%;
  height: auto;
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.mobile-menu nav a {
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  color: var(--dark-text);
}

.mobile-menu.opened {
  right: 0;
}

.mobile-nav {
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  color: var(--dark-text);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  margin-top: -1rem;
}

.mobile-nav-panel-content {
  padding: 1rem 0;
}

.mobile-nav-panel-content ul li a {
  color: var(--dark-text);
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  z-index: 9999;
}

.quick-links-mobile {
  display: flex;
  padding-top: 2rem;
  gap: 0.9rem;
}

.quick-links-mobile svg {
  box-shadow: var(--text-shadow);
  fill: var(--light-text);
  border-radius: 50%;
  padding: 0.5rem;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

/* Hamburger Icon */
.line {
  fill: none;
  stroke: var(--neon);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 30 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 40 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mobile-menu-ctn {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-menu-ctn {
    display: flex;
  }
}

/* ----------------------------
            Kontaktformular 
------------------------------- */
form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  width: 100%;
  gap: 01rem;
}

.form-group p {
  color: var(--light-text);
  font-size: 0.8rem;
}

.form-group p a {
  color: var(--accent-2);
  font-size: 0.8rem;
}

.input-field {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: "Oswald";
}

label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  margin-bottom: 5px;
  font-family: "Oswald";
  color: var(--light-text);
}

label p {
  font-size: 1rem;
  color: var(--light-text);
}

label .p-link {
  font-size: 1rem;
  color: var(--accent-2);
}

#privacy {
  width: auto;
}

input,
textarea {
  font-family: "Oswald";
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background-color: var(--highlighted-bg);
  border-radius: var(--light-radius);
  border: 2px solid transparent;
  color: var(--accent);
}

input:not([type="checkbox"]):focus,
textarea:focus {
  outline: none;
  border: 2px solid var(--light-bg);
  box-shadow: 0 0 5px var(--light-bg);
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.preloader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: var(--highlighted-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  border-radius: var(--light-radius);
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--hover-shadow);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--accent);
  border-top: 5px solid var(--accent-2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

#form-response {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background: var(--gradient-bg-2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  border-radius: var(--light-radius);
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--hover-shadow);
}

#form-response h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#form-response h4 svg {
  fill: var(--accent-2);
  width: 40px;
  height: 40px;
}

@media (max-width: 1024px) {
  .form-group {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  #form-response {
    width: 80%;
    padding: 2rem 1rem;
  }
}

@media (max-width: 576px) {
  #form-response h4 {
    font-size: 1.2rem;
  }

  #form-response h4 svg {
    width: 30px;
    height: 30px;
  }

  #form-response {
    width: 90%;
  }

  .preloader {
    width: 80%;
  }
}

/*--------------------------------------------------------------

                        Eingebettete Videos

----------------------------------------------------------------*/

iframe {
  width: 100%;
  max-width: 560px;
}

@media (max-width: 576px) {
  iframe {
    width: 100%;
    height: 270px;
  }
}

.newsletter-ctn {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.newsletter-ctn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  box-shadow: var(--shadow);
  background-color: var(--bg-color);
  border-radius: var(--light-radius);
  max-width: 600px;
  gap: 1rem;
}

.newsletter-ctn iframe {
  width: 100%;
  max-width: 600px;
  height: 400px;
}

.newsletter-ctn.active {
  opacity: 1;
  visibility: visible;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
}

.video-overlay-welcome {
  background: url(../img/marie-timo-thumbnail.jpeg);
}

.video-overlay-ethik {
  background: url(../img/ethik-thumbnail.jpeg);
}

.video-overlay-starter {
  background: url(../img/titelbild-einfuehrungskurs.jpg);
}

.video-overlay-starter,
.video-overlay-ethik,
.video-overlay-welcome {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: var(--light-radius);
}

/* Play-Button standardmäßig sichtbar */
.video-play-btn {
  font-size: 100px;
  color: var(--dark-text);
  text-shadow: var(--text-shadow-hover);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  transition: all 0.3s ease;
}

.playButton svg,
.pauseButton svg,
.video-play-btn svg {
  fill: white;
  width: 120px;
  height: 120px;
}

/* Pause/Play-Toggle erscheint nur beim Hover, wenn Video läuft */
.video-toggle-btn {
  font-size: 100px;
  color: var(--dark-text);
  text-shadow: var(--text-shadow-hover);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.video-wrapper.video-playing:hover .video-toggle-btn {
  display: block;
}

.video-toggle-btn.always-visible {
  display: block !important;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/*--------------------------------------------------------------

                        Slider

----------------------------------------------------------------*/

.swiper {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  gap: 1rem;
}

.swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  background: var(--neon);
  margin: 5px;
  opacity: 1;
  transition: opacity 0.3s;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  height: 4px;
  background: var(--neon);
  opacity: 1;
  box-shadow: 0px 0px 20px var(--neon);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--light-text);
  text-shadow: var(--text-shadow);
  top: 93%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  text-shadow: var(--text-shadow-hover);
}

.swiper-button-next {
  right: 8%;
}

.swiper-button-prev {
  left: 8%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
}

.swiper-button-next:after {
  content: "next";
}

.swiper-button-prev:after {
  content: "previous";
}

.feedback-info-ctn {
  display: flex;
  flex-direction: column;
  border-radius: var(--strong-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  color: var(--accent);
  gap: 1.3rem;
  min-width: 300px;
  backdrop-filter: blur(10px);
}

.feedback-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.feedback-meta img {
  width: 180px;
  height: auto;
  opacity: 0.5;
  transform: rotate(45deg);
  display: none;
}

.feedback-meta p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-text);
  text-shadow: var(--text-shadow);
}

/* -----------------------------

            Login/Register 
            Formulare
            
---------------------------------*/

.login-ctn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--light-bg);
}

.login-ctn img {
  width: 450px;
  margin-top: -100px;
  margin-bottom: 100px;
}

.login-register-ctn {
  display: flex;
  flex-direction: column;
  background-color: var(--light-bg);
  border-radius: var(--light-radius);
  padding: 1.5rem;
  width: 320px;
  box-shadow: 0 0 5px rgb(0, 0, 0);
  text-align: center;
  gap: 1rem;
}

.login-register-ctn h1 {
  font-size: 2rem;
}

.register-ctn {
  display: flex;
  flex-direction: column;
  background-color: var(--light-bg);
  border-radius: var(--light-radius);
  padding: 1.5rem;
  min-width: 600px;
  box-shadow: 0 0 5px rgb(0, 0, 0);
  text-align: center;
  gap: 1rem;
}

.input-box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 1rem;
}

.input-box input {
  border: none;
  border-bottom: 1px solid var(--light-bg);
  border-radius: 0;
  color: var(--dark-text);
}

.input-box svg {
  position: absolute;
  fill: var(--accent);
  right: 0;
  right: 1rem;
  width: 1.275rem;
}

.input-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.remember-forgot {
  display: flex;
  font-size: 1rem;
  align-items: center;
  justify-content: space-between;
}

.remember-forgot label {
  display: flex;
  gap: 0.3rem;
  font-weight: 400;
  font-size: 0.9rem;
}

.remember-forgot input {
  display: flex;
  width: 14px;
}

.remember-forgot a {
  display: flex;
  text-decoration: underline;
  font-size: 0.9rem;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 35px;
  background-color: var(--accent);
  border-radius: var(--light-radius);
  border: none;
  width: auto;
  cursor: pointer;
  color: var(--light-text);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--accent-2);
  color: var(--light-text);
}

@media (max-width: 768px) {
  .login-ctn img {
    width: 200px;
    margin-top: -100px;
    margin-bottom: 50px;
  }
}

/* ----------------------------
            Stile Blog 
------------------------------- */

.blog-ctn {
  display: flex;
  width: 100%;
  gap: 2rem;
}

.post-ctn {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 70%;
  box-shadow: var(--shadow);
  padding: 2rem 1rem;
  margin-top: -200px;
  z-index: 2;
  align-items: flex-start;
  justify-content: center;
}

.post-box {
  flex: 0 0 calc(33% - 2rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
}

.single-post {
  flex: 0 0 calc(100% - 2rem);
  gap: 1.5rem;
}

.single-post a {
  color: var(--accent-2);
  transition: all 0.3s ease;
}

.single-post h3 {
  font-size: 1.5rem;
  margin-bottom: -1rem;
}

.single-post ul li {
  list-style: disc;
  color: var(--dark-text);

  margin-left: 1.5rem;
  font-weight: 400;
}

.single-post a:hover {
  color: var(--accent);
}

.single-post iframe {
  max-width: none !important;
  width: 100%;
}

.post-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.post-box img:hover {
  box-shadow: 0px 0px 10px rgb(110, 110, 110);
  transform: translateY(-3px);
}

.no-fx {
  box-shadow: none;
  transform: none;
}

.no-fx img:hover {
  box-shadow: none;
  transform: none;
}

.single-post img {
  width: 100%;
  height: auto;
}

.single-post h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: -1rem;
}

.post-date p {
  font-family: "oswald", sans-serif;
  font-size: 1rem;
}

.read-more {
  display: flex;
  color: var(--accent-2);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  font-family: "oswald", sans-serif;
  align-items: center;
}

.read-more svg {
  fill: var(--accent-2);
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--accent);
}

.read-more:hover svg {
  fill: var(--accent);
  transform: translateX(3px);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 2rem;
}

.blog-sidebar h2 {
  font-size: 2rem;
}

.align-left {
  align-items: flex-start;
  text-align: left;
}

#pagination-container {
  width: 100%;
  display: flex;
  gap: 1rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
  width: 30px;
  height: 30px;
  box-shadow: var(--shadow);
  background: none;
  cursor: pointer;
  border: none;
  color: #fff;
  font-family: "oswald", sans-serif;
  border-radius: 50%;
}

.pagination-btn.active {
  color: #fff;
  box-shadow: var(--text-shadow-hover);
}

.pagination-btn:hover {
  box-shadow: var(--text-shadow);
}

.meta-info {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.meta-box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.meta-box p {
  color: #fff;
  font-family: "oswald", sans-serif;
}

.blog-cta-ctn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 3rem;
  gap: 2rem;
  background-image: url("/assets/img/bg/Data-2.jpg");
  background-position: center;
  background-repeat: repeat;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
}

.blog-cta-ctn h2,
.blog-cta-ctn h3,
.blog-cta-ctn h4,
.blog-cta-ctn h5 {
  color: var(--light-text);
  z-index: 2;
}

.blog-cta-ctn h3,
.blog-cta-ctn h4 {
  color: var(--light-text);
  z-index: 2;
}

.blog-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.author-box {
  display: flex;
  border-top: 5px solid var(--accent-2);
  box-shadow: var(--text-shadow);
  padding: 2rem;
  gap: 2rem;
  margin-top: 5rem;
  align-items: center;
  border-radius: var(--light-radius);
}

.author-img {
  display: flex;
  width: 10%;
}

.author-img img {
  border-radius: 50%;
}

.author-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-img {
  width: 50% !important;
}

.post-heading h3 {
  font-size: 1.375rem;
}

.latest-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.latest-posts ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.latest-posts ul li a {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 1rem;
}

.latest-posts ul li a:hover h5 {
  color: var(--accent-2);
  transition: all 0.3s ease;
}

.latest-posts ul li a img {
  width: 100%;
}

.latest-posts ul li a:hover img {
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

@media (max-width: 1300px) {
  .post-box img {
    height: 150px;
  }
}

@media (max-width: 1024px) {
  .read-more {
    font-size: 1rem;
  }

  .post-date p {
    font-size: 0.8rem;
  }

  .post-ctn {
    gap: 1rem;
    width: 80%;
    padding: 1rem 0.5rem;
  }

  .author-box {
    padding: 1.5rem;
    gap: 1rem;
    margin-top: 2rem;
  }

  .author-img {
    display: flex;
    width: 20%;
  }

  .author-img img {
    width: 100px;
    height: 100px;
  }

  .latest-posts ul li a {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .post-ctn {
    width: 100%;
    margin-top: -150px;
    padding: 1rem 0rem;
  }

  .blog-sidebar {
    width: 100%;
  }

  .post-box img {
    height: 200px;
    width: 100%;
  }

  .blog-ctn {
    flex-direction: column;
  }

  .author-img img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .post-ctn {
    margin-top: -100px;
  }

  .post-box img {
    height: auto;
    width: 100%;
  }

  .post-box {
    flex: 0 0 calc(100% - 2rem);
  }

  .single-post h2 {
    font-size: 1.7rem;
    margin-top: 1rem;
  }

  .single-post h3 {
    font-size: 1.3rem;
  }

  .blog-cta-ctn {
    padding: 2rem 2rem;
    gap: 1.5rem;
  }

  .meta-box p {
    font-size: 0.75rem;
  }

  .author-img {
    width: 30%;
  }

  .author-img img {
    width: 80px;
    height: 80px;
  }

  .author-text {
    width: 70%;
  }

  .author-text h4 {
    font-size: 1rem;
  }

  .author-text p {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}

/*--------------------------------------------------------------

                        Cookie Banner

----------------------------------------------------------------*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: var(--light-text);
  padding: 2rem;
  text-align: center;
  z-index: 1000;
  display: none;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--accent);
  background: var(--gradient-bg-2);
}

.cookie-banner p {
  color: var(--light-text);
}

/* Cookie-Einstellungen Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.cookie-modal-content {
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 650px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.cookie-info {
  text-align: left;
  margin-top: -1.5rem;
  margin-bottom: 1rem;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 25px;
  display: inline-block;
}

.cookie-toggle input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.cookie-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  z-index: 1;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  height: 21px;
  width: 21px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

input:checked + .cookie-slider {
  background-color: var(--accent);
}

input:checked + .cookie-slider::before {
  transform: translateX(25px);
}

/* Schaltfläche unten links */
.cookie-settings-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px;
  background: none;
  backdrop-filter: blur(10px);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: var(--text-shadow);
  transition: all 0.3s ease;
}

.cookie-settings-button:hover {
  box-shadow: var(--text-shadow-hover);
  transform: translateY(-5px);
}

/* Leistungen Cards */

.service-ctn {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  flex-wrap: wrap;
}

.service-ctn a {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  border-radius: var(--light-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  transition: all 0.8s ease;
  flex: 1;
  justify-content: center;
  min-height: 300px;
}

.service-box::before {
  position: absolute;
  content: "";
  left: -1px;
  bottom: -1px;
  width: 0;
  height: 0;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  transition: all 0.8s ease;
}

.service-box::after {
  position: absolute;
  content: "";
  right: -1px;
  top: -1px;
  width: 0;
  height: 0;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  transition: all 0.8s ease;
}

.service-box:hover:after,
.service-box:hover:before {
  width: 100%;
  height: 100%;
  border-color: var(--light-bg);
  border-radius: var(--light-radius);
  box-shadow: 0px 0px 20px var(--neon);
}

.service-box-icon svg {
  fill: var(--light-bg);
  width: 80px;
  height: 80px;
  transition: all 0.8s ease;
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--text-shadow);
}

.service-box:hover {
  margin-top: -20px;
  margin-bottom: 20px;
}

.service-box h4 {
  margin: 20px 0;
  font-size: 1.2rem;
  color: var(--light-text);
}

.service-box p {
  font-weight: 400;
  color: var(--light-text);
}

/* === @MEDIA === */
@media (max-width: 991px) {
  .service-ctn a {
    display: flex;
    flex-direction: column;
    width: calc(50% - 0.5rem);
    flex: unset;
  }
}

@media (max-width: 576px) {
  .service-ctn a {
    display: flex;
    flex-direction: column;
    width: calc(100%);
    flex: unset;
  }
}

/* Hintergründe */

.lines-bg {
  position: relative;
  background-image: url("/assets/img/bg/lines-bg-2.jpeg");
  background-position: center;
  background-repeat: repeat;
}

.lines-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.506);
  z-index: 1;
  pointer-events: none;
}

.blur-bg {
  backdrop-filter: blur(10px);
}

.grid-bg {
  position: relative;
  background-color: var(--light-bg);
  background-image: url("/assets/img/bg/grid.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  z-index: 0;
  overflow: hidden;
  background-size: 20% auto;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--light-bg);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.wavy-bg,
.grid-bg > * {
  position: relative;
  z-index: 2;
}

.parted-bg {
  background: linear-gradient(
    to right,
    var(--light-bg) 0%,
    rgba(226, 226, 226, 0.527) 35%,
    #ffffff 40%,
    #ffffff 100%
  );
}

.parted-bg-2 {
  background: linear-gradient(
    to left,
    var(--light-bg) 0%,
    rgba(226, 226, 226, 0.527) 35%,
    #ffffff 40%,
    #ffffff 100%
  );
}
