﻿* {
    box-sizing: border-box;
}


html, body {
    font-family: Roboto,sans-serif;
    font-weight: normal;
    font-size: 16px;
    height: 100%;
    padding: 0;
    margin: 0;
    color: #070606;
    scroll-behavior: smooth;
}


nav {
    background-color:white;
    display: flex;
    padding: 0 40px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 2px 6px 2px rgb(60 64 67 / 15%);
    height: 100px;
    position:fixed;
    top:0;
    width:100%;
    z-index:100;
}

nav div.links a{
    padding:20px;
    font-size:1.4em;
    text-decoration: none;
    color: initial;
}

nav div.links a:hover{
    color: dodgerblue;
}


body.index section.intro {
    background-image: url(images/fondo1b.png);
    background-size: cover;
    height: calc(100vh - 100px);
    margin-top:100px;
    padding:150px;
}

body.index section.intro>div:first-child {
    position:relative;
}

body.index section.intro>div:first-child div:first-child {
    font-size: 7em;
    max-width: 635px;
    font-weight: 700;
    color: #03043d;
}

body.index section.intro>div:first-child>div:nth-child(2) {
    font-size: 2.5em;
    max-width: 493px;
    font-weight: 400;
    color: #03043d;
    padding-top: 49px;
}

body.index section.intro>div:first-child div:nth-child(3) {
    padding-top: 80px;
}

a.linkbutton {
    background-color: dodgerblue;
    color: whitesmoke;
    padding: 20px 30px;
    text-decoration: none;
    font-size: 1.4em;
    border-radius: 32px;
}

div.sectiontitle {
    text-align: center;
    color: dodgerblue;
    font-size: 3em;
    padding-top: 50px;
}

div.sectionpunch {
    text-align: center;
    color: #03043d;
    font-size: 5em;
    padding-top: 30px;
}

div.kitad {
    position: absolute;
    right: 100px;
    top: 20px;
    background-color: #ffc514;
    border-radius: 300px;
    width: 300px;
    height: 300px;
    text-align: center;
    padding: 40px;
}

div.kitad div {
    font-size: 1.4em;
    padding-top: 10px;
    max-width: 150px;
    margin: 0 auto;
}

div.kitad img{
    width:100px;
}

div.kitad a{
    color:#1861a7;
    text-decoration:none;
}


div.servicios {
    display: flex;
    padding: 100px;
    justify-content: center;
}

    div.servicios > div {
        width: 20vw;
        text-align: center;
        margin: 20px;
    }

    div.servicios > div div:nth-child(2) {
        font-size: 2em;
        color: #03043d;
        padding-top: 30px;
    }

    div.servicios > div div:nth-child(3) {
        font-size: 1.2em;
        color: #5F6368;
        padding-top: 30px;
    }

    section.casos{
        background-color:dodgerblue;
        color:whitesmoke;
        padding:100px;
        text-align:center;
    }

    section.casos>div:first-child{
        font-size:3em;
    }

        section.casos > div:nth-child(2) {
            color: #03043d;
            font-size: 5em;
            padding-top: 30px;
            padding-bottom: 50px
        }

        div.casos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center
        }

img.modalImg {
    max-width: 500px;
    border-radius: 10px;
    transition: transform .2s;
    cursor:pointer;
}

    img.modalImg:hover {
        transform: scale(1.2);
    }


div.casos>div {
    padding:20px;
}

div.casos>div div:nth-child(2) {
    padding-top:20px;
    padding-bottom:40px;
    font-size:1.2em
}

section.acercade{
    display:flex;
}

section.acercade > div{
    width:50vw;
}

section.acercade img {
    width: 100%;
    height: 100%;
}

section.acercade > div:first-child{
    padding:100px;
}

section.acercade > div:first-child > div:first-child{
    color: dodgerblue;
    font-size: 3em;
    padding-top: 50px;
}

section.acercade > div:first-child > div:nth-child(2){
    color: #03043d;
    font-size: 5em;
    padding-top: 30px;
    padding-bottom: 50px;
}

section.acercade > div:first-child > div:nth-child(3){
    font-size: 1.2em;
    color: #5F6368;
    padding-top: 30px;
}

section.contacto {
    display: flex;
    background-color: dodgerblue;
    color: whitesmoke;
}

section.contacto > div{
    width:50vw;
}

section.contacto img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

section.contacto a {
    text-decoration:none;
    color:whitesmoke;
}


section.contacto > div:first-child{
    padding:100px;
}

section.contacto > div:first-child > div:first-child{
    font-size: 3em;
    padding-top: 50px;
}

