@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root
{
    --color-primario:#e00d4e;
    --color-secundario:#00A859;
    --background-secundario:#00A859;
    --background-primario:#e00d4e
}
.cup
{
    cursor: pointer;
}
.cstar {
    color: #ffa127;
}
p{
    font-size: 15px;
    color: #888;
}
.cw
{
    color: #fff
}
.c1
{
    color: var(--color-primario)
}
.c2
{
    color: var(--color-secundario)
}
.b2
{
    background: var(--background-secundario)
}
.p40 {
    padding: 60px 0;
}
.cn
{
    color: #000;
}
.fwb900
{
    font-weight: 900
}
.f12
{
    font-size: 12px !important;
}
.f13
{
    font-size: 13px !important;
}
.f14
{
    font-size: 14px !important;
}
.f15
{
    font-size: 15px
}
.f17
{
    font-size: 17px
}
.f18
{
    font-size: 18px
}
.f20
{
    font-size: 20px
}
.f28
{
    font-size: 28px;
}
.f40
{
    font-size: 40px;
}
.fwb600
{
    font-weight: 600;
}
.fwb700
{
    font-weight: 700;
}
.fwb800
{
    font-weight: 800;
}
.fwb900
{
    font-weight: 900;
}
/*------------------------------------------------- header info -------------------------------------------------*/
.cont-info
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E5E5E5
}
.cont-info ul
{
    display: flex;
    list-style: none;
    margin-bottom: 0;
}
.cont-info ul li
{
    font-size: 13px;
}
.cont-info a:hover
{
    color: var(--color-primario)
}
.info-social li a
{
    font-size: 13px;
    color: #000;
    transition: 0.5s;
    text-decoration: none;
    position: relative;
}
.info-social li a span {
    position: absolute;
    top: -6px;
    right: 1px;
    width: 15px;
    height: 15px;
    border-radius: 50px;
    text-align: right;
    line-height: 11px;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
  }
.info-social-media
{
    display: flex;
    margin-bottom: 0;
    list-style: none;
}
.info-social-media li a
{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #939297;
    font-size: 14px;
    color: #000;
    transition: 0.5s;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 0 5px;
    border-radius: 5px;
}
.info-social-media li a:hover
{
    background: var(--background-primario);
    color: #fff !important;
    border-color: var(--color-primario);
}
.info-social-media li:nth-child(1) a
{
    margin-left: 0;
}
.info-social li a i {
    font-size: 16px !important;
  }
.info-social li a
{
    display: block;
    padding: 0 15px;
    border-right: 1px dotted #000; 
}
.info-social li:nth-child(1) a
{
    padding-left: 0
}
.info-social li:nth-child(3) a
{
    border-right: 0;
}
.logo,
.logo2
{
    text-align: center;
}
.logo img
{
    width: auto;
    height: 90px;
    margin: auto
}
.logo2 img {
    height: 90%;
    width: 90%;
    margin: auto;
  }
.content-info-2
{
    align-items: center;
    padding: 12px 0;
}
/*------------------------------------------------- Menu -------------------------------------------------*/
.menu
{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0
}
.menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    margin: auto;
}
.enquire
{
    border: 2px solid var(--color-primario);;
    border-radius: 5px;
    padding: 5px 15px;
    font-size: 15px;
    background: var(--color-primario);
    color: #fff
}
.menu .nav li a {
    display: flex;
    padding: 15px 0;
    margin: 0 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #2e3233;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.menu ul li>a:first-child {
    padding-left: 0;
}
.nav li ul {
    flex-direction: column;
    display: none;
    box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
    position: absolute;
    background: #fff;
    min-width: 225px;
    max-width: 325px;
    z-index: 10;
    border-radius: 5px;
    top: 214px;
}
.menu ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    margin: auto;
}
.nav li ul li {
    position: relative;
}
.menu .nav .sub-menu li a {
    color: #000;
    display: block;
    padding: 12px 0 12px 0;
    margin: 0 20px 4px 20px;
    font-size: 13px;
    text-transform: initial;
    border-bottom: 1px solid #888;
    font-weight: 600;
}
.nav li:hover>ul {
    display: block;
    animation: fade-out .3s ease-out;
}
.nav li ul li ul {
    left: 100%;
    top: 0;
}
.nav li .sub-menu li:hover ul {
    display: block;
    animation: fade-out2 .7s;
}
.menu header nav ul li a .fa-close {
    display: none;
    padding-right: 2px;
}
.menu header nav ul li a:hover .fa-close {
    display: block;
}
.menu header nav ul li a:hover .fa-angle-down {
    display: none;
}
.menu header nav ul li a i {
    padding-left: 5px;
    font-size: 17px;
    font-weight: 700;
}
.menu header li a:hover {
    text-decoration: none;
    color: var(--color-primario) !important;
}

