.nav-link.active {
  color: #9F496E !important;
}

html {
  overflow-x: hidden;
}

@media (min-width: 1250px) {
  .shrink {
    padding-block: 0px !important;
  }
}

#topbar {
  transition: padding 0.3s ease;
}
@media (min-width: 1250px) {
  #topbar {
    background: #e1ebfa;
  }
}

#scrollToTopButton {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  transition: visibility 0s, opacity 0.5s linear, background 0.1s ease;
  border: none !important;
}
#scrollToTopButton:hover {
  background: #995f78 !important;
}
#scrollToTopButton:active {
  background: #995f78 !important;
}
#scrollToTopButton:focus {
  background: #995f78 !important;
}

.contact-image {
  background-image: url(./../../media/BirgitZ013a.webp);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  height: 500px;
}

.stat-icon-container {
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  display: inline-flex;
}

.logo {
  max-height: 60px;
}

.bg-light-blue {
  background: #e1ebfa;
}

.bg-light-yellow {
  background: #f2e9ac;
}

.bg-light-green {
  background: #caf0c7;
}

.bg-light-red {
  background: #ffe9f3;
}

.bg-alice-blue {
  background: #f2fafa;
}

.bg-light-orange {
  background: #fcf6f0;
}

.bg-starry-blue-1 {
  background: #F2EBE5;
}

.bg-starry-blue-2 {
  background: #647295;
}

.bg-starry-blue-3 {
  background: #9F496E;
}

.bg-starry-blue-4 {
  background: #2B262D;
}

.text-logo-blue {
  color: #3982cd !important;
}

.text-starry-blue-1 {
  color: #F2EBE5 !important;
}

.text-starry-blue-2 {
  color: #647295 !important;
}

.text-starry-blue-3 {
  color: #9F496E !important;
}

.text-starry-blue-4 {
  color: #2B262D !important;
}

.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.parralax {
  background-image: url(./../../media/b32bbf_b3154b759f8f4fe7801d48c2f2e9f92d_mv2_black.webp);
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
}

.hyphens {
  -webkit-hyphens: auto !important;
          hyphens: auto !important;
}

#timelineSection h1 {
  text-align: center;
}
#timelineSection ul {
  display: grid;
  grid-template-columns: 0.25rem 1fr;
  grid-auto-columns: max-content;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  list-style: none;
  width: min(61rem, 90%);
  margin-inline: auto;
}
#timelineSection ul::before {
  content: "";
  grid-column: 1;
  grid-row: 1/span 20;
  background: rgb(225, 225, 225);
  border-radius: 0.125rem;
}
#timelineSection ul li {
  grid-column: 2;
  margin-inline: 1.5rem;
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
}
#timelineSection ul li:not(:last-child) {
  margin-bottom: 2rem;
}
#timelineSection ul li .date {
  height: 3rem;
  margin-inline: -1.5rem;
  text-align: center;
  background-color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: 1.5rem 0 0 1.5rem;
}
#timelineSection ul li .date::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}
#timelineSection ul li .date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  right: calc(100% + 2rem + 0.125rem);
}
#timelineSection ul li .title,
#timelineSection ul li .descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
#timelineSection ul li .title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 500;
}
#timelineSection ul li .title::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
  bottom: calc(100% + 0.125rem);
}
#timelineSection ul li .descr {
  padding-block-end: 1.5rem;
  box-shadow: 0px 15px 13px -12px rgb(66, 68, 90);
}
@media (min-width: 40rem) {
  #timelineSection ul {
    grid-template-columns: 1fr 0.25rem 1fr;
  }
  #timelineSection ul::before {
    grid-column: 2;
  }
  #timelineSection ul li:nth-child(odd) {
    grid-column: 1;
  }
  #timelineSection ul li:nth-child(even) {
    grid-column: 3;
  }
  #timelineSection ul li:nth-child(2) {
    grid-row: 2/4;
  }
  #timelineSection ul li:nth-child(odd) .date {
    border-radius: 0 1.5rem 1.5rem 0;
  }
  #timelineSection ul li:nth-child(odd) .date::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }
  #timelineSection ul li:nth-child(odd) .date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + 2rem + 0.125rem);
  }
}
#timelineSection .credits {
  margin-top: 1rem;
  text-align: right;
}
#timelineSection .credits a {
  color: var(--color);
}

@media (min-width: 992px) {
  .hyphens {
    -webkit-hyphens: none !important;
            hyphens: none !important;
  }
  .footer-logo {
    width: 100% !important;
  }
  .navbar-expand-lg .offcanvas {
    background-color: rgba(0, 0, 0, 0) !important;
    border: 0 !important;
    flex-grow: 1;
    height: auto !important;
    position: static;
    transform: none !important;
    transition: none;
    visibility: visible !important;
    width: auto !important;
    z-index: auto;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    overflow-y: visible;
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .py-xxl-10 {
    padding-top: 8.5rem !important;
  }
}/*# sourceMappingURL=main.css.map */