/** START OF GENERAL SETTINGS **/
:root {
    --fontYsabeau: "Ysabeau Infant", sans-serif;
    --fontFira: "Fira Sans Condensed", sans-serif;
    --white: #ffffff;
    --black: #000000;
    --brown: #2d0f0a;
    --accent: #889363;
        
        
    --grey: #f5f0eb;
    --primary: #d7cebb;
    --mainColorGrey:#4e4e4e;
    --greyBgOpacity: rgba(237, 236, 232, .5);
    --greyBgLight: rgba(246, 245, 243, 1);

    
    --transition3s: 0.3s linear;
    --backdropBlur: blur(1.5px);
    --plyr-color-main: #7f7f32;
    
}
.bgWhite {
    background-color: var(--white);
}
.bgMainGrey {
    background-color: var(--mainColorGrey);
}
.bgGreyLight {
    background-color: var(--greyBgOpacity);
}
.bgBlack {
    background-color: var(--black);
    color: var(--white);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

button {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

button:focus,
a:focus {
    box-shadow: none !important;
    outline: none;
}
/*
a {
    display: inline-block;
}*/

a,
a:hover {
    text-decoration: none;
    transition: var(--transition3s);
     color: var(--accent);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style-position: inside;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

picture {
    display: block;
}
.img-fit{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/** END OF GENERAL SETTINGS **/
/**START 
==============================**/
body {
    font-family: var(--fontFira);
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.3px;
    background: var(--white);
    overflow-x: hidden!important;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--bgCreamDark);
}

body::-webkit-scrollbar {
    width: 5px;
    background-color: var(--grey);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}


/*HEADERS
===============================*/

h1, .h1,
h2, .h2,
h3 {
    font-family: var(--fontYsabeau);
    margin: 10px 0px 20px;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: 0.5px;
    font-weight: 300;
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: left;
    text-transform: uppercase;
}

h1, .h1 {
    font-size: 34px;
}
h2, .h2 {
    font-size: 30px;
}
h3, .h3 {
    font-size: 26px;
}
h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
.section-subtitle {
    font-family: var(--fontYsabeau);
    display: block;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
    font-weight: 400;
    text-transform: uppercase;
    background: rgba(0,0,0,0.005);
}
.section-subtitle {
    color: var(--black); 
}
/*
.bgBlack .section-subtitle {
    color: var(--white);
}

.bgBrown .section-subtitle {
    color: var(--accent);
}
*/
@media screen and (max-width: 1199px) {
    h1, .h1 {
        font-size: 30px;
    }
    h2, .h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 28px;
    }
    h2, .h2 {
        font-size: 26px;
    }
    h3, .h3 {
        font-size: 24px;
    }

}

/**END OF BODY AND HEADINGS **/

/** START OF MARGIN  **/
.marginTop {
    margin-top: 90px;
}
.paddingTop {
    padding-top: 90px;
}
.paddings {
    padding: 90px 0px 90px;
}

@media screen and (max-width: 991px) {
    .marginTop {
        margin-top: 70px;
    }

    .paddingTop {
        padding-top: 70px;
    }
    .paddings {
        padding: 70px 0px 70px;
    }
}
@media screen and (max-width: 991px) {
    .marginTop {
        margin-top: 50px;
    }
    .paddingTop {
        padding-top: 50px;
    }
    .paddings {
        padding: 50px 0px 50px;
    }
}

/** END OF MARGIN  **/

/* START OF BUTTON  
=================================== */
.btn-left {
    font-family: var(--fontYsabeau);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--white);
    background: var(--mainColorGrey);
    padding: 10px 30px;
    letter-spacing: 1.5px;
    position: relative;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition3s);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 1;
    text-align: center;
    display:inline-block;
}
@media screen and (max-width: 575px) {
    .btn-left {
        font-size: 15px;
        padding: 10px 20px;
    }
}
.btn-left:hover {
    background: var(--greyBgOpacity);
    color: var(--black);
}

.btn-left:before,
.btn-left:after {
    content: "";
    position: absolute;
    transition: inherit;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    border-left: 0;
    border-right: 0;
    transition: var(--transition3s);
}
.btn-left:before {
    right: 0;
}
.btn-left:after {
    left: 0;
}
.btn-left:hover:after {
    background: var(--greyBgOpacity);
}

.btn-left.revert {
    color: var(--black);
    background: transparent;
}
.btn-left.revert:before {
    border: 1px solid var(--black);
    border-left: 0;
    border-right: 0;
}
.btn-left.revert:hover {
    background: var(--mainColorGrey);
    color: var(--white);
}

.btn-left.revert:hover:after {
    background: var(--mainColorGrey);
}

.bgBlack .btn-left,
.white-btn {
    color: var(--white);
    background: rgba(0,0,0,0.005);
}

.bgBlack .btn-left:hover,
.white-btn:hover {
    color: var(--black);
}

.bgBlack .btn-left:hover:after,
.white-btn:hover:after {
    background: var(--white);
    border: 1px solid var(--white);
    border-left: 0;
    border-right: 0;
}

