/* Theme Color Variables */
:root {
  --primary: #ea558d;
  --primaryDark: rgba(234, 85, 141, .6);
  --secondary: #002855;
  --blueDarker: #000e1e;
  --skyBlue: #b1dde6;
  --skyBlueDark: #7fccdb;
  --white: #fff;
  --black: #000;
  --tradeGothic: 'TradeGothic', Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "TradeGothic";
  src: url("../fonts/trade-gothic-bold-webfont.woff2") format("woff2"), url("../fonts/trade-gothic-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TradeGothic";
  src: url("../fonts/trade-gothic-regular-webfont.woff2") format("woff2"), url("../fonts/trade-gothic-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 360px;
}

/* Slick slider styles */
.slick-slider {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slick Dots Styles */
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}
@media (min-width: 768px) {
  .slick-dots {
    bottom: -10px;
  }
}
@media (min-width: 1200px) {
  .slick-dots {
    bottom: -30px;
  }
}
.slick-dots li:nth-last-child(-n+2) button {
  width: 8px;
  height: 8px;
}
.slick-dots li:last-child button {
  width: 4px;
  height: 4px;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  border: 0;
  padding: 0;
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  background: #b5b5b5;
}
.slick-dots li button:hover {
  background: var(--primary);
}
.slick-dots li.slick-active button {
  background: var(--primary);
}

.slick-arrow {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1200px) {
  .slick-arrow {
    width: 64px;
    height: 64px;
  }
}
.slick-arrow:hover {
  background: var(--blueDarker);
}
.slick-arrow svg {
  width: 10px;
  height: auto;
}
@media (min-width: 1200px) {
  .slick-arrow svg {
    width: 13px;
  }
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0;
}

/* Wrapper Styles */
.wrapper {
  position: relative;
  overflow: clip;
  width: 100%;
}

/* Crawl Slider Styles */
.crawl-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .crawl-slider {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .crawl-slider {
    font-size: 15px;
    letter-spacing: 3px;
  }
}
@media (min-width: 1200px) {
  .crawl-slider {
    font-size: 16px;
    letter-spacing: 4px;
  }
}
.crawl-slider .slick-slide {
  padding: 8px 25px;
  height: auto;
}
@media (min-width: 768px) {
  .crawl-slider .slick-slide {
    padding: 8px 50px;
  }
}
@media (min-width: 1200px) {
  .crawl-slider .slick-slide {
    padding: 8px 75px;
  }
}
.crawl-slider .slick-slide span {
  color: var(--primary);
}

/* Header Styles */
.header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #F1F1F1;
  position: relative;
  z-index: 1;
  font-family: var(--tradeGothic);
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  max-width: 1360px;
  padding: 0 20px;
  margin: 0 auto;
}
.header .logo {
  width: 92px;
  display: block;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .header .logo {
    width: 130px;
  }
}
@media (min-width: 1200px) {
  .header .logo {
    width: 172px;
  }
}
.header .logo a {
  display: block;
}
.header .logo a img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header Right Styles */
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Header Buttons Styles */
.button-login,
.button-book {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blueDarker);
  text-decoration: none;
  padding: 10px;
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .button-login,
  .button-book {
    padding: 24px;
  }
}
@media (min-width: 1200px) {
  .button-login,
  .button-book {
    padding: 40px 24px;
  }
}

.button-login {
  background: var(--skyBlue);
  display: none;
}
.button-login img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .button-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 19px;
  }
}
@media (min-width: 1200px) {
  .button-login {
    padding: 30px;
  }
}
.button-login:hover {
  background: var(--skyBlueDark);
}

.button-book {
  color: var(--white);
  background: var(--primary);
  min-width: 140px;
}
@media (min-width: 768px) {
  .button-book {
    min-width: inherit;
  }
}
.button-book:hover {
  background: var(--primaryDark);
}

