@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&display=swap');

:root{
    --background: linear-gradient(90deg,#3c3c3c92 0%, #2d2e2e9f 100%);
    --color-primary: #394a96e7;
    --color-secondary: #667eea7e;
    --boton-padding: 20px 40 px;

    --negro: #393939;
    --blanco: #ececec;
    --sombra-ppal: #c9c9c9;
    --sombra-sec: #ffffff;
    --borde-negro: #00000050;
    --marcado: rgb(127, 195, 255);
    /* Tipografía */
    --tipo-principal: Helvetica, Arial, sans-serif;

    --negro: #393939;
    --blanco: #ececec;
    --sombra-ppal: #c9c9c9;
    --sombra-sec: #ffffff;
    --borde-negro: #00000050;
    --marcado: rgb(127, 195, 255);
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body{
    font-family: 'Raleway', sans-serif;
}

html {width:100%}

.container{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 15px 0;
    max-width: 1300px;
}

.subtitle{
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.hero{
    height: 95vh;
    background-image: var(--background), url('../Imagenes/jelleke-vanooteghem-6NUlOHM40w8-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}
/* pagina de curso de robotiva*/
.sub-hero{
    height: 70vh;
    background-image: url('../Imagenes/stem-t4l--PnSpCHYKsw-unsplash_1.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    /*animation: movimiento 10s infinite linear alternate;*/
}

@keyframes movimiento{
    from{
        background-position: bottom left;
    }to {
        background-position: top right;
    }
}

/* pagina curso de microcontrolador */

.sub-hero-1{
    height: 70vh;
    background-image: url('../Imagenes/jorge-ramirez-TZUyjkPbX8U-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    animation: movimiento1 10s infinite linear alternate;
}

@keyframes movimiento1{
    from{
        background-position: bottom left;
    }to {
        background-position: top right;
    }
}


/* pagina curso de programacion de raspberry */

.sub-hero-2{
    height: 60vh;
    background-image: url('../Imagenes/Rassberry.gif');
    background-repeat: no-repeat;
    background-size: 100%;

}

@keyframes movimiento2{
    from{
        background-position: bottom left;
    }to {
        background-position: top right;
    }
}

/* pagina de diseno 3d*/

.sub-hero-3{
    height: 60vh;
    background-image: url('../Imagenes/thisisengineering-raeng-83udtzyaTS4-unsplash.jpg');
    background-repeat: no-repeat;
    background-size: 100%;
    animation: movimiento3 10s infinite linear alternate;
}

@keyframes movimiento3{
    from{
        background-position: bottom left;
    }to {
        background-position: top right;
    }
}




/*-------------- Menu de navegacion  ------------*/


.cuerpo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background: #03a18c8d;
}


.navegacion{
    position: relative;
    width: 1200px;
    height: 50px;
    display: flex;
    justify-content: space-around;
}

.navegacion ul{
    position: relative;
    display: flex;
    width: 1100px;
}

.navegacion ul li{
    position: relative;
    list-style: none;
    width: 950px;
    height: 50px;
    
}

.navegacion ul li a{
    
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.navegacion .sub-cursos{
    background:#03a18ca8;
}


.navegacion ul li a .icono{
    position: relative;
    display: block;
    line-height: 50px;
    font-size: 1.6em;
    transition: 0.5s;
    text-align: center;
    color: rgb(255, 255, 255);
}

.icono-2{
    text-align: right;
    line-height: 50px;
    transition: 0.5s;
    font-size: 0.8em;
    font-style: normal;
    color: #ffffff; 
}


.navegacion ul li  a:hover .titulo,
.navegacion ul li a:hover .icono{
    color: rgba(255, 255, 255, 0.347);
}

.navegacion ul li  a:hover .titulo,
.navegacion ul li a:hover .icono-2{
    color: rgba(255, 255, 255, 0.347);
}


.navegacion ul li  a .titulo{
    position: absolute;
    font-size: 0.8em;
    color: rgb(255, 255, 255);
    letter-spacing: 0.03em;
}

.navegacion ul li  a .titulo{
     transform: translateY(20px);
}


.navegacion ul li:nth-child(1).activo {
    transform: translateX(calc(219px * 0));
}
.navegacion ul li:nth-child(2).activo {
    transform: translateX(calc(219px * 1));
}
.navegacion ul li:nth-child(3).activo {
    transform: translateX(calc(219px * 2));
}
.navegacion ul li:nth-child(4).activo {
    transform: translateX(calc(219px * 3));
}
.navegacion ul li:nth-child(5).activo{
    transform: translateX(calc(219px * 4));
}

/*---menu de cursos ---*/
.navegacion ul li:hover>ul{
    display: unset;
}

.navegacion ul ul{
    display: none;   
}

.navegacion ul ul li{
  width: 350px;
}

.cuerpo label{
    font-size: 2.2em;
    color: #ffffff;
    margin-left: 50px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
}

/*---------------Inicio ----------------*/

.hero__texts{
    text-align: center;
    padding-top: 225px;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
}

.hero__paragham{
    text-align: justify;
    padding-left: 100px;
    padding-top: 10px;
    font-size:18px;
    color: #f7fffd;

}

.hero__wave{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
}

.title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 80px;
    color: #06b09a;
    padding-top: 20px;
}


/*--------Cursos----------*/

.about{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    
}

.about__picture{
    max-width: 95%;
    border-radius: 50%;
    box-shadow: -10px -10px 15px #fff,
    10px 10px 15px #c1c1c1,
    inset 0px 0px 0px #fff,
    inset 0px 0px 0px #c1c1c1;
   
}

.about__paragraph{
    width: 520px;
    text-align: justify;
    line-height: 2;
    font-weight: 530;
}

.subtitle{
    color: #39a294;
}

/*-------Botont a direccion de cursos---------*/

.label_ico{
    border: 0px solid #c1c1c1;
    width: 50px;
    height: 50px;
    font-size: 40px;
    background: #e5e5e5;
    background-size: 55px;
    text-shadow: 2px 2px 3px rgba(208, 208, 208, 0.818);
    color: #489b91;
    border-radius: 5px;
    box-shadow: -10px -10px 15px #fff,
                10px 10px 15px #c1c1c1,
                inset 0px 0px 0px #fff,
                inset 0px 0px 0px #c1c1c1;
    cursor: pointer;
    transition: all 300ms ease;
}
.label_ico:hover{
    box-shadow: 0px 0px 0px #fff,
                0px 0px 0px #c1c1c1,
                inset -10px -10px 15px #fff,
                inset 10px 10px 15px #c1c1c1;
    color:rgb(152, 155, 155); ;
    text-shadow: 0px 0px 0px rgb(8, 8, 8);
}

/*----------- Servicios------------- */

.servics{
    background: #f2f2f2;
}

.projects__grid{
    display: grid;
    height: 550px;
    grid-template-areas: 
    "img1  img2 img4"
    "img1  img3 img4";
    gap: 10px;

}

.servics__item{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.servics__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.servics__item:nth-of-type(1){
    grid-area: img1;
}
.servics__item:nth-of-type(2){
    grid-area: img2;
}
.servics__item:nth-of-type(3){
    grid-area: img3;
}
.servics__item:nth-of-type(4){
    grid-area: img4;
}

.servicis__hover{
    position: absolute;
    background: #9f9ca0b6;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translate(100%);
    cursor: pointer;
    transition: transform .3s ease-in-out;
}

.servics__item:hover .servicis__hover{
    transform: translate(0%);
}



.Paragraph{
    text-align: justify;
    padding: 4px;
    margin-right: 20px;
    margin-left: 20px;
}

.Paragraph1{
    text-align: justify;
    padding: 4px;
    margin-right: 20px;
    margin-left: 20px;
    font-size: 18px;
}


/*----------Experiencia-----------*/

 .avatar1{
    float: left;
  
 }

 .Paragraph_Experenci1{
    text-align: justify;
    font-size: 18px;
    line-height: 2;
 }

/*------------- css pagina de cursos de robotica------------- */

.hero__texts1{
    text-align: right;
    padding-top: 90px;
    padding-right: 120px;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
}

.informacion{
    margin-top: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12ecf0, #24ddc4 );
    border-radius: 0 10px 0 10px;
    box-shadow: inset 6px 6px 6px #f0eded9f, inset -6px -6px 6px #f0eded9f;
    width: 100%;
}

.al{
    text-align: justify;
    font-size: 25px;
    color: var(--color-primary);
}

.SUB-TItle{
    padding-top: 15px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 25px;
    color: #07736a;
}

.robotica_paragraph{
    padding-left: 20px;
    padding-right: 20px;
    height: 95px;
    text-align: justify;
    font-size: 22px;
    margin-top: 20px;
    color: #ffffff;
}

.sub-container{
    margin: 0 auto;
    border-radius: 12px;
    max-width: 700px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.362);
   padding: 4px 5px  4px  4px;
 
}
.container .topic{
    overflow: hidden;
    font-size: 30px;
    font-weight: 80;
    margin-bottom: 5px;
}
.content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content .list{
    display: flex;
    flex-direction: column;
    width: 25%;
    margin-right: 45px;
    position: relative;
}
.content .list label{
   
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  cursor: pointer;
  padding-left: 25px;
  transition: all 0.5s ease;
  color: #333;
  z-index: 12;
}
#home:checked ~ .list label.home,
#blog:checked ~ .list label.blog,
#help:checked ~ .list label.help{
  color: #dedede;
}
.content .list label:hover{
  color: #0abbbe;
}

.content .slider{
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 100%;
  border-radius: 12px;
  background: #0abbbe;
  transition: all 0.4s ease;
}

#home:checked ~ .list .slider{
  top: 0;
}
#blog:checked ~ .list .slider{
  top: 60px;
}
#help:checked ~ .list .slider{
  top: 120px;
}

.content .text-content{
  width: 80%;
  height: 100%;
}
.content .text{
  display: none;
}
.content .text .stitle{
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
}
.content .text p{
  text-align: justify;
  margin: 10px;
}
.content .text-content .home{
  display: block;
}
#home:checked ~ .text-content .home,
#blog:checked ~ .text-content .blog,
#help:checked ~ .text-content .help{
  display: block;
}
#blog:checked ~ .text-content .home,
#help:checked ~ .text-content .home,
#code:checked ~ .text-content .home,
#about:checked ~ .text-content .home{
  display: none;
}
.content input{
  display: none;
}
/*---------- arma tu robot------------ */
.subcontainer{
    text-align: center;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;   
}