section.contacto > div:first-child > div:nth-child(2){
    font-size: 5em;
    padding-top: 30px;
    padding-bottom: 50px;
    color: #03043d;
}

section.contacto > div:first-child > div:nth-child(3){
    font-size: 1.2em;
    padding-top: 30px;
}

section.contacto > div:first-child > div:nth-child(3) p:last-of-type{
    font-size: 1.6em;
    padding-top: 40px;
}


section.contacto i{
    padding-right:20px;
}


/*MODAL*/
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 101; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: white;
    padding: 10px 0;
    height: 150px;
    font-size:1.5em;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* KIT DIGITAL */

#kitintro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px;
    height: 100vh;
}

    #kitintro div.introtop  {
        display:flex;
    }

    #kitintro div.introtop > div {
        width: 50vw;
        font-size: 1.2em;
        color: #5F6368;
        padding:100px;
    }

#kitintro div.introtop > div:first-child > div:first-child {
    font-size: 3em;
    font-weight: 700;
    color: #03043d;
    padding-bottom: 50px;
}

#kitintro  div.introtop > div:first-child > div:nth-child(2) {
    font-size: 2em;
    padding-bottom: 30px;
}


#kitintro  div.introtop> div:nth-child(2) {
    background-image: url(images/kitdigitalfondob.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

#kitintro  > div:nth-child(2) {
    text-align:center;
}


#kitquien{
    background-color:dodgerblue;
    color:whitesmoke;
    text-align:center;
    padding:100px;
}

#kitquien a{
    font-size:1.2em;
    color:whitesmoke;

}


#kitquien>div{
    font-size:1.2em;
    padding-bottom:50px;

}

#kitquien >div:nth-child(1) {
    font-size:3em;
}

    #kitquien > div:nth-child(2) {
        font-size: 4em;
        color: #03043d;
    }


    #kitquien table {
        margin:50px auto;
        border-spacing:0;
        border-collapse:collapse;
    }


#kitquien table td{
    border:1px solid whitesmoke;
    padding:30px;
}

#kitquien table td:first-child{
    background-color:whitesmoke;
    color:#03043d;
    border-bottom: 1px solid darkgrey;
}

#kitcomo{
    text-align:center;
    padding:100px;
}

#kitcomo>div:last-child{
    text-align:center;
    padding-top:10px;
}


#pasos{
    display:flex;
    margin: 60px 0;
}

div.paso{
    padding:50px;
    font-size:1.2em;
}
div.paso>div:nth-child(1){
    color: whitesmoke;
    background-color: #03043d;
    border-radius: 300px;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    padding-top: 30px;
    font-size: 4em;
}

div.paso>div:nth-child(2){
    color: #03043d;
    padding-top: 50px;
    font-size: 1.5em;
}

div.paso>div:nth-child(3){
    padding-top: 30px;
    color: #5F6368;
}


#kitrequisitos{
    background-color:dodgerblue;
    color:whitesmoke;
    text-align:center;
    padding:100px;
}

#kitrequisitos >div:nth-child(1) {
    font-size: 3em;
    padding-bottom:50px;
    color: #03043d;
}

#kitrequisitos >div:nth-child(2) {
    display:inline-block;
    margin:0 auto;
    text-align:left;
}


#kitrequisitos p{
    font-size: 1.2em;
}


#kitrequisitos p:before{
    font-family: 'FontAwesome' !important;
    content: '\f061';
    padding-right:10px;
}


#ofertas{
    padding:100px 400px;
    text-align:center;
}

div.ofertaIcon{
    background-color: white;
    margin: 0 50px;
    display: flex;
    align-items: center;
}

div.oferta{
    display:flex;
    justify-content:center;
    padding: 50px;
}

div.oferta:nth-child(even){
    background-color:dodgerblue;
    color:whitesmoke;
}

div.ofertaDetalle>div:nth-child(1) {
    font-size:3em;
    padding:20px;
    background-color: white;
    color: #03043d;
}

div.ofertaDetalle>div:nth-child(2) {
    font-size:2em;
    padding:20px;
}
div.ofertaDetalle>div:nth-child(3) {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}
div.ofertaDetalle>div:nth-child(4) {
    font-size:1.6em;
    padding:20px;
    font-style: italic;
}

div.ofertaDetalle p {
}

div.ofertaDetalle p:before {
    font-family: 'FontAwesome' !important;
    content: '\f111';
    padding-right:10px;

}

#kitfin div{
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 100px;
    color: gray;
}


#kitfin a{
    color: #03043d;
    text-decoration:none;
    font-size:1.2em;
    
}

.linkactive{
    color:dodgerblue!important;
}

footer div{
    text-align:center;
    padding:50px;
    color:gray;
}