/** ESTILOS DE ELEMENTOS COMUNES A TODAS LAS PAGINAS EN GENERAL**/

@font-face {
    font-family: "KaushanScript-Regular";
    src: url('../fonts/KaushanScript-Regular.otf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    background: #333;
    /*background-color: lightgray;*/
    /*background-color: pink;*/
}

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background-color: #232f3e;
}

 ::-webkit-scrollbar-thumb {
    background-color: lightgreen;
}

 ::-webkit-scrollbar-thumb:hover {
    background-color: #FE9A2E;
}

 ::-webkit-scrollbar-button:decrement {
    background-color: #FE9A2E;
    height: 25px;
    /*background-image: url();*/
}

 ::-webkit-scrollbar-button:increment {
    background-color: #FE9A2E;
    height: 25px;
    /*background-image: url();*/
}


/**:root {
    background-color: lightgray;
}**/


/*INICIO ESTILOS UP AND DOWN*/

#upAndDown {
    position: fixed;
    right: 0;
    top: 85%;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-end;
    z-index: 200;
}

#upAndDown div {
    color: white;
    padding: .7rem;
    background-color: #232f3e;
    display: flex;
    transition: all .5s;
}

#upAndDown div:first-child {
    border-radius: 1rem 0 0 0;
}

#upAndDown div:last-child {
    border-radius: 0 0 0 1rem;
}

#upAndDown div:hover {
    padding-right: 2rem;
    background: black;
    border-radius: 1rem 0 0 1rem;
}

#up:hover {
    cursor: pointer;
}

#down:hover {
    cursor: pointer;
}


/*FINAL ESTILOS UP AND DOWN*/


/*INICIO ESTILOS DEL SIDEBAR MENU*/

.sidebar {
    position: absolute;
    width: 260px;
    height: 100%;
    background: #333;
    /*color: #fff;*/
    color: #FE9A2E;
    outline: 1px solid #2a2a2a;
}

.sidebar img {
    margin-left: 3px;
    margin-top: 3px;
    border-radius: 3%;
}

.sidebar h2 {
    text-align: center;
    margin: 0;
    padding: 10px;
    background: #2a2a2a;
    /* PROPIEDAD AGREGADA POR MI*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li span {
    margin-right: 10px;
    color: #FE9A2E;
}

.sidebar li {
    /* PROPIEDAD AGREGADA POR MI*/
    width: 100%;
    /*border: 1px solid #2a2a2a;*/
    outline: 1px solid #2a2a2a;
    /*transition: border 0.3s;*/
    /*transition: all 0.3s; (esto es lo mismo que para una propiedad especifica para nuestro caso en particular*/
    transition-property: border;
    transition-duration: 0.3s;
}

.sidebar li:hover {
    background: #444;
    /*border-left: 5px solid #eee; (configuracion inicial)*/
    border-left: 5px solid lightgreen;
}

.sidebar a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    /* PROPIEDAD AGREGADA POR MI*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.contenido {
    width: 100%;
    height: 100%;
    position: relative;
    /*background: #eee;*/
    background: lightgray;
    /*padding: 30px;*/
    transition: all 0.8s;
    box-sizing: border-box;
    /*LA PROPIEDAD SIGUIENTE AYUDA A FIJAR LA BARRA DE MENU POR ENCIMA DEL CONTENIDO DE LA PAGINA*/
    /* padding-top: 37px; */
}


/* AQUI DESARROLLAREMOS LOS ESTILOS DE LA BARRA DE MENU Y DE LA BARRA DE BUSQUEDA RAPIDA DE SERVICIO*/

.bars {
    width: 100%;
    height: auto;
    /*overflow: hidden;*/
    display: table;
    padding: 5px;
    /*background-color: burlywood;*/
    /*LAS PROPIEDADES SIGUIENTES AYUDAN A FIJAR LA BARRA DE MENU POR ENCIMA DEL CONTENIDO DE LA PAGINA*/
    /* position: fixed;
    z-index: 800;
    margin-top: -42px; */
}

.menu-bar {
    height: auto;
    width: 49.80%;
    background-color: #2a2a2a;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: Helvetica, sans-serif, Arial;
    padding: .5em 0em;
    margin-right: 5px;
    /*text-transform: uppercase;*/
    /*Cambio del cursor y movimiento pausado del sidebar*/
    cursor: pointer;
    transition: all .5s steps(4, end) 0s;
    -webkit-transition: all .5s steps(4, end) 0s;
}

