@charset "UTF-8";
h1,
h2 {
  font-family: "Lexend Giga";
  font-weight: 400;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

h1,
h2 {
  font-family: "Lexend Giga";
  font-weight: 400;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

.mkbtn {
  padding: 10px 20px;
  background-color: #009E66;
  color: #FFFFFC;
  border-radius: 20px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}
.mkbtn:hover {
  background-color: #37BF32;
  transform: scale(1.1);
}

.mkbtn_download {
  padding: 10px 20px;
  background-color: #009E66;
  color: #FFFFFC;
  border-radius: 20px;
  margin-top: 20px;
  transition: transform 0.3s ease;
  border: none;
}
.mkbtn_download:hover {
  background-color: #37BF32;
  transform: translateY(-5px);
}

.portfolio button {
  padding: 10px 20px;
  font-size: 0.8rem;
  background-color: transparent;
  color: #009E66;
  border-color: #009E66;
  border-radius: 5px;
  transition: transform 0.3s ease;
}
.portfolio button:hover {
  transform: scale(1.1);
}

.link_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.link_wrapper {
  position: relative;
  height: 35px;
  width: 125px;
  margin: 3px;
}
.link_wrapper input {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
}
.link_wrapper input:checked + .btn {
  --primary: #009E66;
  --shadow-primary: #ffffff;
}
.link_wrapper input:hover + .btn {
  --primary: #1F7A8C;
  --font-size: 11px;
}

.btn {
  --primary: #264653;
  --shadow-primary: #A8DADC;
  --color: #ffffff;
  --font-size: 9px;
  --shadow-primary-hue: 180;
  --shadow-secondary-hue: 60;
  --shadow-secondary: #000000;
  --clip: polygon(11% 0, 95% 0, 100% 25%, 90% 90%, 95% 90%, 85% 90%, 85% 100%, 7% 100%, 0 80%);
  --border: 5px;
  --shimmy-distance: 5;
  --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  color: var(--color);
  text-transform: uppercase;
  font-size: var(--font-size);
  letter-spacing: 3px;
  position: relative;
  font-weight: 900;
  width: 100%;
  height: 100%;
  line-height: 38px;
  text-align: center;
  transition: background 0.2s, 0.3s;
}
.btn .number {
  background: var(--shadow-primary);
  color: #323232;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  width: 15px;
  height: 6px;
  top: 0;
  left: 81%;
  line-height: 6.2px;
}

.btn:after,
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: var(--clip);
  z-index: -1;
}

.btn:before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
}

.btn:after {
  background: var(--primary);
}

.btn_glitch {
  position: absolute;
  top: calc(var(--border) * -1);
  left: calc(var(--border) * -1);
  right: calc(var(--border) * -1);
  bottom: calc(var(--border) * -1);
  background: var(--shadow-primary);
  text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
  clip-path: var(--clip);
  animation: glitch 2s infinite;
  display: none;
}

.input:hover + .btn,
.btn_glitch {
  display: block;
}

.input:checked + .btn,
.btn_glitch {
  display: block;
  animation: glitch 5s infinite;
}

.btn_glitch:before {
  content: "";
  position: absolute;
  top: calc(var(--border) * 1);
  right: calc(var(--border) * 1);
  bottom: calc(var(--border) * 1);
  left: calc(var(--border) * 1);
  clip-path: var(--clip);
  background: var(--primary);
  z-index: -1;
}

@keyframes glitch {
  0% {
    clip-path: var(--clip-one);
  }
  2%, 8% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  6% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  9% {
    clip-path: var(--clip-two);
    transform: translate(0, 0);
  }
  10% {
    clip-path: var(--clip-three);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  13% {
    clip-path: var(--clip-three);
    transform: translate(0, 0);
  }
  14%, 21% {
    clip-path: var(--clip-four);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  25% {
    clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  30% {
    clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }
  35%, 45% {
    clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * -1%));
  }
  40% {
    clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * 1%));
  }
  50% {
    clip-path: var(--clip-six);
    transform: translate(0, 0);
  }
  55% {
    clip-path: var(--clip-seven);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }
  60% {
    clip-path: var(--clip-seven);
    transform: translate(0, 0);
  }
  31%, 61%, 100% {
    clip-path: var(--clip-four);
  }
}
/* Theme */
.toggle-switch {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 100px;
  height: 50px;
  --light: #d8dbe0;
  --dark: #28292c;
  --link: rgb(27, 129, 112);
  --link-hover: rgb(24, 94, 82);
  z-index: 1000;
}
@media (max-width: 768px) {
  .toggle-switch {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    width: 60px;
    height: 30px;
  }
}

