.c-skill-chip {
  margin: 0px 10px 10px 0px;
  transition: transform 0.7s ease;
  cursor: default;
}
.c-skill-chip__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.c-skill-chip__category {
  background-color: rgba(47, 97, 146, 0.2);
  border-radius: 15px;
  border: rgba(47, 97, 146, 0.5) solid 1px;
  margin: 0px 10px 30px 0px;
  padding: 10px 15px;
  width: 90%;
  transition: all 0.7s ease;
}
.c-skill-chip__category__header {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: f;
  margin: 5px 0px 10px 0px;
}
.c-skill-chip__category__header__icon {
  color: #ddb112;
  margin: 0px auto;
  background-color: #060647;
  padding: 9px 11px 4px 12px;
  border-radius: 50%;
}
.c-skill-chip__category__header__icon iconify-icon {
  font-size: 3.5rem;
}
.c-skill-chip__category h3 {
  color: #e7e7f3;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0px 0px 10px 0px;
  padding: 0px;
}
.c-skill-chip__category:hover {
  transform: scale(1);
  background-color: rgba(47, 97, 146, 0.3);
}
.c-skill-chip__content {
  border: rgba(47, 97, 146, 0.7) solid 1px;
  border-radius: 50px;
  background-color: rgba(6, 6, 71, 0.3);
  padding: 5px 15px;
  font-weight: 400;
  color: #e7e7f3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  transition: all 0.7s ease;
}
.c-skill-chip__content iconify-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
  margin-bottom: -0.2rem;
}
.c-skill-chip__content:hover {
  background-color: rgba(6, 6, 71, 0.5);
}
.c-skill-chip--small {
  font-size: 0.8rem;
  padding: 2px 5px;
  margin: 0px 2px 0px -5px;
}
.c-skill-chip--small iconify-icon {
  font-size: 1rem;
  margin-right: 0rem;
}
.c-skill-chip__image img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #c0cadb;
  margin: 0.15rem 0.5rem -0.25rem 0rem;
  filter: grayscale(100%);
}

.grid-sizer, .grid-item {
  min-width: 50%;
  max-width: 50%;
}
@media screen and (max-width: 576px) {
  .grid-sizer, .grid-item {
    min-width: 100%;
    max-width: 100%;
  }
}

.tippy-box[data-theme~=mts] {
  background-color: rgba(6, 6, 71, 0.4); /* semi-transparent */
  /* Add blur effect */
  backdrop-filter: blur(10px); /* blurs content behind the tooltip */
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
  /* Optional: make edges smoother */
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(1.2);
  margin-top: 0.8em;
}
.tippy-box[data-theme~=mts] img {
  transform: scale(0.8);
  margin-right: 0.1em !important;
}

.tippy-box[data-theme~=mts][data-placement^=top] > .tippy-arrow::before {
  border-top-color: rgba(6, 6, 71, 0.4);
}

.tippy-box[data-theme~=mts][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: rgba(47, 97, 146, 0.6);
}

.tippy-box[data-theme~=mts][data-placement^=left] > .tippy-arrow::before {
  border-left-color: rgba(6, 6, 71, 0.4);
}

.tippy-box[data-theme~=mts][data-placement^=right] > .tippy-arrow::before {
  border-right-color: rgba(6, 6, 71, 0.4);
}

