/** START OF GENERAL SETTINGS **/
:root {
  --fontYsabeau: "Ysabeau Infant", sans-serif;
  --fontFira: "Fira Sans Condensed", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --brown: #2d0f0a;
  --gold: #d29f5c; /*#c89b5f*/
  --grey: #f5f0eb;
  --greyBg: rgba(245, 240, 235, 1);
  /*--bgBlueLight: rgb(200, 155, 95, 0.2);*/
  --bgBlueLight: #f2f2f2;
  --transition3s: 0.3s linear;
  --backdropBlur: blur(1.5px);
  --gold-light:#efdfc9;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

.bgBlueLight {
  background-color: var(--bgBlueLight);
}

.bgBlack {
  background-color: var(--gold);/* var(--black);*/
  color: var(--white);
}

.bgBrown {
  background-color: var(--brown);
  color: var(--gold);
}

*,
*::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;
}

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 {
  color: var(--brown);
  text-decoration: none;
  transition: var(--transition3s);
}

a:hover {
  color: var(--gold);
}

ul {
    list-style-position: inside;
}

/** FOR MAV IOS **/
/*input[type="checkbox"],*/
/*a[type="submit"] {*/
/*  -webkit-appearance: none !important;*/
/*  border-radius: 0;*/
/*  border: none;*/
/*  -webkit-border: none;*/
/*  appearance: none;*/
/*  outline: none;*/
/*}*/

button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

picture {
  display: block;
  height: 100%;
  width: 100%;
}

picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/** END OF GENERAL SETTINGS **/
/**START OF BODY AND HEADINGS **/
body {
  font-family: var(--fontFira);
  /*color: var(--black);*/
  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;
}

.noTopMedia {
  margin-top: 118px;
}

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);
}

.text-justify {
  text-align: justify !important;
}

h1,
h2,
.h1,
.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;
}

.bgBlack h1,
.bgBlack h2,
.bgBlack .h1,
.bgBlack .h2,
.bgBlack h3 {
  color: var(--white);
}

.bgBrown h1,
.bgBrown h2,
.bgBrown .h1,
.bgBrown .h2,
.bgBrown h3 {
  color: var(--gold);
}

h1,
.h1 {
   font-size: 40px;
}

/*.el h1, .el .h1 { */
/*    font-size: 40px;*/
/*}*/

h2,
.h2 {
  font-size: 35px;
}


h3 {
  font-size: 30px;
}

.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;
  color: var(--black);
  background: rgba(0,0,0,0.005);
}

.el .section-subtitle {
    unicode-bidi: plaintext;
    direction: ltr;
}

.bgBlack .section-subtitle {
  color: var(--white);
}

.bgBrown .section-subtitle {
  color: var(--gold);
}

@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 35px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }
 
}

@media screen and (max-width: 991px) {

  .noTopMedia {
    margin-top: 110px;
  }
}

@media screen and (max-width: 575px) {
  h1,
  .h1 {
    font-size: 32px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 27px;
  }
  .noTopMedia {
    margin-top: 90px;
  }
}

/**END OF BODY AND HEADINGS **/

/** START OF MARGIN  **/
.marginTop {
  margin-top: 90px;
}

.paddingTop {
  padding-top: 90px;
}

.noTopMedia .paddingTop {
  padding-top: 90px;
}

.paddings {
  padding: 90px 0px 90px;
}

@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 70px;
  }

  .paddingTop {
    padding-top: 70px;
  }
  
  .noTopMedia .paddingTop {
    padding-top: 70px;
}

  .paddings {
    padding: 70px 0px 70px;
  }
}

@media screen and (max-width: 991px) {
  .marginTop {
    margin-top: 50px;
  }

  .paddingTop {
    padding-top: 50px;
  }
  
  .noTopMedia .paddingTop {
    padding-top: 50px;
}

  .paddings {
    padding: 50px 0px 50px;
  }
}

/** END OF MARGIN  **/

/* START OF BUTTON  */
.btn-left {
  font-family: var(--fontYsabeau);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  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;
}
@media screen and (max-width: 575px) {
    .btn-left {
        padding: 10px 20px;
         font-size: 16px;
    }
}
.btn-left:hover {
  background: var(--bgBlueLight);
  color: var(--black);
}

.btn-left:before,
.btn-left:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
  border: 1px solid var(--black);
  border-left: 0;
  border-right: 0;
  transition: var(--transition3s);
}

