@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

p {
  line-height: 1.4rem;
  margin-bottom: 20px;
}

/*********************************************
 * FLOATING CIRCLE PROGRESS INDICATOR - START
 ****************************************** */
/* .kli-progress-wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  display: none;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
}

.kli-progress-circle {
  transform: rotate(-90deg);
}

// .kli-bg-circle {
//   fill: #f0f8ff;
// }

.kli-progress {
  stroke-dasharray: 157; // 2 * π * r (2 * π * 25)
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.2s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 16px;
  color: $primary-color;
  pointer-events: none;
  user-select: none;
  font-weight: bold;
} */
/*********************************************
 * FLOATING CIRCLE PROGRESS INDICATOR - END
 ****************************************** */
/*********************************************
 * SITE HEADER, LOGO, MENU - START
 ****************************************** */
.site-header,
.site-before-nav-wrap {
  display: flex;
  justify-content: center;
}

.site-before-nav {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 12px;
  padding: 4px 0;
}
.site-before-nav div {
  display: flex;
  gap: 5px;
}
.site-before-nav a {
  color: #7d7d7d;
  opacity: 1;
  text-decoration: none;
}
.site-before-nav a:hover {
  opacity: 0.8;
}

.site-brand-wrap {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 10px 10px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-brand {
  background-color: #000;
  padding: 20px 8px 4px 8px;
  border-radius: 0 0 20px 20px;
}

.site-name {
  font-size: 2rem;
  color: #7d7d7d;
  text-decoration: none;
}
.site-name:hover {
  color: #646464;
}

.site-tagline {
  font-size: 14px;
}

/* .site-menu-wrap {
  display: flex;
  gap: 10px;
  z-index: 1;
}

#site-menu-navbars {
  width: 30px;
  height: auto;
  cursor: pointer;
}

#site-navbar {
  display: none;
}

#navbar-nav {
  list-style-type: none; // Remove bullets
  padding: 0;
  margin: 0;
  white-space: nowrap;
  display: flex;

  li {

    a {
      color: $primary-color;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      font-size: 12px;
      font-weight: 400;
      padding: 16px;
      background-color: $secondary-bg-color;
    }

    a:hover {
      color: $secondary-bg-color;
      background-color: $primary-color;
    }

  }

  .menu-item-has-children > a::after {
    content: '\25BC'; // " ▼";
    font-size: 0.7em;
    margin-left: 5px;
  }

  // curve the edges of the first item in the top-level menu
  > li:first-child a {
    border-radius: 10px 0 0 10px;
  }

  // curve the edges of the last item in the top-level menu
  > li:last-child a {
    border-radius: 0 10px 10px 0;
  }

  .sub-menu {
    position: static;
    list-style-type: none; // Remove bullets
    display: none;

    > li {

      a {
        background-color: $tertiary-bg-color;
        color: $primary-color;
      }

      a:hover {
        color: $secondary-bg-color;
        background-color: $primary-color;  
      }

    }

    > li:last-child a {
      border-radius: 0 0 10px 10px;
    }
  }
}

.nav-parent-bg {
  background-color: $tertiary-bg-color !important;

  &:hover {
      color: $secondary-bg-color !important;
      background-color: $primary-color !important;
  }
}

@media screen and ( max-width: 781px ) {

  .kli-column-reverse {
    flex-direction: column-reverse;
  }

  #kli-special-spacer {
    display: none;
  }

}

@media screen and ( max-width: 960px ) {

  // select the parent
  div:has( > #navbar-nav ) {
    position: relative;
  }

  #navbar-nav {
    flex-direction: column;
    position: absolute;
    right: 0;

    > li:first-child a {
      border-radius: 10px 10px 0 0;
    }

    > li:last-child a {
      border-radius: 0 0 10px 10px;
    }

    .sub-menu {

      > li:last-child a {
        border-radius: 0;
      }
    }

  }

} */
/*********************************************
 * SITE HEADER, LOGO, MENU - END
 ****************************************** */
/*********************************************
 * SITE CONTENT - START
 ****************************************** */
#site-content-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.site-content-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
}

.site-content-full {
  width: 100%;
  padding: 40px 0;
}

.site-content-full-col {
  flex-direction: column;
  align-items: center;
}

.site-content {
  width: 90%;
  max-width: 1200px;
  padding: 40px 0;
}

