@font-face {
  font-family: 'StoneSans';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/StoneSansIIITCStd-Lt.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/StoneSansIIITCStd-LtIt.otf') format('opentype');
}

@font-face {
  font-family: 'StoneSans';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/StoneSansIIITCStd-MdIt.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/StoneSansIIITCStd-Md.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/StoneSansIIITCStd-Bd.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: italic;
  font-weight: 900;
  src: url('/fonts/StoneSansIIITCStd-BdIt.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/StoneSansIIITCStd-SmBd.otf') format('opentype');
}


@font-face {
  font-family: 'StoneSans';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/StoneSansIIITCStd-SmBdIt.otf') format('opentype');
}

:root {
  scroll-padding-top: 200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'StoneSans';
  font-size: 18px;
  overflow-x: hidden;
  max-width: 100vw;
}

footer {
  color: black;
  border-top: 2px solid #e30613;
}

footer section:first-child {
  padding: 100px 0;
}

iframe {
  border: none;
}

section {
  padding: 50px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.container.limited {
  max-width: 860px;
}

ul,
ol {
  padding-left: 17px;
}

h1,
h2,
h3,
h4 {
  font-family: 'StoneSans';
  margin-top: 30px;
  margin-bottom: 0px;
  display: block;
  word-break: break-word;
}

.container>h1:first-child,
.container>h2:first-child,
.container>h3:first-child,
.container>h4:first-child,
div.colored>h1:first-child,
div.colored>h2:first-child,
div.colored>h3:first-child,
div.colored>h4:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>h1:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>h2:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>h3:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>h4:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>div>h1:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>div>h2:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>div>h3:first-child,
.umb-block-grid__layout-container>.umb-block-grid__layout-item:first-child>div>h4:first-child {
  margin-top: 0px;
}

footer h3 {
  margin-top: 0;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;

  @container (width <800px) {
    font-size: 32px;
  }
}


h2 {
  font-size: 32px;
  text-transform: uppercase;

  @container (width <800px) {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;

  @container (width <800px) {
    font-size: 22px;
  }

  @container (width <300px) {
    font-size: 18px;
  }
}

h4 {
  font-size: 18px;
}

p {
  line-height: 1.5;
}

input {
  box-sizing: border-box;
}

blockquote {
  margin: 0;
  font-style: italic;
  margin-bottom: 20px;
}

div.limited-box {
  max-width: 500px;
}

input:focus {
  outline: none;
}

img {
  width: auto;
  max-width: 100%;
  display: block;
}

hr {
  border: 1px solid #e30613;
  margin-bottom: 30px;
  margin-top: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  container-type: inline-size;
}

nav .logo {
  width: 250px;
  flex-shrink: 0;
  transition: 300ms ease;
  overflow: hidden;
  display: flex;
  align-items: center;
}

header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  transition: height 600ms ease;
  z-index: 50;
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}

header>.container {
  padding-top: 40px;
  padding-bottom: 10px;
  transition: 600ms ease;
  transform-origin: top;
}

header::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: calc(100% - 2px);
  left: 0;
  background: #e30613;
  z-index: 100;
  transform: translateX(-100%);
  transition: 800ms all;
}

.scrolled header::before {
  transform: translateX(0);
}

nav>ul {
  width: auto;
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 35px;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px 0;
  margin: 0;
  overflow: visible;

  @container (width <=1240px) {
    display: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

header a {
  text-decoration: none;
}

header a::after {
  content: none;
}

nav a {
  font-size: 20px;
  position: relative;
  transition: 300ms ease;
  font-family: 'StoneSans';
  text-transform: uppercase;
  font-weight: bold;
}

main a:not(:has(*)) {
  text-decoration: underline;
  position: relative;
  color: #e30613;
  text-decoration-color: #e30613;
}

nav>ul>li {
  transition: 500ms ease;
}

nav>ul>li:last-child a {
  width: 30px;
  display: block;
  position: relative;
}

nav>ul>li:last-child a:hover {
  color: #e30613;
}

nav>ul.search-opened a::after {
  top: 150px;
  transform: scale(0);
}

nav>ul>li:last-child a::after {
  content: none;
}

nav>ul.search-opened>li:not(:last-child):not(#search-field) {
  transform: translateY(-200%);
  opacity: 0;
  /* transition-delay: 200ms; */
}

nav>ul>li:last-child i {
  position: absolute;
  top: -10px;
  right: 0;
  opacity: 0;
  transition: 600ms ease;
  transform: scale(0.5) rotate(-90deg);
}

nav>ul.search-opened #closeSearch,
nav>ul:not(.search-opened) #openSearch {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

#search-field {
  width: 0;
  margin-right: -50px;
  position: relative;
}

#search-input {
  box-sizing: border-box;
  position: absolute;
  width: 0;
  border: 0;
  border-bottom: 2px solid #e30613;
  transition: 500ms ease;
  left: 0;
  background: none;
  padding: 0;
  padding-bottom: 10px;
  top: -10px;
  font-size: 1rem;
}

