/* Google Fonts Imports */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --font-body: 'Open Sans', sans-serif;
  --font-ui: 'Ubuntu', sans-serif;
  --full-black: hsl(0, 0%, 0%);
  --full-white: hsl(0, 100%, 100%);
  --full-white-hover: hsl(0, 100%, 100%, 0.5);
  --wild-sand: hsl(240, 5%, 96%);
  --pale-silver: hsl(180, 2%, 92%);
  --metallic-charcoal: hsl(210, 10%, 23%);
  --metallic-charcoal-hover: hsl(210, 10%, 23%, 0.5);
  --metallic-charcoal-70: hsl(210, 10%, 23%, 0.7);
  --spanish-red: hsl(349, 100%, 45%);
  --spanish-red-50: hsl(349, 100%, 45%, 0.5);
  --spanish-red-70: hsl(349, 100%, 45%, 0.7);
  --philippine-red: hsl(354, 82%, 44%);
  --philippine-red-50: hsl(354, 82%, 44%, 0.5);
  --philippine-red-10: hsl(354, 82%, 44%, 0.1);
  --modal-background: hsl(214, 3%, 58%, 0.7);
}

::selection {
  color: var(--full-white);
  background-color: var(--metallic-charcoal-hover);
}

/* Globals */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--metallic-charcoal-70);
  line-height: 1.4;
  letter-spacing: 0px;
  word-spacing: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ui);
  color: var(--metallic-charcoal);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--spanish-red);
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.5rem;
}

a,
button {
  color: var(--spanish-red);
  transition: all 0.2s linear;
}

/* Utilities */
/*-- Overrides --*/
.content-wrap p {
  line-height: 1.4;
}

h1 > span:not(.nocolor):not(.badge),
.h1 > span:not(.nocolor):not(.badge),
h2 > span:not(.nocolor):not(.badge),
.h2 > span:not(.nocolor):not(.badge),
h3 > span:not(.nocolor):not(.badge),
.h3 > span:not(.nocolor):not(.badge),
h4 > span:not(.nocolor):not(.badge),
.h4 > span:not(.nocolor):not(.badge),
h5 > span:not(.nocolor):not(.badge),
.h5 > span:not(.nocolor):not(.badge),
h6 > span:not(.nocolor):not(.badge),
.h6 > span:not(.nocolor):not(.badge) {
  color: var(--metallic-charcoal);
}

.tooltip.show {
  opacity: 1;
}

.tooltip-inner {
  font-family: var(--font-body);
  background-color: var(--metallic-charcoal);
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^='left'] .tooltip-arrow::before {
  border-left-color: var(--metallic-charcoal);
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^='top'] .tooltip-arrow::before {
  border-top-color: var(--metallic-charcoal);
}

/*-- Headings --*/
.heading-h1 {
  font-size: 2rem;
}

/*-- Buttons --*/
.light-button {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--full-white);
  background-color: var(--spanish-red);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.light-button:hover {
  color: var(--full-white);
  background-color: var(--philippine-red);
}

.line-button {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--metallic-charcoal);
  background-color: transparent;
  border: 1px solid var(--metallic-charcoal);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.line-button:hover {
  color: var(--full-white);
  background-color: var(--metallic-charcoal);
}

/*-- Inner Container --*/
.inner-container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

/* WhatsApp button */
#whatsappButton {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 12px;
  background-color: #25d366;
  color: var(--full-white);
  border-radius: 50px;
  text-align: center;
  font-size: 1.875rem;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0);
  transition: all 0.2s ease-in-out;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whatsappButton:hover {
  background-color: #21c15d;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

#whatsappButton i {
  font-size: 1.875rem;
}

/* Go to top */
#gotoTop.show {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.stretched #gotoTop {
  bottom: 40px;
  right: 12px;
}

#gotoTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  opacity: 0;
  background-color: var(--full-white);
  color: var(--spanish-red);
  font-size: 2.1875rem;
  pointer-events: auto;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#gotoTop:hover {
  background-color: var(--pale-silver);
}

/* reCAPTCHA badge */
.grecaptcha-badge {
  position: fixed;
  bottom: 120px !important;
  opacity: 0.5;
}

