:root {
  --calender-gap: 20px;
  --calenderOffset: 60px;
  --color-month-1: #6998af;
  --color-month-2: #a0c6cf;
  --color-month-3: #89af9e;
  --color-month-4: #e18c7c;
  --color-month-5: #b893a6;
  --color-month-6: #7f8e43;
  --color-month-7: #ae474f;
  --color-month-8: #6a3c5f;
  --color-month-9: #35695d;
  --color-month-10: #c5b8aa;
  --color-month-11: #244f6d;
  --color-month-12: #557d8d;
  --calender-highlight-color: #6998af; }

body:has(.calenderContainer) .quickform {
  display: none !important; }

.calenderContainer {
  position: relative; }
  @media (min-width: 992px) {
  .calenderContainer {
    margin-top: -200px; } }
  .calenderContainer .frame {
    margin-bottom: 50px;
    margin-bottom: 3.3333333333rem; }
    @media (min-width: 768px) {
  .calenderContainer .frame {
    margin-bottom: 50px;
    margin-bottom: 3.3333333333rem; } }
    @media (min-width: 992px) {
  .calenderContainer .frame {
    margin-bottom: 80px;
    margin-bottom: 5.3333333333rem; } }
    @media (min-width: 1302px) {
  .calenderContainer .frame {
    margin-bottom: 80px;
    margin-bottom: 5.3333333333rem; } }
  .calenderContainer h2 {
    text-align: center; }
  @media (min-width: 992px) {
  .calenderContainer > section > header {
    margin-bottom: calc(var(--calenderOffset) + 1.5rem); } }

.sectionCalenderYear, .calenderTiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--calender-gap); }
  @media (min-width: 992px) {
  .sectionCalenderYear, .calenderTiles {
    grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.calenderYear {
  position: relative;
  cursor: pointer; }
  .calenderYear[data-childpages="0"] {
    cursor: not-allowed; }
  .calenderYear .before1, .calenderYear .before2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    top: 0px;
    left: 0px;
    z-index: 2;
    pointer-events: none;
    transition: cubic-bezier(1, 0, 0, 1) 0.3s; }
  @media (min-width: 992px) {
  .calenderYear:nth-child(3n + 2) {
    transform: translateY(calc(var(--calenderOffset) * -1)); } }
  .calenderYear .before2 {
    z-index: 1; }
  .calenderYear:hover {
    z-index: 10; }
  .calenderYear:hover .before1 {
    transform: rotate(3deg); }
  .calenderYear:hover .before2 {
    transform: rotate(6deg); }

.calenderYear article {
  background: var(--color-month-1);
  aspect-ratio: 0.875;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5; }
  .calenderYear article .icon img {
    width: 40px;
    height: auto;
    margin-bottom: 10px; }
    @media (min-width: 992px) {
  .calenderYear article .icon img {
    width: 56px; } }
  .calenderYear article h2 {
    color: #fff;
    font-size: 24px;
    line-height: 1.2em; }
    @media (min-width: 992px) {
  .calenderYear article h2 {
    font-size: 48px; } }
  .calenderYear article .description {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
    padding: 0 30px;
    min-height: 60px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: none; }
    @media (min-width: 768px) {
  .calenderYear article .description {
    display: block; } }
  .calenderYear article:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 33%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.16) 100%);
    bottom: 0px;
    left: 0px;
    z-index: 1;
    pointer-events: none; }