.menu-bar .left,
.menu-bar .right {
    color: #FE9A2E;
    font-size: 1.20em;
}

.menu-bar h4 {
    /*background: pink;*/
    /*display: inline;*/
    margin-left: 2%;
    margin-right: 2%;
}

.quickSearchList {
    height: auto;
    width: 49.8%;
    background-color: #FE9A2E;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    /*color: #2a2a2a;*/
    font-family: Helvetica, sans-serif, Arial;
    padding: .2em 0em;
}

.quickSearchList .left,
.quickSearchList .right {
    /*color: #2a2a2a;*/
    color: white;
    padding: 0em 0.5em;
    font-size: 1.20em;
}


/*La propiedad de transition de menu-bar no estaba estipulada en el video.
 Esta parte la copie mas arriba por lo que la puedo borrar*/


/*.menu-bar {
    cursor: pointer;
    transition: all .5s steps(4, end) 0s;
    -webkit-transition: all .5s steps(4, end) 0s;
}*/


/*Este hover tampoco estaba en el video.*/


/*.menu-bar:hover {
    transform: scale(1.35);
    -webkit-transform: scale(1.35);
}*/

.abrir {
    /* margin-left: 260px;(lo mismo que transform de mas abajo*/
    transform: translateX(260px);
}


/*FIN ESTILOS DEL SIDEBAR MENU Y
 DE LA BARRA DE BUSQUEDA RAPIDA DE SERVICIO*/

header {
    border-top: 4px double white;
    width: 100%;
    /*min-width: 480px;*/
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif, Verdana, Geneva, Tahoma, sans-serif;
}


/* Estos estilos son para las barras determinando las dimensiones de celulares y tablets*/


/* .movilPortrait {
    width: 320px;
    height: 25px;
    color: white;
    background-color: darkblue;
}

.movilLandscape {
    width: 480px;
    height: 25px;
    color: white;
    background-color: purple;
}

.minimum {
    width: 245px;
    height: 25px;
    color: white;
    background-color: darkgreen;
} */

.main_header {
    width: 100%;
    height: auto;
    /*El siguiente color de fondo es de Amazon.com*/
    background-color: #232f3e;
    /* background: linear-gradient(to bottom left, lightgreen, #303030); */
}


/** Seccion estilos nombre; Professional & Technical, y E.I.R.L.**/

.acronym {
    color: #FE9A2E;
    font-size: 1.8em;
}

.acronym:hover {
    color: white
}

.name {
    float: left;
    width: 300px;
    /* padding: 5px 1px; */
    margin-top: 15px;
    margin-left: 1%;
    color: white;
    font-size: .8em;
    letter-spacing: 1.40px;
    /* background-color: yellowgreen; */
}

.name:hover {
    color: #FE9A2E;
    /*cursor: pointer;*/
}