/* Bootstrap Modal */
body.modal-open {
  padding-right: 0 !important;
  transition: padding 0.2s ease-in-out;
}

.modal {
  background-color: var(--modal-background);
}

.modal.fade .modal-dialog {
  transform: none;
}

.modal .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
  margin: 0.5rem auto;
  padding: 5rem 0.75rem;
  max-width: 900px;
}

.modal .modal-content {
  background-color: var(--full-white);
  color: var(--metallic-charcoal-70);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

.modal .modal-header {
  border-bottom: 0;
}

.modal .modal-title {
  flex: 1;
  text-align: center;
}

#wrapper .modal a {
  color: var(--metallic-charcoal-70);
  font-weight: 900;
  text-decoration: underline !important;
}

#wrapper .modal a:hover {
  color: var(--metallic-charcoal-hover);
}

.modal ul {
  padding-left: 1.25rem;
}

.modal ul li {
  line-height: 1.4;
  margin-bottom: 1rem;
}

.modal ul li:last-child {
  margin-bottom: 0;
}

.modal .btn-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  opacity: 1;
  min-height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E")
    center / 25px 25px no-repeat;
}

.modal .btn-close:hover {
  opacity: 50%;
}

.modal-dialog-scrollable .modal-body {
  /*-- Firefox --*/
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

/*-- WebKit --*/
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.modal-dialog-scrollable .modal-body:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Header */
#header.header #header-wrap #logo,
#wrapper #header.header #header-wrap {
  border: 0;
}

.header.sticky-header #header-wrap {
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header #header-wrap .primary-menu .menu-container {
  border: 0;
  padding-right: 0;
  margin-right: 0;
  margin-bottom: 0;
}

#header.header #header-wrap .header-row #logo img {
  padding: 1.25rem 0;
  padding-left: 0;
}

#header.header ul li.menu-item .menu-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: initial;
  line-height: 1.4;
  letter-spacing: 0px;
  transition: margin 0.4s ease, padding 0.4s ease, color 0.2s linear;
}

.header ul.menu-container li.menu-item .menu-link {
  color: var(--full-white);
}

.header ul.menu-container li.menu-item.current > .menu-link {
  color: var(--full-white-hover);
}

.header ul.menu-container li.menu-item .menu-link:hover {
  color: var(--full-white-hover);
}

.header.sticky-header ul.menu-container li.menu-item .menu-link {
  color: var(--metallic-charcoal);
}

.header.sticky-header ul.menu-container li.menu-item.current > .menu-link {
  color: var(--metallic-charcoal-hover);
}

.header.sticky-header ul.menu-container li.menu-item .menu-link:hover {
  color: var(--metallic-charcoal-hover);
}

.header ul.sub-menu-container li.menu-item .menu-link {
  color: var(--metallic-charcoal);
}

.header ul.sub-menu-container li.menu-item .menu-link:hover {
  color: var(--metallic-charcoal-hover);
  padding-left: 0.9375rem;
}

body:not(.device-down-lg)
  .header
  ul.sub-menu-container
  li.menu-item:first-child
  .menu-link {
  padding-top: 0.9375rem;
}

body:not(.device-down-lg)
  .header
  ul.sub-menu-container
  li.menu-item:last-child
  .menu-link {
  padding-bottom: 0.9375rem;
}

body:not(.device-down-lg) .header .sub-menu-container {
  border: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.header .sub-menu-container .menu-item:hover .menu-link {
  background-color: transparent;
}

.header .sub-menu-container .menu-item .sub-menu-container {
  border-radius: 0.5rem;
}

.device-down-lg #header-wrap {
  background-color: transparent;
}

.device-down-lg #wrapper #header.header {
  height: 0px;
}

.header .primary-menu-trigger {
  padding-right: 0;
}

.header .cnvs-hamburger-box {
  width: 2rem;
  height: 2rem;
}

.header .cnvs-hamburger-inner,
.header .cnvs-hamburger-inner:before,
.header .cnvs-hamburger-inner:after {
  width: 1.5rem;
  background-color: var(--full-white);
}