.menu header nav ul li:nth-child(1) a {
    padding-left: 0;
    margin-left: 0;
}
.mega-menu {
    min-width: 100% !important;
    left: 0;
    overflow: hidden;
    padding: 15px 0 25px !important;
  }
.mega-menu ul
{
    display: block !important;
    position: relative !important;
    top: 0 !important;
    padding: 0;
    margin: 0;
    min-width: 100% !important;
    box-shadow: none !important;
}
@keyframes fade-out {
    0% {
    top: 230px;
    opacity: 0;
}
100% {
    opacity: 1;
    }
}
@keyframes fade-out2 {
    0%{
        opacity:0;
        left:90%
}
100% {
    opacity: 1;
    left:100%
    }
}

.menu-responsive {
    position: relative;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    top: 0;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    display: none;
}
.menu-iconos-responsive {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    list-style: none;
}
.menu-bars {
    width: 2rem;
    height: 30px;
    right: 20px;
    top: 15px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    z-index: 999;
    cursor: pointer;
    margin-left: 5px;
}
.menu-bars .bar1 {
    width: 15px;
}
.bar2 {
    width: 100%;
}
.bar3 {
    width: 15px;
    margin-left: 17px;
}
.bar1, .bar2, .bar3 {
    background: #000;
    border-radius: 5px;
    height: 4px;
    transition: .5s all ease;
}
.body-left
{
    overflow: hidden;
}
.menu-ui header {
    transform: translatex(0);
    transition: .5s;
    visibility: visible;
    opacity: 1;
}
.menu-ui .bar1 {
    transform: rotate(138deg) translate3d(3px,13%,0);
    width: 38px;
    margin-top: 10px;
}
.menu-ui .bar2 {
    transform: rotate(-138deg) translate3d(5.5px,32%,0);
    bottom: 0;
    width: 38px;
}
.menu-ui .bar3 {
    transform: rotate(45deg) translate3d(-8px,35%,0);
    margin-left: 18px;
    width: 21px;
    opacity: 0;
    visibility: hidden;
}
#lang_choice_polylang-3 {
    width: 48px;
    font-size: 15px;
    background: 0 0;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 4px 5px;
}
.screen-reader-text {
  display: none;
}

.top109
{
    position: fixed;
}

/*------------------------------------------------- Redes Sociales -------------------------------------------------*/

.cont-contatc-redes
{
	position: fixed;
	top: 50%;
	left: 0%;
	transform: translate(0%,-50%);
	width: 53.5px;
	height: 315px;
	text-align: center;
	display: flex;
	flex-direction: column;
	z-index: 9;
	cursor: pointer;

}
.cont-contatc-redes a{
    width: 50px;
    height: 50px;
}
.cont-contatc-redes img
{
	height: 26px;
	width: 26px;
}
.cont-contatc-redes i
{
	color: #fff;
	font-size: 17px;
	padding: 9px 0px;
	display: block;
}
.whatsap
{
	background: #26D367;
	padding: 7.5px 0 ;
	position: relative;
}
.facebook-me
{
	background: #0084FF;
	padding: 12px 0;
	position: relative;
	border-top-right-radius: 10px;
}
.whatsap:hover
{
    border-bottom-right-radius: 0px !important;
}
.whatsap:hover span
{
	width: 137px;
	display: block !important;
	animation: fade-out 0.5s;
}
.facebook-me:hover span
{
	width: 170px;
	display: block !important;
	animation: fade-out 0.5s;
}
.facebook-me:hover
{
	border-radius: 0 !important;
}
.whatsap span,
.facebook-me span,
.form-enquiry
{
	color: #fff;
	border-radius: 0px 10px 10px 0px;
	font-size: 14px;
	float: left;
	line-height: 3.5;
	position: absolute;
	width: 0;
	left: 100%;
	height: 100%;
	white-space: nowrap;
	-webkit-transform-origin: 0 0 0;
	-moz-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	display: none !important;
	top: 0 !important;
}

