/*
Theme Name: Demo
Description: Tema para WordPress.
Author: SkynetCorp
Author URI: 
version: 2.8.1
Tags: tema
*/
@import url('https://fonts.googleapis.com/css2?family=Chelsea+Market&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spinnaker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nova+Round&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
:root {
    --color-1: #acc638;
    --color-2: #ee752e;
    --color-3: #e83889;
    --color-4: #acc638;
    --color-5: #ffffff;
    --color-6: #f1f1f1;
    --color-7: #727475;
    --color-8: #e83889;
    --color-9: #84539d;
}
*{margin:0; padding:0;}

body{font-family: "Montserrat", sans-serif; font-size: 1rem; margin: 0;color: var(--color-7);}
.content {
    width: 1200px;
    margin: auto;
}
h1,h2,h3,h4{
    font-family: "Chelsea Market";
}
.seccion {
    padding: 60px 0;
}
li {
    list-style: none;
}
a {
    color: var(--color-7);
    text-decoration: none;
    transition: 0.5s;
}
a:hover {
    color: var(--color-8);
}
p {
    line-height: 30px;
}
/* header */
header {
    position: relative;
    z-index: 10;
}
header .content {
    margin-top: 30px;
    background: var(--color-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}
.logo {
    width: 20%;
}
.logo figure {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
}
.logo figure img {
    height: 80px;
    width: auto;
}
nav.menuNavegacionHeader {
    width: 80%;
}
nav.menuNavegacionHeader ul {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 90px;
    position: relative;
}
nav.menuNavegacionHeader ul a {
    padding: 0 25px;
    display: flex;
    height: 90px;
    text-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}
nav.menuNavegacionHeader ul a:hover {
    background-color: var(--color-5);
}
nav.menuNavegacionHeader ul li:last-child a {
    background-color: var(--color-4);
    color: var(--color-5);
}
nav.menuNavegacionHeader ul li:last-child a:hover {
    color: var(--color-8);
}
nav.menuNavegacionHeader ul li:hover .sub-menu {
    display: flex !important;
}
ul.sub-menu {
    display: none !important;
}
ul.sub-menu {
    display: none !important;
    position: absolute !important;
    top: 90px;
    background: #f00;
    left: -50%;
    transform: translateX(50%);
    flex-direction: column;
    height: auto !important;
    width: auto;
}
ul.sub-menu li{
    max-width: 100% !important;
}
ul.sub-menu a {
    min-height: 40px !important;
    height: auto !important;
}

/* slider */
section.contenedorSliderHome {
    width: 100%;
    height: 1000px;
    margin-top: -120px;
}
.mySwiperHome {
    width: 100%;
    height: 100%;
}
.mySwiperHome .owl-dots{
    display: none;
}
.mySwiperHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.imagenSlider {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 180% !important;
}
.active .imagenSlider {
    animation: moverFondo 30s ease-in-out;
}
@keyframes moverFondo {
    0%{
        background-position: left center;
    }
    100%{
        background-position: right center;
    }
}
.imagenSlider::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000061;
}
.item,
.owl-item,
.owl-stage,
.owl-stage-outer {
    height: 100%;
}
.mySwiperHome.item {
    position: relative;
}
.textoslider {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-10%, -50%);
    width: 40%;
    color: var(--color-5);
}
.textoslider h2 {
    color: var(--color-5);
    font-size: 4rem;
    transform: translateY(80px);
    opacity: 0;
    transition: 1s;
}
.textoslider p {
    transform: translateY(80px);
    opacity: 0;
    transition: 1.5s;
}
.active .textoslider p,
.active .textoslider h2{
    transform: translateY(0);
    opacity: 1;
}
/* informacion adicional */
.itemsInformacionAdicionalHome {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.itemInformacionAdicional {
    width: 30%;
    margin: 15px;
    padding: 80px 20px;
    box-sizing: border-box;
    color: var(--color-5);
    text-align: center;
}
.itemInformacionAdicional:nth-child(1){background: var(--color-1);}
.itemInformacionAdicional:nth-child(2){background: var(--color-2);;}
.itemInformacionAdicional:nth-child(3){background: var(--color-3);;}
section.informacionAdicionalHome {
    margin-top: -180px;
    position: relative;
    z-index: 20;
}
.itemInformacionAdicional a {
    color: var(--color-5);
    display: block;
    padding: 15px;
}
.itemInformacionAdicional a:hover {
    color: var(--color-8);
}
.itemInformacionAdicional i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

/*porqueReservarNosotrosHome */
section.porqueReservarNosotrosHome .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section.porqueReservarNosotrosHome .textoFortalezas {
    width: 50%;
    padding: 25px;
    box-sizing: border-box;
}
.itemsPorqueReservarNosotrosHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.itemsPorqueReservarNosotrosHome {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
    position: relative;
}
.itemsPorqueReservarNosotrosHome p:nth-child(1) {
    width: 70%;
    height: 450px;
    margin-top: 100px;
}
.itemsPorqueReservarNosotrosHome p:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    border: 10px solid var(--color-5);
}
/* Video Home */
section.videoSobreNosotrosHome {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(https://skynetcorp.pe/clientes/kevinplantillas/plantilla19/wp-content/uploads/2023/08/ayuda.webp) 50% 50% no-repeat fixed;
    background-size: 120%;
    padding: 60px 0;
    position: relative;
    animation: moverFondo 15s ease-in-out infinite;
}
@keyframes moverFondo {
    0%,100%{
        background-position: left center;
    }
    50%{
        background-position: right center;
    }
}
section.videoSobreNosotrosHome::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000099;
    z-index: 1;
    top: 0;
    left: 0;
}
.textoVideoSobreNosotrosHome {
    width: 40%;
    padding: 25px 15px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 5;
}
.textoVideoSobreNosotrosHome h2 {
    color: var(--color-5);
    font-size: 5rem;
}
.itemVideoSobreNosotrosHome {
    width: 60%;
    padding: 25px 15px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}