/* Mobile Nav Opener Styles */
.nav-opener {
  width: 60px;
  height: 60px;
  background: var(--white);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: -20px;
}
@media (min-width: 768px) {
  .nav-opener {
    width: 78px;
    height: 78px;
  }
}
@media (min-width: 1200px) {
  .nav-opener {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1440px) {
  .nav-opener {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .nav-active .nav-opener {
    background: var(--secondary);
  }
}
.nav-opener:after, .nav-opener:before,
.nav-opener span {
  background: var(--blueDarker);
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22px;
  height: 3px;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .nav-opener:after, .nav-opener:before,
  .nav-opener span {
    width: 28px;
  }
}
@media (min-width: 1200px) {
  .nav-opener:after, .nav-opener:before,
  .nav-opener span {
    width: 36px;
    height: 4px;
  }
}
@media (min-width: 768px) {
  .nav-active .nav-opener:after, .nav-active .nav-opener:before,
  .nav-active .nav-opener span {
    background: var(--white);
  }
}
.nav-opener:before {
  margin-top: -7px;
}
@media (min-width: 768px) {
  .nav-opener:before {
    margin-top: -9px;
  }
}
@media (min-width: 1200px) {
  .nav-opener:before {
    margin-top: -12px;
  }
}
.nav-active .nav-opener:before {
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  margin-top: 8px;
  margin-left: -5px;
}
@media (min-width: 768px) {
  .nav-active .nav-opener:before {
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .nav-active .nav-opener:before {
    margin-top: 13px;
    margin-left: -7px;
  }
}
.nav-opener:after {
  margin-top: 7px;
}
@media (min-width: 768px) {
  .nav-opener:after {
    margin-top: 9px;
  }
}
@media (min-width: 1200px) {
  .nav-opener:after {
    margin-top: 12px;
  }
}
.nav-active .nav-opener:after {
  margin-top: -8px;
  margin-left: -3px;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
}
@media (min-width: 768px) {
  .nav-active .nav-opener:after {
    margin-top: -10px;
  }
}
@media (min-width: 1200px) {
  .nav-active .nav-opener:after {
    margin-top: -13px;
    margin-left: -5px;
  }
}
.nav-active .nav-opener span {
  display: none;
}
.nav-opener:hover {
  background: var(--secondary);
}
.nav-opener:hover:after, .nav-opener:hover:before,
.nav-opener:hover span {
  background: var(--white);
}

/* Nav Holder Styles */
.nav-holder {
  width: 100%;
  right: 0;
  top: 96px;
  bottom: 0;
  background: var(--white);
  position: fixed;
  z-index: 11;
  display: block;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(110%, 0);
          transform: translate(110%, 0);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  overflow: auto;
}
@media (min-width: 768px) {
  .nav-holder {
    width: 700px;
    top: 115px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1024px) {
  .nav-holder {
    width: 950px;
    top: 117px;
  }
}
@media (min-width: 1200px) {
  .nav-holder {
    width: 1075px;
    top: 140px;
  }
}
@media (min-width: 1440px) {
  .nav-holder {
    width: 1176px;
  }
}
.nav-active .nav-holder {
  -webkit-transform: none;
          transform: none;
}
.nav-holder .column {
  width: 100%;
}
@media (min-width: 768px) {
  .nav-holder .column {
    width: 50%;
  }
}

.nav-active {
  overflow: hidden;
}

/* Menu Styles */
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font: 700 16px/1.3 var(--tradeGothic);
}
@media (min-width: 1200px) {
  .menu {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .menu {
    font-size: 20px;
  }
}
.menu .sub-dropdown-second {
  background-color: #FBFBFB;
}
.menu .sub-dropdown-second li a {
  padding: 12px 10px 12px 20px;
  position: relative;
  font-weight: 700;
  font-size: 16px;
}
.menu > li > a {
  background: #f1f1f1;
}
@media (min-width: 768px) {
  .menu > li > a {
    background: var(--white);
  }
}
.menu > li.active > .sub-dropdown {
  display: block;
}
.menu li {
  position: relative;
}
.menu li:hover > a {
  background: #e7f4f7;
}
.menu li.active > a {
  background: #f1f1f1;
}
.menu li.active > .nav-arrow:before {
  margin-top: 5px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.menu li ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu li ul li.active > a {
  background: #e7f4f7;
}
.menu li ul ul li a {
  padding-left: 30px;
  position: relative;
  font-weight: 400;
}
.menu li ul ul li a:before {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  content: "";
  border-radius: 10px;
}
.menu a {
  text-decoration: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--secondary);
  padding: 15px 20px;
}
@media (min-width: 1200px) {
  .menu a {
    padding: 17px 20px;
  }
}
@media (min-width: 1440px) {
  .menu a {
    padding: 20px;
  }
}
.menu .nav-title {
  display: block;
  background: #f8cadc;
  padding: 12px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}
.menu .nav-title.bg-gray {
  color: var(--secondary);
  background: #d9dfe6;
}
.menu .nav-arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .menu .nav-arrow {
    height: 66px;
  }
}
.menu .nav-arrow:before {
  width: 10px;
  height: 10px;
  content: "";
  border: 2px solid var(--secondary);
  border-left: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -2px;
  margin-right: 27px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Visual Block Styles */
.visual-block {
  position: relative;
  background: var(--white);
  font-family: var(--tradeGothic);
}
.visual-block:after {
  background-color: #f1f1f1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: "";
  z-index: -1;
  display: none;
}
@media (max-width: 767px) {
  .visual-block:after {
    bottom: -425px;
    display: block;
  }
}
@media (max-width: 1023px) {
  .visual-block {
    margin-bottom: 315px;
  }
}
@media (max-width: 767px) {
  .visual-block {
    margin-bottom: 380px;
  }
}
.visual-block .image-holder {
  overflow: hidden;
  position: relative;
  height: 320px;
}
@media (min-width: 768px) {
  .visual-block .image-holder {
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .visual-block .image-holder {
    height: auto;
  }
}
.visual-block .image-holder:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
}
@media (min-width: 768px) {
  .visual-block .image-holder:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.25)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  }
}
.visual-block .image-holder img,
.visual-block .image-holder video {
  width: 575px;
  height: 100%;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 480px) {
  .visual-block .image-holder img,
  .visual-block .image-holder video {
    width: 768px;
  }
}
@media (min-width: 768px) {
  .visual-block .image-holder img,
  .visual-block .image-holder video {
    width: 1024px;
  }
}
@media (min-width: 1024px) {
  .visual-block .image-holder img,
  .visual-block .image-holder video {
    width: 1200px;
  }
}
@media (min-width: 1200px) {
  .visual-block .image-holder img,
  .visual-block .image-holder video {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: auto;
  }
}
.visual-block .visual-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  .visual-block .visual-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.visual-block .visual-holder {
  width: 100%;
}
.visual-block .textbox {
  text-align: center;
  max-width: 860px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  color: var(--white);
  font-size: 13px;
  line-height: 1.25;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .visual-block .textbox {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .visual-block .textbox {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.visual-block .main-title {
  font: 700 50px/1.1 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
  display: block;
}
@media (min-width: 768px) {
  .visual-block .main-title {
    font-size: 100px;
  }
}
@media (min-width: 1024px) {
  .visual-block .main-title {
    font-size: 128px;
  }
}
.visual-block h1 {
  font: 700 25px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .visual-block h1 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .visual-block h1 {
    font-size: 39px;
  }
}
.visual-block p {
  margin: 0 0 20px;
}
@media (max-width: 1023px) {
  .visual-block.visual-block-add {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .visual-block.visual-block-add {
    margin-bottom: 0;
  }
}
.visual-block.visual-block-add h1 {
  font: 700 25px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .visual-block.visual-block-add h1 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .visual-block.visual-block-add h1 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .visual-block.visual-block-add p {
    font-size: 25px;
  }
}
.visual-block.visual-block-add .visual-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.visual-block.visual-block-add .textbox {
  margin-bottom: 0;
}

.font-desktop {
  font: 700 25px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .font-desktop {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .font-desktop {
    font-size: 39px;
  }
}

/* Booking Block Styles */
.booking-block {
  position: relative;
  left: 0;
  top: 0;
  z-index: 9;
  height: 35px;
  width: 100%;
  padding: 15px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .booking-block {
    height: 75px;
  }
}
@media (min-width: 1024px) {
  .booking-block {
    height: 120px;
  }
}
.booking-block .booking-block-placeholder {
  height: 120px;
  display: none;
}
@media (min-width: 1024px) {
  .booking-block.is-sticky {
    position: fixed;
    background-color: var(--secondary);
  }
}
@media (min-width: 1024px) {
  .booking-block.is-sticky .booking-block-placeholder {
    display: block;
  }
}

/* Booking Form Styles */
.booking-form {
  background: var(--white);
  max-width: 1086px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .booking-form {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-shadow: none;
            box-shadow: none;
    height: 90px;
  }
}
.booking-form .field-box {
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}
@media (min-width: 1024px) {
  .booking-form .field-box {
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-bottom: 0;
    border-right: 1px solid #f1f1f1;
  }
}
.booking-form .promo-code {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--black);
  min-width: 105px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-transform: uppercase;
  display: none;
  padding: 0 5px;
}
@media (min-width: 1024px) {
  .booking-form .promo-code {
    font-size: 13px;
    min-width: 120px;
    letter-spacing: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  .booking-form .promo-code {
    min-width: 140px;
  }
}
.booking-form .promo-code img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.booking-form .promo-code input[type=text] {
  border: 1px solid var(--white);
  width: 100%;
  max-width: 100px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--tradeGothic);
  padding: 0 3px;
  letter-spacing: 1.5px;
  text-align: center;
}
.booking-form .promo-code input[type=text]::-webkit-input-placeholder {
  opacity: 1;
  color: var(--black);
}
.booking-form .promo-code input[type=text]::-moz-placeholder {
  opacity: 1;
  color: var(--black);
}
.booking-form .promo-code input[type=text]:-ms-input-placeholder {
  opacity: 1;
  color: var(--black);
}
.booking-form .promo-code input[type=text]::-ms-input-placeholder {
  opacity: 1;
  color: var(--black);
}
.booking-form .promo-code input[type=text]::placeholder {
  opacity: 1;
  color: var(--black);
}
.booking-form .promo-code input[type=text]:focus {
  outline: none;
  border-color: var(--primary);
}
.booking-form .button-booking {
  font-size: 13px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blueDarker);
  text-decoration: none;
  letter-spacing: 1.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  padding: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  font-family: var(--tradeGothic);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  color: var(--white);
  background: var(--primary);
}
@media (min-width: 1024px) {
  .booking-form .button-booking {
    padding: 15px;
    width: 130px;
  }
}
@media (min-width: 1200px) {
  .booking-form .button-booking {
    width: 160px;
    gap: 10px;
  }
}
@media (max-width: 1023px) {
  .booking-form .button-booking {
    height: 60px;
    width: 100%;
  }
}
.booking-form .button-booking:hover {
  background: var(--primaryDark);
}

/* Custom Select Styles */
.custom-select {
  position: relative;
  height: 100%;
}
.custom-select .custom-select-opener {
  width: 100%;
  height: 100%;
  padding: 18px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--white);
  text-decoration: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--tradeGothic);
}
@media (min-width: 1024px) {
  .custom-select .custom-select-opener {
    gap: 7px;
    padding: 8px 12px;
  }
}
@media (min-width: 1200px) {
  .custom-select .custom-select-opener {
    padding: 10px 18px;
    gap: 10px;
  }
}
.custom-select .custom-select-opener img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.custom-select .custom-select-opener .custom-select-label {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--black);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .custom-select .custom-select-opener .custom-select-label {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .custom-select .custom-select-opener .custom-select-label {
    font-size: 16px;
  }
}
.custom-select .custom-select-opener .custom-select-icon {
  width: 20px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  .custom-select .custom-select-opener .custom-select-icon {
    margin-right: -5px;
  }
}
.custom-select .custom-select-opener .custom-select-icon:after {
  width: 9px;
  height: 9px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: var(--black);
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -5px;
}
.custom-select .custom-select-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 60px;
  padding: 10px;
}
@media (min-width: 1024px) {
  .custom-select .custom-select-header {
    display: none;
  }
}
.custom-select .custom-select-header .custom-select-opener {
  width: 40px;
  height: 40px;
  padding: 0;
}
.custom-select .custom-select-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: var(--white);
  z-index: 1;
  overflow: auto;
  max-height: 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  min-width: 250px;
}
.custom-select .custom-select-dropdown::-webkit-scrollbar {
  width: 11px;
  padding: 10px 0 0;
}
.custom-select .custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}
.custom-select .custom-select-dropdown::-webkit-scrollbar-thumb {
  background: #e0d2c9;
  border: 3px solid #fff;
  border-radius: 10px;
}
.custom-select.custom-select-active .custom-select-dropdown {
  max-height: 450px;
}
@media (max-width: 1023px) {
  .custom-select.guests-select .custom-select-opener {
    display: none;
  }
}
@media (max-width: 1023px) {
  .custom-select.guests-select .custom-select-dropdown {
    display: block !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    position: static;
    max-height: inherit;
  }
}
@media (max-width: 1023px) {
  .custom-select.country-select .custom-select-dropdown {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    max-height: inherit !important;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (max-width: 1023px) {
  .custom-select.country-select.custom-select-active .custom-select-dropdown {
    max-height: inherit;
    opacity: 1;
    visibility: visible;
  }
}

/* Country List Styles */
.country-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.country-list li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.country-list li.active > a, .country-list li:hover > a {
  background: #e7f4f7;
}
.country-list li a {
  font-size: 20px;
  line-height: 30px;
  padding: 12px 25px;
  display: block;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .country-list li a {
    font-size: 16px;
    padding: 10px 25px;
  }
}
.country-list li a:hover {
  background: #e7f4f7;
}
.country-list li ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.country-list li ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-left: 35px;
}
.country-list li ul li a:before {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  content: "";
  border-radius: 10px;
}
.country-list li.active > .item-arrow:before {
  margin-top: 3px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.country-list .item-arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}
.country-list .item-arrow:before {
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid var(--secondary);
  border-left: 0;
  border-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -2px;
  margin-right: 23px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Checkin Datepicker Styles */
.checkin-datepicker {
  position: relative;
}

/* Date Picker Styles */
#checkin-calendar {
  margin-top: -1px;
}
#checkin-calendar .pika-single {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 35px 0;
  background: var(--white);
  border: 0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  margin-left: -1px;
}
@media (min-width: 768px) {
  #checkin-calendar .pika-single {
    padding: 50px 0;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  #checkin-calendar .pika-single {
    width: 748px;
    margin-left: 2px;
  }
}
@media (min-width: 1200px) {
  #checkin-calendar .pika-single {
    width: 790px;
  }
}
#checkin-calendar .pika-lendar {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0;
}
@media (min-width: 768px) {
  #checkin-calendar .pika-lendar {
    width: 50%;
  }
}
@media (min-width: 768px) {
  #checkin-calendar .pika-lendar:first-child {
    border-right: 1px solid #edeceb;
  }
}
#checkin-calendar .pika-day {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: inherit;
  font-size: 14px;
  font-family: var(--tradeGothic);
  position: relative;
  display: block;
  min-width: 30px;
  max-width: 40px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  letter-spacing: 0;
  text-align: center;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