.header.sticky-header .cnvs-hamburger-inner,
.header.sticky-header .cnvs-hamburger-inner:before,
.header.sticky-header .cnvs-hamburger-inner:after {
  background-color: var(--metallic-charcoal);
}

.header
  .primary-menu-trigger:not(.primary-menu-trigger-active)
  .cnvs-hamburger-inner:before {
  top: 0.5rem;
}

.header
  .primary-menu-trigger:not(.primary-menu-trigger-active)
  .cnvs-hamburger-inner:after {
  bottom: 0.5rem;
}

.device-down-lg .header .primary-menu-trigger + .primary-menu .menu-container {
  overflow-y: auto;
}

.primary-menu-open .header .cnvs-hamburger-inner,
.primary-menu-open .header .cnvs-hamburger-inner:before,
.primary-menu-open .header .cnvs-hamburger-inner:after {
  background-color: var(--metallic-charcoal);
}

.device-down-lg.primary-menu-open #header-wrap {
  background-color: var(--full-white);
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

.device-down-lg ul.menu-container li.menu-item,
.device-down-lg ul.sub-menu-container {
  border-top: 0;
}

.device-down-lg ul.menu-container > li.menu-item:first-child {
  border-top: 1px solid hsl(210, 10%, 23%, 0.1);
}

.device-down-lg .header ul.menu-container li.menu-item .menu-link {
  color: var(--metallic-charcoal);
}

.device-down-lg .header ul.menu-container li.menu-item.current > .menu-link {
  color: var(--metallic-charcoal-hover);
}

.device-down-lg .header ul.menu-container li.menu-item .menu-link:hover {
  color: var(--metallic-charcoal-hover);
  padding-left: 0.3125rem;
}

.header .menu-item .sub-menu-trigger {
  color: var(--metallic-charcoal);
  transition: all 0.2s ease;
}

.header .menu-item .sub-menu-trigger:hover {
  color: var(--metallic-charcoal-hover);
}

/* Slider */
#slider {
  z-index: 3;
}

.rev_column_bg {
  border-radius: 0.5rem;
}

/* Numbers */
.numbers i {
  font-size: 1.8rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--spanish-red);
  background-color: var(--philippine-red-10);
  cursor: auto;
}

.numbers .counter.counter-large {
  font-family: var(--font-ui);
  font-size: 4rem;
  color: var(--metallic-charcoal);
}

.counter-plus::before {
  content: '+';
  margin-right: 0.6rem;
}

.counter-comma::before {
  content: ',';
  margin-left: -1rem;
}

.counter-thousand-right::after {
  content: 'MIL';
  margin-left: 0.6rem;
}

.numbers p {
  margin-bottom: 0;
}

/* Experience */
.experience__col-right {
  background-color: var(--wild-sand);
  padding: 5rem 12px;
}

/* cards-values */
.card-value-col {
  height: 350px;
}

.card-value-col .grid-inner {
  border-radius: 0.5rem;
}

.cards-values .grid-content h4 {
  color: var(--full-white);
  margin-bottom: 0;
}

.card-value-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 6;
}

/* hotel-carousels */
.hotel-carousels {
  background-color: var(--wild-sand);
}

.hotel-carousels__section--white {
  background-color: var(--full-white);
}