.site-content-90 {
  width: 90%;
  max-width: 1200px;
}

.site-content-80 {
  width: 80%;
  max-width: 1200px;
}

.site-page-title {
  font-size: 11px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}

.site-small-text {
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.site-smaller-text {
  font-size: 0.75rem;
  font-weight: 400;
}

.site-smallest-text {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-content,
.site-content-full {
  display: flex;
  justify-content: center;
}

.site-content-links {
  display: flex;
  justify-content: end;
}

.site-content-flex-col {
  flex-direction: column;
}

.site-content-align-center {
  align-items: center;
}

.site-content-prim {
  background-color: #000;
}

.site-content-sec {
  background-color: #121827;
}

.site-content-tertiary {
  background-color: #272729;
}

.site-color-primary {
  color: #7d7d7d;
}

.site-color-seconcdary {
  color: #fff;
}

.site-color-tertiary {
  color: #929292;
}

.site-color-quaternary {
  color: #646464;
}

.site-color-quinary {
  color: #cccccd;
}

.site-headline-1 {
  font-weight: 200;
  font-size: clamp(30px, 2.2rem + 1.4vw, 50px);
  margin-bottom: 20px;
}

.site-headline-2 {
  font-weight: 200;
  font-size: clamp(25px, 2rem + 1.4vw, 42px);
}

.site-headline-3 {
  font-weight: 200;
  font-size: clamp(20px, 1.5rem + 1.4vw, 36px);
}

.site-headline-4 {
  font-weight: 200;
  font-size: clamp(15px, 1rem + 1.4vw, 30px);
}

.site-headline-5 {
  font-weight: 200;
  font-size: clamp(12px, 0.75rem + 1.4vw, 25px);
}

.site-headline-bg-prim {
  background-color: rgba(39, 39, 41, 0.8);
  padding: 10px;
  color: #7d7d7d;
  border-radius: 10px;
}

.site-padding-tb-10 {
  padding: 10px 0;
}

.site-padding-tb-40 {
  padding: 40px 0;
}

.kli-border-radius-10 {
  border-radius: 10px;
}

/*********************************************
 * SITE CONTENT - END
 ****************************************** */
/*********************************************
 * HOMEPAGE STYLES - START
 ****************************************** */
.site-content-jke-wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.jke-home-evo {
  text-align: center;
}
.jke-home-evo img {
  width: 50%;
  height: auto;
}

/*********************************************
 * HOMEPAGE STYLES - END
 ****************************************** */
/*********************************************
 * BIO PAGE - START
 ****************************************** */
.jke-buttons {
  background-color: #121827 !important;
  border-radius: 10px;
  font-size: 12px;
}
.jke-buttons:hover {
  background-color: #202937 !important;
}

.jke-avatar img {
  border-radius: 20px;
}

.jke-dashes-wrap {
  display: flex;
  margin-top: 20px;
  gap: 20px;
}
.jke-dashes-wrap .jke-long {
  border-top: 6px solid #202937;
  width: 120px;
}
.jke-dashes-wrap .jke-short {
  border-top: 6px solid #202937;
  width: 80px;
}

.jke-projects-wrap {
  gap: 20px;
}
.jke-projects-wrap > div {
  background-color: #202937;
  padding: 20px;
  border: 1px solid #929292;
  border-radius: 10px;
}
.jke-projects-wrap > div a {
  color: #fff;
  text-decoration: none;
}
.jke-projects-wrap > div a:hover {
  opacity: 0.8;
}

.site-content-justify {
  text-align: justify;
  text-justify: inter-word;
}

.jke-experience-wrap {
  border: 1px solid #929292;
  border-radius: 10px;
  padding: 20px;
}

.jke-experiences-wrap {
  display: flex;
  gap: 10px;
}
.jke-experiences-wrap a {
  color: #929292;
  text-decoration: none;
}
.jke-experiences-wrap a:hover {
  opacity: 0.8;
}

.jke-contact-columns-wrap {
  text-align: center;
}
.jke-contact-columns-wrap a {
  color: #cccccd;
  text-decoration: none;
  font-size: 20px;
}
.jke-contact-columns-wrap a:hover {
  opacity: 0.8;
}

/*********************************************
 * BIO PAGE - END
 ****************************************** *//*# sourceMappingURL=styles.css.map */