* {
    box-sizing: border-box;
    
}

:root {
    --primary-color: #262931;
    --secondary-color: #FF5F5F;
    --dark-bg: #222;
    --buttons: #C1FF14;
    --button-hover: #e7ffa6;
    --bg: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover{
    text-decoration: none;
}

html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--primary-color);
    font-size: 18px;
    background-color: var(--bg);
}

#page-top{
    width: 100%;
    background: linear-gradient(-45deg, #C1FF14, #C1FF14, #14D5FF, #C1FF14, #FFA285);
    background-size: 400% 400%;
    animation: gradient 20s ease infinite;
    
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


h1{
    font-family: "DM Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 0;
    margin: 0;
}

h2{
    font-family: "DM Sans", sans-serif;
}

p{
    font-size: 20px;
    font-weight: 400;
    margin: 16px 0;

}

button{
    padding: 24px;
    border-radius: 0;
    border: var(--primary-color);
    background-color: var(--buttons);
    border-radius: 999px;
    margin-right: 8px;
    font-size: 20px;
    line-height: 0;
}

button:hover{
    background-color: var(--button-hover);
}

/* variables */
:root {
    /* colors */
    --rw5-color-primary-hsl: 250, 84%, 54%;
    --rw5-color-bg-hsl: 0, 0%, 100%;
    --rw5-color-contrast-high-hsl: 230, 7%, 23%;
    --rw5-color-contrast-higher-hsl: 230, 13%, 9%;
    --rw5-color-accent-hsl: 342, 89%, 48%;
    --rw5-color-contrast-lower-hsl: 240, 4%, 85%;
  
    /* spacing */
    --rw5-space-md: 1.25rem;
    --rw5-space-lg: 2rem;
    --rw5-space-sm: 0.75rem;
    --rw5-space-xs: 0.5rem;
  
    /* typography */
    --rw5-text-sm: 0.833rem;
  }
  
  @media(min-width: 64rem){
    :root {
      /* spacing */
      --rw5-space-md: 2rem;
      --rw5-space-lg: 3.125rem;
      --rw5-space-sm: 1.125rem;
      --rw5-space-xs: 0.75rem;
  
      /* typography */
      --rw5-text-sm: 1rem;
    }
  }
  
  /* component */
  .reading-progressbar {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    color: var(--buttons);
    border: none;
    border-radius: 0;
    pointer-events: none;
    display: none;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
  
  .reading-progressbar--is-out {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  
  .reading-progressbar--is-active {
    display: block;
  }
  
  .reading-progressbar::-webkit-progress-bar {
    background-color: transparent;
  }
  
  .reading-progressbar::-webkit-progress-value {
    background-color: currentColor;
  }
  
  .reading-progressbar::-moz-progress-bar {
    background-color: currentColor;
  }
  
  .reading-progressbar__fallback {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: currentColor;
  }
  
  /* utility classes */
  .rw5-article {
    --rw5-heading-line-height: 1.22;
    --rw5-body-line-height: 1.66;
    --rw5-space-multiplier: 1.2;
  }
  
  .rw5-text-component :where(h1, h2, h3, h4) {
    line-height: var(--rw5-heading-line-height, 1.2);
    margin-top: calc(var(--rw5-space-md) * var(--rw5-space-multiplier, 1));
    margin-bottom: calc(var(--rw5-space-sm) * var(--rw5-space-multiplier, 1));
  }
  
  .rw5-text-component :where(p, blockquote, ul li, ol li) {
    line-height: var(--rw5-body-line-height, 1.4);
  }
  
  .rw5-text-component :where(ul, ol, p, blockquote, .rw5-text-component__block) {
    margin-bottom: calc(var(--rw5-space-sm) * var(--rw5-space-multiplier, 1));
  }
  
  .rw5-text-component :where(ul, ol) {
    padding-left: 1.25em;
  }
  
  .rw5-text-component ul :where(ul, ol), .rw5-text-component ol :where(ul, ol) {
    padding-left: 1em;
    margin-bottom: 0;
  }
  
  .rw5-text-component ul {
    list-style-type: disc;
  }
  
  .rw5-text-component ol {
    list-style-type: decimal;
  }
  
  .rw5-text-component img {
    display: block;
    margin: 0 auto;
  }
  
  .rw5-text-component figcaption {
    margin-top: calc(var(--rw5-space-xs) * var(--rw5-space-multiplier, 1));
    font-size: var(--rw5-text-sm);
    text-align: center;}
  
  .rw5-text-component em {
    font-style: italic;
  }
  
  .rw5-text-component strong {
    font-weight: bold;
  }
  
  .rw5-text-component s {
    text-decoration: line-through;
  }
  
  .rw5-text-component u {
    text-decoration: underline;
  }
  
  .rw5-text-component mark {
    background-color: hsla(var(--rw5-color-accent-hsl), 0.2);
    color: inherit;
  }
  
  .rw5-text-component blockquote {
    padding-left: 1em;
    border-left: 4px solid hsl(var(--rw5-color-contrast-lower-hsl));
    font-style: italic;
  }
  
  .rw5-text-component hr {
    margin: calc(var(--rw5-space-md) * var(--rw5-space-multiplier, 1)) auto;
    background: hsl(var(--rw5-color-contrast-lower-hsl));
    height: 1px;
  }
  
  .rw5-text-component > *:first-child {
    margin-top: 0;
  }
  
  .rw5-text-component > *:last-child {
    margin-bottom: 0;
  }
  
  .rw5-text-component.rw5-line-height-xs {
    --rw5-heading-line-height: 1;
    --rw5-body-line-height: 1.1;
  }
  
  .rw5-text-component.rw5-line-height-sm {
    --rw5-heading-line-height: 1.1;
    --rw5-body-line-height: 1.2;
  }
  
  .rw5-text-component.rw5-line-height-md {
    --rw5-heading-line-height: 1.15;
    --rw5-body-line-height: 1.4;
  }
  
  .rw5-text-component.rw5-line-height-lg {
    --rw5-heading-line-height: 1.22;
    --rw5-body-line-height: 1.58;
  }
  
  .rw5-text-component.rw5-line-height-xl {
    --rw5-heading-line-height: 1.3;
    --rw5-body-line-height: 1.72;
  }
  
  .rw5-padding-y-lg {
    padding-bottom: var(--rw5-space-lg);
  }

/* end read progress bar */



.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;

}

video:focus {
    outline:0;
}

button:focus {
    outline:0;
}

.nav {
    padding: 16px 16px;
    z-index: 5;
    display: flex;
    width: 100%;
    top:0;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    display: flex;
    padding: 0 56px 0 0;
    align-items: center;
    margin: 0;
}

.nav a.active {
    font-weight: 700;
}

.logo svg{
    width: 32px;
    margin-left: 24px;
    fill: var(--primary-color);
}

.logo svg:hover{
    fill: var(--secondary-color);
}

.nav li {
    list-style: none;
    font-weight: 400;
    padding-left: 40px;
    font-size: 20px;
    display: inline-block;
}

.nav svg{
    margin-left: -24px;
}

.idioma {
    display: flex;
    align-items: flex-end;
    margin-right: 24px;
    width: 200px;
    height: 70px;
}


.lng-btn {
    border: 0;
    padding: 32px;
    background-color: transparent;
}

.lng-btn:hover{
    border: 0;
    padding: 32px;
    background-color: rgba(193, 255, 20, .3);
    color: rgba(0,0,0,0.5);

}

.lng-btn.active {
    background-color: var(--buttons);
    box-shadow: none;
    color: var(--primary-color);
}

.mobile{
    display: none;
}


.social{
    display: flex;
    float: right;
    margin-right: -32px;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.social svg{
    width: 24px;
    margin-right: 32px;
}

.icon:hover{
    fill: var(--secondary-color);
}

#about:hover {
    text-decoration: underline;
}

#note:hover {
    text-decoration: underline;
}

#home:hover {
    color: var(--secondary-color);
}

