/*
Theme Name: skynetCorp Theme
Description: Tema para WordPress.
Author: 
Author URI: 
version: 2.8.1
Tags: tema
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
:root {
    --color-1: #ffffff;
    --color-2: #EDF5F7;
    --color-3: #4A7D6D;
    --color-4: #000000;
    --color-5: #dedee1;
    --color-6: #FFF8F4;
    --color-7: #dedee1;
}
*{margin:0; padding:0;}

body{
    font-family: "Montserrat", sans-serif; 
    font-size: 16px; 
    margin: 0;
}
/* css generales   */
li{list-style: none;}
a{text-decoration: none;}
.content {
    width: 1200px;
    margin: auto;
    overflow: hidden;
}
.seccion{
    margin-top: 80px;
    margin-bottom: 80px;
}
.contenedorItemsThree {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.itemThree {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.textoTwoColumns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}
.contenedorItemsFour {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.itemFourTexto {
    width: 24%;
    padding: 25px;
    box-sizing: border-box;
}
.textoLeft {
    width: 50%;
}
.textoRight {
    width: 50%;
    text-align: right;
}
.buttonGreen a {
    background: var(--color-3);
    padding: 15px 35px;
    color: var(--color-1);
    text-transform: capitalize;
    font-weight: 500;
    transition-duration: 0.5s;
    border: 1px dashed var(--color-3);
    border-radius: 10px;
}
.buttonGreen a:hover {
    background: var(--color-1);
    color: var(--color-3);
}
.buttonWhite a {
    background: var(--color-1);
    color: var(--color-4);
    padding: 15px 35px;
    text-transform: capitalize;
    font-weight: 500;
    transition-duration: 0.5s;
    border-radius: 10px;
}
.buttonWhite a:hover {
    box-shadow: 0px 0px 10px 5px #ddd;
}
.titulosPage strong {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-3);
}
.titulosPage h2{
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 20px;
}
.titulosPage h1 {
    text-align: center;
    color: var(--color-3);
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 20px;
}
.textoCentro img {
    DISPLAY: BLOCK;
    width: 100px;
    height: 70px;
    object-fit: cover;
}
.textoCentro {
    margin: 40px auto;
}
.textoCentro p {
    text-align: center;
    margin-bottom: 15px;
}
.textoCentro h2 {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: capitalize;
}
.padding10{
    padding: 10px;
    box-sizing: border-box;
}
.marginBottom-80{
	margin-bottom: -80px !important;
}
.itemThreeGreen {
    position: relative;
    background: var(--color-3);
    margin: 15px auto;
    padding: 80px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    color: var(--color-1);
}
.itemThreeGreen strong {
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
}
.itemThreeGreen i {
    color: var(--color-1);
    font-size: 80px;
}
.itemThreeGreen::before {
    content: "";
    width: 20%;
    height: 20%;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 100;
    border-top: 1px solid var(--color-1);
    border-left: 1px solid var(--color-1);
    transition: 0.5s;
}
.itemThreeGreen::after {
    content: "";
    width: 20%;
    height: 20%;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    border-bottom: 1px solid var(--color-1);
    border-right: 1px solid var(--color-1);
    transition: 0.5s;
}
.itemThreeGreen:hover::before,
.itemThreeGreen:hover::after{
    width: 50%;
    height: 50%;
}
.mapaText {
    width: 100%;
    height: 600px;
    margin: 40px auto;
}
.mapaText iframe {
    width: 100%;
    height: 100%;
}
.mapaText p {
    width: 100%;
    height: 100%;
}

/* decoracion */
.decoracion1 {
    position: fixed;
    top: 30%;
    left: 0;
    z-index: -1;
}
.decoracion2 {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: -1;
}
/* header */ 
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 100;
}
section.logoHeader {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 10px 15px;
    box-sizing: border-box;
}
nav.menuNavegacion {
    width: 100%;
    height: 80px;
}
.logo img {
    width: auto;
    height: 120px !important;
    object-fit: cover;
    padding: 10px;
    box-sizing: border-box;
}
nav.menuNavegacion ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
nav.menuNavegacion li {
    height: 100%;
}
nav.menuNavegacion div {
    height: 100%;
}
nav.menuNavegacion a {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 35px;
    color: var(--color-1);
    font-weight: 500;
	font-size: 18px;
    text-transform: capitalize;
    position: relative;
    transition-duration: 0.5s;
}
nav.menuNavegacion a::before {
    content: "\26A1";
    font-size: 20px;
}
nav.menuNavegacion a::after {
    content: "";
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: 10px;
    background: var(--color-1);
}
nav.menuNavegacion a:hover::after {
    animation:  barraInferior 0.5s forwards;
}
@keyframes barraInferior {
    from{
        width: 0%;
    }
    to{
        width: 70%;
    }
}
/* slider home */
.contenedorSliderHome {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: -201px;
    z-index: 50;
}
.mySliderHome {
    height: 100%;
    width: 100%;
}