.btn-left:before,
.btn-left:after {
  top: 0;
  width: 100%;
  height: 100%;
}

.btn-left:before {
  right: 0;
  border: 1px solid var(--black);
  border-left: 0;
  border-right: 0;
}

.btn-left:after {
  left: 0;
}

.btn-left:hover:after {
  background: var(--bgBlueLight);
  border: 1px solid var(--black);
  border-left: 0;
  border-right: 0;
}

.btn-left.revert { 
    color: var(--black);
    background: var(--bgBlueLight);
}

.btn-left.gold {
  color: var(--gold);
}

.btn-left.gold:hover:after{
  background: var(--gold);
}

.btn-left.gold:hover{
  color: var(--brown);
}

.btn-left.gold:before, 
.btn-left.revert:before {
  border: 1px solid var(--gold);
  border-left: 0;
  border-right: 0;
}

.btn-left.revert:hover {
    color: var(--white);
    background: var(--black);
}

.btn-left.revert:hover:after { 
    color: var(--white);
    background: var(--black);
}

.btn-left.revert:hover::before {
  border: 1px solid var(--black);
}

.bgBlack .btn-left,
.white-btn {
  color: var(--white);
  background: rgba(0,0,0,0.005);
  /*background: transparent;*/
}
.bgBlack .btn-left:after, 
.bgBlack .btn-left:after, 
.white-btn:before {
  border: 1px solid var(--white);
  border-left: 0;
  border-right: 0;
}

.bgBlack .btn-left:hover,
.white-btn:hover {
  color: var(--brown);
}

.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 {
  border: 1px solid var(--white);
  border-left: 0;
  border-right: 0;
}

.white-btn::after, .white-btn::before {
    border: 1px solid var(--white);
    border-left: 0;
  border-right: 0;
}

/* END OF BUTTON  */

/* START OF HEADER  */

header {
  padding: 30px 50px;
  background-color: transparent;
}

.headerBg {
/*  padding: 15px 50px;*/
  transition: var(--transition3s);
}

.headerBg, .noTopMedia header {
  background-color: var(--grey);/*--black*/
  padding: 14px 50px
}

.header-logo img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 130px;
  filter: brightness(0) invert(1);
}

.header-logo a {
    display: block;
}

.noTopMedia .header-logo img {
  max-height: 90px;
    filter: invert(1) brightness(0);
}

.headerBg .header-logo img {
  max-height: 70px;
  filter: invert(1) brightness(0);
}

header .bookBtn {
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  border: 1px solid var(--white);
  padding: 10px 32px;
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  background: rgba(0,0,0,0.005);
  transition: var(--transition3s);
}

.headerBg .bookBtn, .noTopMedia header .bookBtn {
  border: 1px solid var(--black); /* --white */
  color: var(--black); /* --white */
}

header .bookBtn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* BURGER NAV */
.burger_nav {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
  transition: 0.1s;
}

.burger_nav span {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  transition: var(--transition3s);
  border-radius: 0%;
}

.headerBg .burger_nav span,
.noTopMedia .burger_nav span {
  background-color: var(--black);
}

.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: 12px;
  top: 0;
}

.burger_nav span:nth-child(3) {
  right: 0;
  top: 0;
}

.burger_nav span:nth-child(4) {
  left: 0;
  top: 12px;
}

.burger_nav span:nth-child(5) {
  left: 12px;
  top: 12px;
}

.burger_nav span:nth-child(6) {
  right: 0px;
  top: 12px;
}

.burger_nav span:nth-child(7) {
  left: 0px;
  bottom: 0px;
}

.burger_nav span:nth-child(8) {
  left: 12px;
  bottom: 0px;
}

.burger_nav span:nth-child(9) {
  right: 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: 50%;
  transition-delay: 200ms;
  transition: 0.5s cubic-bezier(0.8, 0.5, 0.2, 1.4);
}

.burger_nav.open span:nth-child(2) {
  left: 6px;
  top: 6px;
}

.burger_nav.open span:nth-child(4) {
  left: 6px;
  top: 18px;
}

.burger_nav.open span:nth-child(6) {
  right: 6px;
  top: 6px;
}

.burger_nav.open span:nth-child(8) {
  left: 18px;
  bottom: 6px;
}

