@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');
:root {
    --max_width: 1656px;
    --black: #000000;
    --white: #F4F3F2;
    --text: #000000;
    --beige: #B07554;
    --rgb_beige: 199, 159, 109;
    --transition: all 0.5s ease;
    --font_family: 'Open Sans', sans-serif;
}
*,
::before,
::after {
	box-sizing: border-box;
}
/* *::selection {
    background: rgba(var(--rgb_beige), .99);
    color: var(--white);
} */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--black) var(--white);
    /* // scrollbar-color: var(--color) $grey; */
 }
  
/* Works on Chrome/Edge/Safari */
  *::-webkit-scrollbar {
    width: 3px;
}
*::-webkit-scrollbar-track {
    background: var(--black);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--white);
    /* // background-color: var(--color); */
    border-radius: 20px;
    /* // border: 1px solid orange; */
}
BODY {
    margin: 0px;
    font-size: 23px;
    font-family: var(--font_family);
    font-weight: 400;
    color: var(--black);
    background: var(--white);
}
IMG {
    width: 100%;
    display: block;
}
P {
    margin: 0px;
}
A {
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}
A:hover {
    color: var(--beige);
}
.main {
    padding: 0px 7% 0px 132px;
}
@media screen and (max-width: 767px) {
    .main {
        padding: 0px 15px 0px 60px;
    }
}
.blog_page .categories {
    padding-top: 50px;
}
.big_text {
    font-size: 52px;
    text-align: center;
    margin-bottom: 100px;
    font-weight: 700;
}
@media screen and (max-width: 990px) {
    .big_text {
        font-size: 36px;
        margin-bottom: 50px;
    }
}
.blog_item .big_text {
    text-align: left;
}
/* .blog_item .big_text SPAN {
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}
.blog_item .big_text SPAN:hover {
    color: var(--beige);
} */
.back {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	position: relative;
	cursor: pointer;
}
.back:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    border-bottom: 4px solid var(--black);
    border-left: 4px solid var(--black);
    transform: rotate(45deg);
    left: -1px;
    transition: var(--transition);
}
.back:hover:before {
    border-bottom: 4px solid var(--beige);
    border-left: 4px solid var(--beige);
}
.back:after {
    content: "";
    width: 40px;
    height: 4px;
    position: absolute;
    background: var(--black);
    transition: var(--transition);
}
.back:hover:after {
    background: var(--beige);
}
.share_link {
    font-size: 16px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}