::-webkit-scrollbar {
    width: 8px;
    height: 7px;
}
::-webkit-scrollbar-thumb {
    background: var(--background-secundario);
    border-radius: 4px;
}

::-moz-selection {
    /* Code for Firefox */
    background: var(--background-secundario);
    color: #fff;
}

::selection {
    background: var(--background-secundario);
    color: #fff;
}
.logos-recomendaciones img {
    width: auto!important;
    height: 85px;
    margin: auto;
}
.row a:hover
{
    text-decoration: none;
    color: red !important;
}
/*------------------------------------------------- Main -------------------------------------------------*/


.banner {
    height: calc(100vh - 7.80rem);
    position: relative;
    overflow: hidden;
}
.banner  img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    -webkit-animation: slide 13s linear infinite;
    animation: slide 13s linear infinite;
}
@-webkit-keyframes slide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}@keyframes slide {
     0% {
         -webkit-transform: scale(1);
         transform: scale(1);
     }
     50% {
         -webkit-transform: scale(1.2);
         transform: scale(1.2);
     }
     100% {
         -webkit-transform: scale(1);
         transform: scale(1);
     }
 }
.titte {
    position: absolute;
    left: 17.5%;
    top: 50%;
    text-align: left;
    transform: translate(0,-50%);
    width: 30%;
}
.titte h2 {
    position: relative;
    z-index: 15;
    color: #fff;
    font-weight: 900;
    margin-bottom: 0;
    font-size: 42px;
}
.titte a {
    background: var(--color-primario);
    color: #fff;
    border-radius: 50px;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 15px;
    display: block;
    width: 160px;
    text-transform: uppercase;
    text-align: center;
    left: 0;
    transition: .5s;
    border: 2px solid var(--color-primario);
}
.goxplore-peru {
    display: block;
    position: relative;
}
.goxplore-peru img {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 20px 50px 0px rgb(0 0 0 / 20%);
}
.texto
{
    text-align: center;
    padding-bottom: 2rem
}
.texto h2
{
    font-size: 40px
}

