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

:root {
  --font-body: 'Montserrat', sans-serif;
  --font-ui: 'Open Sans', sans-serif;
  --full-black: hsl(0, 0%, 0%);
  --full-white: hsl(0, 100%, 100%);
  --full-white-hover: hsl(0, 100%, 100%, 0.5);
  --mango: hsl(40, 100%, 50%);
  --sunrise: hsl(29, 100%, 50%);
  --mandarine: hsl(20, 100%, 50%);
  --royal-blue: hsl(219, 100%, 42%);
  --navy: hsl(218, 100%, 9%);
  --deep-gray: hsl(345, 6%, 13%);
  --deep-gray-25: hsl(345, 6%, 13%, 0.25);
}

::selection {
  color: var(--full-white);
  background-color: var(--mango);
}

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

/* 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);
}

/* colors */

.full-white {
  color: hsl(0, 100%, 100%);
}
.full-white-hover {
  color: hsl(0, 100%, 100%, 0.5);
}
.mango {
  color: hsl(40, 100%, 50%);
}
.sunrise {
  color: hsl(29, 100%, 50%);
}
.mandarine {
  color: hsl(20, 100%, 50%);
}
.royal-blue {
  color: hsl(219, 100%, 42%);
}
.navy {
  color: hsl(218, 100%, 9%);
}
.deep-gray {
  color: hsl(345, 6%, 13%);
}

.tooltip.show {
  opacity: 1;
}

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

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

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

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

/*-- Buttons --*/
.circle-button {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--full-white);
  background-color: var(--mandarine);
  border-radius: 50px;
  text-align: center;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  padding-inline: 1.8rem;
}

.circle-button.header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.circle-button:hover {
  color: var(--full-white);
  background-color: var(--mango);
}

.font-weight-200 {
  font-weight: 200 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.lh-1-2 {
  line-height: 1.2 !important;
}

.lh-1-4 {
  line-height: 1.4 !important;
}

.title-h1 {
  font-size: 3.5rem;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
}

.title-h2 {
  font-size: 3.5rem !important;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
}

.title-h3 {
  font-size: 2rem;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
}

.title-h4 {
  font-size: 1.5rem;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
}

.title-h5 {
  font-size: 1rem;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
}

.paragraph {
  font-size: 1rem !important;
  font-weight: 400 !important;
  font-family: var(--font-ui) !important;
  line-height: 1.4 !important;
}

/*-- 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: 110px;
  right: 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: 20px;
}

#gotoTop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  opacity: 0;
  background-color: var(--full-white);
  color: var(--mango);
  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: hsl(180, 2%, 92%);
}

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

/* modals */

.modal {
  padding-right: 0 !important;
  background-color: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(30px);
}

.modal-dialog {
  max-width: 1100px;
  display: flex;
  align-items: center;
}

.modal-content {
  background-color: var(--full-white);
  height: auto;
  padding: 3em;
}

.modal-header {
  padding-left: 20px !important;
  border-bottom: 1px solid var(--mandarine);
}

.modal-header.container.ps-0,
.modal-header.container.\!ps-0 {
  padding-left: 0 !important;
}

.modal-title h2 {
  text-align: start;
  color: var(--royal-blue);
  padding-left: 0 !important;
  margin: 0;
}

.close-modal {
  right: 32px;
  top: 16px;
  position: fixed;
  color: hsl(0, 0%, 100%, 0.65);
  font-size: 2rem;
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: hsl(0, 0%, 100%);
}

.modal-body,
.modal-body h5 {
  color: hsl(345, 6%, 13%, 0.8);
  font-family: var(--font-ui);
  font-size: 2.5rem;
}

#modal-privacidad h5,
#modal-terms h5 {
  margin-bottom: 10px;
}

.modal-footer {
  border-top: 1px solid hsl(0, 5%, 13%, 0.5);
}
.space-35 {
  margin-bottom: 35px !important;
}

.space-25 {
  margin-bottom: 25px !important;
}

/*-- 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);
}

.boder-radius-img {
  border-radius: 32px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px !important;
}

.mb_35 {
  margin-bottom: 35px;
}

/* 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.61);
  -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.61);
}

.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: 700;
  text-transform: initial;
  color: var(--deep-gray);
  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(--mandarine) !important;
}

/* .header ul.menu-container li.menu-item .menu-link:hover {
  color: var(--mandarine) !important;
} */

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

.header.sticky-header ul.menu-container li.menu-item.current > .menu-link,
.menu-item:hover > .menu-link {
  color: var(--mandarine) !important;
}

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

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

