@charset "UTF-8";
/* Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap'); */
@font-face {
  font-family: "Tahoma";
  src: url("../Fonts/Tahoma/Tahoma.eot");
  src: url("../Fonts/Tahoma/Tahoma.eot?#iefix") format("embedded-opentype"), url("../Fonts/Tahoma/Tahoma.woff2") format("woff2"), url("../Fonts/Tahoma/Tahoma.woff") format("woff"), url("../Fonts/Tahoma/Tahoma.ttf") format("truetype"), url("../Fonts/Tahoma/Tahoma.svg#Tahoma") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Programm-Liste ohne Layout-Annahmen
   - Uhrzeit bleibt normal im Text
   - <strong> wird als „Titel-Pill“ gestylt
   Selektor ggf. anpassen (z.B. .ce-textpic ul, .content ul, etc.)
*/
.program-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.program-list li {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 1.05rem 1.15rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.82);
  /* sorgt dafür, dass TYPO3/Editor-Wrapper nicht „extra Abstand“ machen */
}
.program-list li > * {
  margin: 0;
}
.program-list li {
  /* wenn z.B. <p> im <li> steckt */
}
.program-list li p {
  margin: 0;
}
.program-list li {
  /* kleine visuelle „Programm“-Kante */
  border-left: 6px solid rgba(0, 0, 0, 0.12);
}
.program-list {
  /* Titel-Pill (dein <strong>) */
}
.program-list li strong {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #e30428;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  /* sauberes Umfließen + Abstand zum Text */
  margin: 0 0.5rem 0.25rem 0;
  vertical-align: middle;
  max-width: 100%;
  white-space: normal; /* wichtig: nicht abschneiden */
}
.program-list {
  /* Optional: Trennstrich (–) vor dem Titel optisch betonen, wenn er im Text steht */
}
.program-list li {
  word-break: normal;
  overflow-wrap: anywhere;
}
@media (hover: hover) {
  .program-list li {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  }
  .program-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.14);
  }
}

/* Mobile etwas kompakter */
@media (max-width: 560px) {
  .program-list li {
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }
}
.card {
  /*
  &.program {
    border: 1px solid #ffffff;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;

    p:last-of-type {
      margin-bottom: 0;
    }

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

    .card-title {
      font-size: 1.5rem;
    }

  }
  */
}

