@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.navegation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(5, 5, 5, 0.7725490196);
  padding: 2px 0px;
  z-index: 100;
}
.navegation .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.navegation .menu-toggle span {
  width: 30px;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.navegation > .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navegation > .nav-list .nav-item {
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.navegation > .nav-list .nav-item:hover {
  background-color: #2a3950;
}
.navegation > .nav-list .nav-item > a {
  padding: 10px 15px;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  color: #ffffff;
}
@media (max-width: 769px) {
  .navegation {
    padding: 1rem;
    justify-content: space-between;
    flex-direction: row;
  }
  .navegation .menu-toggle {
    display: flex;
  }
  .navegation > .nav-list {
    position: absolute;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 175px;
    flex-direction: column;
    background-color: #0e0e0f;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    gap: 0;
  }
  .navegation > .nav-list.open {
    right: 0;
  }
  .navegation > .nav-list .nav-item {
    width: 100%;
  }
  .navegation > .nav-list .nav-item a {
    text-align: left;
    padding: 15px 20px;
  }
  .navegation.menu-active .menu-toggle span:first-child {
    transform: rotate(45deg);
  }
  .navegation.menu-active .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .navegation.menu-active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }
}

.navegation.scrolled {
  background-color: #0e0e0f;
  box-shadow: 0 0 2px 2px #0e0e0f;
}

.about {
  height: max(600px, 100vh);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about > #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: max(600px, 100vh);
  z-index: -1;
  background-color: #070707;
}
.about > .about-image {
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  margin-bottom: 2rem;
}
.about > .about-name,
.about > .about-description {
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
.about > .about-name {
  font-size: 1.8rem;
}
.about > .about-description {
  font-size: 1.2rem;
}
@media (max-width: 1440px) {
  .about > .about-image {
    width: 18rem;
    height: 18rem;
  }
  .about > .about-name,
  .about > .about-description {
    max-width: 80%;
  }
}
@media (max-width: 769px) {
  .about > .about-image {
    width: 16rem;
    height: 16rem;
  }
}
@media (max-width: 480px) {
  .about > .about-image {
    width: 14rem;
    height: 14rem;
  }
}

.skills {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
}
.skills > h2 {
  flex: 1 1 100%;
}
.skills .skills-group {
  max-width: 400px;
  flex: 1 1 360px;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  gap: 0.5rem;
}
.skills .skills-group .skills-subtitle {
  flex: 1 1 100%;
  font-family: "Poppins", sans-serif;
  color: #181b20;
}
.skills .skills-list {
  justify-content: center;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skills .skills-list .skills-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 5px;
  background-color: #e8e9eb;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid #d3dae2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.skills .skills-list .skills-list-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: #181b20;
  font-family: "Poppins", sans-serif;
  gap: 1rem;
}
.skills .skills-list .skills-list-item a img {
  width: 2.5rem;
  height: 2.5rem;
}
.skills .skills-list .skills-list-item:hover {
  background-color: #d3dae2;
  border: 1px solid #223a5e;
  box-shadow: 0 4px 16px rgba(34, 58, 94, 0.13);
}

.projects {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.projects > h2 {
  flex: 1 1 100%;
}
.projects .project {
  flex: 0 1 400px;
  height: 225px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
}
.projects .project > figure {
  width: 100%;
  height: 100%;
}
.projects .project .project-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: all 0.3s ease;
}
.projects .project .project-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.projects .project .project-image-overlay .project-details {
  list-style: none;
}
.projects .project .project-image-overlay .project-links {
  display: flex;
  gap: 2rem;
}
.projects .project .project-image-overlay .project-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #223a5e;
  padding: 0.25rem 1.5rem;
  border-radius: 0.5rem;
}
.projects .project .project-image-overlay .project-links a:hover {
  color: #e8e9eb;
  background-color: #1a2c47;
}
.projects .project:hover {
  box-shadow: 0 6px 18px 0 rgba(34, 58, 94, 0.28), 0 2px 8px 0 rgba(0, 0, 0, 0.18);
}
.projects .project:hover .project-image-overlay {
  opacity: 1;
}
.projects .project:hover .project-image {
  transform: scale(1.2);
}

.references {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.references > h2 {
  flex: 1 1 100%;
}
.references > .references-list-item {
  max-width: 350px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  background-color: #e5e5e6;
  border: 1px solid #d3dae2;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
}
.references > .references-list-item:hover {
  box-shadow: 0 4px 16px rgba(34, 58, 94, 0.13);
  border-color: #223a5e;
  background-color: #e7e7eb;
}
.references .reference-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.references .reference-figure img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8e9eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 2px solid #223a5e;
}
.references .reference-quote {
  font-style: italic;
  color: #1a2c47;
  margin: 0.5rem 0;
  font-size: 1.05rem;
}
.references .reference-quote p::before {
  content: '"';
  color: #3681d8;
  font-size: 1.4rem;
}
.references .reference-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.references .reference-name {
  font-weight: bold;
  color: #181b20;
  font-size: 1.1rem;
  margin: 0;
}
.references .reference-title,
.references .reference-context {
  color: #223a5e;
  font-size: 0.95rem;
  margin: 0;
}

.experience {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  align-items: baseline;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 0;
  font-family: "Poppins", sans-serif;
}
.experience > h2 {
  grid-column: 1/-1;
}
.experience > .experience-group {
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.experience > .experience-group > header {
  flex: 1 1 100%;
}
.experience > .experience-group > .experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid #223a5e;
  padding-left: 16px;
}
.experience > .experience-group > .experience-list > .experience-list-item {
  position: relative;
}
.experience > .experience-group > .experience-list > .experience-list-item > article::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -22px;
  top: 9px;
  width: 10px;
  height: 10px;
  background-color: #223a5e;
}
.experience > .experience-group:first-of-type {
  justify-self: end;
}
@media (max-width: 769px) {
  .experience {
    grid-template-columns: 1fr;
  }
  .experience > .experience-group:first-of-type {
    justify-self: stretch;
  }
}

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
}
.certifications > h2 {
  flex: 1 1 100%;
}
.certifications > .table-container {
  overflow-x: auto;
  max-width: 100%;
}
.certifications .certifications-table {
  flex: 1 1 40%;
  border: 1px solid #181b20;
  border-radius: 0.25rem;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.certifications .certifications-table thead > tr > th {
  text-align: center;
  background: #223a5e;
  color: #fff;
  font-weight: bold;
}
.certifications .certifications-table tbody > tr {
  transition: background 0.2s;
}
.certifications .certifications-table tbody > tr:nth-child(even) {
  background: #f7f7f9;
}
.certifications .certifications-table tbody > tr:hover {
  background: #e6f0fa;
}
.certifications .certifications-table tbody > tr td:first-child {
  text-align: center;
}
.certifications .certifications-table th,
.certifications .certifications-table td {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
  text-align: left;
  box-sizing: border-box;
}
.certifications .certifications-table td:last-child {
  text-align: center;
}
.certifications .certifications-table .certification-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.certifications .certifications-table td a,
.certifications .certifications-table .certification-link {
  color: #223a5e;
  text-decoration: none;
  transition: color 0.2s;
}
.certifications .certifications-table td a:hover,
.certifications .certifications-table .certification-link:hover {
  color: #2a3950;
}
.certifications .certifications-table tbody tr:last-child td,
.certifications .certifications-table tbody tr:last-child th {
  border-bottom: none;
}
@media (max-width: 1440px) {
  .certifications .certifications-table th,
  .certifications .certifications-table td {
    padding: 0.6rem 1.2rem;
  }
}
@media (max-width: 769px) {
  .certifications .certifications-table th,
  .certifications .certifications-table td {
    padding: 0.5rem 1rem;
  }
  .certifications .certifications-table .certification-logo {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .certifications .certifications-table th,
  .certifications .certifications-table td {
    padding: 0.4rem 0.8rem;
  }
  .certifications .certifications-table .certification-logo {
    width: 20px;
    height: 20px;
  }
}

.favorite-courses {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.favorite-courses > h2 {
  flex: 1 1 100%;
}
.favorite-courses > .course {
  max-width: 400px;
  flex: 1 1 300px;
  transition: all 0.3s ease;
  background-color: #e5e5e6;
  border: 1px solid #d3dae2;
  border-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.favorite-courses > .course h3 {
  flex: 1 1 100%;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}
.favorite-courses > .course figure {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}
.favorite-courses > .course figure > iframe {
  width: 100%;
  min-height: 225px;
  border-radius: 0.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background: #e8e9eb;
}
.favorite-courses > .course figure > figcaption {
  color: #223a5e;
  text-align: center;
}
.favorite-courses > .course figure > figcaption a {
  color: #223a5e;
  text-decoration: none;
}
.favorite-courses > .course figure > figcaption a:hover {
  color: #2a3950;
  text-decoration: underline;
}
.favorite-courses > .course:hover {
  box-shadow: 0 4px 16px rgba(34, 58, 94, 0.13);
  border-color: #223a5e;
  background-color: #e7e7eb;
}
@media (max-width: 700px) {
  .favorite-courses article {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .favorite-courses figure iframe {
    min-height: 180px;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.contact > h2 {
  flex: 1 1 100%;
}
.contact > .form-section,
.contact > .contact-map {
  flex: 1 1 300px;
  max-width: 650px;
}
.contact > .form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact > .form-section > #form-heading {
  flex: 1 1 100%;
}
.contact #form {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact #form .form-group {
  gap: 0.2rem;
  display: flex;
  flex-direction: column;
  border: 0;
}
.contact #form .form-group #contact-form-name,
.contact #form .form-group #contact-form-mail,
.contact #form .form-group #contact-form-topic,
.contact #form .form-group #contact-form-submit {
  width: 100%;
  height: 2rem;
  padding: 0.5rem;
  font-family: "Poppins", sans-serif;
}
.contact #form .form-group #contact-form-message {
  width: 100%;
  height: 15rem;
  padding: 0.5rem;
  font-family: "Poppins", sans-serif;
  resize: none;
}
.contact #form #form-name,
.contact #form #form-mail {
  flex: 1 0 40%;
}
.contact #form #form-topic {
  flex: 1 1 100%;
}
.contact #form #form-message,
.contact #form #form-submit {
  flex: 1 0 100%;
}
.contact #form #contact-form-submit {
  background-color: #223a5e;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}