.search-opened #search-input {
  left: -400px;
  width: 400px;
}


nav a:hover,
nav a.active {
  color: #e30613;
}

.posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  @container (width <=800px) {
    grid-template-columns: 1fr;
  }
}

.posts>a {
  display: flex;
}

article {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 4px 24px 0px;
  position: relative;
  overflow: hidden;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transition: 300ms ease;
  width: 100%;
}

article h3 {
  transition: color 300ms ease;
}

a article:hover h3 {
  color: #e30613;
}

.article-description {
  transition: 300ms ease;
  padding-top: 0;
}

.posts article {
  padding: 25px;
}

.article-placeholder {
  transition: 400ms ease;
  background: transparent;
  z-index: 2;
  position: relative;
  container-type: inline-size;
  margin-top: 20px;
}

.article-description::after {
  font-family: "Phosphor" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-variant-ligatures: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.downloads li a::before,
.accordeon>div:first-child::after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
}

article h3 {
  margin: 0;
}

.article-info {
  line-height: 2.2;
}

article .article-info,
.highlight h1 {
  background: linear-gradient(0deg, #e30613, #e30613) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 500ms;
  --bg-h: 1px;
}

article .article-info span::after {
  content: "";
  margin: 0 5px;
}

article .article-info span:not(:has(i))::after {
  content: "|";
  margin: 0 5px;
}

article .article-info span:last-child::after {
  content: "";
}

.category-links {
  margin-top: 30px;
  margin-bottom: 30px;
}

.category-links:first-child {
  margin-top: 0;
}

.page-properties>*::after,
.category-links span::after {
  content: "|";
  margin: 0 5px;
}

.page-properties>*:last-child::after,
.category-links span:last-child::after {
  content: "";
}

.category-links span span::after {
  content: "/";
  margin: 0px;
}

.category-links span span:last-child::after {
  content: "";
}

article .article-description h3 {
  font-family: 'StoneSans';
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 10px;
  margin-top: -5px;
}

article .article-description h3:last-child {
  margin-bottom: 0;
}

article:hover .article-description h3,
article:hover .article-info,
.highlight h1 {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}

article .article-info>span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  line-height: 1.3;
}

article .article-info>span:last-child {
  margin-right: 0px;
}

.placeholderImage {
  opacity: 0.3;
  margin: 0 auto;
  max-width: 50%;
  display: block;
  padding: 50px 0;
  filter: contrast(0);
}

.highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  container-type: inline-size;
  width: 100%;
}

.highlight h1 {
  font-size: 3rem;
  display: inline;
  line-height: 1.7;
  --bg-h: 3px;
  transition-delay: 0ms;
}

.highlight h1 {
  background-size: 0% var(--bg-h);
}

.highlight>* {
  width: calc(50% - 3rem);

  @container (width <=900px) {
    width: 100%;
  }
}

.highlight-posts {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

article img {
  width: 100%;
}

.highlight-posts article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  container-type: inline-size;
}

.highlight-posts article>* {
  width: 50%;

  @container (width <=900px) {
    width: 100%;
  }
}

.highlight-posts article {
  box-shadow: none;
}

.highlight-posts article:hover {
  box-shadow: none;
}

.highlight-posts article>div:last-child {
  box-sizing: border-box;
  padding: 30px;
}

.highlight-posts article>div:first-child img {
  height: 100%;
  width: auto;
  object-fit: cover;
}

.highlight-posts article p {
  height: auto;
  opacity: 1;
  margin-top: 15px;
}

.background-gray {
  background: #e5e5e5;
}

.background-bright-gray {
  background: #f4f4f4;
}

