@charset "utf-8";


@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

/*
IPhone Querformat font-size bug
*/
html
{
    -webkit-text-size-adjust: 100% !important;
}

body
{
	margin: 0;
	padding: 0;
    overflow-x: hidden;
	background-color: #fff;
    top: 0 !important;
}

/* Hide google translate banner on top of the screen */
body > .skiptranslate .goog-te-banner-frame
{
    display: none !important;
}

body > .skiptranslate
{
    background-color: transparent !important;
}

*
{
	outline: none;
    box-sizing: border-box;
}

img
{
    /*image-rendering:pixelated;*/
    image-rendering:-webkit-optimize-contrast;
    border-radius:0px;
    height: auto;
}

a img
{
	border: 0px solid;
}
a.art_anchor
{
	width: 0;
	height: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	font-size: 0;
}

a.email > span {
    unicode-bidi: bidi-override;
    direction: rtl;
}

p
{
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
}
.content p
{
	float: none;
}
body .ui-widget { font-size: 11px; }
.sc_only { width: 0px; height: 0px; overflow: hidden; }

.page_c
{
	width: 100%;
	min-width: 850px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 1025px)
{
	.page_c
	{
		min-width: 320px;
	}
	body .ui-widget { font-size: 14px; }
}
@media only screen and (max-width: 650px)
{
	body .ui-widget { font-size: 16px; }
}