.header ul.sub-menu-container li.menu-item .menu-link:hover {
  color: var(--mandarine);
  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 .sub-menu-container {
  border-radius: 0.5rem;
}

.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(--deep-gray);
}

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

.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(--deep-gray);
}

.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(--mandarine);
}

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

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

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

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

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

.rev_column_bg.rev_column_bg_auto_sized {
  border-radius: 32px;
}

.rev_column_bg {
  border-radius: 0.5rem;
}

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

.space-margin {
  padding: 100px 0;
}

/* ── Amenity Strip ── */
.az-amenity-strip {
  background: #fff;
  border-radius: 32px;
  border: 1px solid transparent;
  box-shadow: 0 2px 18px rgba(13, 43, 78, 0.06);
  padding: 36px 24px;
  position: relative;
  z-index: 1;
}
.az-amenity-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--mango);
  border-radius: 0 0 3px 3px;
}
.az-amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 0 12px;
  text-decoration: none;
}

.az-amenity-item.contact {
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.contact-amenity-col {
  position: relative;
}

.contact-amenity-col + .contact-amenity-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: rgba(13, 43, 78, 0.08);
}

@media (max-width: 575.9px) {
  .contact-amenity-col + .contact-amenity-col::before {
    display: none;
  }
}

@media (max-width: 375px) {
  .contact-email-value {
    font-size: 1rem;
  }
}

.contact-amenity-col:first-child .az-amenity-item.contact,
.contact-amenity-col:last-child .az-amenity-item.contact {
  padding: 0 32px;
}

.az-amenity-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsl(40, 100%, 50%, 0.05);
  border: 1.5px solid var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.az-amenity-item:hover .az-amenity-icon-wrap {
  background: hsl(40, 100%, 50%, 0.05);
  border-color: var(--mango);
  transform: translateY(-3px);
}
.az-amenity-icon-wrap i {
  font-size: 1.125rem;
  color: var(--mango);
}
.az-amenity-label {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--royal-blue);
  text-align: center;
  line-height: 1.2;
}

.az-amenity-label .subtitle-amenity {
  font-weight: 700;
}

.az-amenity-label.contact .subtitle-amenity {
  display: inline-block;
  margin-bottom: 20px;
}

.az-amenity-sep {
  width: 1px;
  height: 48px;
  background: rgba(13, 43, 78, 0.08);
  align-self: center;
}

.negative-text-margin {
  color: rgb(255, 220, 40);
  font-weight: 700;
  mix-blend-mode: difference;
}

.negative-text-margin span {
  font-weight: 500;
}

.text-negative {
  color: hsl(345, 6%, 13%, 0.8);
}

.text-bold-negative {
  color: hsl(20, 100%, 50%, 0.8);
  font-weight: 700;
}

.heading-block .royal-blue {
  color: var(--royal-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* section destinos  */

.nex-destinations {
  background: url('../img/nex-destinations/rematesviajes-img-back-desk.jpg')
    no-repeat center center;
  background-size: cover;
  padding: 100px 0;
}

.cb-guia-bg {
  background: url('../img/about/guia/remateviajes-img-back-desk.webp') no-repeat
    center center;
  background-size: cover;
  background-attachment: fixed;
}

.list-unstyled {
  padding-inline: 30px;
}

/* google reviews */

.google-reviews .container-title {
  display: flex;
  justify-content: center;
}

.google-reviews .container-title .title {
  max-width: 1000px;
}

#JFWebsiteWidget-019fd8303da0700087c0a47ef549cc530644 .slider-arrow {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  background-color: var(--full-white) !important;
  border-radius: 0.5rem !important;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  transition: background-color 0.3s ease;
  margin: 0;
  border: none !important;
  color: var(--mandarine) !important;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.2);
}

#JFWebsiteWidget-019fd8303da0700087c0a47ef549cc530644 .slider-arrow:hover {
  background: hsl(180, 2%, 92%) !important;
}

#JFWebsiteWidget-019fd8303da0700087c0a47ef549cc530644 button[color='blue'] {
  border: none !important;
  border-radius: 50px;
  padding-inline: 1.8rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#JFWebsiteWidget-019fd8303da0700087c0a47ef549cc530644
  button[color='blue']:hover {
  background-color: #ffab00 !important;
  transition: background-color 0.3s ease;
  color: var(--full-white) !important;
  border: none !important;
}

.jyIrJW,
.RIBzM {
  padding-bottom: 0 !important;
}

.text-promo {
  font-size: 1.25rem !important;
}

/* contact*/

.bg-form-contact {
  padding-inline: 24px;
}

