::selection {
    background-color: var(--color-2);
    color: white;
}
:root {
    color-scheme: light dark;
    --header-offset: 0px;
}
html,
body {
    overflow-anchor: none;
}
body {
    background-color: white;
    font-family: 'TECOBA-Sans';
    margin: 0;
}
main {
    background-color: #F2F2F2;
}
.header-wrapper {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1100;
}
.colored-strip {
    background-color: var(--color-2);
    height: 0.2em;
}
header {
    position: relativ;
    top: 0;
    z-index: auto;
}
.upper-menu-bar {
    align-items: center;
    background: white;
    display: grid;
    gap: 1.5em;
    grid-template-columns: auto 1fr;
    max-height: 10rem;
    opacity: 1;
    overflow: hidden;
    padding: 0.75em 3em;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.upper-menu-bar.is-hidden-on-scroll {
    max-height: 0;
    opacity: 0;
    padding-bottom: 0;
    pointer-events: none;
    padding-top: 0;
}
.lower-menu-bar {
    align-items: center;
    background: white;
    column-gap: 2em;
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 0.5em 3em;
}
.horizontal-menu {
    align-items: center;
    display: flex;
    justify-self: end;
}
.equiv-menu {
    align-items: center;
    appearance: none;
    background: transparent;
    border: none;
    color: #333333;
    cursor: pointer;
    display: none;
    height: 3rem;
    justify-content: center;
    justify-self: end;
    padding: 0;
    position: relative;
    transition: color 0.3s ease-in-out;
    width: 2rem;
    -webkit-appearance: none;
}
.equiv-menu:hover {
    color: var(--color-1);
}
.equiv-menu span {
    background-color: currentColor;
    border-radius: 999px;
    left: 50%;
    height: 2px;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out;
    width: 2rem;
}
.equiv-menu span:nth-child(1) {
    top: 1rem;
}
.equiv-menu span:nth-child(2) {
    top: 1.7rem;
}
.equiv-menu span:nth-child(3) {
    top: 2.4rem;
}
.equiv-menu.is-open span:nth-child(1) {
    top: 1.7rem;
    transform: translateX(-50%) rotate(45deg);
}
.equiv-menu.is-open span:nth-child(2) {
    opacity: 0;
}
.equiv-menu.is-open span:nth-child(3) {
    top: 1.7rem;
    transform: translateX(-50%) rotate(-45deg);
}
.links-menu-bar {
    display: flex;
    gap: 1em;
    justify-self: end;
}
.links-menu-bar > .menu-bar-link-container {
    padding-left: 1.5em;
}
.menu-bar-link {
    align-items: center;
    color: #767676;
    display: inline-flex;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.menu-bar-link:hover {
    color: var(--color-1);
    font-weight: 550;
}
.menu-bar-link-content {
    display: inline-flex;
    gap: 0.5em;
}
.menu-bar-item {
    align-items: center;
    color: #333333;
    display: flex;
    height: 25px;
    padding-left: 2em;
    padding-right: 0;
    text-decoration: none;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.menu-bar-item.is-active,
.menu-bar-item:hover
{
    color: var(--color-1);
    font-weight: 550;
} 
.selector-website option {
    color: #444444;
    font-family: 'TECOBA-Sans', sans-serif;
    font-weight: 300;
}
.logo-menu {
    width: 9em !important;
    height: auto !important;
}
.submenu-wrapper {
    background-color: white;
    left: 0;
    margin: 0 3em 3em 3em;
    opacity: 0;
    overflow: hidden;
    overflow-anchor: none;
    padding: 0 1em 1em 1em;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: var(--header-offset);
    transform: translateY(-100%);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    z-index: 900;  
}
.submenu-wrapper.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.submenu-wrapper.is-switching {
    opacity: 0;
    transform: translateY(-100%);
}
.submenu-wrapper.is-hidden {
    display: none;
}
.submenu-wrapper.is-mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.submenu-wrapper.is-mobile-menu .submenu-container {
    border-top: none;
}
.submenu-wrapper.is-mobile-menu .submenu-panel {
    display: block;
    margin-bottom: 2rem;
}
.submenu-wrapper.is-mobile-menu .submenu-text-container {
    overflow: visible;
}
.submenu-wrapper.is-mobile-menu .submenu-text-container h2 {
    margin-top: 0;
}
.submenu-wrapper.is-mobile-menu .submenu-image-container {
    display: none;
}
.mobile-accordion-toggle {
    align-items: center;
    display: none;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}
.mobile-accordion-toggle::after {
    background-color: #444444;
    bottom: 0;
    content: "";
    position: absolute;
    right: 3.25rem;
    top: 0;
    width: 1px;
}
.mobile-accordion-title {
    color: #444444;
    flex: 1;
    font-family: 'TECOBA-Sans';
    font-size: 1.1rem;
    font-weight: 400;
    text-decoration: none;
    transition: font-weight 0.3s ease-in-out, color 0.3s ease-in-out;
}
.mobile-accordion-title:hover {
    color: var(--color-1);
    font-weight: 550;
}
.mobile-accordion-chevron {
    color: #444444;
    flex-shrink: 0;
    height: 1.25rem;
    width: 1.25rem;
}
.mobile-accordion-chevron-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 1rem;
}
.content-outer-container {
    background-color: #F2F2F2;
}
.content-text-container {
    line-height: 1.75em;
    padding: 3em;
}
.content-text-container h1 {
    font-size: 2em;
    font-weight: 550;
    line-height: 1.5em;
}
.content-error-container h2,
.content-text-container h2
{
    font-size: 1.5em;
    font-weight: 500;
}
.content-error-container p,
.content-text-container p,
.document-comment p {
    font-size: 1.15em;
    font-weight: 300;
}
.content-error-container p strong,
.content-text-container p strong,
.document-comment p strong {
    font-weight: 500;
}
.content-text-container ul,
.document-comment ul {
    font-size: 1.1em;
    font-weight: 300;
}
.content-error-container a,
.content-text-container a,
.document-comment p a,
.form-check-label a {
    border-bottom: none;
    color: #444444;
    font-weight: 550;
    text-decoration: none !important;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.content-error-container a:hover,
.content-text-container a:hover,
.document-comment p a:hover {
    color: var(--color-1);
    font-weight: 600;
}
.content-text-container hr {
    border: none;
    border-top: 0.5px solid #444444;
}
.content-center {
    margin: auto;
    max-width: 70em;
    text-align: center;
}
.footer-container {
    background-color: white;
    display: grid;
    grid-template-columns: 30% 1fr;
    margin-left: 3em;
    margin-right: 3em;
    width: calc(100% - 6em);
}
.footer-logo-container {
    padding: 3em 0;
    width: auto;
}
.footer-logo {
    transition: transform 0.5s ease-in-out;
    width: 12em !important;
    height: auto !important;
}
.footer-logo:hover {
    transform: scale(0.9);
}
.footer-content {
    width: auto;
}
.footer-site-link-container {
    display: flex;
    width: 100%;
}
.footer-site-link-list {
    padding: 3em 0.5em;
    width: 100%;
}
.footer-site-link-list ul {
    display: grid;
    font-weight: 400;
    gap: 0.5em 5em;
    grid-template-columns: repeat(2, minmax(0, max-content));
    line-height: 2em;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.footer-site-link-list a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.footer-site-link-list a:hover {
    color: var(--color-1);
    cursor: pointer;
    font-weight: 550;
}
.footer-locations-container {
    padding: 0.5em 0 0.5em 0.5em;
}
.footer-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}
.footer-locations-container h1 {
    color: #444444;
    font-size: 1.4em;
    font-weight: 300;
}
.footer-location {
    color: #444444;
    margin: 0.5em 0 1em 0;
    width: 15em
}
.footer-location p {
    margin: 0.25em 0 0 0;
}
.footer-location a {
    color: #444444;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.footer-location a:hover {
    color: var(--color-1);
    cursor: pointer;
    font-weight: 600;
}
.margin-top {
    margin-top: 1.25em !important;
}
.footer-legal-links {
    padding: 0.5em 1em 0.5em 0;
}
.footer-slogan {
    border-bottom: 1px solid #767676;
    color: #767676;
    font-size: 0.9em;
    padding-left: 0.6em;
}
.footer-copyright {
    color: #767676;
    padding-left: 0.5em;
}
.content-button-container {
    background-color: #E0E0E0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
}
.content-button-container h1 {
    font-size: 2em;
    font-weight: 550;
    margin-bottom: 1em;
}
.content-button-field {
    padding: 1.5em 2em 2em 3em;
    width: auto;
}
.button-link {
    align-items: center;
    border-radius: 0.5rem;
    box-sizing: border-box;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
    display: flex;
    font-size: 1.15em;
    font-weight: 300;
    gap: 0.75em;
    margin-bottom: 1em;
    max-width: 30rem;
    padding: 1em;
    text-align: center;
    text-decoration: none;
    transition: transform 0.5s ease;
    width: 100%;
}
.button-link:last-child {
    margin-bottom: 0;
}
.button-link:hover {
    cursor: pointer;
    transform: scale(0.925);
}
.button-link svg {
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}
.button-white {
    color: white;
}
.button-black {
    color: black;
}
.footer-bottom-links {
    align-items: center;
    display: flex;
}
.footer-links a {
    color: #444444;
    text-decoration: none;
}
.footer-link-logo {
    color: #767676;
    height: 3em;
    margin: 0.5em 1em 0.5em 0.5em;
    transition: color 0.3s ease-in-out;
    width: 3em;
}
.footer-link-logo:hover {
    color: var(--color-1);
}
.footer-legal-links a {
    color: #444444;
    padding: 0.5em;
    transition: color 0.5s ease-in-out, font-weight 0.5s ease-in-out;
}
.footer-legal-links a:hover {
    color: var(--color-1);
    font-weight: 550;
}
.color-primary {
    background-color: var(--color-1);
    border-color: var(--color-1);
}
.color-secondary {
    background-color: var(--color-2);
    border-color: var(--color-2);
}
.no-decoration {
    color: #767676;
    padding-left: 0;
    text-decoration: none;
}
.no-decoration:hover {
    color: var(--color-1);
    font-weight: 550;
}
.menu-bar-link-container {
    color: #767676;
    display: inline-flex;
    gap: 0.5em;
}
.menu-bar-link-container svg {
    transition: color 0.3s ease-in-out;
}
.menu-bar-link-container svg:hover {
    color: var(--color-1);
    cursor: pointer;
}
.menu-bar-link-container svg,
.menu-bar-link-container .menu-bar-link {
    color: inherit;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}
.menu-bar-link-container:hover {
    color: var(--color-1);
    cursor: pointer;
}
.menu-bar-link-container:hover .menu-bar-link {
    font-weight: 550;
}
.is-hidden {
    display: none;
}
.text-image-container {
    align-items: stretch;
    background-color: #F2F2F2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.text-image-image-container {
    overflow: hidden;
    width: auto;
}
.text-image-image-container img {
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    width: 100%;
}
.text-image-text-container {
    align-self: center;
    margin: 0;
    padding: 1.5em 2em 2em 3em;
    width: auto;
}
.text-image-text-container h1 {
    font-size: 2em;
    font-weight: 550;
    line-height: 1.5em;
}
.text-image-text-container p {
    font-size: 1.15em;
    font-weight: 300;
}
.text-teaser {
    color: #444444;
    font-weight: 400 !important;
    text-transform: uppercase;
}
.image-teaser {
    font-weight: 400 !important;
    text-transform: uppercase;
}
.text-subtitle {
    font-size: 1.25em !important;
    font-weight: 450 !important;
    padding-bottom: 1em;
}
.submenu-container {
    display: block;
    width: 100%;
}
.submenu-panel{
    display: none;
}
.submenu-panel.is-active{
    align-items: stretch;
    display: grid;
    gap: 1.25em;
    grid-template-columns: 1fr minmax(18rem, 70%);
    height: calc(100vh - 17.5em);
    max-height: calc(100vh - 17.5em);
    min-height: 0;
    overflow: hidden;
    padding: 0;
}
.mobile-accordion-content {
    min-height: 0;
    overflow: hidden;
}
.submenu-text-container h2 {
    font-size: 1.1em;
    font-weight: 550;
    text-transform: uppercase;
}
.submenu-text-container {
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    width: auto;
    -webkit-overflow-scrolling: touch;
}
.submenu-text-container ul {
    list-style: none;
    margin-top: 2em;
    padding: 0;
}
.submenu-text-container ul li {
    border-top: 1px solid #444444;
    color: #444444;
    font-size: 1em;
    font-weight: 300;
    padding: 1em 0;
    width: 100%;
}
.submenu-text-container ul li:first-child {
    font-weight: 500;
}
.submenu-text-container ul li:last-child {
    border-bottom: 1px solid #444444;
}
.submenu-item {
    color: #444444;
    display: block;
    text-decoration: none;
    transition: padding 0.3s ease-in-out, font-weight 0.3s ease-in-out, color 0.3s ease-in-out;
    width: 100%;
}
.submenu-item:hover {
    color: var(--color-1);
    font-weight: 550;
    cursor: pointer;
    padding-left: 0.5em;
}
.submenu-item.is-active {
    font-weight: 550;
}
.submenu-image-container {
    height: 100%;
    margin-top: 0.5em;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: auto;
}
.submenu-detail-image {
    display: block;
    filter: brightness(70%);
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
}
.submenu-overlay {
    align-items: center;
    background-color: var(--color-3);
    border-radius: 0.5rem 0 0 0;
    bottom: 0;
    color: black;
    display: inline-flex;
    font-weight: 350;
    gap: 1em;
    min-width: 10em;
    padding: 1.5em 2em;
    position: absolute;
    right: 0;
}
.submenu-overlay:hover {
    cursor: pointer;
}
.submenu-overlay-chevron {
    transition: transform 0.5s ease-in-out;
}
.submenu-overlay:hover .submenu-overlay-chevron {
    transform: translateX(1em);
}
abbr {
    text-decoration: underline dotted #444444;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    transition: text-decoration 0.25s ease-in-out;
}
abbr:hover {
    cursor: help;
    text-decoration: underline dotted var(--color-1);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}
.content-image-container, 
.content-media-container {
    height: calc(100vh - 8.7em);
    min-height: 30em;
    position: relative;
}
.content-image-container img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.content-media-container video {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.image-darkened {
    filter: brightness(45%);
}
.content-image-caption {
    align-items: flex-start;
    color: white;
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: flex-end;
    max-width: 40rem;
    padding-bottom: 12.5em;
    padding-left: clamp(2rem, 6vw, 5rem);
    position: absolute;
}
.content-image-caption h1 {
    font-size: 2.75em;
    font-weight: 600;
}
.content-image-caption p {
    font-size: 1.2em;
}
.tx-powermail {
    margin: auto;
    padding: 0.25em 0;
    width: 90%;
}
.tx-powermail h3 {
    font-size: 2em;
    font-weight: 550;
    line-height: 1.5em;
}
.powermail_form fieldset{
    border: none;
    box-shadow: none;
    padding: 0;
}
.powermail_form {
    font-weight: 300;
    margin: 3em;
}
.powermail_form .row {
    align-items: start;
    display: grid;
    gap: 2em 1.5em;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0.5em 1em 0 1em;
}
.powermail_form
.row:has(> .powermail_fieldwrap_type_submit):has(> .powermail_fieldwrap_type_reset) {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: flex-start;
}
.powermail_form
.row:has(> .powermail_fieldwrap_type_submit):has(> .powermail_fieldwrap_type_reset)
> .powermail_fieldwrap_type_submit,
.powermail_form
.row:has(> .powermail_fieldwrap_type_submit):has(> .powermail_fieldwrap_type_reset)
> .powermail_fieldwrap_type_reset {
    flex: 0 1 14rem;
    margin: 0;
    max-width: 14rem;
    min-width: 12rem;
    padding: 0;
    width: 14rem;
}
.powermail_form
.row:has(> .powermail_fieldwrap_type_submit):has(> .powermail_fieldwrap_type_reset)
.powermail_field {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}
.powermail_form
.row:has(> .powermail_fieldwrap_type_submit):has(> .powermail_fieldwrap_type_reset)
.btn {
    box-sizing: border-box;
    margin: 0.25em 0;
}
.powermail_form .powermail_fieldwrap_type_input {
    align-self: start;
    margin: 0 !important;
    min-width: 0;
    padding: 0 !important;
    width: 100%;
}
.powermail_form legend {
    font-size: 1.15em;
    font-weight: 500;
    margin-top: 1em;
}
.powermail_fieldwrap {
    width: 100%;
}
.powermail_fieldwrap_type_file {
    margin-top: 0 !important;
}
.powermail_form .powermail_fieldwrap_type_input .powermail_field {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}
.powermail_field label {
    display: block !important;
    grid-column: 1 / -1;
}
.powermail_field label {
    display: block;
    line-height: 1.4;
    margin: 0 0 0.25em;
    padding: 0;
}
.powermail_form .powermail_fieldwrap_type_input input {
    display: block;
    margin: 0;
    max-width: none;
    width: 100%;
}
.powermail_form .powermail_fieldwrap_type_textarea {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
}
.powermail_form .powermail_fieldwrap_type_textarea .powermail_field {
    width: 100%;
}
.powermail_form .powermail_fieldwrap_type_textarea textarea {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
}
.powermail_field ul {
    color: #C82008;
    font-weight: 500;
    list-style: none;
    padding-left: 0;
}
.powermail_fieldwrap_type_radio .powermail_field {
    display: grid;
    gap: 1em;
    grid-template-columns: 1fr 1fr;
}
.powermail_file.form-control {
    min-height: unset;
    height: auto;
    padding: 0;
}
.form-check {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
textarea {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #444444;
    box-sizing: border-box;
    font-family: 'TECOBA-Sans';
    font-size: 1em;
    font-weight: 350;
    max-width: 30em;
    padding: 0.75em;
    width: 100%;
}
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
textarea:focus {
    border-bottom: 2px solid var(--color-1);
}
input[type="file"] {
    background-color: transparent;
    border: none;
    font-family: 'TECOBA-Sans';
    font-size: 1em;
    font-weight: 300;
    min-width: 17.5em;
    padding: 0.75em 0 !important;
}
textarea {
    box-sizing: border-box;
    resize: vertical;
    width: 100%;
}
.mandatory {
    color: #C82008;
}
.mandatory::before {
    content: ' ';
}
.powermail_form .powermail_fieldwrap_type_check {
    grid-column: 1 / -1;
    width: 100%;
}
.powermail_fieldwrap_type_reset,
.powermail_fieldwrap_type_submit {
    grid-column: auto;
}
.powermail_fieldwrap_type_reset input,
.powermail_fieldwrap_type_submit input {
    display: block;
}
input[type="reset"],
input[type="submit"] {
    background-color: #444444;
    border: 3px solid #444444;
    border-radius: 0.5rem;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    color: white;
    font-family: 'TECOBA-Sans';
    font-size: 1.1em;
    font-weight: 450;
    max-width: 30rem;
    padding: 1em;
    transition: transform 0.5s ease-in-out;
}
input[type="reset"] {
    background-color: transparent;
    color: #444444;
}
input[type="reset"]:hover,
input[type="submit"]:hover {
    cursor: pointer;
    transform: scale(0.9);
}
.powermail_message_error,
a[href^="#powermail_field"] {
    color: #C82008;
    font-weight: 500;
    text-decoration: none;
}
.frame-type-felogin_login {
    margin: auto;
    max-width: 60em;
    padding-top: 2em;
    text-align: center;
    width: 80%;
}
.frame-type-felogin_login h3 {
    font-size: 1.5em;
    font-weight: 550;
    margin-top: 0;
}
.frame-type-felogin_login p {
    font-size: 1.15em;
    font-weight: 300;
    line-height: 1.75em;
    text-wrap: balance;
}
.frame-type-felogin_login form {
    margin: auto;
    width: 100%;
}
.frame-type-felogin_login form fieldset {
    align-items: center;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}
.frame-type-felogin_login form fieldset legend {
    display: none;
}
.frame-type-felogin_login form fieldset div {
    font-size: 1.1em;
    font-weight: 300;
    margin: 1.5em 0;
    max-width: 30rem;
    text-align:center;
    width: 100%;
}
input[name="submit"] {
    width: 100%;
}
.content-error-container {
    align-items: center;
    color: #444444;
    display: flex;
    justify-content: center;
    line-height: 1.75em;
    padding: 3em;
    text-align: center;
}
.content-error-wrapper {
    width: 85%;
}
.content-error-container h1 {
    font-size: 4em;
    font-weight: 550;
}
.content-error-container img {
    margin-top: 1em;
    width: 10em;
}
.content-document-container {
    display: flex;
    justify-content: center;
    padding: 1em 0;
    width: 100%;
}
.document-group {
    border-bottom: 1px solid #444444;
    display: inline-block;
    max-width: 50em;
    padding: 0 1em 1em 0.5em;
    width: 80%;
}
.document-group h1 {
    font-size: 1.5em;
    font-weight: 550;
    text-wrap: balance;
}
.document-group p {
    font-size: 1.1em;
    line-height: 1.75em;
    margin: 1em;
}
.document-group a {
    align-items: center;
    border-bottom: 3px solid var(--color-2);
    color: #444444;
    display: inline-flex;
    font-weight: 500;
    gap: 5px;
    text-decoration: none;
    text-wrap: balance;
    transition: border-color 0.5s ease-in-out, font-weight 0.5s ease-in-out;
}
.document-group a:hover {
    border-color: var(--color-1);
    font-weight: 550;
}
main > .content-document-container:nth-child(2) .document-group {
    margin-top: 2em;
}
svg {
    vertical-align: middle;
}
.document-group a svg {
    flex-shrink: 0;
    height: 16px;
    width: 16px;
}
.back-to-top {
    align-items: center;
    background-color: var(--color-2);
    border: none;
    border-radius: 0.5rem;
    bottom: 2rem;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.18);
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    height: 3.25rem;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 2rem;
    transform: translateY(1rem) scale(0.9);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    visibility: hidden;
    width: 3.25rem;
    z-index: 1500;
}
.back-to-top:hover {
    background-color: var(--color-1);
    color: #ffffff;
}
.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}
.back-to-top svg {
    height: 1.25rem;
    width: 1.25rem;
}
.button-outer-container {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: auto;
    max-width: 60em;
    padding-bottom: 2em;
    width: 80%;
}
.document-comment {
    display: block;
    padding-left: 1em;
}
.selector-website-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.selector-website {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    color: #767676;
    cursor: pointer;
    font-family: 'TECOBA-Sans';
    font-size: 1em;
    font-weight: 400;
    margin: 0;
    padding: 0 1.75em 0 0;
    position: relative;
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
    z-index: 2;
}
.selector-chevron {
    color: #767676;
    height: 16px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.3s ease-in-out;
    width: 16px;
}
.selector-website-wrapper:hover .selector-website,
.selector-website-wrapper:focus-within .selector-website {
    color: var(--color-1);
    font-weight: 550;
}
.selector-website-wrapper:hover .selector-chevron,
.selector-website-wrapper:focus-within .selector-chevron {
    color: var(--color-1);
}
blockquote {
    margin-left: 2.5em;
}
.color-white {
    color: white !important;
}
altcha-widget {
    --altcha-color-base: #F2F2F2;
}
.altcha-checkbox-wrap label {
    margin: 0;
}
.global-messages {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: min(440px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    background: transparent;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.global-messages::-webkit-scrollbar {
    display: none;
}
.global-message {
    width: 100%;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(calc(100% + 24px));
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: auto;
}
.global-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.global-message.is-closing {
    opacity: 0;
    transform: translateY(calc(100% + 24px));
}
.global-message-content {
    position: relative;
    padding: 24px 56px 24px 24px;
    border: 0;
    border-radius: 0.5rem;
}
.global-message-1 {
    background: var(--color-1);
}
.global-message-2 {
    background: var(--color-2);
}
.global-message-text h1 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    line-height: 1.25;
}
.global-message-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}
.global-message-close:hover {
    background: rgb(0 0 0 / 15%);
}
.global-message-close:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

@media screen and (max-width: 1200px) {
    .submenu-image-container {
        display: none;
    }
    .submenu-panel.is-active {
        grid-template-columns: 1fr;
        height: calc(100vh - 17.5em);
        min-height: 0;
    }
    .text-image-text-container h1 {
        font-size: 1.75em;
    }
    .content-button-container h1 {
        font-size: 1.75em;
    }
    .footer-logo {
        width: 9em;
    }
}
@media screen and (max-width: 992px) {
    .horizontal-menu {
        display: none;
    }
    .equiv-menu {
        display: inline-block;
    }
    .submenu-wrapper.is-mobile-menu {
        margin: 0 1rem 1rem 1rem;
        max-height: 75vh;
        overflow-y: auto;
        padding: 1rem 1em;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel:first-of-type {
        border-top: 1px solid #444444;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel {
        border-bottom: 1px solid #444444;
        display: block;
        margin-bottom: 0;
        padding: 0;
    }
    .submenu-wrapper.is-mobile-menu .submenu-text-container {
        overflow: visible;
    }
    .submenu-wrapper.is-mobile-menu .submenu-text-container ul {
        margin-top: 0;
    }
    .submenu-wrapper.is-mobile-menu .submenu-text-container ul li:last-of-type {
        border-bottom: none;
    }
    .submenu-wrapper.is-mobile-menu .submenu-text-container ul li:last-child {
        padding-bottom: 0;
    }
    .submenu-wrapper.is-mobile-menu .submenu-text-container h2 {
        display: none;
        font-weight: 400;
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-toggle {
        align-items: center;
        background: transparent;
        border: none;
        color: #444444;
        cursor: pointer;
        display: flex;
        font-family: 'TECOBA-Sans';
        font-size: 1.1rem;
        font-weight: 500;
        justify-content: space-between;
        padding: 1rem 0;
        text-align: left;
        width: 100%;
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-chevron {
        transition: transform 0.3s ease-in-out;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel.is-expanded .mobile-accordion-chevron {
        transform: rotate(180deg);
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-content {
        display: block;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease-in-out, opacity 0.35s ease-in-out;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel.is-expanded .mobile-accordion-content {
        max-height: 40rem;
        opacity: 1;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel.is-expanded .mobile-accordion-content .submenu-text-container {
        transform: translateY(0);
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel.is-expanded .mobile-accordion-title {
        color: var(--color-1);
        font-weight: 550;
    }
    .submenu-wrapper.is-mobile-menu 
    .submenu-text-container ul li {
        margin-left: 1.5rem;
        width: calc(100% - 1.5rem);
    }
    .submenu-wrapper.is-mobile-menu .submenu-parent-item {
        display: none;
    }
    .submenu-wrapper.is-mobile-menu .submenu-panel:last-of-type.is-expanded {
        border-bottom: none;
    }
    .submenu-item {
        font-weight: 400;
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-toggle-no-children {
        align-items: center;
        display: flex;
        padding: 1rem 0;
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-toggle-no-children::after {
        display: none;
    }
    .submenu-wrapper.is-mobile-menu .mobile-accordion-toggle-no-children .mobile-accordion-title {
        flex: 1;
    }
    .button-link {
        max-width: 30rem;
    }
    .content-button-field .button-link,
    .text-image-text-container .button-link
    {
        box-sizing: border-box;
        width: min(100%, 30rem);
        max-width: none;
    }
    .footer-bottom-links {
        display: block;
    }
    .footer-legal-links {
        line-height: 2em;
    }
    .content-image-caption {
        padding-left: 1em;
    }
    .content-image-caption h1 {
        font-size: 2em;
    }
    .frame-type-felogin_login {
        margin: 0 auto;
        max-width: none;
        width: calc(100% - 2em);
    }
    .button-outer-container {
        margin: 0 auto;
        max-width: none;
        width: calc(100% - 2em);
    }
}
@media screen and (max-width: 768px) {
    .upper-menu-bar {
        padding: 0.75em 1em;
    }
    .lower-menu-bar {
        padding: 0.5em 1em;
    }
    .links-menu-bar {
        display: none;
    }
    .content-button-container {
        display: block;
        grid-template-columns: 1fr;
    }
    .content-image-caption p {
        font-size: 1.1em;
    }
    .content-button-field {
        padding: 0.5em 1em 1em 1em;
    }
    .content-error-container,
    .content-text-container {
        padding: 1em;
    }
    .button-link {
        width: calc(100% - 2rem);
    }
    .footer-container {
        display: block;
        margin-left: 1em;
        margin-right: 1em;
        width: calc(100% - 2em);
    }
    .footer-site-link-list {
        padding: 1em 0;
    }
    .footer-site-link-list ul {
        gap: 0.5em 4em;
    }
    .footer-locations-container {
        padding: 0;
    }
    .footer-link-logo {
        margin: 0.5em 1.5em 0.5em 0;
    }
    .footer-legal-links a {
        padding: 0.5em 1em 0.5em 0;
    }
    .footer-copyright,
    .footer-slogan {
        padding-left: 0;
    }
    .text-image-container {
        display: block;
    }
    .text-image-text-container {
        padding: 1em;
    }
    .back-to-top {
        bottom: 1.5rem;
        right: 1rem;
    }
    .content-document-container {
        padding: 0;
    }
    .document-group {
        hyphens: auto;
        margin: 0 1em;
        overflow-wrap: anywhere;
        padding: 0 0 1em 0;
        width: 100%;
        word-break: normal;
    }
    .document-group p {
        margin: 1em 1em 1em 0.75em;
    }
    .powermail_form .row {
        grid-template-columns: 1fr;
    }
    .tx-powermail {
        width: 100%;
    }
    .powermail_form {
        font-weight: 300;
        margin: 2em 1em;
    }
}

@media screen and (max-width: 600px) {
    .global-messages {
        right: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
        max-height: calc(100vh - 32px);
        gap: 12px;
    }
    .global-message-content {
        padding: 20px 52px 20px 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-site-link-list ul {
        grid-template-columns: 1fr;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #252525;
        color: white;
    }
    .footer-container,
    .header-wrapper,
    .lower-menu-bar,
    .submenu-wrapper,
    .upper-menu-bar {
        background-color: #252525;
        color: white;
    }
    .content-document-container,
    .content-outer-container,
    .frame-type-felogin_login,
    .text-image-container,
    main {
        background-color: #333333;
    }
    .content-button-container {
        background-color: #444444;
    }
    .menu-bar-link-container,
    .menu-bar-link,
    .selector-website,
    .selector-website option,
    .menu-bar-item,
    .footer-site-link-inner-container a,
    .footer-location a, .footer-location,
    .footer-link-logo, .footer-legal-links a,
    .footer-slogan, .footer-copyright, .text-teaser,
    .document-group a, .content-text-container a,
    .footer-site-link-list a, .submenu-item,
    .mobile-accordion-title, .mobile-accordion-chevron,
    .equiv-menu, .content-error-container, .document-comment p a,
    .selector-chevron, .footer-locations-container h1,
    .form-check-label a, input[type="file"]{
        color: white;
    }
    .footer-slogan {
        border-bottom: 1px solid white;
    }
    .menu-bar-item:hover, .menu-bar-item.is-active, .selector-website:hover,
    .menu-bar-link:hover, .footer-site-link-inner-container a:hover,
    .footer-location a:hover, .footer-legal-links a:hover,
    .footer-site-link-list a:hover, .footer-link-logo:hover,
    .submenu-item:hover, .equiv-menu.is-open, .equiv-menu:hover,
    .mobile-accordion-title:hover, .content-text-container a:hover,
    .submenu-wrapper.is-mobile-menu .submenu-panel.is-expanded .mobile-accordion-title,
    .document-comment p a:hover, .menu-bar-link-container:hover,
    .menu-bar-link-container:hover svg,
    .menu-bar-link-container:hover .menu-bar-link,
    .selector-website-wrapper:hover .selector-website,
    .selector-website-wrapper:focus-within .selector-website,
    .selector-website-wrapper:hover .selector-chevron,
    .selector-website-wrapper:focus-within .selector-chevron, .form-check-label a:hover {
        color: var(--color-3);
    }
    abbr {
        text-decoration: underline dotted white;
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }
    abbr:hover {
        text-decoration: underline dotted var(--color-3);
        text-decoration-thickness: 2px;
        text-underline-offset: 6px;
    }
    input[type="submit"] {
        background-color: #999999;
        border: 3px solid #999999;
        color: black;
    }
    input[type="reset"] {
        border: 3px solid #999999;
        color: #F2F2F2;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        border-bottom: 2px solid #999999;
        color: white;
    }
    .submenu-text-container ul li,
    .submenu-wrapper.is-mobile-menu .submenu-panel:first-of-type {
        border-top: 1px solid #999999;
    }
    .submenu-text-container ul li:last-child,
    .submenu-wrapper.is-mobile-menu .submenu-panel,
    .document-group {
        border-bottom: 1px solid #999999;
    }
    .mobile-accordion-toggle::after {
        background-color: #999999;
    }
    .document-group a:hover {
        border-color: var(--color-2);
    }
    .content-text-container hr {
        border: none;
        border-top: 0.5px solid #999999;
    }
    altcha-widget {
        --altcha-color-base: #252525;
    }
}