.offscreen
{
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
*:focus
{
    outline: none;
}
.focus-visible {
    outline: 2px dotted #CB1D36;
}

/* Accessibility map */
.as_map_c
{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.as_map
{
    height: 28px;
    margin: -250px auto 0 auto;
    display: table;
    table-layout: fixed;
    padding: 3px 25px 14px 10px;;
    background-color: #FFFFFF;
    transition: margin-top 400ms;
    -webkit-transition: margin-top 400ms;
}
.as_map.opened { margin-top: 0; }
.as_map ul { float: left; margin: 0; padding: 0; list-style: none; }
.as_map ul li { float: left; margin: 15px 10px; }
.as_map ul li > *
{
    padding: 5px 15px;
    background-color: #d7cfcc;

    font:400 1.250rem/120% 'Mulish', Arial,sans-serif;
    color: #A2B343;
    text-decoration: none;
    line-height: 20px;
}
.as_map ul li > *:focus { background-color: #FFFFFF; outline: 1px dotted #A2B343; }

/* Head */
.head_c
{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    font: 300 0.938rem/180% "Lato", Arial, sans-serif;
    letter-spacing: 0.1em;
    color: #FFF;
    text-transform: uppercase;
    border-bottom: 1px solid #FFF;
    transition: all ease .5s;
    z-index: 5;
}

body.content_p .head_c,
html.menu_opened .head_c
{
    background-color: #403836;
    border-bottom: none;
}


.head_c .header_left
{
    display: flex;
    align-items: stretch;
}

.head_c .header_left > a
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 37px 15px 36px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid #FFF;
    transition: all ease .5s;
}

body.content_p .head_c .header_left > a,
html.menu_opened .head_c .header_left > a
{
    border-color: #5C6550;
}

.head_c .header_left > a:hover,
.head_c .header_left > a:focus
{
    text-decoration: underline;
}

.head_c .header_left > a:last-child
{
    border-right: none;
}

.head_c #menu_btn
{
    padding-left: 58px;
    padding-right: 30px;
}

.head_c #menu_btn .lines
{
    width: 34px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 23px;
}

.head_c #menu_btn .lines .line
{
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transition: all ease .5s;
}

html.menu_opened .head_c #menu_btn .lines .line:nth-child(2)
{
    opacity: 0;
}

html.menu_opened .head_c #menu_btn .lines .line:nth-child(1)
{
    transform: translateY(10px) rotate(45deg);
}

html.menu_opened .head_c #menu_btn .lines .line:nth-child(3)
{
    transform: translateY(-10px) rotate(-45deg);
}

.head_c .header_right
{
    display: flex;
    align-items: stretch;
}

.head_c .header_right > a
{
    color: inherit;
    text-decoration: none;
    text-transform: none;
    display: flex;
    align-items: center;
    padding: 37px 46px 36px;
    border-left: 1px solid #FFF;
    transition: all ease .5s;
}

body.content_p .head_c .header_right > a,
html.menu_opened .head_c .header_right > a
{
    border-color: #5C6550;
}

.head_c .header_right > a:first-child
{
    border-left: none;
}

.head_c .header_right > a:hover,
.head_c .header_right > a:focus
{
    text-decoration: underline;
}

.head_c .header_right > a img + span
{
    margin-left: 13px;
}

.head_c .header_right .gtranslate_c
{
    display: flex;
    align-items: center;
    padding: 37px 32px 36px;
    border-left: 1px solid #FFF;
    transition: all ease .5s;
    position: relative;
}

body.content_p .head_c .header_right .gtranslate_c,
html.menu_opened .head_c .header_right .gtranslate_c
{
    border-color: #16211C;
}

.head_c .header_right .gtranslate_c .gtranslate_btn
{
    display: inline-block;
    padding-right: 17px;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.head_c .header_right .gtranslate_c .gtranslate_btn::after
{
    content: '';
    position: absolute;
    top: 10px;
    right: 0;
    width: 8px;
    height: 7px;
    background: url(../img/icons/arrow_down.svg);
    background-size: 100% 100%;
}

.head_c .header_logo
{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height:80px;
    background: url(../img/logos/logo_geniesserhotel_hubertus_weiss.png);
    background-size: 100% 100%;
    visibility: hidden;
    opacity: 0;
    transition: all ease .5s;
}

body.content_p .head_c .header_logo,
html.menu_opened .head_c .header_logo
{
    opacity: 1;
    visibility: visible;
}





/*---------------------header anfrage------------------*/
.h_anfrage_c
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    padding: 180px 40px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
/*    overflow-y: auto;   */
}
.h_anfrage_c.opened
{
    display:flex;
}
.h_anfrage_c::after
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
/*    min-height: 1152px;*/
    background: rgba(48, 48, 48, 0.9);
/*    opacity: 0.9;*/
    z-index:1;
}
.h_anfrage_c .anfrage_close
{
    padding: 14px 41px 14px 38px;
    background-color: #5C6550;
    cursor: pointer;
    font: 700 1rem/130% 'Lato', Arial,sans-serif;
    white-space: nowrap;
    color: #F9F9F9;
    position:absolute;
    top:0;
    right:0;
    z-index:2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h_anfrage_c .anfrage_close:hover,
.h_anfrage_c .anfrage_close:focus
{
    background-color:#403836;
}

.h_anfrage_c .anfrage_close img
{
    width:20px;
    height:20px;
    margin-left: 13px;
}
.h_anfrage_c .anfrage_c
{
    background: #FFFFFF;
    box-sizing: border-box;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    z-index:2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: scroll;
    max-height: 100%;/*855px;*/
    position:relative;
}
.h_anfrage_c .anfrage_c > .art_group
{
    margin-top:0;
}

 /*-----------------------------slogan--------------------*/
.h_slogan
{
    max-width:520px;
    display:flex;
    align-items:center;
    justify-content: center;
    flex-wrap:nowrap;
    flex-direction:column;
    position:absolute;
    top:66%;
    left:50%;
    transform:translate(-50%, -66%);
    -webkit-transform:translate(-50%, -66%);
    z-index:999;
}
.h_slogan > *
{
    white-space: nowrap;
}

.h_slogan .slogan_title
{
    color:#F9F9F9;
    font: 700 4.0625rem/100% ingra-condensed, Arial Narrow, Arial, sans-serif;
    text-transform:uppercase;
}
.h_slogan .slogan_subtitle
{
    color:#F8F8F8;
    font: 800 1.125rem/140% 'Mulish', Arial, sans-serif;
/*    margin-top:9px; */
}

.header_image_c
{
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
/*    margin-top:49px;*/
}
.header_image
{
    background-size: cover;
    background-position:center center;
}
.header_image::after
{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.24) 100%);
/*    background: rgba(0, 0, 0, 0.15);*/
/*    opacity: 0.14;     */
    z-index: 2;
}
.header_image img
{
    width: 100%;
    display:table;
}

.header_image img.current
{
    z-index: 5;
}


/*Header-image V1*/
/*.header_image_c img
{
    min-height:100%;
    min-width:100%;
    height:auto;
    width:auto;
    position:absolute;
    top:-100%;
    bottom:-100%;
    left:-100%;
    right:-100%;
    margin:auto;
    z-index:1;
    transform: none;
    -webkit-transform: none;
}  */


/*Header-image V2*/
/*.header_image img
{
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 0;
} */

/*Header-image V3*/
/*.header_image_c {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.header_image img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}*/

/*@media(max-width:2020px)
{
    .header_image img
    {
        width: 2000px;
    }
}*/

/* Mobile menu */
.mobile_menu_btn
{
    display: none;
}

.menu_slide_c
{
    right: 99999px;
    position: absolute;
}

/* Main */
.main_c
{
	width: 100%;
	overflow: visible;
	position: relative;
	z-index: 1;
    float: left;
    background-color: #fff;
}
.header_box
{
    position:absolute;
    top:-108px;
    right:165px;
    width:203px;
    height:173px;
    z-index:999;
    background:url("../img/pauschalbox.svg") no-repeat;
    background-size:100% 100%;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    color:#F8F8F8;
    text-align:center;
    text-transform:uppercase;
    font: 700 1.125rem/122% ingra-condensed, Arial Narrow, Arial, sans-serif;
    padding:25px 30px 48px;
    transition:all ease 0.5s;
}
.header_box:hover,
.header_box:focus
{
    transform:scale(1.02);
}

