/* estilos generales */
/* =============================================== */
:root {
  --tour-primary: #ffd147;
  --tour-primary-hover: #fdaa2d;
  --tour-secundary: #ffd147;
  --tour-secundary-hover: #fdaa2d;
  --tour-important: #fdaa2d;
}

body {
  font-size: initial !important;
  font-family: lato, arial;
  color: #000;
}
body h1, body h2, body h3, body h4, body h5 {
  font-family: Montserrat, Helvetica, Arial;
  color: #fdaa2d;
  font-weight: revert !important;
}

.btn-primary {
  background-color: var(--tour-primary);
}
.btn-primary:hover {
  background-color: var(--tour-primary-hover);
}
.btn-primary-active {
  background-color: var(--tour-primary-hover);
}

.btn-secundary {
  background: var(--tour-secundary);
}
.btn-secundary:hover {
  background: var(--tour-secundary-hover);
}
.btn-secundary-active {
  background: var(--tour-secundary-hover) !important;
}

.color-important {
  color: var(--tour-important) !important;
}

.color-primary {
  color: var(--tour-primary) !important;
}

.color-secudary {
  color: var(--tour-secundary);
}

.color-black {
  color: black !important;
}

.flex-tours {
  display: flex;
}

.tours-column {
  flex-direction: column;
}

.wrap-tours {
  flex-wrap: wrap;
}

.gap-tours-1 {
  gap: 15px;
}

.gap-tours-2-y {
  gap: 25px 15px;
}

.gap-tours-2 {
  gap: 25px;
}

.justify-content {
  justify-content: flex-start;
}

.justify-content-between {
  justify-content: space-between;
}

