@import url("kotori.css");

/* Estilos Globales */

html {
    font-family: 'Lato', sans-serif;
    font-size: 10px;

    --verde: #25e0db;
}



/********************
********************
Estilos Globales
********************
********************/


/******************** 
Estilos Globales - Colores
********************/

.verde {
    color: #25e0db;
}

.fondoAzul {
    background-color: var(--azul);
}

.blanco {
    background-color: white;
}

.oculto {
    display: none;
}

/******************** 
Estilos Globales - Textos
********************/

h1 {
    font-size: 10rem;
    line-height: 10rem;
    font-weight: 900;
}

h2 {
    font-size: 1.8rem;
    line-height: 2.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

h3 {
    font-family: 'kotoriRose';
    font-size: 5rem;
    letter-spacing: 2px;
}

h4 {
    font-size: 4rem;
    font-weight: 700;
}

h5 {
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 700;
}

h6 {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 400;
}

p {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
}

b {
    font-weight: 700;
    letter-spacing: 0.3px;
}

sup {
    vertical-align: super;
    font-size: 1.2rem;
}

.textoCentro {
    text-align: center;
}

.textoIzquierda {
    text-align: left;
}

.textoDerecha {
    text-align: right;
}


/******************** 
Estilos Globales - RetÃ­cula
********************/

.flex {
    display: flex;
    flex-wrap: wrap;
}

.between {
    justify-content: space-between;
}

.around {
    justify-content: space-around;
}

.center {
    justify-content: center;
}

.alignCenter {
    align-items: center;
}

.contentCenter {
    align-content: center;
}

.contentBetween {
    align-content: space-between;
}

.contentStart {
    align-content: flex-start;
}

/******************** 
Estilos Globales - Padding & Margin
********************/

.paddingHorizontal {
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
}

.paddingVertical {
    padding-top: 3%;
    padding-bottom: 3%;
    box-sizing: border-box;
}

.margenArriba {
    margin-top: 5%;
}

.margenAbajo {
    margin-bottom: 5%;
}


/******************** 
Estilos Globales - Botones
********************/

.boton {
    font-size: 1.6rem;
    line-height: 2rem;
    letter-spacing: 1px;
    padding: 10px 30px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.5s ease;
    margin: 8% 0 0 0;

}




.botonGrande p {
    font-size: 2rem;
    font-weight: 300;
}

.botonGrande p span {
    font-size: 1.4rem;
    font-weight: 100;
}

.botonGrande i {
    font-size: 1.6rem;
    margin: 0 0 0 25px;
}

.botonBlanco {
    color: #fff;
    border: 1px solid #fff;
}

.botonVerde {
    color: white;
    background-color: var(--verde);
    border: 1px solid var(--verde);
}

/******************** 
Estilos Globales - Cabeceras
********************/

.cabecera {
    width: 100%;
}

/******************** 
MENÃš - Estilos MenÃº
********************/


#menu {
    width: 100%;
    height: 90%;
    z-index: 999;
    display: flex;
    position: relative;
}

#menu a {
    font-family: 'kotoriRose';
    font-weight: 200;
    text-decoration: none;
}

.fondoMenu{
    background-color: white;
}

#izquierdaDiagonal {
    width: 5vw;
    height: 100vh;
    position:fixed;
    top: 0;
    z-index: 99;
    left: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
}

#izquierdaDiagonal h6 {
    position: absolute;
    transform: rotate(-90deg);
}

#derechaDiagonal {
    width: 5vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;

}

#derechaDiagonal h6 {
    position: absolute;
    transform: rotate(90deg);
}



#FlechaAbajo {
    width: 20vw;
    height: auto;
    position: fixed;
    bottom: 8%;
    left: 40%;
    z-index: 999;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    
    transform: translate(-50%, 0);
    cursor: pointer;
    animation: mover;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mover {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(20px, 0);
    }
}


#FlechaAbajo i {
    position:absolute;
    font-size: 40px;
}


#footer{
    width: 100vw;
    position: fixed;
    bottom: 0%;
    z-index: 999;
}

.autorFooterAbajo {
    width: 100vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    height: 4vh;
    padding: 1.7vw 0 1.7vw 0;
    font-size: 1.4rem;
    font-weight: 100;
    background-color: var(--verde);
    z-index: 99999;
}


.autorFooterAbajo p {
    font-weight: 370;
    color: white;
}

.autorFooterAbajo img {
    height: 25px;
    margin: 0 0 0 10px;
}

.abajo{
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    padding: 1.7vw 0 1.7vw 0;
    background-color: rgba(255, 255, 255, 0.99);
}



#arriba {
    width: 100vw;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.99);
}

#arriba h5{
    margin: 3% auto;
}

#arribaRedes {
    width: 12%;
    height: auto;
    position: fixed;
    top: 5%;
    right: 10%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-content: center;
    text-align: center;
}

#arribaRedes a i {
    font-size: 2rem;
    color: var(--verde);
}



/******************** 
Footer - Estilos Pie de PÃ¡gina
********************/


