@font-face {
  font-family: 'Borna-medium';
  src: url(./fonts/Borna/borna-medium-webfont.woff2) format('woff2'), /* Modern Browsers */
      url(./fonts/Borna/borna-medium-webfont.woff) format('woff'); /* Older Browsers */
  /* Optionally, you can specify font-weight and font-style */
  font-weight: 500;
  font-style: medium;
}  

@font-face {
font-family: 'Borna-regular';
src: url(./fonts/Borna/borna-regular-webfont.woff2) format('woff2'), /* Modern Browsers */
      url(./fonts/Borna/borna-regular-webfont.woff) format('woff'); /* Older Browsers */
/* Optionally, you can specify font-weight and font-style */
font-weight: 500;
font-style: medium;
}

@font-face {
font-family: 'Sentient-italic';
src: url(./fonts/Sentient/Sentient-Italic.woff2) format('woff2'), /* Modern Browsers */
      url(./fonts/Sentient/Sentient-Italic.woff) format('woff'); /* Older Browsers */
/* Optionally, you can specify font-weight and font-style */
font-weight: 400;
font-style: italic;
}

@font-face {
  font-family: 'Sentient';
  src: url(./fonts/Sentient/Sentient-Regular.woff2) format('woff2'), /* Modern Browsers */
          url(./fonts/Sentient/Sentient-Regular.woff) format('woff'); /* Older Browsers */
  /* Optionally, you can specify font-weight and font-style */
  font-weight: 400;
  font-style: regular;
  }



/* NAVBAR */

.navbar{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    width: 100vw;
    background-color: #F9F9F9;
    padding-top: 0px;
    padding-bottom: 0px;
    position: fixed;
    top: 0;
    z-index: 1000;
    
}

.barraMenu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    align-items: center;
}

.itemsNav{
  font-family: 'Borna-medium', sans-serif;
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-size: 12px;
}

.nav-link:hover{
    color: #172BE0;
}

/* FOOTER */

.footer{
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    width: 100vw;
    background-color: #F9F9F9;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;

}

.barraFooter{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    align-items: center;
}

.itemsFooter, .DesktopLink, .emailMe {
    font-family: 'Borna-medium', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 11px;
    text-decoration: none;
    color: #1E1E1E;
}

.emailMe:hover{
    color: #FE5B00;
}

.DesktopLink:hover{
    color: #FE5B00;
}


/* CONTENIDO */
.aboutmeContenido{
    padding-top: 15vh;
    padding-left: 145px;
    /* padding-right: 260px; */
    margin-bottom: 70px;
    display: flex;
    gap: 20px;
}

.aboutmeImg{
   width: 95%;
   padding-bottom: 12px;
}

span{
  font-family: 'Borna-medium', sans;
}

.contenedorImagen{
   position: relative;
}

.contenedorImagen, .columnaMedio, .columnaTres {
  order: 0;
}


.sticker{
    position: absolute;
}

.thisisme{
    bottom: 30px;
    right: -20px;
}

.astyellow{
    top: -35px;
    left: 15px;
}



.hola{
    font-family: 'Borna-medium', sans;
    font-size: 30px;
    padding-bottom: 40px;
    width: 100%;
    margin-bottom: 0px;
}

.descripcion{
    font-family: 'Sentient', serif;
    line-height: 120%;
    font-size: 18px;
    margin-bottom: 18px;
}

.liltit{
    font-size: 12px;
    font-family: 'Borna-medium';
    color: #172BE0;
    padding-top: 20px;
}

.liltit1{
    font-size: 12px;
    font-family: 'Borna-medium';
    color: #172BE0;
    padding-top: 0px;
}

.liltext{
    font-size: 12px;
    font-family: 'Borna-medium';
    margin-bottom: 5px;
}

.piefoto{
    font-size: 16px;
    font-family: 'Borna-medium',sans;
    margin-bottom: 0px;
    line-height: 115%;
}

.desktopabout{
    color: #FE5B00;
    text-decoration: none;
    cursor:pointer;
}