.bgBlack .btn-left:before,
.white-btn::before,
.white-btn::after, .white-btn::before {
    border: 1px solid var(--white);
    border-left: 0;
    border-right: 0;
}



/* START OF HEADER 
================================*/
.noSlider-holder {
    padding-top: 130px;
}

@media screen and (max-width: 1199px) {
    .noSlider-holder {
        padding-top: 120px;
    }
}
@media screen and (max-width: 991px) {
    .noSlider-holder {
        padding-top: 90px;
    }
}

header {
    padding: 20px 40px;
    background-color: transparent;
}
.headerBg {
    transition: var(--transition3s);
}

.headerBg, .noTopMedia header {
    background-color: var(--greyBgLight);
}
.headerBg {
    padding: 14px 40px
}

@media screen and (max-width: 1199px) {
    header {
        padding: 20px 30px;
    }
    .headerBg {
        padding: 15px 30px;
    }
}
@media screen and (max-width: 991px) {
    header, .headerBg {
        padding: 10px 15px;
    }  
}

.header-logo img {
    height: auto;
    width: auto;
    max-width: 100%;
    height: 90px;
    filter: brightness(0) invert(1);
}
.header-logo a {
    display: block;
}
.noTopMedia .header-logo img {
    filter: none;
}
.headerBg .header-logo img {
    height: 70px;
    filter: none;
}
@media screen and (max-width: 1199px) {
    .header-logo img {
        height: 80px;
    }  
    .headerBg .header-logo img {
        height: 50px;
    }
}
@media screen and (max-width: 991px) {
    .header-logo img {
        height: auto;
        height: 70px;
    }
    .headerBg .header-logo img {
        height: auto;
        height: 45px;
    }
}
/*
@media screen and (max-width: 575px) {
    .header-logo img, .noTopMedia .header-logo img {
        height: auto;
        max-height: 70px;
    }
    .headerBg .header-logo img {
        height: auto;
        max-height: 60px;
    }
}*/

header .bookBtn {
    font-size: 16px;
    line-height: 1.2;
    display: inline-block;
    border: 1px solid var(--accent);
    padding: 10px 32px;
    color: var(--accent);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: rgba(0,0,0,0.005);
    transition: var(--transition3s);
}
@media screen and (max-width: 991px) {
    header .bookBtn {
        font-size: 14px;
        padding: 10px 15px;
    }
}
@media screen and (max-width: 575px) {
    header .bookBtn {
        font-size: 12px;
        padding: 10px 5px;
        width: 70px;
    }
}
body:not(.noTopMedia):not(.lock-scroll) header:not(.headerBg) .bookBtn {
     border: 1px solid var(--white);
    color: var(--white);  
}

.headerBg .bookBtn, .noTopMedia header .bookBtn {
    border: 1px solid var(--accent);
    color: var(--accent);
}

header .bookBtn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* BURGER ΒUTTON NAV 
==============================*/
.burger_nav {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 28px;
    cursor: pointer;
    z-index: 10;
    transition: 0.1s;
}
.burger_nav span {
    position: absolute;
    display: block;
    width: 34px;
    height: 3px;
    background-color: var(--accent);
    transition: var(--transition3s);
    border-radius: 0%;
}
body:not(.noTopMedia):not(.lock-scroll) header:not(.headerBg) .burger_nav span {
    background-color: var(--white);
}

.burger_nav:hover span {
    transform: scale(1.2);
    transition: 350ms cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.burger_nav span:nth-child(1) {
    left: 0;
    top: 0;
}
.burger_nav span:nth-child(2) {
    left: 0;
    top: 12px;
}
.burger_nav span:nth-child(3) {
    left: 0px;
    bottom: 0px;
}

.burger_nav.open {
    transform: rotate(180deg);
    cursor: pointer;
    transition: 0.2s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.burger_nav.open span {
    border-radius: 0;
    transition-delay: 200ms;
    transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}
.burger_nav.open span:nth-child(2) {
    display:none;
}
.burger_nav.open span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 6px);
}
.burger_nav.open span:nth-child(3) {
    transform: rotate(-45deg) translate(12px, -14px);
}
.lock-scroll header .burger_nav span,
.lock-scroll header .burger_nav span::before,
.lock-scroll header .burger_nav span::after {
    background-color: var(--accent);
}
/* END BURGER NAV 
------------------------*/

/* NAVIGATION  
============================*/
.nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 2;
    letter-spacing: 2px;
    align-items: start;
    justify-content: center;
    overflow-y: scroll;
    scrollbar-width: none;
}
@media screen and (max-width: 991px) {
    .nav_wrap {
        
    }
}
.nav_wrap::-webkit-scrollbar {
    display: none;
}
.lock-scroll .nav_wrap {
    background-color: whitesmoke;
}
.close + .nav_wrap {
    pointer-events: none;
}
.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    /*margin-top: 40px;*/
    margin:auto;
}
nav {
    pointer-events: none;
}