.switch-label {
  position: absolute;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid var(--dark);
}
@media (max-width: 768px) {
  .switch-label {
    height: 30px;
    border-radius: 15px;
  }
}

.checkbox {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .slider {
    border-radius: 15px;
  }
}

.checkbox:checked ~ .slider {
  background-color: var(--light);
}

.slider::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-shadow: inset 12px -4px 0px 0px var(--light);
  background-color: var(--dark);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .slider::before {
    top: 5px;
    left: 5px;
    width: 15px;
    height: 15px;
  }
}

.checkbox:checked ~ .slider::before {
  transform: translateX(50px);
  background-color: var(--dark);
  box-shadow: none;
}
@media (max-width: 768px) {
  .checkbox:checked ~ .slider::before {
    transform: translateX(30px);
  }
}

@media (max-width: 768px) {
  .link_container {
    max-width: 500px;
  }
  .link_wrapper {
    height: 35px;
    width: 80px;
  }
  .btn {
    font-size: 6px;
  }
}
h1,
h2 {
  font-family: "Lexend Giga";
  font-weight: 400;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

.card {
  position: relative;
  width: 280px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
}
.card__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: filter 0.3s ease-in-out;
}
.card__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.card__content .card__title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.card__content .card__description {
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  margin-bottom: 1rem;
}
.card__content .card__links {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.card:hover .card__background {
  filter: brightness(0.7);
}
.card:hover .card__content {
  transform: translateY(0);
}
.card:hover .card__title {
  transform: translateY(0);
}
.card:hover .card__description {
  opacity: 1;
  max-height: 100px;
}
.card:hover .card__links {
  opacity: 1;
  transform: translateY(0);
}
.card .card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.card .card__icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.2s ease-in-out;
}
.card .card__icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.card .card__icon:hover img {
  filter: none;
}
.card .card__icon--github:hover {
  background-color: #4D13BD;
}
.card .card__icon--jira:hover {
  background-color: #0052cc;
}
.card .card__icon--web:hover {
  background-color: #37BF32;
}

@media (max-width: 768px) {
  .card {
    width: 190px;
    height: 150px;
    border-radius: 30px;
  }
}
body {
  font-family: "Poppins", sans-serif;
  color: #9F9F9F;
  background-color: #0d0a0b;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  #Social Bar styles
\*------------------------------------*/
.socialBar {
  position: fixed;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  border-radius: 1.25rem;
}
.socialBar .socialBar_red {
  padding: 0.625rem;
  transition: all 0.3s ease;
}
.socialBar .socialBar_red img {
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.3s ease;
}
.socialBar .socialBar_red:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(40%) saturate(500%) hue-rotate(110deg) brightness(90%) contrast(100%);
}

