@charset "utf-8";
/* CSS Document */
*{
    padding: 0;
    margin: 0;
}
body{
    background-color: #ffffff;
    columns: #000000;
    font-family: 'Open Sans', sans-serif;
    font-family: 'Montserrat', sans-serif;
    font-family: 'Roboto', sans-serif;
    }
    .header{
        background-color: #AA1A18;
        color: #ffffff;
        display: grid;
        grid-template-columns: auto 100px 300px;
        grid-template-rows: repeat(1, auto);
        grid-template-areas: "btn-menu btn-idioma redes"
    }
.header .redes{
    grid-area: redes;
    display: flex;
    justify-content: flex-end;
      }
.header .redes li{
     margin-top: 6px;
     margin-right: 10px;
     padding-top: 3px;
     list-style: none;
     }
.header .redes li img{
    width: 35px;
    height: 35px;
    }
.header #btn-menu{
    grid-area: btn-menu;
    display: none;
      }
      .header .btn-idioma{
        grid-area: btn-idioma;
        margin-top: auto;
        margin-bottom: auto;
    }
.header label{
    display: block;
    width: 30px;
    height: 30px;
    padding: 10px;
    border-right: 1px solid #ffffff;
}
.header label:hover, .header label:focus{
   cursor: pointer;
   background: rgba(0,0,0,0.3);
}
.header .side-menu{
    margin-left: -300%;
    transform: translateX(0%);
    transition: all 0.3s;
}
.header .side-menu ul{
    margin: 0;
    list-style: none;
    position: absolute;
    background: #AA1A18;
    width: 50%;
    transform: translateX(0%);
    transition: all 0.3s;
}
.header .side-menu li{
    border-top: 1px solid rgba(255, 255, 255, 0.425);
}
.header .side-menu li a{
    display: block;
    padding: 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sulphur Point', sans-serif;
}
.header .side-menu li:hover, .header .side-menu li:focus{
    background: rgba(0,0,0,0.3);
}
@media(min-width:0px){
    .header #btn-menu:checked ~ .side-menu{
        margin: 0;
    }
.background{
    background-image: url(../img/bg2.jpg);
    height: 600px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contenedor{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "logo menu menu"
                        "bg bg bg"
    }
.contenedor .logo{
    grid-area: logo;
}
.contenedor .menu{
    grid-area: menu;
}
.contenedor .menu ul{
    margin: 0;
    list-style: none;
    display: flex;
    border-top: 1px #ffffff;
    justify-content: flex-end;
}
.contenedor .menu li{
    border-top: 1px solid #ffffff;  
}
.contenedor .menu li:hover, .contenedor .menu li:active, .contenedor .menu li:focus{
    border-top: 3px solid #ffffff;
}
.contenedor .menu > li{
    float: left;
}
.contenedor .menu li a{
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
}
.contenedor .menu li a:hover, .contenedor .menu li a:focus{
    color:#ffffff;
    font-weight: bold;
}
.contenedor .menu li ul{
    display:none;
	position:absolute;
    min-width:140px;
    background-color: rgba(0, 0, 0, 0.6);
}
.contenedor .menu li:hover > ul, .contenedor .menu li:focus > ul{
    display:block;
}
.contenedor .menu li ul li{
    position: relative;
}
.contenedor .menu li ul li #svc1{
    right:-318px;
	top:-1px;
}
.contenedor .menu li ul li #svc2{
    right:-284px;
	top:-1px;
}
.contenedor .menu li ul li #svc3{
    right:-223px;
    top:-1px;
}
.contenedor .bg{
    grid-area: bg;
    color: #ffffff;
    font-family: 'Sulphur Point', sans-serif;
    font-size: 300%;
    height: 200px;
    font-weight: bold;
    text-align: center;
}

.content1{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(1, auto);
    grid-template-areas: "text-con1";
    }
.content1 .text-con1{
    grid-area: text-con1;
    font-family: 'Open Sans', sans-serif;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 3%;
    padding-bottom: 2%;
    display: flex;
    margin: auto;
    text-align: justify;
}
.content2{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas:"title-con2"
                        "img-con2"
                        "text-con2";
    }
.content2 .title-con2{
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
    font-size: 140%;
    font-style: bold;
    }