.lock-scroll header .burger_nav span,
.lock-scroll header .burger_nav span::before,
.lock-scroll header .burger_nav span::after {
  background-color: var(--black);
}

/* BURGER NAV */

/* LANGUAGES  */

.menu .languagesDrop .dropdown-toggle {
  color: var(--black);

}

.languagesDrop .dropdown-item {
     font-size: 18px;
}

.languagesDrop .dropdown-toggle {
  color: var(--white);
  transition: var(--transition3s);
  font-weight: 400;
  background: rgba(0,0,0,0.005);
}

.headerBg .languagesDrop .dropdown-toggle, 
.noTopMedia .languagesDrop .dropdown-toggle {
  color: var(--black);
} 

.languagesDrop .dropdown-menu {
  min-width: 55px;
  border-radius: 0;
  padding: 5px 0px;
  font-size: 15px;
  background: var(--bgBlueLight);
  left: -10px !important;
}

.languagesDrop .dropdown-item:focus, 
.languagesDrop .dropdown-item:hover {
    background: var(--black);
    color: var(--white);
}

/* LANGUAGES  */

/* NAVIGATION  */
.nav_wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 2;
  letter-spacing: 2px;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
  scrollbar-width: none;
}

.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;*/
}

nav {
  pointer-events: none;
}

.menu_desc {
  position: relative;
  opacity: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: var(--brown);
  transition: var(--transition3s);
}

nav .menu_item {
  font-size: 5vh;
  list-style: none;
  width: fit-content;
  margin: 0 auto 25px;
}

nav .menu_item:last-of-type {
  margin-bottom: 0;
}

nav a {
  position: relative;
  font-weight: 400;
  color: var(--black);
  pointer-events: auto;
  z-index: 10;
  font-size: 30px;
  display: inline-block;
  opacity: 0;
  text-transform: uppercase;
  transition: var(--transition3s);
}

nav a:hover {
  color: var(--purple);
}

nav:hover a:not(:hover) {
  color: var(--black);
}

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 {
  opacity: 1;
  transition-delay: 0.2s;
}

.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: -50px;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: 40px;
  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: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: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;
  }
}

/* NAVIGATION  */

@media screen and (max-width: 1199px) {
  header {
    padding: 30px 30px;
  }

  .headerBg {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 991px) {
  .header-logo img {
    height: auto;
    max-height: 90px;
  }

  .headerBg .header-logo img {
    height: auto;
    max-height: 60px;
  }

  header .bookBtn {
    font-size: 14px;
    padding: 10px 15px;
  }

  header, .headerBg, .noTopMedia header {
    padding: 10px 15px;
  }

  .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 {
        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 {
        display: none;
    }
    nav a::after {
        display: none;
    }
}

@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: 12px;
    padding: 10px 5px;
    width: 68px;
    /*
            font-size: 12px;
        padding: 7px 5px;
        width: 65px;
        letter-spacing: .5px;*/
  }

  .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 HEADER  */

/* 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(45, 15, 10, 0.2) 0%,*/
  /*    rgba(45, 15, 10, 0.15) 50%,*/
  /*    rgba(45, 15, 10, 0.2) 100%*/
  /*  ),*/
  /*  linear-gradient(*/
  /*    180deg,*/
  /*    rgba(45, 15, 10, 0.2) 0%,*/
  /*    rgba(45, 15, 10, 0.15) 50%,*/
  /*    rgba(45, 15, 10, 0.2) 100%*/
  /*  );*/
    
    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 .carousel-control-next,
#bigCarousel .carousel-control-prev {
  width: 60px;
  height: 60px;
  top: 45%;
  transform: translateY(-45%);
}

#bigCarousel .carousel-control-next {
  right: 40px;
}

#bigCarousel .carousel-control-prev {
  left: 40px;
}

#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
  transition: var(--transition3s);
}

#bigCarousel .carousel-control-next:hover,
#bigCarousel .carousel-control-prev:hover {
  filter: brightness(1.5);
}

#bigCarousel .carousel-caption {
  left: 8%;
  bottom: 15%;
  right: unset;
  max-width: 50%;
}

#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: 600px;
  }

  #bigCarousel .carousel-control-prev {
    left: 10px;
  }

  #bigCarousel .carousel-control-next {
    right: 10px;
  }

  .scrollToSection {
    bottom: 4%;
  }

  #bigCarousel .carousel-caption {
    bottom: 5%;
  }
  
  #bigCarousel .carousel-caption .h1 {
    font-size: 45px;
  }
}