.itemVideoSobreNosotrosHome iframe {
    width: 100%;
    height: 500px;
}
/* texto general Home */
.textoGeneralHome {
    width: 80%;
    margin: 50px auto;
    text-align: center;
}
.textoGeneralHome h2{
    color: var(--color-5);
    font-size: 3rem;
    margin: 1rem 0;
}
.textoGeneralHome h3{
    color: var(--color-8);
    font-size: 3rem;
    margin: 1rem 0;
}
.textoGeneralHome strong {
    position: relative;
    color: var(--color-4);
}
.textoGeneralHome strong::before {
    content: "\2764";
    padding-right: 5px;
    color: var(--color-4);
}
.textoGeneralHome2 strong {
    color: var(--color-1);
}
.textoGeneralHome2 strong::before {
    color: var(--color-1);
}
/* tours Home */
.ToursHome {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
}
.itemsTourHome {
    width: 380px;
    margin: 15px auto;
    overflow: hidden;
}
.itemsTourHome .botonImagen {
    width: 100%;
    height: 250px;
    display: block;
    overflow: hidden;
}
.itemsTourHome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.informacionGeneralTour {
    padding: 15px 10px;
    box-sizing: border-box;
}
.datos1TourHome {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    position: relative;
}
.datos1TourHome h3{
    color: var(--color-8);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 1rem 0;
}
.datos1TourHome h3 a{
    color: var(--color-8);
}
.datos1TourHome h3 a:hover{
    color: var(--color-7);
}
.datos1TourHome::before {
    content: "";
    width: 80%;
    height: 3px;
    background: var(--color-4);
    position: absolute;
    bottom: 0;
    left: 0;
}
a.botom {
    background: var(--color-6);
    display: block;
    padding: 15px 25px;
    width: 150px;
    text-align: center;
    margin: 0.5rem 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}