/*------------------------------------*\
  #NavBar styles (Barra de navegación)
\*------------------------------------*/
nav {
  display: flex;
  justify-content: flex-end;
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
nav .nav_links {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 2.5rem;
  margin-right: 3.125rem;
  list-style: none;
}
nav .nav_links a {
  color: #9F9F9F;
}
nav .nav_links a:hover {
  color: #FFFFFC;
}

body.scrolled nav {
  background-color: #FFFFFC;
  transition: background-color 0.3s ease;
}

/*------------------------------------*\
  #Header styles (Barra de navegación)
\*------------------------------------*/
header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2.5rem;
  height: 80vh;
  justify-content: center;
  gap: 0.125rem;
  background-image: url("../img/head.png");
  background-size: cover;
  background-position: center;
}
header h1 {
  font-size: 3rem;
  color: #FFFFFC;
  font-weight: 800;
}
header h2 {
  font-size: 1.5rem;
  max-width: 50%;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*------------------------------------*\
  #Who I´m styles (Sobre mí)
\*------------------------------------*/
.aboutme {
  max-width: 87.5rem;
  margin: 3rem 0;
  display: flex;
  justify-content: space-between;
  text-align: justify;
  /* Editor de Código */
}
.aboutme .aboutme_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 50%;
}
.aboutme .aboutme_text h3 {
  color: #009E66;
  font-size: 1rem;
  font-weight: 600;
}
.aboutme .aboutme_text h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.aboutme .aboutme_text span {
  color: #FFFFFC;
  font-weight: 600;
}
.aboutme .code_editor {
  background: #1e1e1e;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 40%;
  font-family: "Fira Code", monospace;
  position: relative;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.2);
}
.aboutme .code_editor .code_header {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.aboutme .code_editor .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: inline-block;
}
.aboutme .code_editor .red {
  background: #ff5f56;
}
.aboutme .code_editor .yellow {
  background: #ffbd2e;
}
.aboutme .code_editor .green {
  background: #27c93f;
}
.aboutme .code_editor pre {
  margin: 0;
  white-space: pre-wrap;
  font-size: 0.85rem;
}

/*------------------------------------*\
  #Porfolio styles (Portafolio)
\*------------------------------------*/
.portfolio {
  max-width: 1400px;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.portfolio h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.portfolio h2 span {
  color: #FFFFFC;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 2.5rem;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.portfolio_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .portfolio_container {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (min-width: 1024px) {
  .portfolio_container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*------------------------------------*\
  #Skills styles (Lenguajes, Frameworks, etc.)
\*------------------------------------*/
.skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 87.5rem;
}
.skills h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
}
.skills h2 span {
  color: #FFFFFC;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 4rem;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}
.skills .skills_container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.skills .skills_container .skills_container--item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  background-color: #1e1e1e;
  transition: border-color 0.3s ease;
  width: 19.75rem;
  height: 17.5rem;
  text-align: justify;
}
.skills .skills_container .skills_container--item .skills_container--item h3 {
  color: #FFFFFC;
  font-size: 1rem;
  font-weight: 600;
}
.skills .skills_container .skills_container--item p {
  margin: 0 10px;
}
.skills .skills_container .skills_container--item span {
  color: #FFFFFC;
  font-weight: 600;
  text-transform: uppercase;
}
.skills .skills_container .skills_container--item:hover {
  border-color: #37BF32;
}
.skills .skills_container .skills_container--item img {
  width: 4.375rem;
  height: 4.375rem;
}