div.background-bright-gray,
div.background-gray {
  padding: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.background-gray>span {
  font-weight: bold;
}

.article-content {
  position: relative;
  display: flex;
}

.article-description-2 {
  position: absolute;
  bottom: 5px;
  right: -9px;
  background: white;
  padding: 30px;
  padding-top: 15px;
  box-shadow: -1px 5px 6px #444;
  transition: 300ms ease;
}

article.highlight-article .article-description-2 {
  border-right: 2px solid #e30613;
}

.posts-2 {
  display: flex;
  gap: 3rem;
}

.posts-2>.article-list {
  width: 65%;
}

.posts-2>.article-list article {
  margin-bottom: 2rem;
}

.posts-2>.post-2-side {
  width: 35%;
}

.post-2-side>div {
  position: sticky;
  top: 150px;
  left: 0;
}

.post-2-side>div>div {
  margin-bottom: 30px;
}

.post-2-side img {
  border-radius: 5px;
}

.posts-2 article:hover .article-description-2 {
  padding-right: 60px;
  right: 0px;
}

.information-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.information-list>* {
  max-width: 430px;
  min-width: 300px;
}

label {
  position: relative;
}

input[type="text"],
input[type="email"],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: none;
  border: none;
  font-size: 18px;
  border-bottom: 2px solid black;
  color: inherit;
  padding: 10px 5px;
  position: relative;
  font-family: "StoneSans";
}

form label::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  height: 2px;
  width: 0;
  transition: 800ms ease;
  background: white;
  margin-bottom: 0;
}

form label.no-line::after,
fieldset label::after {
  content: none;
}

form label.checkbox:focus-within {
  background: none;
}

label span {
  margin: 0 5px;
}

label:focus-within::after {
  width: calc(100% - 20px);
  left: 10px;
  background: #e30613;
}

form label {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  margin: -10px;
  margin-bottom: 25px;
  transition: 300ms ease;
  font-weight: 500;
}

form textarea {
  display: block;
  border: none;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  width: 100%;
  border-bottom: 2px solid black;
  outline: none;
  box-sizing: border-box;
  background: none;
  font-family: 'StoneSans';
}

form label:last-child {
  margin-bottom: 0px;
}

label:focus-within {
  background: #5e5e5e17;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.icon-list.split-2 {
  gap: 80px;
}

.icon-list>li {
  border-bottom: 1px solid #e30613;
  padding-bottom: 40px;
}

footer .icon-list {
  margin-top: 20px;
}

footer .icon-list>li {
  padding-bottom: 0px;
  border-bottom: none;
}

.icon-list>li {
  margin-bottom: 15px;
}

main .icon-list>li {
  margin-bottom: 0px;
}

.icon-list>li:has(div>a),
.icon-list>li>a {
  display: flex;
  gap: 10px;
  align-items: start;
  box-sizing: border-box;
}

.icon-list .icon-holder>i {
  font-size: 30px;
}

.icon-list .icon-holder>i {
  font-size: 18px;
}

.icon-list>li>a {
  padding: 10px;
  margin: -10px;
  background: transparent;
  transition: 500ms ease;
  border-radius: 10px;
}

.socials a,
.footer-secondary a,
.mega-menu a {
  position: relative;
  display: inline-block;
}

.dropdownToggle {
  position: relative;
}

.socials a::after,
.footer-secondary a::after,
.mega-menu .dropdownToggle::after {
  content: "";
  background: transparent;
  transition: 500ms ease;
  border-radius: 5px;
  position: absolute;
  top: calc(0% - 3px);
  left: calc(0% - 5px);
  width: calc(100% + 10px);
  height: calc(100% + 6px);
}

.socials a:hover::after,
.footer-secondary a:hover::after {
  background: #ffffff17;
}

.icon-list>li>a:hover {
  color: #e30613;
}


a:not(:has(*))::after {
  background: transparent;
}

a:not(:has(*)):hover::after {
  background: #5757572e;
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  padding: 10px 15px;
  padding-top: 13px;
  font-size: 18px;
  background: none;
  color: inherit;
  position: relative;
  text-transform: uppercase;
  transition: 300ms ease;
  border-top: 2px solid #e30613;
  border-bottom: 2px solid #e30613;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  font-family: 'StoneSans';
}

form .btn[type="submit"] {
  margin-top: 20px;
}

.btn:has(i) {
  padding-right: 20px;
}

.btn>i {
  margin-right: 5px;
}