.name h6 {
    /* float: right; */
    /* margin-right: 3%; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    text-align: center;
}

.name hr {
    margin: 2px 0px;
}


/** Seccion estilos logo redondo con texto Service Point**/

.logo {
    float: left;
    margin: 12px 0px 12px -5px;
    background-color: lightgreen;
    width: 6.5em;
    height: 6.5em;
    border-radius: 50%;
    border: 1px solid white;
}

.logo:hover {
    background-color: #FE9A2E;
    cursor: pointer;
}

.service_point {
    width: 5.25em;
    height: 5.25em;
    margin-top: 9%;
    margin-left: 8.8%;
    background-color: black;
    border-radius: 50%;
    letter-spacing: .07em;
}

.service_point a {
    text-decoration: none;
}

.sp_text {
    color: white;
    text-align: center;
    font-size: 1.07em;
}

.sp_text:hover {
    color: lightgreen;
}


/** Seccion estilos transitorio "El PUNTO de los SERVICIOS"**/

.slogan h3 {
    width: 900px;
    color: lightgreen;
    margin-top: 1.3em;
    margin-bottom: 1.3em;
    margin-left: .75em;
    display: inline-block;
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2em;
    animation-name: sloganAnimation;
    animation-duration: 10s;
    animation-timing-function: ease;
    animation-delay: 3s;
    animation-iteration-count: 3;
    animation-direction: normal;
    animation-fill-mode: backwards;
    /*animation: sloganAnimation 10s ease 3s 5 normal backwards;*/
    /* background-color: yellow; */
}

@keyframes sloganAnimation {
    0% {
        color: orangered;
        letter-spacing: 0em;
    }
    50% {
        color: lightgreen;
        letter-spacing: 0.18em;
    }
    100% {
        color: silver;
        letter-spacing: 0.18em;
    }
}


/*Seccion de estilos de la MANZANITA VERDE*/

.greenApple {
    float: right;
    height: 8rem;
    padding: .25rem;
    /* background-color: #00abf0; */
}


/* INICIO PROPIEDADES DE MENU ADAPTABLE A MOVILES A SER IMPORTADO DESDE estilo.css POSTERIORMENTE*/


/*FIN PROPIEDADES DEL MENU ADAPTABLE A MOVILES*/


/** Seccion estilos del menu de navegacion**/

.main_menu {
    width: 100%;
    height: auto;
    border-top: 2px solid white;
    border-bottom: 5px double white;
    background-color: #FE9A2E;
    display: flex;
}

.main_menu details {
    width: 100%;
    display: block;
}

.main_menu details summary {
    /* color: #232f3e; */
    background-color: #232f3e;
    color: #FE9A2E;
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    padding: 0.2em 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_menu details summary:hover {
    cursor: pointer;
}

.main_menu details ul {
    margin: 2px 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap;
}


/* .main_menu li:first-child {
    width: 215px;
} */

.main_menu details li {
    width: 145px;
    height: 50px;
    margin: 0.2em 1em;
    background-color: lightgreen;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.3px solid white;
}

.main_menu details li a {
    background-color: #232f3e;
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    color: #FE9A2E;
    width: 130px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


/*ANIMACION DEL MENU DE NAVEGACION*/

.main_menu li a {
    /*transition-property: ;
    transition-duration: .5s;
    transition-timing-function: steps(4, end);
    transition-delay: 0s;*/
    transition: all .5s steps(4, end) 0s;
    -webkit-transition: all .5s steps(4, end) 0s;
}

.main_menu li:hover a {
    color: lightgreen;
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
}


/* .main_menu li img {
    transition-property: ;
    transition-duration: .5s;
    transition-timing-function: steps(4, end);
    transition-delay: 0s;
    transition: all .5s steps(4, end) 0s;
    -webkit-transition: all .5s steps(4, end) 0s;
}

.main_menu li:hover img {
    transform: rotate(360deg);
} */


/*Seccion estilos del SLIDER (300318)*/

#sliderContainer {
    display: flex;
    padding: 1% 0%;
    /*min-height: 100vh;*/
    /*background: #efc876;*/
    /*background: #232f3e;*/
}

#c-slider {
    margin: auto;
    width: 90%;
    max-width: 1920px;
    position: relative;
    overflow: hidden;
    /*box-shadow: 0 15px 50px;*/
    box-shadow: 0 0 0 2px #fff, 0 15px 50px;
}

#slider {
    display: flex;
    /*display: -webkit-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flex;*/
    /*600% por que solo hay 6 imagenes, esto aumenta de 100 en 100%*/
    width: 600%;
}

#slider section {
    width: 90%;
    display: flex
}

#slider img {
    display: block;
    width: 100%;
    height: 100%;
}


/* #slider section div {
    width: 25%;
    height: 100%;
} */

#btn-prev,
#btn-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
    cursor: pointer;
}

#btn-prev:hover,
#btn-next:hover {
    background: rgba(255, 255, 255, 1);
}

#btn-prev {
    left: 10px;
}

#btn-next {
    right: 10px;
}


/*Final estilos SLIDER*/


/** Seccion estilos del contenido pagina (body)**/

.main_section {
    margin-left: 5%;
    margin-top: 1em;
    width: 90%;
    height: auto;
    /**height: 50em;**/
    background-color: lightgray;
    /*background-color: darkolivegreen;*/
}