@media screen and (max-width: 575px) {
  #bigCarousel,
  #bigCarousel .carousel-item {
    position: relative;
    height: 500px;
  }

  #bigCarousel .carousel-caption,
  .scrollToSection {
    left: 8%;
  }

  #bigCarousel .carousel-control-prev {
    left: 0px;
  }

  #bigCarousel .carousel-control-next {
    right: 0px;
  }
  
  #bigCarousel .carousel-caption {
    max-width: 85%;
    }
  
  #bigCarousel .carousel-caption .h1 {
    font-size: 35px;
  }
}

/* END OF CARROUSEL  */

/* START OF REVIEWS ROW  */
.reviewsRow {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.reviewsRow,
.reviewsRow a {
  color: var(--white);
}

.reviewsRow .leftRow {
  border-right: 1px solid var(--black);
  color: var(--black);
}

.reviewsRow .leftRow .col-6:first-child {
  border-right: 1px solid var(--black);
}

@media screen and (max-width: 991px) {
  .reviewsRow .leftRow {
    border-right: 0;
    border-bottom: 1px solid var(--white);
  }

  .reviews .rightCol {
    margin-top: 0 !important;
  }

  .reviewsRow,
  .reviewsRow a {
    font-size: 16px;
  }
}

/* END OF REVIEWS ROW  */

/* HOME PAGE  */
.swiper {
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}

.leftSwiper,
.rightSwiper {
  width: 80%;
  position: relative;
  padding-bottom: 50px;
}

.leftSwiper .swiper-slide,
.rightSwiper .swiper-slide {
  height: 750px;
  position: relative;
}

.swiper-pagination {
  width: auto !important;
}

.rightSwiper .swiper-pagination {
  right: 0;
  left: unset !important;
}

.swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 26px;
  font-size: 22px;
  font-weight: 400;
  color: var(--purple);
  opacity: 0.3;
  margin: 0 14px !important;
  background: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  color: var(--black);
}

.welcomeText {
  position: absolute;
  top: 18%;
  right: 0;
  z-index: 2;
  width: 50%;
}

.restoHome .welcomeText {
  left: 0;
  right: unset;
}

.roomsSwiper .swiper-slide,
.otherRoomsSwiper .swiper-slide,
.OfferCol,.roomRow .room-slide{
  text-align: center;
  height: 700px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.roomsDetails .list-details {*/
/*    text-transform: capitalize;*/
/*}*/


.roomsSwiper .section-subtitle, 
.otherRoomsSwiper .section-subtitle {
    color: var(--white);
    background: rgba(0,0,0,0.005);
}

.roomsSwiper .swiper-slide::before,
.OfferCol::before,
.roomRow .room-slide::before,
.otherRoomsSwiper .swiper-slide::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /*background: rgba(45, 15, 10, 0.45);*/
}

.leftSwiper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 750px;
  z-index: 2;
  /*background: linear-gradient(*/
  /*  90deg,*/
  /*  rgba(0, 0, 0, 0.04) 0%,*/
  /*  rgba(0, 0, 0, 0.02) 50%,*/
  /*  rgba(255, 255, 255, 1) 100%*/
  /*);*/
  
  /*background: linear-gradient(*/
  /*  90deg,*/
  /*  rgba(45, 15, 10, 0.04) 0%,*/
  /*  rgba(45, 15, 10, 0.04) 20%,*/
  /*  rgba(45, 15, 10, 0.95) 100%*/
  /*);*/
  
  /*background: linear-gradient(*/
  /*  90deg,*/
  /*  rgba(0, 0, 0, 0.04) 0%,*/
  /*  rgba(0, 0, 0, 0.04) 20%,*/
  /*  rgba(0, 0, 0, 0.95) 100%*/
  /*);*/
  
  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%
  );
}

.rightSwiper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 750px;
  z-index: 2;
  /*background: linear-gradient(*/
  /*  90deg,*/
  /*  rgba(255, 255, 255, 1) 0%,*/
  /*  rgba(0, 0, 0, 0.02) 50%,*/
  /*  rgba(0, 0, 0, 0.04) 100%*/
  /*);*/
  
  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%
  );
}