.aling-items-stretch {
  align-items: stretch;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.iconClock {
  margin-top: 7px;
}
.iconClock i {
  color: var(--tour-secundary);
  font-weight: bold !important;
  margin-right: 5px;
}

.mb-tour-10 {
  margin-bottom: 10px;
}

.mb-tour-1 {
  margin-bottom: 15px;
}

.mb-tour-2 {
  margin-bottom: 30px;
}

.mb-tour-3 {
  margin-bottom: 45px;
}

.px-tour-3 {
  padding: 0px 45px !important;
}

.mg-tour-0 {
  margin: 0px !important;
}

.min-height-100 {
  min-height: 100%;
}

.ts-hidden {
  overflow: hidden !important;
}

/* medias querys */
/* ================================================================== */
@media screen and (max-width: 768px) {
  .intro-tours {
    left: 8% !important;
    right: 8% !important;
    margin-top: 0px !important;
  }
  .content_tours {
    padding: 0px !important;
    justify-content: center;
  }
  .content_tours .tourlist-all {
    width: 85% !important;
  }
  .content_tours .card-tours {
    width: 100% !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .tours-container {
    flex-direction: column-reverse;
  }
  .gallery-tours {
    width: 100% !important;
    height: auto !important;
  }
  .gallery-tours .lSSlideWrapper .gallery li {
    height: 250px !important;
  }
  .gallery-tours .lSGallery {
    height: 60px !important;
  }
  .gallery-tours .lSGallery li {
    width: 85px !important;
  }
  .tours {
    width: 100% !important;
  }
  .w-100-mobile {
    width: 100% !important;
  }
  .content-1 {
    width: 85% !important;
    margin: 0px auto !important;
  }
  .slideRTC,
  .slideLTC,
  .show-scroll-slideRTC,
  .show-scroll-slideLTC {
    animation-name: slideBottomToTop !important;
  }
}
@media (min-width: 1351px) {
  .tours-container {
    width: 1152px !important;
  }
}
@media (min-width: 1450px) {
  .content_tours {
    padding: 30px 12% !important;
  }
}
/* estilo carrusel de imagenes */
/* ========================================================== */
.nivoSlider img {
  height: 450px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-tours {
  position: relative;
}
.slider-tours .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
}
.slider-tours .intro-tours {
  position: absolute;
  top: 20%;
  left: 12%;
  right: 20%;
  z-index: 10;
}
.slider-tours .intro-tours p {
  color: #fff;
  text-align: left !important;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
}
.slider-tours .intro-tours p strong {
  color: var(--tour-important) !important;
}
.slider-tours .intro-tours h1 {
  color: var(--tour-primary) !important;
  letter-spacing: 1.2px;
}

/* estilos para todo el contenido de tours */
.content_tours {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 12%;
}
.content_tours .tourlist-all {
  background: #FFF;
  margin: 15px 0px;
  width: 70%;
}
.content_tours .tourlist-all p {
  text-align: left !important;
  font-size: 16px;
  line-height: 22px;
}
.content_tours .tourlist-all p span {
  color: var(--tour-important);
  font-weight: 700;
}
.content_tours .btn-tour {
  padding: 10px 28px;
  font-weight: 700;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  display: block;
}

.card-tours {
  width: 48%;
  background-color: white;
  box-shadow: 1px 4px 20px 0px rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
}
.card-tours .img {
  height: 215px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.card-tours .img img {
  min-height: 100%;
}
.card-tours .content {
  padding: 25px 25px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-tours .content h3 {
  color: black !important;
  margin: 0px;
  font-size: 22px;
  letter-spacing: 1px;
}
.card-tours .content p {
  margin: 0px;
  font-size: 14px;
  color: gray;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.card-tours .content .pricing-tour {
  font-size: 16px;
  margin: 8px;
  color: black !important;
}
.card-tours .content .pricing-tour span {
  display: block;
}
.card-tours .content .pricing-tour span:first-child {
  color: #000;
}
.card-tours .content .pricing-tour span:nth-child(2) {
  font-size: 25px;
  font-weight: bold;
  color: var(--tour-secundary) !important;
}
.card-tours .content .btn-tour {
  font-size: 18px;
  padding: 10px 10px !important;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}

/* estilo para tour-detail-page */
/* =============================================================================== */
.gallery-tours {
  width: 68%;
  height: 650px;
}
.gallery-tours .gallery li {
  height: 550px !important;
}
.gallery-tours .gallery li img {
  height: 100% !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-tours .lSGallery {
  height: 100px;
}
.gallery-tours .lSGallery li {
  height: 100%;
}
.gallery-tours .lSGallery li img {
  height: 100% !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.headtitle-tours {
  margin-top: 30px;
}
.headtitle-tours h1 {
  font-family: "Arimo", "Helvetica", Arial;
  color: #000;
  margin: 0;
  padding: 0;
}
.headtitle-tours .textBreads {
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.headtitle-tours .textBreads a {
  color: inherit;
}
.headtitle-tours .textBreads a:hover {
  text-decoration: underline;
}

.tours {
  width: 30%;
}

.tours #ts-specific-btn-booking {
  padding: 14px 0px !important;
  font-size: 16px;
}

.content-1 ul {
  padding: 10px 35px;
}

.content-1 ul li {
  line-height: 18px;
  list-style: disc;
  margin-bottom: 5px;
}

.content-1 h3 {
  margin-bottom: 5px;
}

.important-tour {
  margin-left: 25px;
}

.rates-tours {
  background: #E8E8E8;
  color: #333;
  width: 100%;
}
.rates-tours div {
  padding: 15px 0;
  box-sizing: border-box;
}
.rates-tours .borders {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.rates-tours span,
.rates-tours strong,
.rates-tours small {
  display: block;
  text-align: center;
}
.rates-tours span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Arimo", "Helvetica", Arial;
  margin-bottom: 5px;
  font-size: 13px;
}
.rates-tours .dashed {
  text-decoration: line-through;
  font-size: 14px;
  color: #e54b4d;
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
}
.rates-tours .dashed small {
  font-size: 14px;
  font-size: 18px !important;
}
.rates-tours strong {
  font-size: 26px;
  color: #fdaa2d;
}
.rates-tours strong small {
  display: inline;
  font-size: 16px;
}
.rates-tours p {
  margin: 10px auto 0;
  font-style: oblique;
  font-size: 12px;
  text-align: center;
}
.rates-tours p strong {
  color: #333;
  display: inline;
  font-size: 12px;
}

.tours-container {
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 0;
}
.tours-container .content-1 {
  width: 68%;
}
.tours-container .content-2 {
  width: 29%;
  margin-right: 5px;
}

/* hover */
/* ======================================================== */
.cards-hover {
  transition: transform 0.3s linear;
}
.cards-hover:hover {
  transform: translateY(-10px);
}

/* animacion de carga */
/* ========================================================= */
@keyframes slideLeftToCenter {
  0% {
    transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRightToCenter {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideLTC,
.slideRTC {
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.slideLTC {
  animation-name: slideLeftToCenter;
}

.slideRTC {
  animation-name: slideRightToCenter;
}

@keyframes showElementScroll {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* animacion de desplazamiento sobre eje y */
/* ===================================================== */
.show-scroll {
  view-timeline-name: --cardTours;
  view-timeline-axis: block;
  animation-timeline: --cardTours;
  animation-name: showElementScroll;
  animation-range: entry 30% cover 30%;
  animation-fill-mode: both;
}

/* animacion de desplazamiento sobre eje x */
/* ===================================================== */
.show-scroll-slideLTC {
  view-timeline-name: --cardTours;
  view-timeline-axis: block;
  animation-timeline: --cardTours;
  animation-name: slideLeftToCenter;
  animation-range: entry 30% cover 30%;
  animation-fill-mode: both;
}

.show-scroll-slideRTC {
  view-timeline-name: --cardTours;
  view-timeline-axis: block;
  animation-timeline: --cardTours;
  animation-name: slideRightToCenter;
  animation-range: entry 30% cover 30%;
  animation-fill-mode: both;
}

/* animacion de carga de las cards */
/* ==================================================== */
@keyframes slideFadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.delayed-fade-in {
  opacity: 0;
  animation: slideFadeInUp 0.5s forwards;
}
.delayed-fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.delayed-fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.delayed-fade-in:nth-child(3) {
  animation-delay: 0.6s;
}
.delayed-fade-in:nth-child(4) {
  animation-delay: 0.8s;
}
.delayed-fade-in:nth-child(5) {
  animation-delay: 1s;
}
.delayed-fade-in:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes slideBottomToTop {
  0% {
    transform: translateY(45%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
