/**
 * Variables
 */
 :root {
  --body-bg: #ffffff;
  --header-block-bg: #f2f4fe;
  --content-bg: #f1f1f1;
  --content-border-color: #ced1e4;
  --footer-bg: #232733;
  --footer-color: #919296;
  --footer-border-color: #373b48;
  --text-color: #183153;
  --bold-color: #183153;
  --border-color: #e9ebf5;
  --theme-color: #e60b00;
  --theme-color-two: #302e44;
  --circle-one: #f3e7f0;
  --circle-two: #e0e2f6;
  --circle-three: #f9b6b4;
  --color-light: #e7a498;
  --font-content: 'Open Sans', sans-serif;
  --font-heading: 'Roboto', sans-serif;

  --hover-bg: #f0f0f0;
  --heading-color: #333;
  --theme-color-hover: #003f7f;
  --blockquote-bg: #f9f9f9;
  --blockquote-text: #444;
  --code-bg: #f4f4f4;
  --code-text: #c7254e;
  --pre-bg: #f8f8f8;
  --pre-text: #333;
}

* {
  margin: 0;
  padding: 0;
}

/* HTML and Body
---------------------------------------- */
html,
body {
  height: 100%;
}

html {
  line-height: 1.7;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-family: var(--font-content);
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background: #ffffff;
  background: var(--body-bg);
  color: var(--text-color);
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
  color: #a1a1a1;
  color: var(--text-color);
}

template,
[hidden] {
  display: none;
}