.header{
    margin-top: 200px;
    margin-left: 156px;
}

#first{
    padding-top: 80px;
}

#first-single{
    margin-top: 5%;
}

.work{
    background-color: var(--bg);
    width: 100%;   
}

.confidential{
    display: none;
    position: absolute;
    max-width: 648px;
    padding: 50px;
    height: 409px;
    z-index: 2;
}

.image:hover .confidential{
    background-color:rgba(255,255,255, 0.9);
    display: inline-block;
}

.project{
    width: 80%;
    display: flex;
    flex-direction: row;
    margin: 40px auto;
    align-items: center;
    max-width: 1500px;
}

.project h1 {
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.project p {
    text-align: left;
    line-height: 1.4;
    font-weight: 400;
    color: var(--primary-color);
}

.project img{
    width: 100%;
}

.img-container{
 position: relative;
 width: 700px;
 overflow: hidden;

 border-radius: 4px;
 }


image{
    overflow: hidden;
}

.image img{

    z-index: 1;
    width: 100%;
    max-width: 900px;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.image:hover img {
    -webkit-transform: scale(1.20);
    transform: scale(1.20);
    }

.image img {
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    }

.company {
    width: 50%;
    margin: 0 0 0 24px;
}


.company .time{
    opacity: .5;
}

#contact{
    display: none;
}

.private{
    margin-bottom: 8px !important;
}

/*aboutme-start*/

.about {
    width: 100%;
    max-width: 650px;
    margin: 80px auto;
}

.note{
    width: 100%;
    max-width: 600px;
    margin: 232px auto;
    position: relative;
}

.note p{
    text-align: center;
}


.about-wrap {
    text-align: left;
    margin: 100px auto;
    display: block;
    width: 70%;
    max-width: 1500px;
}

.about-wrap h1{
    font-size: 32px;
    line-height: 1;
}

.about-wrap img{
    margin: 0 auto;
    border-radius: 8px;
    position: relative;
    display: block;
}

.about-block{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 120px 0;
}

.about-block img{
    width: 400px;
}

.aboutme{
    width: 50%;
    font-size: 1.5rem;
    line-height: 1.5;
}

.aboutme a{
    text-decoration: underline;
}

.about-wrap p{
font-size: 1.1rem;
}

.about-more{
    margin: 100px auto;
    width: 80%;
    max-width: 1500px;
}

.about-more h1{
    font-size: 32px;
}

.about-principles{
    display: flex;
    text-align: center;
}

.principle{
    margin: 40px;
    width: 33.33%;
}

.principle img{
    height: 32px;
    width: 32px;
}

.video{
    display: flex;
    justify-content: center;
}

.meimg{
    width: 10%;

}

.blog-wrap{
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}


.date {
    font-size: 12px;
    justify-content: center;
    font-weight: 400;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    bottom: 0;
}

#meetup a:hover{
    color: var(--secondary-color)
}