.program {
  display: grid;
  gap: 3rem;
}
.program__day {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid;
}
.program__day:last-of-type {
  border-bottom: none;
}
.program__day-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #e30428;
}
.program__day-time {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #e30428;
}
.program__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}
.program__date {
  display: inline-block;
  padding: 8px 25px;
  place-items: center;
  background: #c00;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  font-size: 0.9rem;
}
.program__date-day {
  font-size: 2rem;
  font-weight: 800;
}
.program__date-month {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.program__content p {
  margin: 0;
  line-height: 1.6;
}
.program__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .program__item {
    grid-template-columns: 1fr;
  }
  .program__date {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.sponsor-grid .sponsor-item {
  overflow: hidden;
  position: relative;
  text-align: center;
  border: 1px solid #e30428;
  padding: 15px;
  background: #fff;
  color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateY(0);
}
.sponsor-grid .sponsor-item .box-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}
.sponsor-grid .sponsor-item .sponsor-logo-box {
  height: 120px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-grid .sponsor-item .sponsor-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.sponsor-grid .sponsor-item .sponsor-name {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.sponsor-grid .sponsor-item .link-indicator {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 11;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(227, 4, 40, 0.15);
  color: #e30428;
  opacity: 0.75;
  transition: all 0.3s ease;
}
.sponsor-grid .sponsor-item .link-indicator i {
  font-size: 0.85rem;
}
.sponsor-grid .sponsor-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.sponsor-grid .sponsor-item:hover .sponsor-logo-box img {
  transform: scale(1.05);
}
.sponsor-grid .sponsor-item:hover .link-indicator {
  opacity: 1;
  transform: scale(3.15);
  background: rgba(227, 4, 40, 0.25);
}
@media (max-width: 991.98px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
}

.section.partner {
  background: #fff;
  color: var(--secondary-color);
}
.section.partner a {
  color: var(--accent-color);
}
.section.partner .col {
  --r: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 96px;
}
.section.partner img {
  --h0: 58;
  height: calc(1px * var(--h0) / pow(var(--r), 0.35));
  width: auto;
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.fs-media-gallery .albums-list .img-thumbnail {
  background-color: transparent;
}
.fs-media-gallery .albums-list .img-thumbnail img {
  width: 100%;
  height: auto;
}

h1 {
  font-size: 76px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

@media only screen and (max-width: 993px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 14px;
  }
}
@property --progress {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}
@keyframes load {
  to {
    --progress: var(--value) ;
  }
}
@keyframes background_animation {
  from {
    background-size: 100%;
  }
  to {
    background-size: 110%;
  }
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }
  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}
:root {
  --dark-color: #0e0e0e;
  --secondary-color: #151515;
  --text-color: #fafafa;
  --gray-color: #8b8b8b;
  --accent-color: #f12602;
  --font-1: "Alumni Sans", sans-serif;
  --font-2: "Noto Sans", sans-serif;
}

body {
  font-family: var(--font-2);
  color: var(--text-color);
  background-color: var(--dark-color);
}

p {
  font-size: 1rem;
}

ul {
  list-style: none;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  height: auto;
}

button {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  text-decoration: none;
  transition: all 0.5s;
}

.hover-transform:hover {
  transform: translateY(-10px);
}

button:hover {
  color: black;
}

a {
  text-decoration: none;
}

.w-max-content {
  width: max-content !important;
}

.banner-heading {
  font-size: 5.5rem;
}

.font-1 {
  font-family: var(--font-1);
}

.font-2 {
  font-family: var(--font-2);
}

.ls-2 {
  letter-spacing: 2px;
}

.fs-7 {
  font-size: 0.8rem !important;
}

.fw-black {
  font-weight: 900 !important;
}

.video-e119 {
  width: 60%;
  margin-bottom: -3rem;
  margin-left: -3rem;
}

.form input,
.form textarea,
.form select {
  background-color: transparent;
  padding: 0.8em 1.3em 0.8em 1.3em;
  border-color: gray;
  border-radius: 0px;
  color: white;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  box-shadow: none;
  border: solid 1px var(--gray-color);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--gray-color);
  font-family: var(--font-2);
  font-size: small;
}

.form .form-select {
  color: #131313;
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
  background-color: transparent;
  border: 1px solid gray;
}

.form input.form-check-input:checked {
  border: 1px solid blue;
  color: blue;
}

.form-control.bg-light {
  color: #3a3a3a;
}

.form-control:focus {
  box-shadow: none;
}

.submit_form-subscribe {
  padding-inline: 2rem;
  padding-block: 0.7rem;
  text-decoration: none;
  transition: all 0.5s;
  color: white;
  background-color: var(--accent-color-1);
  border-radius: 5px;
}

.submit_form-subscribe:hover {
  background-color: var(--dark-bg);
  color: white;
  filter: none;
}

.maps {
  width: 100%;
  height: 480px;
  transition: filter 0.5s;
  display: block;
  filter: grayscale(100%);
}

.maps:hover {
  filter: none;
}

#header {
  transition: all 0.5s ease;
}

.navbar-nav .nav-link {
  border-bottom: 2px solid transparent;
  font-size: 1.5rem;
  font-family: var(--font-1);
  padding-block: 1.2rem;
  color: var(--text-color);
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

.navbar-nav .nav-link.active {
  color: var(--accent-color);
}

.navbar-nav .nav-link:focus {
  color: var(--accent-color);
}

.navbar-toggler {
  border: none;
  color: var(--accent-color);
}

.navbar-toggler:focus {
  box-shadow: none;
  background-color: transparent;
  color: var(--accent-color);
}

.dropdown-menu {
  background-color: white;
  border-radius: 0;
  border: none;
  padding: 0;
  width: 200px;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  padding-block: 0.75rem;
  color: var(--dark-color);
  font-family: var(--font-1);
  font-size: 1.1rem;
  font-weight: 600;
  padding-inline: 0.75rem;
}

.dropdown-item.active {
  color: var(--accent-color);
  background-color: white;
}

.dropdown-item:hover {
  background-color: var(--accent-color);
  color: white;
}

.dropdown-item:focus {
  color: var(--accent-color);
}

.dropdown-toggle::after {
  border-top: 0.3em solid var(--accent-color);
  vertical-align: 0.1em;
}

.section {
  padding: 6em 2em 6em 2em;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.section#banner-subpage {
  padding: 2em 2em 2em 2em;
  margin-bottom: 2rem;
}

.subheading {
  font-family: var(--font-1);
  font-weight: 600;
  font-size: 23px;
  color: var(--accent-color);
}

.r-container {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
}

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

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-accent-color {
  background-color: var(--accent-color);
}

.bg-accent-2 {
  background-color: var(--accent-color-2);
}

.bg-accent-opacity {
  background-color: rgba(165, 89, 80, 0.8352941176);
}

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

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

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

a {
  color: #e30428;
}

.border-accent-2 {
  border-color: var(--accent-color-2) !important;
}

.text-gray {
  color: var(--gray-color) !important;
}

.text-secondary-color {
  color: var(--secondary-color);
}

.bg-accent-color-hover:hover {
  background-color: var(--accent-color);
  color: white;
}

.bg-dark-transparent {
  background-color: rgba(35, 35, 35, 0.7176470588);
}

.btn {
  font-size: 1.5rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 25px 6px 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.btn.paypal {
  background-color: #ffffff;
  color: #003087;
  border: 1px solid #cccccc;
  gap: 8px;
}
.btn.paypal:hover {
  background-color: #f5f5f5;
  border-color: #003087;
}
.btn.paypal:active {
  background-color: #ebebeb;
}
.btn.paypal img,
.btn.paypal svg {
  height: 1.3em;
  width: auto;
  display: block;
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  transition: all 0.5s;
}

.btn.btn-accent:disabled {
  background-color: var(--accent-color);
}

.btn-accent:hover {
  background-color: white;
  color: var(--accent-color);
}

.btn-accent-outline {
  background-color: transparent;
  border: 3px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-accent-outline:hover {
  background-color: var(--accent-color);
  color: white;
}

.btn-white-accent {
  background-color: white;
  color: var(--accent-color);
  border: 3px solid transparent;
}

.btn-white-accent:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-white-outline {
  background-color: transparent;
  border-color: white;
  color: white;
  border-width: 3px;
}

.btn-white-outline-hover:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-white-outline:hover {
  background-color: white;
  color: var(--accent-color);
}

.image-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #141620;
  opacity: 0;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-gradient {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--accent-color) 2%, rgba(0, 0, 0, 0.1529411765) 69%);
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  opacity: 0.655;
}

.overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: rgba(41, 41, 41, 0.5294117647);
  opacity: 0.5;
}

.bg-overlay {
  background-color: rgba(45, 34, 39, 0.4705882353);
}

.logo-container {
  max-width: 150px;
  width: 100%;
  position: absolute;
  top: 20px;
}
.logo-container.left {
  left: 0;
}
.logo-container.right {
  right: 0;
}
.logo-container .logo-1,
.logo-container .logo-2 {
  position: absolute;
  inset: 0;
}
.logo-container.mobile {
  display: flex !important;
  align-items: center;
  gap: 20px;
  right: 0;
  left: auto;
  width: auto;
  max-width: none;
}
.logo-container.mobile .logo-1,
.logo-container.mobile .logo-2 {
  position: relative;
  inset: auto;
  display: block;
  width: auto;
  height: auto;
}
.logo-container.mobile .logo-1 img,
.logo-container.mobile .logo-1 svg,
.logo-container.mobile .logo-2 img,
.logo-container.mobile .logo-2 svg {
  display: block;
  height: 60px;
  width: auto;
  max-width: none;
}
@media only screen and (min-width: 992px) {
  .logo-container.mobile {
    display: none !important;
  }
}

.divider {
  display: flex;
  align-items: center;
}

.divider::after {
  display: block;
  content: "";
  border-bottom: 0;
  flex-grow: 1;
  border-top: 3px solid #8692af;
  max-width: 30px;
  min-width: 30px;
}

.divider-element {
  letter-spacing: 2px;
  flex-shrink: 0;
  flex-grow: 1;
  margin: 0;
  margin-left: 1rem;
  font-weight: 400;
}

.text-title {
  font-size: 5.6rem;
}

.image-infinite-bg {
  height: 90vh;
}

.animation-bg {
  animation: background_animation 10s forwards;
}

.bg-attach-fixed {
  background-attachment: fixed;
}

.social-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.social-container.social-large .social-item {
  width: 35px;
  height: 35px;
  font-size: 23px;
}

.social-item {
  font-size: 16px;
  width: 28px;
  height: 28px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent-color);
  color: white;
  border: 1px solid transparent;
}

