/** START OF GENERAL SETTINGS **/
:root {
  --fontMain: "Manrope", sans-serif;
  --fontNoto: "Noto Serif", serif;
  --white: #ffffff;
  --black: #2a2a2a;
  --mainColor: #e0e2e5;
  --bgCreamDark: #f1f1f1;
  --bgButton: #f99300;
  --transition3s: 0.3s linear;
  --backdropBlur: blur(1px);
  --mainColorOpacity: #45545a26;
}

.bg-darker {
  background: var(--mainColor);
}

.bgMainColorOpacity {
  background: var(--mainColorOpacity);
}

.bgMainColor {
  background: 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;
}

button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:focus,
a:focus {
  box-shadow: none !important;
  outline: none;
}

a,
a:hover {
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition3s);
}

a:hover { 
  text-decoration: underline;
}

.bgMainColor a,
.bgMainColor a:hover {
  color: var(--white);
}

a.light,
.light,
.bgGreydLightOpacity a {
  color: var(--white);
}

.nav-link {
  font-family: var(--fontMain);
  font-size: 14px;
  padding: 0 !important;
  color: var(--white);
  background: rgba(0, 0, 0, 0.005);
}

a:hover {
  color: var(--gold-main);
}

li a.nav-link {
  position: relative;
}

li a.nav-link:after {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s ease-out;
  border-bottom: 1px solid;
}

.text-hover a.active:after,
.text-hover .active a:after,
.text-hover.active a.nav-link:after,
.text-hover a.nav-link:hover:after,
.text-hover li a:hover:after,
.text-hover a:hover:after,
a.text-hover:hover:after,
.text-hover li a:focus:after,
.text-hover a:focus:after,
a.text-hover:focus:after {
  width: 100%;
}

/** FOR MAV IOS **/
input[type="checkbox"],
a[type="submit"] {
  float: none !important;
}

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;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button {
  background-color: var(--black);
  background-image: url(../images/arrow-next.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  width: 90px;
  height: 48px;
  background-size: 70px;
  top: unset;
  opacity: 0.9 !important;
  pointer-events: visible !important;
  transition: 0.3s ease;
  cursor: pointer !important;
}

.swiper-button.swiper-button-next:hover {
  background-position: 70% 50%;
}

.swiper-button.swiper-button-prev:hover {
  background-position: 70% 50%;
}

.imgCol picture {
  min-height: 700px;
  height: 100%;
}

@media screen and (max-width: 1399px) {
  .nav-link {
    font-size: 13px;
  }
}

@media screen and (max-width: 1199px) {
  .nav-link {
    color: var(--black) !important;
    font-size: 17px;
    padding: 10px 0px !important;
  }
}

@media screen and (max-width: 991px) {
  .imgCol picture {
    min-height: 500px;
  }
  a.light {
    color: var(--black) !important;
  }
}

@media screen and (max-width: 575px) {
  .imgCol picture {
    min-height: 350px;
  }
}
/** END OF GENERAL SETTINGS **/

/**START OF BODY AND HEADINGS **/
body {
  font-family: var(--fontMain);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  background: var(--bgCreamDark);
  text-align: left;
  overflow-x: hidden;
}

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(--bgCreamDark);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--gold-main);
}

h1,
h2,
.h1,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: var(--fontMain);
  line-height: 1;
  color: var(--black);
  font-weight: 100;
  position: relative;
  display: block;
  overflow-wrap: break-word;
  text-align: left;
  text-transform: capitalize;
}

.subtitle {
  font-size: 20px;
  font-weight: 400;
  display: block;
  padding-left: 8px;
}

.bgMainColor h1,
.bgMainColor h2,
.bgMainColor .h1,
.bgMainColor .h2,
.bgMainColor h3,
.bgMainColor .h3,
.bgMainColor h4,
.bgMainColor .h4 {
  color: var(--white);
}

h1,
.h1 {
  font-size: 50px;
}

h2,
.h2 {
  font-size: 40px;
}

h3,.h3 {
  font-size: 30px;
  
}

h4,.h4 {
  font-size: 22px;
  
}


.section-subtitle {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--blueMedium);
  margin-bottom: 5px;
  display: block;
}

@media screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 35px;
  }
}