.about-wrap .date {
    bottom: 0;
}

.pic{
    width: 150px;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    margin-top: 150px;

}

.bigtitle{
    font-family: 'IBM Plex Mono', monospace;
    font-size: 40px;
    margin: 100px 0 24px 0;
    text-align: left;
    line-height: 1;
}

.intro{
    display: grid;
    width: 90%;
    max-width: 1450px;
    margin: -80px auto 0;
    height: 100vh;
}

.center-header{
    place-self: center;
}

.intro h1{
    font-size: 70px;
    line-height: 1;
    text-align: left;
    margin-bottom: 40px;
}

.intro a{
    text-decoration: underline;
}

.intro p{
    position: relative;
    text-align: center;
    margin-top: 40px;
    line-height: 1.3;
    color: rgba(0,0,0,0.6);
    width: 100%;
    padding: 0 100px;
}

.tags{
    margin: 24px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.tags span{
    font-family: 'IBM Plex Mono', monospace;
    padding: 10px 16px;
    margin: 4px;
    background-color: rgba(0,0,0,0.06);
    font-weight: 400;
    font-size: 28px;

}


.bio{

    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.bio img{
    position: absolute;
    margin: 6px 179px;
}

.bio-uno{
    padding-left: 24px;
}

/*scroll-starts*/ 

.down-arrow {
    position: absolute;
    top: calc(100vh - 80px);
    left: calc(50% - 1px);
    width: 0;
    height: 33px;
    border: 2px solid;
    border-radius: 2px;
    animation: jumpInfinite 1.5s infinite;
    color: var(--primary-color);
  }
  
  .down-arrow:after {
    content: " ";
    position: absolute;
    top: 12px;
    left: -10px;
    width: 16px;
    height: 16px;
    border-bottom: 4px solid;
    border-right: 4px solid;
    border-radius: 4px;
    transform: rotateZ(45deg);
  }
  
  @keyframes jumpInfinite {
    0% {
      margin-top: 0;
    }
    50% {
      margin-top: 20px;
    }
    100% {
      margin-top: 0;
    }
  }

/*scroll-ends*/  


.about h1 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 32px;
    margin: 32px 0;
    text-align: center;
    line-height: 1;
}

.about p {
    line-height: 1.6;
    font-weight: 400;
    text-align: center;

}

.about a{
    color: var(--secondary-color);
}

.about a:hover{
    cursor: pointer;
    opacity: .8;
}

.cv{
    margin: 24px 0 0 0;
    font-size: 24px;
    text-align: center;
}

.cv a:hover{
    color: var(--secondary-color)
}

/*aboutme-ends*/

/*singlepage-start*/

.single{
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    text-align: left;
}

.single i{
opacity: .5;
}

.single h1{
    line-height: 1;
    margin: 32px 0 16px 0;
    font-size: 32px;
    text-align: center;
}

.single h2{
    line-height: 1;
    margin-top: 56px;
    font-size: 28px;
    text-align: center;
}

.single p{
    margin: 16px auto;
    max-width: 700px;
    text-align: center;
}

.single img{
    width: 80%;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
    margin-bottom: 56px;
}

.single video{
    display: block;
    margin: 0 auto;
    -webkit-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    -moz-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
}

.single a{
    color: var(--secondary-color);
}

.slider:before {
    height: 20px;
    width: 20px;
}

/*Migu*/  

.migu{
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    text-align: left;
    font-family: "Baloo 2", sans-serif;
}

.migu p{
    font-size: 20px;
}

.migu h2{
    font-family: "Baloo 2", sans-serif;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.miguhead{
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1500px;
    margin-top: 15%;
    background-color:#FEF9EE ;
    border-radius: 24px;
    height: 450px;
}

.miguhead img{
    width: 40%;
}

.miguhead h1{
    text-align: center;
    color:var(--primary-color) ;
}

.miguvid {
    width: 50%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.miguhead video{
    border-radius: 8px;
    width: 50%;

}

.migulogo{
    width: 50%;
    max-width: 800px;
    display: block;
    margin-left: 2%;
}

.migulogo img{
    width: 40%;
    margin: 0 auto;
    display: flex;
}

.migulogo p{
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    color: #00B368;
}

.migu-context{
    margin: 120px 0 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.migu h1{
    text-align: center;
    font-size: 40px;
    font-family: "Baloo 2", sans-serif;;
    font-weight: 800;
    line-height: 1;
}

.migu-numbers{
    margin: 60px 0;
    display: flex;
    
}

.migu-numbers h1{
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
}

.migu-numbers p{
    color: var(--primary-color);
}

.number-box{
    background-color:#FEF9EE ;
    border-radius: 12px;
    padding: 24px;
    margin: 0 8px;
    text-align: center;
    width: 33.33%;
}

.img-grande{
    width: 80%;
    margin: 90px auto;
}

.img-grande img{
    width: 100%;
}

.migusubtitle{
    margin: 200px 0 0 0;
}

.miguinte{
    text-align: center;
    margin-top: 60px;
}

.miguentrada{
   width: 100%;
}

.migusoft{
    margin-top: 120px;
}

.migusoft img{
    margin: 24px auto;
    max-width: 1000px;
    width: 100%;
    display: block;
}

#migufin{
    margin: 200px 0;
}

/*Migu-end*/ 

.study{
    text-align: center;
}

.study p{
    text-align: center;
    margin-bottom: 0;
}

.study h1{
    text-align: center;
    margin-top: 8px;
}

.sw-wrap {
    margin: 100px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1100px;
}

.sw-wrap img{
    width: 50%;
    margin-bottom: 0;
}

.sw-start{
    width: 50%;
    margin-left: 24px;
}

.sw-start h1{
    margin-top: 0;
    line-height: 1.2;
    font-size: 32px;
    text-align: left;
}

.dashedline{
    margin: 120px auto;
    width: 50%;
    border-top: dashed 1px #A7A7A7;
}

#fullwidth{
    width: 100%;
    max-width: 100%;
}

  /*singlepage-ends*/

/*singlepage-ends*/

.portfolio_dos {
    width: 100%;
    max-width: 830px;
    margin: 0 auto 120px;
    position: relative;
    text-align: left;
    padding: 56px 0 0 108px;
}

.contenedor p{
    color: var(--primary-color);
    opacity: 0.6;
    margin: 0 0 32px 0;
    font-size: 16px;
}

.portfolio_dos h1{
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    line-height: 1;
}

#uikit{
    width: 550px;
}

.portfolio_dos img {
    width: 656px;
}

.portfolio_dos video{
    margin: 0 24px 24px 0;
    -webkit-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    -moz-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
}

.portfolio_dos .contenedor {
    margin-bottom: 80px;
}

.portfolio {
    width: 100%;
    max-width: 928px;
    margin: 0 0 0 20%;
}

.portfolio img {
    width: 100%;
}

.exp_proj{
    padding-top: 64px;
    padding-left: 40px;
}

.rec{
    width: 180px;
    display: inline-block;
    vertical-align: top;
}

.edit{
    width: 500px;
    display: inline-block;
    vertical-align: top;
}

.back a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.back a:hover{
    color: var(--secondary-color);
}

.back span{
    display: inline;
    margin: 0 8px 0 0;
}

.back p{
    display: inline;
}

.proto {
    width: 100%;
    margin-left: 20%;
    margin-top: 24px;
    font-size: 20px;
}

.proto a:hover{
    color: var(--secondary-color);
}

.proto i {
    opacity: 0.8;
    font-size: 19px;
    position: relative;
    top: 4px;
    left: 2px;
}

.mvp-text{
    display: block;
}

.footer {
    display: flex;
    margin: 56px auto;
}

.footer img{
    width: 100%;
    padding: 24px;
    transition: all 0.5s ease;
    display: inline-block;
    justify-content: space-between;
}

.footer img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.footer a {
    font-size: 16px;
    justify-content: center;
    align-items: center;
}

.next {
    right: 40%;
}

.prev{
    left: 40%;
}

.next:hover{
   color: var(--secondary-color);
}

.log_uno{
    width: 416px !important; 
    -webkit-box-shadow: -2px 4px 10px -2px rgba(0,0,0,0.12);
    -moz-box-shadow: -2px 4px 10px -2px rgba(0,0,0,0.12);
    box-shadow: -2px 4px 10px -2px rgba(0,0,0,0.12);
    
}

.log_dos{
    width: 416px !important;
    margin: -56px 0 0 232px;
    -webkit-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    -moz-box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
    box-shadow: -2px 4px 17px -2px rgba(0,0,0,0.18);
}

.icons{
    width: 32px !important;
    margin: 0px 8px 0 0;
}

.iconsxl{
    width: 60px !important;
    margin: 0px 8px 0 0;
}

.iconsxxl{
    width: 140px !important;
    margin: 32px 8px 60px 0;
}

.type{
    width: 600px;
    margin: 32px 8px 60px 0;
}

.color{
    width: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 4px;
    margin: 0px 8px 0 0;
}

.ilu{
    width: 200px !important;
    display: inline-block;
    margin: 0 0 40px 0;
}

.hand{
    width: 16px;
    display: block;
    margin: 0 auto;
    animation-name: wave-animation;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    transform-origin: 100% 105%;
  }
  
  @keyframes wave-animation {
      0% { transform: rotate(  0.0deg) }
     10% { transform: rotate(-10.0deg) }
     20% { transform: rotate( 12.0deg) }
     30% { transform: rotate(-10.0deg) }
     40% { transform: rotate(  9.0deg) }
     50% { transform: rotate(  0.0deg) }
    100% { transform: rotate(  0.0deg) }
  }

.contact_ico{
    width: 32px;

}

#icon{
    fill: var(--primary-color)
}

