nav {
  position: fixed;
  inset: 0;
  background-color: transparent;
  transition: background 1s ease-in-out;
  z-index: 100;
  pointer-events: none;
}
nav .open-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100vw;
  width: 100vw;
  height: 100vw;
  background-color: #f4f3f1;
  border-radius: 50%;
  z-index: 101;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  mix-blend-mode: color-burn;
  pointer-events: none;
}
nav .toggler {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 50px;
  height: 50px;
  pointer-events: all;
}
nav .toggler .hamburger {
  width: 100%;
  height: 100%;
  background-color: #f4f3f1;
  mask: url("/src/img/bars.svg");
  mask-position: center;
  mask-size: cover;
  -webkit-mask: url("/src/img/bars.svg") no-repeat center/cover;
  cursor: pointer;
  border: none;
}
nav ul {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav ul li {
  list-style: none;
  position: relative;
  margin-bottom: 50px;
}
nav ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  width: 40px;
  height: 40px;
  background-color: #f4f3f1;
  mask: url("/src/img/navbar-square-border.svg");
  mask-size: cover;
  -webkit-mask: url("/src/img/navbar-square-border.svg") no-repeat center/cover;
  pointer-events: all;
}
nav ul li.active::before {
  mask: url("/src/img/navbar-square.svg");
  -webkit-mask: url("/src/img/navbar-square.svg") no-repeat center/cover;
}
nav ul li.active a {
  color: #f4f3f1;
  -webkit-text-stroke: 0px;
  text-stroke: 0px;
}
nav ul li a {
  text-decoration: none;
  font-size: 5rem;
  padding-left: 90px;
  color: #22272a;
  -webkit-text-stroke: 3px #f4f3f1;
  text-stroke: 3px #f4f3f1;
  font-weight: bold;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
nav.open {
  background-color: #22272a;
  pointer-events: all;
}
nav.open .toggler .hamburger {
  mask: url("/src/img/x.svg");
  -webkit-mask: url("/src/img/x.svg") no-repeat center/cover;
}
nav.open ul li {
  animation: forwards openNavbar 1.25s ease-in-out;
}
nav.open ul li a {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in-out 0.5s, visibility 0.5s ease-in-out 0.5s;
}
nav.secondary .toggler .hamburger {
  background-color: #1abc9c;
}
nav.secondary ul li::before {
  background-color: #1abc9c;
}
nav.secondary ul li.active::before {
  background-color: #1abc9c;
}
nav.secondary ul li.active a {
  color: #1abc9c;
  -webkit-text-stroke: 0px;
  text-stroke: 0px;
}
nav.secondary ul li a {
  color: #f4f3f1;
  -webkit-text-stroke: 3px #1abc9c;
  text-stroke: 3px #1abc9c;
}
nav.secondary.open .toggler .hamburger {
  background-color: #f4f3f1;
}
nav.secondary.open ul li::before {
  background-color: #f4f3f1;
}
nav.secondary.open ul li.active::before {
  background-color: #f4f3f1;
}
nav.secondary.open ul li.active a {
  color: #f4f3f1;
  -webkit-text-stroke: 0px;
  text-stroke: 0px;
}
nav.secondary.open ul li a {
  color: #22272a;
  -webkit-text-stroke: 3px #f4f3f1;
  text-stroke: 3px #f4f3f1;
}

@keyframes openNavbar {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.home .img {
  border-radius: 1.25rem;
  width: 20rem;
  height: 20rem;
  overflow: hidden;
}
.home .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .text {
  background-color: #32383d;
  border-radius: 0 20px 20px 0;
  padding: 2rem;
  width: 50%;
}
.home .text p {
  font-weight: 500;
}
.home .text p span {
  font-size: 2rem;
  font-weight: 700;
}

.projects {
  background-color: #f4f3f1;
  color: #22272a;
  position: relative;
}
.projects h1.page-title {
  color: #1abc9c;
}
.projects .caret-down {
  background-color: #1abc9c;
}
.projects .scroll-bar {
  position: absolute;
  width: calc(100vw - 250px);
  height: 5px;
  background-color: #cfd4d8;
  top: calc(50% + 240px);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.projects .scroll-bar .scroll-bar-thumb {
  position: absolute;
  width: 1%;
  height: 5px;
  background-color: #1abc9c;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: width 0.2s ease-in-out;
}
.projects .projects-list {
  position: absolute;
  overflow-x: scroll;
  overflow-y: hidden;
  height: calc(100vh - 100px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 20px;
  height: 500px;
  width: calc(100vw - 200px);
  box-shadow: inset 0 0 15px 15px #fff, 0 0 15px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
}
.projects .projects-list::-webkit-scrollbar {
  display: none;
}
.projects .projects-list .project {
  min-width: 75vw;
  height: 500px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.projects .projects-list .project .card-img {
  min-width: 400px;
  width: 400px;
  height: 300px;
  background: #f4f3f1;
  border-radius: 20px;
  object-fit: cover;
  border: 5px solid #4c555c;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  padding: 5px;
}
.projects .projects-list .project .card-content h5 {
  color: #22272a;
  font-size: 2rem;
  padding: 0 1rem;
}
.projects .projects-list .project .card-content .card-body {
  background-color: #32383d;
  padding: 1rem;
  border-radius: 0 20px 20px 0;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
.projects .projects-list .project .card-content .card-body p {
  color: #f4f3f1;
  font-weight: 500;
}
.projects .projects-list .project .card-content .card-body p span {
  font-weight: 400;
  color: rgba(244, 243, 241, 0.5);
}
.projects .projects-list .project .card-content .card-body p span.dot {
  font-weight: bold;
  color: #4c555c;
}
.projects .projects-list .project .card-content .card-body .card-footer {
  display: flex;
  align-items: center;
}
.projects .projects-list .project .card-content .card-body .card-footer .btn {
  background-color: #4c555c;
  color: #f4f3f1;
  padding: 0.5rem;
  margin-right: 1rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.projects .projects-list .project .card-content .card-body .card-footer .btn:hover {
  background-color: #636f78;
  transform: scale(1.1);
}
.projects .projects-list .project .card-content .card-body .card-footer .btn:active {
  background-color: #4c555c;
  transform: scale(1);
}
.projects .projects-list .project .card-content .card-body .card-footer .btn .img-link {
  width: 100%;
}
.projects .projects-list .project .card-content .card-body .card-footer .btn:last-child {
  margin-right: 0;
}
.projects .projects-list .project .card-content .card-body .card-footer .btn:last-child .img-link {
  width: 60%;
}

.contact {
  background-color: #f4f3f1;
}
.contact h1.page-title {
  color: #1abc9c;
}
.contact .caret-down {
  background-color: #1abc9c;
}
.contact .contact-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contact .contact-list .card {
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  flex-grow: 0;
  width: 100px;
  min-width: 100px;
  height: 100px;
  border: 5px solid #fff;
  border-radius: 1rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.contact .contact-list .card img {
  width: 75px;
  object-fit: cover;
}
.contact .contact-list .card .text {
  margin-left: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #32383d;
}
.contact .contact-list .card.active {
  width: 100%;
}
.contact .contact-list .card.active .text {
  left: 0;
}

.education-and-skills .education-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: calc(50vh - 4rem);
}
.education-and-skills .education-cards .card {
  position: relative;
  text-align: center;
  padding: 1rem;
  padding-top: 3rem;
  border: 3px solid #4c555c;
  border-radius: 1rem;
}
.education-and-skills .education-cards .card .dot {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: #1abc9c;
  border-radius: 50%;
}
.education-and-skills .education-cards .card .content {
  font-weight: 400;
}
.education-and-skills .education-cards .card .content .title {
  font-weight: inherit;
}
.education-and-skills .education-cards .card .content .date,
.education-and-skills .education-cards .card .content .location {
  color: #4c555c;
}
.education-and-skills .skills-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: calc(50vh - 4rem);
}
.education-and-skills .skills-cards .card {
  position: relative;
  text-align: center;
  padding: 1rem;
  border: 3px solid #4c555c;
  border-radius: 1rem;
  width: 350px;
}
.education-and-skills .skills-cards .card .title {
  font-weight: inherit;
  margin-bottom: 1rem;
}
.education-and-skills .skills-cards .card .technologies {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 200px;
}
.education-and-skills .skills-cards .card .technologies .technology-img {
  text-decoration: none;
  color: #4c555c;
  width: 50px;
  height: 50px;
  position: relative;
}
.education-and-skills .skills-cards .card .technologies .technology-img img {
  width: 90%;
}
.education-and-skills .skills-cards .card .technologies .technology-img .tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -110%);
  background-color: #32383d;
  color: #f4f3f1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.education-and-skills .skills-cards .card .technologies .technology-img .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -75%);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #32383d;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
*::-webkit-scrollbar,
*::after::-webkit-scrollbar,
*::before::-webkit-scrollbar {
  display: none;
}

html {
  scroll-snap-type: y mandatory;
}

body {
  min-height: 100vh;
  background-color: #22272a;
  color: #f4f3f1;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar {
  display: none;
}

img,
video {
  max-width: 100%;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

section {
  padding: 0 100px;
  width: 100%;
  height: 100vh;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
section h1.page-title {
  color: #4c555c;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
section .caret-down {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 1.8rem;
  background-color: #4c555c;
  mask: url("/src/img/caret-down.svg");
  mask-size: cover;
  mask-position: center;
  -webkit-mask: url("/src/img/caret-down.svg") no-repeat center/cover;
  cursor: pointer;
}

.loading-page {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #22272a;
  transition: all 0.5s ease-in-out;
}
.loading-page .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/src/img/spinner.svg") center/cover;
  width: 100px;
  height: 100px;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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