/* Cards Tours populares */

:root {
  --main-color: #079be4;
  --secondary-color: #f22631;
}

.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: 10px; width: fit-content; padding-right: 0;
}


.hoteles-titulo {
  color: white;
  width: 70%;
  height: 64px;
  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: var(--main-color)
}

.text-yellow {

  color: #f9ff00;
}

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

.lista-amenidades-hotel-list {
  list-style: none;
  font-size: 1rem
}
.lista-amenidades-hotel-list i{
  color: var(--main-color);
  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: 80px;
}

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

.formulario_wrapper {
  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: 280px;
  }
}
@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: var(--main-color);
}

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 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.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: 15px 20px;
  background-color: #25d366;
  color: white;
}

#widget-w i{
  font-size: 2.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:1em solid #009eeb;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 img{
  height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}