.page-title-parallax .breadcrumb {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.5s ease-in-out;
}

.breadcrumb-item.active {
  color: hsl(0, 0%, 100%, 0.5);
}

.breadcrumb a,
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--full-white);
}

.breadcrumb a:hover {
  color: hsl(0, 0%, 100%, 0.5);
}

.page-title-center .breadcrumb {
  margin-top: 1rem;
}

.az-amenity-item.contact {
  gap: 0;
}

.az-amenity-strip.contact {
  padding: 42px 24px;
}

.az-amenity-icon-wrap.contact {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: hsl(40, 100%, 50%, 0.05);
  border: 1.5px solid var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.az-amenity-icon-wrap.contact i {
  font-size: 2.5rem;
  color: var(--mango);
}

.az-amenity-label.contact.title-h4 .subtitle-amenity {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--royal-blue);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}

.az-amenity-label.contact {
  font-family: var(--font-ui);
  font-weight: 400;
  color: hsl(345, 6%, 13%, 0.5);
  text-align: center;
  line-height: 1.2;
  font-size: 1.25rem;
  text-transform: none;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.az-amenity-label.contact:hover {
  color: var(--deep-gray);
}

.az-amenity-sep.contact {
  width: 1px;
  height: 100px;
  background: rgba(13, 43, 78, 0.08);
  align-self: center;
}

.container-contact-amenity {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title-content h1,
.page-title-content .h1 {
  font-size: 3.5rem;
  font-family: var(--font-body);
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--full-white);
}

.form-widget {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container-form {
  background-color: var(--full-white);
}

.box-form-contact {
  border-radius: 32px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}

.form-widget {
  margin-bottom: 0;
}

.border-radius-img-form-contact {
  border-radius: 0 32px 32px 0;
  min-height: 25vh;
}

#contactform .form-control {
  margin-bottom: 20px !important;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: hsl(345, 6%, 13%, 0.8);
  border-radius: 8px;
  border: 1px solid hsl(345, 6%, 13%, 0.25);
  padding: 0.7rem;
}

#contactform .form-control:focus {
  border: 1px solid hsl(193, 100%, 48%);
  outline: none;
  box-shadow: none;
}

#contactform .form-control.error {
  margin-bottom: 0 !important;
  border-radius: 8px;
  border: 1px solid hsl(0, 100%, 60%);
}

.invalid-feedback {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  color: hsl(0, 100%, 60%);
  text-align: left;
  margin-top: 0.5rem;
  font-family: var(--font-ui);
  margin-bottom: 20px;
}

/* footer */
#footer {
  background-color: var(--navy);
  margin: 0;
  border: none;
}

#footer .footer-widgets-wrap {
  padding: 100px 0 60px 0;
}

.title-footer {
  font-family: var(--font-body);
  font-size: 1.25rem !important;
  font-weight: 600;
  color: hsl(0, 0%, 93%, 0.75);
  text-transform: capitalize !important;
}

.text-description-footer {
  font-family: var(--font-ui);
  font-size: 1rem !important;
  font-weight: 400;
  color: hsl(0, 0%, 93%, 0.75);
}

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

.social-icon i::before,
.contact-link i::before {
  color: hsl(0, 0%, 93%, 0.75);
}

#footer .contact-link li a {
  font-family: var(--font-ui);
  font-size: 1rem !important;
  font-weight: 400;
  color: hsl(0, 0%, 93%, 0.75);
  transition: color 0.2s ease-in-out;
}

#footer .contact-link li a:hover {
  color: hsl(0, 0%, 93%, 0.25);
}

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

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

#copyrights {
  background-color: hsl(218, 100%, 5%) !important;
  font-family: var(--font-ui);
  font-size: 1rem !important;
  font-weight: 400;
  color: hsl(0, 0%, 93%, 0.75);
  padding: 35px !important;
}

#copyrights .text-copyrights-link {
  font-family: var(--font-ui);
  font-size: 1rem !important;
  font-weight: 400;
  color: hsl(0, 0%, 93%, 0.75);
}

#copyrights .text-copyrights-link:hover {
  color: hsl(0, 0%, 93%, 0.25);
}

/* section destino */

.section-price::before {
  content: '';
  position: absolute;
  top: 790px;
  width: 500px;
  height: 500px;
  background: url('../img/experiences/rematesviajes-imagen-back.webp') no-repeat;
  background-size: contain;
}

.card.pricing {
  border-radius: 32px;
}

.card.pricing .logo-pricing {
  height: 100%;
  max-height: 90px;
}

.card-body {
  padding: 0;
}

.card-body img {
  border-radius: 32px 32px 0 0;
}