article {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
    width: 71.65%;
    height: auto;
    /** height: 45em;**/
    background-color: #303030;
    color: #2F4F4F;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main_section aside {
    clear: both;
    display: inline-block;
    width: 27%;
    /*height: auto;*/
    /* esto es para el up and dowr de los anuncios*/
    /* height: 61em; */
    height: 2885px;
    background-color: orange;
    /*border-radius: 2%;*/
    /* esto es para el up and dowr de los anuncios*/
    /*overflow: hide;*/
}

aside h3 {
    width: 100%;
    color: white;
    padding: .5em;
    background-color: #303030;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /*border-radius: 4%;*/
}

.main_section aside h5 {
    text-align: center;
}

aside #asideGeneralPackages {
    clear: both;
    /*display: block;*/
    width: 100%;
    height: 96%;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    background-color: transparent;
    box-shadow: none;
    overflow: auto;
}

aside div {
    width: 90%;
    height: auto;
    /*height: 9em;*/
    padding: 1.2%;
    margin-left: 5%;
    margin-bottom: 4%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
    /**background-color: #FBF7C9;**/
    background-color: #D5FBD0;
    box-shadow: -5px 5px 5px #303030;
    /*border-radius: 2%;*/
}

#asideGeneralPackages img {
    margin: 6px 0px;
}

#asideGeneralPackages h6 {
    padding-left: 5px;
}

#asideGeneralPackages ul {
    padding-left: 25px;
    list-style-type: square;
}

#asideGeneralPackages ul li {
    font-size: 0.8em;
}

#asideGeneralPackages a {
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    color: green;
}

#asideGeneralPackages .icon-bubbles3 {
    padding: 5px;
    color: green;
    font-weight: bold;
    font-size: 1.2em;
}

#asideGeneralPackages .icon-bubbles3:hover {
    color: #FAAC58;
}

aside h5 {
    padding: .5rem;
    background: #FAAC58;
}

aside h4 {
    color: red;
    font-size: 1.1rem;
    text-align: center;
}


/* START ESTILOS DE FORM SIDE BAR*/


/* .formBar {
    position: fixed;
    left: 0;
    top: 33%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    font-size: .8rem;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-end;
    z-index: 300;
}

.formBar a {
    width: auto;
    height: 95px;
    margin: 0px 0px 3px 10px;
    text-align: center;
    color: white;
    text-decoration: none;
    display: flex;
    transition: all .5s;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.formBar .internalStyle {
    padding: 0 5px 0 5px;
}

.formBar .serviceSide {
    background-color: orangered;
}

.formBar .affiliationSide {
    background-color: green;
}

.formBar .urgentSide {
    background-color: red;
} */


/* END ESTILOS DE FORM SIDE BAR*/


/* START ESTILOS DE SOCIAL NETWORK SIDE BAR*/

.socialBar {
    position: fixed;
    right: 0;
    top: 37.5%;
    /*font-size: 1rem;*/
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-end;
    z-index: 200;
}

.socialBar .icon {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
}

.socialBar .icon-facebook {
    background: #3b5998;
}

.socialBar .icon-google-plus {
    background: #d95232;
}

.socialBar .icon-twitter {
    background: #00abf0;
}

.socialBar .icon-pinterest2 {
    background: #ae181f;
}

.socialBar .icon-instagram {
    background: #3f60a5;
}

.socialBar .icon-youtube {
    background: #e83028;
}

.socialBar .icon-linkedin2 {
    background: darkblue;
}

.socialBar .icon-mail2 {
    background: #666666;
}

.socialBar .icon:first-child {
    border-radius: 1rem 0 0 0;
}

.socialBar .icon:last-child {
    border-radius: 0 0 0 1rem;
}

.socialBar .icon:hover {
    padding-right: 2rem;
    background: black;
    border-radius: 1rem 0 0 1rem;
    /*box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);*/
}


/*inicio tooltips dentro de socialbar (140517)*/


/* Tooltip container */

.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted #FE9A2E;*/
}


/* Tooltip text */

.tooltip .tooltiptext {
    visibility: hidden;
    width: 80px;
    /*background-color: #FE9A2E;*/
    color: white;
    font-family: helvetica, sans-serif;
    text-align: center;
    font-size: 0.7em;
    border-radius: 6px;
    padding: 4px 0;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    /*Right Tooltip
    top: -5px;
    left: 105%;*/
    /*Left Tooltip*/
    top: 10px;
    right: 105%;
    /*Top Tooltip
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px; /*Use half of the width (120/2 = 60), to center the tooltip
    */
    /*Bottom Tooltip
    width: 120px;
    top: 100%;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip
    */
    /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: */
    opacity: 0;
    transition: opacity 1s;
}


