/* Cards Tours populares */

:root {
  --main-color: #171D5E;
  --secondary-color: #f22631;
}

@font-face {
  font-family: 'Wildwest';
  font-style: normal;
  font-weight: 400;
  src: url(../icon_fonts/Wildwest.ttf);
}

.tour-type__box {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
  background-color: var(--trevlo-white, #ffffff);
  border-radius: 13px;
  border: 1px solid var(--trevlo-white3, #EBE6DE);
  box-shadow: 0px 16px 30px 0px rgba(0, 0, 0, 0.05);
  padding: 53px 20px 51px;
  transition: all 500ms ease;
}

.tour-type__box::after {
  opacity: 0;
  visibility: hidden;
  content: "";
  z-index: -1;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--trevlo-base, #FF5956);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.tour-type__box:hover::after {
  bottom: -50%;
  visibility: visible;
  opacity: 1;
}

.tour-type__box:hover {
  border-color: var(--trevlo-base, #FF5956);
}

.tour-type__box:hover .tour-type__box__icon {
  color: var(--trevlo-white, #ffffff);
  -webkit-animation-name: wobble-horizontal-on-hover;
  animation-name: wobble-horizontal-on-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.tour-type__box:hover .tour-type__box__title {
  color: var(--trevlo-white, #ffffff);
}

.tour-type__box__icon {
  display: inline-block;
  font-size: 65px;
  line-height: 65px;
  color: var(--trevlo-base, #FF5956);
  transition-duration: 500ms;
}

.tour-type__box__title {
  margin: 11px 0 0;
  text-transform: capitalize;
  font-size: 20px;
  transition-duration: 500ms;
}

.tour-type-two {
  position: relative;
  padding: 120px 0 0;
}

@media (max-width: 767px) {
  .tour-type-two {
    padding-top: 80px;
  }
}

.tour-type-two__box {
  position: relative;
  width: 100%;
}

@media (max-width: 1199px) {
  .tour-type-two__box {
    max-width: 270px;
    margin: auto;
  }
}

.tour-type-two__box__flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
  min-height: 326px;
}

/* @media (min-width: 992px) and (max-width: 1199px) {
    .tour-type-two__box__flipper {
      height: 278px;
    }
  } */
.tour-type-two__box__front {
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 2;
  padding: 0;
  width: 100%;
}

.tour-type-two__box__front__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.tour-type-two__box__front__image img {
  width: 100%;
  height: auto;
}

.tour-type-two__box__front__content {
  position: relative;
  background-color: var(--trevlo-white, #ffffff);
  border-radius: 10px 10px 0px 10px;
  border: 1px solid var(--trevlo-white3, #EBE6DE);
  padding: 0 20px 22px;
  text-align: center;
  margin: -41px 0 0;
}

.tour-type-two__box__front__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid var(--trevlo-white3, #EBE6DE);
  background-color: var(--trevlo-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--trevlo-base, #FF5956);
  margin: -35px auto 13px;
}

.tour-type-two__box__front__title {
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 6px;
}

.tour-type-two__box__front__text {
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.tour-type-two__box__front__text br {
  display: block;
}

.tour-type-two__box:hover .tour-type-two__box__front {
  transform: rotateY(180deg);
}

.tour-type-two__box__back {
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(-180deg);
  position: relative;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1;
  padding: 0;
  width: 100%;
}

.tour-type-two__box__back__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0px 10px;
  background-color: var(--trevlo-base, #FF5956);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .tour-type-two__box__back__image {
    height: 278px;
  }
}

.tour-type-two__box__back__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.tour-type-two__box__back__content {
  position: absolute;
  left: 0;
  top: 51%;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
}

.tour-type-two__box__back__icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--trevlo-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--trevlo-base, #FF5956);
  margin: 0 auto 11px;
}

.tour-type-two__box__back__title {
  color: var(--trevlo-white, #ffffff);
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 6px;
}

.tour-type-two__box__back__text {
  color: var(--trevlo-white, #ffffff);
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.tour-type-two__box {
  max-width: unset;
}

.tour-type-two__box__back__text br {
  display: block;
}

.tour-type-two__box:hover .tour-type-two__box__back {
  transform: rotateY(0deg);
}

.tour-type-two__box__back__text {
  height: 120px;
  overflow: hidden;
  padding: 0 10px;
}

.tour-type-two__box__front__title,
.tour-type-two__box__back__title {
  height: 68px;
  overflow: hidden;
}

.promos-carousel .price_grid {
  width: 100%;
  top: 0;
  text-align: center;
}


.boton-promos {
  position: absolute;
  bottom: 7px;
  right: 10px;
  width: fit-content;
  padding-right: 0;
}

.boton-promos a {
  padding: 7px 20px 0px 20px;
}

.boton-promos a i {
  font-size: 2rem
}

.score_w-tours {
  position: absolute;
  bottom: 7px;
  right: 50%;
  transform: translateX(50%);
  width: fit-content;
  padding-right: 0;
}


.hoteles-titulo {
  color: white;
  width: 70%;
  height: 64px;
  text-align: center;
  margin: auto;
  font-family: "Kanit";
  font-size: 25px;
  overflow: hidden;
}

.otros-tours-carousel .short_info h3 {
  height: 44px;
  overflow: hidden;
}

.stars-hotel-list i {
  font-size: 1.2rem;
}

.img-hoteles {
  object-fit: cover;
}

/* .select2-container {
  width: 100% !important;
} */

.formulario_wrapper .nav-link {
  color: white;
}

.text-yellow {
  color: #ffca00;
}

.carousel_detail img {
  border-radius: 10px;
}

.lista-amenidades-hotel-list {
  list-style: none;
  font-size: 1rem
}

.lista-amenidades-hotel-list i {
  color: #0b1760;
  margin-right: 4px
}

.campoReserva,
.campoReservaHorario {
  display: none;
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .otros-tours-carousel .img_container img {
    height: 480px;
  }
}

@media (max-width: 1199px) and (min-width: 800px) {
  .otros-tours-carousel .img_container img {
    height: 440px;
  }
}

@media (max-width: 799px) and (min-width: 600px) {
  .otros-tours-carousel .img_container img {
    height: 400px;
  }
}

@media (max-width: 599px) and (min-width: 600px) {
  .otros-tours-carousel .img_container img {
    height: 380px;
  }
}

@media (max-width: 599px) and (min-width: 361px) {
  .otros-tours-carousel .img_container img {
    height: 360px;
  }
}

@media (max-width: 360px) {
  .otros-tours-carousel .img_container img {
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .img-hoteles {
    height: 350px
  }

  .img-blog {
    height: 280px
  }

  .carousel-civi-det img {
    height: 440px;
  }

  .promos-carousel img {
    height: 650px
  }

  .imageWH {
    height: 450px
  }
}

@media (max-width: 1199px) and (min-width: 1000px) {
  .img-hoteles {
    height: 350px;
  }

  .img-blog {
    height: 280px
  }

  .carousel-civi-det img {
    height: 440px;
  }

  .promos-carousel img {
    height: 650px
  }

  .imageWH {
    height: 400px
  }
}

@media (max-width: 999px) and (min-width: 800px) {
  .img-hoteles {
    height: 320px
  }

  .img-blog {
    height: 260px
  }

  .promos-carousel img {
    height: 600px
  }

  .carousel-civi-det img {
    height: 400px;
  }

  .imageWH {
    height: 350px
  }
}

@media (max-width: 799px) and (min-width: 600px) {
  .img-hoteles {
    height: 300px
  }

  .img-blog {
    height: 260px
  }

  .carousel-civi-det img {
    height: 380px;
  }

  .imageWH {
    height: 300px
  }

}

@media (max-width: 599px) and (min-width: 350px) {
  .img-hoteles {
    height: 280px
  }

  .img-blog {
    height: 240px
  }

  .carousel-civi-det img {
    height: 340px;
  }

  #layerslider .slide_typo_2 {
    display: none;
  }

  #layerslider .button_intro_2 {
    display: none;
  }

  #layerslider .slide_typo {
    display: none;
  }

  .imageWH {
    height: 250px
  }
}


@media (max-width: 349px) {
  .img-hoteles {
    height: 250px;
  }

  .img-blog {
    height: 220px
  }

  .carousel-civi-det img {
    height: 300px;
  }

  #layerslider .slide_typo_2 {
    display: none;
  }

  #layerslider .button_intro_2 {
    display: none;
  }

  #layerslider .slide_typo {
    display: none;
  }

  .imageWH {
    height: 150px
  }

}

@media (min-width: 1200px) {
  .tour-type-two__box__back__image img {
    height: 490px;
  }

  .tour-type-two__box__front__image img {
    height: 278px
  }

  .tour-type-two__box__front__image {
    height: 278px
  }

  .tour-type-two__box__back__image {
    height: 490px;
  }
}

@media (max-width: 1199px) {
  .tour-type-two__box__back__image img {
    height: 490px;
  }

  .tour-type-two__box__front__image img {
    height: 278px
  }

  .tour-type-two__box__front__image {
    height: 278px
  }

  .tour-type-two__box__back__image {
    height: 490px;
  }
}

@media (max-width: 799px) and (min-width: 550px) {
  .promos-carousel img {
    height: 400px
  }
}

@media (max-width: 549px) and (min-width: 331px) {
  .promos-carousel img {
    height: 500px
  }
}

@media (max-width: 330px) {
  .promos-carousel img {
    height: 360px
  }
}

.lista_fav {
  padding-left: 0;
  list-style: none;
}

img {
  object-fit: cover
}

.ls-bg {
  filter: brightness(0.7)
}

#logo_home h1 {
  margin-top: 0;
}

.subheader {
  height: 100px;
}

.subheader-logo {
  height: 100px !important;
  width: 100px !important;
  background-size: cover !important;
}

.formulario_wrapper {
  background: #0A0A0A;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  box-shadow: 10px 10px 5px -8px rgb(0 0 0 / 16%);
  padding: 10px 30px;
}

.btn_1 {
  border-radius: 8px;
}

.formulario_wrapper .btn_1 {
  font-size: 1.1rem;
  padding: 10px 30px;
}

@media (min-width: 768px) {
  #card-tour .img_container img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  #card-tour .img_container img {
    height: 220px;
  }

  #card-tour .link-experiencias {
    text-align: center;
  }

  #top_line {
    display: none
  }
}

#card-tour .img_container img {
  width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #DB0000;
}

a.btn_1:hover {
  color: white !important;
}

@media (max-width: 991px) {
  #top_line {
    display: none;
  }

  /* #full-slider-wrapper {
    padding-top: 90px
  } */

  .cmn-toggle-switch {
    margin: 18px 10px 0 0
  }
}

