/*
Theme Name: AventuraGlobal
Description: Tema para WordPress.
Author:  KEvin
Author URI: 
version: 2.8.1
Tags: tema
*/


@import url('https://fonts.googleapis.com/css2?family=Spinnaker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Round&display=swap');

:root {
    --color-1: #00924b;
    --color-2: #ffffff;
    --color-3: #eea315;
    --color-4: #f5f5f5;
    --color-5: #282829;

}
*{margin:0; padding:0;font-family: "Spinnaker",sans-serif;}
h1.pagetitle {
    text-align: center;
    margin: 30px auto;
    font-size: 40px;
}
h2 {
    font-size: 40px;
    font-weight: 500;
    padding: 15px 0;
    line-height: 40px;
}
h3 a,
h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    padding: 10px 0;
}
ul, li {
    list-style: none;
    line-height: 30px;
    font-size: 16px
}
a {
    font-size: 16px;
    text-decoration: none;
    color: var(--color-1);
    transition-duration: 0.5s;
}
i {
    color: var(--color-3);
}
p {
    color: var(--color-5);
    font-size: 16px;
    padding: 5px 0;
}
.content{
    width: 1200px;
    margin: auto;
}

/*header */
.InformacionHeader {
    background: var(--color-1);
    color: var(--color-2);
}
.InformacionHeader ul {
    display: flex;
    padding: 10px 0;
}
.InformacionHeader ul li {
    padding-right: 15px;
    font-size: 12px;
    font-weight: 400;
}
.InformacionHeader strong {
    color: var(--color-3);
    font-weight: 400;
}
.InformacionHeader li {
    font-size: 12px;
    font-weight: 400;
}
.InformacionHeader .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gtranslate-2 img {
    margin: 0 0 0 10px;
    opacity: 1;
}
.navegacionHeader .content {
    display: flex;
    flex-direction: column;
}
.logo,
nav.menuNavegacion {
    margin: auto;
}
.logo figure {
    margin: 25px auto;
}
.textologo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.textologo a {
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(var(--color-3),var(--color-3),transparent);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -2px;
    padding: 15px 0;
    display: block;
}
.textologo a strong {
    font-weight: 900;
}
nav.menuNavegacion ul {
    display: flex;
    justify-content: center;
}
nav.menuNavegacion ul li{
    position: relative;
}
nav.menuNavegacion ul li a {
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 700;
    display: block;
    color: var(--color-5);
    transition-duration: 0.5s;
}
nav.menuNavegacion ul li ul li a {
    font-size: 17px;
    line-height: 24px;
}
nav.menuNavegacion ul li a:hover {
    color: var(--color-3);
}
ul.sub-menu {
    width: 360px;
    display: none !important;
    position: absolute;
    top: 60px;
    padding: 10px;
    left: 0;
    background: var(--color-1);
    z-index: 10;
}
ul.sub-menu a {
    color: var(--color-2) !important;
    font-size: 14px;
    padding: 10px 15px !important;
}
ul.sub-menu a:hover {
    color: var(--color-3) !important;
}
nav.menuNavegacion ul li:hover .sub-menu {
    display: flex !important;
    flex-direction: column;
}
/* slider Home*/
section.contenedorSliderHome {
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.mySwiperHome {
    width: 100%;
    height: 100%;
}
.mySwiperHome .swiper-slide{
    position: relative;
}
.mySwiperHome .swiper-slide img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.mySwiperHome .swiper-slide img:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    transform: translate(-50%,-50%);
    border-radius: 10px;
    filter: brightness(0.7);
    animation: arrastre 2s ease-in-out infinite;
}
@keyframes arrastre {
    0%,100%{
        transform: translate(-50%,-50%);
    }
    50%{
        transform: translate(-48%,-50%);
    }
}
.mySwiperHome .textoslider {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--color-2);
    text-align: center;
    z-index: 2;
    transform: translate(-50%,-50%);
    font-size: 20px;
}
.mySwiperHome .textoslider h2 {
    font-size: 100px;
    font-weight: 200;
    line-height: 100px;
}
.mySwiperHome .textoslider a {
    display: block;
    padding: 15px 25px;
    background: var(--color-3);
    color: var(--color-2);
    width: 120px;
    margin: 15px auto;
    text-transform: uppercase;
}
/* Nosotros Home */
.imagenNosotrosHome {
    width: 100%;
    height: 600px;
    position: relative;
}
.imagenNosotrosHome img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.imagenNosotrosHome::after {
    content: "";
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient( var(--color-4),transparent, transparent);
}
.textoNosotrosHome::after {
    content: '"';
    font-family: "Times New Roman", serif;
    position: absolute;
    top: 45px;
    left: 50%;
    z-index: 10;
    color: var(--color-5);
    font-size: 120px;
}
.textoNosotrosHome {
    position: relative;
    background: var(--color-4);
}
.textoNosotrosHome h2 {
    text-align: center;
}
.textoNosotrosHome p {
    font-size: 25px;
    line-height: 35px;
    text-align: center;
    width: 50%;
    margin: 25px auto 0 auto;
    padding-top: 30px;
}
/* Tours Home*/
.textoPrincipalHome {
    width: 80%;
    margin: 30px auto;
}
.textoPrincipalHome p {
    text-align: center;
}
.textoPrincipalHome h2 {
    text-transform: uppercase;
    text-align: center;
}
section.contenedorToursHome {
    width: 100%;
    margin: 50px 0;
}
.ToursHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.itemsTourHome {
    width: 350px;
    margin: 25px;
    background: var(--color-4);
    border-bottom: 4px solid var(--color-1);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 16px #00000040;
}
.imageTourHome {
    overflow: hidden;
    height: 233px;
}
.imageTourHome img {
    width: 100%;
    height: 100%;
    transition: 2s;
}
.itemsTourHome:hover img {
    scale: 1.1;
}
.datosTourHome {
    padding: 30px 15px;
}
p#precioTourHome {
    margin-top: 10px;
    padding: 35px 0 0 0;
    color: var(--color-5);
    border-top: 1px solid var(--color-5);
    font-weight: 700;
    font-size: 22px;
}
/* categorias Home */
.contentTextoCategorias {
    width: 1200px;
    margin: 30px auto;
}
section.contendorCategoriasHome {
    width: 100%;
    padding: 80px 0;
    background: var(--color-4);
}
.contendorCategoriasHome .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section.contendorCategoriasHome img {
    filter: brightness(0.8);
}
.columnaCategoriaHome {
    width: 35%;
}
.itemCategoriaHome {
    height: 250px;
    margin-bottom: 10px;
    margin-right: 20px;
    position: relative;
}
.mySwiperCategoria {
    width: 60%;
    height: 510px;
}
.mySwiperCategoria img, 
.columnaCategoriaHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: 0.5s;
}
.itemCategoriaHome:hover img,
.mySwiperCategoria .swiper-slide:hover img {
    filter: brightness(0.2);
}
.mySwiperCategoria .swiper-slide{
    position: relative;
}
.textosliderCategoria {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--color-2);
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    font-size: 15px;
}
.textosliderCategoria a {
    display: block;
    color: var(--color-2);
    margin: 10px auto;
    width: 80px;
    padding: 10px 15px;
    border: 1px solid var(--color-2);
}
.textosliderCategoria h2 {
    text-transform: uppercase;
    font-size: 30px;
}
.swiper-button-next, .swiper-button-prev {
    background: var(--color-4);
    border-radius: 50%;
    padding: 2px 10px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
    color: var(--color-1);
}
/* blogs Home */
.botom {
    display: flex;
    justify-content: center;
    padding: 10px 5px;
    background: var(--color-3);
    color: var(--color-2);
    width: 100px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}