.btn.invert {
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

.btn::after,
.btn::before {
  content: "";
  height: 2px;
  background: #e30613;
  position: absolute;
  top: -2px;
  left: 50%;
  width: 0%;
  transition: 300ms ease;
}

.btn.invert::after,
.btn.invert::before {
  background: white;
}

.btn::after {
  top: 100%;
}

.btn:hover::after,
.btn:hover::before {
  width: 100%;
  left: 0;
  background: black;
}

.btn.invert:hover::after,
.btn.invert:hover::before {
  background: #e30613;
}

.btn:hover {
  background: #5b5b5b1c;
}

.btn.invert:hover {
  background: #ffffff17;
}

.socials i {
  font-size: 40px;
}

.footer-secondary {
  padding: 30px 0;
  background: #e5e5e5;
  border-top: 2px solid #e30613;
  container-type: inline-size;
}

.footer-secondary>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-secondary>div>div {
  @container (width <=900px) {
    width: 100%;
  }
}

.footer-secondary>div>div:first-child a {
  margin: 0 15px;
}

.mega-menu {
  height: 0px;
}

.mega-menu section {
  padding-top: 30px;
  padding-bottom: 35px;
}

.mega-menu ul {
  list-style: none;
  padding: 0;
}

.mega-menu-root a {
  max-width: 300px;
  line-height: 1.2;
  transition: 300ms ease;
}

.mega-menu-root a.active {
  color: #e30613;
}

.mega-menu-root a:hover {
  color: #e30613;
}

.mega-menu-root li {
  margin-bottom: 5px;
}

.mega-menu.open {
  height: auto;
}

.mega-menu-root {
  margin: 0;
  opacity: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  transition: 900ms ease;
}

header {
  transition: 500ms ease;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 4px 24px 0px;
}

header:hover:has(.mega-menu.open) {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 4px 24px 0px;
}

header:hover .mega-menu-root,
.open .mega-menu-root {
  opacity: 1;
}

.mega-menu-root>li>.dropdown-controls>a,
.mega-menu-root>li>a {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.posts article>img {
  box-sizing: border-box;
}

.posts article>img.placeholderImage {
  aspect-ratio: 3/2;
  object-fit: contain;
  padding: 20%;
  max-width: 100%;
}

.posts article>img:not(.placeholderImage) {
  aspect-ratio: 3/2;
  object-fit: cover;
}

.mega-menu-root>li li:has(ul) {
  display: flex;
  flex-direction: column;
}

.dropdown-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

i.dropdownToggle {
  cursor: pointer;
  width: 18px;
  height: 19px;
}

i.dropdownToggle::before {
  transition: 500ms ease;
  display: block;
}

i.dropdownToggle.open::before {
  transform: rotateX(180deg);
}

.mega-menu-root>li ul.open {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 5px;
  display: block;
  transform: translateY(0%);
}

.mega-menu-root>li li:has(ul)>ul {
  width: 100%;
  box-sizing: border-box;
}

h2.eye-catcher {
  font-size: 60px;
  text-transform: uppercase;
  border: none;
  margin: 0;

  @container (width <800px) {
    font-size: 40px;
  }
}

.call-to-action {
  display: grid;
  position: relative;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: start;

  @container (width <=900px) {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
  }
}

.call-to-action p {
  text-wrap: balance;
}

main {
  transition: 200ms ease;
  margin-top: 120px;
  background: white;
}

.call-to-action>h2 {
  max-width: 450px;
}

.call-to-action>div {
  font-size: 20px;
}

.v1.call-to-action>i::before {
  opacity: 0;
  transform: translateX(-150px);
  transition: transform 1s ease, opacity 0.6s ease-out;
  display: block;
}

.v1.call-to-action {
  grid-template-columns: 1fr 5fr 3fr;

  @container (width <=900px) {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 20px;
  }
}

.v1.call-to-action>* {
  width: 100%;
  margin: 0;
}

.call-to-action>div:first-child {
  display: flex;
  align-items: center;
  gap: 100px;

  @container(width <=900px) {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}

.call-to-action>div>i {
  position: initial;
  font-size: 100px;
}

.call-to-action.redicon>i {
  color: #e30613;
}

.call-to-action>i.in-view:before {
  opacity: 1;
  transform: translateX(0px);
}

p:first-child {
  margin-top: 0;
}

.highlightSection.fill {
  background: #e306130f;
}

.highlight-posts {
  padding: 0 15px;
}

.glide-1,
.glide-2,
.swiper {
  position: relative;
}

.glide-2.shaded,
.swiper.shaded {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 4px 24px 0px;
  padding: 40px;
}

.glide-2 img {
  max-height: 400px;
}

.glide-2.shaded article>div:first-child {
  box-sizing: border-box;
}

.glide-2 article>div:last-child {
  box-sizing: border-box;
  padding-top: 20px;
}

.glide__arrows {
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  padding: 3px;
  box-sizing: border-box;
  pointer-events: none;
}

.glide__arrow {
  pointer-events: auto;
}

.glide__slides {
  z-index: 1;
}

.glide__arrows button {
  background: none;
  border: none;
  cursor: pointer;
}

.glide__arrows i {
  font-size: 45px;
  color: #e30613;
}

.glide__arrows i::before {
  text-shadow: 1px 1px 4px #00000077;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: white;
  text-shadow: 1px 1px 3px #000000a6;
  transition: 300ms ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #e30613;
  text-shadow: 1px 1px 3px transparent;
}

.glide-2 article,
.swiper article {
  flex-direction: column;
  box-shadow: none;
}

.glide-2 article>*,
.swiper article>* {
  width: 100%;
}

.glide-2 article>div:first-child>img,
.swiper article>div:first-child>img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  max-height: calc(100vh - 300px);
}

@media screen and (min-width:901px) {

  .mega-menu-root>li li ul,
  .mega-menu-root>li li ul.open {
    max-height: initial;
    opacity: 1;
    border-left: 0;
    transform: translateY(0%);
    padding-left: 0;
    font-size: 14px;
    padding-top: 0;
    margin-top: 5px;
  }

  .dropdownToggle {
    display: none;
  }
}

.posts-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  margin: 30px 0;

  @container (width <=1100px) {
    grid-template-columns: 1fr 1fr 1fr;
  }

  @container (width <=900px) {
    grid-template-columns: 1fr 1fr;
  }

  @container (width <=700px) {
    grid-template-columns: 1fr;
  }
}

.posts,
.posts-3,
.posts-2,
.posts-4 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.posts-3 article {
  position: relative;
  height: 100%;
}

.posts-3 article>img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.posts-3 article>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 15px;
  padding-top: 75px;
  position: absolute;
  top: 0;
  background: #ffffffbf;
  backdrop-filter: blur(5px);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transition: 300ms ease;
}