.fslider {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.fslider.is-ready {
  opacity: 1;
}

.hotel-carousels .owl-stage-outer {
  border-radius: 0.5rem;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}

.hotel .hotel__col-left {
  display: flex;
}

.hotel .hotel__col-center {
  padding: 2.5rem 1.5rem 0;
}

.hotel .hotel__col-right {
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel .flex-viewport {
  height: 100% !important;
}

.hotel .fslider,
.hotel .flexslider,
.hotel .slider-wrap,
.hotel .slide {
  height: 100%;
}

.hotel .slide > a {
  display: block;
  height: 100%;
}

.hotel-carousels .hotel .slide img {
  height: 100%;
  object-fit: cover;
}

.hotel-carousels .entry-content {
  margin-top: 0;
}

.hotel-carousels .hotel-description {
  margin: 1rem 0 0;
}

.hotel-carousels .hotel-price {
  font-family: var(--font-ui);
  color: var(--spanish-red);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: 1.5rem;
}

.hotel-carousels .hotel-price span {
  font-size: 1.25rem;
}

.hotel-amenities i {
  color: var(--metallic-charcoal);
  font-size: 1.25rem;
  border: 1px solid var(--metallic-charcoal);
  border-radius: 0.5rem;
  background-color: transparent;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.hotel-amenities i:hover {
  color: var(--full-white);
  background-color: var(--metallic-charcoal);
}

.hotel-amenities i:last-child {
  margin-right: 0;
}

.hotel-cta .cta-button {
  margin-bottom: 1rem;
}

.hotel-cta .cta-button:last-child {
  margin-bottom: 0;
}

.hotel-carousels .flex-control-nav li {
  margin: 0 0.3rem;
}

.hotel-carousels .flex-control-nav li a {
  width: 140% !important;
  height: 140% !important;
}

#hotelCarousles .owl-nav .owl-next {
  right: -3.5rem;
}

#hotelCarousles .owl-nav .owl-prev {
  left: -3.5rem;
}

#hotelCarousles .owl-nav button {
  opacity: 1;
  font-size: 1.8rem;
  color: var(--spanish-red) !important;
  background-color: var(--full-white);
  border-radius: 0.5rem;
  border: 1px solid transparent;
  width: 2.8125rem;
  height: 2.8125rem;
  line-height: calc(-1 * 2.8125rem - 4px);
  box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.2);
}

#hotelCarousles .owl-nav button:hover {
  background-color: var(--pale-silver) !important;
}

.hotel-carousels .owl-dots .owl-dot {
  width: 1rem;
  height: 1rem;
  background-color: transparent;
  border: 3px solid var(--metallic-charcoal);
}

.hotel-carousels .owl-dots .owl-dot:hover {
  background-color: var(--metallic-charcoal);
}

.hotel-carousels .owl-dots .owl-dot.active {
  background-color: var(--metallic-charcoal);
}

/* contact-form */
.contact-form .form-group {
  margin-bottom: 2rem;
}

.contact-form .form-group--textarea {
  margin-bottom: 2rem;
}

.contact-form form label {
  font-family: var(--font-ui);
  color: var(--metallic-charcoal);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form form input,
.contact-form form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--metallic-charcoal);
  line-height: 1.4;
  border-radius: 0.5rem;
  background-color: var(--pale-silver);
  border-color: var(--pale-silver);
}

.contact-form form input {
  height: 2.8125rem;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--pale-silver);
  background-color: var(--pale-silver);
}

button.submit {
  border: none;
  padding: 1rem 2rem;
}

.contact-form .sidebar {
  padding-top: 5rem;
  padding-bottom: 0;
}

.contact-field {
  margin-bottom: 2.5rem;
}

.contact-field:last-child {
  margin-bottom: 0;
}

.contact-field .contact-label {
  font-family: var(--font-ui);
  color: var(--metallic-charcoal);
  font-weight: 700;
}

.contact-field .contact-label i {
  margin-right: 0.3rem;
}

i.fa-whatsapp {
  font-size: 1.25rem;
}

ul.contact-info {
  margin-top: 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

ul.contact-info li {
  display: inline-block;
  margin-bottom: 1rem;
}

ul.contact-info li:last-child {
  margin-bottom: 0;
}

.contact-field .contact-link {
  color: var(--metallic-charcoal-70);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-field .contact-link:hover {
  color: var(--metallic-charcoal-hover);
}

.contact-field .contact-link span {
  margin-right: 1rem;
}

.contact-link i {
  margin-right: 0.3rem;
}

.invalid-feedback,
.invalid-feedback-subscribe {
  display: block;
  color: var(--spanish-red);
  text-align: right;
  margin-top: 0.5rem;
}

/* footer */
#footer.footer {
  background-color: var(--metallic-charcoal);
}

#footer .copyrights {
  background-color: var(--metallic-charcoal);
}

.footer h6 {
  color: var(--full-white);
}

.footer p {
  color: hsl(0, 100%, 100%, 0.5);
}

.footer-logo {
  max-width: 11.25rem;
  margin-bottom: 0;
}

.footer .contact-link {
  color: hsl(0, 100%, 100%, 0.5);
}