/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


/* las propiedades siguientes agrega flecha a tooltips*/


/*.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /*a la derecha del tooltip (solo cambiar al sentido opuesto de lo requerido)
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #FE9A2E;
}*/


/*final tooltips dentro de socialbar*/


/*END ESTILOS SOCIAL NETWORK SIDE BAR*/


/*ESTILOS DE LA BARRA DE RETORNO HACIA EL MENU PRINCIPAL
 O BARRA DE PUNTOS DE NAVEGACION*/

#menuReturn {
    text-decoration: none;
    display: block;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    /*background-color: #808080;*/
    background: #2a2a2a;
    color: white;
    padding: .5em;
}


/*BORRANDO TODOS LOS AJUSTES DISPLAY - FLOAT*/

.clearAll {
    clear: both;
}


/**SERVICIOS EXTERNOS A PROFESSIONAL & TECHNICAL SERVICE POINT (MODIFICADO 130417)**/

.second_section {
    margin-left: 5%;
    margin-top: 1%;
    width: 90%;
    /* height: 350px; */
    background-color: #FE9A2E;
    border: 1px solid black;
    box-sizing: border-box;
    /* border-radius: 1%; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /* overflow: auto; */
}

.second_section h2 {
    width: 100%;
    /** background-color: red;**/
    color: #303030;
    padding: .5em;
    text-align: center;
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
}

.external {
    color: white;
    font-size: 1.25em;
}

.externalContainer {
    height: 285px;
    overflow: auto;
}


/** PARA LOS PUNTOS DE SERVICIOS EXTERNOS DEBEMOS PONER A PRUEBA EL
DISPLAY FLEX CORRECTAMENTE (VIDEO 64 DE CSS)
 Y TODAS SUS VARIABLES YA QUE NOS SIMPLIFICA LA CODIFICACION**/


/** PUNTOS DE SERVICIOS PROFESIONALES (EXTERNOS)**/

.second_section .externalContainer {
    /* background-color: #00abf0; */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap;
}

.external_psp {
    width: 285px;
    height: 250px;
    margin-left: 5px;
    margin-top: 5px;
    background-color: silver;
    border-radius: 5%;
    border: 1px solid #303030;
}

.external_psp h4 {
    margin-top: 15px;
    margin-bottom: 7px;
    background-color: #303030;
    color: white;
    text-align: center;
    padding: 5px;
}

.external_psp ul {
    margin: 0px 5px;
    font-size: .9em;
}

.external_psp li {
    width: 250px;
    font-size: .9em;
    list-style-type: square;
    /* background-color: lightgreen; */
    /* justify-content: center; */
    /* align-items: center; */
    margin-left: 7%;
}


/** Seccion estilos del contenido pie de la pagina**/

footer {
    width: 100%;
    color: #ddd;
    height: auto;
    /*background-color: #303030;*/
    background-color: #131a22;
    border-top: 4px double white;
    border-bottom: 4px double white;
}

footer h6 {
    padding: 2em;
    color: white;
    /*background-color: darkorange;*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: right;
}

footer #footerContainer {
    width: 90%;
    margin-left: 5%;
    /*margin-top: 1.5rem;*/
    margin-bottom: 1.5rem;
    /*background-color: magenta;*/
    display: flex;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    /*con la propiedad flex-flow: se resumen las dos anteriores*/
    flex-flow: row wrap;
    justify-content: space-between;
}

#footerContainer .foot {
    width: 300px;
    height: 300px;
    margin-top: 1.5rem;
    background: #040404;
}

#footerContainer .foot a {
    text-decoration: none;
}


/* #footerContainer .footer01 h3 {
    padding: 10px;
    color: whitesmoke;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
}

#footerContainer .footer01 h4 {
    padding: 6px 10px 8px 50px;
    color: #999;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#footerContainer .footer01 strong {
    color: #FE9A2E;
    font-size: 1.15em;
}

#footerContainer .footer01 span {
    margin-right: 8px;
    color: #FE9A2E;
    font-size: .9em;
}

#footerContainer .footer02 h3 {
    padding: 10px;
    color: whitesmoke;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
}

#footerContainer .footer02 h4 {
    padding: 8px 10px 8px 30px;
    color: #999;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#footerContainer .footer02 strong {
    color: #FE9A2E;
    font-size: 1.30em;
} */