.botom:hover{
    background: var(--color-1);
}
.datosTourHome .botom{margin-top: 20px;}
section.contenedorBlogsHome {
    width: 100%;
    margin: 80px 0;
}
.BlogsHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.itemsBlogsHome {
    width: 45%;
    margin: 15px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.itemsBlogsHome img {
    width: 100%;
    object-fit: cover;
    height: auto;
    filter: brightness(0.5);
    transition: 0.5s;
}
.itemsBlogsHome:hover img {
    filter: brightness(0.3);
}
.datosItemsBlogHome {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 95%;
    color: var(--color-2);
}
.datosItemsBlogHome h3 {
    text-transform: uppercase;
}
.datosItemsBlogHome p {
    color: var(--color-2);
}
/* Nuestro aliados */
.contenedorAliados{padding-bottom: 80px;}
.swiper-wrapper{align-items: center !important;}
.swiperAliados img {
    /* width: 200px !important; */
    /* height: 150px !important; */
    /* object-fit: cover; */
}
.swiperAliados {
    /* height: 300px; */
}
/*Footer*/
footer {
    background: var(--color-1);
    padding-top: 80px;
    color: var(--color-2);
}
footer p{
    color: var(--color-2);
}
footer li li{
    padding: 10px 0;
}
section.columnasFooter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
}
section.columnasFooter h3 {
    font-weight: 600;
    padding-bottom: 15px;
}
.columnasFooter li {
    width: 20%;
}
.columnasFooter li:first-child {
    width: 28%;
}
.columnasFooter li ul li {
    width: auto !important;
}
.columnasFooter li ul li a{
    color: var(--color-2);
}
.columnasFooter li ul li a:hover{
    color: var(--color-3);
}
section.textoFooter {
    border-top: 1px solid var(--color-4);
    padding: 60px 0;
    text-align: center;
}
section.textoFooter li {
    width: 50%;
    margin: auto;
}
section.textoFooter img {
    padding-top: 20px;
}
section.copyright {
    text-align: center;
    padding: 0 10px;
    padding-bottom: 20px;
}
.copyright a{
    color: var(--color-4);
}
.copyright a:hover{
    color: var(--color-3);
}
/* Pagina Tour */
.contendorPrincipalTour {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0;
}
.contenidoItinerarioTour {
    width: 70%;
}
.contenidoAdicionalTour {
    width: 30%;
    padding: 0 25px;
    box-sizing: border-box;
}
.precioTourPage {
    background: var(--color-4);
    padding: 15px 25px;
}
.informacionPrincipalTour {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.informacionPrincipalTour h1 {
    width: 80%;
}
.informacionPrincipalTour p {
    width: 80%;
}
.duracionTour {
    width: auto;
    max-width: 20%;
    display: flex;
    flex-direction: column;
    margin-top: -40px;
    padding-right: 10px;
    box-sizing: border-box;
}
.duracionTour p {
    text-align: center;
    font-size: 25px;
}
.duracionTour p:last-child {
    background: var(--color-4);
    padding: 10px 15px;
}
.duracionTour p:first-child {
    background: var(--color-3);
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    color: var(--color-2);
}
.contenedorSliderTour {
    padding: 25px 0;
}
.contenedorSliderTour img {
    width: 100%;
    height: auto;
}
.textoPrincipalPage {
    padding: 0 15px;
}
.textoPrincipalPage a {
    color: var(--color-3);
}
.textoPrincipalPage p {
    line-height: 30px;
    padding: 10px 0;
    text-align: justify;
    color: var(--color-5);
}
.textoPrincipalPage h2 {
    font-size: 25px;
    color: var(--color-3);
}
.textoPrincipalPage li {
    list-style: disc; 
    text-align: justify;
}
.textoPrincipalPage ol,
.textoPrincipalPage ul {
    padding-left: 20px;
}
.responsive-tabs.responsive-tabs--enabled {
    padding: 10px 15px !important;
}
.responsive-tabs-wrapper {
    background-color: var(--color-4) !important;
}
.tabcontent {
    background-color: var(--color-4) !important;
}
div#tablist1-panel2 ul li::before {
    list-style: none;
    content: '\2713';
    padding-right: 2px;
    color: #43a32d;
    font-size: 16px;
    font-weight: 900;
}
div#tablist1-panel2 li,
div#tablist1-panel3 li {
    list-style: none;
}
div#tablist1-panel3 ul li::before {
    list-style: none;
    content: 'X';
    padding-right: 2px;
    color: #d80808;
    font-size: 16px;
    font-weight: 900;
}
.responsive-tabs .responsive-tabs__panel {
    border: none !important;
    padding: 0 !important;
}
.responsive-tabs .responsive-tabs__list__item--active, .responsive-tabs .responsive-tabs__list__item--active:hover {
    background: var(--color-4) !important;
    border-color: var(--color-3) !important;
    color: var(--color-3) !important;
}
.responsive-tabs .responsive-tabs__list__item {
    border: none !important;
    border-bottom: 1px solid !important;
}
/* contact form 7*/
.contatcFormStyle h2 {
    text-align: center;
}
.contatcFormStyle {
    background: var(--color-4);
    margin: 25px 0;
    padding: 15px 25px;
}
input#textNombreForm, textarea#textareaForm, input#emailForm, input#textPersonasForm, input#dateForm, input#textTourForm, textarea#textMensajeForm {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid var(--color-1);
    border-radius: 10px;
    font-size: 14px;
}
p.textoContactForm {
    font-weight: 600;
    padding: 15px 0;
}
input#reservarForm {
    border: none;
    margin: 25px auto;
    width: 80%;
}
/* blogs */
.contenidoBlogs{
    width: 70%;
    margin: auto;
}
.datosBlogsHome p {
    padding: 10px 0;
    line-height: 30px;
}
.contenidoBlogs img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.contenidoBlogs h1 {
    padding: 25px 0 10px 0;
    color: var(--color-3);
    font-size: 30px;
}
.contenidoBlogs {
    padding: 80px 0;
}
/* categorias */
.navigation {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}
ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
}
.page-numbers a {
    padding: 10px;
    background: var(--color-1);
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-2);
}
.navigation span {
    background: var(--color-3);
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-1);
    cursor: pointer;
    transition-duration: 0.85s;
}
.navigation span:hover {
    color: var(--color-2);
}
.page-numbers a:hover {
    color: var(--color-3);
}
/* pagina contactanos */
.NuestraInformacion li {
    list-style: none;
}
/* mobile menu pluging */
.mob-menu-logo-holder > .headertext span, .mobmenu input.mob-menu-search-field {
    display: none;
}
.mob-icon-menu:before {
    content: '\e9d6';
    color: var(--color-3);
    background: var(--color-4);
    border-radius: 50%;
}
.mob-menu-header-holder{
    width: 54px !important;
    left: 0;
}
@media(max-width:768px){
    .InformacionHeader .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#gtranslate-2 img {
    margin: 0 0 0 10px;
    opacity: 1;
}