#icon:hover{
    fill: var(--secondary-color);
}

.contact{
    margin-left: 64px;
}

.sitemap{
    width: 770px !important;
    margin-left: -50px;
}

.logos{
    width: 700px;
    margin-bottom: 100px;
}

.more{
    text-transform: uppercase;
    text-align: center;
    opacity: .5;
    margin-bottom: 8px;
}

.line{
    border-top: 1px solid black;
    display: block;
    margin: 100px auto 0;
    width: 100%;
    opacity: .1;
}

#blog {
    padding: 0 0 80px 0;
    border-radius: 16px;
    margin: 0px auto 0;
}

#blog .row{
    display: flex;
    flex-wrap: wrap;
}

figure {
    display: none;
}

#blog h1{
    padding: 80px 0;
    text-align: center;
    font-size: 40px;
    margin-bottom: 24px;
}

#blog p{
    text-align: left;
}

#blog h3{
    text-align: left;
    font-size: 18px;
    margin-top: 0;
    height: 80px;
    font-family: 'IBM Plex Mono', monospace;
    
}

#blog .container{
    padding: 0;
}
  

.blog-post {
    width: 100%;
    margin: 0 auto;
    background-color: #fcfcfc;
    padding: 24px;
    box-shadow: 6px 6px 0px -1px rgba(0,0,0,0.32);
}