/* Typography
---------------------------------------- */
/* Typography -> Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  color: var(--bold-color);
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1.0rem;
}

h5, h6 {
  font-size: 0.7rem;
}

/* Typography -> Links */
a {
  color: var(--theme-color);
  background-color: transparent;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

a:active,
li a.active {
  color: var(--theme-color);
}

a:hover {
  color: var(--theme-color-two);
}

a:active,
a:hover,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

p {
  margin: 0 0 1rem 0;
}

b,
strong {
  font-weight: bolder;
  color: var(--bold-color);
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

em {
  font-style: normal;
  color: var(--theme-color);
}

/* Typography-> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
  background: var(--content-bg);
}

kbd {
  margin: 0;
  padding: 0 5px;
}

pre {
  overflow: auto;
  margin: 1rem 0;
  padding: 1rem;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

mark {
  background: var(--theme-color);
  color: #ffffff;
  padding: 2px 5px;
  text-shadow: none;
}

acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}

acronym {
  border-bottom: 1px dotted;
}

/* Media
---------------------------------------- */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
a img {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}

.align-left {
  margin: 1rem 1rem 1rem 0;
}

.align-right {
  margin: 1rem 0 1rem 1rem;
}

.align-center {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

figure.align-center img {
  display: block;
  clear: both;
  margin: 0 auto;
}

figcaption {
  padding: 4px;
  font-size: 0.8rem;
  background: var(--content-bg);
  border: 1px solid var(--border-color);
  text-align: center;
}

.image-field {
  margin: 0 0 1rem 0;
}

.img-fluid {
  max-width: 100% !important;
  height: auto !important;
}

/* Form
---------------------------------------- */
form {
  margin-bottom: 1rem;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

.table-responsive
{
overflow-x:auto;
}

/* Header-Style für Blogartikel */
.article-card-header {
  background-color: var(--header-bg); /* Hintergrundfarbe des Headers */
  padding: 20px; /* Innenabstand */
  border-bottom: 2px solid var(--theme-color); /* unterer Rand */
  color: var(--header-text-color); /* Textfarbe */
}

.article-card-header h1, 
.article-card-header h2, 
.article-card-header h3, 
.article-card-header h4, 
.article-card-header h5, 
.article-card-header h6 {
  margin: 0; /* Kein zusätzlicher Abstand */
  color: inherit; /* Vererbung der Textfarbe */
}

.article-card-header p {
  margin: 0; /* Kein zusätzlicher Abstand */
  font-size: 1rem; /* Schriftgröße */
  color: var(--header-text-colorr); /* gleiche Farbe wie Überschriften */
}

/* Header Gesamtstil */
.article-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Header-Inhalt: Überschrift, Logo und Metainformationen */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-content h2, 
.header-content h3 {
  margin: 0;
  flex-grow: 1;
}

/* Header-Logo */
.header-logo {
  margin-left: 10px;
  max-width: 100px;
}

.header-logo img {
  width: 100%;
  height: auto;
}

/* Autor- und Datumsinformationen */
.article-card-header .author,
.article-card-header .date {
  font-size: 0.875rem; /* Kleinere Schriftgröße */
}

.article-card-header .meta-info {
  margin-top: 10px; /* Optional: Abstand nach oben */
  text-align: left; /* Links ausgerichtet für zusätzliche Sicherheit */
}

.meta-info p {
  margin: 0; /* Entfernt eventuelle Abstände */
  font-size: 0.9rem; /* Schriftgröße anpassen */
  color: #666666; /* Optional: Textfarbe */
}

/* Datum, um es speziell zu behandeln, falls nötig */
.article-card-header .date {
  margin-left: auto; /* Datum wird am Ende der Zeile ausgerichtet */
}

/*.article-card {
  background: linear-gradient(to bottom, #fff, #f1f1f1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid #b3b3b3;
  border-radius: 12px;
}*/

.article-card {
  background: linear-gradient(to bottom, #ffffff, #ececec);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid #888;
  color: #333;
}


.article-card:hover {
  background-color: var(--hover-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.article-card-footer {
  font-size: smaller;
  padding: 20px;
}

.article-card-footer p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #666666;
}

.article-card .article-card-footer ul,
.article-card .article-card-footer ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


.article-card img {
  width: 100%; /* volle Breite */
  height: auto;
  display: block;
}

.article-card .article-info {
  padding: 20px;
}

.article-card h1,
.article-card h2,
.article-card h3,
.article-card h4,
.article-card h5,
.article-card h6 {
  color: var(--heading-color); /* bessere Konsistenz */
  margin: 0 0 10px 0; /* Abstand nach unten */
}

.article-card h1 {
  font-size: 2rem; /* relative Maßeinheit */
}

.article-card h2 {
  font-size: 1.5rem;
}

.article-card h3 {
  font-size: 1.25rem; /* relative Maßeinheit */
}

.article-card h4 {
  font-size: 1.125rem; /* relative Maßeinheit */
}

.article-card h5 {
  font-size: 1rem; /* relative Maßeinheit */
}

.article-card h6 {
  font-size: 0.875rem; /* relative Maßeinheit */
}

.article-card p {
  font-size: 1.1rem; /* relative Maßeinheit */
  color: var(--text-color); /* bessere Konsistenz */
  line-height: 1.7; /* bessere Lesbarkeit */
  margin: 0 0 10px 0; /* Abstand nach unten */
}

.article-card a {
  text-decoration: none;
  color: var(--theme-color);
  font-weight: bold;
  display: inline-block;
}

.article-card a:hover {
  color: var(--theme-color-hover);
}

/* Einheitliche Listen für geordnete und ungeordnete Listen in der article-card */
.article-card ul,
.article-card ol {
  padding-left: 20px; /* Einrückung für Listen */
  margin: 0 0 10px 0; /* Abstand nach unten */
  list-style-position: outside; /* Konsistente Positionierung der Listensymbole */
}

.article-card ul {
  list-style-type: disc; /* Standard Bullets für ungeordnete Liste */
}

.article-card ol {
  list-style-type: decimal; /* Nummerierte Liste */
}

.article-card ul li,
.article-card ol li {
  margin: 0 0 5px 0; /* Abstand nach unten */
  text-align: left; /* Links ausgerichtet */
}

/* Extra Klasse für nav ul/ol (Table of Contents) mit Bullets und Nummerierung */
nav ul.toc, 
nav ol.toc{
  margin: 20px 0 20px 0;
  padding: 0;
}

nav ul.toc ul,
nav ol.toc ol,
nav ul.toc li,
nav ol.toc li {
  margin: 0;
  padding: 0;
  list-style-position: outside; /* Bullets/Nummerierung außerhalb der Texte */
}

/* Einheitliche Einrückung für alle Listenebenen */
nav ul.toc,
nav ol.toc,
nav ul.toc ul,
nav ol.toc ol {
  padding-left: 20px; /* Anpassung der Einrückung nach Bedarf */
}

/* Konsistenter Abstand zwischen Listenelementen */
nav ul.toc li,
nav ol.toc li {
  text-align: left;
}

/* Verhindern von zusätzlichem Abstand vor verschachtelten Listen */
nav ul.toc li > ul,
nav ol.toc li > ol {
  margin-top: 0; /* Entfernt zusätzlichen Abstand oben */
}

/* Definieren des Listentyps für ungeordnete und geordnete Listen */
nav ul.toc {
  list-style-type: disc; /* Bullets für ungeordnete Listen */
}

nav ol.toc {
  list-style-type: decimal; /* Nummerierung für geordnete Listen */
}

.article-card nav li > * {
  vertical-align: text-top;
}

.article-card blockquote {
  margin: 0 0 10px 0; /* Abstand nach unten */
  padding: 10px 20px; /* Innenabstand */
  background-color: var(--blockquote-bg); /* Hintergrundfarbe für Blockzitate */
  border-left: 5px solid var(--theme-color); /* linke Begrenzung */
  color: var(--blockquote-text); /* Textfarbe für Blockzitate */
  font-style: italic; /* kursiver Text */
}

.article-card code {
  font-family: 'Courier New', Courier, monospace;
  background-color: var(--code-bg); /* Hintergrundfarbe für Code */
  color: var(--code-text); /* Textfarbe für Code */
  padding: 2px 4px; /* Innenabstand */
  border-radius: 4px; /* abgerundete Ecken */
  margin: 0 2px; /* Abstand nach außen */
}

.article-card pre {
  background-color: var(--pre-bg); /* Hintergrundfarbe für Preformatted Text */
  color: var(--pre-text); /* Textfarbe für Preformatted Text */
  padding: 10px; /* Innenabstand */
  border-radius: 4px; /* abgerundete Ecken */
  overflow-x: auto; /* horizontales Scrollen bei Bedarf */
  margin: 0 0 10px 0; /* Abstand nach unten */
}

/* Klasse zum Ausschalten der Bullets */
.no-bullets {
  list-style-type: none; /* keine Bullets */
  padding: 0; /* kein Padding */
  margin: 0; /* kein Margin */
}

/* Stile für die Handlungsaufforderungen (CTAs) */
.cta-button, .cta-button-whatsapp {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.cta-button:hover, .cta-button-whatsapp:hover {
  background-color: var(--theme-color);
  color: #fff;
  border: 2px solid var(--theme-color);
}

.cta-button-whatsapp {
  background-color: #25d366;
  border-color: #25d366;
  color: #fff;
}

.cta-button-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}

.cta-button-green {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #218739;
  color: #218739 !important;  
}

.cta-button-green:hover {
  background-color: #218739;
  color: #fff !important;
  border: 2px solid #218739;
}

.cta-button-blue {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #007bff;
  color: #007bff !important;
}

.cta-button-blue:hover {
  background-color: #007bff;
  color: #fff !important;
  border: 2px solid #007bff;
}

.cta-button-red {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #e60b00;
  color: #e60b00 !important;
}

.cta-button-red:hover {
  background-color: #e60b00;
  color: #fff !important;
  border: 2px solid #e60b00;
}

.cta-button-yellow {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #ffdd57;
  color: #ffdd57 !important;
}

.cta-button-yellow:hover {
  background-color: #ffdd57;
  color: #fff !important;
  border: 2px solid #ffdd57;
}

.cta-button-orange {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #ff851b;
  color: #ff851b !important;
}

.cta-button-orange:hover {
  background-color: #ff851b;
  color: #fff !important;
  border: 2px solid #ff851b;
}

.cta-button-grey {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #53595F;
  color: #53595F !important;
}

.cta-button-grey:hover {
  background-color: #53595F;
  color: #fff !important;
  border: 2px solid #53595F;
}

.cta-button-purple {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  border: 2px solid #6f42c1;
  color: #6f42c1 !important;
}

.cta-button-purple:hover {
  background-color: #6f42c1;
  color: #fff !important;
  border: 2px solid #6f42c1;
}

.cta-button-blue-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #007bff;
  color: #fff !important;
  border: 2px solid #007bff;
}

.cta-button-blue-reversed:hover {
  background-color: transparent;
  color: #007bff !important;
  border: 2px solid #007bff;
}

.cta-button-red-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #e60b00;
  color: #fff !important;
  border: 2px solid #e60b00;
}

.cta-button-red-reversed:hover {
  background-color: transparent;
  color: #e60b00 !important;
  border: 2px solid #e60b00;
}

.cta-button-yellow-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #ffdd57;
  color: #fff !important;
  border: 2px solid #ffdd57;
}

.cta-button-yellow-reversed:hover {
  background-color: transparent;
  color: #ffdd57 !important;
  border: 2px solid #ffdd57;
}

.cta-button-purple-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #6f42c1;
  color: #fff !important;
  border: 2px solid #6f42c1;
}

.cta-button-purple-reversed:hover {
  background-color: transparent;
  color: #6f42c1 !important;
  border: 2px solid #6f42c1;
}

.cta-button-orange-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #ff851b;
  color: #fff !important;
  border: 2px solid #ff851b;
}

.cta-button-orange-reversed:hover {
  background-color: transparent;
  color: #ff851b !important;
  border: 2px solid #ff851b;
}

.cta-button-grey-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #53595F;
  color: #fff !important;
  border: 2px solid #53595F;
}

.cta-button-grey-reversed:hover {
  background-color: transparent;
  color: #53595F !important;
  border: 2px solid #53595F;
}

.cta-button-green-reversed {
  display: inline-block;
  padding: 12px 24px;
  margin: 20px auto;
  text-decoration: none;
  background-color: #28a745;
  color: #fff !important;
  border: 2px solid #28a745;
}