.posts-3.open article>div,
.posts-3 article:hover>div {
  opacity: 1;
}

.posts-3 article h3 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
  background: #ffffffbf;
  backdrop-filter: blur(5px);
  transition: 300ms ease;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.posts-3 article>div p {
  display: block;
  height: auto;
  color: black;
  opacity: 1;
  transform: translateY(50%);
  opacity: 0;
  transition: 300ms ease;
  transition-delay: 100ms;
  width: 100%;
  font-weight: 500;
}

.posts-3.open article p,
.posts-3 article:hover p {
  transform: translateY(0%);
  opacity: 1;
}

#menu-toggle {
  display: none;
}

.page-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-properties:first-child {
  margin-top: 0;
}

.page-properties:last-child {
  margin-bottom: 0;
}

.page-properties.borderless {
  border: none;
  padding-bottom: 0;
}

.page-properties>* {
  display: block;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: 500ms ease;
  font-weight: 500;
  font-size: 18px;
}

.page-properties>a>span {
  color: #e30613;
  text-decoration: underline;
}

.info-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  position: relative;
  flex-direction: row-reverse;
  container-type: inline-size;

  @container (width <=1200px) {
    grid-template-columns: 1fr 1fr;
  }

  @container (width <=800px) {
    grid-template-columns: 1fr;
  }
}

.info-box>div {
  container-type: inline-size;
}

.info-box>*:last-child {
  order: 1;

  @container (width <=800px) {
    order: 2;
  }
}

.info-box>*:first-child {
  order: 2;

  @container (width <=800px) {
    order: 1;
  }
}

.info-box>*:first-child>div {
  display: block;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 155px;
  left: 0;
  align-items: baseline;
}

figure {
  margin: 0;
}

figure.cover>img {
  aspect-ratio: 3/2;
  object-fit: cover;
}

figure.cover>img.cropless {
  aspect-ratio: initial;
}

figure.cover figcaption {
  margin-top: 5px;
}

