@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

a {
  text-decoration: none;
}

img,
video {
  width: 100%;
  height: 100%;
}

::-webkit-scrollbar {
  background-color: #272c35;
  width: 0.75rem;
  height: 0.75rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: #4f5659;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background-color: #60676c;
}

::-webkit-scrollbar-corner {
  background-color: #16191b;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

li {
  list-style-type: none;
}

html {
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  html {
    font-size: 0.6875rem;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 0.75rem;
  }
}

body {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  background-color: #1e2025;
  color: #edeef0;
}

a {
  color: #edeef0;
}

html {
  scroll-behavior: smooth;
}

body.no-scroll {
  overflow: hidden;
}

@-webkit-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: var(--prog);
  }
}
@-moz-keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: var(--prog);
  }
}
@keyframes progressBar {
  0% {
    width: 0;
  }
  100% {
    width: var(--prog);
  }
}
aside.sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem;
}
@media (min-width: 992px) {
  aside.sidebar {
    min-width: 20rem;
  }
}
aside.sidebar > section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
aside.sidebar > section h2 {
  color: #cf9965;
  font-size: 1.5rem;
  text-transform: uppercase;
}
aside.sidebar > section nav ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
aside.sidebar > section nav ul h3 {
  color: #fcd8a1;
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 1rem;
}
aside.sidebar > section nav ul h3 span {
  color: #d96060;
}
aside.sidebar > section nav ul > h3:first-child {
  margin-top: 0;
}
aside.sidebar > section nav ul li {
  padding: 0;
}
aside.sidebar > section nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #d1d5db;
  transition: color 0.3s;
}
aside.sidebar > section nav ul li a i {
  color: #fcd8a1;
}
aside.sidebar > section nav ul li a:hover {
  color: #df8282;
}
@media (min-width: 992px) {
  aside.sidebar > section {
    text-align: left;
  }
  aside.sidebar > section nav ul li {
    padding: 0 2rem;
  }
  aside.sidebar > section nav ul li a {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  aside.sidebar > section nav ul li {
    padding: 0;
  }
}
aside.sidebar .sidebar__social nav ul {
  justify-content: center;
  flex-direction: row;
  gap: 2rem;
}
aside.sidebar .sidebar__social nav ul li a i {
  font-size: 1.8rem;
}
aside.sidebar .sidebar__social nav ul li a i:hover {
  color: #d96060;
}
aside.sidebar .sidebar__social nav ul li a span {
  display: none;
}
@media (min-width: 768px) {
  aside.sidebar .sidebar__social nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  aside.sidebar .sidebar__social nav ul li a i {
    font-size: 1.5rem;
  }
  aside.sidebar .sidebar__social nav ul li a i:hover {
    color: #fcd8a1;
  }
  aside.sidebar .sidebar__social nav ul li a span {
    display: block;
  }
}
aside.sidebar .sidebar__contact nav ul li a {
  text-transform: lowercase;
}

.progress-bar {
  background-color: #454a53;
  width: 100%;
  height: 3rem;
  border-radius: 5rem;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .progress-bar {
    height: 2rem;
  }
}
.progress-bar::before {
  content: "";
  display: block;
  height: 100%;
  border-radius: inherit;
  background-color: #272c35;
  -webkit-animation: progressBar 0.3s linear var(--delay);
  -webkit-animation-fill-mode: both;
  -moz-animation: progressBar 0.3s linear var(--delay);
  -moz-animation-fill-mode: both;
  animation: progressBar 0.3s linear var(--delay);
  animation-fill-mode: both;
}

.navbar-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  cursor: pointer;
}
@media (min-width: 576px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle .toggle-icon {
  background-color: #ec406a;
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2.4px;
  transition: all 0.3s;
}
.navbar-toggle .toggle-icon::after, .navbar-toggle .toggle-icon::before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  transition: inherit;
  background-color: #ec406a;
}
.navbar-toggle .toggle-icon::before {
  top: -7.2px;
}
.navbar-toggle .toggle-icon::after {
  top: 7.2px;
}
.navbar-toggle.active .toggle-icon {
  background-color: transparent;
}
.navbar-toggle.active .toggle-icon::before {
  -webkit-transform: translateY(7.2px) rotateZ(-45deg);
  transform: translateY(7.2px) rotateZ(-45deg);
}
.navbar-toggle.active .toggle-icon::after {
  -webkit-transform: translateY(-7.2px) rotateZ(45deg);
  transform: translateY(-7.2px) rotateZ(45deg);
}