.c-project-card {
  margin: 0px 0px 20px 0px;
  transition: transform 0.2s ease;
  min-width: 48%;
  max-width: 48%;
  max-height: 250px;
  transition: all 0.7s ease;
}
.c-project-card:hover .c-project-card__title, .c-project-card:hover .c-project-card__subtitle {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.85, 0.45, 1) 0.2s, opacity 0.4s cubic-bezier(0.165, 0.85, 0.45, 1) 0.2s;
}
@media only screen and (max-width: 768px) {
  .c-project-card:last-child {
    margin-bottom: 0;
  }
}
.c-project-card__image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  background: linear-gradient(135deg, #2f6192, #1b346d 50%, #060647);
}
.c-project-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease 0s;
  opacity: 0.5;
  visibility: visible;
  background: linear-gradient(360deg, #2f6192 0%, rgba(6, 6, 71, 0.3) 120.95%);
}
.c-project-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background-color: #c0cadb;
  pointer-events: none;
  transition: all 0.4s ease 0s;
  will-change: transform;
}
.c-project-card__image:hover::before {
  opacity: 1;
  visibility: visible;
}
.c-project-card__image:hover img {
  transform: scale(1.05);
}
.c-project-card__content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  max-height: 250px;
  border-radius: 16px;
  transform: translate(0);
  box-shadow: 0px 0px 30px rgba(47, 97, 146, 0.1);
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .c-project-card__content::after {
    padding-top: 100%;
  }
}
@media only screen and (max-width: 576px) {
  .c-project-card__content .project__info {
    padding: 0 32px 32px;
  }
}
.c-project-card__content::after {
  content: "";
  display: table;
  padding-top: 110%;
}
.c-project-card__info {
  z-index: 1;
  width: 100%;
  margin-top: auto;
  padding: 0 32px 36px;
  text-align: center;
  pointer-events: none;
}
.c-project-card__info-wrap {
  overflow: visible;
}
.c-project-card__title {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 0;
  opacity: 1;
  transform: translate3d(0, 50%, 0);
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.8);
}
.c-project-card__subtitle {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  max-width: 500px;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.8);
}
.c-project-card__subtitle:hover {
  opacity: 0.7;
}
.c-project-card__title, .c-project-card__subtitle {
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.165, 0.85, 0.45, 1), opacity 0.4s cubic-bezier(0.165, 0.85, 0.45, 1);
}

@media only screen and (max-width: 768px) {
  .c-project-card {
    min-width: 100%;
  }
}
#project-page {
  /* header */
}
#project-page .projectpage-header {
  margin: 40px 0px 0px 5px;
}
#project-page .projectpage-header a {
  text-decoration: none;
  color: white;
  font-size: 2em;
  position: relative;
  transition: all 0.4s ease;
}
#project-page .container {
  /* content */
  /* gallery */
}
#project-page .container .project-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  margin: 10px 0px 0px 0px;
  padding: 20px;
  border-radius: 15px;
  min-height: 20vh;
  /* center content */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#project-page .container .title {
  margin: 0px;
  padding: 0px;
}
#project-page .container .subtitle {
  margin: 0px;
  padding: 0px 0px 0px 10px;
  font-weight: 200;
  font-size: 1.8em;
}
#project-page .container .date {
  margin: 0px;
  padding: 0px 0px 0px 10px;
  font-weight: 200;
  font-size: 1.2em;
}
#project-page .container .project-content {
  margin: 15px 0px 0px 0px;
  padding: 30px 20px;
  border-radius: 15px;
  font-size: 1.1em;
  line-height: 1.6em;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
}
#project-page .container .project-gallery {
  padding: 30px 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  flex-shrink: 1;
  flex-grow: 1;
}
#project-page .container .project-gallery__item {
  height: 10em;
  width: 20em;
  margin: 10px 5px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
#project-page .container .project-gallery__item:hover {
  box-shadow: 0px 0px 15px rgba(6, 6, 71, 0.3);
  transform: scale(1.05);
}

.current {
  color: green;
}

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.5;
  color: #f5f5f5;
  font-family: "Nunito Sans", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #02023b;
  background: linear-gradient(25deg, #060647, #1d3478, #060647);
  z-index: -1;
}

h1 {
  margin: 0.67em 0;
  font-size: 2.5rem;
}