@media (min-width: 10px) and (max-width: 375px){
  /* NAV */
  .itemsNav {
   display: none;
   flex-direction: column;
   position: absolute;
   top: 40px;
   right: 0;
   background-color: #F9F9F9; /* Optional: background color */
   width: 100%;
   text-align: center;
   gap: 20px;
   padding: 10px 0;
}

.menu-toggle {
   display: block;
   background: none;
   border: none;
   font-size: 24px;
   cursor: pointer;
}

.barraMenu {
   width: 100%;
   justify-content: space-between;
}


.contenidoTodo{
 display: flex;
 flex-direction: column;
 padding: 130px 10px 70px 10px;
}

.columnaImagenes{
 padding-left: 0%;
 overflow-y: auto; 
 columns: 12;
 
}

.half-width, .full-width, .third-width {
 grid-column: span 6;
}

.imagenProyecto {
overflow: hidden;
height: 300px;
border-radius: 5px;

}

.image-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 10px;
padding: 50px 10px 10px;

flex-grow: 1; /* Allow this column to grow to fill the remaining space */
overflow-y: auto; /* Enable vertical scrolling */
/* Optionally, you can add styling such as background color */
}

.emailMe{
display: none;
}

.navbar{
padding-left: 0px;
padding-right: 10px;
}

.itemsNav{
font-size: 12px;
}

.EstrellaGraciaLogo{
scale: 1;
padding-left: 20px;
}

.footer{
padding-left: 20px;
padding-right: 20px;
}

.DesktopLink{
font-size: 11px;
}

.aboutmeContenido{
  padding: 0px;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.contenedorImagen{
  width: 100vw;
}

.thisisme{
  bottom: -15px;
  right: 0px;
  
  scale: 0.85;
}

.aboutmeImg{
  width: 100vw;
}

.astyellow{
  top: 30px;
  left:40px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
}

.liltext{
padding-right: 10px;
}

.piefoto{
display: none;
}

.piefotoContainer{
padding-top: 40px;
text-align: left;
}

.piefoto2{
font-size: 15px;
  font-family: 'Borna-medium',sans;
  margin-bottom: 0px;
  line-height: 110%;
  text-align: left;
  margin-bottom: 5px;
}







}