/*------------------------------------*\
  #Tools styles (Herramientas)
\*------------------------------------*/
.tools {
  display: flex;
  flex-direction: row;
  max-width: 87.5rem;
  margin: 3rem 0;
  justify-content: center;
  align-items: center;
}
.tools .tools_title {
  max-width: 50%;
  margin-right: 3.75rem;
}
.tools .tools_title h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
}
.tools .tools_container {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.tools .tools_container .tool_container--element img {
  width: 3.75rem;
  height: 3.75rem;
  margin: 0.9375rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tools .tools_container .tool_container--element img:hover {
  transform: scaleX(1.1) scaleY(1.1);
  filter: brightness(0) invert(1);
}

/*------------------------------------*\
  #Resume styles (Experiencia Laboral)
\*------------------------------------*/
.resume {
  max-width: 1400px;
  margin: 3rem 0;
}
.resume h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.resume h2 span {
  color: #FFFFFC;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 4rem;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}
.resume .resume__timeline-container {
  margin: 4rem 0;
}
.resume .resume__timeline-container .resume__timeline {
  --col-gap: 2rem;
  --row-gap: 2rem;
  --line-w: 0.25rem;
  display: grid;
  grid-template-columns: var(--line-w) 1fr;
  grid-auto-columns: max-content;
  -moz-column-gap: var(--col-gap);
       column-gap: var(--col-gap);
  list-style: none;
  width: min(60rem, 90%);
  margin-inline: auto;
}
.resume .resume__timeline-container .resume__timeline::before {
  content: "";
  grid-column: 1;
  grid-row: 1/span 20;
  background: rgb(225, 225, 225);
  border-radius: calc(var(--line-w) / 2);
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item {
  text-align: justify;
  grid-column: 2;
  --inlineP: 1.5rem;
  margin-inline: var(--inlineP);
  grid-row: span 2;
  display: grid;
  grid-template-rows: min-content min-content min-content;
  --accent-color: $enphasys_color;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item:not(:last-child) {
  margin-bottom: var(--row-gap);
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date {
  --dateH: 3rem;
  height: var(--dateH);
  margin-inline: calc(var(--inlineP) * -1);
  text-align: center;
  background-color: #009e66;
  color: #FFFFFC;
  font-size: 1rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  position: relative;
  border-radius: 4px;
  font-family: "Lexend Giga";
  font-weight: 400;
  text-transform: uppercase;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date::before {
  content: "";
  width: var(--inlineP);
  aspect-ratio: 1;
  background: var(--accent-color);
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
  position: absolute;
  top: 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  right: 0;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date::after {
  content: "";
  position: absolute;
  width: 2rem;
  aspect-ratio: 1;
  background: var(--bgColor);
  border: 0.3rem solid var(--accent-color);
  border-radius: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title,
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
  background: var(--bgColor);
  position: relative;
  padding-inline: 1.5rem;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title::before,
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  left: 50%;
  border-radius: 50%;
  filter: blur(4px);
  transform: translate(-50%, 50%);
  bottom: 0.25rem;
  z-index: -1;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title {
  overflow: hidden;
  padding-block-start: 1.5rem;
  padding-block-end: 1rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #FFFFFC;
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title::before {
  bottom: calc(100% + 0.125rem);
}
.resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
  padding-block-end: 1.5rem;
  font-weight: 300;
}
@media (min-width: 40rem) {
  .resume .resume__timeline-container .resume__timeline {
    grid-template-columns: 1fr var(--line-w) 1fr;
  }
  .resume .resume__timeline-container .resume__timeline::before {
    grid-column: 2;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) {
    grid-column: 1;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) .resume__timeline-date::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(odd) .resume__timeline-date::after {
    transform: translate(-50%, -50%);
    left: calc(100% + var(--col-gap) + var(--line-w) / 2);
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(even) {
    grid-column: 3;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item:nth-child(2) {
    grid-row: 2/4;
  }
}

/*------------------------------------*\
  #FAQ styles (Preguntas Frecuentes)
\*------------------------------------*/
.faq {
  max-width: 87.5rem;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
}
.faq h2 {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
.faq .faq_container {
  display: flex;
  flex-direction: column;
}
.faq .faq_container .faq_item {
  margin: 1rem 0;
  display: flex;
  flex-direction: row;
}
.faq .faq_container .faq_item span {
  color: #009E66;
  margin-right: 0.5rem;
}
.faq .faq_container .faq_item h3 {
  width: 43.75rem;
  color: #FFFFFC;
  font-size: 1.5rem;
}
.faq .faq_container .faq_item p {
  width: 40.625rem;
  margin-left: 1.875rem;
  font-size: 0.875rem;
}

/*------------------------------------*\
  #Footer styles (Contacto)
\*------------------------------------*/
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #009E66;
  color: #FFFFFC;
  margin-top: 2rem;
  padding: 1rem;
}
footer .footer_contact {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 2% 0px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
footer .footer_contact--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
footer .footer_contact--info img {
  width: 45px;
  height: 45px;
}
footer .footer_contact--info h3 {
  cursor: default;
}
footer .footer_contact--info a {
  color: #FFFFFC;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer_contact--info a:hover {
  font-weight: 800;
  transform: scale(1.1);
}
footer p {
  cursor: default;
  text-align: center;
}

/*------------------------------------*\
  #styles for mobile
\*------------------------------------*/
@media (max-width: 768px) {
  header {
    background-image: url("../img/head_mobile.png");
    background-size: cover;
    background-position: center;
    justify-content: flex-end;
    padding-left: 1.5rem;
    gap: 0.12rem;
  }
  header h1 {
    font-size: 1.5rem;
    max-width: 80%;
    max-width: 1.2rem;
  }
  header h2 {
    font-size: 14px;
    max-width: 90%;
  }
  header a {
    margin-bottom: 20px;
  }
  /* NavBar */
  nav {
    justify-content: space-between;
    padding: 1rem;
    background-color: transparent;
    max-width: 650px;
  }
  nav .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }
  nav .menu-toggle .bar {
    width: 30px;
    height: 4px;
    background-color: #009E66;
    transition: 0.3s;
  }
  nav .nav_links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 45px;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  nav .nav_links li {
    padding: 10px 0;
  }
  nav .nav_links li:hover {
    transform: scale(2);
  }
  nav .nav_links a {
    color: #FFFFFC;
    font-size: 1.2rem;
  }
  nav .nav_active {
    display: flex;
  }
  /* Social Bar */
  .socialBar {
    display: none;
  }
  .aboutme {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    /* Editor de Código */
  }
  .aboutme .aboutme_text {
    min-width: 70%;
    max-width: 70%;
  }
  .aboutme .aboutme_text h3 {
    font-size: 1rem;
  }
  .aboutme .aboutme_text h2 {
    font-size: 1rem;
  }
  .aboutme .code_editor {
    min-width: 70%;
    max-width: 70%;
  }
  .portfolio_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
  .skills {
    max-width: 650px;
  }
  .skills h2 {
    font-size: 1rem;
  }
  .skills h2 span {
    font-size: 2rem;
    left: 150px;
  }
  .skills .skills_container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .skills .skills_container .skills_container--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    width: 80%;
    height: 16rem;
  }
  .skills .skills_container .skills_container--item img {
    margin-top: 15px;
  }
  .tools {
    max-width: 650px;
    flex-direction: column;
    max-width: 87.5rem;
    margin: 1.5rem 0;
    justify-content: center;
    align-items: center;
  }
  .tools .tools_title {
    max-width: 70%;
    margin-right: 0rem;
    text-align: justify;
    margin-bottom: 1rem;
  }
  .resume {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .resume h2 {
    font-size: 1rem;
  }
  .resume h2 span {
    font-size: 2rem;
    left: 150px;
  }
  .resume .resume__timeline-container .resume__timeline {
    padding: 0;
    margin: 0;
  }
  .resume .resume__timeline-container .resume__timeline::before {
    display: none;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-date {
    height: auto;
    padding: 0.5rem;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title,
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
    text-align: justify;
    margin: 0.8rem 0;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-title {
    overflow: hidden;
    padding: 0;
  }
  .resume .resume__timeline-container .resume__timeline .resume__timeline-item .resume__timeline-descr {
    padding: 0;
  }
  .faq {
    max-width: 650px;
  }
  .faq h2 {
    color: #009E66;
    font-size: 1rem;
  }
  .faq .faq_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .faq .faq_container .faq_item {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .faq .faq_container .faq_item br {
    display: none;
  }
  .faq .faq_container .faq_item span {
    margin-right: 0.2rem;
  }
  .faq .faq_container .faq_item h3 {
    width: 100%;
    font-size: 1rem;
    text-align: justify;
  }
  .faq .faq_container .faq_item p {
    width: 100%;
    margin-left: 0;
    font-size: 0.8rem;
    text-align: justify;
  }
  .portfolio {
    max-width: 650px;
    margin: 1.5rem 0;
  }
  .portfolio h2 {
    font-size: 1rem;
  }
  .portfolio h2 span {
    font-size: 2rem;
    left: 150px;
  }
  footer {
    max-width: 650px;
    text-align: center;
    background-color: #009E66;
    padding: 0.3rem;
  }
  footer .footer_contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  footer .footer_contact--info {
    margin-top: 5px;
    flex-direction: column;
  }
}/*# sourceMappingURL=main.css.map */