header.header {
  background-color: #1e2025;
  box-shadow: 0 0 2rem #0e0e0e;
  position: sticky;
  top: 0;
  z-index: 10;
}
header.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  max-width: 1920px;
  min-height: 6rem;
  margin: 0 auto;
}
@media (min-width: 576px) {
  header.header .container {
    padding: 0 4rem;
  }
}
header.header .header__menu {
  display: flex;
  align-items: center;
  min-height: inherit;
}
header.header .menu__links {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-height: calc(100vh - 6rem);
  background-color: #d96060;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s, gap 0.3s;
  overflow-y: auto;
}
header.header .menu__links.active {
  visibility: visible;
  opacity: 1;
  gap: 0.1rem;
}
header.header .menu__links li a {
  background-color: #272c35;
  display: inline-block;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 3rem rgba(18, 18, 18, 0.6666666667) inset;
  padding: 2rem 1rem;
  width: 100%;
  transition: color 0.3s, box-shadow 0.3s;
}
header.header .menu__links li a:hover {
  color: #ec406a;
  box-shadow: 0 0 5rem rgba(18, 18, 18, 0.9333333333) inset;
}
header.header .menu__links li.active-item a {
  box-shadow: 0 0 5rem rgba(18, 18, 18, 0.9333333333) inset;
  color: #d96060;
}
@media (min-width: 576px) {
  header.header .menu__links {
    position: static;
    flex-direction: row;
    visibility: visible;
    opacity: 1;
    width: auto;
  }
  header.header .menu__links,
  header.header .menu__links li a,
  header.header .menu__links li.active-item a,
  header.header .menu__links li a:hover {
    background-color: transparent;
    box-shadow: none;
  }
}
header.header .header__brand {
  font-size: 1.5rem;
  text-transform: capitalize;
  padding: 2rem 0;
}
header.header .header__brand a {
  color: #fcd8a1;
}
header.header .header__brand a:hover {
  color: #df8282;
}
header.header .header__brand a::before, header.header .header__brand a::after {
  content: "⊰";
  display: inline;
  color: #ec406a;
}
header.header .header__brand a::after {
  content: "⊱";
}

.main__container, main.projects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem;
}
@media (min-width: 768px) {
  .main__container, main.projects {
    padding: 2rem 3rem;
  }
}
@media (min-width: 992px) {
  .main__container, main.projects {
    flex-direction: row;
    padding: 2rem 4rem;
  }
}

main.home {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem 0;
}
@media (min-width: 576px) {
  main.home {
    padding: 1rem;
  }
}
main.home .home__profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 1rem;
  background-color: #272c35;
  padding: 2rem;
}
main.home .home__profile img {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 0.5rem solid transparent;
  outline: 0.2rem dashed #d96060;
}
main.home .home__profile p {
  line-height: 2;
  font-size: 1.3rem;
  text-align: center;
}
main.home .home__profile p b {
  color: #fcd8a1;
  text-transform: capitalize;
}
@media (min-width: 576px) {
  main.home .home__profile {
    flex-direction: row;
  }
  main.home .home__profile p {
    font-size: 1.5rem;
    text-align: left;
  }
}
main.home section:not(.home__profile) h2,
main.home section:not(.home__profile) h3 {
  color: #cf9965;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  main.home section:not(.home__profile) h2,
  main.home section:not(.home__profile) h3 {
    text-align: left;
  }
}
main.home section:not(.home__profile) h3 {
  color: #fcd8a1;
  font-size: 1.2rem;
  font-weight: 300;
  margin-top: 2rem;
}
main.home section:not(.home__profile) .home__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  main.home section:not(.home__profile) .home__list {
    gap: 0.5rem;
  }
}
main.home section:not(.home__profile) .home__label {
  color: #d96060;
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  main.home section:not(.home__profile) .home__label {
    padding: 0.1rem 1rem;
  }
}
main.home section:not(.home__profile) .home__value,
main.home section:not(.home__profile) .home__text {
  color: #d1d5db;
  text-transform: capitalize;
}
main.home section:not(.home__profile) .home__value a,
main.home section:not(.home__profile) .home__text a {
  color: #edeef0;
}
main.home .home__skill li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  main.home .home__skill li {
    padding: 0.5rem 2rem;
    cursor: pointer;
  }
  main.home .home__skill li:hover .home__label {
    background-color: #0e0e0e;
  }
}
main.home .home__skill li .home__label {
  position: absolute;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  main.home .home__skill li .home__label {
    position: static;
    min-width: 10rem;
    transition: all 0.3s linear;
  }
}
main.home .home__about ul {
  display: flex;
  flex-direction: column;
  gap: 2rem !important;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  main.home .home__about ul {
    padding: 1.5rem 2rem;
  }
}
main.home .home__about ul li {
  display: flex;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  main.home .home__about ul li {
    flex-direction: row;
    text-align: left;
  }
}
main.home .home__about ul .home__label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15rem;
  color: #fcd8a1;
}
main.home .home__about ul .home__label span {
  color: #d96060;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  main.home .home__about ul .home__label {
    justify-content: flex-start;
  }
}