@media (min-width: 376px) and (max-width: 576px){
/* Estilos para dispositivos móviles pequeños */
 
   /* NAV */
   .itemsNav {
     display: none;
     flex-direction: column;
     position: absolute;
     top: 40px;
     right: 0;
     background-color: #F9F9F9; /* Optional: background color */
     width: 100%;
     text-align: center;
     gap: 20px;
     padding: 10px 0;
 }

 .menu-toggle {
     display: block;
     background: none;
     border: none;
     font-size: 24px;
     cursor: pointer;
 }

 .barraMenu {
     width: 100%;
     justify-content: space-between;
 }


 .contenidoTodo{
   display: flex;
   flex-direction: column;
   padding: 130px 20px 70px 20px;
 }

 .columnaImagenes{
   padding-left: 0%;
   overflow-y: auto; 
   columns: 12;
   
 }

 .half-width, .full-width, .third-width {
   grid-column: span 6;
}

.imagenProyecto {
 overflow: hidden;
 height: 300px;
 border-radius: 5px;

}

.image-grid {
 display: grid;
 grid-template-columns: repeat(6, 1fr);
 gap: 10px;
 margin-bottom: 25px;
 padding-top: 50px;
 flex-grow: 1; /* Allow this column to grow to fill the remaining space */
 overflow-y: auto; /* Enable vertical scrolling */
 /* Optionally, you can add styling such as background color */
}

.emailMe{
 display: none;
}

.navbar{
 padding-left: 0px;
 padding-right: 5px;
}

.itemsNav{
 font-size: 12px;
}

.EstrellaGraciaLogo{
 scale: 1;
 padding-left: 20px;
}

.footer{
 padding-left: 20px;
 padding-right: 20px;
}

.DesktopLink{
 font-size: 12px;
}

/* responsive about me */
.aboutmeContenido{
  padding: 0px;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.contenedorImagen{
  width: 100vw;
}

.aboutmeImg{
  width: 100vw;
}

.thisisme{
  bottom: 0px;
  right: 10px;
}

.astyellow{
  top: 30px;
  left:40px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
}

.liltext{
padding-right: 10px;
}

.piefoto{
display: none;
}

.piefotoContainer{
padding-top: 40px;
}

.piefoto2{
font-size: 16px;
  font-family: 'Borna-medium',sans;
  margin-bottom: 0px;
  line-height: 115%;
  text-align: center;
  margin-bottom: 5px;
}




}

/* MINE revisar luego  */
@media (min-width: 577px) and (max-width: 768px){
 /* Estilos para dispositivos móviles pequeños */
 
   /* NAV */
   .itemsNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #F9F9F9; /* Optional: background color */
    width: 100%;
    text-align: center;
    gap: 20px;
    padding: 10px 0;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.barraMenu {
    width: 100%;
    justify-content: space-between;
}


.contenidoTodo{
  display: flex;
  flex-direction: column;
  padding: 130px 20px 70px 20px;
}

.columnaImagenes{
  padding-left: 0%;
  overflow-y: auto; 
  columns: 12;
  
}

.half-width, .full-width, .third-width {
  grid-column: span 6;
}

.imagenProyecto {
overflow: hidden;
height: 300px;
border-radius: 5px;

}

.image-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 10px;
margin-bottom: 25px;
padding-top: 50px;
flex-grow: 1; /* Allow this column to grow to fill the remaining space */
overflow-y: auto; /* Enable vertical scrolling */
/* Optionally, you can add styling such as background color */
}

.emailMe{
display: none;
}

.navbar{
padding-left: 0px;
padding-right: 5px;
}

.itemsNav{
font-size: 12px;
}

.EstrellaGraciaLogo{
scale: 1;
padding-left: 20px;
}

.footer{
padding-left: 20px;
padding-right: 20px;
}

.DesktopLink{
font-size: 12px;
}

/* responsive about me */
.aboutmeContenido{
 padding: 0px;
 display: flex;
 /* flex-direction: column; */
 margin-top: 60px;
 flex-wrap: wrap;
}

.contenedorImagen{
 width: 100%;
}

.columnaUno{
  justify-content: start;
  padding-left: 20px;
  width: 45%;
}

.aboutmeImg{
 width: 40vw;
}

.thisisme{
 bottom: 0px;
 right: 50px;
}

.columnaMedio{
    width: 46%; /* Cada columna ocupa la mitad del espacio */
    flex: none; /* Desactiva el comportamiento flexible en esta vista */
  }



.astyellow{
 top: 10px;
 left:0px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
display: flex;
flex-direction: row;
width: 100%;
gap: 20px;
padding-top: 30px;
}

.education, .skills, .experience{
  width: 33%;

}

.liltext{
padding-right: 10px;
}

.piefoto{

}

.piefotoContainer{
padding-top: 40px;
}

.piefoto2{
  display: none;

}

.liltit{
  padding-top: 0px;
}





  

}