.card-title-destination span {
  font-weight: 500;
}
.pricing .btn {
  transform: translateY(50%);
}

.card-title-destination {
  padding-top: 25px;
  padding-bottom: 0;
}

.paragraph-destination {
  max-width: 900px;
}

/* about */

.page-title-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.cb-about {
  position: relative;
  overflow: hidden;
}

.cb-about-decor::before {
  content: '';
  position: absolute;
  background-image: url('../img/about/about/rematesviajes-imagen-back.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 410px;
  top: 130px;
  width: 380px;
  height: 380px;
}

.cb-about-image {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
}

.cb-about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cb-about-text-gap {
  margin-left: 48px;
}

/* guia */
.stack-cards {
  position: relative;
  display: block;
}

.stack-cards-item {
  background: var(--full-white);
  box-shadow: -5px 0 16px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  margin-bottom: 10px;
}

.stack-cards-item i {
  font-size: 2.5rem;
}

.process-container .container-text {
  max-width: 900px;
  text-align: center;
}

.process-timeline {
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.666% - 1px);
  right: calc(16.666% - 1px);
  height: 2px;
  border-top: 2px dashed var(--mango);
  opacity: 0.45;
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}
.process-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--mango);
  background: hsl(40, 100%, 50%, 0.05);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  flex-shrink: 0;
}

.process-number i {
  font-size: 2.5rem;
}

.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-gray);
  margin-bottom: 30px;
  font-family: var(--font-body);
}
.process-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-step-list li {
  font-size: 0.9rem;
  color: var(--cnvs-contrast-600);
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}
.process-step-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cnvs-themecolor);
  margin-top: 0.45em;
  flex-shrink: 0;
}
.process-step-card {
  background: var(--full-white);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid var(--cnvs-contrast-200);
  height: 100%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
}

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

@media (min-width: 768px) {
  /*-- Utilities --*/
  .heading-h1 {
    font-size: 3rem;
  }

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

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

  .negative-text-margin {
    margin-left: -120px;
  }

  /*-- 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;
  }

  .invalid-feedback {
    text-align: right;
  }

  /* guia */
  .stack-cards {
    position: relative;
    display: block;
  }

  .sticky-title {
    position: sticky;
    top: 8rem;
  }

  .stack-cards > .stack-cards-item + .stack-cards-item {
    margin-top: 40vh;
  }

  .stack-cards-item {
    --cnvs-stack-card-offset: 1.5em;
    max-width: 48rem;
    position: sticky;
    top: 20rem;
    margin: 0 auto;
    margin-bottom: 0px;
  }

  .stack-cards-item:nth-of-type(0) {
    transform: translateY(calc((0 - 1) * var(--cnvs-stack-card-offset)))
      scale(0.85);
  }
  .stack-cards-item:nth-of-type(1) {
    transform: translateY(calc((1 - 1) * var(--cnvs-stack-card-offset)))
      scale(0.88);
  }
  .stack-cards-item:nth-of-type(2) {
    transform: translateY(calc((2 - 1) * var(--cnvs-stack-card-offset)))
      scale(0.91);
  }
  .stack-cards-item:nth-of-type(3) {
    transform: translateY(calc((3 - 1) * var(--cnvs-stack-card-offset)))
      scale(0.94);
  }
  .stack-cards-item:nth-of-type(4) {
    transform: translateY(calc((4 - 1) * var(--cnvs-stack-card-offset)))
      scale(0.97);
  }
  .stack-cards-item:nth-of-type(5) {
    transform: translateY(calc((5 - 1) * var(--cnvs-stack-card-offset)))
      scale(1);
  }

  .process-step-card-inner {
    text-align: center;
  }
  .process-step-list li {
    text-align: left;
  }
}

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