.leftSwiperSection .h1, 
.leftSwiperSection h1,
.rightSwiperSection .h1,
.rightSwiperSection h1,
.leftSwiperSection .section-subtitle,
.rightSwiperSection .section-subtitle {
    /*color: var(--gold);*/
        background: rgba(0,0,0,0.005);
}

.swiper-slide .swiper-text h2{
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition3s);
  background: rgba(0,0,0,0.005);
}

.OfferCol .OfferCol-text h2,
.OfferCol .OfferCol-text .section-subtitle,
.roomRow .room-slide .swiper-text h2,
.roomRow .room-slide .swiper-text .section-subtitle{
  text-align: center;
  color: var(--white);
  background: rgba(0,0,0,0.005);
}

.swiper-text {
  color: var(--white);
  position: absolute;
  padding: 30px 10px;
  z-index: 2;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roomRow .room-slide .swiper-text,
.otherRoomsSwiper .swiper-text,
.otherRoomsSwiper .swiper-text h2{
    opacity: 1;
}

.OfferCol .OfferCol-text {
  color: var(--white);
  position: absolute;
  z-index: 1;
}

.OfferCol-text p {
    background: rgba(0,0,0,0.005);
}

.swiper-photo {
  height: 100%;
  width: 100%;
}

.swiper-slider-link {
  color: var(--white);
}

.swiper-slider-link:hover {
  color: var(--white);
}

.swiper-slide.swiper-slide-visible.swiper-slide-active
  .swiper-text
  .roomsDetails {
  opacity: 1;
  visibility: visible;
}

.roomsDetails ul li {
  text-transform: uppercase;
}
/*.roomDetails .detail:not(:last-child) {*/
.roomDetails .detail {
    margin:0 10px;
    max-width: 33%;
}
.roomDetails.inroom{
   margin-bottom:20px; 
}
.roomDetails .detail span{
    display:none;
}
.roomDetails.inroom .detail span{
    display:block;
    font-size:13px;
}

.roomShortDescription p {
    background: rgba(0,0,0,0.005);
}

.swiper-slide.swiper-slide-visible.swiper-slide-active .swiper-text{
  opacity: 1;
  transition: var(--transition3s);
}

.swiper-slide.swiper-slide-visible.swiper-slide-active .swiper-text h2 {
  opacity: 1;
  transition: var(--transition3s);
}

.swiper-button-next,
.swiper-button-prev {
  top: 50px;
  color: var(--black);
  opacity: 1 !important;
  background: var(--bgBlueLight);
  padding: 20px;
}

.leftSwiper .swiper-button-next,
.leftSwiper .swiper-button-prev,
.rightSwiper .swiper-button-next,
.rightSwiper .swiper-button-prev {
  color: var(--black);
  background: var(--bgBlueLight);
  /*background: var(--gold);*/
  padding: 20px;
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  right: 60px;
  left: unset !important;
}

.rightSwiper .swiper-button-prev {
  right: unset;
  left: 20px !important;
}

.rightSwiper .swiper-button-next {
  right: unset;
  left: 60px;
}

.roomsSwiper .swiper-button-next,
.roomsSwiper .swiper-button-prev{
  top: 120px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 32px;
  padding: 5px;
}

.list-details {
  background: rgba(0,0,0,0.005);
}

.why-box {
  position: relative;
  z-index: 1;
}

.why-box .number {
  font-family: var(--fontYsabeau);
  font-size: 80px;
  margin: 10px;
  line-height: 1;
  backdrop-filter: var(--backdropBlur);
}

.reviews .leftCol {
  height: 600px;
  min-height: 500px;
}

.reviewName {
  font-family: var(--fontYsabeau);
  font-size: 35px;
  line-height: 1.2;
  text-transform: capitalize;
}

.reviewSource {
  font-family: var(--fontFira);
  font-weight: 600;
  /*color: var(--black);*/
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reviewText {
  margin-top: 30px;
}

.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
  top: 22px;
  color: var(--white);
  background: var(--black);
  z-index: 100;
  width: 35px;
}

.reviewsSwiper .swiper-button-next {
  right: 0;
}

.reviewsSwiper .swiper-button-prev {
  right: 35px;
}

.awardsSwiper img,
.awards-list img {
  height: 100px;
      width: auto;
  margin: 8px 5px;
}

.awardsSwiper .swiper-button-next,
.awardsSwiper .swiper-button-prev {
  top: 245px;
  color: var(--gold);
  background: var(--brown);
}

.awardsSwiper .swiper-button-prev {
  right: unset;
  left: -50px !important;
}

.awardsSwiper .swiper-button-next {
  right: -50px;
}

.instagram picture {
  height: 300px;
  display: none;
  transition: var(--transition3s);
}

.instagram picture:hover {
  filter: grayscale(70%);
}

footer {
  padding: 60px 0px 30px;
  font-weight: 300;
  color: var(--gold);
  font-weight: 500;
}

/*footer h2 {*/
/*  color: var(--gold) !important;*/
/*}*/

.footer-logo img {
  height: 110px !important;
  width: auto;
  filter: brightness(0) invert(1);
}

.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%)*/
/*}*/