.sectionCalenderYear .calenderYear:nth-of-type(1) article {
  background: var(--color-month-1); }
  .sectionCalenderYear .calenderYear:nth-of-type(2) article {
    background: var(--color-month-2); }
  .sectionCalenderYear .calenderYear:nth-of-type(3) article {
    background: var(--color-month-3); }
  .sectionCalenderYear .calenderYear:nth-of-type(4) article {
    background: var(--color-month-4); }
  .sectionCalenderYear .calenderYear:nth-of-type(5) article {
    background: var(--color-month-5); }
  .sectionCalenderYear .calenderYear:nth-of-type(6) article {
    background: var(--color-month-6); }
  .sectionCalenderYear .calenderYear:nth-of-type(7) article {
    background: var(--color-month-7); }
  .sectionCalenderYear .calenderYear:nth-of-type(8) article {
    background: var(--color-month-8); }
  .sectionCalenderYear .calenderYear:nth-of-type(9) article {
    background: var(--color-month-9); }
  .sectionCalenderYear .calenderYear:nth-of-type(10) article {
    background: var(--color-month-10); }
  .sectionCalenderYear .calenderYear:nth-of-type(11) article {
    background: var(--color-month-11); }
  .sectionCalenderYear .calenderYear:nth-of-type(12) article {
    background: var(--color-month-12); }
  .sectionCalenderYear .calenderYear:nth-of-type(1) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-1)); }
  .sectionCalenderYear .calenderYear:nth-of-type(2) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-2)); }
  .sectionCalenderYear .calenderYear:nth-of-type(3) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-3)); }
  .sectionCalenderYear .calenderYear:nth-of-type(4) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-4)); }
  .sectionCalenderYear .calenderYear:nth-of-type(5) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-5)); }
  .sectionCalenderYear .calenderYear:nth-of-type(6) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-6)); }
  .sectionCalenderYear .calenderYear:nth-of-type(7) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-7)); }
  .sectionCalenderYear .calenderYear:nth-of-type(8) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-8)); }
  .sectionCalenderYear .calenderYear:nth-of-type(9) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-9)); }
  .sectionCalenderYear .calenderYear:nth-of-type(10) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-10)); }
  .sectionCalenderYear .calenderYear:nth-of-type(11) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-11)); }
  .sectionCalenderYear .calenderYear:nth-of-type(12) .before1 {
    background: color-mix(in srgb, white 8%, var(--color-month-12)); }
  .sectionCalenderYear .calenderYear:nth-of-type(1) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-1)); }
  .sectionCalenderYear .calenderYear:nth-of-type(2) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-2)); }
  .sectionCalenderYear .calenderYear:nth-of-type(3) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-3)); }
  .sectionCalenderYear .calenderYear:nth-of-type(4) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-4)); }
  .sectionCalenderYear .calenderYear:nth-of-type(5) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-5)); }
  .sectionCalenderYear .calenderYear:nth-of-type(6) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-6)); }
  .sectionCalenderYear .calenderYear:nth-of-type(7) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-7)); }
  .sectionCalenderYear .calenderYear:nth-of-type(8) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-8)); }
  .sectionCalenderYear .calenderYear:nth-of-type(9) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-9)); }
  .sectionCalenderYear .calenderYear:nth-of-type(10) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-10)); }
  .sectionCalenderYear .calenderYear:nth-of-type(11) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-11)); }
  .sectionCalenderYear .calenderYear:nth-of-type(12) .before2 {
    background: color-mix(in srgb, white 16%, var(--color-month-12)); }