.share_link:hover {
    color: var(--beige);
}
.normal_text {
    margin-bottom: 100px;
    color: var(--text);
}
.pagetitle {
    font-size: 20vw;
    line-height: 0.8;
    font-weight: 800;
    /* margin-top: 100px; */
    margin-bottom: 100px;
    text-transform: uppercase;
    padding: 0px 0px 0px 132px;
}
@media screen and (max-width: 1199px) {
    .pagetitle {
        font-size: 19vw;
    }
}
@media screen and (max-width: 767px) {
    .pagetitle {
        margin-bottom: 50px;
        padding: 0px 0px 0px 60px;
    }
}
.pagetitle SPAN {
    display: inline-block;
}
.categories {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.category {
    flex: 1 0 50%;
    width: 100%;
    position: relative;
}
@media screen and (max-width: 767px) {
    .category {
        flex: 1 0 100%;
    }
}
.category_text {
    text-align: center;
    position: absolute;
    width: 100%;
    /* top: 0px;
    left: 0px; */
    padding: 50px 15px;
    font-size: 60px;
    font-weight: 700;
}
@media screen and (max-width: 990px) {
    .category_text {
        font-size: 36px;
    }
}
FOOTER {
    padding: 0px 7% 0px 132px;
}
@media screen and (max-width: 767px) {
    FOOTER {
        padding: 0px 15px 0px 60px;
    }
}
FOOTER > DIV {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    FOOTER > DIV {
        font-size: 16px;
    }
}
FOOTER > DIV A {
    font-weight: 700;
}
.footer_links {
    font-size: 36px;
}
.address SPAN {
    white-space: nowrap;
}
.marquee_menu {
    position: fixed;
    top: 100vh;
    left: 0px;
    height: 120px;
    width: 100vh;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    font-size: 73px;
    line-height: 120px;
    font-weight: 700;
    background: var(--white);
    cursor: pointer;
    z-index: 3;
}
@media screen and (max-width: 767px) {
    .marquee_menu {
        height: 50px;
        font-size: 48px;
        line-height: 42px;
    }
}
.marquee_pagetitle {
    /* height: 322px; */
    overflow: hidden;
    z-index: 0;
}
.menu_wrap_outer {
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100vh;
    transition: all 1s ease;
    z-index: 2;
}
.underlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.menu_wrap {
    margin-left: 120px;
    width: calc(50% - 120px);
    width: 832px;
    height: 100%;
    background: var(--black);
    overflow: auto;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 990px) {
    .menu_wrap {
        width: calc(100% - 120px);
    }
}
@media screen and (max-width: 767px) {
    .menu_wrap {
    margin-left: 50px;
        width: calc(100% - 50px);
    }
}
.menu_wrap_outer.open_menu {
    left: 0px;
}
.menu_wrap UL {
    list-style-type: none;
    margin-top: 0px;
    margin-bottom: 50px;
    padding: 0px;
}
.menu_wrap > UL:first-child {
    margin-top: 100px;
}
.menu_wrap UL:last-child {
    /* margin-bottom: 100px; */
    padding: 0px 75px;
}
@media screen and (max-width: 990px) {
    .menu_wrap UL:last-child {
        padding: 0px 35px;
    }
}
@media screen and (max-width: 767px) {
    .menu_wrap UL:last-child {
        display: flex;
        flex-wrap: wrap;
    }
    .menu_wrap UL:last-child LI {
        flex: 1 0 100%;
    }
    .menu_wrap UL:last-child LI:first-child {
        order: 4;
        margin-top: 75px;
    }
}
.menu_wrap LI {
    text-align: center;
}
.menu_wrap A {
    color: var(--white);
    padding: 0px 15px;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}
@media screen and (max-width: 767px) {
    .menu_wrap A {
        font-size: 28px;
    }
}
.menu_wrap A:hover {
    color: var(--beige);
}
.menu_wrap LI.active A {
    color: var(--beige);
}
.social,
.menu2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;    
}
.menu2 LI:first-child {
    flex: 1 0 100%;    
}
@media screen and (max-width: 767px) {
.menu2 LI {
    flex: 1 0 100%;    
}
}
/* .menu_wrap .social LI:nth-child(2) {
    margin-left: auto;
} */
.menu_wrap .menu2 LI A,
.menu_wrap .social LI A {
    font-size: 24px;
}
.logo_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
    .logo_wrap {
        margin-bottom: 50px;
    }
}
.logo_wrap A {
    display: flex;
    color: var(--beige);
}
@media screen and (max-width: 575px) {
    .logo_wrap A {
        flex: 1 0 100%;
        margin-bottom: 30px;
    }
}
.logo {
    font-size: 100px;
    line-height: 88px;
    margin-right: 50px;
}
@media screen and (max-width: 767px) {
    .logo {
        font-size: 60px;
        line-height: 70px;
        margin-right: 30px;
    }
}
.logo A {
    color: var(--beige);
}
.star {
    display: flex;
    flex-direction: column;
    justify-content: space-between;   
}
.star_top {
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
    .star_top {
        margin-top: 0px;
    }
}
.star_bottom SPAN:first-child,
.star_top SPAN:first-child {
    margin-right: 35px;
}
@media screen and (max-width: 767px) {
    .star_bottom SPAN:first-child,
    .star_top SPAN:first-child {
        margin-right: 15px;
    }
}
.two_columns_text {
    column-count: 2;
    column-gap: 30px;
    margin-bottom: 100px;    
}
@media screen and (max-width: 767px) {
    .two_columns_text {
        column-count: 1;
        margin-bottom: 50px;   
    }
}
.two_columns_text > DIV {
    margin-bottom: 50px;    
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.gallery .gallery_item {
    flex: 1 0 25%;
    max-width: 25%;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .gallery .gallery_item {
        flex: 1 0 50%;
        max-width: 50%;
    }
}
.gallery A {
    cursor: zoom-in;
    display: block;
}
.gallery A IMG {
    filter: none;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery A:hover IMG {
    filter: brightness(.7);
}
.contact_form {
    margin-bottom: 100px;  
}
.field_submit,
.fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0px -15px;
}
.form_field_wrap {
    flex: 1 0 50%;
    max-width: 50%;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .form_field_wrap {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.form_field {
    padding: 0px 15px;
    margin-bottom: 30px;
}
.form_control {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--black);
    font-size: 23px;
    font-family: var(--font_family);
    color: var(--black);
    padding: 0px 0px 15px 0px;
	outline: none;
    background: none;
    font-weight: 700;
}
.form_control::placeholder {
    opacity: 1;
}
.field_submit BUTTON {
    font-size: 23px;
    font-family: var(--font_family);
    color: var(--black);
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 100px;
    font-weight: 700;
}
.share_outer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, .9);
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: var(--transition);
	line-height: 2;
	font-size: 23px;
}
.share_outer.open {
	opacity: 1;
	pointer-events: all;
}
.share {
	position: relative;
	background: var(--white);
	padding: 100px;
}
.share A {
	display: block;
	text-align: center;
	font-weight: 700;
    color: var(--black);
}
.share A:hover {
    color: var(--beige);
}
.share .exit {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.share .exit DIV {
	position: absolute;
	width: 30px;
	height: 3px;
	background: var(--black);
	transition: var(--transition);
}
.share .exit DIV:first-child {
	transform: rotate(45deg);
}
.share .exit DIV:last-child {
	transform: rotate(-45deg);
}
.share .exit:hover DIV {
	background: var(--beige);
}
#espa-banner {
    width: 200px;
    display: flex;
    position: fixed;
    z-index: 100;
    bottom: 0px;
    right: 0px;
}
@media screen and (max-width: 576px) {
    #espa-banner {
        width: 120px;
    }
}
#epanek-banner {
    width: 120px;
    display: flex;
    position: fixed;
    z-index: 100;
    bottom: 60px;
    right: 0px;
}
@media screen and (max-width: 576px) {
    #epanek-banner {
        width: 70px;
        bottom: 36px;
    }
}
.rooms_wrapper {
    margin-bottom: 50px;
}
.room {
    display: flex;
    flex-wrap: wrap;
}
.room_image {
    flex: 1 0 60%;
    max-width: 60%;
    width: 100%;
}
@media screen and (max-width: 990px) {
    .room_image {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.room:nth-child(2n) .room_image {
    order: 2;
}
@media screen and (max-width: 990px) {
    .room:nth-child(2n) .room_image {
        order: unset;
    }
}
.room_content {
    flex: 1 0 40%;
    max-width: 40%;
    width: 100%;
    padding: 30px;
}
@media screen and (max-width: 990px) {
    .room_content {
        flex: 1 0 100%;
        max-width: 100%;
        padding: 30px 0px;
    }
}
.room:nth-child(2n) .room_content {
    text-align: right;
}
@media screen and (max-width: 990px) {
    .room:nth-child(2n) .room_content {
        text-align: left;
    }
}
.room_title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.room_subtitle {
    font-size: 32px;
    font-weight: 700;
    margin-top: 15px;
}
.awards {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
    .awards {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 575px) {
    .awards {
        margin-bottom: 0px;
    }
}
.award {
    flex: 1 0 50%;
    max-width: 50%;
    width: 100%;
}
@media screen and (max-width: 575px) {
    .award {
        flex: 1 0 100%;
        max-width: 100%;
        margin-bottom: 50px;
    }
}
.award IMG {
    max-widtH: 90%;
    width: auto;
}
.home_carousel {
    margin: 0px 0px 100px 0px;
    height: 100vh;
	overflow: hidden;
	padding-left: 132px;
}
@media screen and (max-width: 767px) {
    .home_carousel {
    	padding-left: 60px;
    }
}
.carousel {
    aspect-ratio: 16/9;
    height: 100%;
	overflow: hidden;
}
.owl-stage-outer,
.owl-stage,
.owl-item,
.carousel_item {
    height: 100%;
}
.carousel_item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel_item IMG {
    height: 100%;
    object-fit: cover;
}
.carousel_item .bitzaro {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--black);
    font-size: 100px;
}
.page_image {
    margin-right: -8%;
    margin-bottom: 50px;
    margin-bottom: 50px;
    height: 45vh;
}
.page_image IMG {
    height: 100%;
    object-fit: cover;
}
.oldies_images {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}
.oldies_image {
    flex: 1 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
    padding: 15px;
}
@media screen and (max-width: 767px) {
    .oldies_image {
        flex: 1 0 100%;
        max-width: 100%;
    }
}