figure:not(.cover) {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: start;
  margin: 0;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

figure:not(.cover)>img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.figure-list.centered figure {
  align-items: center;
}

.figure-list figure>img {
  border-radius: 100%;
}

figure .socials {
  margin-top: 10px;
}

figure .socials i {
  font-size: 28px;
}

figure .socials a:hover::after {
  background: #bdbdbd6b;
}

figcaption span {
  font-weight: bold;
  display: block;
  transition: 300ms ease;
}

.accordeon {
  background: #e5e5e5;
  margin-bottom: 0px;
  margin-top: 0px;
}

.accordeon>div {
  overflow: hidden;
}

.accordeon>div:last-child {
  background: white;
  border: 2px solid #0000000d;
  border-top: none;
}

.accordeon .unlock-form {
  transition: 500ms ease;
  height: 90px;
  padding-top: 20px;
}

.accordeon .unlock-form[data-unlocked] {
  height: 0;
  padding-top: 0px;
  overflow: hidden;
}

.gmap {
  opacity: 0;
  transition: 800ms ease;
}

#map {
  width: 100%;
  height: 350px;
}

.accordeon>div h3:first-child {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.accordeon>div>div:last-child {
  padding: 15px;
}

.accordeon>div:first-child {
  padding: 15px;
  position: relative;
  padding-right: 40px;
  cursor: pointer;
  box-shadow: 0px 0px 3px transparent;
  transition: 300ms ease;
}

.accordeon>div:first-child:hover {
  box-shadow: 0px 0px 3px #00000057;
}

.accordeon>div:first-child::after {
  content: "\f107";
  font-size: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: 300ms ease;
}

.accordeon:has(.unlock-form:not([data-unlocked]))>div:first-child::after {
  content: "\f023";
}

.accordeon:not(:has(>div:last-child[hidden]))>div:first-child::after {
  transform: rotate(180deg);
}

.downloads {
  list-style: none;
  padding: 0;
}

.downloads li {
  margin-bottom: 6px;
}

.downloads:last-child {
  margin-bottom: 0;
}

.downloads:first-child {
  margin-top: 0;
}

.downloads li a::before {
  content: "\f019";
  margin-right: 10px;
}

.figure-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0px;
  margin-top: 0px;
}

.figure-list.small figure {
  height: 100%;
  box-sizing: border-box;
}

.figure-list.large>li {
  width: 100%;
}

.figure-list.large figure {
  width: 100%;
  font-size: 24px;
  justify-content: space-evenly;
  gap: 30px;

  @container (width <=700px) {
    font-size: 22px;
  }

  @container (width <=500px) {
    font-size: 18px;
  }
}

.lead:first-child {
  font-weight: bold;
  margin-top: 30px;
}

.breadcrumbs {
  margin-bottom: 10px;
  font-size: 14px;
}

.breadcrumbs>a:first-child {
  margin-left: 0;
}

.split-2 {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr;

  @container (width <=900px) {
    grid-template-columns: 1fr;
  }
}

.split-3 {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr 1fr;

  @container (width <=900px) {
    grid-template-columns: 1fr 1fr;
  }

  @container (width <=700px) {
    grid-template-columns: 1fr;
  }
}

.split-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;

  @container (width <=1100px) {
    grid-template-columns: 1fr 1fr 1fr;
  }

  @container (width <=900px) {
    grid-template-columns: 1fr 1fr;
  }


  @container (width <=700px) {
    grid-template-columns: 1fr;
  }
}


.split-1 {
  display: grid;
  grid-template-columns: 1fr;
}

.posts-3.split-1 article>img {
  max-height: calc(100vh - 200px);
}


.split-2>div,
.split-2>figure,
.split-3>div,
.split-3>figure {
  max-width: none;
  box-sizing: border-box;
}

.split-2>*,
.split-2>.background-gray {
  margin: 0;
}

.split-3>*,
.split-3>.background-gray {
  margin: 0;
}

.partner {
  padding: 0;
  list-style: none;
  gap: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.partner>li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner a {
  display: block;
  opacity: 0.7;
  filter: grayscale(0.7);
  max-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 300ms ease;
}

.partner a:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partner img {
  height: auto;
  width: auto;
}

footer .icon-holder {
  min-width: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery>* {
  display: block;
  overflow: hidden;
  transition: 300ms ease;
  max-width: 300px;
}

.gallery img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: 300ms all;
}

.gallery a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 5px #00000077;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50%;
}

