@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;1,8..60,300;1,8..60,400;1,8..60,500;1,8..60,600&display=swap');

:root {
  --first-font: 'Source Serif 4', serif;
  --second-font: 'Alegreya Sans', sans-serif;
  --white: #ffffff;
  --black: #1e1e1e;
  --main-color: #333333;
  --main-color-2: #3d3833;
  --gold-main: #ad9e85;
  --btnBg:rgba(173,158,133,0.99); /*#ad9e85;*/
  --btnBgHover:#746c5f;
    
    
    
  --blue-dark: #65573E;
  --blue-medium: #aea286;
  --blue-light: #746c5f;
  --grey-light:#e2e0de;
}

.blue-medium {
  color: var(--blue-medium);
}
.gold-text {
  color: var(--gold-main);
  background: rgba(0,0,0,0.005);
}
.white-bg {
  background-color: var(--white);
}
.white-color {
  color: var(--white);
}
.opacity-Bg{
    background:rgba(0,0,0,.1);
}
.dark-bg{
     background: var(--main-color);
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
    list-style-position: inside;
}

body.innerPages{
    padding-top:80px;
}
    
button, .btn {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
button:focus,
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
a {
  text-decoration: none;
  color: var(--main-color-2);
  background: rgba(0,0,0,0.005);
}



/**END OF GENERAL**/
/**START OF BODY **/
body {
  font-family: var(--second-font)!important;
  font-size: 18px;
  line-height: 1.3;
  color: var(--main-color-2);
  background: #f7f7f7;
  width: calc(100% - 80px);
  letter-spacing:.3px;
  font-weight: 300;
}
@media screen and (max-width: 991px) {
  body {
    width: auto;
  }
}

/**START OF HEADINGS 
=========================**/
h1, h2, h3, h4, 
.h1, .h2, .h3, .h4 {
  font-family: var(--first-font);
  line-height: 1.2;
  margin-bottom:30px;
  font-weight:300;
  background: rgba(0,0,0,0.005);
}
h1, .h1 {
  font-size: 64px;
}
h2, .h2 {
  font-size: 30px;
}
h3, .h3 {
  font-size: 28px;
}
h1 span, .h1 span,
h2 span, .h2 span{
    display:block;
    margin-top:10px;
    font-size:18px;
}
@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: 38px;
  }
  h2, .h2 {
    font-size: 28px!important;
  }
  h3, .h3 {
     font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 34px;
  }
  h2, .h2 {
    font-size: 26px!important;
  }
  h3, .h3 {
     font-size: 22px;
  }
}