.social-container.accent .social-item {
  background-color: var(--accent-color);
  color: white;
}

.social-container.accent .social-item:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.social-container.share .social-item {
  background-color: var(--accent-color);
  color: white;
}

.social-container.share .social-item:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.social-container.team .social-item {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 16px;
}

.social-item:hover {
  background-color: white;
  color: var(--accent-color);
}

.social-container .share-button {
  background-color: var(--accent-color-1);
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.share-button:hover {
  background-color: var(--accent-color);
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  background-color: transparent;
  color: var(--accent-color);
  border: none;
  position: relative;
}

.nav-tabs .nav-link:hover {
  border: none;
  color: white;
}

.nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

.breadcrumb {
  align-items: center;
}

.breadcrumb .breadcrumb-item > a {
  color: white;
}

.breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.swiper-pagination {
  margin-block: 1rem;
  position: relative;
}

.swiper-slide {
  padding: 0.5rem;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.video-container {
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 5px solid white;
  border-radius: 10px;
}

.video-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-btn {
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 2rem;
  color: white;
  border: none;
  opacity: 0.7;
}

.video-btn:hover {
  opacity: 1;
  color: white;
}

.border-custom {
  border-width: 0px 1px 0px 0px;
  border-color: var(--accent-color);
  border-style: solid;
}

.card {
  border: none;
  border-radius: 0px;
  transition: all 0.5s;
  position: relative;
  transition: all 0.5s;
  color: var(--text-color);
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 2rem;
  aspect-ratio: 1/1;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: all 0.5s;
}

.list .icon-box {
  width: 4.3rem;
  height: 4.3rem;
}

.card .card-title {
  font-size: 1.3rem;
  font-family: var(--font-1);
  font-weight: 600;
  line-height: 1;
  color: white;
  transition: all 0.5s;
}

.card .card-title:hover {
  color: var(--accent-color);
}

.card .icon-box.bg-accent-color {
  background-color: var(--accent-color);
  color: white;
}

.card .icon-box.accent-color-2 {
  color: var(--accent-color-2);
  font-size: 4rem;
}

.card:hover .icon-box.accent-color-2 {
  color: white;
}

.card.card-outline-hover {
  border: 3px solid transparent;
}

.card.card-outline-hover:hover {
  background-color: transparent;
  border: 3px solid var(--accent-color);
  transform: none;
  color: #131313;
}

.card-overlay:hover {
  transform: translateY(-20px);
}

.card:hover .icon-box.bg-accent-color {
  background-color: white;
  color: var(--accent-color);
}

.card-overlay .card-body {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: #f1260280; */
  background: linear-gradient(0deg, rgba(241, 38, 2, 0.5019607843) 60%, rgba(0, 0, 0, 0.5098039216) 100%);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
}

.card-overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}

.request-loader {
  position: relative;
  height: 70px;
  width: 70px;
  border-radius: 50% !important;
  /* border: solid 1px rgba(255, 255, 255, 0.5); */
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  font-size: 25px;
}

.request-loader:hover {
  border: solid 1px rgba(255, 255, 255, 0.5);
  color: var(--accent-color);
  background-color: transparent;
}

.request-loader::after,
.request-loader::before {
  opacity: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  color: rgba(255, 255, 255, 0.5);
  border: 0px solid currentColor;
  border-radius: 50%;
  animation-name: ripple;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: 0;
}

.request-loader::after {
  animation-delay: 0.4s;
  animation-duration: 3s;
}

.request-loader::before {
  animation-delay: 0.1s;
  animation-duration: 2.5s;
}

.r-progress {
  --value: 17;
  --progress-color: var(--accent-color);
  --secondary-progress-color: white;
  --animation-duration: 2000;
}

.r-progress-bar {
  position: relative;
  height: 12px;
  background-color: var(--secondary-progress-color);
  display: flex;
  border-radius: 10px;
  /* overflow: hidden; */
}

.r-progress-bar .progress-value {
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--progress-color);
  position: relative;
  border-radius: 10px;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  color: black;
}