.swiper article h3 {
  margin-top: 30px;
  font-weight: 500;
}

.swiperButtons {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 3/2;
  width: 100% !important;
  max-height: calc(100vh - 300px);
}

@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .swiperButtons {
    display: none;
    max-height: initial;
  }
}

.richText {
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.richText::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  text-transform: uppercase;
  font-weight: 700;
}

td {
  border-bottom: 1px solid black;
  padding: 5px 10px;
}

td>h3 {
  font-size: 22px;
}

.posts.table {
  grid-template-columns: 1fr;
  gap: 15px;
}

.posts.table article {
  gap: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;

  @container (width <=600px) {
    grid-template-columns: 1fr;
  }
}

.posts.table .article-placeholder {
  margin-top: 0;
}

.posts-4 article {
  padding: 15px;
  display: grid;
  grid-template-columns: 120px 1fr;
  background: #e5e5e5;
  width: 100%;
  box-sizing: border-box;

  @container (width <=600px) {
    grid-template-columns: 1fr;
  }

}

.posts-4 article .article-placeholder {
  margin-top: 0;
}

.posts-4 article h3 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 0;
}

.posts-4 article>span {
  font-weight: 500;
  line-height: 1.7;
}

.posts-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

figure.cover {
  margin-bottom: 25px;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.5s ease;
}

.gallery-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000c7;
  z-index: 100;
  opacity: 0;
  transition: 500ms ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  max-width: initial;
}

.gallery-viewer img {
  object-fit: contain;
  max-height: 100%;
  max-width: 100vw;
}

.gallery-viewer.open {
  opacity: 1;
  pointer-events: initial;
}

.posts-4.table article h3,
.posts-4.table h3.in-view,
.posts-4.table .article-placeholder {
  transform: translateX(0);
  opacity: 1;
}

.gallery-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
}

.gallery-controls button {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 3px #000000a6;
  padding: 15px;
}

figure.cover {
  margin-bottom: 0px;
}

button.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #e30613;
}

.posts-5 .accordeon>div:first-child {
  display: grid;
  gap: 30px;
  grid-template-columns: 200px 1fr;
  background: white;
  border: 2px solid #0000000d;

  @container (width <450px) {
    grid-template-columns: 1fr;
  }
}

.posts-5 article>div:first-child img {
  height: 60px;
  object-fit: contain;
}

.mega-menu-root ul>li>.dropdown-controls {
  background: none;
}

.posts-5 .accordeon>div:first-child h3 {
  margin: 0;
}

.mega-menu-root ul>li:not(:has(ul))>.dropdown-controls>.dropdownToggle {
  display: none;
}

.posts-5 .accordeon>div:first-child>div:last-child {
  padding: 0;
}

.posts-5 .placeholderImage {
  padding: 10px 0;
}

.posts-5 article {
  overflow: visible;
}

.posts-5,
.posts-6 {
  display: grid;
  gap: 30px;
}

.posts-6 article {
  overflow: visible;
}

article .accordeon {
  margin: 0;
}

.post-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 15px;

  @container (width <650px) {
    grid-template-columns: 1fr;
  }
}

.post-content>div>*:first-child {
  margin-top: 0;
}

.table .placeholderImage {
  padding: 10px 0;
}

a:hover figcaption span {
  color: #e30613;
}

button {
  cursor: pointer;
}

.search-results {
  display: grid;
  list-style: none;
  padding: 0;
  gap: 15px;
}

.search-results li {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.08) 0px 4px 24px 0px;
}

.search-results li a {
  padding: 15px;
  display: block;
}

.searchContentTeaser>*:last-child {
  margin-bottom: 0;
}

.umb-block-grid__layout-item section {
  padding: 15px 0;
}

div.colored {
  padding: 15px;
}

.umb-block-grid__layout-item>section>.container {
  padding: 0;
}

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

.embeditem iframe {
  width: 100%;
  height: 100%;
}

.option fieldset {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border: none;
  padding: 0;
  font-family: 'StoneSans';
}

.option fieldset input[type="text"] {
  border-color: #e5e5e5;
}

.option.canton fieldset {
  gap: 15px;
}

.background-gray .option fieldset,
.background-gray .option fieldset input[type="text"] {
  border-color: #999;
}

.option legend {
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
}

.filter {
  display: grid;
  gap: 15px;
}