.Stitle{
    margin-left: 110px;
    margin-top: 50px;
    text-align: left;
}
.flip{
  
    margin-block-start: -38px; 
    margin-left: 530px;
    height: 60px;
    overflow: hidden;
}

.flip > div > div{
    color: #fff;
    padding: 4px 12px;
    height: 50px;
    margin-bottom: 46px;
    display: inline-block;
  
}

.flip div:first-child{
    animation: show 5s linear infinite;
}

.flip div div{
    background: #42c58a;
}

.flip div:first-child div{
    background: #4ec7f3;
}

.flip div:last-child div{
    background: #DC143C;
}

@keyframes show{
    0% {margin-top: -270px;}
    5% {margin-top: -180px;}
    33% {margin-top: -180px;}
    38% {margin-top: -90px;}
    66% {margin-top: -90px;}
    71% {margin-top: 0px;}
    99.99% {margin-top: 0px;}
    100% {margin-top: -270px;}
}

/* ---------------catalogo----------------- */

.catalogo_Container{
    overflow-x: hidden;
    position: relative;
    margin-bottom: 2rem;
   
}

.catalogo{
    
    padding-top: 0.5rem;
}

.avatar{
    
   width: 220px;
   height: 200px;
   border-radius: 15px;
   overflow: hidden;
   margin: 0 auto;
   border: 0.1rem solid #abaeaf;

   display: flex;
   justify-content: center;
   align-items: center;
}