@media screen and (max-width: 575px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 30px;
  }
}

/** START OF MARGIN  **/
.marginTop {
  margin-top: 90px;
}

.paddings {
  padding: 90px 0px 90px;
}
@media screen and (max-width: 767px) {
  .marginTop {
    margin-top: 70px;
  }

  .paddings {
    padding: 70px 0px 70px;
  }
}
/** END OF MARGIN  **/

/* FOOTER  */
footer,
footer h3,
footer a {
  color: var(--white);
}

footer .container .row {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.footer-logo img {
  height: 100px;
}

.social-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.social-links li img {
  height: 28px;
}

.menu-list li {
  margin-bottom: 7px;
}

footer .menu-list a:hover {
  color: var(--white);
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
}

/* FOOTER  */

/* NEWSLETTER  */
#newsletter input[type="text"] {
  width: 100%;
  height: 70px;
  border: 1px solid var(--black) !important;
  background: transparent;
  border-radius: 35px;
  font-size: 20px;
  padding-left: 20px;
  font-family: var(--fontMain);
}

#newsletter input[type="text"]::placeholder {
  color: var(--black);
}

#newsletter .btn-subscribe {
  top: 8px;
  right: 9px;
}

.btn.btn-arrow,
button.btn-arrow {
  font-family: var(--fontNoto);
  background: var(--bgButton);
  border: 1px solid var(--bgButton);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1.5px;
  overflow: hidden;
  transition: color 0.1s cubic-bezier(0.16, 0.08, 0.355, 1),
    background 0.1s cubic-bezier(0.16, 0.08, 0.355, 1);
}
header .btn.btn-arrow {
  margin-top: 0px !important;
  padding: 14px 20px;
}
@media screen and (max-width: 1600px) {
  header .btn.btn-arrow {
    width: 140px;
  }
}
.btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}

.btn-arrow svg {
  position: absolute;
  width: 0.9em;
  right: 0;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.btn-arrow svg * {
  stroke-width: 5;
}

.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}

.btn.btn-medium {
  padding: 1.2em 2.7em;
  font-size: 1em;
}

.btn.btn-arrow:hover,
button.btn-arrow:hover {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.btn-box button.btn-arrow:hover {
  background-color: transparent;
}

.btn-arrow:hover span {
  transform: translate3d(-1rem, 0, 0);
}

.btn-arrow:hover svg {
  opacity: 1;
  right: -2rem;
}

@media screen and (max-width: 767px) {
  #newsletter .btn-subscribe {
    position: static !important;
    margin-top: 20px;
  }
  #newsletter input[type="text"] {
    font-size: 18px;
    height: 55px;
  }
}
/* NEWSLETTER  */

/* CONTACT DETAILS  */
.contact-detail .form-control {
  font-family: var(--fontMain);
  color: var(--white);
  border-radius: 0;
  border: none;
  font-size: 14px;
  background: transparent;
  border-bottom: 1px solid var(--white) !important;
}

.contact-detail .form-control::placeholder {
  color: #c3c3c3;
}

.contact-detail textarea:focus,
.contact-detail input:focus {
  outline: none;
}

.contact-detail ul li {
  margin-bottom: 10px;
}
/* CONTACT DETAILS  */

/* Video */
.playVideo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.playVideo picture {
  height: 650px;
}

/* #video-player .play-btn {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#video-player .play-btn svg {
  border: 1px solid var(--white);
  animation: pulse-animation 1.5s infinite;
  border-style: double;
  border-radius: 100px;
  padding: 5px;
}

#myModal .modal-dialog {
  max-width: 980px;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
} */

@media only screen and (max-width: 767px) {
  .playVideo picture {
    height: 400px;
  }
}
/* Video */

/* TESTIMONIALS  */
.testimonials p {
  font-size: 18px;
  font-family: var(--fontMain);
}

.swiper-pagination-bullet {
  margin-right: 15px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--black);
}
/* TESTIMONIALS  */

/* ROOMS  
==========================*/
.rooms-swiper-container {
  padding-left: 100px;
  padding-right: 100px;
}

.rooms-swiper picture img {
  height: 400px;
}