/*BUTTON GENERAl*/
.btn {
  font-family: var(--second-font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  display: inline-block;
  background: var(--btnBg);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 0px;
  transition: .3s linear;
}
.btn:hover {
  background: var(--btnBgHover);
  color: var(--white);
}

/**START OF BUTTON LINKS
===============================*/
.moreLink {
  font-size: 17px;
  padding: 20px 20px;
  color: var(--gold-main);
  transition: .3s linear;
}
.moreLink:hover {
  color: var(--blue-medium);
}
.arrowLink {
    font-size: 20px;
    position: relative;
    padding: 10px 40px 10px 40px;
    transition: .3s linear;
    display: inline-block;
    color: var(--gold-main);
    transition: .3s linear;
}
.arrowLink:hover {
    color: var(--blue-medium);
}
.arrowLink::before {
    content: "";
    position: absolute;
    background: url("../images/arrow-right.svg") no-repeat center center/cover;
    width: 26px;
    height: 26px;
    display: inline;
    top: 10px;
    left: 0px;
    transition: .3s linear;
}
.arrowLink:hover::before {
    left: 10px;
}
.arrowLink.white::before {
  background: url("../images/arrow-right-white.svg") no-repeat center center/cover;
}
.arrowLink.gold {
  color: var(--white);
}
.arrowLink.gold::before {
  background: url("../images/arrow-right-gold.svg") no-repeat center center/cover;
}

.outside-btn {
  top: 20px;
}
/**END OF ARROW LINKS**/

/**START OF MARGIN SECTIONS 
================================* */
.margin-sections {
  margin: 100px 80px 0 80px;
}
@media screen and (max-width: 991px) {
  .margin-sections {
    margin: 50px 30px 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .margin-sections {
    margin: 40px 10px 0 10px;
  }
}
.margin-top {
  margin-top: 100px;
}
.margin-bottom {
  margin-bottom: 100px;
}
@media screen and (max-width: 991px) {
    .margin-top {
      margin-top: 50px;
    }
    .margin-bottom {
      margin-bottom: 50px;
    }    
}
@media screen and (max-width: 575px) {
    .margin-top {
      margin-top: 40px;
    }
    .margin-bottom {
      margin-bottom: 40px;
    }  
}
@media screen and (min-width: 768px) {
    .margin-top-sm { /*header height*/
      margin-top: 80px;
    }
}

/** START OF MEGA BUTTONS 
================================== **/
.bookSpace {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  right: 80px;
  overflow: hidden;
  text-align: center;
  height: 80px;
}
.bookSpaceHeader {
  position: static;
  display: none;
}
.innerPages .bookSpaceHeader {
  display: inline;
}
.bookBigbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .bookSpace {
    display: none;
  }
}

/** END OF MEGA BUTTONS **/
/**START OF HEADER 
================================ */
.header {
  width: calc(100% - 80px);
  /*padding: 30px 40px;*/
    padding: 0px 0px 0px 40px;
}
/*@media screen and (max-width: 991px) {
  .header {
    padding:15px 20px;
  }
}*/
.header.active, 
.innerPages .header {
  background: var(--white);
  padding: 0px 0px 0px 40px;
}
@media screen and (max-width: 767px) {
   .header,
   .header.active, .innerPages .header {
        padding:0 0 0 20px;
    }
}
.header .headerMenu {
  list-style: none;
  margin-right: 20px;
}
.header .headerMenu li {
  position: relative;
  margin: 0px 15px;
}
@media screen and (max-width: 767px) {
    .header .headerMenu li{
          margin: 0px 8px;
    }
}
@media screen and (max-width: 575px) {
    .header .headerMenu {
        margin-right: 5px;
    }
}
.header .headerMenu li a {
  font-family: var(--second-font);
  font-weight: 300;
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
}
.header .headerLogo img {
    height:70px;
    margin:5px 0;
}
.header-icon img {
    width:24px;
}
.header.active .header-icon img, 
.innerPages .header .header-icon img {
    opacity:.8;
    filter: brightness(0) saturate(100%) invert(11%) sepia(77%) saturate(1186%) hue-rotate(194deg) brightness(93%) contrast(100%); 
}
.header.active .bookSpaceHeader {
  display: inline;
}
.header.active .headerMenu li a, 
.innerPages .header .headerMenu li a {
  color: var(--blue-dark);
  font-size: 18px;
}

.dropdown {
  display: inline-block;
}
.dropdown .dropdown-toggle {
  font-family: var(--second-font);
/*  color: var(--white);*/
  color: var(--gold-main);
  border: none;
  /*background: transparent;*/
  font-weight: 300;
  transition: .3s linear;
}
.dropdown .dropdown-toggle::after {
  margin-left: 0;
  display: none;
}
.dropdown .dropdown-menu {
  position: relative;
  min-width: 40px;
  border-radius: 0;
  background: transparent;
  border: none;
  left: 0px !important;
 padding-top:10px;
}
.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
  position: absolute !important;
  display: block;
}
.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  background: transparent url("../images/arrow_drop_up.svg") no-repeat top left/cover;
  background-position:top left 8px;
  width: 100%;
  height: 10px;
  display: inline-block;
  top: 0px;
  left: 0;
  background-size: 20px;
}
.dropdown .dropdown-menu li {
    display: block;
    margin:0px;
}
.dropdown .dropdown-item {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  padding: 0px;
  color: var(--white)!important;
  background-color: var(--main-color);
  padding: 5px 14px;
  margin:0px;
}
.dropdown .dropdown-menu li:first-child a {
    padding-top:14px;
}
.dropdown .dropdown-menu li:last-child a {
    padding-bottom:14px;
}
.dropdown .dropdown-item:hover {
  color: var(--blue-light)!important;
}
.dropdown .dropdown-menu a.active,
.dropdown .dropdown-menu a:hover {
  color: var(--blue-light)!important;
}