main.projects .projects__categories {
  width: 100%;
}
main.projects .projects__categories .category__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
}
@media (min-width: 576px) {
  main.projects .projects__categories .category__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  main.projects .projects__categories .category__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
main.projects .projects__categories .category__name {
  grid-column: 1/-1;
  color: #cf9965;
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
main.projects .projects__categories .category__name span {
  color: #d96060;
}
main.projects .projects__categories .category__name::before, main.projects .projects__categories .category__name::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.2rem;
  border-radius: 1rem;
  background-color: #22262e;
}
main.projects .projects__categories .category__card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 1rem #454a53;
}
main.projects .projects__categories .category__card:hover {
  box-shadow: 0 0 1rem #5d626b;
}
main.projects .projects__categories .category__card .card__image {
  cursor: pointer;
  height: 100%;
}
main.projects .projects__categories .category__card .card__name {
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(18, 18, 18, 0.6666666667);
  color: #fde782;
  font-size: 2rem;
  font-weight: bold;
  text-transform: capitalize;
  transition: opacity 0.3s linear, visibility 0.3s linear;
}
@media (min-width: 768px) {
  main.projects .projects__categories .category__card:not(.modal--active):hover .card__name {
    visibility: visible;
    opacity: 1;
  }
}
main.projects .projects__categories .category__card.modal--active .card__modal {
  visibility: visible;
}
main.projects .projects__categories .category__card.modal--active .card__modal .modal__box {
  opacity: 1;
  transform: translateY(0);
}
main.projects .projects__categories .card__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.9333333333);
  padding: 2rem 1rem;
  z-index: 10;
  visibility: hidden;
}
@media (min-width: 768px) {
  main.projects .projects__categories .card__modal {
    padding: 1rem;
  }
}
main.projects .projects__categories .card__modal .modal__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #22262e;
  padding: 1rem 1.2rem;
  border-radius: 2px;
  overflow-y: auto;
  margin: 0 auto;
  width: 100%;
  max-width: 1536px;
  max-height: 100%;
  opacity: 0;
  transform: translateY(-10rem);
  transition: transform 0.3s linear, opacity 0.3s linear;
}
@media (min-width: 576px) {
  main.projects .projects__categories .card__modal .modal__box {
    width: 95%;
  }
}
@media (min-width: 768px) {
  main.projects .projects__categories .card__modal .modal__box {
    width: 80%;
  }
}
@media (min-width: 992px) {
  main.projects .projects__categories .card__modal .modal__box {
    width: 65%;
  }
}
main.projects .projects__categories .card__modal .modal__header {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
}
main.projects .projects__categories .card__modal .modal__header .modal__name {
  font-size: 1.4rem;
  text-transform: capitalize;
  color: #fcd8a1;
}
main.projects .projects__categories .card__modal .modal__header .modal__name::before, main.projects .projects__categories .card__modal .modal__header .modal__name::after {
  content: "⊰";
  display: inline;
  color: #ec406a;
}
main.projects .projects__categories .card__modal .modal__header .modal__name::after {
  content: "⊱";
}
main.projects .projects__categories .card__modal .modal__header .modal__close i {
  cursor: pointer;
  font-size: 2rem;
  color: #df8282;
  vertical-align: bottom;
}
main.projects .projects__categories .card__modal .modal__header .modal__close i:hover {
  color: #d96060;
}
@media (min-width: 768px) {
  main.projects .projects__categories .card__modal .modal__header {
    padding: 1rem;
  }
  main.projects .projects__categories .card__modal .modal__header .modal__name {
    font-size: 1.6rem;
  }
  main.projects .projects__categories .card__modal .modal__header i {
    font-size: 2rem;
  }
}
main.projects .projects__categories .card__modal .modal__content {
  background-color: rgba(18, 18, 18, 0.6666666667);
  padding: 2rem 1rem;
  border-radius: 2px;
}
main.projects .projects__categories .card__modal .modal__content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #d1d5db;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  main.projects .projects__categories .card__modal .modal__content h3 {
    font-size: 1.6rem;
  }
}
main.projects .projects__categories .card__modal .modal__content h3::before {
  content: "#";
  display: inline-block;
  color: #cf9965;
  padding-right: 0.5rem;
}
main.projects .projects__categories .card__modal .modal__content p,
main.projects .projects__categories .card__modal .modal__content ul {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: capitalize;
  color: #d1d5db;
  margin-bottom: 2rem;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  main.projects .projects__categories .card__modal .modal__content p,
  main.projects .projects__categories .card__modal .modal__content ul {
    font-size: 1.3rem;
  }
}
main.projects .projects__categories .card__modal .modal__content p a,
main.projects .projects__categories .card__modal .modal__content ul a {
  color: #fcd8a1;
}
main.projects .projects__categories .card__modal .modal__content p a:hover,
main.projects .projects__categories .card__modal .modal__content ul a:hover {
  color: #fde782;
}
main.projects .projects__categories .card__modal .modal__content > :last-child {
  margin-bottom: 0;
}
main.projects .projects__categories .card__modal .modal__content ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
main.projects .projects__categories .card__modal .modal__content ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
main.projects .projects__categories .card__modal .modal__content ul li::before {
  content: "";
  display: inline-block;
  border: 0.2rem solid #ec406a;
  border-radius: 50%;
}

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