#footerContainer .footer01 h3 {
    padding: 10px;
    color: #a5a4a4c7;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
}

#footerContainer .footer01 ul {
    list-style-type: none;
    padding: 10px;
    color: #999;
    /*list-style-type: square;*/
    list-style-position: inside;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .7em;
}

#footerContainer .footer01 span {
    margin-right: 8px;
    color: #FE9A2E;
}

#footerContainer .footer02 h3 {
    padding: 10px;
    color: #a5a4a4c7;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
}

#footerContainer .footer02 ul {
    list-style-type: none;
    padding: 10px;
    color: #999;
    /*list-style-type: square;*/
    list-style-position: inside;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .7em;
}

#footerContainer .footer02 span {
    margin-right: 8px;
    color: #FE9A2E;
}

#footerContainer .footer03 h3 {
    padding: 10px;
    color: #a5a4a4c7;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
}

#footerContainer .footer03 ul {
    list-style-type: none;
    padding: 10px;
    color: #999;
    /*list-style-type: square;*/
    list-style-position: inside;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .7em;
}

#footerContainer .footer03 span {
    margin-right: 8px;
    color: #FE9A2E;
}

#footerContainer .footer05 {
    width: 100%;
    height: auto;
    margin-top: 8px;
    color: #999;
    /*background: rebeccapurple;*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

#footerContainer .footer05 strong {
    color: #FE9A2E;
    font-size: 1.10em;
}

#footerContainer .footer06 {
    display: flex;
    width: 100%;
    margin-top: 5px;
    justify-content: center;
    /*background: blanchedalmond;*/
}

#footerContainer .footer06 div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 3px;
    margin: 1px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: .8em;
    text-align: center;
    /*background: rebeccapurple;*/
}

#footerContainer .footer06 a {
    /*text-decoration: none;*/
    color: #999;
}


/** ESTILO PARTICULAR PAGINA 101_index  ( MODIF. 160117) **/


/* inicio article_01 */

.article_01 {
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap;
}

.article_01 img {
    float: left;
    margin: 2%;
    border-radius: 50%;
}

.article_01 h2 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    color: floralwhite;
    margin: .8em;
    width: 100%;
    height: auto;
    /* height: 3em; */
    /* background-color: floralwhite; */
    /* border-radius: 1%; */
    padding: 1.5%;
    text-align: center;
    /* box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset; */
}

.article_01 div {
    margin-top: 1em;
    margin-left: 1em;
    margin-bottom: 1.25em;
    width: 96%;
    height: auto;
    /** height: 20em;**/
    background-color: floralwhite;
    border-radius: 1%;
    padding-top: 2.5%;
    padding-right: 4%;
    padding-bottom: 2.5%;
    padding-left: 2.5%;
    text-align: justify;
    box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset;
}

.article_01 div h3 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    padding: 15px;
}

.article_01 .personalInformation p {
    text-align: center;
}

.article_01 .personalInformation a {
    font-size: 1.2em;
    font-style: italic;
    color: green;
}

.article_01 .aboutMe p {
    text-align: justify;
}


/* inicio article_02 */

.article_02 {
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap;
}

.article_02 h2 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    color: floralwhite;
    margin: .8em;
    width: 100%;
    height: auto;
    /* height: 3em; */
    /* background-color: floralwhite; */
    /* border-radius: 1%; */
    padding: 1.5%;
    text-align: center;
    /* box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset; */
}

.article_02 div {
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 1.25em;
    width: 46%;
    height: 1050px;
    /** height: 20em;**/
    background-color: floralwhite;
    border-radius: 1%;
    padding-top: 2.5%;
    padding-right: 4%;
    padding-bottom: 2.5%;
    padding-left: 2.5%;
    text-align: justify;
    box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset;
}

.article_02 div h3 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    padding: 15px;
}

.article_02 div p {
    text-align: center;
}

.article_02 img {
    width: 100%;
    float: right;
    margin-bottom: 10px;
    margin-left: 12px;
    border-radius: 2%;
}