#checkin-calendar .is-outside-current-month .pika-day {
  color: rgba(68, 74, 82, 0.3);
}
#checkin-calendar .pika-button {
  background: transparent;
}
#checkin-calendar .is-selected .pika-day {
  color: #fff;
  background: #002855;
  font-weight: 400;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#checkin-calendar .is-disabled .pika-day {
  background: hsla(34, 11%, 72%, 0.2);
  cursor: not-allowed;
  opacity: 1;
}
#checkin-calendar .is-today .pika-day {
  padding-bottom: 5px;
  font-weight: 400;
}
#checkin-calendar .is-today .pika-day:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 2px;
  left: 50%;
  margin-left: -4px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0;
  border-color: currentColor transparent transparent;
}
#checkin-calendar td:not(.is-disabled):not(.is-selected) .pika-day:hover {
  background: #9dd6d7;
  color: #fff;
}
#checkin-calendar .pika-label {
  position: relative;
  font-size: inherit;
}
#checkin-calendar .pika-label select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#checkin-calendar .pika-title {
  font-family: var(--tradeGothic);
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  line-height: 1.025;
  font-size: 16px;
  line-height: 1.181818182;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 25px;
}
#checkin-calendar .pika-next,
#checkin-calendar .pika-prev {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  position: absolute;
  top: 50%;
  width: 16px;
  height: 11px;
  margin-top: -6px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.07' height='10.98' viewBox='0 0 15.07 10.98' fill='%239dd6d7'%3E%3Cpath d='M10.28 0L9.15.99l3.27 3.75H0v1.5h12.42L9.15 10l1.13.98 4.78-5.49L10.28 0z'/%3E%3C/svg%3E") 50% no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  overflow: hidden;
  opacity: 1;
}
#checkin-calendar .pika-prev {
  left: 28px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#checkin-calendar .pika-next {
  right: 28px;
}
#checkin-calendar .pika-table {
  width: 100%;
  max-width: 85%;
  table-layout: fixed;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #checkin-calendar .pika-table {
    max-width: 256px;
  }
}
#checkin-calendar .pika-table td,
#checkin-calendar .pika-table th {
  width: 14.28571429%;
}
#checkin-calendar .pika-table td {
  padding-top: 8px;
}
#checkin-calendar .pika-table th {
  position: relative;
  font-size: 11px;
  color: #000;
  padding-bottom: 5px;
  pointer-events: none;
}
#checkin-calendar .pika-table th abbr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#checkin-calendar .pika-table th:first-child::before {
  content: "S";
}
#checkin-calendar .pika-table th:nth-child(2):before {
  content: "M";
}
#checkin-calendar .pika-table th:nth-child(3):before {
  content: "T";
}
#checkin-calendar .pika-table th:nth-child(4):before {
  content: "W";
}
#checkin-calendar .pika-table th:nth-child(5):before {
  content: "T";
}
#checkin-calendar .pika-table th:nth-child(6):before {
  content: "F";
}
#checkin-calendar .pika-table th:nth-child(7):before {
  content: "S";
}