.texto_info{
    margin-top: 10px;
    text-align: center;
}

.catalogo_body{
    margin-top: 5px;
    width: 450px;
    background: #a1efeb8a;
    padding: 0.2rem;
    margin-top: auto;
    display: flex;
   justify-content: center;
   align-items: center;
   border-radius:10px;
   border: 0.1rem solid d87dc18a;
   
}
/*-----------STEM------------*/
.STEM{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cardss{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 0 100px inset, 0 0 5px grey;
    transition: box-shadow 1s;
    float: left;
    margin: 10px;
}

.cardss::after{
    display: block;
    white-space: pre;
    font-size: 1rem;
    color: aliceblue;
    /*background: #333;*/
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px solid;
    text-align: center;
    border-radius: 8px;
    transition: opacity 1s .5s;
    text-transform: uppercase;
}

.cardss:hover{
    box-shadow: 0 0 0 5px inset, 0 0 5px #0000000f, 0 0 10px #0000000f inset;
    transition: box-shadow 1s;
    cursor: pointer;
}

.cardss:hover::after{
    opacity: 0;
    transition: opacity .5s;
}

#S{
    color: #2358e8e6;
}

#S:hover{
    background-image: url('../Imagenes/scienc.gif');
    background-size: cover;
    animation: reproducir 1s steps(40) infinite;
}

@keyframes reproduci {
    from{ background-position: 0;}
    to {background-position: -80px;}
}

#S::after{
    content: 'S';
    font-size: 150px;
}

#T{
    color: #5bec4be6;
}

#T:hover{
    background-image: url('../Imagenes/Tecnologia.gif');
    background-size: cover;
    animation: reproducir 1s steps(40) infinite;
}

#T::after{
    content: 'T';
    font-size: 150px;
}

#E{
    color: #f5ef48e6;
}

#E:hover{
    background-image: url('../Imagenes/ingenieria.gif');
    background-size: cover;
    animation: reproducir 1s steps(40) infinite;
}

#E::after{
    content: 'E';
    font-size: 150px;
}

#M{
    color: #b44debe6;
}