/* inicio article_03 */

.article_03 {
    width: 100%;
    /* display: flex; */
    /* background-color: #3b5998; */
}

.article_03 details {
    width: 97%;
    margin: .8em;
    display: block;
    /*justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap; */
}

.article_03 details summary {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    /* color: floralwhite; */
    color: #303030;
    font-size: 1.60em;
    font-weight: bold;
    text-align: center;
    padding: 2%;
    background-color: #FE9A2E;
}

.article_03 details summary:hover {
    cursor: pointer;
}

details ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap-reverse;
}

.article_03 li {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 1.25em;
    width: 190px;
    height: auto;
    color: floralwhite;
    background-color: #303030;
    border-radius: 1%;
    padding: 2%;
    text-align: center;
    cursor: pointer;
    border: 2px solid floralwhite;
}


/*ANIMACION DE LAS HERRAMIENTAS Y APLICACIONES INFORMATICAS*/

.article_03 li {
    /*transition-property: ;
    transition-duration: .5s;
    transition-timing-function: steps(4, end);
    transition-delay: 0s;*/
    transition: all .5s steps(10, end) 0s;
    -webkit-transition: all .5s steps(10, end) 0s;
}

.article_03 li:hover {
    transform: scale(1.20);
    -webkit-transform: scale(1.20);
}


/* .article_03 .centu:hover {
    box-shadow: -10px 10px 10px #00abf0, -10px 10px 10px #00abf0 inset;
}

.article_03 .cdeee:hover {
    box-shadow: -10px 10px 10px orangered, -10px 10px 10px orangered inset;
}

.article_03 .samanel:hover {
    box-shadow: -10px 10px 10px #e4e70a, -10px 10px 10px #e4e70a inset;
}

.article_03 .powermanz:hover {
    box-shadow: -10px 10px 10px rgba(194, 106, 5, 0.808), -10px 10px 10px rgba(194, 106, 5, 0.808) inset;
}

.article_03 .sololearn:hover {
    box-shadow: -10px 10px 10px rgba(101, 8, 177, 0.808), -10px 10px 10px rgba(101, 8, 177, 0.808) inset;
}

.article_03 .infotep:hover {
    box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset;
} */

.article_03 div h6 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    padding-bottom: 5px;
}


/* incicio article_04 */

.article_04 {
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: row;
    flex-wrap: wrap;*/
    flex-flow: row wrap;
}

.article_04 h2 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    color: floralwhite;
    margin: .8em;
    width: 100%;
    height: auto;
    /* height: 3em; */
    /* background-color: floralwhite; */
    /* border-radius: 1%; */
    padding: 1.5%;
    text-align: center;
    /* box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset; */
}

.article_04 div {
    font-size: 0.8em;
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    margin-bottom: 1.25em;
    width: 350px;
    height: 130px;
    background-color: floralwhite;
    border-radius: 1%;
    padding-top: 2.5%;
    padding-right: 4%;
    padding-bottom: 2%;
    padding-left: 2.5%;
    text-align: justify;
    box-shadow: -10px 10px 10px lightgreen, -10px 10px 10px lightgreen inset;
}

.article_04 div h3 {
    font-family: "KaushanScript-Regular", Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    padding-bottom: 5px;
}

.article_04 div p {
    text-align: center;
}


/*CODIGO 1 (PRIMERA FASE 1000PX) PARA DETERMINAR EL RESPONSIVE MODE DE NUESTRA PAGINA (MODIF. 010217)*/