/* Guests List Styles */
.guests-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guests-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 20px 15px;
}
.guests-list li + li {
  border-top: 1px solid #f1f1f1;
}
.guests-list .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font: 700 16px/20px var(--tradeGothic);
  color: var(--secondary);
  text-transform: uppercase;
}
.guests-list .icon {
  width: 20px;
  height: 20px;
  font-size: 0;
  line-height: 0;
}

/* Input Number Styles */
.input-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.input-number button {
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  display: block;
}
.input-number button img {
  width: 100%;
  height: auto;
  display: block;
}
.input-number input[type=number] {
  width: 32px;
  height: 20px;
  border: 0;
  text-align: center;
  font: 700 16px/20px var(--tradeGothic);
}
.input-number input[type=number]::-webkit-inner-spin-button,
.input-number input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-number input[type=number] {
  -moz-appearance: textfield;
}

/* Main Section Section */
.main-section {
  overflow: hidden;
  position: relative;
  background: #f1f1f1;
  padding: 50px 0;
  color: #000E1E;
  font-family: var(--tradeGothic);
}
@media (min-width: 768px) {
  .main-section {
    background: var(--white);
    padding: 75px 0;
  }
}
@media (min-width: 1200px) {
  .main-section {
    padding: 80px 0;
  }
}
.main-section .container {
  max-width: 1373px;
  padding: 0 20px;
  margin: 0 auto;
}
.main-section .section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  width: 100%;
  margin: 0 0 20px;
  font-size: 16px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .main-section .section-header {
    font-size: 19px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1024px) {
  .main-section .section-header {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .main-section .section-header {
    font-size: 25px;
  }
}
.main-section .section-header img {
  max-width: 183px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .main-section .section-header img {
    max-width: 220px;
  }
}
@media (min-width: 1024px) {
  .main-section .section-header img {
    max-width: 250px;
  }
}
@media (min-width: 1200px) {
  .main-section .section-header img {
    max-width: 289px;
  }
}
.main-section h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 700;
  color: #000E1E;
}
@media (min-width: 768px) {
  .main-section h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .main-section h2 {
    font-size: 39px;
  }
}
.main-section p {
  margin: 10px 0 0;
}
.main-section.reviews-section {
  height: auto;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .main-section.reviews-section {
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .main-section.reviews-section {
    padding-bottom: 0;
  }
}

/* Reviews Slider Styles */
.reviews-slider {
  max-width: 1300px;
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .reviews-slider {
    padding: 0 15px;
    margin: 0 auto 20px;
  }
}
@media (min-width: 1024px) {
  .reviews-slider {
    padding: 0 45px;
  }
}
@media (min-width: 1200px) {
  .reviews-slider {
    margin-bottom: 40px;
    padding: 0 80px;
  }
}
.reviews-slider .slick-list {
  padding: 0 50px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .reviews-slider .slick-list {
    padding: 0;
    margin-bottom: 0;
  }
}
.reviews-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews-slider .slick-slide {
  height: auto;
  padding: 16px 8px;
}
@media (min-width: 768px) {
  .reviews-slider .slick-slide {
    padding: 70px 20px;
  }
}
.reviews-slider .slick-slide.slick-center .review-box {
  z-index: 1;
}
@media (min-width: 768px) {
  .reviews-slider .slick-slide.slick-center .review-box {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    margin: 0 -55px;
  }
}
@media (min-width: 1200px) {
  .reviews-slider .slick-slide.slick-center .review-box {
    margin: 0 -45px;
  }
}

/* Review Box Styles */
.review-box {
  padding: 16px;
  background: var(--white);
  font-size: 13px;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
  color: var(--blueDarker);
  position: relative;
  border-radius: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .review-box {
    padding: 10px 15px;
    font-size: 9px;
    border-radius: 0;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 1200px) {
  .review-box {
    font-size: 10px;
  }
}
@media (min-width: 1440px) {
  .review-box {
    font-size: 11px;
    padding: 14px 20px;
  }
}
.review-box .textbox {
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 0;
}
@media (min-width: 768px) {
  .review-box .textbox {
    text-align: center;
    max-width: 275px;
    margin: 0 auto 12px;
  }
}
.review-box h3 {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.25;
  font-weight: 700;
  color: var(--blueDarker);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .review-box h3 {
    font-size: 18px;
    margin: 0 0 6px;
  }
}
@media (min-width: 1200px) {
  .review-box h3 {
    font-size: 21px;
  }
}
.review-box p {
  margin: 0;
  opacity: 0.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-box .review-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: auto;
}
.review-box .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.review-box .name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blueDarker);
  letter-spacing: 1px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .review-box .name {
    font-size: 10px;
    letter-spacing: normal;
  }
}
@media (min-width: 1200px) {
  .review-box .name {
    font-size: 13px;
  }
}
.review-box .des {
  display: block;
  font-size: 13px;
  color: var(--blueDarker);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .review-box .des {
    font-size: 9px;
  }
}
@media (min-width: 1200px) {
  .review-box .des {
    font-size: 11px;
  }
}
.review-box .ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media (min-width: 1200px) {
  .review-box .ratings {
    gap: 10px;
  }
}
.review-box .ratings .icon {
  width: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1200px) {
  .review-box .ratings .icon {
    width: 16px;
  }
}
.review-box .ratings .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.review-box .ratings .rating-count {
  display: block;
  font-size: 16px;
  color: var(--blueDarker);
}
@media (min-width: 768px) {
  .review-box .ratings .rating-count {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  .review-box .ratings .rating-count {
    font-size: 16px;
  }
}

.amenities-holder .new-btn-area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.amenities-holder .new-btn-area .show-more-btn {
  min-width: 180px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  background-color: #EA558D;
  font-weight: 700;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .amenities-holder .new-btn-area .show-more-btn {
    display: block;
  }
}
.amenities-holder .new-btn-area .show-more-btn:hover {
  background-color: rgba(234, 85, 141, 0.6);
}
.amenities-holder .new-btn-view:hover {
  background-color: rgba(234, 85, 141, 0.6);
}

/* Amenities List Styles */
.amenities-list {
  list-style: none;
  padding: 20px 0;
  margin: 0 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1440px) {
  .amenities-list {
    padding: 20px 60px;
  }
}
.amenities-list li {
  width: 50%;
  padding: 10px;
}
@media (min-width: 1024px) {
  .amenities-list li {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .amenities-list li {
    padding: 20px;
  }
}
.amenities-list .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.amenities-list .icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* Rooms Holder Styles */
.rooms-holder {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rooms-holder .column {
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .rooms-holder .column {
    width: 50%;
    padding: 10px;
  }
}
@media (min-width: 1024px) {
  .rooms-holder .column {
    width: 33.333%;
    padding: 7px;
  }
}
@media (min-width: 1440px) {
  .rooms-holder .column {
    padding: 10px;
  }
}

/* Rooms Slider Styles */
.room-box {
  background: var(--white);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.room-box .box-holder {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 0;
}
.room-box .textbox {
  overflow: hidden;
  padding: 15px;
}
@media (min-width: 1440px) {
  .room-box .textbox {
    padding: 20px;
  }
}
.room-box .info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  margin-bottom: 8px;
}
.room-box h3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
  margin: 0;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blueDarker);
}
.room-box h3 a {
  text-decoration: none;
  display: inline-block;
  color: currentColor;
}
.room-box .room-type {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
  padding: 0 20px 0 0;
}
.room-box .room-options {
  overflow: hidden;
}
.room-box .title {
  font-size: 16px;
  line-height: 1.3;
  display: block;
  font-weight: 400;
  margin: 0 0 8px;
}
.room-box .types-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.room-box .types-list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--secondary);
  background: #e7f4f7;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 20px;
  letter-spacing: 1px;
}
.room-box .button-wrap {
  width: 100%;
  margin-top: auto;
}
.room-box .button-book {
  width: 100%;
  height: 60px;
  padding: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.room-box .amenities-info {
  margin: 8px 0 0;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--blueDarker);
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines you want */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-box .amenities-info ul {
  padding: 0;
  margin: 0;
}
.room-box .amenities-info li span {
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.room-box .button-wrap {
  padding: 0 15px 15px;
}
@media (min-width: 1440px) {
  .room-box .button-wrap {
    padding: 10px 20px 20px;
  }
}

/* rooms-slider Styles */
.rooms-slider {
  overflow: hidden;
}
.rooms-slider:hover .slick-arrow {
  display: block !important;
}
.rooms-slider .slick-slide {
  position: relative;
}
.rooms-slider .slick-slide:before {
  display: block;
  content: "";
  padding-top: 52%;
}
.rooms-slider .slick-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rooms-slider .slick-arrow {
  width: 24px;
  height: 24px;
  margin-top: 10px;
  display: none !important;
}
.rooms-slider .slick-arrow svg {
  width: 12px;
  height: 12px;
  margin: 3px 0 0;
}
.rooms-slider .slick-dots {
  bottom: 16px;
  gap: 7px;
}
.rooms-slider .slick-dots li:nth-last-child(-n+2) button {
  width: 5px;
  height: 5px;
}
.rooms-slider .slick-dots li:last-child button {
  width: 3px;
  height: 3px;
}
.rooms-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  background: var(--white);
}
.rooms-slider .slick-dots li:hover button, .rooms-slider .slick-dots li.slick-active button {
  background: var(--primary);
}

/* Amenities Slider Styles*/
.amenities-slider {
  margin-top: 10px;
  padding: 10px 30px;
  text-align: center;
}
@media (min-width: 1200px) {
  .amenities-slider {
    text-align: left;
  }
}
.amenities-slider .slick-slide {
  padding: 0 3px;
}
.amenities-slider .slick-arrow {
  width: 24px;
  height: 24px;
  margin-top: 10px;
}
.amenities-slider .slick-arrow svg {
  width: 12px;
  height: 12px;
}
.amenities-slider .icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px;
}
@media (min-width: 1200px) {
  .amenities-slider .icon {
    margin: 0 0 10px;
  }
}
.amenities-slider .title {
  display: block;
  font-size: 13px;
  color: var(--blueDarker);
}

