*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
}

p,
.p {
    margin-top: 0;
}

img {
    vertical-align: middle;
    border-style: none;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto inherit;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}


textarea {
    overflow: auto;
    resize: vertical;
}


[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.hero-image {
    position: relative;
    width: 100%;
}

.hero-image::after {
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-image img {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.header {
    display: block;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
}

.header-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 18px;
    padding-left: 18px;
    width: 100%;
    max-width: 1440px;
}

.header-box {
    display: flex;
    justify-content: space-between;
}

.header-desc {
    padding-right: 200px;
}

.header-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 8px;
}

.header-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    color: #091133;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-start;
}

.header-social ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 -15px;
    padding: 0;
}

.header-social li {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0 15px;
}

.header-social li img {
    display: block;
    width: 16px;
    height: 16px;
    user-select: none;
    transform-origin: center;
    transition: transform 0.25s;
}

.header-social>img {
    display: block;
    margin-left: 67px;
    width: 55px;
    margin-bottom: -4px;
    margin-right: -4px;
}

.header-social a:hover img {
    transform: scale(1.2);
}

@media (max-width: 1023.98px) {
    .header-desc {
        padding-right: 16px;
    }
}

@media (max-width: 768.98px) {
    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-desc {
        padding-right: 0;
    }

    .header-box {
        flex-wrap: wrap;
    }

    .header-social {
        margin-top: 16px;
        width: 100%;
    }

    .header-social>img {
        margin-left: auto;
    }
}

@media (max-width: 1023.98px) {}

@media (max-width: 768.98px) {}

.checkpoint {
    display: block;
    width: 100%;
}

.checkpoint-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1268px;
}

.checkpoint-title {
    margin: 0 auto;
    margin-top: 30px;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    color: #18191F;
}

.checkpoint-subtitle {
    margin: 0 auto;
    margin-top: 16px;
    font-size: 18px;
    text-align: center;
    color: #18191F;
}

.checkpoint-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 56px auto 0 auto;
    width: 100%;
    max-width: 1122px;
}

.checkpoint-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    flex-grow: 1;
    max-width: 487px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 20px 0px rgba(41, 41, 42, 0.07);
}

.checkpoint-label {
    font-size: 36px;
    font-weight: 500;
    color: #091133;
}

.checkpoint-content {
    font-size: 18px;
    color: #18191F;
}

.checkpoint-content h4 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #18191F;
}

.checkpoint-content p {
    margin: 0;
    margin-bottom: 8px;
}

.checkpoint-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023.98px) {
    .checkpoint-title {
        font-size: 38px;
    }

    .checkpoint-label {
        font-size: 28px;
    }
}

@media (max-width: 768.98px) {
    .checkpoint-title {
        font-size: 32px;
    }

    .checkpoint-subtitle {
        font-size: 16px;
    }

    .checkpoint-label {
        font-size: 24px;
    }

    .checkpoint-item {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.btn {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    letter-spacing: 0;
    border: 0;
    border-radius: 4px;
    padding: 10px;
    transition: background-color 0.15s, box-shadow 0.15s;
}

.btn-primary {
    background-color: #2097F6;
    border-color: #2097F6;
}

.btn-primary:hover {
    background-color: #1679D8;
    border-color: #1679D8;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(22, 121, 216, 0.35);
}

.btn-primary.disabled,
.btn-primary:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.mt-5 {
    margin-top: 32px;
}

.announcement {
    position: relative;
    margin-top: 40px;
    width: 100%;
}

.announcement-img-wrap {
    position: relative;
    width: 100%;
}

.announcement-img-wrap::after {
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.announcement-title {
    padding: 0 16px;
    margin: 0 auto 66px auto;
    max-width: 730px;
    font-size: 38px;
    font-weight: 500;
    line-height: 64px;
    text-align: center;
    color: #18191F;
}

.announcement img {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    min-height: 250px;
    object-fit: cover;
}

@media (max-width: 1023.98px) {
    .announcement-title {
        font-size: 28px;
        line-height: 1.65;
    }
}

@media (max-width: 768.98px) {
    .announcement-title {
        font-size: 24px;
    }
}


.maps {
    display: block;
    margin-top: 56px;
    width: 100%;
}

.maps-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1268px;
}

.maps-title {
    margin: 0 auto;
    font-size: 44px;
    font-weight: 900;
    text-align: center;
    color: #18191F;
}

.maps-subtitle {
    margin: 0 auto;
    margin-top: 16px;
    font-size: 18px;
    text-align: center;
    color: #18191F;
}

.maps-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 28px auto 0 auto;
    width: 100%;
    max-width: 1122px;
}

.maps-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    flex-grow: 1;
    max-width: 487px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 20px 0px rgba(41, 41, 42, 0.07);
}

.maps-item iframe {
    display: block;
    max-width: 100%;
}

.maps-label {
    font-size: 36px;
    font-weight: 500;
    color: #091133;
}

.maps-content {
    font-size: 18px;
    color: #18191F;
}

.maps-content h4 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #18191F;
}

.maps-content p {
    margin: 0;
    margin-bottom: 8px;
}

.maps-content address {
    font-size: 18px;
    font-style: normal;
}

.maps-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023.98px) {
    .maps-title {
        font-size: 38px;
    }

    .maps-label {
        font-size: 28px;
    }
}

@media (max-width: 768.98px) {
    .maps-title {
        font-size: 32px;
    }

    .maps-item {
        padding-left: 16px;
        padding-right: 16px;
    }

    .maps-subtitle {
        font-size: 16px;
    }

    .maps-label {
        font-size: 24px;
    }
}

.footer {
    display: block;
    margin-top: 24px;
    width: 100%;
    max-width: 100%;
    color: #fff;
    padding: 25px 0;
    background-color: #2199F9;
}

.footer-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    max-width: 1268px;
}

.footer-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    margin: 0;
    font-size: 20px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
}

.footer-logo img {
    display: block;
    margin: auto;
    width: 85px;
    height: 67px;
}

@media (max-width: 1023.98px) {}

@media (max-width: 768.98px) {
    .footer-logo {
        margin-left: 28px;
    }
}

@media (max-width: 598.98px) {
    .footer-box {
        flex-direction: column;
    }

    .footer-right {
        width: 100%;
        justify-content: space-between;
    }

    .footer-copyright {
        text-align: center;
        margin-bottom: 12px;
        font-size: 16px;
    }
}

.termin-timing-ober {
    width: 100%;
    margin-top: 30px;
}

.termin-timing-ober h4 {
    text-align: center;
}

.termin-timing-ober p {
    text-align: center;
}


.termin-timing-muhl {
    width: 100%;
    margin-top: 30px;
}

.termin-timing-muhl h4 {
    text-align: center;
}

.termin-timing-muhl p {
    text-align: center;
}
.countDownClock .container {
    padding-left: 20px;
    padding-right: 20px;
    width: auto !important;
}
@media (max-width: 768.98px) {
    .countDownClock .container {
        max-width: 720px !important;
        padding-left: 0;
        padding-right: 0;
        width: auto !important;
    }
}
.countDownClock .container {
    height: 167px;
}