.mySliderHome .owl-stage-outer {
    width: 100%;
    height: 100% !important;
}

.mySliderHome .owl-stage {
    width: 100%;
    height: 100%;
}

.mySliderHome .owl-item {
    width: 100%;
    height: 100%;
}
.mySliderHome .items {
    height: 100%;
    position: relative;
}
.mySliderHome .items::before {
    content: "";
    background: #263a3457;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.mySliderHome .items img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.mySliderHome .textoSlider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 60%;
    justify-content: center;
    align-items: center;
    z-index: 10;
    text-align: center;
}
.textoSlider {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
	text-shadow: 0 1px 5px #000;
}
.textoSlider a {
    margin: 20px 0;
	text-shadow: none;
}
.textoSlider h1,
.textoSlider strong {
    color: var(--color-1);
    font-size: 45px;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    text-align: center;
	text-shadow: 0 1px 5px #000;
}
.mySliderHome .owl-dots{
    display: none;
}
/* items Home */
.contenidoPhotosHome .contentMainContentArticle h1 {
    font-size: 25px;
}
.contenidoPhotosHome .contenidoItemsHome {
    padding: 80px 40px;
    box-sizing: border-box;
}
.contenidoPhotosHome .contenidoItemsHome h2 {
    text-transform: uppercase;
}
.contenidoPhotosHome .itemThree  {
    width: 32%;
}
.contenidoPhotosHome .itemThree p {
    width: 100%;
}
.contenidoPhotosHome .itemThree img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.contenidoPhotosHome .contentMainContentArticle {
    width: 32%;
    margin: auto;
    z-index: 10;
    position: relative;
    text-align: center;
}
.contenidoPhotosHome .contentMainContentArticle img {
    filter: invert(1) brightness(0);
}
/* servicios home */
.tablaServiciosInicio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.itemServiciosHome {
    background-color: var(--color-2);
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 32%;
    margin: 15px auto;
}
.itemServiciosHome h2 a {
    font-weight: 500;
    color: var(--color-4);
    display: block;
    margin-bottom: 15px;
    transition: 0.5s;
    text-transform: capitalize;
}
.itemServiciosHome h2 a:hover {
    color: var(--color-3);
}
.itemServiciosHome img {
    height: 100%;
    min-height: 400px;
    width: 100%;
    object-fit: cover;
    transition-duration: 0.5s;
}
.textServiciosHome {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
    background-color: var(--color-1);
    transition-duration: 0.5s;
    padding: 45px 25px;
    box-sizing: border-box;
}
.itemServiciosHome:hover img{
    scale: 1.1;
}
/* About Us Home */
.contentTextAboutUsHome a {
    display: block;
    width: fit-content;
    margin-top: 15px;
}
.contentItemsAboutUsHome {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.contentImgAboutUsHome {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
    position: relative;
}
.contentTextAboutUsHome {
    width: 50%;
    padding: 120px 30px;
    box-sizing: border-box;
}
.contentTextAboutUsHome p {
    margin-bottom: 15px;
}
.contentImgAboutUsHome img {
    position: absolute;
}
.contentImgAboutUsHome li:nth-child(1) img {
    width: 55%;
    object-fit: cover;
    top: 10px;
    left: 10px;
}
.contentImgAboutUsHome li:nth-child(2) img {
    bottom: 10px;
    object-fit: cover;
    right: 10px;
    width: 55%;
}
/* estadisticas home */
.contenidoEstadisticasHome {
    padding: 50px 0;
}
.contenidoEstadisticasHome strong {
    color: var(--color-5);
    font-size: 54px;
    font-weight: 400;
}
.contenidoEstadisticasHome p {
    font-size: 14px;
    text-transform: uppercase;
}
/* service */
.itemThree img {
    width: 100%;
}
.textoService {
    width: 75%;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
}
.processWorkService {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.itemWorkService {
    width: 40%;
    margin: 15px auto;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #dddd;
    border-radius: 15px;
}
.itemWorkService img {
    width: 128px;
    height: 128px;
    object-fit: cover;
}
.itemWorkService i {
    display: block;
    margin-bottom: 25px;
    font-size: 60px;
    color: var(--color-3);
}
.galeriaService ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, 1fr);
    grid-gap: 10px; 
}
.galeriaService li{
    list-style: none !important;
}
.galeriaService3 ul li:nth-child(odd) {
    grid-row: span 2; 
}
.galeriaService3 ul li:nth-child(4) {
    grid-row: span 2; 
}
.galeriaService3 ul li:nth-child(10) {
    grid-row: span 2; 
}
.galeriaService2 ul li:nth-child(even) {
    grid-row: span 2; 
}
.galeriaService2 ul li:nth-child(5) {
    grid-row: span 2; 
}
.galeriaService2 ul li:nth-child(9) {
    grid-row: span 2; 
}
.galeriaService1 ul li:nth-child(odd) {
    grid-row: span 2; 
}
.galeriaService1 ul li:nth-child(4) {
    grid-row: span 2; 
}
.galeriaService1 ul li:nth-child(8) {
    grid-row: span 2; 
}
.galeriaService img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seccionDestacada {
    margin: 40px auto;
    background: var(--color-2);
    border-radius: 10px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}