/** #autorFooter {
    height: 4vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.7vw 0 1.7vw 0;
    box-sizing: border-box;
    font-size: 1.4rem;
    font-weight: 100;
    background-color: var(--verde);
    z-index: 99999;
    position: relative;
}

#autorFooter p {
    font-weight: 370;
    color: white;
}

#autorFooter img {
    height: 25px;
    margin: 0 0 0 10px;
}
**/

/******************** 
Inicio - Estilos 
********************/

#header {
    height: 95vh;
    width: 100%;
}

 #cabeceraHome{
    text-align: center;
    padding: 25% 0 0 0;
}

#cabeceraHome .titulo {
    font-family: 'kotoriRose';
}

#cabeceraHome h6{
    text-align: center;
    margin-bottom: 1%;
    color: black;
}

/******************** 
Sobre mi - Estilos 
********************/

#cajaSobreMi {
    width: 100vw;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cajaSobreMi .datosSobreMi{
    text-align: right;
    margin-right: 3%;
}

#cajaSobreMi .datosSobreMi h4{
    margin-bottom: 12%;
}

#cajaSobreMi .sobreMi {
    width: 30%;
    padding: 5%;
    background-color: var(--verde);
    display: flex;
    flex-wrap: wrap;
    position: relative;
}


#cajaSobreMi .sobreMi > p {
    width: 100%;
    display: flex;
    align-content: flex-end;
    color: white;
}


/******************** 
Sobre mi version dos - Estilos 
********************/


#SobreMi {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
       
}


.descriptionSection{
    width: 50%;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
    background:  #25e0db;
    color: white;
}


.Mifoto {
    width: 100%;
}

.Mifoto img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    
}


.descriptionSection h5 {
    text-align: center;
    padding:30px 0 15px 0;
}

.descriptionSection p {
    text-align: center;
    padding:0 0 30px 0;
}

.descriptionText {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 5%;
    padding-right: 10%;
}

.descriptionText h3 {
    padding:30px 0;
}

.SobreMeTitulos{
    width: 100%;
    height: auto;
    padding: 5% 0 8% 0;
}

.SquareTitulos {
position: relative;
  width: 180px;
  height: 30px;
  z-index: -1;
  border: 5px solid #25e0db;
background-color: #25e0db;
}

.SquareTitulos h4 {
    width: 
}

/* Timeline Work Experience */

#workExperience{
    width: 100%;
    height: auto;
    padding: 8% 15% 0 15%;
}

* {
  box-sizing: border-box;
}


/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #25e0db;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 6px 20px 0 rgba(0, 0, 0, 0.12);  
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #25e0db;
  border: 4px solid #25e0db;
  top: -17px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
border-radius: 15px 0 0 15px;
    margin-bottom: 5%;
}

/* Place the container to the right */
.right {
  left: 50%;
    border-radius: 0 15px 15px 0;
    margin-bottom: 5%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
#workExperience .content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
}

/* Sobre mi - educacion */

#Education {
    width: 100%;
    height: auto;
padding: 8% 15% 0 15%;}


#Education .content {
  padding: 20px 0;
  background-color: white;
  position: relative;
  border-radius: 6px;

}

/* sobre mi- skills */

#skills {
    width: 100%;
    height: auto;
padding: 8% 15% 0 15%;}

#SkillList h5 {
    z-index: -1;
  border: 5px solid #e2e2e2;
background-color: #e2e2e2;
}


/* Make sure that padding behaves as expected */
* {box-sizing:border-box}

/* Container for skill bars */
.bar {
  width: 100%; /* Full width */
padding-bottom: 30px;
}



.skillsR {
    width: 50%;
  text-align:right; /* Right-align text */
  padding-top: 10px; /* Add top padding */
  padding-bottom: 10px; /* Add bottom padding */
padding-right:10px;
    font-size: 1.3rem;
  color: black; /* White text color */
}

.skillsL {
    width: 50%;
  text-align:left; /* Right-align text */
  padding-top: 10px; /* Add top padding */
  padding-bottom: 10px; /* Add bottom padding */
padding-left:10px;
    font-size: 1.8rem;
  color: black; /* White text color */
}

/* Skill list */

.Adobe {width: 90%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 

.Web {width: 90%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 

.HTML {width: 70%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 

.css {width: 70%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 

.WordPress {width: 70%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 

.Figma {width: 60%; 
    background-color: #e2e2e2;
    display: flex;
    justify-content: center; 
    align-items: center;
} 




/* Sobre mi - projects */

#Projects {
    width: 100%;
    height: auto;
padding: 8% 15% 0 15%;}

.sliderProjectsS {
    width: 100%;
    padding-bottom: 3%;
}


.sliderProjectsS  .carousel-cell {
    width: 25%;
    height: 300px;
    margin-right: 10px;
    background: #8C8;
}

.sliderProjectsS  .carousel-cell img{
    width: 100%;
    height: 100%;
    object-fit:cover;
}

.sliderProjectsS .flickity-prev-next-button {
  display: none;
}

.sliderProjectsS  .flickity-page-dots {
  display: none;
}


/* Sobre mi - contact */

#buttonContactAboutMe {
    width: 100%;
    height: auto;
padding: 8% 15%;
    display: grid;
    
    
}

#SayHiButton {
    width: 100%;
    display: flex;
    padding: 5% 0;
}

#SayHiButton a {
    width: 40%;
    text-align: center;
    margin: auto;
    
    
}

/******************** 
contacto - Estilos 
********************/

#cajaContacto {
    width: 100vw;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

#cajaContacto .datosContacto {
    text-align: right;
    margin-right: 3%;
}