/**START OF RIGHT HEADER APPEARS ONLY ON LARGE SCREENS
==============================================*/
#header-right {
  position: fixed;
  width: 80px;
  background: var(--main-color);
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.25);
  color: #707070;
}
.currentPage {
  margin-top: 165px;
  background: var(--white);
  transform: rotate(-90deg);
  height: 80px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.currentPage span {
  font-size: 24px;
  line-height:1;
}
.headerRightIcons {
  margin-bottom: 100px;
}
.headerRightIcons ul {
  list-style: none;
}
.headerRightIcons img {
  width: 28px;
    height: 28px;
  margin-bottom: 30px;
}
.headerRightIcons img.loyalty{
      width: 35px;
      height:37px;
}
.headerRightIcons img.flight{
      width: 30px;
      height:24px;
}
@media screen and (max-height: 880px) {
    .headerRightIcons {
        margin-bottom: 100px;
    }
    .headerRightIcons img {
        width: 30px;
        margin-bottom: 20px;
    }
    .headerRightIcons img.loyalty{
        width: 40px;
    }
    .headerRightIcons img.flight{
        width: 35px;
    }
}
/**END OF RIGHT HEADER APPEARS ONLY ON LARGE SCREENS
==============================*/

/**START OF MAIN NAVIGATION **/
nav,
.navbar-toggle {
  -webkit-touch-callout: none;
  user-select: none;
}
nav {
  position: fixed;
  padding-top: 0vh;
  z-index: 10000;
  background-color: #fafafa;
  /*background-color: var(--grey-light);*/
  width: calc(100% - 80px);
  height: 100%;
  flex-direction: column;
  text-align: left;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow-y: scroll;
  top:0;
}
nav {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
nav::-webkit-scrollbar {
  width: 0 !important;
}
.nav-hide {
  display: none;
}
nav .address {
  color: var(--gold-main);
}
nav .main-menu {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  padding-bottom: 50px;
}
nav .main-menu .sub-menu {
 /* display: inline-block;*/
}
nav .main-menu li {
  list-style: none;
  padding: 10px 50px;
}
nav .main-menu li a {
  font-family: var(--second-font);
  font-size: 25px;
  line-height: 1.3;
  /*color: var(--white);*/
  color: var(--main-color);
  font-weight: 400;
  text-decoration: none;
  transition: .3s linear;
}
nav .main-menu li a:hover {
  color: var(--blue-medium);
}
nav .main-menu li a.active {
  color: var(--blue-medium);
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid var(--blue-medium);
}
/*
nav .main-menu li a.active::before {
  content: "";
  background: url("../images/arrow-gold.svg") no-repeat center center/cover;
  display: inline-block;
  width: 25px;
  height: 25px;
  left: -5px;
  top: 8px;
  transform: rotate(90deg);
  position: absolute;
}*/
nav .main-menu .sub-menu ul {
  margin-top: 10px;
}
nav .main-menu .sub-menu ul li {
  padding: 5px;
}
nav .main-menu .sub-menu ul li a {
  font-size: 18px;
  color: var(--gold-main);
  padding-left: 0px;
  transition: .3s linear;
}
nav .main-menu .sub-menu ul li a.active::before {
  content: unset;
}
nav .main-menu .sub-menu ul li a:hover, nav .main-menu .sub-menu ul li a.active {
  color: var(--blue-light);
  border: none;
}
.navbar-toggle {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  width: 80px;
  height: 80px;
  top: 0px;
  right: 0px;
  z-index: 20000;
  cursor: pointer;
  background: var(--main-color);
  transition: .3s linear;
}
.navbar-toggle:hover {
  background: var(--blue-light);
}
.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 1px;
  margin-bottom: 7px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.navbar-on .bar1,
.navbar-on .bar2,
.navbar-on .bar3 {
  background-color: white;
}
.navbar-on .bar1 {
  transform-origin: 10% 40%;
  transform: rotate(45deg);
}
.navbar-on .bar3 {
  transform-origin: 10% 40%;
  transform: rotate(-45deg);
}
.navbar-on .bar2 {
  background-color: transparent;
}
/*Overlay menu
==========================*/
.bottonMainMenu {
  width: 100%;
  padding-top: 20px;
  list-style: none;
  border-top: 1px solid var(--gold-main);
  text-align:center;
}
.bottonMainMenu ul{
    list-style: none;
}
.bottonMainMenu li {
  margin: 5px 0px;
}
.bottonMainMenu li a {
  color: var(--main-color);
  padding: 0px 10px;
  transition: .3s;
}
.bottonMainMenu li a:hover, .bottonMainMenu li a.active {
  color: var(--blue-light);
}

.logo-menu img {
  width: 150px;
}

@media screen and (max-width: 991px) {
  nav {
    text-align: center;
    width: 100%;
  }
  nav .main-menu {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  nav .main-menu .sub-menu {
    display: block;
  }
  nav .main-menu li {
    list-style: none;
    padding: 10px 30px;
  }
}

@media screen and (max-width: 480px) {
  nav .main-menu li a {
    font-size: 25px;
  }
  .bottonMainMenu li a {
    padding: 0px 10px;
  }
  nav .main-menu .sub-menu ul li a {
    font-size: 16px;
  }
}
/**END OF MAIN NAVIGATION **/

/**START OF BOTTOM MENU FIXED ON RESPONSIVE 
====================================*/
.bottomMobile {
  background: var(--main-color-2);
}
.bottomMobile .flightBtn a{
   background:url(/images/airplane.svg) no-repeat left center;
   background-size:25px;
   padding-left:35px;
    color: var(--white);
    margin-right: 70px;    
}
@media screen and (max-width: 575px) {
  .bottomMobile .btn {
   /* padding: 0px 20px;*/
  }
  .bottomMobile .flightBtn a{
    font-size: 16px;
    display: block;
    text-align: left;
    margin-left: 30px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 380px) {
  .bottomMobile .btn {
    padding-left:10px;
   padding-right:10px;
  }
   .bottomMobile .flightBtn a{
       margin-left: 10px;
   }
}

/**END OF BOTTOM MENU FIXED ON RESPONSIVE **/
/**START OF SCROLL UP and DOWN **/
a.scrollup, a:hover.scrollup, a.scroll-down, a:hover.scroll-down {
 /* background: url("../images/arrow_upward.svg") no-repeat center center;
  background-size: 47px;*/
  position: fixed;
  bottom: 0px;
  right: 0px;
  text-indent: -9999px;
  /*width: 40px;
  height: 30px;*/
  text-decoration: none;
  /*padding: 40px 40px;*/
  padding: 10px 16px 10px 17px;
  z-index: 1031;
  backface-visibility: hidden;
  transition: .5s linear;
}
a.scrollup {
  display: none;
}
a.scroll-down img, a:hover.scroll-down img {
  -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
a.scrollup img, a:hover.scrollup img,
a.scroll-down img, a:hover.scroll-down img {
    width: 47px;
    position: relative;
    display: block; 
}
a:hover.scrollup, a:hover.scroll-down{
  background-color: var(--blue-light);
}

@media screen and (max-width: 991px) {
  a.scrollup, a:hover.scrollup, a.scroll-down, a:hover.scroll-down {
    background-color: var(--blue-medium);
    padding: 23px 24px 23px 24px;
  }
}
/*END OF SCROLL UP  AND DOWN*/

/**START OF HOME STARTING CAROUSEL 
============================== */
.topMedia {
  height: 100vh;
  position: relative;
}
@media (max-width: 767px) {
	.topMedia{
		height:450px;
	}
}
@media (max-width: 575px) {
	.topMedia{
		height:350px;
	}
}
.carousel-fade .carousel-item {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity .75s ease-in-out; 
	background-position: center center!important;
}
.carousel-fade .carousel-item.active {
    opacity: 1; }
    

.homeCarousel,
.homeCarousel .carousel-inner,
.homeCarousel .carousel-item,
.innerVerticalCarousel,
.innerVerticalCarousel .carousel-inner,
.innerVerticalCarousel .carousel-item
{
    height: inherit;
} 

.homeCarousel .carousel-item img,
.innerVerticalCarousel .carousel-item img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}
    
/*
.homeCarousel.carousel .carousel-item:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0) 100%);
}*/
.full-screen {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.homeCarousel .carousel-control-prev, .homeCarousel .carousel-control-next {
  transition: .3s linear;
}
.homeCarousel .carousel-control-prev span, .homeCarousel .carousel-control-next span {
  visibility: hidden;
  transition: .3s linear;
}
.homeCarousel .carousel-control-prev:hover span, 
.homeCarousel .carousel-control-next:hover span {
  visibility: visible;
}
.homeCarousel .contentOverSlider,
.innerVerticalCarousel .contentOverSlider{
  position: absolute;
  color: var(--white);
  width: 80%;
  height: 100%;
  z-index: 200;
  top: 0;
  left:10%;
  right:10%;
  font-size: 50px;
  line-height: 1.5;
  font-family: var(--second-font);
  font-weight: 100;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  text-align: center;
  padding: 0px 20px;
}
.innerVerticalCarousel .contentOverSlider{
      font-size: 44px;
}
@media screen and (max-width: 1399px) {
  .homeCarousel .contentOverSlider,
  .innerVerticalCarousel .contentOverSlider{
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .homeCarousel .contentOverSlider,
  .innerVerticalCarousel .contentOverSlider{
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .homeCarousel .contentOverSlider,
  .innerVerticalCarousel .contentOverSlider{
    font-size: 30px;
  }
}
/*
.homeCarousel .contentOverSlider span,
.innerVerticalCarousel .contentOverSlider span{
    background-color:rgba(101,87,62,0.8)
}
*/

.innerVerticalCarousel {
    height: calc( 100vh - 80px )!important;
    position:relative;
}
.innerVerticalCarousel h2 {
  color: var(--white);
}
.innerVerticalCarousel .carousel-control-prev,
.innerVerticalCarousel .carousel-control-next{
    position: absolute;
    top:unset;
    bottom: 0px;
    height: 60px;
    right: 0;
    background: rgba(0,0,0,.1);
    width: 70px;
    height: 70px;
}
.innerVerticalCarousel .carousel-control-prev {
    left:unset;
    right: 72px;
}

@media screen and (max-width: 991px) {
  .innerVerticalCarousel {
    height: 500px!important;
  }
}

@media screen and (max-width: 767px) {
  .innerVerticalCarousel{
    height: 450px!important;
  }
}

@media screen and (max-width: 575px) {
  .innerVerticalCarousel{
    height: 350px!important;
  }
}


/**END OF HOME STARTING CAROUSEL **/

/** START OF WELCOME SECTION 
==========================**/
.welcome-section {
    height: calc(100vh - 80px);
}
.welcome-section.only-text {
    height: unset;
    padding-top:100px;
    padding-bottom:30px;
} 
@media screen and (max-width: 991px) {
    .welcome-section {
        height: unset;
    }
    .welcome-section.only-text {
        padding-top:60px;
    } 
}
   
.welcome-section .bgColor {
  background-color: var(--main-color);
  color: var(--white);
  padding: 50px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .imgCol {
    height: auto !important;
    padding: 50px 0px;
  }
}
@media screen and (max-width: 767px) {
  .imgCol {
    padding: 30px 0px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .welcome-section .bgColor {
    padding: 30px;
  }
}

/** BOXES img + text over image
================================**/
.image-box {
    overflow:hidden; 
    position:relative;
}
.image-box.square {
    min-height: 520px !important;
}
.img-thumb {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    width: 100%;
    overflow: hidden; 
    position: absolute; 
    z-index: -1; 
    top: 0; 
    left: 0; 
    height: 100%;
}
.image-box:hover .img-thumb{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2); /* IE 9 */ 
    transform: scale(1.2);
}
.img-text{
    position: absolute; 
    z-index: 0; 
    top: 80px; 
    bottom: 80px;
    left: 80px;
    right: 80px;
    color: var(--white);
    text-align:center;
}
@media screen and (min-width: 1200px) and (max-width: 1479px){
    .img-text{
        top: 60px; 
        bottom: 60px;
        left: 60px;
        right: 60px;
        padding:30px!important;
    }    
}
@media screen and (max-width: 575px) {
    .img-text{
        top: 60px; 
        bottom: 100px;
        left: 60px;
        right: 60px;
    }
}
.img-text:before{
    content:"";
    position: absolute;
    left:0;
    top:0;
    z-index: -1; 
    width:100%;
    height:100%;
    background-color: var(--main-color);
    transition: opacity 0.5s;
    opacity: 1;
}
.image-box:hover .img-text:before{
    opacity:.8;
}
.btn-holder-bottom,
.btn-holder-top {
    position: absolute;  
    left:0;
    right:0;
}
.btn-holder-bottom {
    bottom: -22px;
}
.btn-holder-top {
    top: -22px;
}

/*Carousel ARROWS
=======================*/
.swiper-button-next,
.swiper-button-prev {
    width:58px;
    height:60px;
    margin: 0;
}
.swiper-navigation-icon {
    display:none;
}
.swiper-button-next:before,
.swiper-button-prev:before {
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background: rgba(117, 107, 97, .6); 
}
.swiper-button-next:after,
.swiper-button-prev:after {
    content:"";
    position:absolute;
    background: url(../images/arrow.svg) no-repeat center center !important;
    background-size: 15px!important;
    top: 0;
    bottom: 0;
    left: 6px;
    right: 0;
}
.swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/*Carousel arrows positioning*/
.carousel-arrows-bl .swiper-button-next,
.carousel-arrows-bl .swiper-button-prev {
    bottom: 0;
    top:unset;
    left:0px!important;
}
.carousel-arrows-bl .swiper-button-next {
     left: 60px!important;
}
.carousel-arrows-tl .swiper-button-next,
.carousel-arrows-tl .swiper-button-prev {
    top:0;
    left:0px!important;
}
.carousel-arrows-tl .swiper-button-next {
     left: 60px!important;
}
.carousel-arrows-br .swiper-button-next,
.carousel-arrows-br .swiper-button-prev {
    bottom: 0;
    top:unset;
    left:unset!important;
    right:0px!important;
}
.carousel-arrows-br .swiper-button-prev {
     right: 60px!important;
}
@media screen and (min-width: 1200px) {
    .carousel-arrows-br.right-33 .swiper-button-next,
    .carousel-arrows-br.right-33 .swiper-button-prev {
        bottom: 0;
        top:unset;
        left:unset!important;
        right:calc(33.3% - 58px)!important;
    }
    .carousel-arrows-br.right-33 .swiper-button-prev {
        right: calc(33.3% + 0px)!important;
    }
}
.swiper-pagination {
    bottom: 0px !important;
}
.swiper-pagination-bullet {
    background-color:#000;
    height:12px;
    width:12px;
    opacity:.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: var(--gold-main);
       opacity:1;
}


/*Carousel Offers - image & text below*/

.image-box-textBelow h3{
    color:var(--white);
    
}
.img-zoom {
    position: relative;
    overflow: hidden; 
}
.img-zoom img{
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.img-zoom:hover img{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2); /* IE 9 */ 
    transform: scale(1.2);
}

/*ROOM DETAILS
===========================*/

.room-details .col {
    font-size: 22px;
    text-align:center;
    line-height:1.2;
}
.room-details .col .icon{
    width:80px;
    height:80px;
}
.room-details .col .size{
    background:url(/images/room-size.svg) no-repeat left center;
}
.room-details .col .capacity{
    background:url(/images/room-bed.svg) no-repeat left center;
}
.room-details .col .view{
    background:url(/images/room-view.svg) no-repeat left center;
}
.room-details .col span{
  text-align: left;
  display: block;
  font-size: 28px;
    font-family: var(--first-font);
    line-height: 1.2;
    font-weight: 300;
}
@media (max-width: 767px){
    .room-details .col .icon{
        width:60px;
        height:60px;
    }
  .room-details .col span{
    font-size: 24px;
    text-align:center;
  }
}

.list-inline-amenities ul li{
    display: inline-block;
    position:relative;
}
.list-inline-amenities li:not(:last-child) {
      margin-right: 20px;  
}
.list-inline-amenities li:not(:first-child) {
    padding-left: 20px;
}
.list-inline-amenities li:not(:first-child):before{
    content:"";
    background:url(/images/bullet-icon.svg) no-repeat left center;
    font-size: 54px;
    line-height: 1;
    position: absolute;
    left: 0;
    top:0;
    width:20px;
    height:20px;
}

/* BLOCKS
============================ */
.image-container {
    position:relative;
    padding: 100px;
}
.image-container-bg {
    position: absolute;
    left:0px;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: .2;
    background-size: auto 100%!important;
    background-position: left top!important;
    width: calc(100% - 200px);
}
.revert .image-container-bg {
    left:unset;
    right: 0;
    background-position: right top!important;
}
.image-container img{
    margin:auto;
}

@media screen and (max-width: 1199px) {
    .image-container {
        padding: 60px;
    }
    .image-container-bg {
        width: calc(100% - 120px);
    }
}
@media screen and (max-width: 767px) {
    .image-container {
        padding: 50px;
    }
    .image-container-bg {
        width: calc(100% - 100px);
    }
}
@media screen and (max-width: 575px) {
    .image-container {
        padding:0px;
    }
    .image-container-bg {
        display:none;
    }
}

/*Text Over Image Section
============================== */
@media screen and (min-width: 768px) {
    .blockTextBg {
        padding: 100px 0px;
        position: relative;
    }
}
.blockTextBg .img-bg{
    background-position:center center!important;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:-2;
}
.blockTextBg.hasTransparency .img-bg:after{
    content:"";
    z-index:-1;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background: rgba(0,0,0,0.5);
}
.blockTextBg.hasWhiteBg .text-bg{
    background-color: var(--white);
}
@media screen and (max-width: 767px) {
    .blockTextBg.hasWhiteBg .img-bg{
        min-height:360px;
        position:relative;
    }
    .blockTextBg.hasWhiteBg .text-bg{
        background-color: transparent;
    }
}
.blockTextBg.hasTransparency .text-bg.white-text{
    color:var(--white);
}
.blockTextBg.hasTransparency .white-text .arrowLink {
     color:var(--white);
}
.blockTextBg.hasTransparency .white-text .arrowLink::before {
  background: url("../images/arrow-right-white.svg") no-repeat center center/cover;
}

/** START OF INSTAGRAM SECTION 
=============================== **/
@media screen and (max-width: 767px) {
    .InstaRow a{
        display:block;
        margin-bottom:25px;
    }
}
/** START OF Reviews SECTION 
=============================== **/

.section_reviews .quotesText {
    font-style: italic;
    position:relative;
    padding-left:48px;
    padding-bottom:30px;
    text-align: justify;
    font-size:20px;
}
.section_reviews .quotesText:before{
    content:"“";
    display:inline-block;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    font-size: 140px;
    line-height: .7;
} 




/**END OF DESTINATION SECTION **/
/**START OF WHY SECTION **/
/*
.whySection {
  padding: 50px 100px;
}
.whySection .box {
  padding: 70px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  position: relative;
  background-color: var(--main-color);
  height: 280px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 10px;
}
.whySection .box:hover {
  padding: 50px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(24, 20, 20, 0.2);
}
.whySection .box span {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: var(--blue-light);
  position: absolute;
  right: 10px;
  top: 0px;
  z-index: 2;
  line-height: normal;
}
.whySection .box .box-title {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: var(--white);
  position: relative;
  z-index: 2;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
    .whySection .box .box-title {
        font-size: 20px;
    }
}
.whySection .box:hover span,
.whySection .box:hover .box-title {
  color: #fff;
}
@media screen and (max-width: 1399px) {
  .whySection {
    padding: 50px 50px;
  }
}
@media screen and (max-width: 480px) {
  .whySection {
    padding: 50px 20px;
  }
}
*/



/**START OF FOOTER 
=================================**/
.footer-bg {
  position: relative;
  background: url("/images/footer.jpg") no-repeat top center/cover;
}
.footer-bg::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61,56,51,.85);
  display: block;
}
.footer-bg a{
    color: var(--white);
}
.footer-menu ul {
  list-style: none;
  position: relative;
  font-size:20px;
}
.footer-menu ul li {
  margin: 0 0 6px 0;
}
.footer-menu ul li a {
  color: var(--white);
  transition: .3s linear;
}
.footer-menu ul li a:hover {
  color: var(--blue-medium);
}
.social-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--main-color);
  margin: 0px 10px 0 0;
  border-radius: 50%;
  transition: .3s linear;
}
.social-list li:hover {
  background-color: var(--gold-main);
}
.social-list li a {
  line-height: 0;
}
.social-list img {
    width: 25px;
    height: 25px;
}
@media screen and (max-width: 575px) {
  .social-list img {
    width: 20px;
    height: 20px;
  }
  .social-list li {
    margin: 5px 5px;
    width: 40px;
    height: 40px;
  }
}

.footerContact {
    background: rgba(0,0,0,0.005);
}

.Copyright {
  background: var(--main-color);
  color: var(--gold-main);
  font-size: 14px;
  height: 60px;
}
.Copyright a {
  color: var(--gold-main);
  transition: .3s linear;
}
.Copyright a:hover {
  color: var(--white);
}

@media screen and (max-width: 991px) {
  .footer {
    margin-bottom: 65px;
  }
}

/**START OF PAGE LISTING STYLES *
=====================================*/
.breadcrumbs {
  text-transform: capitalize;
}
.breadcrumbs a {
  color: var(--gold-main);
  padding: 0px 30px 0px 0px;
  text-transform: capitalize;
}
.breadcrumbs a::after {
  content: "\A";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-main);
  display: inline-block;
  position: relative;
  top: -1px;
  right: -10px;
}
.breadcrumbs a.active {
  color: var(--main-color-2);
  padding: 0px 0px 0px 0px;
}
.breadcrumbs a.active::after {
  display: none;
}
@media screen and (max-width: 480px) {
  .breadcrumbs a {
    padding: 0px 15px 0px 0px;
  }
}
/*
.pageListingBoxes .slider-card-text {
  background-color: var(--main-color);
  color: var(--white);
  position: relative;
  overflow: hidden !important;
  transition: .5s linear;
}
.pageListingBoxes .slider-card-text .price span {
  font-size: 30px;
}
.pageListingBoxes .slider-card .btn {
  margin-top: -20px;
  position: relative;
  opacity: 0;
}
.pageListingBoxes .img-hover-zoom {
  padding: 60px;
  position: relative;
}
.pageListingBoxes .img-hover-zoom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: .6s;
}
.pageListingBoxes .img-hover-zoom:hover::before {
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.pageListingBoxes .img-hover-zoom:hover .slider-card-text {
  background-color: rgba(47, 43, 39, 0.8);
}
.pageListingBoxes .img-hover-zoom:hover .btn {
  opacity: 1;
}
.pageListingBoxes .slider-card {
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .pageListingBoxes .img-hover-zoom {
    padding: 30px 30px 80px;
  }
}
@media screen and (max-width: 991px) {
  .pageListingBoxes .img-hover-zoom {
    padding: 60px 80px 80px;
  }
}
@media screen and (max-width: 575px) {
  .pageListingBoxes .img-hover-zoom {
    padding: 30px 20px 40px;
  }
}

*/
/**END OF PAGE LISTING STYLES **/

/** START OF INNER PAGES SECTIONS 
===================================**/

/** START OF AMENITIES 
============================= */
.amenities ul li {
  margin: 5px 20px;
}

.list-detail-box span {
  font-size: 30px;
}

@media screen and (max-width: 767px) {
  .amenities ul li {
    margin: 5px 15px;
  }
  .list-detail-box span {
    font-size: 25px;
  }
}

@media screen and (max-width: 480px) {
  .list-details {
    flex-wrap: wrap;
  }
}

/** END OF AMENITIES **/


/** START OF CONTACT PAGE 
=================================== **/

.contactform .form-control {
    border-radius: 0px;
    /*border: none;
    border-bottom: 2px solid var(--black);
    background: transparent;*/
}
.contactform .form-control:focus {
  outline: none;
  border-bottom: 2px solid var(--gold-main);
  box-shadow: none;
}
.contact-form textarea {
  min-height: 100px;
}
.contactform .service{
    background-color:#f2f2f2;
}
.contactform .title{
    font-size:20px;
    font-weight:400;
    border-bottom:1px solid #ccc;
}
.contactform .form-group-img {
    margin-top:15px;
  /*  text-align:center;*/
}
@media screen and (min-width: 768px) {
    .contactform .form-group-img img{
        width: 48.5%;
    }
}
.contactform .description{
        font-size:16px;
}
.contactform .price {
    font-style:italic;
      font-size:16px;
}

.form-agree {
    font-size:16px;   
}
.form-agree a{
        color: var(--blue-dark);
}

.submitBtn {
    padding:12px 25px;
    background-color: var(--main-color);
    color: var(--white);
}
.submitBtn:hover {
    background-color: var(--gold-main);
}

#theFormNewsletter {
    color:var(--white); 
    max-width:440px;
}
#theFormNewsletter .form-floating > label {
    color:var(--white);
    background: rgba(0,0,0,0.005);
}
#theFormNewsletter .form-control {
    border-bottom: 2px solid var(--white);
    color:var(--white);
    background:transparent;
    border-radius:0;
    border:0;
    border-bottom: 2px solid var(--white);
}
#theFormNewsletter .form-control:focus {
    outline: none;
    border-bottom: 2px solid var(--gold-main);
    box-shadow: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}