.textSeccionDestacada h2 {
    font-weight: 500;
}
.textSeccionDestacada img {
    position: absolute;
    right: 0;
    bottom: -20px;
    height: 65%;
    width: auto;
    z-index: 1;
}
.textSeccionDestacada {
    text-align: left !important;
    width: 80%;
}
.containerBloque {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: stretch;
    width: 75%;
    position: relative;
    z-index: 5;
}
.itemBloque {
    width: 29%;
    margin: 10px;
    padding: 25px 20px;
    box-sizing: border-box;
    background: var(--color-1);
    border-radius: 15px;
    text-align: center !important;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.itemBloque img {
    width: 64px;
    height: 64px;
    object-fit: cover;
	margin: auto;
}
.itemBloque i {
    margin-bottom: 20px;
    font-size: 40px;
}
.itemBloque p {
    text-align: center !important;
    text-transform: capitalize;
}
/* FAQ */
.containerFAQ {
    width: 100%;
    margin: auto;
    min-width: 500px;
    position: relative;
}
.wrapper {
    padding: 10px 40px;
    border: 1px solid var(--color-5);
    border-bottom: none;
}
.wrapper:last-child {
    border-bottom: 1px solid var(--color-5);
}
.toggle,
.contentFAQ{
    font-family: "Poppins",sans-serif;
}
.toggle h3{
    margin: 0 !important;
    font-family: "Montserrat", sans-serif; 
}
.toggle h2,
.toggle h4,
.toggle a,
.toggle li,
.toggle h5{
    font-family: "Montserrat", sans-serif; 
}
.toggle {
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 0;
}
.contentFAQ {
    position: relative;
    font-size: 14px;
    text-align: justify;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    transition: all 1s;
}
.contentFAQ p {
    padding: 0;
    padding-bottom: 15px;
    font-family: "Montserrat", sans-serif; 
}
.wrapper i {
    padding-right: 5px;
    color: var(--color-3);
}
/*  text service */
.textoGeneral p {
    text-align: justify;
    margin-bottom: 10px;
    line-height: 2;
}
.textoGeneral li {
    line-height: 2;
    margin-bottom: 10px;
    text-align: justify;
    list-style: disc;
}
.textoGeneral ul,.textoGeneral ol {
    margin-bottom: 15px;
    margin-left: 15px;
}
.textoGeneral h2 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}
.textoGeneral h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}
.textoGeneral h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
.textoGeneral strong {
    font-weight: 600;
}
.textoGeneral img {
    border-radius: 10px;
    display: block;
    margin: 20px 0;
}
.textoGeneral a {
    color: var(--color-3);
}
/* footer */
.informacionContactoFooter {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding: 0 40px 40px;
}
.informacionContactoFooter a {
    color: var(--color-4);
    display: block;
    padding: 10px;
}
.informacionContactoFooter:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background: var(--color-2);
    border-radius: 10px;
    z-index: -1;
}
.informacionContactoFooter i {
    background: var(--color-3);
    color: var(--color-1);
    padding: 25px 30px;
    border-radius: 50%;
    font-size: 50px;
    margin-bottom: 20px;
}
.informacionContactoFooter  .textwidget {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.redesSocialFooter {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.redesSocialFooter i {
    background: var(--color-3);
    padding: 10px;
    border-radius: 50%;
    margin: 10px 5px;
    color: var(--color-1);
}
.redesSocialFooter img {
    filter: invert(1) brightness(0);
}
.redesSocialFooter .textwidget {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.copyright {
    border-top: 1px solid var(--color-3);
    padding: 25px 0;
    display: flex;
    justify-content: center;
}
.copyright a {
    color: var(--color-3);
}
.copyright p {
    text-align: center;
    max-width: 1000px;
    font-size: 14px;
}
/* pages */

/* gallery */
.contenedorGallery {
    width: 100%;
    margin: 20px 0 60px 0;
}
.mySliderGallery .owl-dots {
    display: none;
}
/* contact form */
.contenedorContactForm {
    width: 60%;
    margin: auto;
    background: var(--color-2);
    border-radius: 15px;
    padding: 35px 45px;
    box-sizing: border-box;
}
input#formEmail,
input#formSubject,
textarea#formMessage,
input#formName {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 5px;
    box-sizing: border-box;
}
input#formEnviar {
    display: block;
    margin: auto;
    padding: 20px 35px;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    background: var(--color-3);
    text-transform: uppercase;
    color: var(--color-1);
    cursor: pointer;
}
/* mobile CSS */
.mobmenu .mob-menu-logo-holder {
    display: none;
}
.mobmenu .mob-icon-menu.mob-menu-icon {
    background: var(--color-3); /* fondo boton menu */
    color: var(--color-1); /* color boton icono menu */
    border-radius: 50%;
    padding: 5px 0;
}
.mobmenu-panel .mob-menu-left-bg-holder {
    background: var(--color-2); /* fondo menu */
}
.mobmenu-panel .menu-menu-principal-container a {
    color: var(--color-3) !important; /* color de letras del menu */
}
.mobmenu-panel .menu-menu-principal-container a:hover {
    background: var(--color-1) !important;
}
/* boton whatsapp */
.whatsapp {position: fixed;bottom: 0px;z-index: 100;right: 0px;padding: 5px 5px 5px 10px;margin: 10px;background: #15c71a;border-radius: 15px;text-decoration: none;animation: whatsapp 2s ease-in-out infinite;}
@keyframes whatsapp {
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);  
    }
}
.whatsapp:hover {opacity: 0.7}
.whatsapp p {display: flex;justify-content: center;align-items: center;color: #fff;}
.whatsapp i {font-size: 49px;color: #fff;padding: 0 10px;}
@media(max-width:768px){
    .content {
        width: 100%;
    }
    nav.menuNavegacion {
        display: none;
    }
    .itemThree {
        width: 100%;
        margin: 40px auto;
    }
    .textoLeft {
        width: 100%;
        text-align: center;
        margin: 20px auto;
    }
    .textoRight {
        width: 100%;
        text-align: center;
        margin: 20px auto;
    }
    .tablaServiciosInicio {
        padding: 10px;
        box-sizing: border-box;
        grid-template-columns: repeat(2, 1fr);
    }
    .itemFourTexto {
        width: 75%;
        margin: auto;
    }
    .informacionContactoFooter {
        display: flex;
        flex-direction: column;
    }
    .informacionContactoFooter .textwidget {
        margin: 20px auto;
    }
    .informacionContactoFooter:before {
        height: 100%;
    }
    .contenedorContactForm {
        width: 80%;
    }
    .galeriaService ul {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 !important;
    }
    .textoGeneral {
        padding: 10px;
        box-sizing: border-box;
    }
    .datosAdicionalesService,
    .textoService {
        width: 100%;
        padding: 0;
    }
    .containerFAQ {
        min-width: 100%;
    }
    .decoracion1,
    .decoracion2{
        display: none;
    }
    .itemServiciosHome {
        width: 100%;
    }
    .contenidoNuestrosServicios {
        padding: 10px;
        box-sizing: border-box;
    }
    .itemWorkService {
        width: 100%;
    }
    .itemBloque {
        width: 43%;
    }
    .wrapper {
        padding: 10px;
    }
    .toggle h3 {
        text-align: left !important;
        font-size: 20px !important;
    }
    .contentItemsAboutUsHome {
        flex-direction: column-reverse;
    }
    .contentImgAboutUsHome {
        width: 100%;
        height: 750px;
    }
    .contentTextAboutUsHome {
        width: 100%;
        padding: 30px;
    }
    .contenidoPhotosHome .itemThree {
        width: 85%;
    }
    .contenidoPhotosHome .itemThree:nth-child(2) img {
        margin-top: 0;
    }
    .contenidoPhotosHome .contentMainContentArticle {
        width: 80%;
        margin-bottom: 0;
    }
    .contenidoPhotosHome .contenidoItemsHome {
        padding: 30px;
        box-sizing: border-box;
    }
}
@media(max-width:720px){
    .tablaServiciosInicio {
        grid-template-columns: repeat(1, 1fr);
    }
    .contenedorContactForm {
        width: 100%;
    }
    .containerBloque {

        width: 100%;
    }
    .seccionDestacada {
        padding: 20px;
        box-sizing: border-box;
    }
    .itemBloque {
        padding: 10px;
    }
    .textSeccionDestacada {
        width: 100%;
    }
    .contenidoPhotosHome .contenidoItemsHome {
        padding: 30px;
        box-sizing: border-box;
    }
}
@media(max-width:480px){
    .tablaServiciosInicio {
        grid-template-columns: repeat(1, 1fr);
    }
    .contenedorContactForm {
        width: 100%;
    }
    .containerBloque {

        width: 100%;
    }
    .seccionDestacada {
        padding: 20px;
        box-sizing: border-box;
    }
    .itemBloque {
        padding: 10px;
    }
    .textSeccionDestacada {
        width: 100%;
    }
    .contenidoPhotosHome .contenidoItemsHome {
        padding: 30px;
        box-sizing: border-box;
    }
}