.cta-button-green-reversed:hover {
  background-color: transparent;
  color: #28a745 !important;
  border: 2px solid #28a745;
}

/* Animationen */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.button-solid,
a.button-solid:hover,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  padding: 8px 10px;
  background: var(--theme-color);
  color: #fff;
  -webkit-appearance: button;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button-solid:hover,
a.button-solid:hover,
button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  background: var(--theme-color-two);
  color: #ffffff;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input {
  line-height: normal;
}

input,
textarea {
  max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  background: transparent;
  color: var(--text-color);
  padding: 10px;
  border: 1px solid var(--border-color);
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid var(--theme-color-two);
  outline: 0;
}

textarea {
  width: 100%;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}

@-webkit-keyframes autofill {
  to {
    color: var(--text-color);
    background: transparent;
  }
}

@keyframes autofill {
  to {
    color: var(--text-color);
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-name: autofill;
  animation-name: autofill;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35em 0.5em 0.5em 0;
  border: 1px solid var(--border-color);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
}

form label {
  color: var(--bold-color);
}

label[for] {
  cursor: pointer;
}

/* Form */
.form-item {
  margin-bottom: 1rem;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: red;
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

progress {
  vertical-align: baseline;
}

::-webkit-input-placeholder {
  color: var(--border-color);
}

:-moz-placeholder {
  color: var(--border-color);
}

::-moz-placeholder {
  color: var(--border-color);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--border-color);
}

.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8rem;
}

/* Form in body */
.node-content input[type="text"],
.node-content input[type="email"],
.node-content input[type="url"],
.node-content input[type="password"],
.node-content input[type="search"],
textarea {
  display: block;
  background: var(--content-bg);
  margin-bottom: 0.8rem;
  border-radius: 20px;
}

/* Forms in sidebar */
.sidebar input[type="text"],
.sidebar input[type="email"],
.sidebar input[type="url"],
.sidebar input[type="password"],
.sidebar input[type="search"],
textarea {
  width: 100%;
  border: 1px solid var(--content-border-color);
}

/* Animated expanding textarea */
.form-textarea {
  height: 100px;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.form-textarea:focus {
  height: 180px;
}

/* Common HTML Elements
---------------------------------------- */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  border: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
}

address {
  margin: 0 0 1rem 0;
  font-style: italic;
}

/* Definition Lists */
dt {
  color: var(--bold-color);
  font-weight: 700;
  margin: 0 0 1.75rem;
}

dt {
  color: var(--bold-color);
  font-weight: 700;
}

dd {
  margin: 0 0 1.2rem 0;
}