.newsletterForm .form-control {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--white);
  font-size: 15px;
  color: var(--white);
}

.newsletterForm .form-control::placeholder { 
  color: var(--white);
}


footer a {
  transition: var(--transition3s);
  /*color: var(--gold);*/
  color: var(--white);
}

footer .bottomMenu  a {
    text-transform: uppercase;
}

footer a:hover {
  color: var(--gold-light); /*--gold*/
}

.copyright {
  font-size: 14px;
  font-weight: 300;
}

.bottomMenu li {
  margin-bottom: 8px;
}

.bottomMenu li:last-child {
  margin-bottom: 0px;
}

@media screen and (max-width: 991px) {
  .reviews .leftCol {
    height: auto;
  }

  .awardsSwiper .swiper-button-next,
  .awardsSwiper .swiper-button-prev {
    top: 190px;
  }
  
  .swiper-button-prev:after, 
  .swiper-rtl .swiper-button-next:after, 
  .swiper-button-next:after, 
  .swiper-rtl .swiper-button-prev:after {
    font-size: 25px;
  }
  
  .leftSwiper .swiper-button-next, 
  .leftSwiper .swiper-button-prev, 
  .rightSwiper .swiper-button-next, 
  .rightSwiper .swiper-button-prev {
    padding: 15px;
    }
    
    .swiper-button-prev {
    right: 50px;
    }
    
    .rightSwiper .swiper-button-next {
    left: 50px;
}
}

@media screen and (max-width: 767px) {
  .leftSwiper,
  .welcomeText,
  .restoHome .welcomeText,
  .rightSwiper {
    width: 100%;
  }

  .welcomeText {
    position: static;
  }

  .leftSwiper .swiper-slide,
  .rightSwiper .swiper-slide,
  .leftSwiper::before,
  .rightSwiper::before {
    height: 500px;
  }

    .roomsSwiper .swiper-button-next,
    .roomsSwiper .swiper-button-prev,
    .otherRoomsSwiper .swiper-button-next,
    .otherRoomsSwiper .swiper-button-prev {
    top: 50px;
  }
  
  .leftSwiperSection .h1, 
  .leftSwiperSection h1, 
  .rightSwiperSection .h1, 
  .rightSwiperSection h1, 
  .leftSwiperSection .section-subtitle, 
  .rightSwiperSection .section-subtitle {
    color: var(--brown);
    }
}

@media screen and (max-width: 575px) {
  .leftSwiper .swiper-slide,
  .rightSwiper .swiper-slide,
  .leftSwiper::before,
  .rightSwiper::before {
    height: 400px;
  }

  .awardsSwiper .swiper-button-prev {
    left: -20px !important;
  }

  .awardsSwiper .swiper-button-next {
    right: -20px;
  }
  
  .instagram picture {
    height: 200px;
  }
}

/* HOME PAGE  */

/* ROOMS PAGE  */
.tab {
  border-right: 1px solid var(--black);
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.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(--bgBlueLight);
}

.tabcontent {
  text-align: left;
  padding: 0px 30px;
}

.tabcontent a {
  display: block;
}

.tabcontent picture {
  height: 550px;
}

.gridColumns {
  text-align: left;
}

.gridColumns .leftCol {
  border-right: 1px solid var(--black);
  padding-right: 25px;
}

.gridColumns .rightCol {
  padding-left: 80px;
}

.roomFacilities ul {
  columns: 2;
    column-gap: 70px;
    margin: auto;
    text-align: center;
}

.roomFacilities ul li {
  margin-bottom: 15px;
  /*text-transform: capitalize;*/
  text-align:left;
}
.roomFacilities ul li span img{
    height:30px;
}