@media (max-width: 767px) {
  .new-choose-aparthotel {
    background-color: #fff;
    padding: 50px 0 120px;
  }
}

.new-choose-aparthotel .new-header {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .new-choose-aparthotel .new-header {
    margin-bottom: 32px;
  }
}
.font-bravo {
  margin: 0 0 20px;
  color: #000E1E;
  font-size: 39px;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .font-bravo {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .font-bravo {
    font-size: 25px;
    margin: 0 0 16px;
  }
}
.new-choose-aparthotel .new-header h1 {
  margin: 0 0 20px;
  color: #000E1E;
  font-size: 39px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .new-choose-aparthotel .new-header h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-choose-aparthotel .new-header h1 {
    font-size: 25px;
    margin: 0 0 16px;
  }
}
.new-choose-aparthotel .new-btn-view {
  min-width: 200px;
  height: 60px;
  background-color: #EA558D;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: top;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
}

.new-choose-aparthotel .new-btn-area {
  text-align: center;
  padding: 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.new-choose-aparthotel .new-btn-area .show-more-btn {
  min-width: 180px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 13px;
  background-color: #EA558D;
  font-weight: 700;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
}

.new-choose-aparthotel .new-btn-area .show-more-btn:hover {
  background-color: rgba(234, 85, 141, 0.6);
}

.new-choose-aparthotel .new-btn-view:hover {
  background-color: rgba(234, 85, 141, 0.6);
}

.new-choose-aparthotel .new-btn-view svg {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 4px 0 0;
  line-height: 0;
}

.new-choose-aparthotel .new-aparthotel-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* horizontal center */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}

@media (min-width: 769px) {
  .new-aparthotel-slider.new-aparthotel-slider-more .new-card:nth-child(n+4) {
    display: none;
  }
  .show-more-btn {
    display: block;
  }
}
@media (max-width: 768px) {
  .show-more-btn {
    display: none;
  }
}
@media (max-width: 992px) {
  .new-choose-aparthotel .new-aparthotel-slider {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .new-choose-aparthotel .new-aparthotel-slider {
    gap: 20px;
    margin: 0 -25px 0 0;
  }
}
.new-choose-aparthotel .new-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 60px);
          flex: 0 0 calc(33.33% - 60px);
  background: #eee;
  min-height: 492px;
  background-color: #fff;
  position: relative;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.new-choose-aparthotel .new-aparthotel-slider-more .new-card {
  min-height: 460px;
}

@media (max-width: 992px) {
  .new-choose-aparthotel .new-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 30px);
            flex: 0 0 calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .new-choose-aparthotel .new-card {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    margin: 0 20px 0 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    min-height: 436px;
  }
  .new-choose-aparthotel .new-aparthotel-slider-more .new-card {
    min-height: 400px;
  }
}
.new-choose-aparthotel .new-card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.new-choose-aparthotel .new-card-img {
  height: 220px;
}

.new-choose-aparthotel .new-card-body {
  padding: 20px 16px 80px;
}

@media (max-width: 767px) {
  .new-choose-aparthotel .new-card-body {
    padding: 20px 16px 40px;
  }
}
.new-choose-aparthotel .new-card-body p {
  color: #000E1E;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 16px;
}

@media (max-width: 992px) {
  .new-choose-aparthotel .new-card-body p {
    font-size: 13px;
  }
}
.new-choose-aparthotel .new-card-body h3 {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 28px;
  color: #000E1E;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 992px) {
  .new-choose-aparthotel .new-card-body h3 {
    font-size: 20px;
  }
}
.new-choose-aparthotel .new-card-body .new-link {
  height: 60px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  color: #000E1E;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 60px;
  padding: 0 16px;
  position: absolute;
  bottom: 20px;
}