a.botom:hover{
    background-color: var(--color-4);
    color: var(--color-5);
}
/* Contactanos Home */
section.contactanosHome {
    background: url(https://skynetcorp.pe/clientes/kevinplantillas/plantilla19/wp-content/uploads/2023/08/ayuda-social-cusco-1.webp) 50% 50% no-repeat;
    background-size: 100%;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
}
section.contactanosHome::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000000cc;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
}
section.contactanosHome .content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.textoContactanosHome h2 {
    font-size: 3rem;
    margin: 1rem;
}
.textoContactanosHome {
    text-align: center;
    width: 60%;
    padding: 25px 15px;
    color: var(--color-5);
    box-sizing: border-box;
}
.enlacesContactanosHome {
    width: 40%;
    padding: 25px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.itemEnlanceHome {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}
.itemEnlanceHome a {
    color: var(--color-5);
    font-weight: 700;
    text-transform: uppercase;
}
.itemEnlanceHome a:hover{
    color: var(--color-7);
}
.itemEnlanceHome i {
    font-size: 2rem;
    animation: playVideo infinite 3.5s;
    border-radius: 50%;
    color: var(--color-5);
    padding: 25px;
    text-align: center;
    margin-right: 5px;
}
.itemEnlanceHome:nth-child(1) i{background-color: var(--color-3);}
.itemEnlanceHome:nth-child(2) i{background-color: var(--color-1);}
@keyframes playVideo {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    40% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    80% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
/* Nuestro aliados Home */
section.contenedorAliados {
    background: var(--color-2);
    padding-bottom: 110px;
    margin-bottom: 80px;
}
.swiperAliados .item img {
    width: auto;
    height: 100%;
    object-fit: contain;
}
.swiperAliados .item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.swiperAliados .owl-dots{
    display: none;
}
/* FAQ Home*/
.itemsPreguntasPrecuentesHome {
    display: flex;
    justify-content: space-between;
    align-items: initial;
}
.containerFAQ,
.itemImagenFAQ {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}
.itemImagenFAQ p {
    width: 100%;
    height: 500px;
}
.itemImagenFAQ img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.containerFAQ {
    min-width: 500px;
    position: relative;
}
.wrapper{
    background-color: var(--color-6);
    margin-bottom: 20px;
    padding: 15px 40px;
    border-radius: 5px;
}
.toggle br {
    display: none;
}
.toggle {
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 1.1rem;
    font-family: "Chelsea Market";
    color: var(--color-1);
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 0;
}
.contentFAQ{
    position: relative;
    text-align: justify;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    transition: all 1s;
}
.wrapper i {
    padding-right: 5px;
    color: var(--color-1);
}
/* footer */
footer {
    background-color: var(--color-6);
}
footer h3{
    color: var(--color-8);
    margin-bottom: 0.5rem;
}
section.columnasFooter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section.columnasFooter li:nth-child(1) {
    width: 30%;
    padding: 80px 15px;
    box-sizing: border-box;
    background-color: var(--color-8);
}
section.columnasFooter li {
    width: 22%;
    padding: 80px 15px;
    box-sizing: border-box;
}
section.columnasFooter li br {
    display: none;
}
section.columnasFooter li li:nth-child(1) {
    width: 100%;
    padding: 0;
    background-color: var(--color-6);
}
section.columnasFooter li:nth-child(1) li:nth-child(1) {
    width: 100%;
    background-color: var(--color-8);
}
section.columnasFooter li li {
    width: 100%;
    padding: 0;
}
section.columnasFooter li li a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
}
section.columnasFooter li li a:hover {
    color: var(--color-1);
    padding-left: 5px;
}
.columnasFooter li:first-of-type h3{
    color: var(--color-5);
}
.columnasFooter li:first-of-type ul li i {
    padding: 15px;
    margin: 10px 0;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    color: var(--color-5);
}
.columnasFooter li:first-of-type ul li{
    display: flex;
    align-items: center;
    color: var(--color-5);
}
.columnasFooter li:first-of-type ul li a{
    color: var(--color-5);
}
.columnasFooter li:first-of-type ul li:nth-child(1) i{background-color: var(--color-1);}
.columnasFooter li:first-of-type ul li:nth-child(2) i{background-color: var(--color-2);}
.columnasFooter li:first-of-type ul li:nth-child(3) i{background-color: var(--color-7);}
.copyright {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
	font-size: 0.8rem;
}
/* texto general */
.textoGeneralPage h2 {
    color: var(--color-8);
    margin-bottom: 1rem;
    font-size: 2rem;
}
.textoGeneralPage h3 {
    color: var(--color-8);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.textoGeneralPage p {
    text-align: justify;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.textoGeneralPage ol,
.textoGeneralPage ul {
    margin: 0.5rem 0;
    margin-left: 25px;
}
.textoGeneralPage li {
    list-style: disc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-align: justify;
}
.textoGeneralPage img, .textoGeneralPage figure {
    width: 100%;
    height: auto;
    margin: 0.5rem auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}
/* Proyecto Page */
.contenidoProyectoSocialPage {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
}
.contenidoPrincipalProyectoPage {
    width: 65%;
    padding: 15px;
    box-sizing: border-box;
}
.contenidoAdicionalProyectoPage {
    width: 35%;
    padding: 15px;
    box-sizing: border-box;
}
.gallery ul {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.gallery ul li {
    list-style: none;
    width: 50%;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
    line-height: 0;
}
.gallery ul li img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
    transition: 0.5s;
}
.gallery ul li img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 5px;
    transition: 0.5s;
}
.gallery ul li img:hover {
    filter: saturate(1.5);
}
.contenidoPrincipalProyectoPage figure{
    border-radius: 0px;
}
.contenidoPrincipalProyectoPage table tr:first-child {
    background: var(--color-4);
    color: var(--color-5);
}
.contenidoPrincipalProyectoPage table tr {
    background: var(--color-6);
}
.contenidoAdicionalProyectoPage h2 {
    margin: 1rem 0;
    color: var(--color-8);
    text-align: center;
}
.proyectosHome {
    padding: 0 15px;
    box-sizing: border-box;
}
.itemsProyectosHome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 1rem 0;
    border-bottom: 1px solid var(--color-6);
}
a.botonImagenProyectos {
    width: 40%;
    overflow: hidden;
}
.informacionGeneralProyectos {
    width: 60%;
    padding: 15px;
    box-sizing: border-box;
}
a.botonImagenProyectos img {
    width: 100%;
    height: auto;
}
.informacionGeneralProyectos h3 a {
    font-weight: 400;
    font-size: 1rem;
}
/* contact form 7*/
.formContacto {
    padding: 35px 25px;
}
.formContacto textarea, .formContacto input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
    margin: 0.5rem 0;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--color-8);
    background-color: var(--color-6);
}
.enviarForm input {
    display: block;
    width: auto;
    margin: 2rem auto;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    color: var(--color-8);
    text-transform: uppercase;
    background: var(--color-3);
    transition: 0.5s;
}
.enviarForm input:hover {
    color: var(--color-5);
    background: var(--color-4);
}
/* banner Paginas */
.bannerPrincipalPage {
    width: 100%;
    height: 450px;
    margin-top: -120px;
    position: relative;
    z-index: 1;
}
.bannerPrincipalPage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}
.tituloBannerPage h1,
.tituloBannerPage p {
    font-size: 4rem;
    color: var(--color-5);
    font-family: "Chelsea Market";
    font-weight: 500;
    line-height: 1.2;
}
.tituloBannerPage {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 1200px;
}
/* paginas Generale */
.contenidoGeneralPaginas em{
    color: var(--color-4);
    position: relative;
    font-weight: 600;
    font-style: normal;
}
.contenidoGeneralPaginas em::before {
    content: "\2764";
    padding-right: 5px;
    color: var(--color-4);
}
.contenidoColumnasPage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
.columnaPage {
    width: 50%;
    padding: 25px 15px;
    box-sizing: border-box;
}
.columnaPage figure {
    width: 100%;
    height: 450px;
}
.columnaPage img {
    width: 100%;
    height: 450px !important;
    object-fit: cover;
    filter: saturate(1.5);
}
.contenidoCortoColumnasPage {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}
.contenidoCortoColumnasPage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--color-6);
    transform: translateX(-50%);
}
.columnaCortaPage {
    width: 50%;
    padding: 60px 15px;
    box-sizing: border-box;
    border-top: 1px solid var(--color-6);
}
.columnaCortaPage figure, .columnaCortaPage img {
    width: 250px !important;
    height: 250px !important;
    margin: auto;
    margin-bottom: 2rem;
    object-fit: cover;
    border-radius: 50%;
}
.columnaCortaPage h3,
.columnaCortaPage h2 {
    color: var(--color-8);
    text-align: center;
    margin-bottom: 1rem;
}
.columnaCortaPage p {
    text-align: center;
}
.contenidoPaginaNosotrosPage {
    text-align: center;
    padding: 30px 15px;
}
.itemsCalendarioActividades {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.itemActividades {
    width: 45%;
    background: var(--color-6);
    margin: 15px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
}
.itemActividades .containerFAQ {
    width: 100%;
    margin: auto;
}
.itemActividades .wrapper{
    padding: 0;
}
.contenidoItemsContactos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
.itemContactoPage {
    width: 30%;
    margin: 15px;
    padding: 25px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-6);
}
.itemContactoPage i {
    background: var(--color-5);
    color: var(--color-4);
    padding: 25px;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.itemContactoPage p {
    color: var(--color-8);
}
.gmpMapDetailsContainer {
    height: 300px !important;
}
.gmp_MapPreview {
    height: 100% !important;
}
/* categorias */
.contentCategoria{
    margin: 40px auto;
}
.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-4);
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-6);
}
.navigation span {
    background: var(--color-2);
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-5);
    cursor: pointer;
    transition-duration: 0.85s;
}
.navigation span:hover {
    color: var(--color-6);
}
.page-numbers a:hover {
    color: var(--color-2);
}
/* 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-5);
    background: var(--color-8);
    border-radius: 50%;
}
.mob-menu-left-bg-holder, .mob-menu-right-bg-holder, .mob-menu-cart-bg-holder {
    background-color: var(--color-1);
}
.mobmenu-content i ,
.mobmenu-content a {
    color: var(--color-5) !important;
}
@media(max-width:768px){
	nav.menuNavegacionHeader {
		display: none;align-content
	}
	.content {
		width: 100%;
	}
	header .content {
		justify-content: center
	}
	.itemInformacionAdicional {
		width: 45%;
		padding: 20px;
	}
	.textoslider {
		width: 80%;
	}
	section.contenedorSliderHome {
		width: 100%;
		height: 800px;
	}	
	.imagenSlider {
		background-size: 240% !important;
	}
	section.videoSobreNosotrosHome {
		background: url(https://skynetcorp.pe/clientes/kevinplantillas/plantilla19/wp-content/uploads/2023/08/ayuda.webp) 50% 50% no-repeat;
		animation: none;
		background-size: 300%;
		flex-wrap: wrap;	
	}
	.textoVideoSobreNosotrosHome {
		width: 95%;
	}
	.itemVideoSobreNosotrosHome {
  	  	width: 95%;
	}
	.itemsTourHome {
		width: 48%;
	}
	section.contactanosHome .content {
    	flex-wrap: wrap;
	}
	.textoContactanosHome {
		width: 95%;
	}
	.enlacesContactanosHome {
    	width: 90%;
		flex-direction: row;
	}
	section.contactanosHome {
		background-size: 190%;
	}
	.itemsPreguntasPrecuentesHome {
		flex-wrap: wrap;
	}
	.containerFAQ, .itemImagenFAQ {
    	width: 100%;
	}
	section.columnasFooter li:nth-child(1) {
    width: 85%;
    text-align: center;
	}
	section.columnasFooter li:nth-child(1) ul {
		margin: 0px 20%;
	}
	.tituloBannerPage {
		width: 90%;
	}
	.itemContactoPage {
		width: 40%;
	}
	.columnaPage {
		width: 100%;
	}
	.contenidoColumnasPage {
		flex-direction: column-reverse;
	}
    section.columnasFooter li {
        width: 85%;
        margin: auto;
        text-align: center;
    }
	section.columnasFooter li {
		padding: 20px 15px;
	}
	.columnaCortaPage {
		width: 99%;
	}
	.contenidoCortoColumnasPage::before {
    	content: none;
	}
	.itemActividades {
    	width: 100%;
	}
	.contenidoPrincipalProyectoPage {
    	width: 100%;
	}
	.contenidoAdicionalProyectoPage {
		width: 85%;
		margin: auto;
	}				
}
@media(max-width:480px){
	.textoslider {
		width: 80%;
	}
	.textoslider p {
		display: none;
	}
	header .content {
    	margin-top: 0;
	}
	section.contenedorSliderHome {
		width: 100%;
		height: 500px;
		margin: 0;
	}
	.itemInformacionAdicional {
		width: 85%;
		padding: 20px;
	}
	section.informacionAdicionalHome {
    	margin-top: 0;
	}
	.itemsPorqueReservarNosotrosHome {
   	 	width: 100%;
	}
	section.porqueReservarNosotrosHome .textoFortalezas {
    	width: 100%;align-content
	}	
	.textoVideoSobreNosotrosHome h2 {
		font-size: 3rem;
	}	
	.itemVideoSobreNosotrosHome iframe {
		width: 100%;
		height: 250px;
	}
	.itemsTourHome {
		width: 95%;
	}
	.textoContactanosHome p {
		display: none;
	}
	.enlacesContactanosHome {
		flex-direction: column;
	}
	section.contactanosHome {
		background-size: 300%;
		padding: 40px 0;
	}
	.itemImagenFAQ p {
		width: 100%;
		height: 350px;
	}
	.textoGeneralHome {
    	width: 95%;
	}
	.textoGeneralHome {
    	width: 95%;
	}
	.textoGeneralHome h2 {
		font-size: 2rem;
	}
	.containerFAQ {
		min-width: 100%;
		width: 100%;
	}
	.itemContactoPage {
		width: 80%;
	}
	.columnaPage img {
		height: 350px !important;
	}
	.columnaPage figure {
		height: 350px;
	}
	.tituloBannerPage h1, .tituloBannerPage p {
    	font-size: 2.5rem;
	}
	.gallery ul li {
		list-style: none;
		width: 100%;
	}
	.contenidoAdicionalProyectoPage {
		width: 95%;
		margin: auto;
	}
	
	
}