@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: 992px) {
  #contact-page-title {
    padding: 160px 0 60px 0 !important;
  }

  .cb-guia-bg {
    background-image: url('../img/about/guia/remateviajes-img-back-mob.jpg');
  }

  .az-amenity-strip.contact {
    transform: none !important;
  }

  .menu-item .circle-button {
    margin-bottom: 20px;
    width: 100%;
  }

  .title-h1 {
    font-size: 2rem;
  }

  .title-h2 {
    font-size: 2rem !important;
  }

  .title-h3 {
    font-size: 1.5rem;
  }

  .title-h4 {
    font-size: 1.5rem;
    font-family: var(--font-body);
    line-height: 1.2;
    margin-bottom: 0;
  }

  .nex-destinations .title-h3,
  .promo-content .title-h3 {
    font-size: 2rem;
  }

  .nex-destinations .title-h4,
  .card-title-destination.title-h4 {
    font-size: 1.5rem;
  }

  .space-container {
    padding-inline: 24px;
  }

  .space-margin {
    padding: 64px 0;
  }

  .section-price::before {
    top: 1030px;
    width: 320px;
    height: 320px;
  }

  .az-amenity-sep {
    display: none;
  }
  .az-amenity-item {
    padding: 10px;
  }
  .az-amenity-strip .row {
    row-gap: 28px;
  }
  .az-amenity-strip .col-auto.d-none.d-sm-flex {
    display: none !important;
  }
  .az-amenity-strip .col-auto:not(.d-none) {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* contact */
  .page-title-content h1,
  .page-title-content .h1 {
    font-size: 2rem;
    font-family: var(--font-body);
    line-height: 1.2;
    margin-bottom: 0;
    color: var(--full-white);
  }

  .box-form-contact {
    border-radius: 0;
    box-shadow: none;
  }

  .form-widget {
    margin-bottom: 64px;
  }

  .border-radius-img-form-contact {
    border-radius: 0;
    min-height: 25vh;
  }

  .container-form .space-container {
    padding-inline: 0;
    max-width: 100%;
  }

  .container-form .form-widget .col-padding {
    padding-inline: 0;
  }

  .img-container-form {
    padding: 0;
  }

  .contact-amenity-col:first-child .az-amenity-item.contact,
  .contact-amenity-col:last-child .az-amenity-item.contact {
    padding: 0;
  }

  .col-padding {
    padding: 0;
  }

  .space-container.contact {
    padding-inline: 12px;
  }

  .az-amenity-label.contact.title-h4 .subtitle-amenity {
    font-size: 1.5rem;
  }

  /* modals */
  .close-modal {
    right: 16px;
    position: fixed;
    font-size: 1.25rem;
  }

  .modal-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .modal-body,
  .modal-body h2 {
    font-size: 1rem;
  }

  #footer .footer-widgets-wrap {
    padding: 64px 0 64px 0;
  }

  /* about */
  .cb-about-decor::before {
    content: '';
    position: absolute;
    background-image: url('../img/about/about/rematesviajes-imagen-back-1.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    left: 530px;
    top: -80px;
    width: 315px;
    height: 280px;
  }

  .cb-about-text-gap {
    margin-left: 0;
  }

  .stack-cards-item {
    margin-bottom: 35px;
  }

  .stack-cards-item.two {
    margin-bottom: 0;
  }

  .process-timeline::before {
    display: none;
  }
  .process-step + .process-step {
    margin-top: 1.5rem;
  }
  .process-step-card-inner {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.375rem;
    margin: 0;
    flex-shrink: 0;
  }
}

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

  .section-price::before {
    top: 790px;
  }

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

  .heading-block .royal-blue {
    justify-content: start;
  }
  .nex-destinations {
    background-image: url('../img/nex-destinations/rematesviajes-img-back-mob.jpg');
    padding: 100px 0;
  }

  /* about */
  .cb-about-decor::before {
    left: 195px;
  }

  .cb-about-image img {
    max-height: 300px;
    height: 300px;
  }
}

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

@media (width: 1366px) and (height: 768px),
  (width: 1200px) and (height: 920px) {
  .stack-cards-item {
    top: 22rem;
  }
}

/*-- Destinos mobile carousel arrows (same skin as hero slider: metis) --*/
.destinos-carousel .owl-nav {
  margin: 0;
}

.destinos-carousel .owl-nav [class*='owl-'] {
  cursor: pointer;
  background: #fff !important;
  border: none !important;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  box-sizing: border-box;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%);
  margin: 0 !important;
  border-radius: 0.5rem !important;
  box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
  transition: all 0.3s;
}

.destinos-carousel .owl-nav [class*='owl-']:hover {
  background: hsl(180, 2%, 92%) !important;
  color: #000 !important;
}

.destinos-carousel .owl-nav [class*='owl-'] i {
  display: none;
}

.destinos-carousel .owl-nav [class*='owl-']::before {
  font-family: revicons;
  font-size: 15px;
  color: #ff5600;
  display: block;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s;
}

.destinos-carousel .owl-nav [class*='owl-']:hover::before {
  transform: scale(1.2);
}

.destinos-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.destinos-carousel .owl-nav .owl-prev::before {
  content: '\e824';
}

.destinos-carousel .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
}

.destinos-carousel .owl-nav .owl-next::before {
  content: '\e825';
}

.destinos-carousel .oc-item {
  padding-bottom: 24px;
}