.header_box .header_box_title
{
    text-decoration:underline;
}
.header_box .header_box_subtitle
{
    text-transform:none;
    font: 700 0.875rem/130% 'Mulish', Arial, sans-serif;
    color:#F9F9F9;
    padding-top:5px;
    padding-bottom:10px;
}

.main
{
	width: 100%;
    float: left;
	min-height: 500px;
	overflow: hidden;
	position: relative;
    float: left;
	z-index: 1;
}

/* Footer */
.footer_c
{
    width: 100%;
    float: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
}

.footer_top
{
    width: 100%;
    background-color: #F2F1F0;
    display: flex;
    justify-content: center;
}

.footer_top .newsletter_c
{
    width: 100%;
    max-width: 1420px;
    padding: 46px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 400 1.25rem/150% "Lato", Arial, sans-serif;
    color: #2B4838;
}

.footer_top .newsletter_c > *
{
    padding: 20px 20px;
}

.footer_top .title_c
{
    display: flex;
    align-items: flex-end;
}

.footer_top .title_c .title
{
    font: 400 3.438rem/100% "Trenda-Regular", Arial, sans-serif;
    color: #2B4838;
    margin-right: 20px;
}

.footer_top .newsletter_c form
{
    display: flex;
    align-items: stretch;
}

.footer_top .newsletter_c form input
{
    background-color: #FFF;
    border: 1px solid #2B4838;
    border-right: none;
    padding: 20px 35px 18px;
    min-width: 370px;
    font: 400 1rem/130% "Trenda-Regular", Arial, sans-serif;
    color: #2B4838;
}

.footer_top .newsletter_c form input::placeholder
{
    color: #2B4838;
    opacity: 1;
}

.footer_top .newsletter_c form .nf_submit
{
    display: flex;
    align-items: center;
    background-color: #2B4838;
    padding: 20px 40px;
    font: 400 0.938rem/120% "Lato", Arial, sans-serif;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    text-align: center;
    position: relative;
    transition: color ease .5s;
}

.footer_top .newsletter_c form .nf_submit:hover,
.footer_top .newsletter_c form .nf_submit:focus
{
    color: #244030;
}

.footer_top .newsletter_c form .nf_submit::after
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #D5DAD7;
    transition: width ease .5s;
}

.footer_top .newsletter_c form .nf_submit:hover::after,
.footer_top .newsletter_c form .nf_submit:focus::after
{
    width: 100%;
}

.footer_top .newsletter_c form .nf_submit span
{
    z-index: 2;
    display: block;
    width: 100%;
}

.footer_bottom
{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #403836;
    font: 300 1.125rem/150% "Lato", Arial, sans-serif;
    color: #FFF;
}

.footer_bottom a
{
    color: inherit;
    text-decoration: none;
}

.footer_bottom a:hover,
.footer_bottom a:focus
{
    text-decoration: underline;
}

.footer_bottom_c
{
    width: 100%;
    max-width: 1500px;
    display: flex;
    align-items: stretch;
}

.footer_bottom .left
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 77px 45px 50px;
    border-right: 1px solid #FFF;
}

.footer_bottom .left .impressum
{
    display: flex;
    align-items: center;
    margin-top: 75px;
    font: 300 0.938rem/150% "Lato", Arial, sans-serif;
}

.footer_bottom .left .impressum .sep
{
    margin-left: 10px;
    margin-right: 10px;
}

.footer_bottom .right
{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 90px 20px 110px;
}

.footer_bottom .right > *
{
    padding: 25px 65px;
}

.footer_bottom .right > *:first-child
{
    padding-bottom: 0;
}

.footer_bottom .right .contact_links
{
    display: flex;
    flex-direction: column;
    font: 400 1.25rem/170% "Lato", Arial, sans-serif;
}

.footer_bottom .right .social_links
{
    display: flex;
    flex-direction: column;
}

.footer_bottom .right .circle_links
{
    display: flex;
}

.footer_bottom .right .circle_links > a
{
    margin-left: 3px;
    margin-right: 3px;
    transition: all ease .5s;
}

.footer_bottom .right .circle_links > a:first-child
{
    margin-left: 0;
}

.footer_bottom .right .circle_links > a:hover,
.footer_bottom .right .circle_links > a:focus
{
    transform: scale(1.1);
}

.footer_bottom .right .algo_link
{
    display: flex;
    align-items: flex-end;
    padding-top: 19px;
    font: 300 0.688rem/100% "Lato", Arial, sans-serif;
    letter-spacing: 0.05em;
    font-style: italic;
}