.gallery picture {
  height: 250px !important;
}

@media screen and (max-width: 1199px) {
  .tabcontent picture {
    height: 430px;
  }
  .roomFacilities ul {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .tab {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    border: 0;
  }

  .tab button {
    width: auto;
  }

  .roomListingTabs button {
    width: 33%;
    text-align: center;
  }

  .roomFacilities ul {
    text-align: left;
    width: 100%;
  }

  .tabcontent {
    padding: 0;
  }

  .tabcontent picture {
    height: 350px;
  }

  .gallery picture {
    height: 200px !important;
  }

  .tab button {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .gridColumns .leftCol {
    border-right: none;
    padding-right: 0px;
    padding-bottom: 30px;
  }

  .gridColumns .rightCol {
    padding-left: 0px;
  }
}

@media screen and (max-width: 575px) {
  .tabcontent picture {
    height: 350px;
  }

  .gallery picture {
    height: 150px !important;
  }

  .tab button {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .roomFacilities ul {
    columns: 1;
    column-gap: 0px;
  }

  .roomFacilities ul li {
    font-size: 18px;
  }

  .roomListingTabs button {
    width: 45%;
    text-align: center;
  }
}

/* ROOMS PAGE  */

/* 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: 15px;
  border-bottom: 1px solid var(--black);
}

.contact-details li {
  margin-bottom: 8px;
}
.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 {
    font-weight:bold;
}
.asterisk span {
  display: inline;
  font-size: 24px;
  line-height: 22px;
}

.form-agree label {
	display:inline;
}
.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;
}

/* CONTACT PAGE  */

/* RESTO & BAR PAGE */
.imgCol {
  height: 750px;
}

@media screen and (max-width: 991px) {
  .imgCol {
    height: 500px;
  }
}

@media screen and (max-width: 575px) {
  .imgCol {
    height: 350px;
  }
}

/* RESTO & BAR PAGE */

/* START SCROLL TO TOP  */
.toTop {
  text-align: right;
}

a.scrollup {
  position: fixed;
  right: 2%;
  bottom: 20px;
  background: url("../images/arrow-up.png") no-repeat top center;
  background-size: 32px;
  width: 32px;
  height: 32px;

  z-index: 3;
  display: none;
}

.scrollup.is-visible {
  display: inline;
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  a.scrollup {
    right: 5%;
  }
}
/* END SCROLL TO TOP  */

/* HOTEL FACILITIES  */
.hotel-facilities ul {
  column-count: 2;
}

@media screen and (max-width: 991px) {
  .hotel-facilities ul {
    column-count: 1;
  }
}
/* HOTEL FACILITIES  */


.imageForListing picture {
    height: 750px;
}


@media screen and (max-width: 991px) { 
    .imageForListing picture {
        height: 500px;
    }
}


@media screen and (max-width: 575px) { 
    .imageForListing picture {
        height: 350px;
    }
}

.YT-container iframe {
  width: 100vw;
  height: 100%;
  pointer-events: none;
}

iframe {
  width: 100%;
}

.YT-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  background-color: white;
}

#YT-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: opacity 0.5s;
  transition-delay: 3.3s;
}

#yt-player {
  position: relative;
  width: 100%;
  margin: auto;
  background-color: white;
}

#yt-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#popupModal .modal-dialog {
    max-width: 550px;
    width: 90%;
    margin: 20px auto;
}

#popupModal .modal-content {
    border-radius: 0;
    background-color: #ECDFCF;
}

#popupModal .img {
    height: 300px;
}

.modal-header {
    border: none;
}

.pageNotFound a {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
}