#M:hover{
    background-image: url('../Imagenes/matematicas.gif');
    background-size: cover;
    animation: reproducir 1s steps(40) infinite;
}

#M::after{
    content: 'M';
    font-size: 150px;
}


/*-----------pagina de microcontroladores-------------*/
/*--------------CARD2-----------*/

.slider-wrapper {
    margin: auto;
    width:1100px;
    height:470px;
    padding: 3px 0 0 110px;
  position:relative;
    overflow:hidden;
}

.slider {
    position:relative;
    width:900px;
    height: 460px;
}
.items {
    display:none
}

.pagination {
    position:absolute;
    left:30px;
    top:20px;
    z-index:99;
}
    .pagination li {padding-bottom:1px}
        .pagination li a {
            display:block;
            width:101px;
            height:70px;
            text-decoration:none;
            text-align:center;
            color:#fff;
            background:url(../Imagenes/pagination-a.png) left bottom no-repeat;
            position:relative;
            cursor:pointer;
        }
        .pagination li a:hover,
        .pagination li.current a {background-position:left top}
            .pagination li a strong {
                display:block;
                width:50px;
                height:50px;
                font-size:30px;
                line-height:50px;
                letter-spacing:-2px;
                position:absolute;
                left:10px;
                top:10px;
            }
            .pagination .item-1 strong {background:url(../Imagenes/pagin-1.png) 0 0 no-repeat}
            .pagination .item-2 strong {background:url(../Imagenes/pagin-2.png) 0 0 no-repeat}
            .pagination .item-3 strong {background:url(../Imagenes/pagin-3.png) 0 0 no-repeat}
    
.banner {
    width:280px;
    height:346px;
    padding:65px 10px 20px;
    color:#fff;
    font-size:14px;
    line-height:25px;
    font-weight:normal;
    text-align:center;
    background:url(../Imagenes/banner-bg.png) 0 0 no-repeat;
    border-radius:0 22px 22px 0;
    position:absolute;
    right:0;
    top:0;
    z-index:99;
}
.banner strong {
    display:block;
    font-size:50px;
    line-height:1.2em;
    letter-spacing:-2px;
}

.banner span {
    display:block;
    font-weight:bold;
    text-transform:uppercase;
    margin-bottom:25px;
}

.banner b {
    display:block;
    font-weight:normal;
    }
    
.button2 {
    display:inline-block;
    font-size:14px;
    line-height:40px;
    padding:0 25px;
    color:#000;
    background:#fff;
}
.button2:hover {
    color:#fff;background:#000
}
footer .button2:hover {
    background:#666
}