@media (max-width: 992px) {
  .new-choose-aparthotel .new-card-body .new-link {
    height: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .new-choose-aparthotel .new-card-body .new-link {
    bottom: 0;
  }
}
.new-choose-aparthotel .new-card-body .new-link:hover {
  background-color: #B1DDE6;
}

.new-choose-aparthotel .new-card-body .new-link:hover svg path {
  fill: #fff;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.new-choose-aparthotel .new-card-body .new-link svg {
  display: inline-block;
  vertical-align: middle;
}

.new-icons-area-hotal {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .new-icons-area-hotal {
    padding: 30px 0;
    background-color: #fff;
  }
}
.new-icons-area-hotal .new-header-icons {
  margin-bottom: 40px;
  text-align: center;
  padding: 0 185px;
}

@media (max-width: 992px) {
  .new-icons-area-hotal .new-header-icons {
    padding: 0;
  }
}
.new-icons-area-hotal .new-header-icons h1 {
  font-size: 39px;
  color: #000E1E;
  line-height: 115%;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 0;
  margin: 0;
}

@media (max-width: 992px) {
  .new-icons-area-hotal .new-header-icons h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-icons-area-hotal .new-header-icons h1 {
    font-size: 25px;
    padding: 0;
  }
}
.new-icons-area-hotal .new-icons-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}

@media (max-width: 767px) {
  .new-icons-area-hotal .new-icons-area {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
}
.new-icons-area-hotal .new-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(20% - 32px);
          flex: 0 0 calc(20% - 32px);
}

@media (max-width: 992px) {
  .new-icons-area-hotal .new-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(34% - 32px);
            flex: 0 0 calc(34% - 32px);
  }
}
@media (max-width: 767px) {
  .new-icons-area-hotal .new-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 24px);
            flex: 0 0 calc(50% - 24px);
  }
}
.new-icons-area-hotal .new-icon {
  margin-bottom: 24px;
}

@media (max-width: 400px) {
  .new-icons-area-hotal .new-icon img {
    display: block;
    width: 100%;
  }
}
.new-icons-area-hotal h2 {
  font-size: 16px;
  color: #000E1E;
  line-height: 115%;
  text-transform: uppercase;
  font-weight: 700;
}

.new-happy-customer-area {
  padding: 60px 0 130px;
}

@media (max-width: 767px) {
  .new-happy-customer-area {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
}
.new-happy-customer-area .slick-dots {
  bottom: -40px;
}

.new-happy-customer-area .new-header {
  margin-bottom: 30px;
  text-align: center;
}

.new-happy-customer-area .new-header h1 {
  color: #000E1E;
  font-size: 39px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 992px) {
  .new-happy-customer-area .new-header h1 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-happy-customer-area .new-header h1 {
    font-size: 25px;
  }
}
.new-happy-customer-area .new-happy-customer-slider {
  letter-spacing: -7px;
  padding: 0 90px;
}

@media (max-width: 767px) {
  .new-happy-customer-area .new-happy-customer-slider {
    padding: 0;
  }
}
.new-happy-customer-area .slick-arrow {
  width: 64px;
  height: 64px;
  background-color: #002855;
}

@media (max-width: 767px) {
  .new-happy-customer-area .slick-arrow {
    width: 32px;
    height: 32px;
    z-index: 2;
  }
}
.new-happy-customer-area .slick-next:before, .new-happy-customer-area .slick-prev:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 22px;
  top: 22px;
  left: 24px;
  opacity: 1;
  background-image: url(arrow-left.png);
}

@media (max-width: 767px) {
  .new-happy-customer-area .slick-next:before, .new-happy-customer-area .slick-prev:before {
    width: 10px;
    top: 5px;
    left: 12px;
  }
}
.new-happy-customer-area .slick-next {
  right: 0;
}

.new-happy-customer-area .slick-prev {
  left: 0;
}

.new-happy-customer-area .slick-next:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.new-happy-customer-area .new-block {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  width: 31.13%;
  margin: 10px;
  background-color: #fff;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0;
}
.new-happy-customer-area .new-block .new-img iframe {
  width: 100%;
}