/* Hide accommodation grey swiper section */
div.paddings.leftSwiperSection.bgBlueLight{
    display: none;
}
/*NEW ROOMS LISTING*/
/*MANUALS LISTING
======================*/
.manual-page {
/*    text-align:left;*/
}
.manuals-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:40px;
}
.manuals-listing .box{
    margin:10px;
    background-color: var(--bgBlueLight);
    padding: 20px 24px 22px;

}
.manuals-listing .box h2{
    margin: 0px !important;
    line-height: 1;
}
@media screen and (max-width: 767px) { 
    .manuals-listing .box{
        padding: 15px 15px 17px;
        width: calc(50% - 30px);
    }
}
@media screen and (max-width: 360px) { 
    .manuals-listing .box{
        width:calc(100% - 30px);
    }
}
/*
@media screen and (min-width: 768px) { 
    .accordion.sublist {
        margin-left:30px;
    }
}*/
.manuals-container a,
.manuals-container .accordion-button{
    text-decoration:underline;
}
.manuals-container a:hover{
    text-decoration:none;
}
.manual-title,
.accordion .accordion-header{
    margin:0;
    margin-bottom:10px;
}
.manual-title:before,
.itemscount1 .accordion-header:before{
    content: "\2022";  
     content: "● ";
}
.accordion{
    margin-bottom:20px;
}
.accordion .accordion-header,
.accordion .accordion-header .accordion-button{
    font-family: var(--fontFira);
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    padding: 0;
    transition: var(--bs-accordion-btn-icon-transition);
}
.accordion .accordion-header .accordion-button{
    justify-content:center;
}
.accordion .accordion-header .accordion-button:hover{
    text-decoration:none;
}
.accordion-button::after {
    margin-left: 10px;
    transform: rotate(-90deg);
}

.accordion .accordion-header .accordion-button:not(.collapsed){
    background-color: var(--bgBlueLight);
    padding: 10px 18px;
}
.accordion-flush .accordion-item {
    border:0;
}
.accordion-collapse.collapse.show{
    border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    margin-bottom:30px;
}
.accordion-body {
    text-align:left;
}
.accordion-body ol{
    margin-left:20px;
}
.back-btn{
    margin-top:40px;
    text-align:center;
}
/*UMBRACO FORMS
==========================*/

.umbraco-forms-page {
   width:100%;
    margin:auto;
    text-align:left;
    padding-top:30px;
}
@media (min-width: 768px) {
   .form-checkin .umbraco-forms-page {
        width:70%;
    }
}
.form-checkin {
    margin-top:30px;
}
.umbraco-forms-hidden {
    display:none;
}
.umbraco-forms-container {
    display:flex;
    flex-wrap:wrap;
}

.umbraco-forms-field {
    width:50%;
}
@media (max-width: 575px) {
    .umbraco-forms-field {
        width:100%;
    }  
}
.contactform .umbraco-forms-field {
    width:100%;
}

.multiplechoice, 
.consentforstoringsubmitteddata {
     width:100%;   
}
.receiveupdates {
     margin-bottom: 5px!important;
}
.receiveupdates .umbraco-forms-field-wrapper {
    display: flex;
    align-items: start;
    line-height: 1.2;
}
.receiveupdates input {
    margin-top: 3px;
}
.receiveupdates label {
    padding-left:5px;
}
.umbraco-forms-field,
.umbraco-forms-navigation,
.umbraco-forms-fieldset legend{
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom:15px;

}
.umbraco-forms-fieldset legend{
    text-align:center;
    color: var(--blue00);
    margin-bottom:30px;
    margin-top:30px;
    font-size: 30px;
        font-weight: 200;
}
@media (max-width: 575px) {
  .umbraco-forms-fieldset legend{
    font-size: 28px;
  }
}
.umbraco-forms-navigation .btn {
    font-family: var(--fontYsabeau);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--white);
    background: var(--black);
    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;
}

.umbraco-forms-navigation .btn:hover,
.umbraco-forms-navigation .btn:focus{
        background-color:var(--white);
    color:var(--blue00);
}

.umbraco-forms-field input.text,
.umbraco-forms-field textarea,
.umbraco-forms-field select{
    border: 0;
    padding: 0px; /*8px;*/
    width: 100%;
    border-bottom: 1px solid rgba(193, 192, 192, 1);
    color:#6e6b6b;
}
.umbraco-forms-field input[type="file"] {
    background-color:#f2f2f2;
    color: #6e6b6b;
}
.umbraco-forms-field input:focus-visible,
.umbraco-forms-field textarea:focus-visible{
    outline-offset: 0px;
    outline: none;
}

.requestform .umbraco-forms-field.longanswer.form_message,
.requestform .dataconsent {
    width:100%;
}
.umbraco-forms-field-wrapper .checkboxlist {
    margin-top: 10px;
    display: block;
    margin-bottom: 15px;
}

.umbraco-forms-submitmessage,
.umbraco-forms-submitmessage-html{
    text-align:center;
    display:block;
}