.contact #form #contact-form-submit:hover {
  background-color: #1a2c47;
}
.contact .contact-map {
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 0 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: "Poppins", sans-serif;
  background-color: #070707;
}
.footer .footer-title {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
}
.footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .footer-social .footer-social-icon {
  border: 2px solid #ffffff;
  border-radius: 50%;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.footer .footer-social .footer-social-icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: fill;
  display: block;
}
.footer .footer-social .footer-social-icon:hover {
  background-color: #ffffff;
}
.footer .footer-social .footer-social-icon:hover img {
  filter: invert(1);
}

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(0deg, #070707 0%, rgb(14, 18, 29) 50%, rgb(27, 31, 43) 100%);
}
main > section {
  padding: 3rem;
  width: 80%;
  gap: 1.5rem;
}
main > section > .title {
  margin: 1rem 0;
}
@media (max-width: 1440px) {
  main > section {
    padding: 2.5rem;
    width: 90%;
  }
}
@media (max-width: 769px) {
  main > section {
    padding: 1.75rem;
    width: 90%;
  }
}
@media (max-width: 480px) {
  main > section {
    padding: 1rem;
    width: 95%;
  }
}
main > :first-child {
  border-radius: 1rem 1rem 0 0;
  margin-top: 1rem;
}
main > :last-child {
  border-radius: 0 0 1rem 1rem;
  margin-bottom: 1rem;
}
main > :nth-child(odd) {
  background-color: #f5f5f5;
}
main > :nth-child(even) {
  background-color: #fcfcfc;
}

html {
  scroll-padding-top: 10vh;
}
@media (max-width: 769px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 769px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

.title {
  font-family: "Open Sans", sans-serif;
  color: #181b20;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
