*,
p,
h1,
h2 {
    margin: 0;
    padding: 0;
    margin-block-end: 0;
    margin-block-start: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-sizing: border-box;
}
body {
    background: var(--Black, #090A0A);
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
iframe {
    width: 100%;
    height: 600px;
    border: 0;
    overscroll-behavior: none;
}

/* burger */
.hide-desktop {
    display: none;
}
.burger {
    cursor: pointer;
    width: 50px;
    padding: 6px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    display: none;
}
.burger-item {
    height: 2px;
    align-self: stretch;
    border-radius: 2px;
    background: #fff;
}
.header .desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header .mobile {
    display: none;
}
@media screen and (max-width: 768px) {
    .header .desktop {
        display: none;
    }
    .header .mobile {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        position: relative;
        right: 0;
    }
    .header .header-nav_item {
        min-width: 80px;
        text-align: right;
    }
    .header .mobile .mobile-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .header .mobile {
        display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        overflow: hidden;
        position: relative;
        right: 0px;
    }
    .header .mobile .header-nav {
        position: absolute;
        display: none;
    }
    .header .mobile.active .header-nav {
        position: relative;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .header .mobile.active {
        left: 0;
        overflow: visible;
    }
    .header .mobile.active .burger-item:nth-child(2) {
        display: none;
    }
    .header .mobile.active .burger-item:first-child {
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        position: relative;
        top: 8px;
    }
    .header .mobile.active .burger-item:last-child {
        -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(-225deg);
        position: relative;
        top: 0px;
    }
    .hide-desktop {
        display: block;
    }
    .burger {
        display: flex;
    }
}
/* burger */

/* cookie and age popup */
.age-popup,
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 10px;
    background: var(--Back, #020005);
    max-width: 540px;
}
.age-popup.hide,
.cookie-popup.hide {
    left: -2000px;
}
.age-popup_description,
.cookie-popup_description {
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}
.age-popup_buttons,
.cookie-popup_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}
.age-popup_title,
.cookie-popup_title {
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
}
.age-popup_buttons .accept,
.cookie-popup_buttons .accept {
    width: 100%;
    display: flex;
    padding: 10px 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    border: 1px solid var(--Red, #E47200);
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--Orange, #F80);
    cursor: pointer;
}
.age-popup_buttons .more,
.cookie-popup_buttons .more {
    text-decoration: none;
    width: 100%;
    display: flex;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background: var(--Red, linear-gradient(180deg, #E47200 0%, #F91D1D 100%));
    color: #FFF;
    text-align: center;
    font-family: Tomorrow, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    text-transform: uppercase;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .age-popup_buttons,
    .cookie-popup_buttons {
        flex-direction: column;
    }

}
/* cookie and age popup */

/* terms, cookie, policy, gambling */
.terms {
    padding: 20px;
    color: white;
    line-height: 1.5em;
    font-family: Tomorrow, sans-serif;
    font-size: 12px;
}
.terms h1 {
    font-size: 18px;
    margin: 10px 0;
}
.terms h2 {
    font-size: 16px;
    margin: 10px 0 ;
}
.terms ul {
    margin: 10px;
}
/* terms, cookie, policy, gambling */

/* form */
.form-answer {
    color: red;
    font-size: 20px;
}
/* end form */

.header {
    width: 100%;
}
.header .container {
    width: 100%;
    display: flex;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 80px;
}
.header-nav_item {

}
.header-nav_item a {
    color: #FCFCFC;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-nav_item a:hover {
    color: #D4AF36;
}
.header-logo {
    height: 36px;
}

/* header */
/* hero */
.hero-wrapper {
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 100%), linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.71) 18.75%, rgba(0, 0, 0, 0.00) 47.12%, rgba(0, 0, 0, 0.68) 96.63%), url('./assets/spinkracher-hero-background.webp') lightgray 0px -0.004px / 100% 116.83% no-repeat;
    background-size: cover;
    background-position: top;
}
.hero {
    width: 100%;
}
.hero .container {
    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.hero-title {
    color: #FCFCFC;
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hero-title span {
    color: #D4AF36;
}
.hero-description {
    color: #FCFCFC;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    flex-direction: row;;
    margin-top: 30px;
}
.hero-buttons_full {
    display: flex;
    width: 150px;
    height: 50px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    color: #0A0A0A;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    border-radius: 6px;
    background: #D4AF36;
    cursor: pointer;
    outline: 0;
    border: 0;
}
.hero-buttons_outline {
    display: flex;
    width: 200px;
    height: 50px;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #D4AF36;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    background: transparent;
    border-radius: 4px;
    border: 2px solid #D4AF36;
    outline: 0;
    cursor: pointer;
}

.hotels {
    background: white;
}
.hotels .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.hotels-title {
    color: #0A0A0A;
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    width: 100%;
}
.hotels-description {
    color:  #0A0A0A;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.hotels-items {
    display: flex;
    padding: 10px 10px;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
}
.hotels-items_item {
    display: flex;
    max-width: 393px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    background:  #FCFCFC;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

.hotels-items_item-main-img {
    width: 100%;
}
.hotels-items_item-content {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
.hotels-item_title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    align-self: stretch;
}
.hotels-item_title p {
    color:#0A0A0A;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}
.hotels-item_description {
    color: #626262;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hotels-items_title-rating {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    align-self: stretch;
}
.hotels-items_title-rating img {
    max-width: 18px;
}
.hotels-items_title-rating span {
    color: #626262;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hotels-item_keys {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}
.hotels-item_keys  span {
    display: flex;
    height: 25px;
    padding: 2px 4px;
    align-items: center;
    color: #0A0A0A;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.hotels-item_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.hotels-item_footer-price {
    color: #800020;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.hotels-item_footer-price span {
    color: #626262;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.hotels-item_footer-action {
    display: flex;
    width: 105px;
    height: 40px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 6px;
    background: #D4AF36;
    color: #0A0A0A;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}

.about {
    background: #fff;
}
.about .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}
.about-title {
    color: #0A0A0A;
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.about-title span {
    color: #800020;
}
.about-description {
    color: #0A0A0A;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 90px;
    align-self: stretch;
}
.about-content_img {
    border-radius: 10px;
    width: 500px;
    min-width: 500px;
    height: 280px;
    flex: 0 1 500px;
    background-image: url(./assets/spinkracher-spinkrachel.webp);
    background-repeat: no-repeat;
    background-size: 100%;
}
.about-content_text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}
.about-content_text-title {
    color: #0A0A0A;
    font-family: Cinzel, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.about-content_text-description {
    color:  #0A0A0A;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 20.8px */
}
.benefits {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.80) 100%), url('./assets/spinkracher-assergewohnliche.webp') lightgray 0px -0.14px / 100% 118.316% no-repeat;
}
.benefits .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
.benefits-title {
    color: #FCFCFC;
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    width: 100%;
}
.benefits-title span {
    color: #D4AF36;
}
.benefits-description {
    color: #FCFCFC;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.benefits-content {
    display: flex;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    row-gap: 48px;
    column-gap: 10px;
    align-self: stretch;
    flex-wrap: wrap;
}
.benefits-content_item {
    display: flex;
    max-width: 391px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--black, #0A0A0A);
    min-height: 210px;
}
.benefits-content_item-icon {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.benefits-content_item-icon.essen {
    background-image: url('./assets/spinkracher-icon-essen.webp');
}
.benefits-content_item-icon.cash {
    background-image: url('./assets/spinkracher-icon-cash.webp');
}
.benefits-content_item-icon.pools {
    background-image: url('./assets/spinkracher-icon-pools.webp');
}
.benefits-content_item-icon.fitness {
    background-image: url('./assets/spinkracher-icon-fitness.webp');
}
.benefits-content_item-icon.unterhaltung {
    background-image: url('./assets/spinkracher-icon-unterhaltung.webp');
}
.benefits-content_item-icon.bar {
    background-image: url('./assets/spinkracher-icon-bar.webp');
}

.benefits-content_item-title {
    color:#FCFCFC;
    text-align: center;
    font-family: Manrope,sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.benefits-content_item-description {
    color: #FCFCFC;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.contact {
    background: #fff;
}
.contact .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    align-self: stretch;
}
.contact-title {
    color: #0A0A0A;
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.contact-title span {
    color: #800020;
}
.contact-description {
    color: #0A0A0A;
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.contact-form {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    width: 100%;
}
.contact-form-info {
    display: flex;
    max-width: 460px;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border-radius: 10px 0px 0px 10px;
    background: #800020;
}
.contact-form-info_title {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
}
.contact-form-info-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
}
.contact-form-info-content_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
.contact-form-info-content_item-icon {
    width: 24px;
    height: 24px;
}
.contact-form-info-content_item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.contact-form-info-content_item-text-title {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 18.2px */
}
.contact-form-info-content_item-text-description {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
}
.contact-form-info-content_item-text-description a {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    text-decoration: none;
}
.contact-form-info_address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
.contact-form-info_address-title {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 20.8px */
    margin-bottom: 10px;
}
.contact-form-form {
    display: flex;
    width: 100%;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.contact-form-form-item_wrapper {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    gap: 10px 20px;
    align-self: stretch;
}
.contact-form-form-item {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.contact-form-form_title {
    text-align: left;
    width: 100%;
    color: var(--black, #0A0A0A);
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Static-Title-Large-Line-Height, 28px); /* 116.667% */
    text-transform: capitalize;
}
.contact-form-form-item label {
    color: var(--black, #0A0A0A);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: var(--Static-Title-Large-Line-Height, 28px); /* 200% */
    text-transform: capitalize;
}
.contact-form-form-item select,
.contact-form-form-item textarea,
.contact-form-form-item input {
    width: 100%;
    display: flex;
    height: 50px;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    color: #9CA3AF;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    border: 1px solid #D1D5DB;
    background: transparent;
}
.contact-form-form-item textarea {
    height: 220px;
}
.contact-form-form-item_button {
    border: 0;
    outline: 0;
    border-radius: 6px;
    background: #800020;
    display: flex;
    height: 50px;
    padding: 4px 10px;
    justify-content: center;
    align-items: center;
    gap: 9px;
    align-self: stretch;
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    cursor: pointer;
}
.footer {

}
.footer .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    align-self: stretch;
}
.footer .container:last-child {
    margin-top: 0;
    padding-top: 0;
}
.footer-main {
    display: flex;
    max-width: 420px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.footer-main_logo {
    height: 40px;
}
.footer-main_description {
    color: #FCFCFC;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-main_description a {
    color: #FCFCFC;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
}
.footer-cookie {
    margin: 20px 0;
}
.footer-cookie,
.footer-cookie a,
.footer-18,
.footer-main_copy {
    color: rgba(255, 255, 255, 0.70);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-cookie a {
    text-decoration: underline;
}
.footer-main_partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}
.footer-main_partners-18 {
    width: 60px;
    height: 60px;
    background-image: url("./assets/spinkracher-icon-18.webp");
    background-repeat: no-repeat;
    background-size: 100%;
}
.footer-main_partners img {
    height: 40px;
}
.footer-main_partners img.small {
    height: 28px;
}
.footer-main_partners a {

}
.footer-nav {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 660px;
}
.footer-nav_item {

}
.footer-nav_item.small {
    max-width: 200px;
}
.footer-nav_item-title {
    color: #FCFCFC;
    font-family: Cinzel, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.footer-nav_item-description {
    color: #FCFCFC;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-nav_item ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
.footer-nav_item li {

}
.footer-nav_item li a {
    color: #FCFCFC;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.footer-nav_item-form-wrapper  {
    display: flex;
    padding: 10px 10px 8px 10px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--white, #FCFCFC);
    margin-top: 10px;
}
.footer-nav_item-form input {
    border: 0;
    outline: 0;
    color: #101827;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 150px;
}
.footer-nav_item-form button {
    height: 22px;
    min-width: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    background-image: url(./assets/submit-button.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
.footer-nav_item-form .form-answer {
    margin-top: 10px;
}
.zimmer-wrapper .header {
    background: #010C1F;
}
.zimmer-wrapper .contact {
    background: #010C1F;
}
.zimmer-wrapper .contact-form-form-item label,
.zimmer-wrapper .contact-form-form_title,
.zimmer-wrapper .contact-description,
.zimmer-wrapper .contact-title {
    color: var(--white, #FCFCFC);
}
.zimmer {
    background: #010C1F;
}
.zimmer .container {
    display: flex;
    padding: 50px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.zimmer-title {
    color: var(--white, #FCFCFC);
    text-align: center;
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    width: 100%;
}
.zimmer-description {
    color: var(--white, #FCFCFC);
    text-align: center;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 31.2px */
    width: 100%;
}
.zimmer-content {
    display: flex;
    padding: 0px;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-top: 30px;
}
.zimmer-content_text {
    display: flex;
    max-width: 586px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}
.zimmer-content_image {
    max-width: 591px;
    height: auto;
    width: 100%;
    aspect-ratio: 591/292;
    border-radius: 10px;
}
.zimmer-content_text-title {
    color: var(--white, #FCFCFC);
    font-family: Cinzel, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.zimmer-content_text-description {
    color: var(--white, #FCFCFC);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media screen and (max-width: 1280px) {
    .benefits-content_item {
        max-width: 300px;
    }
    .hotels-items_item {
        max-width: 320px;
    }
    .hotels-items {
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }
    .hotels-item_keys {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 1024px) {
    .zimmer .container {
        padding: 20px;
    }
    .zimmer-content {
        flex-direction: column;
    }
    .zimmer-content_text,
    .zimmer-content_image {
        max-width: 100%;
    }
    .benefits-content_item {
        justify-content: flex-start;
        width: calc(50% - 20px);
        max-width: 100%;
        height: 270px;
    }

    .about-content {
        flex-direction: column;
        gap: 10px;
    }
    .about-content_img {
        order: 2;
        border-radius: 10px;
        width: 100%;
        min-width: 100%;
        height: 200px;
        object-fit: contain;
        flex: 0 1 auto;
        background-position: center;
    }
    .about-content_text {
        order: 1;
    }
    .about-content_text-title {
        display: none;
    }
    .hotels-items {
        flex-direction: column;
    }
    .hotels-items_item {
        max-width: 100%;
    }
    .footer .container {
        flex-direction: column;
    }
    .footer-nav {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .zimmer-title {
        color: var(--white, #FCFCFC);
        font-family: Cinzel, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .zimmer-content {
        margin-top: 0;
    }
    .zimmer-content_text-description {
        color: var(--white, #FCFCFC);
        font-family: Manrope, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    .zimmer-description,
    .zimmer-content_text-title {
        display: none;
    }
    .contact .container {
        padding: 20px;
        gap: 10px;
    }
    .contact-title {
        color: var(--black, #0A0A0A);
        font-family: Cinzel, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        width: 100%;
        text-align: left;
    }
    .contact-description {
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 18.2px */
        width: 100%;
        text-align: left;
    }
    .contact-form {
        flex-direction: column;
        border-radius: 0;
    }
    .contact-form-info {
        max-width: 100%;
        border-radius: 0;
    }
    .contact-form-info_title {
        text-align: left;
        width: 100%;
    }
    .benefits-content_item {
        justify-content: flex-start;
        width: calc(50% - 20px);
        height: 270px;
    }
    .hero-title {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-align: left;
        width: 100%;
    }
    .hero-title span {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .hero-description {
        color: var(--white, #FCFCFC);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 18.2px */
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }
    .hero-buttons_full {
        display: flex;
        width: 146px;
        height: 50px;
        padding: 4px 10px;
        justify-content: center;
        align-items: center;
        gap: 9px;
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
    }
    .hero-buttons_outline {
        display: flex;
        width: 160px;
        height: 50px;
        padding: 10px 0px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: #D4AF36;
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: capitalize;
    }

    .hotels-title{
        width: 100%;
        text-align: left;
        color: var(--black, #0A0A0A);
        font-family: Cinzel, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .hotels-description {
        width: 100%;
        text-align: left;
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 18.2px */
    }

    .hotels .container {
        padding: 20px;
    }
    .about .container {
        padding: 20px;
        gap: 10px;
    }
    .about-title {
        width: 100%;
        text-align: left;
        color: var(--black, #0A0A0A);
        font-family: Cinzel, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .about-description {
        width: 100%;
        text-align: left;
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 18.2px */
    }


    .about-content_text-description {
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%; /* 18.2px */
    }
    .benefits-title {
        color: var(--white, #FCFCFC);
        font-family: Cinzel, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        width: 100%;
        text-align: left;
    }
    .benefits-description {
        color: var(--white, #FCFCFC);
        font-family: Manrope, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 18.2px */
        width: 100%;
        text-align: left;
    }
    .benefits-content_item-title {
        color: var(--white, #FCFCFC);
        text-align: center;
        font-family: Manrope, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .benefits-content_item-description {
        color: var(--white, #FCFCFC);
        text-align: center;
        font-family: Manrope, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .benefits-content {

    }
    .contact-form-form_title {
        color: var(--black, #0A0A0A);
        font-family: Manrope, sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: var(--Static-Title-Large-Line-Height, 28px); /* 116.667% */
        text-transform: capitalize;
        width: 100%;
        text-align: left;
    }
    .contact-form-form-item_wrapper {
        flex-direction: column;
    }



}
@media screen and (max-width: 560px) {
    .benefits-content_item {
        justify-content: flex-start;
        width: 100%;
        height: auto;
    }
    .benefits-content {
        justify-content: center;
    }
    .footer-main_partners {
        order: 1;
    }
    .footer-main_description {
        order: 2;
    }
    .footer-main_copy {
        order: 3;
    }
    .footer-nav_item.small,
    .footer-nav_item {
        max-width: 100%;
        width: 100%;
        margin-top: 20px;
    }
    .footer-nav_item-form {
        margin-top: 20px;
    }
    .footer-nav_item-form input {
        width: 100%;
        max-width: 100%;
    }
    .footer-nav_item {
        margin-top: 20px;
    }
    .footer-main_partners,
    .footer-nav {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width:355px) {
    .hero-buttons_outline {
        font-size: 12px;
    }
}

.form-answer {
    display: none;
}

.form-answer.active {
    padding: 10px 10px;
    display: flex;
}