.blog-post:hover {
    transform: translateY(0.25em);
    box-shadow: none;
}

  
.blog-post .bg-image {
    width: 100%;
    height: 170px;
    background-size: 100% auto;
    margin-bottom: 24px
}
  
.blog-post img {
    width: 100%;
}

.blog-post a {
    text-decoration: none;
}


  
.blog-post p {
    font-size: 14px;
}

.btn svg{
    width: 24px;
    height: 20px;
}

.thanks{
    margin-top: 80px;
}

.thanks h2{
    text-align: center;
}

.thanks p{
    text-align: center;
}

.youtube{
    display: flex;
    justify-content: center;
    margin: 0 auto 80px;
}


@media only screen and (max-width: 800px) {

    .main{
        padding: 0;
    }

    .center-header{
        margin-top: -100px;
    }

    .idioma{
        width: 178px;
        height: 1%;
    }

    .intro{
        margin: 0 auto;
        max-width: 600px;
    }

    .intro h1{
        font-size: 45px;
        margin: 0;
    }

    .intro p{
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

    .tags span{
        font-size: 14px;
        padding: 8px;
    }

    .down-arrow{
        display: none;
    }

    #first{
        padding-top: 24px;
    }

    .project{
        width: 90%;
        margin: 40px auto;
    }

    .img-container{
        width: 270px;
    }

    .company h1{
        font: 16px;
    }

    .company p{
        font-size: 14px;
    }

    .thanks{
        margin-top: 80px;
    }

    .body-about{
        padding: 0 16px;
    }

    .aboutme h1{
        line-height: 1;
    }

    .about-wrap{
        align-items: flex-start;
        margin-top: 40px;
    }

    .about-wrap img{
        width: 240px;
    }

    .about-principles{
        display: inline-block;
    }

    .principle{
        width: 100%;
    }

    .aboutme{
        display: inline-block;
        line-height: 1.5;
        text-align: center;

    }

    .dashedline{
        margin: 40px auto;
    }

    .blog-post{
        padding: 16px;
    }


}