h1,
h2,
h3,
h4,
strong {
  margin-top: 1em;
  padding-top: 1em;
  line-height: 1.25;
  color: #d8e5ec;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

ol,
ul {
  padding-left: 40px;
}

textarea {
  overflow: auto;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #ddb112;
}

a:hover {
  color: #c59e10;
  text-decoration: none;
}

a:visited {
  color: #ddb112;
}

a img {
  border: 0;
}

.anim-underline:after {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  border-radius: 50px;
  display: block;
  margin-top: 0px;
  right: 0;
  background: #ddb112;
  transition: width 0.4s ease;
  -webkit-transition: width 0.4s ease;
}
.anim-underline:hover:after {
  width: 100%;
  left: 0;
}

#particles-js {
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  display: flex;
  vertical-align: bottom;
  width: 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

#particles-js .particles-js-canvas-el {
  width: 100% !important;
  height: 100vh !important;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  z-index: -1;
}

.header {
  z-index: 1;
  text-align: center;
  color: #fff;
  font-family: "Rubik", sans-serif;
  background-color: rgba(2, 2, 59, 0.3);
  border-radius: 15px;
  box-shadow: 0px 0px 20px 1px rgba(47, 97, 146, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 25px 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 576px) {
  .header {
    top: 50px;
    transform: translate(-50%, 0%);
  }
}

.header-avatar {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 50px 0 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #2f6192;
  box-shadow: 0px 0px 30px rgba(47, 97, 146, 0.1);
}

.header-avatar img {
  width: 100%;
  height: auto;
}

.header .site-title {
  font-size: 3.8em;
  display: block;
  line-height: 1;
  color: #e7e7f3;
  transition: all 0.7s ease;
}
.header .site-title-highlight {
  color: #ddb112;
  font-weight: normal;
}

.header .site-description {
  font-size: 1.6em;
  display: block;
  line-height: 1;
  color: #e7e7f3;
  margin-top: 10px;
  transition: all 0.7s ease;
}

@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
  }
  .header-avatar {
    margin: 10px 0 40px 0;
  }
}
@media screen and (max-width: 576px) {
  .header .site-title {
    font-size: 2.6em;
  }
  .header .site-description {
    font-size: 1.3em;
  }
}
.header-separator {
  position: relative;
  display: block;
  width: 50px;
  height: 3px !important;
  border-radius: 25px;
  background: #e7e7f3;
  margin: 20px auto;
  transition: all 0.7s ease;
}

.header-icons {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.header-links {
  margin: 10px;
}

.header-links .link {
  color: #e7e7f3;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 600;
  margin: 10px;
  transition: all 0.7s ease;
  position: relative;
}

@media screen and (max-width: 576px) {
  .header-links .link {
    font-size: 1em;
  }
}
.header-icons iconify-icon {
  color: #e7e7f3;
  text-align: center;
}

.header-icons iconify-icon {
  font-size: 35px;
  padding: 10px;
  border-radius: 50%;
  border: 2px solid #e7e7f3;
  width: 35px;
  height: 35px;
  margin: 5px;
  transition: all 0.3s ease-in-out;
}

.header-icons iconify-icon:active,
.header-icons iconify-icon:hover {
  color: #ddb112;
  border: 2px solid rgba(0, 0, 0, 0);
  transform: scale(1.2) rotate(0deg);
}

@media screen and (max-width: 576px) {
  .header-icons iconify-icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
  }
}
.header-arrowDown-container {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.down {
  position: relative;
  font-size: 8rem;
  cursor: pointer;
}

.down:hover {
  color: #c59e10;
}

.down iconify-icon {
  -webkit-animation: float 2s infinite;
  animation: float 2s infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}
section {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

#about {
  color: #f5f5f5;
  position: relative;
}
#about p {
  font-size: 1.3em;
  margin-left: 2em;
  position: relative;
}
#about p::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #ddb112;
  border-radius: 5px;
}

#projectWrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-content: center;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 1;
  transition: all 0.7s ease;
}

.footer {
  background: #060647;
  /* fallback for old browsers */
  /* Chrome 10-25, Safari 5.1-6 */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding: 10px 0;
  margin-top: 100px;
  text-align: center;
  color: #fff;
}

.footer .love {
  color: red;
}

.footer a {
  text-decoration: none;
  margin: 0;
  color: #fff;
}

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