#theFormNewsletter input:-webkit-autofill,
#theFormNewsletter input:-webkit-autofill:hover,
#theFormNewsletter input:-webkit-autofill:focus,
#theFormNewsletter input:-webkit-autofill:active {
    color:var(--white) !important;
     -webkit-text-fill-color: var(--white);
}
#theFormNewsletter,
#theFormNewsletter .form-agree,
#theFormNewsletter .form-agree a{
    color: var(--white);
}

.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
.form-agree label{
    text-transform: none;
    display:inline;
    background: rgba(0,0,0,0.005);
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.note {
  font-size: 14px; }

.asterisk {
	text-align:left;
	font-size:14px;
}
.grecaptcha-badge {
  display: none !important; 
}

.toggle-services {
    cursor:pointer;
    position:relative;
    padding:10px 12px 10px 40px;
    background-color: #f2f2f2;
    display: inline-block;
}
.toggle-services:before {
    content: "";
    position: absolute;
    background: url(../images/arrow-right.svg) no-repeat center center/cover;
    width: 26px;
    height: 26px;
    display: inline;
    top: 14px;
    left: 5px;
    transition: .3s linear;
}
.toggle-services:hover {
    color: var(--blue-medium);
}
.toggle-services:hover::before {
    left: 10px;
}
.allServicesSelection {
    display:none;
}
.allServicesSelection.active {
    display:block;
}

/** END OF CONTACT PAGE **/
/** START OF GALLERY PAGE 
================================**/
/*.gallery-page {
  padding-top: 150px;
}*/
.hidden {
  display: none;
}
.gallery-page a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s linear;
}
.gallery-page a h2 {
  position: absolute;
  color: var(--white);
  opacity: 0;
  transition: .3s linear;
}
.gallery-page a:hover h2 {
  opacity: 1;
}
.gallery-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  filter: grayscale(100%);
  transition: .5s linear;
}
.gallery-page a:hover img {
  filter: grayscale(0%);
}
.gallery-page .filter-button {
  min-width: 100px;
  padding: 15px 10px;
  margin-right: 5px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .gallery-page .filter-button {
        min-width: 90px;
        padding: 10px 10px 14px;
        line-height:1;
        font-size:16px;
    }
}