.rooms .swiper-button-next,
.rooms .swiper-button-prev {
  background: var(--black) url(../images/arrow-next.svg) no-repeat center;
  width: 80px;
  height: 80px;
  background-size: 55px;
  border-radius: 50%;
  top: 28%;
}
@media screen and (max-width: 767px) {
  .rooms-swiper-container {
    padding-left: 70px;
    padding-right: 70px;
  }
  .rooms .swiper-button-next,
  .rooms .swiper-button-prev {
    width: 70px;
    height: 70px;
    background-size: 50px;
  }
}
@media screen and (max-width: 575px) {
  .rooms-swiper-container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .rooms .swiper-button-next,
  .rooms .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-size: 45px;
    top: 20%;
  }
}
.rooms .swiper-button-prev {
  transform: rotate(180deg);
  opacity: 1 !important;
  left: 0;
}

.rooms .swiper-button-next {
  right: 0;
}

.room-card picture {
  height: 450px;
}

.rooms .swiper-wrapper {
  margin-bottom: 40px;
}

.rooms .swiper-arrow img {
  top: 400px;
  padding: 8px;
  width: 80px;
  height: 80px;
  z-index: 3;
  background-color: var(--black);
  transition: var(--transition3s);
}

.rooms img.icon-arrow-left {
  left: 60px;
  transform: rotate(-180deg);
}

.rooms img.icon-arrow-right {
  right: 60px;
}

.rooms .swiper-arrow img:hover {
  background-color: var(--black);
}
/* ROOMS  */

/* ACHIEVMENTS  */
#achievements .digital-item {
  font-size: 2em;
}

#achievements .number-item {
  font-size: 1.5em;
}

#achievements p {
  letter-spacing: 0.12em;
}
/* ACHIEVMENTS  */

.wellness .imgCol picture {
  height: 400px;
}

/* WELCOME  */
.pattern-overlay.pattern-right img {
  height: 150px;
}
/* WELCOME  */

/* 4.8 Booking
------------------------------------------------------------- */
.booking-form input.booking,
.booking-form select.booking {
  font-size: 32px;
  font-family: var(--fontMain);
  color: var(--white) !important;
  background-color: transparent;
  border: none;
  outline: none;
  margin-top: 5px;
  position: relative;
}

.booking-form input.booking::placeholder,
.booking-form label {
  color: var(--white);
}

.booking-form select.booking option {
  font-size: 20px;
  color: var(--black);
}

@media screen and (max-width: 1200px) {
  .booking-form .booking-item {
    margin-bottom: 20px;
  }
  .booking-form button:after {
    left: 190px;
  }
}

@media screen and (max-width: 991px) {
  .booking-form .booking-item {
    width: 50%;
    text-align: center;
  }
  .booking-form input.booking {
    text-align: center;
  }
  .booking-form button:after {
    left: 265px;
  }
}

@media screen and (max-width: 480px) {
  .booking-form .booking-item {
    width: 100%;
    text-align: center;
  }
}
/* 4.8 Booking
------------------------------------------------------------- */

/* 4.2 Intro
------------------------------------------------------------- */
#intro,
#intro picture {
  height: 100vh;
  position: relative;
}

#intro picture::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#intro .banner-content {
  top: 50%;
  left: 200px;
  z-index: 3;
  width: 54%;
}
#intro .banner-content p {
  width: 85%;
  background: rgba(0, 0, 0, 0.005);
}

#intro .banner-content h1,
#intro .banner-content span {
  background: rgba(0, 0, 0, 0.005);
}

#intro .introLanugeges {
  /*top: 50%;
  right: 40px;
  bottom: 0;
  z-index: 5;*/
  top: 49px;
  right: 160px;
  bottom: 0;
  z-index: 9999;
  position: fixed !important;
  transition: var(--transition3s);
  font-family: var(--fontNoto);
}
#intro .introLanugeges.onScroll {
  top: 34px;
}
body:lang(de) #intro .introLanugeges {
  right: 225px;
}
@media screen and (max-width: 1600px) {
  body:lang(de) #intro .introLanugeges {
    right: 160px;
  }
}
@media screen and (max-width: 1400px) {
  #intro .introLanugeges {
    top: 38px;
  }
  #intro .introLanugeges.onScroll {
    top: 34px;
  }
}
@media screen and (max-width: 1199px) {
  #intro .introLanugeges,
  body:lang(de) #intro .introLanugeges {
    right: 75px;
    z-index: 1031;
  }
}
#intro .introLanugeges a:hover {
  text-decoration: underline;
  color: var(--light-color);
}