.calenderTile {
  background: color-mix(in srgb, white 16%, var(--calender-highlight-color));
  position: relative; }
  .calenderTile.old {
    opacity: 0.5; }
  .calenderTile .image {
    width: 100%;
    aspect-ratio: 1.8947368421;
    position: relative; }
    .calenderTile .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .calenderTile .text {
    padding: 30px 16px;
    color: #fff; }
    @media (min-width: 768px) {
  .calenderTile .text {
    padding: 40px 30px; } }
    .calenderTile .text h2 {
      color: #fff;
      text-align: left;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      overflow: hidden; }
    .calenderTile .text header {
      margin-bottom: 16px; }
    .calenderTile .text .description {
      font-size: 14px;
      line-height: 20px;
      min-height: 60px;
      display: block;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      overflow: hidden; }
    .calenderTile .text .datecontainer {
      display: flex;
      flex-wrap: wrap;
      column-gap: 16px;
      row-gap: 4px;
      margin-bottom: 4px;
      font-size: 12px;
      line-height: 16px; }
      .calenderTile .text .datecontainer .date, .calenderTile .text .datecontainer .time {
        display: flex;
        align-items: center;
        gap: 4px; }
        .calenderTile .text .datecontainer .date .icon, .calenderTile .text .datecontainer .time .icon {
          width: 16px;
          height: 16px;
          object-fit: contain; }
    .calenderTile .text .btn {
      margin: 0px;
      padding: 0 8px;
      min-width: 0px; }
      @media (min-width: 768px) {
  .calenderTile .text .btn {
    width: auto;
    padding: 0 30px; } }
  .calenderTile .dummylink {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    font-size: 0; }

.filterArea {
  position: fixed;
  display: flex;
  flex-direction: column;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100%;
  z-index: 1000;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.6);
  overflow: auto;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease;
  overscroll-behavior: contain; }
  .filterArea.active {
    opacity: 1;
    transform: translateY(0%); }
  .filterArea .spacer {
    width: 100%;
    height: 100px;
    flex-shrink: 0; }
  .filterArea .close-container {
    position: sticky;
    top: 30px;
    left: 0px;
    width: 100%;
    height: 1px;
    z-index: 100; }
    .filterArea .close-container .close {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
      border: none;
      position: absolute;
      top: 0px;
      right: 30px;
      font-family: 'default';
      font-size: 13px; }
  .filterArea .filterContent {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.16) 100%), var(--calender-highlight-color);
    padding: 60px 0 80px;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 1;
    overflow: hidden; }
    @media (min-width: 992px) {
  .filterArea .filterContent {
    padding: 80px 0 100px; } }
    .filterArea .filterContent .frame {
      margin-bottom: 0px !important; }
    .filterArea .filterContent .titlecontainer {
      font-size: 130px;
      height: 1em;
      font-family: "the-seasons", Georgia, serif;
      line-height: 1em;
      margin-bottom: 1.5rem;
      position: relative; }
      @media (min-width: 992px) {
  .filterArea .filterContent .titlecontainer {
    font-size: 200px; } }
      .filterArea .filterContent .titlecontainer .year {
        font-size: 130px;
        line-height: 1em;
        color: #fff;
        text-align: center;
        opacity: 0.15; }
        @media (min-width: 992px) {
  .filterArea .filterContent .titlecontainer .year {
    font-size: 200px; } }
      .filterArea .filterContent .titlecontainer .title {
        position: absolute;
        font-size: 40px;
        line-height: 1em;
        color: #fff;
        text-align: center;
        width: 100%;
        top: 50%;
        left: 0px;
        transform: translateY(-50%); }
        @media (min-width: 992px) {
  .filterArea .filterContent .titlecontainer .title {
    font-size: 72px; } }

.eventfilter-container {
  position: sticky;
  left: 50%;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 50;
  pointer-events: none; }

.eventfilter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0px;
  width: 420px;
  height: 56px;
  max-width: 90vw;
  background: #fff;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
  pointer-events: auto; }
  .eventfilter > div {
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    position: relative;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700; }
    .eventfilter > div .icon {
      width: 16px;
      height: 16px;
      object-fit: contain; }
  .eventfilter .label {
    color: rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .eventfilter .label .icon {
      width: 20px;
      height: 20px; }
  .eventfilter .filter {
    color: #6998af; }
    .eventfilter .filter .dropdown {
      position: absolute;
      bottom: calc(100% + 0px);
      left: 0px;
      background: #fff;
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
      display: none;
      flex-direction: column;
      padding: 10px;
      gap: 10px;
      width: max-content;
      min-width: 100%; }
      .eventfilter .filter .dropdown .filteritem {
        cursor: pointer; }
    .eventfilter .filter:hover .dropdown, .eventfilter .filter:focus .dropdown, .eventfilter .filter:focus-visible .dropdown {
      display: block; }

body:has(.calenderContainer) .mobileQuickform {
  display: none !important; }