.gallery-page .filter-button:hover,
.gallery-page .filter-button.active {
  background-color: var(--gold-main);
}
.gallery-page .port-image {
  width: 100%;
}
.gallery-page .gallery_product {
  margin-bottom: 30px;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.gallery-page .block {
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}




/** END OF GALLERY PAGE **/

.map_link {
	display:block;
	z-index: 11;
    position: relative;
}

.map_link.inner {
	background:url(/images/map.jpg) no-repeat center center;	
	min-height:450px;
	width:100%;
}

@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}

/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
.modal .modal-body{
    padding: 0 !important;
}
  .modal .modal-dialog {
    max-width:740px;
    top: 50%;
    transform: translateY(-50%) !important;
    margin: 0rem auto;
  }
.modal .modal-content {
  border-radius: 10px; /*0*/
  text-align: end;
}
.modal .btn-close {
  /*background-color: var(--gold-main);*/
  position: absolute;
  /*width: 2em;*/
  /*height: 2em;*/
  right: 0; /*0*/
  top: 0; /*0*/
  opacity: .9; /*.8*/
  border-radius: 20px; /*0*/
  background-size: 0.6em;
  background-color: var(--grey-light);
}
.modal .img img {
    border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 768px) {
    .modal .img img {
        max-width: 400px;
        height: 550px;
        clip-path: polygon(0px 0px, 80% 0%, 100% 100%, 0% 100%);
        -webkit-clip-path: polygon(0px 0px, 80% 0%, 100% 100%, 0% 100%);
        border-radius: 10px;
    }
    .modal .btn-close {
        right: -13px;
        top: -13px;
    }
}
.modal .text {
    font-size: 20px;
}
.modal .text h2 {
    font-weight: 700;
    /*text-align: start;*/
}
@media screen and (max-width: 767px) {
  .modal .modal-body .imgCol {
    height: 300px !important;
  }
  .modal .modal-dialog {
       max-width:400px;
           width: 90%;
  }
}
@media screen and (max-height: 750px){
    .modal.show .modal-dialog{
        top: 400px;
    }
}
@media screen and (max-width: 575px){
    .modal .modal-dialog {
        top: 55%;
    }
}
.listCentered {
    list-style-position:inside;
    margin-bottom:20px;
}
.sitemap a{
  color: var(--gold-main);
}
/*# sourceMappingURL=style.css.map */



h2.h3.mb-3 {
    text-transform: uppercase;
}

.visually-hidden {
    background: rgba(0,0,0,0.005);
}

/**umb_name:H2*/
.h2 {
	font-size: 30px;
}