.tour-anden-adventure
{
    background: #fff;
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    position: relative;
}
.tour-anden-adventure-img
{
    width: 100%;
    height: 400px;
    overflow: hidden;   
}
.tour-anden-adventure-img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 1s
}
.tour-anden-adventure:hover .tour-anden-adventure-img img
{
    transform:scale(1.1)
}
.texto-ande-adventure
{
    padding: 15px
}
.texto-ande-adventure h3
{
    font-size: 17px;
    font-weight: 700;
    color: #000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.texto-ande-adventure p
{
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 12px;
    color: #888;
    margin-bottom: 0
}
.tour-anden-adventure_dias
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background-primario);
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
}
.item a:hover
{
    text-decoration: none;
}
.nuevo-badge-package {
    position: absolute;
    top: 32px;
    z-index: 9;
    background: var(--background-primario);
    transform: rotate(-50deg);
    color: #fff;
    font-size: 12px;
    padding: 0px 15px;
    width: 100%;
    left: -142px;
    text-align: center;
    line-height: 15px;
    height: 20px;
}
.owl-next span, .owl-prev span {
    display: block;
    background: var(--background-primario);
    color: #fff;
    border-radius: 100%;
    font-size: 25px;
    width: 45px;
    height: 45px;
    line-height: 45px;
}
.owl-prev {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 0px;
}
.owl-next {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    right: -50px;
}
button.owl-next.disabled, button.owl-prev.disabled {
    display: none;
}
.propio-paquete {
    background: url('imagenes/banner/travel.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 4rem 0;
    margin: 1rem 0;
    position: relative;
}
.propio-paquete:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: rgba(0,0,0,.4);
}
.tituloh2 {
    padding: 4rem 0;
    position: relative;
    z-index: 5;
}
.tituloh2 h2 {
    position: relative;
}
.tituloh2 p {
    position: relative;
    z-index: 9;
    color: #fff;
    font-size: 15px;
}
.propio-paquete a {
    background: 0 0;
    outline: 0;
    border: 1px solid #fff;
    border-radius: 50px;
    width: 250px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.propio-paquete a:hover {
    color: #fff;
    text-decoration: none;
}
.propio-paquete a i {
    transition: .5s;
    font-size: 20px;
    opacity: 0;
    margin-left: -20px;
}
.propio-paquete a:hover i {
    opacity: 1;
    margin-left: 5px;
    transform: scale(1);
    color: #fff;
}

/*------------------------------------ Tipo de Tours ------------------------------------*/

.tipo-de-tour ul
{
    display: flex;
    justify-content: space-between
}
.tipo-de-tour ul li
{
    width: 35%;
    position: relative;
    list-style: none;
    border: 0;
    overflow: hidden;
    transition: 1s
}
.tipo-de-tour li a:hover img
{
    transform: scale(1.2);
}
.tipo-de-tour ul li img
{
    width: 100%;
    height: 100%;
    position: relative;
    transition: 2s;
    object-position: center;
    object-fit: cover
}
.tipo-de-tour li:hover img
{
    transform: scale(1)
}

.text-tours-tipo
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.text-tours-tipo h3
{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0
}

.tipo-de-tour .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .tipo-de-tour .item
  {
      border-radius: 5px;
      overflow: hidden;
  }
/*------------------------------------------------------ Camino Inca ------------------------------------------------------*/

.camino-inca:hover {
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 15%);
}

.camino-inca {
    border: 1px solid rgba(0,0,0,.125);
    overflow: hidden;
    border-radius: 10px;
    transition: .5s;
    margin-bottom: 5px;
}
.img-camino-inca {
    overflow: hidden;
    width: 100%;
    height: 220px;
}
.img-camino-inca img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 1.8s;
}
.camino-inca .info-tour>div:nth-child(1), .camino-inca .info-tour>div:nth-child(2) {
    padding: 15px;
}
.info-tour h3 {
    font-weight: 700;
    transition: .5s;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 17px;
    padding-top: 5px;
    color: #000;
}
.info-tour p {
    font-size: 13px;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin-bottom: 5px;
}
.info-tour:nth-child(1) p 
{
    color: red !important;
}
.tour-traditional span:last-child {
    border-radius: 50px;
    padding: 12px 45px;
    text-align: center;
    display: block;
    border: 2px solid var(--color-primario);
    background: var(--color-primario);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .7s;
    width: 100%;
    margin-bottom: 10px;
}
.tour-traditional span:hover {
    background: 0 0;
    color: var(--color-primario);
}
.camino-inca:hover img {
    transform: scale(1.1) rotate(2deg);
}

/*------------------------------------------------------ Como reservar ------------------------------------------------------*/