@media only screen and (max-width: 1455px) {
  #intro .banner-content {
    left: 100px;
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  #intro .banner-content {
    position: static !important;
    width: 100%;
    text-align: center;
    margin-top: 50px;
  }

  .light {
    color: var(--black) !important;
    text-align: center;
  }

  #intro h1.banner-title {
    font-size: 3em;
  }
  #intro .social-links {
    top: 850px;
    right: 0;
    bottom: 0;
    left: 0;
  }
  #intro .banner-content p {
    width: 100%;
  }
  #intro {
    height: auto;
  }

  #intro picture {
    height: 450px;
  }
  #intro .introLanugeges a.light {
    color: var(--white) !important;
  }
  /*#intro .introLanugeges {
    top: 400px;
  }*/
}
/* 4.2 Intro
------------------------------------------------------------- */

header {
  z-index: 5;
}

.navbar-toggler {
  border: 1px solid var(--white);
}

.navbar-brand img {
  height: 90px;
  transition: var(--transition3s);
}

.nav-link:hover {
  text-decoration: none;
}

header {
  transition: var(--transition3s);
}

.headerScroll,
.noTopMedia {
  background-color: var(--black);
}

.headerScroll .navbar-brand img {
  height: 60px;
  width: 165px;
}

.offcanvas {
  width: 90%;
}

@media screen and (max-width: 1399px) {
  .navbar-brand img {
    height: 70px;
    width: 200px;
  }
}

/* START SCROLL UP  */
#progress {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#progress-value img {
  width: 20px;
  filter: brightness(0);
}
/* END SCROLL UP  */

.facilities li {
  margin-bottom: 10px;
}

.facilitiesSection .swiper-pagination {
  bottom: 50px !important;
}

#popupModal .modal-dialog {
  max-width: 550px;
  width: 90%;
  margin: 20px auto;
}

#popupModal .modal-content {
  border-radius: 0;
  background: #dfdedf;
}

#popupModal .img {
  height: 300px;
}

.modal-header {
  border: none;
}

.gallerySection picture {
  height: 300px;
}

.gallerySection picture img{
  filter: brightness(0.8);
  height: 100%;
  transition: var(--transition3s);
}

.gallerySection picture img:hover{
  filter: brightness(1);
}

.gallerySection a {
  display: block;
}

@media screen and (max-width: 991px) {
  .gallerySection picture {
    height: 200px;
  }
}

.nav-item {
  margin-right: 40px !important;
}

@media screen and (max-width: 1499px) {
  .nav-item {
    margin-right: 1rem !important;
  }

  .navbar-nav {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .nav-item {
    margin-right: 0px !important;
  }
}

/* TOP MEDIA
================================== */
#bigCarousel .carousel-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 992px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    position: relative;
    height: 100vh;
  }
}
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
  visibility: hidden;
}
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
  visibility: visible;
}

#bigCarousel img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}
.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(/images/arrow-up-top.svg) !important;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: brightness(0) invert(1);
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(/images/arrow-up-top.svg) !important;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: brightness(0) invert(1);
}
#bigCarousel .carousel-control-next-icon,
#bigCarousel .carousel-control-prev-icon {
  display: inline-block;
  width: 50px !important;
  height: 50px !important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 991px) {
  #bigCarousel .carousel-control-prev {
    left: 10px;
  }
  #bigCarousel .carousel-control-next {
    right: 10px;
  }
}

.contentOverSlider {
  font-family: var(--fontNoto);
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 3;
  width: 65%;
  background: rgba(0, 0, 0, 0.005);
  color: var(--white);
  font-size: 4rem;
  font-weight: 100;
  line-height: 1;
}
.contentOverSlider span {
  font-size: 60px;
}

.noSlider-holder {
  height: 115px;
}
@media screen and (max-width: 1199px) {
  .contentOverSlider {
    font-size: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .contentOverSlider {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contentOverSlider {
    width: 80%;
  }
}
@media screen and (max-width: 575px) {
  .contentOverSlider {
    font-size: 1.6rem;
  }
}