.footer .contact-link:hover {
  color: var(--full-white);
}

.footer__inner-column-center .contact-link {
  display: flex;
  flex-wrap: wrap;
}

.footer .contact-link span {
  margin-right: 1.5rem;
}

.footer .copyrights {
  font-size: 0.875rem;
}

#copyrights .contact-link--terms,
#copyrights .contact-link--policy {
  text-decoration: underline !important;
}

#subscribe-form input {
  font-family: var(--font-body);
  color: var(--metallic-charcoal);
  font-size: 1rem;
  font-weight: 600;
}

#subscribe-form input::placeholder {
  color: hsl(210, 10%, 23%, 0.5);
}

#subscribe-form input:focus {
  box-shadow: none;
  border-color: var(--full-white);
}

/* Media Query */
@media (min-width: 576px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /*-- Globals --*/
  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 2rem;
  }

  /*-- Utilities --*/
  .heading-h1 {
    font-size: 3rem;
  }

  .inner-container {
    max-width: 720px;
  }

  /*-- cards-values --*/
  .card-value-col {
    height: 450px;
  }

  /*-- contact-form --*/
  .contact-form .form-group {
    margin-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 960px;
  }

  /*-- Header --*/
  #header.header #header-wrap .header-row #logo img {
    padding: 1.25rem 0;
    padding-left: 0.9375rem;
  }

  .header .primary-menu-trigger {
    padding-right: 0.75rem;
  }

  /*-- Numbers --*/
  .numbers .counter.counter-large {
    font-size: 3.5rem;
  }

  /*-- Experience --*/
  .experience__col-right {
    padding: 5rem 2.5rem;
  }

  /*-- hotel-carousels --*/
  .hotel .hotel__col-center {
    padding: 3.5rem 1.5rem;
  }

  .hotel-carousels .hotel-description {
    margin: 2.5rem 0 0;
  }

  .hotel-carousels .hotel-price {
    margin-bottom: 3rem;
  }

  .hotel-price.hotel-price--mobile {
    display: none;
  }
}

@media (min-width: 1200px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 1140px;
  }

  /*-- Numbers --*/
  .numbers .counter.counter-large {
    font-size: 4rem;
  }

  /*-- Experience --*/
  .experience__col-right {
    padding: 5rem 4rem;
  }

  /*-- hotel-carousels --*/
  .hotel .hotel__col-center {
    padding-left: 3rem;
  }
}

@media (min-width: 1400px) {
  /*-- Utilities --*/
  .inner-container {
    max-width: 1320px;
  }
}

@media (max-width: 1199.9px) {
  /*-- footer --*/
  .footer .footer__right-column {
    padding-top: 1.875rem;
  }
}

@media (max-width: 1099.9px) {
  /*-- hotel-carousels --*/
  #hotelCarousles .owl-nav .owl-next {
    right: -2rem;
  }

  #hotelCarousles .owl-nav .owl-prev {
    left: -2rem;
  }
}

@media (max-width: 1023.9px) {
  /*-- hotel-carousels --*/
  #hotelCarousles .owl-nav .owl-next {
    right: -1.5rem;
  }

  #hotelCarousles .owl-nav .owl-prev {
    left: -1.5rem;
  }
}

@media (max-width: 991.9px) {
  /*-- Experience --*/
  .experience__col-left {
    min-height: 450px;
  }

  /*-- hotel-carousels --*/
  .hotel-carousels .hotel .slide img {
    height: 300px;
  }

  .hotel-price.hotel-price--desk {
    display: none;
  }
}

@media (max-width: 767.9px) {
  /*-- Utilities --*/
  .responsive-text-center {
    text-align: center;
  }

  /*-- hotel-carousels --*/
  .hotel-carousels .owl-nav {
    display: none;
  }

  /*-- footer --*/
  .footer .footer__right-column {
    padding-top: 0;
    padding-bottom: 1.875rem;
  }
}

/*-- Slider --*/
@media screen and (max-width: 991px) and (orientation: landscape) {
  #slider .forcefullwidth_wrapper_tp_banner,
  #slider .rev_slider_wrapper,
  #slider .rev_slider {
    min-height: 580px;
  }
}
