:root {
    --back-color: #f4f4f4;
    --front-color: #333;
    --front-color-2: #432682;
    --front-color-3: #EA5E5B;
    --color-var-1: #C90E19;
    --color-var-1-fg: #fff;
    --color-var-2: #031746;
    --color-var-2-d: #15388F;
    --color-var-2-fg: #fff;
    --color-var-2-right-gradient: linear-gradient(90deg, var(--color-var-2) 0%, var(--color-var-2-d) 100%);
}
html {
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: inherit;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: var(--back-color);
    color: var(--front-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > footer {
    margin-top: auto;
}
body.modal-open {
    overflow: hidden;
}
section {
    width: 100%;
}
section::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(
            to right,
            var(--color-var-1) 0%,
            var(--color-var-1) 20%,
            var(--color-var-2) 100%
    );
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
}
.warning-noscript {
    width: 100%;
    background-color: #ffeaab;
    color: #1b190c;
    padding: 10px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e2d58c;
    text-align: center;
    font-size: 15px;
    user-select: none;
    cursor: default;
}
.warning-noscript strong {
    margin-bottom: 5px;
    display: inline-block;
}
.no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}
.error-title {
    width: 100%;
    text-align: center;
    margin-top: 70px;
    font-weight: bold;
    font-size: 24px;
    color: var(--front-color-2);
}
.error-code {
    width: 100%;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    text-shadow: 0 0 5px #ccc;
    color: var(--front-color-3);
}
.error-message {
    width: 100%;
    margin-top: 20px;
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--front-color-2);
}
.error-return {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: var(--color-var-2);
    color: var(--color-var-2-fg);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
    transition: background-color .3s ease;
}
.error-return:hover {
    background-color: var(--color-var-1);
}

.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.content-wrapper-two-columns {
    margin: 0 auto;
    max-width: 960px;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    gap: 20px;
    flex-direction: row;
}
/* content-wrapper h1, h2, h3, h4, h5, h6 */
.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
    margin-bottom: 20px;
}
.contact-wrapper {
    width: 100%;
    background-color: var(--color-var-1);
    color: var(--color-var-1-fg);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.contact-wrapper form {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
}
.contact-wrapper h2 {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}
.contact-wrapper .contact-wrapper-button {
    color: var(--color-var-1-fg);
    background-color: var(--color-var-1);
    border: 1px solid var(--color-var-1-fg);
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s ease;
}
.contact-wrapper .contact-wrapper-button:hover {
    background-color: var(--color-var-1-fg);
    color: var(--color-var-1);
}
.contact-wrapper .content-wrapper {
    margin: unset;
    max-width: 480px;
    word-break: break-word;
}
.floating-group {
    position: relative;
    margin-bottom: 0;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 10px;
    margin-bottom: 12px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    resize: none;
}

.floating-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #777;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease;
    padding: 0 4px;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 6px;
    font-size: 12px;
    color: #000;
    background-color: var(--color-var-1-fg);
    border-radius: 4px;
}

.field-required-star {
    color: red;
}
.contact-wrapper .content-wrapper {
    padding: unset;
}
.contact-wrapper .content-wrapper a {
    color: var(--color-var-1-fg);
    text-decoration: underline;
}
.contact-table {
    width: 100%;
    border-collapse: collapse;
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px 10px;
    font-size: 14px;
}
.contact-table div {
    color: var(--color-var-1-fg);
    text-align: center;
}
.contact-table #map {
    color: #000000;
    grid-column: 1 / -1;
}
#map {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    color: black;
    margin: 20px 5px 0;
}
#map div {
    color: #000000;
}
#map a {
    color: #000000;
    text-decoration: none;
}
.leaflet-popup-content {
    user-select: none;
    cursor: default;
    text-align: center;
}
.contact-table p:nth-child(2n-1) {
    text-align: right;
    color: var(--color-var-1-fg);
    max-width: 220px;
    opacity: 0.6;
}
.contact-table p:nth-child(2n) {
    text-align: left;
    word-break: break-word;
}


.column {
    flex: 1;
}
.column-full {
    flex: 0 0 100%;
}
.column-half {
    flex: 1 1 0;
    min-width: 0;
}

.boxes-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}
.box {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    text-align: center;
    transition: box-shadow .3s ease, background-color .3s ease;
}
.box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    background-color: #f8f8f8;
}
.banner-wrapper {
    width: 100%;
    background: var(--color-var-2-right-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    box-sizing: border-box;
}
.banner-inner-wrapper {
    color: var(--color-var-2-fg);
    width: 100%;
    max-width: 960px;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.banner-headline {
    height: 100%;
    text-align: left;
}
.banner-headline h1 {
    margin: 0 0 10px 0;
    font-size: 32px;
}
.banner-headline p:first-child {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-var-1-fg);
}
.banner-headline p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}
.banner-headline button {
    margin-top: 15px;
    padding: 5px 20px;
    font-size: 14px;
    background-color: unset;
    color: var(--color-var-1-fg);
    border: 2px solid var(--color-var-1);
    border-radius: 23px;
    cursor: pointer;
    transition: background-color .3s ease;
}
.banner-headline button:hover {
    background-color: var(--color-var-1);
}
.banner-points {
    min-width: 200px;
    height: 100%;
}
.banner-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.banner-points ul li {
    margin-bottom: 10px;
    background-color: #ffffff30;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    user-select: none;
    cursor: default;
}
.banner-points ul li b, .banner-points ul li strong {
    display: block;
    font-size: 18px;
    font-weight: 500;
}
.altcha-footer {
    display: none !important;
}
fieldset {
    border: none;
}
altcha-widget {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.altcha {
    width: 100%;
    max-width: unset !important;
    background-color: var(--color-var-1-fg) !important;
    color: var(--color-var-1) !important;
}
.altcha-error {
    color: var(--color-var-1) !important;
    font-weight: bold;
    margin-top: 10px;
}
footer {
    background: var(--color-var-2-right-gradient);
    color: var(--color-var-2-fg);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    box-sizing: border-box;
    font-size: 14px;
    gap: 20px;
}
footer div {
    max-width: 400px;
    width: calc(50% - 10px);
    text-align: right;
}
footer div:first-child {
    text-align: left;
}


@media only screen and (max-width: 619px) {
    .content-wrapper-two-columns {
        flex-direction: column;
    }
    .banner-inner-wrapper {
        flex-direction: column;
    }
    .banner-points {
        width: 100%;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    footer {
        flex-direction: column;
        gap: 5px;
    }
    footer div {
        width: 100%;
        max-width: unset;
        text-align: center;
    }
    footer div:first-child {
        text-align: center;
    }
    #map {
        margin: 20px 5px 30px;
    }
}