.cont-reservar-como {
    text-align: center;
    padding: 50px 0px;
}
.cont-reservar-como svg {
    width: 90px;
    height: 90px;
    fill: var(--color-primario);
    margin-bottom: 40px;
}
.cont-reservar-como svg path {
    fill: var(--color-primario);
}
.cont-reservar-como h4 {
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.cont-reservar-como a {
    background: var(--background-primario);
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    border: 2px solid var(--background-primario);
    transition: 0.5s;
}
.cont-reservar-como a:hover
{
    text-decoration: none;
    color: #fff;
    background: transparent;
    border-color: var(--background-primario);;
}

/*------------------------------------------------------ Footer ------------------------------------------------------*/


.footer {
    background: #28272F;
    padding: 45px 0;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}
.footer h4 {
    font-size: 14px;
    font-weight: bold;
    color: #FCB714;
    text-transform: uppercase;
    text-align: center;
    margin: 25px 0 33px;
    text-align: left;
}
.tour-footer li:hover ,
.tour-footer li:hover a{
    transform: translate(10px);
    text-decoration: none;
}

.tour-footer li {
    list-style: none;
    padding: 0 0 15px;
    line-height: 12px;
    transition: 0.5s;
}
.tour-footer li a {
    color: #fff;
    font-size: 14px;
}
.tour-footer li:last-child a
{
    display: none;
}
.contact-footer li {
    list-style: none;
    color: #fff;
    font-size: 13px;
    display: flex;
    padding: 0 0 12px;
    line-height: 22px;
    width: 100%;
}
.contact-footer li span {
    display: flex;
    width: 30%;
    align-items: center;
}
.contact-footer li i {
    color: #FCB714;
    margin-right: 10px;
    font-size: 14px;
}
.contact-footer a {
    color: #fff;
    font-size: 12.4px;
    margin-left: 5px;
}
.redes-sociales-footer {
    padding: 15px;
}
.redes-sociales-footer a {
    color: #fff;
    padding: 0 22px 0 0;
}
.nos-define {
    border: 2px solid #777;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    height: 160px;
    line-height: 170px;
}
.nos-define img {
    height: 85px;
    width: auto;
    margin: auto;
}
.nos-define h4 {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    margin-top: 1rem;
}
.view-datails:hover {
    border: 2px solid var(--color-primario);
    background: transparent;
    color: var(--color-primario);
}
.view-datails {
    width: 100%;
    background: var(--color-primario);
    display: block;
    padding: 11px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    border-radius: 7px;
    margin-top: 15px;
    transition: 0.7s;
    border: 2px solid transparent;
}

/* ----------------------------------------------------------- contenido single ---------------------------------------------------- */

.img-single
{
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
}
.img-single:before
{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(0deg, rgba(0,0,0,0),rgba(0,0,0,0.9) 0%, transparent);
}
.img-single img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.single-img-grande
{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px
}
.single-img-grande img
{
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center
}
.img-single-pequenio
{
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    border-radius: 10px
}
.img-single-pequenio img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img-single > div {
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 5;
    width: 75%;
    text-align: center;
    transform: translate(-50%,-50%);
}
.info-single-img-pricipal h1 {
    color: #fff;
    font-weight: 900;
  }
.form-reservar {
    width: 350px;
    right: -40px;
    border: 1px solid #ccc;
    border-radius: 7px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0.1rem 1rem rgb(0 0 0 / 10%);
    top: -35px;
    display: flex;
    flex-direction: column;
    color: #888;
    font-size: 11px;
    padding: 20px 15px;
    z-index: 9;
}
.form-reservar label
{
    font-size: 14px;
}
.form-reservar a {
    background: var(--background-primario);
    outline: 0;
    border-radius: 50px;
    padding: 10px;
    font-weight: 600;
    font-size: 12.5px;
    color: var(--color-0);
    border: 2px solid var(--background-primario);
    transition: .7s;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    transition: 0.5s;
    height: 45px;
}
.form-reservar a:nth-child(6) {
    background: var(--background-secundario);
    color: var(--color-secundario);
    border-color: var(--background-secundario);
    color: #fff;
}
.form-reservar a:nth-child(6):hover
{
    color: var(--color-secundario) !important;
}
.form-reservar a:hover
{
    background: transparent;
    color:var(--background-primario);
    text-decoration: none;
}
.form-reservar input
{
    height: 40px;
    font-size: 14px;
}
.form-reservar textarea{
    font-size: 14px;
}
.form-reservar input:focus,
.form-reservar textarea:focus
{
    box-shadow: none;
}
.form-reservar button {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    padding: 13px;
    background: var(--background-primario);
    border: 2px solid var(--background-primario);;
    color: #fff;
    transition: 0.5s;
  }
  .form-reservar button:hover
  {
      background: #fff;
      color: var(--background-primario);;
  }
.cont-tour-details {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    width: 100%;
}
.cont-tour-details li {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 500;
}
#Shape {
    fill: #fff;
  }