@media screen and (max-width: 1350px) {
    /*COLOLAR AQUI LAS CLASES QUE  SE DESEAN MODIFICAR O CONDICIONAR AL TAMAÑO*/
    .name_ini {
        width: 100%;
        margin-top: 10%;
        margin-right: 0%;
        margin-bottom: 0%;
        margin-left: 0%;
        text-align: center;
    }
    .logo_ini {
        margin: 10% auto;
        position: relative;
        left: 40%;
    }
    /*LAS PROPIEDADES SIGUIENTES AYUDAN A FIJAR LA BARRA DE MENU POR ENCIMA DEL CONTENIDO DE LA PAGINA*/
    /* .contenido {
        padding-top: 72px;
    }
    .bars {
        margin-top: -77px;
    } */
    /* FINAL DE LAS PROPIEDADES ANTERIORES QUE AYUDAN A FIJAR LA BARRA DE MENU POR ENCIMA DEL CONTENIDO DE LA PAGINA*/
    .menu-bar {
        width: 100%;
    }
    .quickSearchList {
        width: 100%;
    }
    .slogan h3 {
        margin-top: 0.7em;
        margin-bottom: 0.7em;
    }
    /* .menuButton {
        margin-left: 0%;
    } */
    .main_menu li {
        margin: 10px;
        display: flex;
        flex-flow: row wrap;
    }
    /* #c-slider {
        width: 90%;
    } */
    #slider img {
        height: 400px;
    }
    .main_section {
        margin: 0%;
        width: 90%;
        margin-top: 3%;
        margin-left: 5%;
        margin-right: 5%;
        /* background-color: purple; */
    }
    article {
        width: 100%;
    }
    .article_02 div {
        height: auto;
    }
    .main_section aside {
        width: 100%;
    }
    .main_section #asideGeneralPackages {
        display: flex;
        /*flex-direction: row;
        flex-wrap: wrap;*/
        /*con la propiedad flex-flow: se resumen las dos anteriores*/
        flex-flow: row wrap;
        justify-content: space-between;
    }
    .main_section aside div {
        margin: 2%;
        width: 300px;
        height: auto;
    }
    .main_section aside h5 {
        text-align: center;
    }
    /* .socialBar {
        display: none;
    } */
    .second_section {
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
    }
    .declaracionPrivacidad {
        width: 100%;
    }
    .terminosUso {
        width: 100%;
    }
}


/*CODIGO 2 (SEGUNDA ETAPA FASE 400PX) PARA DETERMINAR EL RESPONSIVE MODE DE NUESTRA PAGINA (MODIF. 200818)*/

@media screen and (max-width: 900px) {
    /*COLOLAR AQUI LAS CLASES QUE  SE DESEAN MODIFICAR O CONDICIONAR AL TAMAÑO*/
    .article_02 div {
        width: 92%;
    }
}


/*CODIGO 3 (TERCERA ETAPA FASE 400PX) PARA DETERMINAR EL RESPONSIVE MODE DE NUESTRA PAGINA (MODIF. 240318)*/

@media screen and (max-width: 400px) {
    /*COLOLAR AQUI LAS CLASES QUE  SE DESEAN MODIFICAR O CONDICIONAR AL TAMAÑO*/
    .name {
        width: 130px;
        margin-top: 25px;
    }
    .slogan h3 {
        width: 320px;
        margin-top: 0.7em;
        margin-bottom: 0.7em;
        margin-left: 0em;
    }
    .menuButton {
        margin-left: 0%;
    }
    /* .main_menu li {
        margin: 10px;
        display: flex;
        flex-flow: row wrap;
    } */
    #c-slider {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 8px;
    }
    #slider img {
        height: 300px;
    }
    .main_section {
        margin: 0%;
        width: 340px;
    }
    article {
        width: 340px;
        margin-top: 7px;
        border-radius: 0%;
    }
    article img {
        width: 100%;
    }
    article h3 {
        text-align: left;
    }
    .article_01,
    .article_02 {
        width: 350px;
        border-radius: 0%;
        padding-right: 20px;
    }
    .article_01 img,
    .article_02 img {
        width: 100%;
    }
    .article_02 div {
        width: 340px;
        margin: 15px 0px 15px 15px;
    }
    .article_03 details {
        width: 315px;
    }
    .article_04 div {
        width: 340px;
    }
    /* EDITANDO EN CSS A 400PX */
    .main_section aside {
        width: 340px;
    }
    /* .socialBar {
        display: none;
    } */
    .second_section {
        margin: 0%;
        width: 340px;
    }
    .second_section h2 {
        font-size: .85em;
    }
    #footerContainer .footer06 div {
        width: 300px;
        border: 1px solid #999;
    }
    .declaracionPrivacidad {
        width: 340px;
        margin-top: 7px;
    }
    .declaracionPrivacidad h3 {
        text-align: left;
    }
    .terminosUso {
        width: 340px;
        margin-top: 7px;
    }
    .terminosUso h3 {
        text-align: left;
    }
}