.content2 .img-con2{
    grid-area: img-con2;
    background-image: url(../img/icono_innovacionydesarrollo.png);
    background-position: center;
    background-size: cover;
}
.content2 .text-con2{
    grid-area: text-con2;
    padding-right: 30%;
    padding-left: 30%;
    padding-bottom: 3%;
    text-align: justify;
}
.content3{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "img-con3-1 img-con3-2 img-con3-3"
                        "text-con3-1 text-con3-2 text-con3-3";
}
.content3 .img-con3-1{
    grid-area: img-con3-1;
    background-image: url(../img/icono_investigacionaplicada.png);
    background-position: center;
    background-size: cover;
}
.content3 .img-con3-2{
    grid-area: img-con3-2;
    background-image: url(../img/icono_formacion.png);
    background-position: center;
    background-size: cover;
}
.content3 .img-con3-3{
    grid-area: img-con3-3;
    background-image: url(../img/icono_nuevastecnologias.png);
    background-position: center;
    background-size: cover;
}
.content4{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas:"title-con4"
                        "img-con4"
                        "text-con4";
    }
.content4 .title-con4{
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
    font-size: 140%;
    font-style: bold;
    padding-top: 5%;
    }
.content4 .img-con4{
    grid-area: img-con4;
    background-image: url(../img/icono_promocionycomercio.png);
    background-position: center;
    background-size: cover;
}
.content4 .text-con4{
    grid-area: text-con4;
    padding-right: 30%;
    padding-left: 30%;
    padding-bottom: 3%;
    text-align: justify;
}
.content5{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "img-con5-1 img-con5-2"
                        "text-con5-1 text-con5-2";
}
.content5 .img-con5-1{
    grid-area: img-con5-1;
    background-image: url(../img/icono_comercionei.png);
    background-position: center;
    background-size: cover;
}
.content5 .img-con5-2{
    grid-area: img-con5-2;
    background-image: url(../img/icono_marketing.png);
    background-position: center;
    background-size: cover;
}
.content6{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas:"title-con6"
                        "img-con6"
                        "text-con6";
    }
.content6 .title-con6{
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
    font-size: 140%;
    font-style: bold;
    padding-top: 5%;
    }
.content6 .img-con6{
    grid-area: img-con6;
    background-image: url(../img/icono_programas_proyectos.png);
    background-position: center;
    background-size: cover;
}
.content6 .text-con6{
    grid-area: text-con6;
    padding-right: 30%;
    padding-left: 30%;
    padding-bottom: 3%;
}
.content7{
    font-family: 'open sans', 'montserrat', 'roboto';
    width:90%;
    max-width: 1300px;
    margin: 20px auto;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "img-con7-1 img-con7-2 img-con7-3"
                        "text-con7-1 text-con7-2 text-con7-3";
}
.content7 .img-con7-1{
    grid-area: img-con7-1;
    background-image: url(../img/icono_consultoria.png);
    background-position: center;
    background-size: cover;
}
.content7 .img-con7-2{
    grid-area: img-con7-2;
    background-image: url(../img/icono_alianzas.png);
    background-position: center;
    background-size: cover;
}
.content7 .img-con7-3{
    grid-area: img-con7-3;
    background-image: url(../img/icono_experiencias.png);
    background-position: center;
    background-size: cover;
}
.content2 .title-con2 a, .content3 .text-con3-1 a, .content3 .text-con3-2 a, .content3 .text-con3-3 a, .content4 .title-con4 a, .content5 .text-con5-1 a, .content5 .text-con5-2 a, .content6 .title-con6 a, .content7 .text-con7-1 a, .content7 .text-con7-2 a, .content7 .text-con7-3 a{
    text-decoration: none;
    color: #000;
}
.content2 .title-con2 a:hover, .content3 .text-con3-1 a:hover, .content3 .text-con3-2 a:hover, .content3 .text-con3-3 a:hover, .content4 .title-con4 a:hover, .content5 .text-con5-1 a:hover, .content5 .text-con5-2 a:hover, .content6 .title-con6 a:hover, .content7 .text-con7-1 a:hover, .content7 .text-con7-2 a:hover, .content7 .text-con7-3 a:hover{
    color: #AA1A18;
}
.content2 .title-con2 a:focus, .content3 .text-con3-1 a:focus, .content3 .text-con3-2 a:focus, .content3 .text-con3-3 a:focus, .content4 .title-con4 a:focus, .content5 .text-con5-1 a:focus, .content5 .text-con5-2 a:focus, .content6 .title-con6 a:focus, .content7 .text-con7-1 a:focus, .content7 .text-con7-2 a:focus, .content7 .text-con7-3 a:focus{
    color: #AA1A18;
}
.content2 .img-con2, .content3 .img-con3-1, .content3 .img-con3-2, .content3 .img-con3-3, .content4 .img-con4, .content5 .img-con5-1, .content5 .img-con5-2,.content6 .img-con6,.content7 .img-con7-1,.content7 .img-con7-2,.content7 .img-con7-3{
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}
.content3 .text-con3-1 h2,.content3 .text-con3-2 h2,.content3 .text-con3-3 h2, .content5 .text-con5-1 h2, .content5 .text-con5-2 h2, .content7 .text-con7-1 h2, .content7 .text-con7-2 h2, .content7 .text-con7-3 h2{
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
    font-style: bold;
}
.content3 .text-con3-1 p, .content3 .text-con3-2 p, .content3 .text-con3-3 p, .content5 .text-con5-1 p, .content5 .text-con5-2 p, .content7 .text-con7-1 p, .content7 .text-con7-2 p, .content7 .text-con7-3 p{
    text-align: justify;
}
}
.footer{
    background-color: #AA1A18;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "col-1 col-2 col-3 col-4"
                        "derechos derechos derechos derechos";
}
.footer .col-1{
    grid-area: col-1; 
}
.footer .col-2{
    grid-area: col-2; 
    text-align: center;
    padding-top: 5%;
}
.footer .col-3{
    grid-area: col-3; 
}
.footer .col-4{
    grid-area: col-4; 
}
.footer .col-1 {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}
.footer .social-media ul{
    grid-area: social-media; 
    display: flex;
    justify-content: center;
}
.footer .social-media li{
    margin-top: 6px;
    padding-top: 3px;
    margin-left: 2px;
    margin-right: 2px;
    list-style: none;
}
.footer .social-media li img{
    width: 35px;
    height: 35px;
}
.footer .derechos{
    grid-area: derechos; 
    color: #ffffffc0;
    font-family: 'Open Sans', sans-serif;
    font-style: oblique;
    font-weight: lighter;
    font-size: small;
    text-align: center;
    margin-bottom: 1%;
}
.footer .col-2 a,.footer .col-3 h3, .footer .col-4 h3{
    color: #ffffff;
    font-family: 'Sulphur Point', sans-serif;
    text-align: center;
    padding: 5%;
    font-size: medium;
    text-decoration: none;
}
.footer .col-2 a:hover,.footer .col-3 h3 a:hover, .footer .col-4 h3 a:hover, .footer .col-2 a:focus,.footer .col-3 h3 a:focus, .footer .col-4 h3 a:focus{
    text-decoration: underline;
}
.footer .col-3 h4, .footer .col-4 h4{
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-weight: normal;
    font-size: small;
}
.footer .derechos a{
    text-decoration: none;
    color: #ffffffc0;
}
.footer .derechos a:hover, .footer .derechos a:focus{
    text-decoration: underline;
    color: #ffffffc0;
}