@media (min-width: 769px) and (max-width: 1200px) { 
  /* Estilos para tabletas */
  

  .contenidoTodo{
    display: flex;
    flex-direction: column;
    padding: 130px 20px 70px 50px;
  }

  .columnaImagenes{
    padding-left: 0%;
    overflow-y: auto; 
    columns: 12;
    
  }

  /* .half-width, .full-width, .third-width {
    grid-column: span 6;
} */

.imagenProyecto {
  overflow: hidden;
  height: 70vh;
 
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-bottom: 10px;
  padding-top: 50px;
  flex-grow: 1; /* Allow this column to grow to fill the remaining space */
  overflow-y: auto; /* Enable vertical scrolling */
  /* Optionally, you can add styling such as background color */
}

.menu-toggle {
  display: none;
}

.image-grid {
  grid-template-columns: 1fr 1fr;
}

.full-width {
  grid-column: span 6;
}

.half-width {
  grid-column: span 3;
}


.menu-toggle {
  display: none;
}

.piefoto2{
  display: none;
}

  /* RESPONSIVE CONTENIDO MÍO */
.aboutmeContenido{
padding: 0px;
display: flex;
flex-direction: column;
margin-top: 60px;
}

.contenedorImagen{
width: 100vw;
}

.thisisme{
bottom: 0px;
right: 10px;
}

.astyellow{
top: 30px;
left:40px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
}

.liltext{
padding-right: 10px;
}

.piefoto{
display: none;
}

.piefotoContainer{
padding-top: 40px;
}

.piefoto2{
font-size: 16px;
font-family: 'Borna-medium',sans;
margin-bottom: 0px;
line-height: 115%;
text-align: center;
margin-bottom: 5px;
}

.menu-toggle {
  display: none;
}

.piefoto2{
display: none;
}
/* Estilos para escritorios grandes */


.aboutmeContenido{
  padding-left: 100px;
  padding-right: 100px;
}


.columnaTres{
  width: 30%;
}

.menu-toggle {
  display: none;
}

.piefoto2{
  display: none;
}

  /* RESPONSIVE CONTENIDO MÍO */
.aboutmeContenido{
padding: 0px;
display: flex;
flex-direction: column;
margin-top: 60px;
}

.contenedorImagen{
width: 100vw;
}

.thisisme{
bottom: 0px;
right: 10px;
}

.astyellow{
top: 30px;
left:40px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
}

.liltext{
padding-right: 10px;
}

.piefoto{
display: none;
}

.piefotoContainer{
padding-top: 40px;
}

.piefoto2{
font-size: 16px;
font-family: 'Borna-medium',sans;
margin-bottom: 0px;
line-height: 115%;
text-align: center;
margin-bottom: 5px;
}


/* Estilos para dispositivos móviles pequeños */
 
 

.barraMenu {
    width: 100%;
    justify-content: space-between;
    padding-right: 10px;
}


.contenidoTodo{
  display: flex;
  flex-direction: column;
  padding: 130px 20px 70px 20px;
}






.emailMe{
display: none;
}

.navbar{
padding-left: 0px;
padding-right: 5px;
}

.itemsNav{
font-size: 12px;
}

.EstrellaGraciaLogo{
scale: 1;
padding-left: 20px;
}

.footer{
padding-left: 20px;
padding-right: 20px;
}

.DesktopLink{
font-size: 12px;
}

/* responsive about me */
.aboutmeContenido{
 padding: 0px;
 display: flex;
 flex-direction: row;
 margin-top: 60px;
 flex-wrap: wrap;
}

.contenedorImagen{
 width: 100%;
}

.columnaUno{
  justify-content: start;
  padding-left: 20px;
  width: 40%;
  box-sizing: border-box;
  
}

.aboutmeImg{
 width: 33vw;
}

.thisisme{
 bottom: 0px;
 right: 50px;
}

.columnaMedio{
    width: 45%; /* Cada columna ocupa la mitad del espacio */
    box-sizing: border-box;
  }



.astyellow{
 top: 10px;
 left:0px;
}

.hola{
font-size: 25px;
width: 100%;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 25px 20px;
}

.descripcion{
font-family: 'Sentient', serif;
line-height: 120%;
font-size: 16px;
margin-bottom: 0px;
text-align: left;
padding: 0px 50px 15px 20px;
}

.columnaTres{
padding: 0px 50px 15px 20px;
display: flex;
flex-direction: row;
width: 100%;
gap: 20px;
padding-top: 30px;
align-items: start;
}

.education, .skills, .experience{
  width: 33%;

}

.liltext{
padding-right: 10px;
}

.liltit{
  padding-top: 0px;
}



.piefotoContainer{
padding-top: 40px;
}

.piefoto2{
  display: none;

}




}

@media (min-width: 1201px) and (max-width: 1920px){
  .image-grid {
    grid-template-columns: 1fr 1fr;
}

.full-width {
    grid-column: span 2;
}

.half-width {
    grid-column: span 1;
}



.menu-toggle {
  display: none;

  }

  .menu-toggle {
    display: none;
}

.piefoto2{
  display: none;
}
  /* Estilos para escritorios grandes */


  .aboutmeContenido{
    padding-left: 100px;
    padding-right: 100px;
  }


  .columnaTres{
    width: 30%;
  }

}



    