.menu_desc {
    position: relative;
    display:none;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: var(--black);
    transition: var(--transition3s);
}
nav .menu_item {
    font-size: 4vh;
    list-style: none;
    width: fit-content;
    margin: 0 auto 25px;
}
@media screen and (min-width: 992px) {
    .nav_wrap {
        padding-top:20px;
    }
     nav .menu_item {
        font-size:unset;
        min-height:78px;
        width:unset;
        margin: 0 auto 20px;
    }
}
nav .menu_item:last-of-type {
    margin-bottom: 0;
}
nav a {
    position: relative;
    font-weight: 400;
    color: var(--accent);
    pointer-events: auto;
    z-index: 10;
    font-size: 28px;
    display: inline-block;
    opacity: 0;
    text-transform: uppercase;
    transition: var(--transition3s);
}
@media screen and (max-width: 991px) {
    nav a {
        font-size: 22px;
    }
}
nav a:hover {
    color: var(--black);
}
nav:hover a:not(:hover) {
    color: var(--primary);
}
nav:hover a:not(:hover)::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/*nav a:hover ~ .menu_desc {*/
.menu_item:hover .menu_desc {
    display:block;
    transition-delay: 0.2s;
    background: rgba(0,0,0,0.005);
}

.lock-scroll nav .menu_item a:hover::after {
    opacity: 0;
    transition-delay: 0s;
}
.lock-scroll .menu_item a.easeIn-anim-fix::after {
    opacity: 1;
    transition-delay: 0.2s;
}
.menu_item a::after {
    opacity: 0;
    transition-delay: 0s;
    transition: 0s;
}
.burger_nav.open + .nav_wrap nav a:hover ~ .menu_img img {
    animation: menuImg_hover ease-out 2.5s forwards;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    z-index: 0;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    transition: ease-in 0.2s;
    transition-delay: 0.2s;
}
nav .menu_item:last-child a::after {
    display: none;
}
.menu_item:nth-child(odd) a {
    animation: menuItem_right2 0.5s ease-in forwards;
}
.menu_item:nth-child(even) a {
    animation: menuItem_left2 0.33s ease-in forwards;
}
/*
.menu_item a::after,
.menu_item .menu_desc {
    opacity: 0;
}*/
.lock-scroll .menu_item:nth-child(odd) a {
    animation: menuItem_right 0.33s ease-out 0.66s forwards;
}
.lock-scroll .menu_item a::after {
    opacity: 1;
    transition: 0.5s ease-out;
    transition-delay: 1s;
}
.lock-scroll .menu_item:nth-child(even) a {
    animation: menuItem_left 0.33s ease-out 0.66s forwards;
}
.menu_img {
    position: absolute;
    z-index: 0;
    overflow: hidden;
}
.menu_img picture {
    width: 20vw;
    height: 38vh;
    overflow: hidden;
}
.menu_img img {
    width: 100%;
    opacity: 0.15;
    filter: grayscale(100%);
    object-fit: cover;
    animation: menuImg_hover2 ease-out 2.5s forwards;
}
.menu_item:first-child .menu_img img {
    transform-origin: 70% 55%;
}
.menu_item:nth-child(2) .menu_img img {
    transform-origin: 50% 90%;
}
.menu_item:nth-child(3) .menu_img img {
    transform-origin: 50% 30%;
}
.menu_item:nth-child(4) .menu_img img {
    transform-origin: 100% 80%;
}
.menu_item:nth-child(5) .menu_img img {
    transform-origin: 25% 25%;
}
.menu_item:nth-child(7) .menu_img img {
    transform-origin: center;
}
nav .menu_item:first-child .menu_img {
    top: 0;
    right: 0;
    animation: 0.5s menuImg_ease-out1 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(2) .menu_img {
  left: 26.5%;
  top: 44%;
  animation: 0.5s menuImg_ease-out3 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(3) .menu_img {
  top: 0;
  left: 12.5%;
  animation: 0.5s menuImg_ease-out4 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(4) .menu_img {
  bottom: -12px;
  left: 0;
  animation: 0.5s menuImg_ease-out2 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(5) .menu_img {
  right: 25.5%;
  top: 18%;
  animation: 0.5s menuImg_ease-out4 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(6) .menu_img {
  right: 30%;
  bottom: 0%;
  animation: 0.5s menuImg_ease-out1 ease-in 0.5s forwards;
}
nav .menu_item:nth-child(6) .menu_img,
nav .menu_item:last-child .menu_img {
  right: 0%;
  bottom: -12px;
  animation: 0.5s menuImg_ease-out3 ease-in 0.5s forwards;
}
.lock-scroll nav .menu_item .menu_img {
    opacity: 0;
}
.lock-scroll nav .menu_item:first-child .menu_img {
    animation: 0.66s menuImg_ease-in1 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(2) .menu_img {
    animation: 0.66s menuImg_ease-in3 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(3) .menu_img {
    animation: 0.66s menuImg_ease-in4 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(4) .menu_img {
    animation: 0.66s menuImg_ease-in2 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(5) .menu_img {
    animation: 0.66s menuImg_ease-in4 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(6) .menu_img {
    animation: 0.66s menuImg_ease-in4 ease-out 0.33s forwards;
}
.lock-scroll nav .menu_item:nth-child(7) .menu_img,
.lock-scroll nav .menu_item:last-child .menu_img {
    animation: 0.66s menuImg_ease-in3 ease-out 0.33s forwards;
}
.lock-scroll header {
    background: transparent !important;
}
@keyframes menuItem_right {
    from {
        opacity: 0;
        letter-spacing: 12px;
        transform: translate3d(10vw, 0, 0);
        visibility: hidden;
    }
    to {
        opacity: 1;
        letter-spacing: 2px;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}
@keyframes menuItem_right2 {
    from {
        opacity: 1;
        letter-spacing: 2px;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    to {
        opacity: 0;
        letter-spacing: 12px;
        transform: translate3d(10vw, 0, 0);
        visibility: hidden;
    }
}
@keyframes menuItem_left {
    from {
        opacity: 0;
        letter-spacing: 12px;
        transform: translate3d(-10vw, 0, 0);
        visibility: hidden;
    }
    to {
        opacity: 1;
        letter-spacing: 2px;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}
@keyframes menuItem_left2 {
    from {
        opacity: 1;
        letter-spacing: 2px;
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
    to {
        opacity: 0;
        letter-spacing: 12px;
        transform: translate3d(-10vw, 0, 0);
        visibility: hidden;
    }
}
@keyframes menuImg_hover {
    0% {
        opacity: 0.15;
        filter: grayscale(100%);
        transform: scale(1);
    }
    33% {
        filter: grayscale(0);
        opacity: 1;
    }
    100% {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.3);
    }
}
@keyframes menuImg_hover2 {
    0% {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.3);
    }
    33% {
        opacity: 0.15;
        filter: grayscale(100%);
    }
    100% {
        opacity: 0.15;
        filter: grayscale(100%);
        transform: scale(1);
    }
}
@keyframes menuImg_ease-in1 {
    from {
        transform: translate3d(25vw, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes menuImg_ease-in2 {
    from {
        transform: translate3d(-25vw, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes menuImg_ease-in3 {
    from {
        transform: translate3d(0, 25vw, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes menuImg_ease-in4 {
    from {
        transform: translate3d(0, -25vw, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes menuImg_ease-out1 {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(25vw, 0, 0);
        opacity: 0;
    }
}

@keyframes menuImg_ease-out2 {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(-25vw, 0, 0);
        opacity: 0;
    }
}

@keyframes menuImg_ease-out3 {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 25vw, 0);
        opacity: 0;
    }
}

@keyframes menuImg_ease-out4 {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, -25vw, 0);
        opacity: 0;
    }
}



@media screen and (max-width: 991px) {
    .menu_item:nth-child(odd) a {
        animation: none;
    }
    .menu_item:nth-child(even) a {
        animation: none;
    }
    .lock-scroll .menu_item:nth-child(odd) a {
        animation: none;
    }
    .lock-scroll .menu_item:nth-child(even) a {
        animation: none;
    }
    nav a {
        opacity: 1;
    }
}
@media screen and (max-height: 700px) {
    nav .menu_item {
        font-size: none;
        margin: 0 auto 20px;
    }
    .menu_desc,
    .menu_item:hover .menu_desc {
        display: none;
    }
    nav a::after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    nav .menu_item {
        font-size: none;
        margin: 0 auto 20px;
    }
    .menu_desc,
    .menu_item:hover .menu_desc {
        display: none;
    }
    nav a::after {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .menu_img picture,
    .menu_img img {
        width: 35vw;
        height: 25vh;
    }
    nav .menu_item:nth-child(4) .menu_img,
    nav .menu_item:last-child .menu_img {
        bottom: 8%;
    }
    nav .menu_item:nth-child(2) .menu_img {
        top: 32%;
        left: 5%;
    }
    nav .menu_item:nth-child(5) .menu_img {
        right: 6.5%;
        top: 31%;
    }
    nav .menu_item:nth-child(6) .menu_img {
        bottom: 4%;
    }
}
/* END OF NAVIOGATION
==========================*/


/* LANGUAGES  
==============================*/

.menu .languagesDrop .dropdown-toggle {
    color: var(--black);
}
@media screen and (min-width: 576px) {
    body:not(.noTopMedia):not(.lock-scroll) header:not(.headerBg) .languagesDrop .dropdown-toggle {
        color: var(--white);
    }
}
.languagesDrop .dropdown-item {
    font-size: 18px;
}

.languagesDrop .dropdown-toggle {
    color: var(--accent);
    transition: var(--transition3s);
    font-weight: 400;
    background: rgba(0,0,0,0.005);
}

.languagesDrop .dropdown-menu {
    min-width: 55px;
    border-radius: 0;
    padding: 5px 0px;
    font-size: 15px;
    background: var(--greyBgOpacity);
    left: -10px !important;
    top:30px !important;
}
.languagesDrop .dropdown-item:focus,
.languagesDrop .dropdown-item:hover {
    background: var(--black);
    color: var(--white);
}
@media screen and (max-width: 575px) {
    .languagesDrop .dropdown-menu {
        left: 50%!important;
        transform: translateX(-50%)!important;
    }
}

/* LANGUAGES  */

/* START OF CARROUSEL  
====================================*/
#bigCarousel,
#bigCarousel .carousel-item {
    position: relative;
    height: 100vh;
}

#bigCarousel .carousel-item:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 100% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 100% );
}
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}
#bigCarousel .carousel-control-next,
#bigCarousel .carousel-control-prev {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition3s);
}
#bigCarousel .carousel-control-next:hover,
#bigCarousel .carousel-control-prev:hover {
    filter: brightness(1.5);
}
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
#bigCarousel .carousel-control-next .visually-hidden,
#bigCarousel .carousel-control-prev .visually-hidden {
    display:none;
}
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    
#bigCarousel .carousel-control-next {
    right: 40px;
}
#bigCarousel .carousel-control-prev {
    left: 40px;
}

#bigCarousel .carousel-caption {
    left: 3%;
    bottom: 5%;
    right: unset;
    max-width: 50%;
    z-index:1;
}
#bigCarousel .carousel-caption .h1 {
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    background: rgba(0,0,0,0.005);
}
.scrollToSection {
    position: absolute;
    bottom: 12%;
    z-index: 2;
    left: 8.4%;
}

.scrollToSection a {
    font-family: var(--fontYsabeau);
    color: var(--white);
    font-size: 16px;
    /*text-transform: capitalize;*/
}

.scrollToSection a img {
    transform: rotate(180deg);
    width: 20px;
    margin-left: 5px;
    filter: brightness(0%) invert(100%);
}

@media screen and (max-width: 1199px) {
    #bigCarousel .carousel-caption {
        max-width: 80%;
    }
}

@media screen and (max-width: 991px) {
    #bigCarousel,
    #bigCarousel .carousel-item {
        position: relative;
        height: auto;
    }
    
    #bigCarousel .carousel-control-prev {
        left: 10px;
    }
    #bigCarousel .carousel-control-next {
        right: 10px;
    }
    .scrollToSection {
        bottom: 4%;
    }
}

@media screen and (max-width: 575px) {
    #bigCarousel .carousel-caption,
    .scrollToSection {
        left: 8%;
    }
    #bigCarousel .carousel-control-prev {
        left: 0px;
    }
    #bigCarousel .carousel-control-next {
        right: 0px;
    }
    #bigCarousel .carousel-caption {
        max-width: 85%;
        bottom: 3%;
    }
}

/* END OF CARROUSEL  */

/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}

.plyr__video-embed iframe {
	top: -50%!important;
	height: 200%!important;
}
.YTvideo-placement .plyr__volume input[type=range],
.YTvideo-placement .plyr__controls__item.plyr__menu,
.YTvideo-placement .plyr--fullscreen-enabled [data-plyr=fullscreen]{
    display:none!important;
}
.YTvideo-placement .plyr--video .plyr__controls {
    max-width: 740px;
    margin: auto;
    bottom: 140px;
    background:transparent!important;
}
@media (max-width: 1199px){   
  .YTvideo-placement .plyr--video .plyr__controls {
      max-width: 90%;
    bottom: 40px;
  }
}
    
@media (max-width:767px){   
    .YTvideo-placement .plyr--video .plyr__controls {
        bottom: 20px;
    }  
}
    
.YTvideo-placement .plyr--video.plyr--hide-controls .plyr__controls {
    opacity: 1!important; 
    pointer-events: none; 
    transform: none!important;
}

/* HOME PAGE  
====================================*/
/* Swiper Gen and overwrite 
====================================*/
.swiper-button-next,
.swiper-button-prev {
    top: 50px;
    color: var(--black);
    opacity: 1 !important;
    padding: 20px;
    background: var(--greyBgOpacity) ;
}
.swiper-button-next:before,
.swiper-button-prev:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: unset;
    background: url(../images/arrow-right.svg) no-repeat center center;
    filter: brightness(1) invert(1);
    background-size: 70%;
}
.swiper-button-prev:before {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.swiper-button-next.invert,
.swiper-button-prev.invert {
    background: var(--mainColorGrey);
}
.swiper-button-next.invert:before,
.swiper-button-prev.invert:before {
    filter: brightness(0) invert(1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}  
.swiper-button-next {
    right: 20px;
}
.swiper-button-prev {
    right: 60px;
    left: unset !important;
}

.swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 26px;
    font-size: 22px;
    font-weight: 400;
    color: var(--mainColorGrey);
    opacity: 0.3;
    margin: 0 14px !important;
    background: none !important;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    color: var(--black);
}

.pagination-bullets-below .swiper-pagination-bullet {
        width: 10px;
    height: 10px;
    text-align: center;
    margin: 0 5px !important;
    background: var(--mainColorGrey)!important;
}

/*MAIN SECTION SWIPER
----------------------------------*/
    .swiperContainer {
        width: 100%;
    }
@media screen and (min-width: 768px) {
    .swiperContainer,
    .only-img-holder{
        width: 80%;
    }
    .swiperContainer.revert,
    .only-img-holder.revert{
        margin-left:auto;
    }
    .only-img-holder.revert > div {
        width:100%;
    }
}
.swiperContainer .swiper{
    position: relative;
    padding-bottom: 50px;
}
.swiperContainer .mainSectionSwiper .swiper-slide {
    position: relative;
}
/*.swiperContainer .mainSectionSwiper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    bottom: 50px;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(245, 240, 235, 0.04) 0%, rgba(245, 240, 235, 0.04) 20%, rgba(245, 240, 235, 0.95) 100% );
}
.swiperContainer .mainSectionSwiper.revert::before {
    background: linear-gradient( 90deg, rgba(45, 15, 10, 0.95) 0%, rgba(45, 15, 10, 0.04) 70%, rgba(45, 15, 10, 0.04) 100% );
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.04) 70%, rgba(0, 0, 0, 0.04) 100% );
    background: linear-gradient( 90deg, rgba(245, 240, 235, 0.95) 0%, rgba(245, 240, 235, 0.04) 70%, rgba(245, 240, 235, 0.04) 100% );
}*/
.swiperContainer .swiper-pagination {
    width: auto !important;
}

.mainSectionSwiper.revert .swiper-pagination {
    right: 0;
    left: unset !important;
}
.heading-over-swiper {
    position: absolute;
    top: 18%;
    right: 0;
    z-index: 2;
    width: 50%;
}
.heading-over-swiper.revert {
    left: 0;
    right: unset;
}
.heading-over-swiper h1{
    background: rgba(0,0,0,0.005);
}
@media screen and (max-width: 767px) {
    .heading-over-swiper {
        width: 100%;
        position: static;
    }
    .heading-over-swiper h1{
        color: var(--brown);
    }
}

.mainSectionSwiper.revert .swiper-button-prev {
    right: unset;
    left: 20px !important;
}
.mainSectionSwiper.revert .swiper-button-next {
    right: unset;
    left: 60px;
}

@media screen and (max-width: 991px) {
    .mainSectionSwiper .swiper-button-next,
    .mainSectionSwiper .swiper-button-prev {
        padding: 15px;
    }

    .mainSectionSwiper .swiper-button-prev {
        right: 50px;
    }    
    .mainSectionSwiper.revert .swiper-button-next {
        left: 50px;
    }
}

/*DINING BOXES
=-=====================*/
.listing-box {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:30px;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
    .listing-box {
        max-width:575px;
        margin-left:auto;
        margin-right:auto;
    }
    .swiper-slide .listing-box {
        max-width:unset;   
    }
}
/*
.listing-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}*/
.listing-box .text-over {
    color: var(--white);
    position: absolute;
    z-index: 1;
}
.listing-box .text-over a:not(.btn-left){
    color: var(--white);
}
.listing-box .text-over {
    background: rgba(0,0,0,0.005);
}
.listing-box .text-over.text-white h2,
.listing-box .text-over.text-white h2 span{
    color: var(--white)!important;
}
.box-link-above {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:0;
        background: rgba(0, 0, 0, 0.45);
}
.img-holder {
    overflow: hidden;
}
.img-holder img{
    transition: transform .5s ease-in-out;
}
.listing-box.box-text-over:hover .img-holder img,
.img-holder:hover img{
    webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/*offers intro*/
.section-boxes-carousel, 
.section-boxes-carousel h2 {
    text-align:center;
}

/*ROOM DETAILS
=========================*/
.details {
    font-size:16px;
}
.list-details .details {
    margin-right:20px;
}

/*Why Book
=========================*/
.whyUs  {
    padding:20px;
}

.whyUs ul {
    list-style:none;
    counter-reset: item;
}
.whyUs ul li {
    margin-bottom: 10px;
  /*   opacity: 0;
  will-change: transform;*/
}
.whyUs ul li:not(.note)::before {
    counter-increment: item;
    content: "0" counter(item);
    display: block;
    font-family: var(--fontYsabeau);
    font-size: 64px;
    line-height: 1;
    backdrop-filter: var(--backdropBlur);
}
.whyUs ul li.note{
    font-size:22px;
    font-style:italic;
    display: flex;
    align-items: end;
    color: var(--accent);
}
@media screen and (min-width:768px) {
    .whyUs ul {
        /*column-count: 2;*/
        display: flex;
        flex-wrap: wrap;
    }
    .whyUs ul li {
        width: 46%;
        text-align: left;
        margin: 0 2%;
    }
    .whyUs ul li:before{
        padding-left:15px;
    }
     .whyUs ul li:nth-child(2n-1){
        text-align:right;
     }
    .whyUs ul li:nth-child(2n-1):before{
        padding-right:15px;
    }
}
/*
.why-box {
    position: relative;
    z-index: 1;
}
.why-box .number {
    font-family: var(--fontYsabeau);
    font-size: 64px;
    margin: 10px;
    line-height: 1;
    backdrop-filter: var(--backdropBlur);
}*/

.offers-intro {
    text-align:left;    
}

/*AWARDS INTRO
==============================*/
.awards {
    margin-bottom:30px;
}
.awardsSwiper .swiper-button-next,
.awardsSwiper .swiper-button-prev {
    top: calc(50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.awardsSwiper .swiper-button-prev {
    right: unset;
    left: -50px !important;
}
.awardsSwiper .swiper-button-next {
    right: -50px;
}
@media screen and (max-width:767px) {
    .awardsSwiper .swiper-button-prev {
        left: -30px !important;
    }
    .awardsSwiper .swiper-button-next {
        right: -30px;
    }
}
@media screen and (max-width: 575px) {
    .awardsSwiper .swiper-button-prev {
        left: -15px !important;
    }
    .awardsSwiper .swiper-button-next {
        right: -15px;
    }
}

/*  Filters Accommodation
====================================*/

.filters {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
    margin:auto;
}
.filter {
  padding: 10px 20px;
  border-bottom: 1px solid var(--brown);
  letter-spacing: 1.5px;
}
.filter:hover {
  cursor: pointer;
}
.filter.active {
    font-weight:600;
}


.hide { /* You can play with the seconds to change the "animation" */
  animation: hide .3s ease 0s 1 normal forwards;
  transform-origin: center;
  padding:0px;
}
.show { /* You can play with the seconds to change the "animation" */
    animation: show .3s ease 0s 1 normal forwards;    
    transform-origin: center;
}

@keyframes hide {
  0%{
    transform: scale(1);        
  }
  100% {
    transform: scale(0);        
    width: 0;
    height: 0;
    margin: 0;
  }
}
@keyframes show {
  0%{
    transform: scale(0);     
    width: 0;
    height: 0;
    margin: 0;   
  }
  100% {
    transform: scale(1);    
  }
}

/*.all-rooms .group:first-child{*/
.all-rooms .group{
    padding-top:60px;
}

/*REVIEWS
=====================================*/
.reviews .leftCol {
    /*height: 600px;
    min-height: 500px;*/
    background-color: var(--accent);
    color: var(--white);
}
.reviews .leftCol h2{
    color:var(--white);   
}
.reviews .rightCol {
    background-color: var(--greyBgOpacity);
}
@media screen and (min-width: 992px) {
    .reviews .rightCol {
     margin-top:90px;   
    }
}
.rTitle {
  font-family: var(--fontYsabeau);
  font-size: 35px;
  line-height: 1.2;
  text-transform: capitalize;
}
.rName {
    font-style: italic;
}
.rDate {
  font-style: italic;
  font-size:16px;
}
.rText {
  margin-top: 30px;
}

.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
  top: 22px;
  color: var(--white);
  background: var(--mainColorGrey);
  z-index: 100;
  width: 35px;
}
.reviewsSwiper .swiper-button-next:before, 
.reviewsSwiper .swiper-button-prev:before {
    filter:none;
}
.reviewsSwiper .swiper-button-next {
  right: 0;
}
.reviewsSwiper .swiper-button-prev {
  right: 35px;
}



/*FOOTER
==========================*/
footer {
    padding: 60px 0px 30px;
    font-weight: 300;
    color: var(--white);
    font-weight: 500;
}
.instagram img{
    height:28px;
    filter: brightness(0);
}
footer h2{
    color:var(--white);
}
.footer-logo img {
    height: 50px !important;
    width: auto;
    filter: brightness(0) invert(1);
}
.contact-details {
    display:block!important;
}
.social-details img {
    width: 25px;
    margin-right: 15px;
}

/*footer .social-details img {*/
/*  filter: brightness(0) saturate(100%) invert(67%) sepia(54%) saturate(370%) hue-rotate(355deg) brightness(88%) contrast(83%)*/
/*}*/


footer a {
    transition: var(--transition3s);
    color: var(--white);
}
footer a:hover,
footer a.active {
    color: var(--primary)!important;
}

.bottomMenu a{
    margin-bottom: .5rem !important;
    text-transform: uppercase;
}    
.bottomMenu.asRow {
    padding-top:20px;
}
.bottomMenu.asRow a {
    margin:0 8px 8px;
}

.newsletterform .form-control {
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--white);
    font-size: 16px;
    color: var(--white);
}
.newsletterform ::-webkit-input-placeholder {
 	color: var(--white);
}
.newsletterform :-moz-placeholder { 
   color: var(--white);
}
.newsletterform ::-moz-placeholder {  
   color: var(--white);
}
.newsletterform :-ms-input-placeholder { 
   color: var(--white);
}
.newsletterform button:before,
.newsletterform button:after{
    border:0;
}


.copyright {
    font-size: 14px;
    font-weight: 300;
}


/* GALLERY  
=================================== */
.tab {
    border-right: 1px solid var(--black);
    display: flex;
    flex-direction: column;
}

.tab button {
    font-family: var(--fontYsabeau);
    font-size: 18px;
    display: block;
    background-color: inherit;
    color: var(--black);
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition3s);
    margin-bottom: 15px;
    padding: 10px 10px;
    text-transform: uppercase;
}
.tab button:hover,
.tab button.active {
    background-color: var(--greyBgOpacity);
}

.tabcontent {
    text-align: left;
    padding: 0px 30px;
}

.tabcontent a {
    display: block;
}

@media screen and (max-width: 991px) {
    .tab {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border: 0;
    }
    .tab button {
        width: auto;
    }
    .tabcontent {
        padding: 0;
    }
    .tab button {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 575px) {
    .tab button {
        font-size: 16px;
        margin-bottom: 5px;
    }
}


/* 2 Cols PAGE
==================================*/
.gridColumns {
    text-align: left;
}
.gridColumns .leftCol {
    border-right: 1px solid var(--black);
    padding-right: 25px;
}
.gridColumns .rightCol {
    padding-left: 80px;
}
@media screen and (max-width: 991px) {
    .gridColumns .leftCol {
        border-right: none;
        padding-right: 0px;
        padding-bottom: 30px;
    }
    .gridColumns .rightCol {
        padding-left: 0px;
    }
}
    

/* CONTACT PAGE
==================================*/
.map {
    display: block;
    height: 400px;
}
.contactPage .social-details img {
    filter: brightness(0);
}

.contactform .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    border-bottom: 1px solid var(--black);
}

.field-validation-valid {
    display: none;
    color: red;
}

.field-validation-error {
    display: block;
    color: red;
    text-align: left;
    font-size: 12px;
}

.field-validation-error:empty {
    display: none;
}

.asterisk span {
    display: inline;
    font-size: 24px;
    line-height: 22px;
}

.form-agree label {
    display: inline;
    	font-size:16px;
}

.form-agree .field-validation-error {
    display: inline-block;
}

.form-agree a {
    text-decoration: underline;
}

.form-agree a:hover {
    text-decoration: none;
}

.grecaptcha-badge {
    display: none !important;
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}


/* START SCROLL TO TOP 
==============================*/
.toTop {
    text-align: right;
}
a.scrollup {
    background: url(../images/arrow-toTop.svg) no-repeat center center;
    background-size: 50%;
    bottom: 0;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 55px;
    height: 50px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
}
.scrollup.is-visible {
    display: inline;
    opacity: 1;
}



/* HOTEL FACILITIES 
===========================*/
.facilities-section ul {
    column-count: 3;
}
@media screen and (max-width: 991px) {
    .facilities-section ul {
        column-count: 2;
    }
}
@media screen and (max-width: 767px) {
    .facilities-section ul {
        column-count: 1;
    }
}

.privacy {
    text-align: justify;
}
.wordbreak ul{
    margin:0px 0 0 20px;
    padding:0px;
}
.wordbreak ul li{
    list-style-type: disc;
    padding-left: 0px;
    margin-bottom: 0px;
}

.wordbreak a{
     word-break: break-word;  
}

.cookie-icon {
    position:fixed;
    left:20px;
    bottom:20px;
    opacity: 1;
    width:46px;
    height:46px;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    padding:6px;
    font-size:8px;
    z-index: 10;
}
/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
   /* max-width:640px;*/
           margin-right: auto;
        margin-left: auto;
  }
.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
  padding: 20px;
  border-radius: 0px;
  border: none;
  text-align: left;
}
#popupModal .modal-content.padding{
      padding: 20px;
}
#popupModal .modal-content.padding .modal-body{
      padding: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: -20px;
  top: -20px;
  opacity: .8;
  border-radius: 0px;
}
.modal-body .text-margin {
    margin:30px
}

@media screen and (max-width: 767px) {
    .modal .modal-dialog {
        max-width:400px;
    }
    .modal-body .text-margin {
        margin:30px 15px;
    }
}
@media screen and (min-width: 768px) {

}
.offers-popup{
    text-align:center;  
}
.offers-popup h2 {
    text-align:center;
    padding-top:15px;
}
.text-space{
    padding:15px;
}


/*END POPUP
========================== */
.sitemap {
    text-transform:uppercase;
     font-size: 20px;
}    
.sitemap a{
    text-decoration:none;
}
.sitemap a:hover{
    text-decoration:underline;
}


.img-animation{
  visibility: hidden;
  width: 100%;
  height: 100%;
}
/*
.fade-in-from-left {
    transform: translateX(-100%);
    opacity:0;
}*/
.fade-in-from-right {
        transform: translateX(100%);
    opacity:0;
}