@media (max-width:1020px){
    .contenedor{
        grid-gap: 20px;
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: repeat(3, auto);
        grid-template-areas:
            "logo logo"
            "menu menu"
            "bg bg";
    }  
    .contenedor .menu{
        margin-left: auto;
        margin-right: auto;
    }  
    .contenedor .logo{
        margin-left: auto;
        margin-right: auto;
    }
      .content2 .text-con2, .content4 .text-con4, .content6 .text-con6{
        padding-right: 10%;
        padding-left: 10%;
    }
    .footer{
        grid-gap: 5px;
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(3, auto);
        grid-template-areas: "col-1 col-1 col-1"
                             "col-2 col-3 col-4"
                             "derechos derechos derechos";
    }     
    .footer #logofooter{
        width: 180px;
        height: auto;
    }
}
@media screen and (max-width:768px){
    .header .side-menu{
        width: 400%;
        margin-left: -200%;
        transform: translateX(0%);
        transition: all 0.3s;
    }
    .header .side-menu li a{
        text-align: center;
    }
    .contenedor{
        grid-template-columns: repeat(1,1fr);
        grid-template-rows: repeat(20, auto);
        grid-template-areas: "logo"
                             "bg"
    }    
    .contenedor .menu ul{
        display: none;
    } 
    .contenedor .logo{
        margin-left: auto;
        margin-right: auto;
    }
.content1 .text-con1,.content2 .text-con2, .content4 .text-con4, .content6 .text-con6{
    padding-left: 0;
    padding-right: 0;
}
.content3{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(6, auto);
    grid-template-areas: "img-con3-1"
                         "text-con3-1"
                         "img-con3-2"
                         "text-con3-2"
                         "img-con3-3"
                         "text-con3-3";
}
.content5{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "img-con5-1" 
                         "text-con5-1"
                         "img-con5-2"
                         "text-con5-2";
}
.content7{
    grid-template-columns: repeat(1,1fr);
    grid-template-rows: repeat(6, auto);
    grid-template-areas: "img-con7-1"
                         "text-con7-1"
                         "img-con7-2"
                         "text-con7-2"
                         "img-con7-3"
                         "text-con7-3";
}
.footer{
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "col-1 col-1 col-1"
                         "col-2 col-2 col-2"
                         "derechos derechos derechos";
}   
.footer .col-2{
    margin-bottom: 10px;
}  
.footer .col-3, .footer .col-4{
    display: none;
}

        
}