.r-progress-bar.percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) "%";
  display: block;
  position: absolute;
  left: calc(var(--progress) * 1%);
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  font-size: 18px;
  line-height: 1.2;
  /* font-weight: 700; */
  font-family: var(--font-2);
  bottom: calc(100% + 0.5rem);
}

.circular-progress {
  position: relative;
  width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}

.circular-progress .progress-value {
  background-color: var(--secondary-color);
  position: absolute;
  width: calc(100% - 15px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}

.circular-progress.percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) "%";
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
  z-index: 2;
  position: relative;
  font-family: var(--font-1);
  font-size: 2.8rem;
  font-weight: 700;
}

.circular-progress .progress-value::before {
  content: var(--title);
}

.ifr-video {
  aspect-ratio: 16/9;
  width: 100%;
}

.post-button {
  background-color: transparent;
  color: var(--accent-color) !important;
  border: none !important;
}

.post-button:hover {
  background-color: transparent !important;
  color: var(--accent-color) !important;
  transform: scale(1.15);
}

.card.with-border-bottom {
  border-bottom: 5px solid var(--accent-color) !important;
}

.list.list-style-accent i {
  color: var(--accent-color);
  font-size: 1.6rem;
}

.list-flush-horizontal {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
  border-right: 1px solid #d1d1d1;
}