.cont-tour-details li svg {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    fill: #fff;
}
.cont-tour-details li span
{
    font-size: 12px;
    color: #fff;
}
.contenido p
{
    color: #212529;
    font-size: 15px;
}
.contenido h2
{
    color: #000;
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}
.contenido h3
{
    color: #000;
    font-weight: 600;
    font-size: 20px;
}
.contenido iframe {
    width: 100%;
  }

.wp-block-table td {
    padding: 15px 15px 15px 0;
}
.wp-block-group tr {
    border-bottom: 1px solid #e1e1e1;
    line-height: 2.5;
}
.wp-block-table td strong {
    font-size: 14px;
    font-weight: 500;
    padding: 0 30px 0 0;
}
.wp-block-table {
    font-size: 15px;
}
.wp-block-table td:nth-child(1)
{
    width: 30%;
}
.galeria-content {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 10px;
    list-style: none;
  }
/*.otro-stycky {
    margin-top: -350px;
}*/
.right-sticky {
    top: 3px;
    position: sticky!important;
    display: block;
    height: 100%;
    z-index: 9;
}
.contenido strong {
    color: #000;
    font-weight: 500;
  }
  .contenido ul {
    list-style: none;
    font-size: 14px;
  }

/* ----------------------------------------------------------- Page  ---------------------------------------------------- */

  .img-page {
    background-size: cover!important;
    background-position: center!important;
    background-attachment: fixed!important;
}

.banner-page {
    height: calc(100vh - 10.9rem);
    position: relative;
    overflow: hidden;
}
.banner-page img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.titulo-page {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    width: 100%;
    text-align: center;
    z-index: 9;
}
.titulo-page h1 {
    position: relative;
    z-index: 999;
    font-weight: 900;
    font-size: 50px;
}
.img-page:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background-color: rgba(0,0,0,.2);
}
.dnone
{
    display: none !important;
}

#polylang-2 a {
    padding: 0;
    margin-left: -4px;
}
#polylang-2 a span
{
    position: relative;
    top: 0;
    height: initial;
}
.modal-reserva{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.4);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    display: none;
    animation: fade-modal .7s;
}
@keyframes fade-modal {
    0%{
        opacity:0;
}
100% {
    opacity: 1;
    }
}

.modal-reserva div {
    background: #fff;
    width: 478px;
    border-radius: 5px;
    padding: 2rem;
  }

.modal-reserva .fa.fa-check {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(92,184,92,.2);
    border-radius: 50%;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: green;
    margin: auto;
    margin: 0 auto 1rem;
  }
  .modal-reserva .fa.fa-info {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(218, 165, 32,.2);
    border-radius: 50%;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: goldenrod;
    margin: auto;
    margin: 0 auto 1rem;
  }
  .modal-reserva > div h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: center;
  }
  .modal-reserva > div p {
    font-size: 16px;
    text-align: center;
  }
  .modal-reserva > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 100%;
  }
  .modal-reserva > div > div a {
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    border: 0;
  }
  .modal-reserva > div > div a:hover
  {
      text-decoration: none;
  }
  .body-none
  {
      overflow: hidden;
  }
  .modalElimanrTour {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-eliminar {
    background: #fff;
    width: 35%;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
}

/*------------------------------------------------- Progress Bar -------------------------------------------------*/
#proegress
{
    display: flex;
    list-style: none;
    margin-bottom: 15px;
    counter-reset: step;
    align-items: center;
    font-weight: bold;
}
#proegress li.activo {
    font-weight: 600 !important;
    transition: 1s;
}
#proegress li{
    width: 100%;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
}
#proegress li:before
{
    display: flex;
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    background-color: white;
    margin: 0 auto 5px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    border-radius: 50px;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
#proegress li:after
{
    display: block;
    content: '';
    width: 100%;
    height: 3px;
    background-color: silver;
    position: absolute;
    top: 15px;
    left: -50%;
    z-index: 1;
}
#proegress li.antes-activo:after,
#proegress li.activo:after {
    background: #0071c2;
    transition: 1s;
}
#proegress li:first-child:after
{
    content: none;
}
#proegress li.activo:before, .formulario #proegress li.activo:after
{
    background-color:#0071c2;
    color: #fff;
    font-weight: bold;
    transition: 1s;
}
.antes-activo:before
{
    content: "\f00c" !important;
    font-family: FontAwesome;
}
.aparecer-container
{
    display: block !important;
}