/*---------------card-----------*/
.container-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.card{
   
    position: relative;
    left: 0;
    width: 300px;
    height: 370px;
    transition: 0.3s ease-out;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.card .imgbox{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card .imgbox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.card .content1{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 95px;
    padding: 20px;
    background: #ff000058;
    transition: all 0.5s cubic-bezier(.48, -0.28, 0.41, 1.4);
    box-sizing: border-box;
    overflow: hidden;
}

.card:hover .content1{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.content1 p{
  
    padding: 0.5em 0.5em;
    transform: translateY(1em);
    line-height: 1em;
    transition: 0.3s;
    text-align: justify;
    opacity: 0;
}
.card:hover .content1 p{
    transform: translateY(0);
    opacity: 1;
}



 h1{
    text-align: center;
 }

 .card .content2{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 95px;
    padding: 20px;
    background: #ff800073;
    transition: all 0.5s cubic-bezier(.48, -0.28, 0.41, 1.4);
    box-sizing: border-box;
    overflow: hidden;
}

.card:hover .content2{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.content2 p{
  
    padding: 0.5em 0.5em;
    transform: translateY(1em);
    line-height: 1em;
    transition: 0.3s;
    text-align: justify;
    opacity: 0;
}
.card:hover .content2 p{
    transform: translateY(0);
    opacity: 1;
}


.card .content3{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 95px;
    padding: 20px;
    background: #f3f2f17c;
    transition: all 0.5s cubic-bezier(.48, -0.28, 0.41, 1.4);
    box-sizing: border-box;
    overflow: hidden;
}

.card:hover .content3{
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.content3 p{
  
    padding: 0.5em 0.5em;
    transform: translateY(1em);
    line-height: 1em;
    transition: 0.3s;
    text-align: justify;
    opacity: 0;
}
.card:hover .content3 p{
    transform: translateY(0);
    opacity: 1;
}
/*----------- barra de informacio ----------------*/
.informacionM{
    height: 90px;
    width: 90%; 
    background: #df3206bc;
    border-radius: 0 10px 0 10px;
    box-shadow: inset 6px 6px 6px #f0eded9f, inset -6px -6px 6px #f0eded9f;

}

.robotica_paragraphM{
    text-align: justify;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 900;
    color: #ffe8e8;
}

/*-------------Acordeon---------*/
.container .accordion{
    width: 100%;
    position: relative;
    margin-top: 30px;
    
}

.faq-paragragh{
    width: 50%;
}

.inf{
    border-radius: 10px;
    background: #52f472e3;
    box-shadow: inset 6px 6px 6px #f0eded9f, inset -6px -6px 6px #f0eded9f;
}

.why{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 15px;
    color: #44624a;
}

.ittems{
    padding-left: 20px;
    padding-bottom: 10px;
    color: #113b1a;
}

.note{
    text-align: center;
    padding-bottom: 15px;
    margin-left: 20px;
    margin-right: 20px;
    color: #113b1a;
}

.paragrahh{
    margin-top: 5%;
    text-align: justify;
}

.IMAG{
    border-radius: 5%;
    margin-top: 5%;
    margin-left: 100px;
    margin-bottom: 22px;
}

.IMAG_1{
    border-radius: 5%;
    margin-top: 5%;
}

.accordion{
    position: relative;
    display: flex;
}
.acordeon {
    width: 50%;
    padding: 2rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
        }
  
  .acordeon .bloque {
    margin: 0 0 1rem;
    padding: 1rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.acordeon .M2{
    background-color: rgb(45, 204, 210) ;
}
.acordeon .C2{
    background-color: rgba(45, 205, 210, 0.307);
}


  .acordeon .h2 {
    margin: 0 0 2rem;
    padding: 0.5rem;
    color: #ffffff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 1rem;
    -webkit-box-shadow: 0.2rem 0.2rem 0.4rem var(--sombra-ppal), -0.2rem -0.2rem 0.4rem var(--sombra-sec), inset 0 0 0 transparent, inset 0 0 0 transparent;
            box-shadow: 0.2rem 0.2rem 0.4rem var(--sombra-ppal), -0.2rem -0.2rem 0.4rem var(--sombra-sec), inset 0 0 0 transparent, inset 0 0 0 transparent;
    cursor: pointer;
  }



  .acordeon .h2:hover {
    color: #7d7676;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 0.4rem 0.4rem 0.8rem var(--sombra-ppal), inset -0.4rem -0.4rem 0.8rem var(--sombra-sec);
            box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 0.4rem 0.4rem 0.8rem var(--sombra-ppal), inset -0.4rem -0.4rem 0.8rem var(--sombra-sec);
  }

  
  .acordeon .contenido {
    margin-left: 20px;
    -webkit-box-shadow: 0.4rem 0.4rem 0.8rem var(--sombra-ppal), -0.4rem -0.4rem 0.8rem var(--sombra-sec), inset 0 0 0 transparent, inset 0 0 0 transparent;
            box-shadow: 0.4rem 0.4rem 0.8rem var(--sombra-ppal), -0.4rem -0.4rem 0.8rem var(--sombra-sec), inset 0 0 0 transparent, inset 0 0 0 transparent;
    height: 0;
    padding: 0rem;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .acordeon .contenido .l1{
    color: #625656;
    padding-left: 20px;
    padding-top: 0.5em;
  }

  .acordeon .contenido .l2{
    padding-left: 20px;
  }

  .l2_1{
    margin-top: 15px;
    padding-left: 20px;
    margin-right: 20px;
    text-align: justify;
  }

  .acordeon .bloque.activo .contenido {
    height: 5rem;
  }
/*----Aprender--------*/

.words{
    position:absolute;
    margin-left: 250px;
}

.s-title{
    color: #5a5454;
}

.rotating-words{
    color: #20b9bff0;
    display: inline;
    margin-left: 10px;
}

.rotating-words span{
    width: max-content;
    position: absolute;
    background: #87878821;
    padding-inline: 10px;
    opacity: 0;
    transform-origin: 10% 75%;
    animation: rotateWords 12s var(--d) linear infinite;

}

@keyframes rotateWords{
    5%{
        opacity: 1;
    }
    10%,
    20%{
        opacity: 1;
        transform: rotate(3deg);
    }
    15%{
        transform: rotate(-1drg);
    }
    25%{
        opacity: 0;
    }
}



/*-------pie de pagina----------------*/

.box-wrapper{
    position: relative;
    display: table;
    width: 1100p;
    margin: auto;
    margin-top: 35px;
}

.form-wrap{
    width:60%;
    height: 551px;
    padding: 30px;
    float: left;
    display: block;
    background: #ecf0f3;
}

.form-title{
    text-align: left;
    padding-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #06b09a;
}
.form-fields{
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}
.form-fields input,
.form-fields textarea{
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    padding: 20px 10px 20px 5px;
    width:100%
}
.form-fields textarea{
    height: 130px;
    resize: none;
}
.form-group{
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}
.form-fields .form-group:last-child {
    width: 96%;
}
.submit-button{
    width: 20%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;;
    font-weight: 700;
    outline: none;
    border:none;
    cursor: pointer;
    color:#fff;
    text-align: center;
    background: #47f4cf;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}
.submit-button:hover{
    background: #6cf5d797;
}

.info-wrap{
    width:40%;
    height: 551px;
    float: left;
    display: block;
    background:#ecf0f3;
    color: #1b0606;
}
.info-sub-title{
    margin-top: 15px;
    margin-left: 35px;
}
.footer .info-wrap .textBox{
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    top: -35px;
    padding-left: 140px;
}

.footer .info-wrap .textBox .infoContact{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
}
.footer .info-wrap .textBox .infoContact i{
    font-size: 2em;
    margin-right: 10px;
    color: #0ca598;
}

.footer .info-wrap .textBox .infoContact p{
    
    color: #06b09a;
}

.icon {
    color: #06b09a;  
}

.icon1{
    animation: float 2.5s ease-in-out infinite;
    margin-left: 2.5px;

}

.fa-instagram{
    animation-delay: 1s;
}

.fa-whatsapp{
    animation-delay: 2s;
}



@keyframes float{
    0% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0);
    }
}

.rrss{
    display: inline-flex;
    list-style: none;
    position: relative;
    top: -20px;
    padding-left: 140px;
}

.rrss .icon{
    position: relative;
    border-radius: 50%;
    padding: 5px;
    margin: 18px;
    width: 40px;
    height: 40px;
    font-size: 28px;  
    display: flex;
    justify-content: center;
    align-content:center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.rrss .tooltip{
    justify-content: center;
    margin-top: -20px;
    margin-left: -20px;
    position: absolute;
    top: 0;
    font-size: 18px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 2px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(175, 173, 173, 0.856);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55); 
}

.rrss .tooltip::before{

    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    bottom: -5px;
    left: 45%;
    transform: translate(-40%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.rrss .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; 
}

.rrss .facebook:hover,
.rrss .facebook:hover .tooltip,
.rrss .facebook:hover .tooltip::before{
    background: #1877F2;
    color: #fff;

}

.rrss .Instagram:hover,
.rrss .Instagram:hover .tooltip,
.rrss .Instagram:hover .tooltip::before{
    background: linear-gradient(210deg, rgba(187, 0, 255, 0.913), rgba(255, 213, 0, 0.88) 75%);
    color: #171616;
}

.rrss .Whatsapp:hover,
.rrss .Whatsapp:hover .tooltip,
.rrss .Whatsapp:hover .tooltip::before{
    background: #40f218;
    color: #fff;
    
}
@media screen and (max-width: 1117px) {
    .box-wrapper{
        width: 100%;
    }

    .form-wrap,
    .info-wrap{
        width: 100%;
        height: inherit;
        float: none;
        padding-top: 50px;
    
    }

    .form-group{
        width: 100%;
        float: none;
    }
    
    .img_pie,
    .avatar1{
        display: none;
    }
    /*
    .cuerpo label{
        visibility: visible;
        opacity: 1;
        margin-left: 660px;
    }

    .navegacion ul{
        flex-direction: column;
    }

    .navegacion ul li{
        width: 80px;
        margin-left: 10px;
        background-color: #06b09a;
    }

    .cuerpo{
        background-color: #ffffff00;
    }*/

    .Paragraph_Experenci1{
        margin-left: 20px;
        margin-right: 20px;
    }
    
}    

@media only screen and (max-width: 972px) {
    .cuerpo label{
        visibility: visible;
        opacity: 1;
        margin-left: 660px;
    }
    .navegacion ul{
        flex-direction: column;
    }
    .navegacion ul li{
        width: 80px;
        margin-left: 10px;
        background-color: #06b09a;
    }
    .cuerpo{
        background-color: #ffffff00;}

    .about{
    grid-template-columns: 1fr;
}
    .about__img{
        display: none;
    }
    .about__paragraph{
        margin-left: 20px;
        margin-right: 20px;
    }
}

/*   ----pie de pagina Raspberry-----------*/
.form-wrap1{
    width:60%;
    height: 551px;
    padding: 40px;
    float: left;
    display: block;
    padding:40px 25px 35px 25px;
    background: #ecf0f3;
}

.form-title1{
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #d72432de ;
}
.form-fields1{
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}
.form-fields1 input,
.form-fields1 textarea{
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    padding: 20px 10px 20px 5px;
    width:100%
}
.form-fields1 textarea{
    height: 150px;
    resize: none;
}
.form-group1{
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}
.form-fields1 .form-group1:last-child {
    width: 96%;
}
.submit-button1{
    width: 20%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;;
    font-weight: 700;
    outline: none;
    border:none;
    cursor: pointer;
    color:#fff;
    text-align: center;
    background: #d72432de ;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}
.submit-button1:hover{
    background: #e7515eb4 ;
}

.info-wrap1{
    width:40%;
    height: 551px;
    float: left;
    display: block;
    background:#ecf0f3;
    color: #1b0606;
}
.info-sub-title1{
    margin-top: 15px;
    margin-left: 35px;
}
.footer .info-wrap1 .textBox1{
    font-size: larger;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    top: -35px;
    padding-left: 140px;
}

.footer .info-wrap1 .textBox1 .infoContact1{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 15px;
}
.footer .info-wrap1 .textBox1 .infoContact1 i{
    font-size: 2em;
    margin-right: 10px;
    color: #d72432de 
}

.footer .info-wrap1 .textBox1 .infoContact1 p{
    
    color: #d72432de ;
}

.icon4 {
    color: #d72432de ;  
}

.icon1{
    animation: float 2.5s ease-in-out infinite;
    margin-left: 2.5px;

}

.fa-instagram{
    animation-delay: 1s;
}

.fa-whatsapp{
    animation-delay: 2s;
}



@keyframes float{
    0% {
        transform: translateY(0);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0);
    }
}

.rrss1{
    display: inline-flex;
    list-style: none;
    position: relative;
    top: -20px;
    padding-left: 140px;
}

.rrss1 .icon4{
    position: relative;
    border-radius: 50%;
    padding: 5px;
    margin: 18px;
    width: 40px;
    height: 40px;
    font-size: 28px;  
    display: flex;
    justify-content: center;
    align-content:center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
}

.rrss1 .tooltip1{
    justify-content: center;
    margin-top: -20px;
    margin-left: -20px;
    position: absolute;
    top: 0;
    font-size: 18px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 2px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(175, 173, 173, 0.856);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55); 
}

.rrss1 .tooltip1::before{

    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    bottom: -5px;
    left: 45%;
    transform: translate(-40%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.rrss1 .icon4:hover .tooltip1 {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; 
}

.rrss1 .facebook1:hover,
.rrss1 .facebook1:hover .tooltip1,
.rrss1 .facebook1:hover .tooltip1::before{
    background: #1877F2;
    color: #fff;

}

.rrss1 .Instagram1:hover,
.rrss1 .Instagram1:hover .tooltip1,
.rrss1 .Instagram1:hover .tooltip1::before{
    background: linear-gradient(210deg, rgba(187, 0, 255, 0.913), rgba(255, 213, 0, 0.88) 75%);
    color: #171616;
}

.rrss1 .Whatsapp1:hover,
.rrss1 .Whatsapp1:hover .tooltip1,
.rrss1 .Whatsapp1:hover .tooltip1::before{
    background: #40f218;
    color: #fff;
    
}




/*-----------Pagina de raspberry pi-----------*/

.informacionR{
    width: 90%;
    height: 120px;
    margin-top: 40px;
    margin-bottom: 20px;
    background: linear-gradient(90deg,#d72432de , #c61423de, #df3140de  );
    border-radius: 0 10px 0 10px;
    box-shadow: inset 6px 6px 6px #f0eded9f, inset -6px -6px 6px #f0eded9f;
    width: 100%;
}

.robotica_paragrapR{
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 25px;
    color: #ffffff;
}


.Temas{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gallery{
    --s:490px;
    display: grid;
    width: var(--s);
    aspect-ratio: 1;
    overflow: hidden;
    padding: calc(var(--s)/20);
    border-radius: 50%;
    position: relative;
}

.gallery::after{
    content: "";
    position: absolute;
    inset: 0;
    padding: inherit;
    border-radius: inherit;
    background: linear-gradient(180deg,#d72432de , #c61423de, #df3140de    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,  linear-gradient(#fff 0 0) ; 
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.gallery > img {
    grid-area: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transform-origin: 50% 120.7%;
}

.gallery::after,
.gallery > img{
    animation: m 8s infinite cubic-bezier(.5,-0.2,.5,1.2);
}

.gallery > img:nth-child(2){animation-delay: -2s}
.gallery > img:nth-child(3){animation-delay: -4s}
.gallery > img:nth-child(4){animation-delay: -6s}

@keyframes m{
    0%,3% {transform: rotate(0)}
    22%,27% {transform: rotate(-90deg)}
    47%,52% {transform: rotate(-180deg)}
    72%,77% {transform: rotate(-270deg)}
    98%,100% {transform: rotate(-360deg)}
}

.checklist{
    width: 50%;
}

.modulos{
    margin-bottom: 20px;
}

.n-modulos{
    color:#604b51de ;
    font-size: 25px;
    padding: 10px;
}
.mas{
    color:#c61423de ;
    font-size: 20px;
    padding: 25px;
}
.number{
    display: inline-block;
    }


.readMore_btn{
    border: 0px solid #fff;
    position: relative;
    width: 35px;
    height: 35px;
    display: block;
    text-align: center;
    margin: 0 20px;
    border-radius: 50%;
    padding: 6px;
    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(0deg, #ddd,#fff);
    cursor: pointer;
  }
  
  .readMore_btn:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }

  .readMore_btn .fab{
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    line-height: calc(40px - 12px);
    font-size: 24px;
    transition: .5s;
  }

  .hide{
    display: none;
  }

  .show{
    display: block;
  }

  .h1{
    display: block;
    font-size: 2.5em;
    font-weight: 200;
    color: #3d535f;
  }

  .multiText{
    color: #c61423de;
    text-transform: capitalize;
  }
/*----------Requisitos de curso----------*/

.sub-containeR{
    margin: 0 auto;
    border-radius: 12px;
    max-width: 700px;
    margin-bottom: 80px;
    margin-top: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.362);
   padding: 4px 5px  4px  4px;
 
}

.containerR .topic{
    overflow: hidden;
    font-size: 30px;
    font-weight: 80;
    margin-bottom: 5px;
}
.contentR{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contentR .listR{
    display: flex;
    flex-direction: column;
    width: 25%;
    margin-right: 45px;
    position: relative;
}
.contentR .listR label{
   
  height: 60px;
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  cursor: pointer;
  padding-left: 25px;
  transition: all 0.5s ease;
  color: #333;
  z-index: 12;
}
#homeR:checked ~ .listR label.homeR,
#blogR:checked ~ .listR label.blogR,
#helpR:checked ~ .listR label.helpR{
  color: #dedede;
}
.contentR .listR label:hover{
  color: #c61423de;
}

.sutitle{
    color: #c61423de;
}

.contentR .sliderR{
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(45deg,#c61423de , #e53746de);
  transition: all 0.4s ease;
}

#homeR:checked ~ .listR .sliderR{
  top: 0;
}
#blogR:checked ~ .listR .sliderR{
  top: 60px;
}
#helpR:checked ~ .listR .sliderR{
  top: 120px;
}

.contentR .text-contentR{
  width: 80%;
  height: 100%;
}
.contentR .textR{
  display: none;
}
.contentR .textR .stitleR{
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 500;
}
.contentR .textR p{
  text-align: justify;
  margin: 10px;
}
.contentR .text-contentR .homeR{
  display: block;
}
#homeR:checked ~ .text-contentR .homeR,
#blogR:checked ~ .text-contentR .blogR,
#helpR:checked ~ .text-contentR .helpR{
  display: block;
}
#blogR:checked ~ .text-contentR .homeR,
#helpR:checked ~ .text-contentR .homeR,
#codeR:checked ~ .text-contentR .homeR,
#aboutR:checked ~ .text-contentR .homeR{
  display: none;
}
.contentR input{
  display: none;
}
/*-------------------segundo titulo------------*/

.Title2{
   text-align: center;
   font-size: 40px;
   color: #eb0c1fde;

}

  /*------Pagina de diseno CAD-------*/

  .PARAGRAGHF{
    margin-top: 50px;
    font-size: large;
  }

/*.leters{
    margin-top: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
}

 .content4 {
    overflow: hidden;
    font-size: 35px;
    line-height: 40px;
    color: #0cc0ec;
  }
  .content4__container {
    overflow: hidden;
    height: 45px;
    padding: 0 40px;
  }
 .content4__container__text {
    display: inline;
    float: left;
    margin: 0;
  }
  .content4__container__list {
    margin-top: 0;
    padding-left: 110px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
  }
  .content4__container__list__item {
    line-height: 40px;
    margin: 0;
  }
  
  @-webkit-keyframes opacity {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  @-webkit-keyframes change {
    0%, 12.66%, 100% {
      transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
      transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
      transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
      transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
      transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
      transform: translate3d(0, -25%, 0);
    }
  }
  @keyframes opacity {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  @keyframes change {
    0%, 12.66%, 100% {
      transform: translate3d(0, 0, 0);
    }
    16.66%, 29.32% {
      transform: translate3d(0, -25%, 0);
    }
    33.32%, 45.98% {
      transform: translate3d(0, -50%, 0);
    }
    49.98%, 62.64% {
      transform: translate3d(0, -75%, 0);
    }
    66.64%, 79.3% {
      transform: translate3d(0, -50%, 0);
    }
    83.3%, 95.96% {
      transform: translate3d(0, -25%, 0);
    }
  }*/