.footer_bottom .right .algo_link img
{
    margin-left: 10px;
}



/* Fixed Enquiry Button */
.fixed_enquiry_button
{
    position: fixed;
    bottom: 33px;
    right: 0;
    display: flex;
    align-items: center;
    font: 400 0.938rem/100% "Lato", Arial, sans-serif;
    color: #FFF;
    text-decoration: none;
    padding: 12px 20px;
    background-color: #5C6550;
    transition: background-color ease .5s;
    z-index: 5;
	width:180px;
}

.fixed_enquiry_button:hover,
.fixed_enquiry_button:focus
{
    background-color:#403836;
}

.fixed_enquiry_button img
{
    margin-right: 15px;
}

@media(max-width: 1430px)
{
    .footer_bottom .right
    {
        justify-content: space-between;
    }

    .footer_bottom .right > *
    {
        padding: 25px 30px;
    }
}

@media(max-width: 1400px)
{
    .head_c .header_right > a .link_text
    {
        display: none;
    }

}

@media(max-width: 1220px)
{
    .footer_bottom .right
    {
        flex-wrap: wrap;
    }

    .footer_bottom .right > :first-child
    {
        width: 100%;
    }
}

@media(max-width: 1150px)
{
    .head_c .header_logo
    {
        width: 140px;
        height: 58px;
    }
}

@media(max-width:1025px)
{
    .as_map_c
    {
        display: none !important;
    }

    .head_c
    {
        background-color: #403836;
        border: none;
    }

    .head_c .header_logo
    {
        opacity: 1;
        visibility: visible;
    }

    .head_c .header_left .rooms_link
    {
        display: none;
    }

    .head_c .header_left > a
    {
        border: none;
        padding: 24px 5px 23px 5px;
    }

    .head_c .header_right
    {
        padding-right: 10px;
    }

    .head_c .header_right > a
    {
        border: none;
        padding: 24px 20px 23px;
    }

    .head_c .header_right .gtranslate_c
    {
        border: none;
        padding: 24px 35px 23px 20px;
    }

    .footer_top .newsletter_c
    {
        flex-direction: column;
        justify-content: flex-start;
        align-items: cetner;
    }

    .footer_top .title_c
    {
        align-items: Center;
    }

    .footer_top .newsletter_c form input
    {
        padding: 15px 20px 14px;
        min-width: 300px;
        font-size: 0.875rem;
    }

    .footer_top .newsletter_c form .nf_submit
    {
        padding: 15px 25px;
        font-size: 0.875rem;
    }

    .footer_bottom_c
    {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: 130px;
    }

    .footer_bottom .left .impressum
    {
        position: absolute;
        bottom: 90px;
        left: 0;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer_bottom .left
    {
        width: 100%;
        padding: 100px 50px 50px;
        align-items: center;
    }

    .footer_bottom .right
    {
        width: 100%;
        padding: 0 50px;
    }

    .footer_bottom .right > *
    {
        width: 100%;
        padding: 20px 0 !important;
        text-align: center;
    }

    .footer_bottom .right .circle_links
    {
        justify-content: center;
    }

    .footer_bottom .right .algo_link
    {
        justify-content: center;
        padding-top: 10px;
    }
}

@media(max-width:650px)
{
    .head_c
    {
        justify-content: flex-end;
        font-size: 0.875rem;
    }

    .head_c .header_left
    {
        order: 2;
    }

    .head_c .header_left > a
    {
        padding-left: 10px;
    }

    .head_c .header_right
    {
        order: 1;
        padding-right: 0;
    }

    .head_c .header_right > a
    {
        padding-left: 10px;
        padding-right: 10px;
    }

    .head_c .header_logo
    {
        left: 20px;
        transform: translateY(-50%);
    }

    .footer_top .title_c
    {
        padding-left: 0;
        padding-right: 0;
    }

    .footer_top .newsletter_c form
    {
        padding-left: 0;
        padding-right: 0;
    }

    .footer_top .newsletter_c form
    {
        flex-wrap: wrap;
    }

    .footer_top .newsletter_c form input
    {
        width: 100%;
        min-width: 0;
        border: 1px solid #2B4838;
    }

    .footer_top .newsletter_c form .nf_submit
    {
        width: 100%;
    }

    .footer_bottom
    {
        font-size: 1rem;
    }

    .footer_bottom .left
    {
        padding: 100px 50px 40px;
    }

    .footer_bottom .right .contact_links
    {
        font-size: 1.063rem;
    }
}

@media(max-width: 450px)
{
    .head_c .header_logo
    {
        width: 120px;
        height: 50px;
    }
}

@media(max-width: 400px)
{
    .head_c .header_left
    {
        display: none;
    }

    .head_c .header_right
    {
        padding-right: 20px;
    }

}
