* {
    font-family: "Playfair", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    padding: 0;
}

html {
    font-family: "Playfair", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
    width: 100%;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
}

main {
    position: relative;
    display: block;
    width: 100%;
    z-index: 0;
}

img {
    max-width: 100%;
}

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

h1 {
    font-size: 32px;
    line-height: 43px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h3 {
    font-size: 24px;
    font-weight: 800;
}

p,
li {
    font-family: "Hind", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
}

p {
    margin-bottom: 20px;
}

p strong {
    font-family: "Hind", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 32px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

/*

============ NAV ============

*/

header {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 999;
    background: #fff;
}

nav {
    position: relative;
    width: 90%;
    max-width: 1600px;
    margin: 50px auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.tiny-nav {
    margin: 10px auto;
}

.logo {
    width: 180px;
    min-width: 100px;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.tiny-logo {
    width: 100px;
    min-width: 100px;
}

.menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: end;
}

.nav-link {
    position: relative;
    padding: 0;
    margin: 0 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid transparent;
    -webkit-transition: border 200ms ease, color 200ms ease;
    transition: border 200ms ease, color 200ms ease;
}

.ot {
    color: #D9A700;
    border: 1px solid #D9A700;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
}

.nav-link a {
    text-decoration: none;
    font-size: 18px;
    line-height: 40px;
    padding: 5px 0px;
}

.nav-link:hover a {
    color: #D9A700;
}

.nav-link-current:hover a {
    color: #333;
}

.ot a {
    padding: 5px 15px;
}

.ot:hover {
    background: rgba(217, 166, 0, 0.1);
}

.nav-link-current {
    border-bottom: 1px solid #333;
}

.dropdown-trigger {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 30px;
    left: -30px;
    padding-top: 0px;
    -webkit-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
}

.dropdown-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    align-items: start;
    width: auto;
    padding: 10px 30px;
    background: #fff;
}

.dropdown-list a {
    color: #333 !important;
    white-space: nowrap;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
}

.dropdown-list a:hover {
    color: #D9A700 !important;
}

.dropdown-list-open {
    opacity: 1;
    height: auto;
    padding-top: 10px;
}

.dropdown-list>.nav-link-current {
    color: #D9A700 !important;
    border-bottom: none !important;
}

.dropdown-list>.nav-link-current:hover {
    color: #D9A700 !important;
    border-bottom: none !important;

}

.mobile-menu {
    display: none;
}

/*

============ START ============

*/

.landing {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 250px;
}

.turm {
    position: fixed;
    left: 5%;
    bottom: -100px;
    height: calc(100vh - 100px);
    width: 150px;
    opacity: .04;
    background-image: url("../img/turm.jpg");
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.slider {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 960px;
    margin-bottom: 150px;
}

.carousel-indicators {
    margin-bottom: 5px;
}

.carousel-indicators li {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #DDDDDD;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #D9A700;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
    opacity: .7;
}

.carousel-control-prev-icon {
    background-image: url('../img/c-prev.svg');
}

.carousel-control-next-icon {
    background-image: url('../img/c-next.svg');
}

.arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
    cursor: pointer;
}

.arrow img {
    -webkit-transition: -webkit-transform 200ms ease;
    transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.arrow:hover img {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
}

.section {
    padding-bottom: 80px;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.text-centered {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    margin-bottom: 260px;
    text-align: center;
}

.text-centered-2 {
    margin-bottom: 80px;
}

.text-centered-3 {
    margin-bottom: 120px;
}

.welcome {
    margin: auto;
    margin-bottom: 45px;
}

.seperator {
    width: 130px;
    height: 1px;
    background: #333;
    margin: auto;
    margin-bottom: 45px;
}

.seperator-text {
    margin: 20px;
    margin-left: 0;
}

.seperator3 {
    width: 50px;
}

.cta {
    display: inline-block;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid #333;
    text-align: center;
    text-indent: 2px;
    margin-top: 10px;
    cursor: pointer;
    background: #fff;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
}

.cta a,
.cta p,
.cta-submit {
    line-height: 40px;
    padding: 7px 15px;
    margin: 0;
}

.cta p {
    margin-bottom: -2px;
}

.cta:hover {
    background: rgba(51, 51, 51, 0.1);
}

.cta-big {
    display: inline-block;
    color: #D9A700;
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid #D9A700;
    padding: 7px 15px;
    text-align: center;
    text-indent: 4px;
    margin-top: 45px;
    cursor: pointer;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
}

.cta-big:hover {
    background: rgba(217, 166, 0, 0.1);
}

.tile {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 200px;
}

.tile-text {
    width: 60%;
    max-width: 700px;
}

.tile-img {
    width: 40%;
    min-width: 300px;
}

.tile-padding-left {
    padding-left: 60px;
}

.tile-padding-right {
    padding-right: 60px;
}

.text-link {
    font-family: "Hind", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: underline;
}

.text-link:hover {
    text-decoration: none;
}

/*

============ HOTEL ============

*/

.tile-img-vert {
    height: 650px;
}

.tile-img-s {
    width: 30%;
    max-width: 300px;
}

.tile-l {
    -webkit-box-pack: start;
    justify-content: start;
}

.separator-h1 {
    margin-top: 10px;
    margin-bottom: 30px;
}

.cta-block-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    align-items: start;
}

.cta-block {
    display: block;
    margin: 10px 0;
}

.tile-img-slider {
    width: 50%;
}

.cta-big-lm {
    margin-top: 10px;
}

.mobile-tile {
    display: none;
}

.welcome2 {
    margin-bottom: 10px;
}

.kleingedruckt {
    font-size: 14px;
    line-height: 20px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: url("../img/map.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.fake-map {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.map {
    display: none;
    height: 100%;
    width: 100%;
}

.hide-fake-map {
    display: none;
}

.show-map {
    display: block;
}

.form-wrapper {
    position: relative;
    width: 90%;
    max-width: 960px;
    margin: auto;
    margin-bottom: 100px;
}

form {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.form-section {
    width: 100%;
    max-width: 680px;
}

form input,
form textarea {
    width: 100%;
}

#name,
#email,
#anschrift {
    position: relative;
    margin-top: 40px;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid #333;
}

#anschrift {
    margin-bottom: 50px;
}

#text {
    position: relative;
    margin-top: -8px;
    padding: 8px;
    border: 1px solid #333;
}

#name,
#email,
#anschrift,
#text,
form label,
form p {
    font-family: "Hind", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 300;
    color: #333;
    -webkit-transition: all 270ms ease-in-out;
    transition: all 270ms ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

::-webkit-input-placeholder {
    color: #333;
    -webkit-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

::-ms-input-placeholder {
    color: #333;
    -webkit-transition: all 170ms ease-in-out;
    -ms-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

::-moz-placeholder {
    color: #333 !important;
    -webkit-transition: all 170ms ease-in-out;
    -moz-transition: all 170ms ease-in-out;
    transition: all 170ms ease-in-out;
}

input:focus::-webkit-input-placeholder {
    color: #D9A700;
}

input:focus::-moz-placeholder {
    color: #D9A700;
}

input:focus:-ms-input-placeholder {
    color: #D9A700;
}

input:focus:-moz-placeholder {
    color: #D9A700;
}

#name:focus,
#email:focus,
#anschrift:focus,
#text:focus {
    border-color: #D9A700;
}

.form-section button {
    margin-top: 30px;
}

.form-section:last-child {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding-bottom: 70px;
    -webkit-box-align: start;
    align-items: flex-start;
}

.data-section {
    margin-top: 30px;
    padding-left: 25px;
}

#data-checkbox-wrapper {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

#data-checkbox-wrapper input {
    display: none;
}

#data-checkbox-wrapper label {
    font-size: 14px;
    max-width: 500px;
    cursor: pointer;
}

input[type="checkbox"]+label::before {
    position: absolute;
    left: -24px;
    top: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid #333;
    background-color: #fff;
    display: block;
    content: "";
    margin-right: 5px;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}

input[type="checkbox"]:checked+label::before {
    box-shadow: inset 0px 0px 0px 2px #fff;
    background-color: #333;
    border: 1px solid #333;
}

/* required style */
.ohnohoney{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

pre {
    background-color: #f1f1f1;
    margin-bottom: 20px;
    max-width: 600px;
    padding: 12px;
}

/*

============ FOOTER ============

*/

footer {
    position: relative;
    width: 100%;
    background: #333;
    z-index: 1;
    padding: 120px 0;
}

footer p {
    font-size: 16px;
    line-height: 32px;
    font-family: "Playfair", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #fff;
    margin: 0;
}

footer a:hover {
    text-decoration: underline;
}

.tts {
    text-transform: none;
}

.footer-top {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-top-content {
    width: 70%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly;
}

.footer-top-logo {
    width: 30%;
}

.footer-top-logo a {
    display: block;
    width: 180px;
}

.footer-top-logo a img {
    max-width: 100%;
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.footer-top-content p {
    text-transform: uppercase;
}

.footer-top-content p strong {
    font-family: "Playfair", Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.footer-bot-imprint {
    text-align: right;
}

.footer-bot-imprint p {
    display: inline-block;
}

.impreesum {
    width: 100%;
}

.impressum-text {
    width: 100%;
}

.buchen-wrapper {
    margin: auto;
}


/*

============ QUERIES ============

*/

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 24px;
        line-height: 38px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    li {
        font-size: 16px;
        line-height: 26px;
    }

    nav {
        margin: 10px auto;
    }

    .section {
        padding-bottom: 20px;
    }

    .logo {
        width: 100px;
        min-width: 100px;
        -webkit-transition: all 400ms ease;
        transition: all 400ms ease;
    }

    .menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .burger {
        position: relative;
        width: 24px;
        height: 24px;
        cursor: pointer;
    }

    .dn {
        display: none;
    }

    .mobile-menu-container {
        position: absolute;
        top: 64px;
        right: 0;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        align-items: flex-end;
        max-height: calc(100vh - 120px);
        padding: 20px 50px;
        background: #fff;
        overflow: auto;
        box-shadow: 0px 5px 7px -2px rgba(0, 0, 0, 0.15);
    }

    .mmo {
        display: -webkit-box;
        display: flex;
    }

    .nav-link {
        margin: 0;
        margin-bottom: 20px;
    }

    .mobile-menu-container .nav-link {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: end;
        align-items: flex-end;
    }

    .nav-link a {
        display: block;
        font-size: 16px;
        line-height: 26px;
        text-align: right;
    }

    .nav-link:hover a {
        color: #333;
    }

    .ot {
        margin-top: 20px;
    }

    .ot:hover {
        background: none;
    }

    .ot:hover a {
        color: #D9A700;
    }

    .submenu {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: end;
        align-items: flex-end;
    }

    .landing {
        padding-top: 180px;
    }

    .slider {
        max-width: 600px;
        margin-bottom: 100px;
    }

    .map-container {
        max-width: unset;
    }

    .container {
        width: 90%;
        max-width: 860px;
    }

    .text-centered {
        max-width: 600px;
        margin-bottom: 160px;
    }

    .text-centered-2 {
        margin-bottom: 50px;
    }

    .cta {
        font-size: 16px;
    }

    .cta-big {
        margin-top: 30px;
    }

    .cta-big-lm {
        margin-top: 10px;
    }

    .tile {
        margin-bottom: 100px;
    }

    .tile-img {
        width: 50%;
    }

    footer {
        padding: 80px 0;
    }

    footer p {
        font-size: 14px;
        line-height: 25px;
    }

    .footer-top-logo a {
        width: 130px;
    }

    .footer-top-content {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {

    .tile-img-slider {
        margin-top: 74px;
    }

    .map-wrapper {
        height: 400px;
    }

    #name {
        margin-top: 0;
    }

    footer {
        padding: 40px 0;
    }

    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }

    .footer-top-logo {
        width: 100%;
    }

    .footer-top-logo a {
        margin-left: auto;
        margin-right: 0;
    }

    .footer-top-content {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 450px) {

    h1 {
        font-size: 20px;
        line-height: 32px;
    }

    .burger {
        width: 20px;
        height: 20px;
    }

    .mobile-menu-container {
        left: 0;
        box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.2);
    }

    .nav-link a {
        text-align: center;
    }

    .ot {
        margin-top: 0;
    }

    .landing {
        padding-top: 120px;
    }

    .turm {
        opacity: .03;
    }

    .slider {
        margin-bottom: 50px;
    }

    .welcome {
        margin-bottom: 25px;
    }

    .welcome2 {
        margin-bottom: 10px;
    }

    .welcome p {
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .seperator {
        margin-top: 10px;
        margin-bottom: 30px;
    }

    .seperator2 {
        width: 70px;
    }

    .tile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }

    .tile-text {
        width: 100%;
    }

    .tile-text p {
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .tile-img {
        display: none;
    }

    .tile-dum>.tile-img {
        display: block;
        margin: auto;
        margin-top: 30px;
        width: 100%;
        max-width: 250px;
        min-width: unset;
    }

    .tile-img-slider {
        display: block;
        width: 100%;
        margin-top: 50px;
    }

    .tile-padding-left,
    .tile-padding-right {
        padding: 0;
    }

    .desktop-tile {
        display: none;
    }

    .mobile-tile {
        display: -webkit-box;
        display: flex;
    }

    .map-wrapper {
        width: 100%;
        max-width: 270px;
        height: 300px;
        margin: auto;
        margin-bottom: 100px;
    }

    .fake-map {
        width: 95%;
        top: 10px;
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }

    footer {
        padding: 60px 0;
    }

    .footer-top-logo a {
        margin: auto;
    }

    .footer-top-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
        text-align: center;
    }

    .footer-top-content-box {
        margin-bottom: 50px;
    }

    .footer-bot-imprint {
        text-align: center;
    }
}

/* Hide booking part */
#d21-quickbook {
    display: none;
}

*:has(> .d21-trigger-ibe) {
    display: none;
}