.imgcarrito img {
    width: 100%;
    height: 175px;
    padding-right: 12px;
    object-fit: cover;
    object-position: center;
}
.cont-contact {
    position: relative;
    font-size: 14px;
}
.categoria-page2
{
    width:100%;
    height:50vh;
    overflow:hidden;
}
.categoria-page2 img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cont-contact i {
    color: #fff;
    font-size: 45px;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
.cont-contact h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primario);
    text-align: center;
}
.cont-contact strong {
    font-weight: 600
}
.cont-contact a {
    color: var(--color-primario);
}
.cont-contact p {
    margin-bottom: 0;
}
.badge-error {
    color: red;
    font-size: 14px;
    margin-top: 2rem;
    text-align: left;
    border: 1px solid red;
    border-radius: 5px;
    padding: 13px 10px;
}
.form-validar-error {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: alert-out .7s;
}
.form-validar-error svg {
    fill: #3fc3ee;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
}
.form-validar-error>div {
    background: #fff;
    width: 500px;
    margin: auto;
    box-shadow: 0 .5rem 1rem rgb(0 0 0 / 15%)!important;
    border-radius: 5px;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}
.form-contact input {
    height: 47px!important;
    font-size: 14px;
}
.form-contact input:focus {
    box-shadow: none!important;
}
.form-contact button {
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--color-primario);
    border: 1px solid var(--color-primario)!important;
    transition: .5s;
    outline: 0!important;
}
.form-contact button:hover {
    background: rgba(231, 101, 10, .8);
}
#alrt {
    display: none;
}
.botonesadultos {
    display: flex;
    width: 100px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    height: 36px;
    overflow: hidden;
}
.botonesadultos button {
    width: 35%;
    height: 100%;
}
.botonesadultos button {
    background: #343A40;
    border: none;
    transition: 0.5s;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    padding: 5px;
}
.botonesadultos input {
    text-align: center;
    width: 40%;
    height: 100%;
}
.botonesadultos button:hover
{
    color: red !important;
    font-weight: bold !important;
}
.form-control:disabled, .form-control[readonly]
{
    background: transparent !important
}

.flatpickr-rContainer {
    width: 100%;
  }
  .flatpickr-days {
    width: 100% !important;
  }
  .flatpickr-calendar.animate.multiMonth.inline {
  width: 100% !important;
}
.dayContainer {
    min-width: auto !important;
  }
  .pagos-porcentaje {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pagos-porcentaje>div {
    width: 33%;
    height: 85px
px
;
    border-radius: 5px;
    line-height: 20px;
    border: 1px solid #ccc!important;
    display: flex;
    justify-content: center;
    padding-top: 23px;
    margin-bottom: 0;
    flex-direction: column;
}

.continput {
    display: block;
    position: relative;
    padding-left: 46px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    padding-top: 12px;
}
.pagos-porcentaje>div .checkmark {
    top: 50%!important;
    transform: translate(-50%,-50%);
    left: 10%;
}

.checkmark {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid silver;
}
.cont-pagar-tours input:checked~.checkmark::after, .continput input:checked~.checkmark::after {
    content: "\f00c";
    width: 23px;
    border-radius: 0;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: FontAwesome;
    font-size: 22px;
    color: #f70759;
    transition: 1s;
}
.cont-pagar-tours input, .continput input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    z-index: 9;
}
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.7s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .cont-leader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0,0,0,0.5);
    z-index: 9;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .modalElimanrTour {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.comment_tripadvisor
{
    border: 1px solid #DBDDE1;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 15px;
}
.comment_tripadvisor img 
{
    width: 37px;
    height: 37px;
    border-radius: 50px;
    margin-right: 7px;
}
.comment_tripadvisor strong 
{
    font-size: 15px;
    font-weight: 700;
}
.comment_tripadvisor ul 
{
    margin-bottom: 0;
    font-size: 13px;
    color: #00AA6C;
}
.comment_tripadvisor p 
{
    margin-bottom: 0;
    font-size: 14px;
    margin-top: 15px;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