#cajaContacto .datosContacto h3 {
    margin-bottom: 15%;
}

#cajaContacto .cajasFormulario {
    width: 30%;
    padding: 5%;
    background-color: var(--verde);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cajasFormulario input,
.cajasFormulario select,
.cajasFormulario textarea {
    position: relative;
    width: 100%;
    margin: 0 0 3% 0;
    padding: 10px 10px;
    box-sizing: border-box;
    border: 1.4px solid white;
    background-color: var(--verde);
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
}

::placeholder {
    color: white;
}

.cajasFormulario button {
    margin: 3% 0 0 0;
    border: 1.4px solid white;
    background-color: var(--verde);
    color: white;
    font-size: 1.4rem;
    display: flex;
    justify-content: flex-end;
}

.cajasFormulario input:focus,
.cajasFormulario textarea:focus {
    outline: none;
    
}

/******************** 
proyectos Scroll horizontal - Estilos 
********************/



#scrollProyectos {
    width: 200vw;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
}

#scrollProyectos .contenedorProyecto {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#scrollProyectos .contenedorProyecto a {
    text-decoration: none;
}

#scrollProyectos .contenedorProyecto .proyecto {
    width: 60vw;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: flex-end;
    text-decoration: none;
}



#scrollProyectos .contenedorProyecto .proyecto div {
    position: absolute;
    left: -8%;
    top: 20%;
    color: var(--verde);
}




/******************** 
Proyectos individuales - Estilos 
********************/

#cabeceraProyecto {
    width: 100hv;
    height: 100wv;
    
}

#cabeceraProyecto  img {
    width: 100%;
    margin-top: 9%;
}

.tituloProyecto {
    text-align: center;
    margin: 2% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tituloProyecto h3{
    margin-bottom: 1%;
}

.tituloProyecto h6{
    width: 100%;
    margin-bottom: 2%;
}

.tituloProyecto p{
    width: 60%;
    margin-bottom: 3%;
    text-align: left;
}

.tituloProyecto a{
    width: 60%;
}

.purposeText{
    text-align: left;
    margin: 2% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.purposeText h6{
    width: 60%;
    margin-bottom: 2%;
}

.purposeText p{
    width: 60%;
    margin-bottom: 3%;
}

.twoTexts{
    width: 60%;
    display:flex;
    flex-wrap:wrap;
    margin-bottom: 3%;
    justify-content:space-between;
}

.twoTexts p{
    width: 48%;
    align-content: center;
}

.twoTexts div{
    width: 48%;
    align-content: center;
}

.twoTexts div p{
    width: 100%;
    align-content: center;
}

.twoTexts div img{
    width: auto;
    height: 30%;
    margin-bottom: 5%;
    align-content: center;
}

.imagenTexts{
    text-align: left;
    margin: 0 0 2% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.imagenTexts img{
     width: 80%;
    margin-bottom: 2%;
}


#galeriaProyecto {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#galeriaProyecto  img {
    width: 84%;
    margin-bottom: 3%;
}

#galeriaProyecto .dosFotos {
    width: 84%;
    display: flex;
    justify-content: space-between;
}

#galeriaProyecto .dosFotos  img{
    width: 48%;
}

#galeriaProyecto p{
    width: 60%;
    margin-bottom: 3%;
    text-align: center;
}

#galeriaProyecto video {
    width: 60%;
    margin-bottom: 3%;
}

#galeriaOjos {
    margin: 0 8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#galeriaOjos img {
    width: 32%;
    margin-bottom: 2%;
}

#botonesProyectos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 5% 0;
}

#botonesProyectos a{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-decoration: none;
}

#botonesProyectos p{
    
    text-align: center;
    text-decoration: none;
    color: black;
}

#botonesProyectos p:hover{
    color: var(--verde);
}

#abajoProyecto {
    width: 20vw;
    height: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center; 
    font-family: 'kotoriRose';
    font-weight: 200;
    text-decoration: none;
}

#autorFooterProyectos {
    width: 100%;
    position: absolute;
    z-index: 99999;
    box-sizing: border-box;
    display: grid;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    height: 4vh;
}

#autorFooterProyectos a {
    font-family: 'kotoriRose';
    font-weight: 200;
    text-decoration: none;
}







#videoProyecto{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#videoProyecto video {
    width: 84%;
    margin-bottom: 3%;
}

#videoProyecto p {
    width: 60%;
    margin-bottom: 3%;
    text-align: center;
}

#sliderBonos {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
}

#sliderBonos .main-carousel {
    width: 50%;
}

#sliderBonos .main-carousel .carousel-cell {
    width: 100%;
}

#sliderBonos .main-carousel .carousel-cell img {
    width: 100%;
    
    
}