@media (max-width: 767px) {
  .new-happy-customer-area .new-block {
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.new-happy-customer-area .new-block img {
  display: block;
  width: 100%;
}

.new-happy-customer-area .new-block .new-content {
  padding: 20px;
}

.new-happy-customer-area .new-block .new-content h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  color: #000E1E;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 992px) {
  .new-happy-customer-area .new-block .new-content h2 {
    font-size: 14px;
  }
}
.new-happy-customer-area .new-block .new-content svg {
  width: 20px;
}

.new-map-area {
  background-color: #F7FCFD;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}
.new-map-area.south-hall-map-area .new-map-content h2 {
  font-size: 25px;
  margin-bottom: 16px;
}
.new-map-area.south-hall-map-area .get-directions-btn {
  width: 180px;
  height: 60px;
  background-color: #E84566;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font: 700 13px/1.3 var(--tradeGothic);
}
@media (max-width: 767px) {
  .new-map-area.south-hall-map-area .get-directions-btn {
    margin: 0 auto;
  }
}
.new-map-area.south-hall-map-area .map-titles {
  margin: 40px 0 16px;
  display: block;
  color: #000E1E;
  text-transform: uppercase;
  font: 700 39px/1.2 var(--tradeGothic);
}
@media (max-width: 767px) {
  .new-map-area.south-hall-map-area .map-titles {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .new-map-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.new-map-area:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 -9999px;
  padding: 0 9999px;
  background-color: #F7FCFD;
  z-index: -1;
}

.new-map-area .new-map-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991px) {
  .new-map-area .new-map-content {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    display: block;
  }
}
.new-map-area .new-map-content .new-block {
  max-width: 600px;
  padding: 87px 60px;
}

@media (max-width: 991px) {
  .new-map-area .new-map-content .new-block {
    max-width: 100%;
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .new-map-area .new-map-content .new-block {
    padding: 30px 20px;
  }
}
.new-map-area .new-map-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-map-area .new-map-content ul li {
  padding: 12px;
}

.new-map-area .new-map-content ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #002855;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .new-map-area .new-map-content ul li a {
    font-size: 16px;
  }
}
.new-map-area .new-map-content ul li a:hover {
  color: #EA558D;
}

.new-map-area .new-map-content ul li a:hover svg path {
  fill: #EA558D;
}

.new-map-area .new-map-content ul li a svg {
  margin: 0 8px 0 0;
}

.new-map-area .new-map-content h2 {
  color: #000E1E;
  font-size: 39px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
}

@media (max-width: 1200px) {
  .new-map-area .new-map-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-map-area .new-map-content h2 {
    font-size: 25px;
    text-align: center;
  }
}
.new-map-sec {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: auto !important;
}

.new-map-sec iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .new-map-sec > div {
    height: 400px !important;
  }
}
.new-map-address {
  padding: 40px 0;
  background-color: #002855;
}
.new-map-address.south-hall-map-address {
  background-color: #E84566;
}
.new-map-address.south-hall-map-address strong {
  color: #fff;
}
.new-map-address.south-hall-map-address h2 {
  color: #fff;
}
.new-map-address.south-hall-map-address .address-sec {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.new-map-address.south-hall-map-address .address-sec .block {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.new-map-address.south-hall-map-address .address-sec .block .btn-book-now {
  background-color: #2C2B33;
  width: 260px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font: 700 13px/1.3 var(--tradeGothic);
}
@media (max-width: 1000px) {
  .new-map-address.south-hall-map-address .address-sec .block .btn-book-now {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .new-map-address.south-hall-map-address .address-sec .block .btn-book-now {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .new-map-address {
    text-align: center;
    background-color: #fff;
  }
}
.new-map-address .map-container {
  max-width: 1235px;
  margin: 0 auto;
  color: #fff;
  padding: 0 50px;
}

@media (max-width: 991px) {
  .new-map-address .map-container {
    padding: 0 30px;
  }
}
.new-map-address .address-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1100px) {
  .new-map-address .address-sec {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .new-map-address .address-sec {
    display: block;
  }
}
.new-map-address .address-sec .block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
}

@media (max-width: 1100px) {
  .new-map-address .address-sec .block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
@media (max-width: 991px) {
  .new-map-address .address-sec .block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .new-map-address .address-sec .block:first-child {
    margin-bottom: 40px;
  }
}
.new-map-address h2 {
  font-size: 39px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

@media (max-width: 1100px) {
  .new-map-address h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .new-map-address h2 {
    font-size: 25px;
    color: #000E1E;
  }
}
.new-map-address h3 {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

@media (max-width: 767px) {
  .new-map-address h3 {
    color: #000E1E;
    font-size: 20px;
  }
}
.new-map-address strong {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
}

@media (max-width: 767px) {
  .new-map-address strong {
    color: #EA558D;
    font-size: 13px;
    text-transform: none;
    margin-bottom: 8px;
    display: block;
  }
}
.new-map-address p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 991px) {
  .new-map-address p {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .new-map-address p {
    font-size: 13px;
    color: #000E1E;
    margin-bottom: 16px;
  }
}
.new-map-address ul {
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
}

.new-map-address ul li {
  margin: 0 0 8px;
}

.new-map-address ul .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .new-map-address ul .link {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .new-map-address ul {
    padding: 0;
  }
  .new-map-address ul .link {
    color: #002855;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.new-map-address ul .link svg {
  margin: 0 8px 0 0;
}

@media (max-width: 767px) {
  .new-map-address ul .link svg path {
    fill: #002855;
  }
}
.new-map-address .btn-direcions {
  min-width: 260px;
  max-width: 260px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  background-color: #EA558D;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .new-map-address .btn-direcions {
    display: none;
  }
}
.new-map-address .btn-direcions.add {
  display: none;
}

@media (max-width: 991px) {
  .new-map-address .btn-direcions.add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.new-map-address .btn-direcions svg {
  margin-top: -2px;
}

.new-map-address .btn-direcions:hover {
  background-color: rgba(234, 85, 141, 0.9);
}

@media (max-width: 1100px) {
  .new-map-address .btn-direcions {
    min-width: 230px;
    max-width: 230px;
  }
}
@media (max-width: 767px) {
  .new-map-address .btn-direcions {
    min-width: 100%;
    max-width: 100%;
  }
}
.stay-your-glasgow .header-area {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 991px) {
  .stay-your-glasgow .header-area {
    margin: 0 0 50px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .header-area {
    margin: 0 0 25px;
  }
}
.stay-your-glasgow .header-area h2 {
  font-size: 50px;
  margin: 0 0 10px;
}
@media (max-width: 991px) {
  .stay-your-glasgow .header-area h2 {
    font-size: 39px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .header-area h2 {
    font-size: 28px;
  }
}
.stay-your-glasgow .header-area p {
  font-size: 25px;
}
@media (max-width: 991px) {
  .stay-your-glasgow .header-area p {
    font-size: 13px;
  }
}
.stay-your-glasgow .block-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .stay-your-glasgow .block-area {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .block-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stay-your-glasgow .block-area .col-sec {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .stay-your-glasgow .block-area .col-sec {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.stay-your-glasgow .block-area .col-sec img {
  width: 100%;
  display: block;
}
.stay-your-glasgow .block-area h3 {
  font-size: 39px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .stay-your-glasgow .block-area h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .block-area h3 {
    font-size: 25px;
  }
}
.stay-your-glasgow .block-area ul {
  margin: 0 0 0 10px;
  padding-left: 25px;
  font-size: 25px;
  line-height: 1.3;
  color: var(--blueDarker);
}
@media (max-width: 991px) {
  .stay-your-glasgow .block-area ul {
    font-size: 13px;
  }
}
.stay-your-glasgow .holder-area .img-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin: 100px 0 0;
}
@media (max-width: 991px) {
  .stay-your-glasgow .holder-area .img-holder {
    margin: 50px 0 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .holder-area .img-holder {
    margin: 25px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stay-your-glasgow .holder-area .img-holder.image-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 767px) {
  .stay-your-glasgow .holder-area .img-holder.image-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stay-your-glasgow .holder-area .img-holder.image-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .stay-your-glasgow .holder-area .img-holder.image-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.stay-your-glasgow .holder-area .img-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stay-your-glasgow .holder-area .img-area img {
  display: block;
  width: 100%;
}
.stay-your-glasgow .holder-area .content-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stay-your-glasgow .holder-area h3 {
  color: #000E1E;
  font-size: 39px;
  margin: 0 0 20px;
}
@media (max-width: 991px) {
  .stay-your-glasgow .holder-area h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .stay-your-glasgow .holder-area h3 {
    font-size: 25px;
  }
}
.stay-your-glasgow .holder-area p {
  font-size: 25px;
  color: #000E1E;
}
@media (max-width: 991px) {
  .stay-your-glasgow .holder-area p {
    font-size: 13px;
  }
}

.comming-soon-form {
  background-color: #E7F4F7;
  font-size: 25px;
  padding: 60px 0;
  color: #000E1E;
}
.comming-soon-form .block-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .comming-soon-form .block-sec {
    display: block;
  }
}
.comming-soon-form .col-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 991px) {
  .comming-soon-form .col-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 25px;
  }
}

.glance-section .header-area {
  text-align: center;
  margin-bottom: 40px;
}
.glance-section .glance-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.glance-section .glance-block .col {
  width: calc(25% - 40px);
  text-align: center;
}
@media (max-width: 991px) {
  .glance-section .glance-block .col {
    width: calc(33.33% - 40px);
  }
}
@media (max-width: 767px) {
  .glance-section .glance-block .col {
    width: calc(50% - 40px);
  }
}
.glance-section .glance-block .col .icons {
  display: block;
  margin-bottom: 20px;
}
.glance-section .glance-block .col p {
  color: #000E1E;
  font-size: 16px;
}

.header-bar {
  background-color: #fff;
  font-size: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  .header-bar {
    font-size: 13px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .header-bar {
    font-size: 11px;
  }
}
.header-bar a {
  color: #000E1E;
}
.header-bar .links span {
  padding: 13px 10px 10px;
}
@media (max-width: 767px) {
  .header-bar .links span {
    padding: 5px;
  }
}

.tooltip-icon-anchor {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  position: relative;
}
.tooltip-icon-anchor .img-sec {
  cursor: pointer;
}
.tooltip-icon-anchor .tooltip-text {
  position: absolute;
  width: 425px;
  max-width: 90vw;
  background: #fff;
  color: #000;
  padding: 16px;
  line-height: 117%;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  text-align: left;
}
@media (max-width: 768px) {
  .tooltip-icon-anchor .tooltip-text {
    width: 250px;
    font-size: 12px;
  }
}
.tooltip-icon-anchor .tooltip-text a {
  color: #000;
}

.merchandize-text {
  font-size: 20px;
  padding-right: 0;
}
@media (max-width: 768px) {
  .merchandize-text {
    font-size: 13px;
  }
}

#faqs {
  margin: 0;
}

.header-bar a {
  font-size: 16px;
  color: #000E1E !important;
}
@media (max-width: 768px) {
  .header-bar a {
    font-size: 13px;
  }
}
@media (max-width: 540px) {
  .header-bar a {
    font-size: 11px;
  }
}

.property-amenities-sec {
  background-color: #fff;
}
@media (max-width: 768px) {
  .property-amenities-sec {
    background-color: #F1F1F1;
  }
}
.property-amenities-sec h1.bravo {
  font: 700 25px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .property-amenities-sec h1.bravo {
    font-size: 32px;
    margin: 0 0 25px;
  }
}
@media (min-width: 1024px) {
  .property-amenities-sec h1.bravo {
    font-size: 39px;
    margin: 0 0 40px;
  }
}
.property-amenities-sec .property-amenities-area {
  position: relative;
  z-index: 1;
  background-color: #F1F1F1 !important;
}
.property-amenities-sec .property-amenities-area:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -23px;
  background: url(../images/vector-01.png);
  height: 248px;
  z-index: -1;
}

.room-amenities-sec {
  position: relative;
  z-index: 1;
  background-color: #002855;
}
.room-amenities-sec:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  background: url(../images/vector-03.png);
  background-position: 0 100%;
  height: 220px;
  z-index: -1;
}
@media (max-width: 768px) {
  .room-amenities-sec:after {
    display: none;
  }
}
.room-amenities-sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -23px;
  background: url(../images/vector-02.png);
  height: 220px;
  z-index: -1;
}
@media (max-width: 768px) {
  .room-amenities-sec:before {
    display: none;
  }
}

.leeds-appartment-sec {
  padding-top: 39px;
}
.leeds-appartment-sec .main-heading-text .bravo {
  font: 700 35px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .leeds-appartment-sec .main-heading-text .bravo {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .leeds-appartment-sec .main-heading-text .bravo {
    font-size: 50px;
  }
}
.leeds-appartment-sec .perkzz-section h3.bravo {
  font: 700 25px/1.2 var(--tradeGothic);
  text-transform: uppercase;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .leeds-appartment-sec .perkzz-section h3.bravo {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .leeds-appartment-sec .perkzz-section h3.bravo {
    font-size: 39px;
  }
}
.leeds-appartment-sec .perkzz-section a.btn-click {
  color: #000E1E;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.sub-text-font {
  font-size: 25px;
  color: #060C15;
}
@media (max-width: 768px) {
  .sub-text-font {
    font-size: 16px;
  }
}

.hotel-services-sec {
  position: relative;
  padding-left: 50px;
}
@media (max-width: 768px) {
  .hotel-services-sec {
    padding-left: 0;
  }
}

.faq-area {
  background-color: #ffffff;
  padding-top: 125px;
}
@media (max-width: 768px) {
  .faq-area {
    padding-top: 25px;
  }
}

#openModal {
  background-color: #C97671;
  height: 60px;
  font: 700 13px/1.2 var(--tradeGothic);
  color: #fff;
  display: block;
  margin: 0 auto 20px;
  outline: none;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
  padding-top: 2px;
  max-width: 200px;
  min-width: 200px;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop-custom {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.modal-custom {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-custom.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-custom .modal-dialog-custom {
  background: #fff;
  width: 840px;
  max-width: 90%;
  border-radius: 8px;
  padding: 40px;
  max-height: 90vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: modalFade 0.3s ease;
          animation: modalFade 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-custom .modal-dialog-custom .modal-header-custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 36px;
}
.modal-custom .modal-dialog-custom .modal-header-custom h5 {
  margin: 0;
  font: 700 20px/1.2 var(--tradeGothic);
  text-transform: uppercase;
}
.modal-custom .modal-dialog-custom .modal-header-custom .close-modal {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.modal-custom .modal-dialog-custom .btn-form-submit {
  background-color: #C97671;
  width: 200px;
  height: 60px;
  font: 700 13px/1.2 var(--tradeGothic);
  color: #fff;
  display: block;
  margin: 0 auto;
  outline: none;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.modal-custom .modal-dialog-custom .modal-body-custom {
  overflow-y: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.modal-custom .modal-dialog-custom .modal-body-custom .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .modal-custom .modal-dialog-custom .modal-body-custom .form-row {
    gap: 0;
  }
}
.modal-custom .modal-dialog-custom .modal-body-custom .form-row .form-column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48.6%;
          flex: 0 0 48.6%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1024px) {
  .modal-custom .modal-dialog-custom .modal-body-custom .form-row .form-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48.3%;
            flex: 0 0 48.3%;
  }
}
@media (max-width: 768px) {
  .modal-custom .modal-dialog-custom .modal-body-custom .form-row .form-column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.modal-custom .modal-dialog-custom .modal-body-custom .form-group {
  margin-bottom: 20px;
}
.modal-custom .modal-dialog-custom .modal-body-custom .form-group label {
  text-transform: capitalize;
  margin-bottom: 8px;
  display: block;
  color: #11213D;
  font: 400 16px/1.2 var(--tradeGothic);
}
.modal-custom .modal-dialog-custom .modal-body-custom .form-group label span {
  color: #C97671;
}
.modal-custom .modal-dialog-custom .modal-body-custom input, .modal-custom .modal-dialog-custom .modal-body-custom textarea, .modal-custom .modal-dialog-custom .modal-body-custom select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #C97671;
  font: 400 16px/1.2 var(--tradeGothic);
  color: #11213D;
  outline: none;
}
.modal-custom .modal-dialog-custom .modal-body-custom input::-webkit-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom textarea::-webkit-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom select::-webkit-input-placeholder {
  color: #11213D;
}
.modal-custom .modal-dialog-custom .modal-body-custom input::-moz-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom textarea::-moz-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom select::-moz-placeholder {
  color: #11213D;
}
.modal-custom .modal-dialog-custom .modal-body-custom input:-ms-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom textarea:-ms-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom select:-ms-input-placeholder {
  color: #11213D;
}
.modal-custom .modal-dialog-custom .modal-body-custom input::-ms-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom textarea::-ms-input-placeholder, .modal-custom .modal-dialog-custom .modal-body-custom select::-ms-input-placeholder {
  color: #11213D;
}
.modal-custom .modal-dialog-custom .modal-body-custom input::placeholder, .modal-custom .modal-dialog-custom .modal-body-custom textarea::placeholder, .modal-custom .modal-dialog-custom .modal-body-custom select::placeholder {
  color: #11213D;
}
.modal-custom .modal-dialog-custom .modal-body-custom textarea {
  height: 172px;
  min-height: 172px;
  max-height: 172px;
  resize: none;
}
.modal-custom .modal-dialog-custom .modal-body-custom select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23C97671' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}
.modal-custom .modal-dialog-custom .close-modal {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

@-webkit-keyframes modalFade {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalFade {
  from {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.southhall-area.bonnie-page-area .visual-block h1 {
  font-size: 25px;
}
@media (min-width: 768px) {
  .southhall-area.bonnie-page-area .visual-block h1 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .southhall-area.bonnie-page-area .visual-block h1 {
    font-size: 50px;
  }
}
.southhall-area.bonnie-page-area .visual-block .textbox {
  font-size: 13px;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .southhall-area.bonnie-page-area .visual-block .textbox {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .southhall-area.bonnie-page-area .visual-block .textbox {
    font-size: 25px;
  }
}
.southhall-area .visual-block {
  margin-bottom: 0 !important;
}
.southhall-area .amenities-holder {
  margin-bottom: 50px;
}
.southhall-area .video-sec {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}