/* @media (min-width: 992px) {
  #full-slider-wrapper {
    padding-top: 115px
  }
} */

.lista-redes * {
  width: fit-content;
  font-size: 1rem
}

#email_top {
  color: #fff;
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  margin-left: 5px;
}

a#email_top:before {
  font-family: fontello;
  content: '\e807';
  font-size: 14px;
  position: absolute;
  left: 0;
  top: -2px;
}

.lista_fav li i {
  margin-right: 3px;
  color: #00a99d
}

.bg-otras-experiencias {
  overflow: hidden;
  /* opacity: 0.033; */
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, #f9f9f9 10%, #f9f9f9cc 20%, #f9f9f9db 70%, #f9f9f9de 80%, #f9f9f9 100%);
  /* opacity: 0.03; */
  height: 100%;
  top: 0;
  left: 0;
}

.bg-otras-experiencias2 {
  position: absolute;
  width: 100%;
  background: linear-gradient(to bottom, transparent 70%, #f9f9f9fc 90%, #f9f9f9 100%);
  height: 100%;
  top: 3px;
  left: 0;
}

.bg-otras-experiencias3 {
  position: absolute;
  width: 100%;
  height: fit-content;
  background: linear-gradient(to bottom, transparent 70%, #fffffffa 90%, #ffffff 100%);
  top: 80px;
  /* opacity: 0.7; */
  /* z-index: -1; */
  display: none;
  left: 0;
}

@media (max-width: 1200px) {
  .bg-otras-experiencias3 {
    display: block;
  }
}

@media (max-width: 600px) {
  .bg-otras-experiencias3 {
    top: 90px
  }
}

@media (max-width: 600px) {
  .bg-otras-experiencias3 {
    top: 90px
  }
}

.bg-otras-experiencias .st0 {
  fill: none;
}

.bg-otras-experiencias .st1 {
  fill: #009EEB;
}

.bg-otras-experiencias .st2 {
  opacity: 0.04;
}

.bg-otras-experiencias .st3 {
  clip-path: url(#SVGID_00000068654602697937056430000008450372709228317886_);
}

.bg-otras-experiencias .st4 {
  fill: #606060;
}

.bg-otras-experiencias .st5 {
  opacity: 0.08;
}

.bg-otras-experiencias .st6 {
  clip-path: url(#SVGID_00000076599175631786987120000018236254795031078571_);
}

.bg-otras-experiencias .st7 {
  fill: #FFFFFF;
}

.bg-otras-experiencias .st8 {
  clip-path: url(#SVGID_00000120550042025454373520000017400409185106408866_);
}

.bg-otras-experiencias .st9 {
  clip-path: url(#SVGID_00000092425631536413133160000002958934682124524215_);
}

.bg-otras-experiencias .st10 {
  clip-path: url(#SVGID_00000111908519524718987290000006052049565675168387_);
}

@media (min-width: 1200px) {
  .bloglist img {
    height: 225px
  }
}

@media (max-width: 1199px) and (min-width: 576px) {
  .bloglist img {
    height: 180px
  }
}

@media (max-width: 575px) and (min-width: 350px) {
  .bloglist img {
    height: 220px
  }
}

@media (max-width: 349px) {
  .bloglist img {
    height: 150px
  }
}

.bloglist img {
  width: 100%
}

#widget-w {
  position: fixed;
  right: 10px;
  border-radius: 100%;
  opacity: 0.6;
  z-index: 101;
  bottom: 73px;
  padding: 8px 11px;
  background-color: #25d366;
  color: white;
}

#widget-w i {
  font-size: 1.5rem;
}


.preloader {
  position: fixed;
  z-index: 999999;
  background: #fff;
  width: 100%;
  height: 100%
}

.loader {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader:after,
.loader:before {
  content: '';
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  animation: loader 2s linear infinite;
  opacity: 0
}

.loader:before {
  animation-delay: .5s
}

@keyframes loader {
  0% {
    transform: scale(0.7);
    opacity: 0
  }

  50% {
    opacity: 1
  }

  100% {
    transform: scale(1.7);
    opacity: 0
  }
}

.loader:before {
  border: 1em solid #0b1760;
}

.loader:after {
  border: 1em solid #ffca00;
}

.loader img {
  height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.experiencias-list-card {
  border: 1px solid #eee;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px
}

.experiencias-list-card .img_wrapper {

  margin: 5px;
}

.experiencias-list-card h3 {
  height: 70px;
  overflow: hidden;
}

.experiencias-list-card .exp-list-ubicacion {
  font-size: 1.1rem
}

.experiencias-list-card .exp-list-ubicacion i {
  margin-right: 4px;
  color: red;

}

.experiencias-list-card .desc-list-experiencias {
  height: 82px;
  overflow: hidden;
}

.hoteles-list-card {
  border: 1px solid #eee;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px
}

.hoteles-list-card .img_wrapper {

  margin: 5px;
}

.hoteles-list-card h3 {
  height: 65px;
  overflow: hidden;
}

.formulario_wrapper {
  color: white
}

.civi-list-card {
  border: 1px solid #eee;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px
}

.civi-list-card .img_wrapper {
  margin: 5px;
}

@media (min-width: 768px) {
  .civi-list-card h3 {
    height: 66px;
    overflow: hidden;
  }
}

.box_style_2 {
  padding: 10px;
  border-radius: 10px;
}

.box_style_2 h3 {
  margin: -10px -10px 20px -10px;
  background-color: #ff0000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.box_style_1 {
  background-color: #0b1760;
  border-radius: 10px
}

.video-experiencia iframe {
  height: 250px;
  width: 470px;
  margin: auto;
}

@media (max-width: 768px) {
  .video-experiencia iframe {
    height: 230px;
    width: 400px;
    margin: auto;
  }
}

@media (max-width: 550px) {
  .video-experiencia iframe {
    height: 200px;
    width: 330px;
    margin: auto;
  }
}

@media (max-width: 400px) {
  .video-experiencia iframe {
    height: 160px;
    width: 270px;
    margin: auto;
  }
}

.listaHabitaciones hr {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.map-hotel {
  width: 100%;
  height: 200px;
  border-radius: 15px;
}

@media (max-width: 380px) {
  .map-hotel {
    height: 280px;
  }
}


@media (max-width: 500px) {
  .autor-cat-fecha h5 {
    font-size: 1rem
  }
}

.img_container img {
  width: 100%;
}

.main-menu>ul>li:hover>a {
  background-color: #DB0000;
}

ul#top_links a {
  color: #ffca00;
}

h3.slide_typo {
  font-family: "Wildwest", sans-serif
}

.tour-type-two__box__back__content a.btn_1 {
  background-color: #505050
}


.tour-type-two__box__back__content a.btn_1:hover {
  background-color: black
}

.link-boton-listas {
  position: absolute;
  right: 10px;
  bottom: 0;
}

@media (max-width: 767px) {
  .link-boton-listas {
    right: 50%;
    transform: translateX(50%)
  }
}

@media (max-width: 600px) {
  .score_w-tours {
    bottom: -23px
  }
}

@media (max-width: 991px) {
  .main-menu>ul>li>a {
    color: white !important
  }

  .main-menu>ul>li:hover>a {
    color: white !important;
  }

  .main-menu ul li a {
    color: white
  }

  .main-menu ul {
    height: auto;
    top: 0;
  }
}

.bg-otras-experiencias2 svg {
  position: relative;
  z-index: -1;
}

.bg-otras-experiencias3 svg {
  position: relative;
  z-index: -1;
}

.bg-otras-experiencias svg {
  position: relative;
  z-index: -1;
}

.promo-exp-populares {
  color: white;
  position: absolute;
  background-color: red;
  top: 10px;
  padding: 18px 10px 1px;
  z-index: 2;
  left: 10px;
  border-radius: 50%;
}


.select2-container--default .select2-selection--single {
  height: 38px !important
}

@media (max-width: 1400px) {
  .subheader {
    max-width: 1172px !important;
  }

  .subheader .col-md-3 {
    width: 15% !important;
  }

  .subheader .col-md-9 {
    width: 85% !important;
  }
}