.InformacionHeader .content {
    justify-content: center;
    padding: 5px 0;
}
    .content {
        width: 100%;
    }
    .InformacionHeader li:first-child {
        display: none;
    }
    nav.menuNavegacion {
        display: none;
    }
    .itemsTourHome {
        width: 330px;
    }
    .datosTourHome {
        padding: 15px;
    }
    .textoNosotrosHome p {
        width: 80%;
    }
    .contentTextoCategorias {
        width: 100%;
    }
    .columnaCategoriaHome {
        width: 95%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .itemCategoriaHome {
        width: 49%;
        margin-right: 0;
    }
    .mySwiperCategoria {
        width: 95%;
    }
    .columnasFooter li,
    .columnasFooter li:first-child {
        width: 80%;
        margin: auto;
        text-align: center;
    }
    .contenidoItinerarioTour {
        width: 95%;
        MARGIN: AUTO;
    }
    .contenidoAdicionalTour {
        width: 60%;
        margin: auto;
    }
    .contenidoBlogs {
        width: 95%;
        margin: auto;
    }
    .swiperAliados {
        width: 96%;
        margin: auto;
    }
}
@media(max-width:480px){
    .mySwiperHome .textoslider h2 {
        font-size: 60px;
        line-height: 60px;
    }
    .mySwiperHome .swiper-slide img:last-child {
        width: 310px;
        height: 330px;
    }
    .itemsTourHome {
        width: 430px;
    }
    .textoNosotrosHome p {
        width: 95%;
    }
    .itemCategoriaHome {
        width: 100%;
        margin-right: 0;
    }
    .textosliderCategoria {
        width: 70%;
    }
    .textoPrincipalHome {
        width: 95%;
    }
    .itemsBlogsHome {
        width: 95%;
    }
    .contenidoAdicionalTour {
        width: 95%;
        margin: auto;
    }
    .contenidoBlogs img {
        height: 300px;
    }

}