fieldset>div:has(#textFilter) {
  width: 100%;
}

.mobile-search {
  display: none;
}

.mobile-search label {
  position: relative;
  display: block;
  padding: 10px 5px;
  margin: 0 -5px;
  border-radius: 10px;
  transition: 300ms ease;
}

.indicates-required {
  display: none;
}

.mc-field-group {
  margin-bottom: 35px;
}

.mc-field-group label {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

.mc-field-group input {
  padding: 0;
  padding-bottom: 10px;
}

#submissionText {
  padding: 15px;
  background: #d8e99e;
  margin: 0;
  font-size: 24px;
}

#submissionText>*:first-child {
  margin-top: 0;
}

#submissionText>*:last-child {
  margin-bottom: 0;
}

form fieldset {
  margin-bottom: 25px;
}

.formAccordeon form>label:last-of-type {
  display: none;
}

.toggleFormGroup>div {
  display: none;
}

.toggleFormGroup>div.open {
  display: block;
}

.toggleFormGroup>div>label:last-child {
  margin-bottom: 25px;
}

.noPadTop {
  padding-top: 0;
}

.noPadBottom {
  padding-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 15px;
  width: 100%;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  font-weight: 500;
}

.cookie-content {
  background: rgb(259, 259, 259, 0.7);
  color: black;
  padding: 20px;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #00000038;
  z-index: 99999999;
  max-width: 750px;
  pointer-events: all;
  transform:translateY(150%);
  transition:400ms ease;
  backdrop-filter: blur(7px);
}

.cookie-content.show {
  transition-delay:1000ms;
  transform:translateY(0%);
}

.cookie-content a:not(.btn) {
  margin-left:15px;
  color:#e30613;
  text-decoration:underline;
}
@media screen and (max-width:1239px) {
  body:has(header.open) {
    overflow: hidden;
  }

  .mobile-search {
    display: block;
  }

  header:hover {
    box-shadow: none;
  }

  .mega-menu {
    transition: 500ms ease;
  }

  .open .mega-menu {
    height: calc(100vh - 104px);
  }

  .open .mega-menu-root {
    opacity: 1;
  }

  #menu-toggle {
    display: block;
    font-size: 35px;
    background: none;
    border: none;
    width: 35px;
    height: 36px;
    padding: 0;
    position: relative;
    cursor: pointer;
  }

  #menu-toggle i {
    position: absolute;
    top: 0;
    left: 0;
    transition: 300ms ease;
  }

  #menu-toggle i:last-child {
    opacity: 0;
    transform: translateY(-30px);
  }

  header.open #menu-toggle i:last-child {
    opacity: 1;
    transform: translateY(0px);
  }

  header.open #menu-toggle i:first-child {
    opacity: 0;
    transform: translateY(30px);
  }

  .mega-menu {
    transition-delay: 0s;
    overflow-y: scroll;
  }

  header>.container {
    padding: 30px 15px;
  }

  nav {
    align-items: center;
  }

  main {
    margin-top: 85px;
  }

  .mega-menu-root li {
    width: 100%;
  }

  nav .logo img:last-child {
    display: block;
  }

  .mega-menu-root ul {
    overflow: hidden;
  }

  .mega-menu-root>li ul {
    display: none;
    transform: translateY(-50%);
    padding-left: 10px;
    border-left: 1px solid #e30613;
  }

  .mega-menu-root>li>.dropdown-controls>a {
    margin: 0;
    width: 100%;
    padding: 10px;
  }

  i.dropdownToggle {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }

  .dropdown-controls {
    justify-content: space-between;
    background: #f2f2f2;
    padding-right: 10px;
    border-radius: 5px;
  }

  .mega-menu-root>li:not(:has(ul)) i.dropdownToggle {
    display: none;
  }

  .mega-menu-root>li {
    margin-bottom: 10px;
  }

  .mega-menu-root {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media screen and (max-width:900px) {
  .posts-3 article>div {
    display: none;
    opacity: 1;
  }

  .posts-3 article>div p {
    opacity: 1;
    transform: translateY(0%);
  }

  .posts-3 article>img {
    aspect-ratio: 3/2;
  }

  .info-box>*:first-child>div>div:has(iframe) {
    display: none;
  }

  .info-box>*:first-child,
  .info-box>*:last-child {
    max-width: 100%;
    width: 100%;
  }

  .info-box {
    flex-direction: column;
  }
}