.list-flush-horizontal .list-item:last-child {
  border-left: 1px solid #d1d1d1;
  border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
  border: none;
}

.list-group .list-group-item {
  background-color: transparent;
  border-color: #d1d1d1;
  color: var(--text-color);
}

.list-group .list-group-item .link {
  color: var(--text-color);
}

.list-group .list-group-item .link:hover {
  color: var(--accent-color);
}

.list-group .list-group-item.active {
  background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
  background-color: var(--accent-color);
  color: white;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-inline: 0.5rem;
}

.list .link {
  font-weight: 400;
}

.list li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
}

.list li .link {
  color: white;
  transition: all 0.5s;
}

.list.text-black i {
  color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
  color: var(--accent-color);
}

.card .link {
  color: var(--text-color);
  transition: color 0.5s;
}

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

.link.accent-color {
  color: var(--accent-color);
  transition: color 0.5s;
}

.link.accent-color:hover {
  color: var(--dark-bg);
}

.link {
  color: #131313;
  cursor: pointer;
}

.link:hover {
  color: #3a3a3a;
}

.link-white {
  color: white;
}

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

.glass-effect {
  background: rgba(165, 89, 80, 0.8352941176);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.fs-very-large {
  font-size: 4.125rem;
}

.border-bottom-hover:hover {
  border-bottom: 2px solid var(--accent-color);
}

.testimonial-container {
  background-color: rgba(28, 35, 38, 0.7019607843);
  border-radius: 5px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.rating {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.rating li {
  color: #f0ad4e;
}

.rating li.inactive {
  color: #d9d9d9;
}

.logo-partner {
  filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
  transition-duration: 0.5s;
}

.logo-partner:hover {
  filter: none;
}

.accordion .accordion-item {
  border: none;
  background-color: transparent;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button {
  background-color: transparent;
  box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  -webkit-box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  -moz-box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  font-weight: 700;
  font-size: 1.25rem;
  padding-inline: 1rem;
  color: rgb(255, 255, 255);
  border-bottom: solid 1px currentColor;
  font-family: var(--font-1);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0px;
}

.accordion .accordion-button::after {
  color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="	%23ffffff" class="bi bi-caret-down-fill" viewBox="0 0 20 20"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
}

.accordion-button:not(.collapsed) {
  box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  -webkit-box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  -moz-box-shadow: 0px 0px 10px -7px rgb(0, 0, 0);
  color: var(--accent-color);
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="	%23f12602" class="bi bi-caret-down-fill" viewBox="0 0 20 20"><path d="M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z"/></svg>');
}

.accordion .accordion-body {
  background-color: transparent;
  font-size: 14px;
  color: var(--gray-color);
}

.custom-border {
  border-width: 10px;
  border-style: solid;
  border-color: white;
}

.position-lg-absolute {
  position: absolute;
}

.w-60 {
  width: 60% !important;
}

.shadow-accent-2 {
  -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color-2);
  -moz-box-shadow: -90px -23px 0px 0px var(--accent-color-2);
  box-shadow: -90px -23px 0px 0px var(--accent-color-2);
}

.text-404 {
  font-size: 10rem;
  font-weight: 700;
}

.floating-date {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
}

.floating-date span {
  font-family: var(--font-2);
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  font-size: 10px;
}

.floating-date strong {
  font-weight: 700;
  font-size: 1.1rem;
}

@media only screen and (max-width: 993px) {
  span,
  button,
  a {
    font-size: 13px;
  }
  p {
    font-size: 15px;
  }
  .btn {
    font-size: 20px;
    width: 100%;
  }
  .section {
    padding: 4em 2em 4em 2em;
  }
  .divider {
    width: 330px;
  }
  .fs-very-large {
    font-size: 3.125rem;
  }
  .image-absolute-1 {
    left: 45%;
    top: 35%;
  }
  .image-infinite-bg {
    background-size: cover !important;
  }
  #header {
    background: rgba(165, 89, 80, 0.8352941176);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }
  .border-custom {
    border-width: 0px 0px 1px 0px;
  }
  .outer-margin {
    margin-right: 0;
  }
  .nav-link {
    padding-block: 0.2rem;
  }
  .navbar-nav .nav-link {
    padding-block: 0.2rem;
  }
  .banner-image {
    margin: 0;
    transform: none;
  }
  .heading {
    margin-top: -40px;
  }
  .testimonial-img {
    margin: 0;
    margin-bottom: 1rem;
  }
  .dropdown-menu {
    width: 100%;
    box-shadow: none;
  }
  .video-e119 {
    width: 85%;
    margin-left: -1.5rem;
  }
  .dropdown-item {
    padding-block: 0.35rem;
  }
  .floating-top {
    top: 1.5rem;
  }
  .floating-bottom {
    bottom: 1.5rem;
  }
  .footer-img {
    position: relative;
  }
  .form-appointment-container {
    position: relative;
    transform: translateY(0);
  }
  .list-flush-horizontal {
    flex-direction: column;
  }
  .list-flush-horizontal .list-item:first-child,
  .list-flush-horizontal .list-item {
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
  }
  .list-flush-horizontal .list-item:last-child {
    border-left: none;
    border-bottom: none;
    border-top: 1px solid #d1d1d1;
  }
  .position-lg-absolute {
    position: static;
  }
  .banner-heading {
    font-size: 2.5rem;
  }
  .text-title {
    font-size: 4rem;
  }
}
.navbar-brand svg {
  width: 100%;
}

div#banner h1, div#banner h1 span {
  font-size: 5.5rem;
  text-shadow: 2px 2px 2px #000000;
  line-height: 80%;
}
.section.infos div.border {
  width: 70px !important;
  height: 70px !important;
}

@media screen and (min-width: 861px) {
  .slides li div.caption-wrapper {
    position: absolute;
    width: 350px;
    top: auto;
    bottom: 20px;
    background: rgba(227, 4, 40, 0.9);
  }
}
#c53 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
@media (min-width: 992px) {
  #c53 ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
#c53 ul li {
  box-sizing: border-box;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
#c53 ul li:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
#c53 ul li strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
#c53 ul li {
  line-height: 1.5;
  color: #333;
}
#c53 ul li a {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b3211e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
#c53 ul li a:hover, #c53 ul li a:focus-visible {
  border-color: currentColor;
}
#c53 ul li a::after {
  content: " →";
}

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