blockquote {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
  border-left: 6px solid var(--theme-color);
  border-top: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

[dir="rtl"] blockquote {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
  border-right: 6px solid var(--theme-color);
  border-top: 2px solid var(--border-color);
  border-left: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

blockquote > :last-child {
  margin-bottom: 0;
}

/* Allgemeine Listeinstellungen */
ul, ol {
  margin: 0;
  padding-left: 1.5rem; /* Einheitliche Einrückung für die Liste */
  list-style-position: outside; /* Bullets immer außerhalb des Textes */
}

ol ol, ul ul {
  margin: 0;
  padding-left: 1.5rem; /* Einrückung für verschachtelte Listen */
}

/* Listenelemente */
li {
  margin-bottom: 0.5rem; /* Abstand zwischen Listenelementen */
  padding: 0; /* Kein zusätzliches Padding, um Konflikte zu vermeiden */
  line-height: 1.6; /* Konsistente Zeilenhöhe für bessere Lesbarkeit */
}

/* Verschachtelte Listen innerhalb eines LI-Elements */
li > ul, li > ol {
  margin-top: 0.5rem; /* Konsistenter Abstand zu verschachtelten Listen */
  padding-left: 1.5rem; /* Gleiche Einrückung wie für die Hauptliste */
}

/* RTL-Unterstützung */
[dir="rtl"] ul, [dir="rtl"] ol {
  padding-right: 1.5rem; /* Anpassung für RTL-Richtung */
  padding-left: 0;
}

[dir="rtl"] ol ol, [dir="rtl"] ul ul {
  padding-right: 1.5rem; /* Einrückung für verschachtelte Listen in RTL */
  padding-left: 0;
}

/* Aufzählungszeichen für verschiedene Listentypen */
ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}


/* Table
 ---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  margin: 0;
  padding: 5px;
  background: var(--content-bg);
  color: var(--bold-color);
  border: 1px solid var(--border-color);
  text-align: left;
  text-shadow: none;
}

td {
  padding: 5px;
  border: 1px solid var(--border-color);
}

/* Default box sizing.
 ---------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:after,
*::after,
*:before,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Misc
---------------------------------------- */
::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

/* Font icons used in theme
---------------------------------------- */
@font-face {
  font-family: 'vani';
  src: url("../fonts/vani.eot");
  src: url("../fonts/vani.eot") format("embedded-opentype"), url("../fonts/vani.ttf") format("truetype"), url("../fonts/vani.woff") format("woff"), url("../fonts/vani.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'vani' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-horn:before {
  content: "\e917";
}

.icon-bell:before {
  content: "\e918";
}

.icon-info:before {
  content: "\e919";
}

.icon-share:before {
  content: "\e916";
}

.icon-align-left:before {
  content: "\e915";
}

.icon-document:before {
  content: "\e914";
}

.icon-menu:before {
  content: "\e913";
}

.icon-add_comment:before {
  content: "\e910";
}

.icon-vimeo:before {
  content: "\e912";
}

.icon-comments:before {
  content: "\e911";
}

.icon-exclamation-circle:before {
  content: "\e90e";
}

.icon-exclamation-triangle:before {
  content: "\e90f";
}

.icon-check-square:before {
  content: "\e90d";
}

.icon-hashtag:before {
  content: "\e90c";
}

.icon-calendar:before {
  content: "\e90a";
}

.icon-user:before {
  content: "\e90b";
}

.icon-search:before {
  content: "\e909";
}

.icon-vk:before {
  content: "\e900";
}

.icon-github:before {
  content: "\e901";
}

.icon-whatsapp:before {
  content: "\e902";
}

.icon-telegram:before {
  content: "\e903";
}

.icon-youtube:before {
  content: "\e904";
}

.icon-linkedin:before {
  content: "\e905";
}

.icon-instagram:before {
  content: "\e906";
}

.icon-twitter:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\e908";
}

.container {
  position: relative;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 10px;
}

/* Main wrapper -> Main + Sidebar
--------------------------------*/
.main-wrapper {
  width: 100%;
}

/* Layout -> containers */
.main-container {
  position: relative;
  display: -ms-grid;
  display: grid;
  width: 100%;
  margin: 0;
  padding: 2rem 0;
}

.no-sidebar .main-container,
.sidebar-left .main-container,
.sidebar-right .main-container,
.two-sidebar .main-container {
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

.sidebar-left #main,
.sidebar-right #main,
.two-sidebar #main {
  margin: 0 0 2rem 0;
}

/* Column
--------------------------------*/
.section {
  width: 100%;
  clear: both;
  padding: 1.6rem 0;
}

.row {
  width: 100%;
  clear: both;
  margin-bottom: 1rem;
}

.full {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.item {
  margin: 0 10px 10px 0;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}

.sidebar .block {
  padding: 1rem;
  background: var(--content-bg);
  margin-bottom: 2rem;
  border-radius: 6px;
}

.sidebar .block-title {
  line-height: 1;
  padding-bottom: 0.3rem;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  padding: 6px 0;
  border-bottom: 1px solid var(--content-border-color);
}

/* Extended pro */
.sidebar-circle-one,
.sidebar-circle-two {
  position: absolute;
  border-radius: 50%;
}

.sidebar-circle-one {
  background: var(--circle-one);
  width: 30px;
  height: 30px;
  top: 38px;
  right: 20px;
}

.sidebar-circle-two {
  background: var(--circle-two);
  width: 42px;
  height: 42px;
  top: 20px;
  right: 36px;
}

/* Header
--------------------------------------*/
.header {
  position: relative;
  width: 100%;
  background: var(--content-bg);
  margin: 0;
  padding: 0;
}

/* Header -> Header Top blocks */
.header-top-blocks {
  position: relative;
  background: var(--header-block-bg);
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-block-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.header-block {
  max-width: 100%;
}

.header-block p:last-child {
  margin: 0;
}

/* Header -> Header main */
.header-main {
  width: 100%;
  margin: 0;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Header -> site branding. */
.site-brand {
  position: relative;
}

.site-branding {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: 400;
  line-height: 1;
}

.site-branding img {
  width: auto;
  max-height: 36px;
}

.site-branding a {
  color: var(--theme-color);
}

.site-name-slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--theme-color);
  text-transform: uppercase;
}

.site-slogan {
  font-size: 0.8rem;
}

/* Header -> header right */
.header-main-right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-wrap {
  font-family: var(--font-heading);
  font-weight: 700;
  position: fixed;
  color: #ffffff;
  background: var(--bold-color);
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 1rem;
  width: 100%;
  max-width: 320px;
  z-index: 25;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

ul.main-menu,
.region-primary-menu .menu {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1em;
  z-index: 30;
  list-style: none;
  list-style-type: none;
}

.main-menu a,
.region-primary-menu .menu a {
  color: #ffffff;
}

ul.main-menu li,
.region-primary-menu .menu li {
  position: relative;
  padding: 0;
}

ul.main-menu li a,
.region-primary-menu .menu li a {
  border-bottom: 1px solid var(--footer-border-color);
}

.main-menu li span,
.region-primary-menu .menu li span {
  display: block;
  padding: 10px 0;
}

ul.main-menu > li,
.region-primary-menu .menu > li {
  display: block;
  float: none;
  line-height: 1;
  margin: 0;
}

ul.main-menu > li > a,
.region-primary-menu .menu > li > a {
  display: block;
  margin: 0;
  padding: 10px 0;
}

ul.main-menu > li a::after,
.region-primary-menu .menu > li a::after {
  content: none;
}

ul.main-menu ul.submenu,
.region-primary-menu .menu .submenu {
  position: relative;
  display: block;
  font-weight: 400;
  margin: 0;
  padding: 0;
  z-index: 30;
}

ul.main-menu ul.submenu li,
.region-primary-menu .menu .submenu li {
  display: block;
  background: none;
  width: 100%;
  font-size: 0.9rem;
}

ul.main-menu ul.submenu li a,
.region-primary-menu .menu .submenu li a {
  display: block;
  width: 100%;
  padding: 10px 0 10px 20px;
}

ul.main-menu ul.submenu li a::after,
.region-primary-menu .menu .submenu li a::after {
  content: none;
}

.main-menu li span.dropdown-arrow {
  position: absolute;
  display: inline-block;
  right: 0;
  padding: 0;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children::after {
  content: '+';
  position: absolute;
  right: -16px;
  top: 10px;
  width: 10px;
  height: 22px;
}

/* Third level drop down */
ul.main-menu ul.submenu ul.submenu {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 0 0 30px;
  z-index: 30;
}

ul.main-menu ul.submenu ul.submenu li {
  display: block;
  font-size: inherit;
  width: 100%;
  padding: 0;
  text-align: left;
}

.main-menu ul.submenu li.expanded::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 10px;
}

/* Mobile Menu */
.mobile-menu {
  display: block;
}

.active-menu .menu-wrap {
  overflow-y: scroll;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  /* Means appears */
}

.close-mobile-menu {
  position: absolute;
  top: 0.5rem;
  right: 4px;
  display: none;
  place-content: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  z-index: 48;
  cursor: pointer;
  text-align: center;
}

.active-menu .close-mobile-menu,
.active-menu .main-menu {
  display: -ms-grid;
  display: grid;
}

/* Header -> Full page search form */
.full-page-search {
  position: relative;
  margin: 0;
  padding: 0;
}

.search-icon,
.mobile-menu,
.sliding-panel-icon {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 36px;
  height: 36px;
  margin: 0 0 0 10px;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  cursor: pointer;
}

.search-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--content-bg);
  z-index: 50;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.search-box.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.search-box-content {
  position: relative;
  z-index: 60;
}

.region-search-box .block-title {
  color: var(--bold-color);
  text-align: center;
}

.region-search-box .block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.region-search-box .block-content form {
  width: 90%;
}

.search-box-content form label {
  display: none;
}

.search-box-content input[type="search"] {
  width: 100%;
  margin: 2rem 0 1rem 0;
  padding: 0 30px 0 0;
  font-size: 1.4rem;
  background: url("../images/search.svg") top right no-repeat;
  background-size: contain;
  border: 0;
  border-bottom: 2px solid var(--content-border-color);
  border-radius: 0;
  outline: 0;
}

.search-box-content input[type="search"]:focus {
  border: 0;
  border-bottom: 2px solid var(--theme-color);
}

.search-box-content input[type="submit"] {
  padding: 10px 24px;
  border-radius: 50px;
}

.search-box-close {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 60;
  cursor: crosshair;
  cursor: url("../images/cursor.svg"), auto;
}

/* Page Header
--------------------------------------*/
.page-header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5rem 0 6rem 0;
  text-align: center;
}

/* Allgemeine Regel für alle Titel mit der Klasse .page-title */
.page-title {
  font-weight: bold; /* Fettschrift */
  color: var(--bold-color); /* Textfarbe */
  text-align: center; /* Zentrierung */
  margin-top: 20px; /* Abstand nach oben */
  margin-bottom: 20px; /* Abstand nach unten */
  text-transform: uppercase; /* Alle Buchstaben in Großbuchstaben */
  letter-spacing: 1px; /* Buchstabenabstand */
}

/* Spezifische Schriftgrößen für die Hierarchie der Header */
.page-title h1 {
  font-size: 2.5rem; /* Schriftgröße für h1 */
}

.page-title h2 {
  font-size: 2rem; /* Schriftgröße für h2 */
}

.page-title h3 {
  font-size: 1.75rem; /* Schriftgröße für h3 */
}

.page-title h4 {
  font-size: 1.5rem; /* Schriftgröße für h4 */
}

.page-title h5 {
  font-size: 1.25rem; /* Schriftgröße für h5 */
}

.page-title h6 {
  font-size: 1rem; /* Schriftgröße für h6 */
}

.page-title::after {
  content: '';
  display: block;
  width: 100px; /* Breite der Linie */
  height: 4px; /* Höhe der Linie */
  background-color: var(--theme-color); /* Farbe der Linie */
  margin: 10px auto 0; /* Zentrierung der Linie unter dem Titel */
}

/* Spezifisch für h1 */
h1.page-title::after {
  width: 100px; /* Linie nur unter h1 */
}

.page-subtitle {
  font-size: 1.5rem; /* Schriftgröße */
  font-weight: normal; /* Normale Schriftstärke */
  color: #666666; /* Textfarbe */
  text-align: center; /* Zentrierung */
  margin-top: 10px; /* Abstand nach oben */
  margin-bottom: 30px; /* Abstand nach unten */
  line-height: 1.6; /* Zeilenabstand */
  letter-spacing: 0.5px; /* Buchstabenabstand */
  font-style: italic; /* Kursivschrift */
}

/* Spezifische Schriftgrößen abhängig vom vorangehenden Header */
h1 + .page-subtitle p {
  font-size: 1.5rem; /* Schriftgröße für Untertitel nach h1 */
}

h2 + .page-subtitle p {
  font-size: 1.3rem; /* Schriftgröße für Untertitel nach h2 */
}

h3 + .page-subtitle p {
  font-size: 1.2rem; /* Schriftgröße für Untertitel nach h3 */
}

h4 + .page-subtitle p {
  font-size: 1.1rem; /* Schriftgröße für Untertitel nach h4 */
}

h5 + .page-subtitle p {
  font-size: 1rem; /* Schriftgröße für Untertitel nach h5 */
}

h6 + .page-subtitle p {
  font-size: 0.9rem; /* Schriftgröße für Untertitel nach h6 */
}

.breadcrumb {
  position: relative;
  display: block;
  width: 100%;
  text-align: center; /* Zentriert die Breadcrumbs */
  margin-bottom: 20px; /* Abstand nach unten */
}

.breadcrumb-items {
  margin: 0;
  padding: 0;
  list-style: none; /* Entfernt Aufzählungspunkte */
}

.breadcrumb-items li {
  display: inline-block;
  font-size: 1rem; /* Schriftgröße */
}

.breadcrumb-items li a {
  color: var(--theme-color); /* Linkfarbe */
  text-decoration: none; /* Keine Unterstreichung */
  transition: color 0.3s ease; /* Sanfter Hover-Effekt */
}

.breadcrumb-items li a:hover {
  color: var(--theme-color); /* Linkfarbe bei Hover */
  text-decoration: none; /* Unterstreichung bei Hover */
}

.breadcrumb-item span {
  margin: 0; /* Abstand zwischen den Elementen */
  color: #999999; /* Farbe für den Trenner (z.B. Schrägstrich) */
}

.breadcrumb-items li:last-of-type span {
  color: #e60b00;
  pointer-events: none;
  font-weight: bold;
}

.breadcrumb-item:not(:last-child)::after {
  content: "\f054"; /* Chevron Symbol, wenn du Font Awesome verwendest */
  font-family: "FontAwesome"; /* Font Awesome für Chevron */
  margin: 0 10px;
  color: #999999;
}


@-webkit-keyframes circle-size {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes circle-size {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@-webkit-keyframes circle-move {
  to {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes circle-move {
  to {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

/* Header Pro -> Header main */
.header-top {
  top: 0;
  z-index: 25;
}

/* Drupal core Field */
[dir] .field:not(:last-child) {
  margin-bottom: 36px;
}

.field__label {
  font-weight: bold;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline .field__items {
  float: left;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline .field__items {
  float: right;
}

[dir=ltr] .field--label-inline .field__label, [dir=ltr] .field--label-inline > .field__item, [dir=ltr] .field--label-inline .field__items {
  padding-right: 0.5em;
}

[dir=rtl] .field--label-inline .field__label, [dir=rtl] .field--label-inline > .field__item, [dir=rtl] .field--label-inline .field__items {
  padding-left: 0.5em;
}

.field--label-inline .field__label::after {
  content: ":";
}

/* Calendar module
-------------------------------------- */
.calendar-calendar .full {
  display: table;
}

.calendar-calendar .empty {
  display: table-cell;
}

/* Admin Toolbar */
button.toolbar-item,
button.toolbar-icon {
  background: none;
}

/* Filter Module */
.filter-wrapper {
  border: 1px solid var(--border-color);
}

/* Feed icon */
.feed-icon {
  display: block;
}

/* Main -> Node */
.node,
.node-promoted,
.node-sticky,
.node-view-mode-full,
.node-unpublished {
  position: relative;
}

/* Main -> node -> teaser view */
.node-view-mode-teaser {
  position: relative;
  background: var(--content-bg);
  padding: 1rem 1rem 4rem 1rem;
  margin-bottom: 4rem;
  border-radius: 8px;
}

.node-view-mode-teaser.node-sticky {
  border: 2px solid var(--border-color);
}

/* Main -> node -> Title */
.node-title a {
  position: relative;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

.node-title a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.node-title a:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Main -> node -> submitted details */
.node-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--content-bg);
  border: 1px solid var(--content-border-color);
  border-radius: 2rem;
  font-size: 0.8rem;
  width: 100%;
  margin: 0 0 1rem 0;
  padding: 10px 1rem;
}

.author-picture img {
  width: auto;
  max-height: 25px;
  margin: 0;
}

.node-submitted-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.node-submitted-details i {
  color: var(--theme-color);
}

/* Main -> node -> taxonomy and links */
.node-taxonomy-container,
.node-links-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
}

.term-title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.taxonomy-terms {
  list-style: none;
  margin: 1rem 0 0.2rem 0;
  padding: 0;
  list-style: none;
}

.taxonomy-term a {
  padding: 6px 14px;
  border: 2px solid var(--border-color);
  border-radius: 2rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.taxonomy-term a:hover {
  background: var(--theme-color);
  color: #ffffff;
}

.taxonomy-term a::before {
  content: '#';
  margin-right: 5px;
}

.node-links-container .links,
.node-links-container .inline {
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
}

.inline li {
  padding: 0;
}

/* read more link */
.node-readmore a {
  position: relative;
  border: 2px solid var(--theme-color);
  border-radius: 2rem;
  padding: 0.4rem 0.8rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.node-readmore a:hover {
  color: var(--theme-color);
  padding: 0.4rem 3rem 0.4rem 0.8rem;
}

.node-readmore a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  height: 2px;
  width: 0;
  background: var(--theme-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.node-readmore a:hover::after {
  width: 2rem;
}

.comment-comments a::before,
.comment-add a::before {
  font-family: 'vani';
  color: var(--theme-color-two);
  padding-right: 6px;
}

.comment-comments a::before {
  content: "\e911";
}

.comment-add a::before {
  content: "\e910";
}

/* Main -> node -> pager */
.pager__items {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 1rem 0;
}

.pager__item {
  display: -ms-grid;
  display: grid;
  place-content: center;
  padding: 0;
  line-height: 1;
}

.pager__item a {
  padding: 10px 14px;
  background: var(--content-bg);
  border-radius: 4px;
}

.pager__item a:hover,
.pager__item.is-active a {
  background: var(--theme-color);
  color: #ffffff;
}

/* Search result page
--------------------------------------*/
.page-content input[type="search"] {
  width: 80%;
}

ol.search-results {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.search-results li {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background: var(--content-bg);
}

.search-advanced summary {
  margin: 10px 0;
  cursor: pointer;
}

.search-advanced .form-details-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border-color);
}

.search-advanced .form-wrapper {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--border-color);
}

#footer-top {
  background: var(--content-bg);
  margin: 0;
  padding: 2rem 0;
}

.region-footer-top,
.region-footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.footer {
  position: relative;
  color: var(--footer-color);
  background: var(--footer-bg);
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer .block-title {
  color: #ffffff;
  font-weight: 400;
}

.footer a:hover {
  color: #ffffff;
}

.footer ul,
.footer ol {
  margin: 0;
  padding: 0;
}

.footer ul,
.footer ul li {
  list-style: none;
}

.footer li {
  border-bottom: 1px solid var(--footer-border-color);
}

.footer li a {
  padding: 5px 0;
  display: inline-block;
}

#footer-blocks {
  margin: 0;
  padding: 3rem 0;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
}

#footer-bottom {
  position: relative;
  margin: 0;
  padding: 0 0 1rem 0;
}

#footer-bottom-last {
  position: relative;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--footer-border-color);
}

.footer-bottom-last {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.copyright,
.footer-social-icons {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons li {
  border: 0;
}

.social-icons li a {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--theme-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-icons li a:hover {
  background: var(--theme-color);
  border-radius: 6px;
}

.block,
.block-title,
.block-content {
  position: relative;
}

.block-section .block-title {
  margin-bottom: 0.7rem;
}

.block-section .block-title::before,
.block-section .block-title::after {
  position: absolute;
  content: '';
  left: 0;
  height: 1px;
  background: var(--theme-color);
}

.block-section .block-title::before {
  bottom: 0;
  width: 30px;
}

.block-section .block-title::after {
  bottom: -6px;
  width: 45px;
}

/* Highlighted Block Region */
.highlighted {
  position: relative;
  background: var(--content-bg);
  width: 100%;
  margin: 2rem 0 1rem 0;
  padding: 0;
}

.region-highlighted {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.highlighted .block {
  position: relative;
  margin: 0;
  padding: 1rem 0;
}

.highlighted p:last-child {
  margin: 0;
}

/*Content top and contet bottom Block Region */
.content-top,
.content-bottom {
  width: 100%;
}

.region-content-top,
.region-content-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content-top .block,
.content-bottom .block {
  position: relative;
  margin: 0;
}

.content-top .block {
  padding-bottom: 2rem;
}

.content-bottom .block {
  padding-top: 2rem;
}

/* Comments
--------------------------------------*/
#node-comment {
  position: relative;
  margin: 0;
  border-top: 1px solid var(--border-color);
}

#node-comment i {
  color: var(--theme-color);
}

.comments-title i {
  font-size: 1em;
}

/* Comments -> comment form. */
.comment-form-wrap {
  position: relative;
  margin: 2rem 0;
  padding: 1rem;
  -webkit-box-shadow: 0 0 10px 2px var(--border-color);
          box-shadow: 0 0 10px 2px var(--border-color);
  border-radius: 1rem;
}

.add-comment-title {
  margin: 0;
}

.add-comment-title i {
  font-size: 1em;
}

.comment-form label {
  display: block;
}

/* Comments -> single comment */
.single-comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--content-bg);
  border-radius: 8px;
}

.comment-user-picture {
  position: relative;
  padding: 1rem;
  border-right: 1px solid var(--border-color);
  text-align: center;
}

.comment-user-picture img {
  max-width: 100px;
  height: auto;
  border-radius: 1rem;
}

h3.single-comment-title {
  margin: 0.1rem 0;
  font-size: 1.2rem;
}

.single-comment-meta {
  width: 100%;
  margin-bottom: 6px;
  padding-bottom: 6px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--content-border-color);
}

.single-comment-content-body {
  position: relative;
  padding-left: 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1;
  flex: 1 1;
}

#node-comment .indented {
  margin-left: 4rem;
}

.single-comment-content-body .links.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.single-comment-content-body .links.inline a {
  padding: 4px 16px;
  color: #ffffff;
  background: var(--theme-color);
  border-radius: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.single-comment-content-body .links.inline a:hover {
  background: var(--theme-color-two);
  color: #ffffff;
}

/* Navigation */
.menu {
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.submenu {
  margin: 0;
  padding: 0;
}

/* Main -> Admin Tabs */
ul.page-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0.6rem 0;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
  list-style: none;
}

.page-tabs li {
  padding: 0;
  border-right: 2px solid #ffffff;
}

.page-tabs li a {
  padding: 4px 10px;
  background: var(--border-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-tabs li.active-page-tab a,
.page-tabs li a:hover {
  background: var(--theme-color);
  color: #ffffff;
}

/* Footer -> Scroll To Top. */
.scrolltop {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  place-content: center;
  border-radius: 50%;
  background: var(--theme-color);
  color: #ffffff;
  z-index: 20;
  cursor: pointer;
}

.scrolltop-icon {
  border-radius: 50%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.scrolltop:hover {
  background: var(--theme-color-two);
}

/* Custom Shortcodes
-------------------------------------------*/
/* Shortcodes -> Text align */
.text-left {
  text-align: left;
}

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

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

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

.center {
  margin: 0 auto;
}

/* Shortcodes -> Text Size */
.size-2x {
  font-size: 2rem;
}

.size-3x {
  font-size: 3rem;
}

.size-4x {
  font-size: 4rem;
}

.size-5x {
  font-size: 5rem;
}

.size-6x {
  font-size: 6rem;
}

/* Shortcodes -> container width */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  clear: both;
  display: block;
}

/* Shortcodes -> Empty space */
.empty {
  position: relative;
  width: 100%;
  height: 2rem;
  clear: both;
}

/* Shortcodes -> Color */
.theme-bg {
  background: var(--theme-color);
}

.content-bg {
  background: var(--content-bg);
}

.dark-bg {
  background: var(--footer-bg);
}

.theme-color {
  color: var(--theme-color);
}

.white {
  color: #ffffff;
}

.black {
  color: #000000;
}

.dark {
  color: var(--footer-bg);
}

/* Button
-------------------------------------------*/
.button-link,
a.button-link,
button.button-link {
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  background: var(--theme-color);
  border: 2px solid var(--theme-color);
  border-radius: 12px;
  padding: 9px 22px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.button-link:hover,
a.button-link:hover,
button.button-link:hover {
  color: var(--theme-color);
  background: transparent;
}

.button-border,
a.button-border,
button.button-border {
  position: relative;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--bold-color);
  background: transparent;
  border: 0;
  padding: 0.6em 0.2em 0.6em 0;
}

.button-border:hover,
a.button-border:hover,
button.button-border:hover {
  background: transparent;
  color: var(--bold-color);
}

.button-border::after,
a.button-border::after,
button.button-border::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.4em;
  height: 2px;
  background: var(--theme-color);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.button-border:hover::after,
a.button-border:hover::after,
button.button-border:hover::after {
  width: 100%;
}

.button-round,
a.button-round {
  position: relative;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: var(--theme-color);
  background: transparent;
  border: 2px solid var(--content-border-color);
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.button-round:hover,
a.button-round:hover {
  color: #ffffff;
  background: var(--theme-color);
}

/* Extended pro Shortcodes -> Empty space
-------------------------------------------- */
.empty,
.empty50,
.empty70,
.empty100,
.empty150 {
  position: relative;
  width: 100%;
  clear: both;
}

.empty {
  height: 2rem;
}

.empty50 {
  height: 50px;
}

.empty70 {
  height: 70px;
}

.empty100 {
  height: 100px;
}

.empty150 {
  height: 150px;
}

/* Elements -> Call To Action */
.call-to-action {
  position: relative;
  background: var(--content-bg);
  margin: 1em 0;
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

/* Services
-------------------------------------------*/
.service {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0;
  -webkit-box-shadow: 0 0 20px #cacbda;
          box-shadow: 0 0 20px #cacbda;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.service:hover {
  border-radius: 30px 0;
  -webkit-transform: translateY(-1em);
  transform: translateY(-1em);
}

.service-icon {
  margin-bottom: 1rem;
}

.service-icon img {
  max-height: 50px;
  width: auto;
}

.service-icon i {
  font-size: 3rem;
  color: var(--theme-color);
}

.service .button-link,
.service a.button-link {
  color: var(--theme-color);
  background: transparent;
  border: 2px solid var(--theme-color);
}

.service .button-link:hover,
.service a.button-link:hover {
  color: #ffffff;
  background: var(--theme-color);
}

/* Features
-------------------------------------------*/
.feature {
  background: #ffffff;
  padding: 1rem;
  -webkit-box-shadow: 0 0 10px #cacbda;
          box-shadow: 0 0 10px #cacbda;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon img {
  max-height: 50px;
  width: auto;
}

.feature-icon i {
  font-size: 3rem;
  color: var(--bold-color);
}

.feature:hover {
  background: var(--theme-color);
  color: #ffffff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.feature .button-link:hover,
.feature a.button-link:hover {
  border: 2px solid #ffffff;
}

/* Pricing Table
------------------------------ */
.plan-name {
  background-color: var(--theme-color);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
  padding: 2rem 0 4rem 0;
}

.plan-name h1,
.plan-name h2,
.plan-name h3 {
  color: #ffffff;
}

ul.plan-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-details li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

/*Spacing*/
.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}
.mt-6{
  margin-top: 6rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

/* Animation
-------------------------------------------- */
/*slide up */
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Page Loader
-------------------------------------------- */
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  overflow: hidden;
}

.loader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader-icon {
  width: 72px;
  height: 72px;
  display: block;
  padding: 0px;
}

.loader-icon span {
  background: var(--theme-color);
  position: absolute;
  display: inline-block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  -webkit-animation: preloader 1.8s linear infinite;
  animation: preloader 1.8s linear infinite;
}

.loader-icon span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/* Animated Sidebar
-------------------------------------------- */
.sliding-sidebar {
  position: relative;
  visibility: hidden;
  z-index: 110;
  -webkit-transition: visibility 0s 0.4s;
  transition: visibility 0s 0.4s;
}

.sliding-sidebar.animated-panel-is-visible {
  visibility: visible;
  -webkit-transition: visibility 0s 0s;
  transition: visibility 0s 0s;
}

.sliding-sidebar-container {
  position: fixed;
  top: 0;
  width: 90%;
  max-width: 360px;
  height: 100%;
  padding: 16px 20px;
  background: var(--content-bg);
  color: var(--text-color);
  overflow-x: auto;
  -webkit-transition: -webkit-transform 0.4s 0s;
  transition: -webkit-transform 0.4s 0s;
  transition: transform 0.4s 0s;
  transition: transform 0.4s 0s, -webkit-transform 0.4s 0s;
  -webkit-box-shadow: -2px 0 4px #a9a9aa;
          box-shadow: -2px 0 4px #a9a9aa;
}

.animated-panel-from-right .sliding-sidebar-container {
  right: 0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}

.animated-panel-from-left .sliding-sidebar-container {
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.animated-panel-is-visible .sliding-sidebar-container {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.close-animated-sidebar {
  position: absolute;
  cursor: pointer;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  z-index: 120;
}

.sliding-sidebar-container .block {
  padding: 0 0 1.6em 0;
}

.sliding-sidebar-container h2 {
  font-size: 1.6em;
}

/* Social Icons / Node Sharing
-------------------------------------------- */
.share-node {
  position: relative;
  margin: 1em 0;
}

.share-node-title i {
  color: var(--theme-color);
}

ul.icons {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icons li {
  display: inline-block;
  margin-right: 0.6em;
}

.icons li:last-child {
  margin-right: 0;
}

.icons li a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 42px;
  text-align: center;
  border: 2px solid var(--border-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.icons li a:hover {
  border-radius: 4px;
  border: 2px solid var(--theme-color);
}

/* Cookies Popup message
-------------------------------------------- */
.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background: var(--content-bg);
  padding: 10px 0;
  margin: 0 !important;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

.cookiealert p {
  margin: 0;
}

.cookiealert.show {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

/* Elements
-------------------------------------------- */
.title {
  position: relative;
  text-align: center;
  margin-bottom: 1em;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 1px;
  background: var(--theme-color);
  margin: 0 auto;
  left: 50%;
}

.title::before {
  width: 40px;
  bottom: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.title::after {
  bottom: -4px;
  width: 60px;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

/* Elements -> Accordion / Toggle */
.accordion, .toggle {
  position: relative;
  width: 100%;
}

.accordion-title,
.toggle-title {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Inhalte linksbündig ausrichten */
  margin: 0;
  padding: 0.8em 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-title::before,
.toggle-title::before {
  content: '+';
  display: inline-block;
  color: var(--theme-color);
  font-size: 1.2em;
  margin-right: 10px;
  width: auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.accordion-content,
.toggle-content {
  padding: 1em;
  margin: 0;
  display: none;
  transition: max-height 0.3s ease;
}

.active-toggle,
.active-accordion {
  background: var(--theme-color);
  color: #ffffff; 
}

.active-toggle::before,
.active-accordion::before {
  content: '-';
  color: #ffffff;
  transform: rotate(180deg); /* Symbolrotation für mehr Klarheit */
}

/*Badges*/
.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-border-radius: 0.375rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--body-bg);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}

.badge-gray, .badge-gray a {
  background-color: gray;
  color: var(--body-bg);
}

/* Drupal system message and custom message */
.message,
.message-success,
.message-info,
.message-error,
.message-warning,
.message-announcement,
.message-notice {
  position: relative;
  margin: 1rem 0;
  padding: 14px 14px 14px 64px;
  color: #ffffff;
  text-shadow: none;
}

.message p:last-child,
.message-success p:last-child,
.message-info p:last-child,
.message-error p:last-child,
.message-warning p:last-child,
.message-announcement p:last-child,
.message-notice p:last-child {
  margin: 0;
}

.message a,
.message a:visited,
.message-success a,
.message-info a,
.message-error a,
.message-warning a,
.message-announcement a,
.message-notice a {
  color: #ffffff;
  text-decoration: underline;
}

.message em,
.message-success em,
.message-info em,
.message-error em,
.message-warning em,
.message-announcement em,
.message-notice em {
  color: var(--bold-color);
}

.message-status,
.message-success {
  background: #89ad32;
}

.message-status::before,
.message-success::before {
  content: "\e90d";
  background-color: #759625;
}

.message-info {
  background-color: #0c79c2;
}

.message-info::before {
  content: "\e919";
  background-color: #0865a3;
}

.message-error {
  background: #c94d1c;
}

.message-error::before {
  content: "\e90e";
  background-color: #b3461b;
}

.message-warning {
  background: #cd5a0a;
}

.message-warning::before {
  content: "\e90f";
  background-color: #a44707;
}

.message-announcement {
  background-color: #09bdab;
}

.message-announcement::before {
  content: "\e917";
  background-color: #0d9e88;
}

.message-notice {
  background-color: #cca610;
}

.message-notice::before {
  background-color: #bd8a09;
  content: "\e918";
}

.message::before,
.message-success::before,
.message-info::before,
.message-error::before,
.message-warning::before,
.message-announcement::before,
.message-notice::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 53px;
  height: 100%;
  font-family: "vani";
  font-size: 2em;
  line-height: 53px;
  text-align: center;
}

/* Clearing
--------------------------------------*/
.clear {
  position: relative;
}

.clear::before,
.clear::after,
.row::before,
.row::after,
.section::before,
.section::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .region-primary-menu .menu .submenu .submenu {
    padding-left: 1rem;
  }
  .menu-item-has-children::after {
    right: 1rem;
  }
  .button-flat, .button-flat-green, .cta-button,
   .cta-button-whatsapp,
   .cta-button-orange,
   .cta-button-orange-reversed,
   .cta-button-green,
   .cta-button-green-reversed,
   .cta-button-grey,
   .cta-button-grey-reversed {
    display:block;
    width:100%
  }
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  /* Layout */
  .no-sidebar .main-container {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
  .sidebar-left .main-container {
    -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
  }
  .sidebar-right .main-container {
    -ms-grid-columns: 70% 30%;
        grid-template-columns: 70% 30%;
  }
  .two-sidebar .main-container {
    -ms-grid-columns: 30% 40% 30%;
        grid-template-columns: 30% 40% 30%;
  }
  #main {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .sidebar-left #main,
  .sidebar-right #main,
  .two-sidebar #main {
    margin: 0;
  }
  /* Sidebar */
  #sidebar-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0 1rem 0 0;
  }
  #sidebar-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 0 0 0 1rem;
  }
  /* Header */
  .header-block-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header-block {
    max-width: 50%;
  }
  .header-main {
    padding: 1rem 0;
  }
  /* Header menu */
  .menu-wrap {
    position: relative;
    background: transparent;
    width: 100%;
    max-width: 100%;
    float: right;
    margin-left: 0;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: none;
    transition: none;
  }
  .main-menu {
    display: block;
    color: var(--bold-color);
  }
  .main-menu a {
    color: var(--bold-color);
  }
  ul.main-menu li {
    display: inline-block;
  }
  ul.main-menu li a {
    border: none;
  }
  ul.main-menu > li {
    display: inline-block;
    margin-left: 30px;
  }
  ul.main-menu > li > a {
    padding: 10px 1px;
  }
  ul.main-menu > li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: var(--theme-color);
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  ul.main-menu li:hover > a::after {
    width: 100%;
  }
  ul.main-menu ul.submenu {
    position: absolute;
    display: none;
    font-weight: 700;
    top: 35px;
    opacity: 0;
  }
  ul.main-menu ul.submenu li {
    display: inline-block;
    width: 160px;
    background: #ffffff;
    text-align: left;
    border-bottom: 1px solid var(--theme-color);
  }
  ul.main-menu ul.submenu li a {
    display: inline-block;
    padding: 10px 6px 10px 10px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  ul.main-menu ul.submenu li a:hover {
    padding: 10px 2px 10px 14px;
  }
  li.expanded:hover ul.submenu,
  li.collapsed:hover ul.submenu {
    display: block;
    -webkit-animation: slideUp 0.5s forwards;
    animation: slideUp 0.5s forwards;
  }
  .main-menu li span.dropdown-arrow {
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  ul.main-menu li.expanded:hover .dropdown-arrow,
  ul.main-menu li.collapsed:hover .dropdown-arrow {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  /* Third level drop down */
  ul.main-menu ul.submenu ul.submenu {
    position: absolute;
    display: none;
    width: 160px;
    top: 0;
    left: 160px;
    padding: 0;
    opacity: 0;
  }
  ul.submenu li.expanded:hover ul.submenu,
  ul.submenu li.collapsed:hover ul.submenu {
    display: block;
    -webkit-animation: slideUp 0.5s forwards;
    animation: slideUp 0.5s forwards;
  }
  .main-menu ul.submenu li.expanded::after {
    right: 10px;
  }
  .main-menu > li:last-child .submenu .submenu,
  .region-primary-menu .menu > li:last-child .submenu .submenu {
    left: unset;
    right: 160px;
  }
  .mobile-menu {
    display: none;
  }
  /* Footer */
  .social-icons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  /* components */
  .width30 {
    width: 30%;
  }
  .width40 {
    width: 40%;
  }
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  .width90 {
    width: 90%;
  }
  .full {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 1rem;
  }
  .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .call-to-action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }   
}

@media (min-width: 992px) {
  th {
    padding: 10px;
  }
  td {
    padding: 5px 10px;
  }
  /* footer */
  .morphist {
    text-align: left;
  }
  .header-cicle1,
  .header-cicle2,
  .header-cicle3 {
    height: 4rem;
    width: 4rem;
  }
  .header-cicle4,
  .header-cicle5,
  .header-cicle6 {
    height: 3rem;
    width: 3rem;
  }
  .header-cicle7,
  .header-cicle8,
  .header-cicle9,
  .header-cicle10 {
    width: 2rem;
    height: 2rem;
  }    
}