@media only screen and (max-width: 600px) {

    .main{
        padding: 0;
    }

    .work{
        display: none;
    }



    .nav {
        margin-top: 0;
        padding-top: 24px;
        width: 100%;
        position: relative;
    }

    

    .nav svg {
        display: block;
        margin: 8px auto 0;
    }

    .nav ul {
        
        margin: 0;
        padding: 0 16px;
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .nav ul li {
        margin: 0;
        font-size: 16px;
        padding: 0;
    }

    .center-header{
        margin-top: -100px;
    }

    .intro{
        margin: 0 auto;
        max-width: 400px;
    }

    .intro h1{
        font-size: 33px;
        margin: 0;
    }

    .intro p{
        font-size: 16px;
        padding: 0;
        margin: 0;
    }

    .tags span{
        font-size: 14px;
        padding: 8px;
    }

    .down-arrow{
        display: inline-block;
    }

    .project{
        display: none;
    }

    #note{
        display: none;
    }

    .idioma{
        display: none;
    }

    .hand{
        padding: 0;
    }

    .mobile{
        display: flex;
        align-items: center;
        padding: 80px 24px;
        display: inline-block;
        text-align: center;
    }

    .bigtitle{
        width: 100%;
        text-align: center;

    }

    .bio{
        width: 100%;
    }


    .social{
        padding: 0 16px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

    }

    .idioma{
        margin-left: 0;
    }

    #first{
        padding: 80px 0 0 0;
    }

    .about-wrap{
        display: block;
        width: 100%;
        padding: 0 24px;
    }

    .about-wrap img{
        display: block;
        padding: 0;
        margin: 40px auto;
        width: 250px;
    }

    .about-wrap .date{
        position: relative;
        margin-top: 100px;
    }

    .aboutme{
        width: 100%;
        margin: 8px 0;
        font-size: 1.2rem;
    }

    .about {
        padding: 16px;
        text-align: center;
        margin: 0px;
    }


    .about-block{
        display: inline;
    }

    #contact{
        display: inline-block;
    }

    .nav a.active {
        left: 0;
    }

    .image{
        position: relative;
        margin: 0 auto;
        width: 100%;
    }

    .project {
        padding: 8px;
        width: calc(100% - 0px);
        text-align: center;
    }

    .project h1 {
        text-align: center;
        line-height: 1;
    }

    .project p{
        text-align: center;
        opacity: 0.5;
    }

    .portfolio_dos{
        margin-top: 148px;
        padding: 0;
    }

    .portfolio_dos h1{
        text-align: center;
    }

    .contenedor{
        padding: 0 16px;
    }

    .portfolio_dos img{
        width: 100%;
    }

    .portfolio_dos .contenedor{
        margin-bottom: 32px;
    }

    #uikit{
        width:100%;
    }

    .contenedor video{
        width: 100%;
        margin: 24px 0 0 0;
    }

    .footer a {
        font-size: 16px;
    }

    .portfolio {
        margin: 130px 0 0 0;
    }

    .prev{
        left: 10px;
    }

    .next { 
        right: 10px;
    }

    .cta{
        display: none;
    }

    .close{
        display: none;
    }

    label {
        display: block;
        font-weight: 400;
        font-size: 14px;
        color: var(--primary-color);
    }

    input[type=text] {
        width: 90%;
        height: 56px;
        margin: 0 0 200px 0px;
        background-color: transparent;
        color: var(--primary-color);
    }

    input[type=text]:focus {
        border-bottom: 1px solid var(--secondary-color);
    }

    .btn {
        margin: 80px 0 0 0px;
        width: 90%;
    }

    .btn:hover {
        background-color: rgb(175, 45, 45);
    }

    .exp_proj img{
        max-width: 100px;

    }

    .log_uno {
        width: 200px !important;
    }

    .log_dos {
        width: 200px !important;
        margin: -15px 0 0 90px;
    }

    .contenedor p{
        text-align: center;
    }

    .note{
        text-align: center;
        margin:0;
    }

    .single img{
        width: 100%;
        padding: 0 16px;
    }

    .single h2{
        text-align: center;
        padding:0 16px;
    }

    .single p{
        text-align: center;
        padding: 0 16px; 
    }

    .single video{
        width: 100%;
        padding: 0 16px;
    }

    .date{
       margin-top: 0;
    }

    .thanks{
        margin-top: 0;
    }

    .thanks h2{
        text-align: center;
    }

    .footer{
        padding: 0;
        flex-direction: column;
    }

    #blog {
        padding: 0 16px 80px 16px;
        border-radius: 16px;
        margin: 0;
    }

    #blog h1{
        line-height: 1;
        padding: 0 0 80px 0;
    }

    .sticky-content {
        font-size: 1.5rem;
      }
      .container-inner {
        width: 50%;
      }
    }
    
    @media screen and (min-width: 768px) {
      .sticky-content {
        font-size: 1.5rem;
      }
      .container-inner {
        width: 50%;
      }
    }
    
    @media screen and (min-width: 1024px) {
      .sticky-content {
        font-size: 1.875rem;
      }
      .container-inner {
        width: 25%;
      }

}

/*

@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--dark-bg);
    }

    body, html {
        color: white;
    }

    .cta {
        background-color: var(--dark-bg);
    }

    a {
        color: white;
    }

    .btn {
        color: white;
        background-color: var(--dark-bg);
        border: 1px solid white;
    }

    input[type=text], textarea {
        border: 1px solid white;
    }

    .mousey {
        border: 2px solid white;
    }

    .scroller {
        background-color: white;
    }

    .logo svg{
        fill: white;
    }

    .about img {
        display: none;
    }
}