body {
  /* height: 100vh; */
  /* width: 100vw; */
  background-color: #141516;
  padding: 0;
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: #ffffff;
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.item-line {
  display: flex;
  justify-content: center;
  align-items: center;
}

.item {
  background: #00b38126;
  padding: 9px 15px;
  border-radius: 100px;
  color: #00b381;
  font-size: 13pt;
  text-decoration: none;
}
.dp-image img {
  height: 15rem;
  border-radius: 50%;
  outline: 2px dashed #009688;
  outline-offset: 8px;
}
.title {
  font-size: 4rem;
  padding: 18px 0px;
  font-weight: 800;
  box-sizing: border-box;
  text-align: left;
  font-family: "Rubik", sans-serif;
  color: #fff;
}
.created-by-me-slug {
  font-weight: bold;
  padding: 0px 0px 4px 0px;
  border-bottom: 2px dashed #8bc34a;
  margin-bottom: 10px;
  color: #00b381;
}

.dp-image {
}
span.name {
  color: #2196f3;
  text-transform: uppercase;
  border-bottom: 2px solid #8bc34a;
}

.dp-image-rotor {
  position: absolute;
  height: 100%;
  width: 100%;
  border: 3px dashed #5e47d1;
  /* border-left: dashed #00ff2a; */
  /* border-top: dashed yellow; */
  /* border-bottom: dashed #ff233c; */
  border-radius: 50%;
  animation: rotateDiv 17s infinite linear;
}
@keyframes rotateDiv {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

section.view {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  max-width: 75rem;
  margin: auto;
  padding: 0px 0px;
  box-sizing: border-box;
  flex-direction: column;
}
h1 {
}
.project-list-container {
  display: none;
}

a.prl-item-container {
  background: #00ff6417;
  display: block;
  margin-bottom: 9px;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 17px 16px;
  transition: 0.12s;
}

.project-title {
  font-weight: 800;
  font-size: 18pt;
  color: #97ffb4;
}
a.fi svg {
  height: 27px;
  fill: #beff9c;
}

.footer-ic-container {
  align-items: center;
  padding: 5px;
  padding-bottom: 11px;
}

a.prl-item-container:active,
a.prl-item-container:hover {
  background: #00ff6430;
}

.art-item-container {
  width: 100%;
}

.art-thumb-wrapper {
  position: relative;
  border-radius: 12px;
  max-height: 11.429rem;
  height: auto;
  max-width: 20rem;
  min-width: 20rem;
  min-height: 11.429rem;
}

img.art-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out, scale 0.13s;
  filter: blur(20px);
}
.thumb-loaded {
  opacity: 1 !important;
  filter: blur(0) !important;
}

div#secArticles {
  width: 100%;
  margin-top: 0rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.artl-title {
  font-size: 16pt;
  padding: 7px 0px;
  line-height: 32px;
}

a.artl-perma {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.art-info {
  padding: 11px 5px;
  padding-bottom: 20px;
  flex: 1;
}

.artl-meta {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
}

.cdot {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #fff;
}
.artl-inner-wrapper {
}
.artl-inner-wrapper {
  width: 370px;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: start;
  justify-content: space-between;
}

footer.footer {
  /* background: #00ff6417; */
  /* width: 100%; */
  text-align: center;
  padding: 1rem 0rem;
  margin-top: 2rem;
}

div#secProjects {
  margin: 0px 14px;
}

.thumb-loader {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: block;
}
.thumb-loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 3px solid #8bc34a;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.thumb-loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#page-loader {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 100;
  background-color: #28b456;
  animation: pageLoading 1s;
  box-shadow: 0px 0px 35px #00ff54;
  border-radius: 11px;
}
@keyframes pageLoading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.loader-hidden {
  display: none;
}
a.artl-perma:hover {
  color: #25db78;
}

a.artl-perma:active {
  color: #25db78;
}
.wave {
  animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s; /* Change to speed up or slow down */
  animation-iteration-count: infinite; /* Never stop waving :) */
  transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
  display: inline-block;
  animation-iteration-count: 5;
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  } /* The following five values can be played with to make the waving more or less extreme */
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  } /* Reset for the last half to pause */
  100% {
    transform: rotate(0deg);
  }
}
.waving-hand {
  margin: 0px 0px;
  margin-top: 1rem;
  display: flex;
  justify-content: start;
  gap: 1rem;
  align-items: center;
  flex-direction: row-reverse;
}

span.wave {
  font-size: 32pt;
}

.hi {
  font-weight: 800;
  box-sizing: border-box;
  text-align: center;
  margin-top: 10px;
  color: white;
  font-size: 3rem;
  font-family: "Rubik", sans-serif;
}
.pr-udev {
  background: #8bc34a;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 7px;
  margin: 4px 0px;
  color: #000000;
  font-size: 11pt;
  font-weight: 700;
}
.pr-notice {
  background: #ffaf0017;
  display: block;
  margin-bottom: 0.56rem;
  color: #fc0;
  text-decoration: none;
  border-radius: 1rem;
  padding: 1rem;
  transition: 0.12s;
}
.project-descr {
  color: #c9ffd8;
}
.prj-list-icon-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
div#intro-container {
  max-width: 30rem;
  padding: 0 10px;
  color: #fff;
}

section.view {
}

section.content {
  gap: 3rem;
  width: 100%;
}
div#secProjects {
  display: block;
  flex: 1;
}
.sec-title {
  font-family: "Rubik", sans-serif;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin: 4rem 0rem;
}
.art-parent {
  flex: 1.5;
}
.logo img {
  height: 2rem;
}

nav.navbar {
  display: flex;
  justify-content: space-between;
  height: 5rem;
  align-items: center;
}

header {
  width: 100%;
}

.side-navbar-items {
  display: flex;
  gap: 1.3rem;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13pt;
}

a.nav-link.nav-link-active {
  color: #1cffea;
}
.hbg-menu {
  height: 23px;
  width: 35px;
  background: content-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 11;
}
.hbg-menu-tile {
  height: 3px;
  background: #ffffffc9;
  border-radius: 3px;
}

#btnMenu {
  position: relative;
  z-index: 11;
  display: none;
}
.logo {
  position: relative;
  z-index: 11;
}
.bg-noise {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-image: url("https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png");
  background-size: 161px;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.04;
}
section.Hero {
  width: 100%;
  height: calc(100vh - 5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

img.img-dp {
  width: 15rem;
  height: 14.824375rem;
  background: #ffffff30;
  border-radius: 10px;
  border-radius: 50%;
}

.hero-info {
  text-align: left;
}
.dp-image-container {
  background: #ffffff1a;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
  box-sizing: border-box;
}

.hero-tagline {
  font-size: 18pt;
  margin-top: 1rem;
  margin-bottom: 8px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
}

.hero-addr {
  margin-top: 0.4rem;
  opacity: 0.8;
  font-size: 13pt;
}
.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 10px 0;
}

.social-link img {
  height: 24px;
}

.dynamic-text-container {
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dynamic-text {
  color: #4ac34e;
  border-right: 0.1em solid #4ac34e;
  padding-right: 5px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
}

.cursor-blink {
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #4ac34e;
  }
}
.animated-intro-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
}

.skill img {
  width: 50px;
  height: 50px;
}

.skill p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
img.contrib-icon {
  height: 10rem;
}

.contrib-notice {
  background: #3139fb;
  margin: 0 14px;
  display: block;
  margin-bottom: 0.56rem;
  text-decoration: none;
  border-radius: 1rem;
  padding: 3rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.title-2 {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Rubik", sans-serif;
  position: relative;
  z-index: 1;
}

.contrib-body-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.contrib-notice-text h3 {
  margin-bottom: 0.5rem;
  padding-bottom: 0rem;
}
.contrib-notice-text ul {
  margin-top: 0rem;
  padding-top: 0rem;
}

.contrib-notice-text {
  line-height: 22px;
}

button.contrib-action-btn {
  background: #ffffff;
  color: #2702c2;
  font-size: 14px;
  padding: 0.7rem 3rem;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border: none;
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin: 0.3rem;
}

button.contrib-learn-btn {
  background: #1d0191;
  color: #ffffff;
  font-size: 14px;
  padding: 0.7rem 3rem;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  border: none;
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin: 0.3rem;
}
.contrib-notice-noise {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url(https://framerusercontent.com/images/rR6HYXBrMmX4cRpXfXUOvpvpB0.png);
  background-size: 161px;
  background-repeat: repeat;
  z-index: 1;
  opacity: 0.06;
}
.contact-from-wrapper {
  display: flex;
  margin: 0 1rem;
  gap: 3rem;
  box-sizing: border-box;
}

form#cform {
  flex: 1;
  padding: 1rem 0rem;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.cform-filler {
  flex: 1;
  background: #ffffff1a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 1rem;
  padding-bottom: 2rem;
}

.cform-input-area {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 27rem;
  gap: 10px;
  margin-bottom: 1rem;
}

input.cform-input,
textarea.cform-msg-body {
  padding: 10px;
  background: none;
  border: 1px solid #ffffff24;
  background: #ffffff1a;
  transition: 0.12s;
  border-radius: 7px;
  font-family: "Work Sans", sans-serif;
  color: #fff;
}

textarea.cform-msg-body {
  resize: none;
  height: 10rem;
}

.cf-links {
  text-align: center;
  padding: 0px 10px;
}

a.social-item {
  color: #00bcd4;
  text-decoration: none;
}
button#btnSendMail {
  background: #3139fb;
  border: none;
  padding: 0.8rem 1rem;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.12s;
}

input.cform-input:focus,
textarea.cform-msg-body:focus {
  outline: 2px solid dodgerblue;
}

button#btnSendMail:hover {
  background: #3e44d9;
}
div#cfMsgSent {
  background: #e2e2e2;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 9px;
  color: #000a00;
  display: none;
}
html {
  scroll-behavior: smooth;
}
button#btnShowMore {
  background: #4309f9;
  color: #ffffff;
  font-size: 14px;
  padding: 0.7rem 3rem;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  border: none;
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin: 0.3rem;
  margin-top: 2rem;
  width: 19rem;
}
img.cf-logo {
  height: 9rem;
}
img.art-thumb.thumb-loaded:active {
  scale: 1.03;
}
svg.social-link-icon {
  height: 1.2rem;
}
a.href {
  color: #fff;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.13s;
}

a.href:hover {
  /* color: #00d545; */
  background: #4f4f4f;
}
button.hero-contact-button {
  background: #3139fb;
  color: #ffffff;
  font-size: 14px;
  padding: 0.7rem 3rem;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  border: none;
  -webkit-font-smoothing: subpixel-antialiased;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.8rem;
  transition: filter 0.13s;
}

button.hero-contact-button:hover {
  filter: brightness(0.8);
}
.hidden-on-lg {
  display: none;
}
.footer-text {
  text-align: center;
}
footer.footer h1 {
  padding: 0;
  margin: 0;
}
.ai-check-circle {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  border: 3px solid #fff;
}

.assistance-card {
  background: #63db67;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
  color: #001a00;
}

.ai-con-line {
  width: 2px;
  background: white;
  flex: 1;
}

.ai-checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.j31jheh {
  font-size: 18pt;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
}

.r4erh {
  padding: 1rem;
  font-size: 15pt;
  margin-bottom: 0.5rem;
}

h3.assistance-title {
  margin: 0;
}

.ai-wrapper:last-child .ai-con-line {
  background: transparent;
}
.ai-check-circle {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  border: 3px solid #a1a1a1;
}

.ai-wrapper {
  display: flex;
  justify-content: start;
  gap: 1rem;
}

.assistance-card {
  background: #63db67;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
  color: #001a00;
}

.ai-con-line {
  width: 2px;
  background: #a1a1a1;
  flex: 1;
}

.ai-checklist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.j31jheh {
  font-size: 18pt;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  padding: 0rem 1rem;
}

.r4erh {
  padding: 1rem;
  font-size: 15pt;
  margin-bottom: 0.5rem;
}

h3.assistance-title {
  margin: 0;
}

.ai-wrapper:last-child .ai-con-line {
  background: transparent;
}

.assistance-list {
  margin: 0 1rem;
}
.assistance-card p {
  margin: 0;
  margin-top: 6px;
}
.assistance-card p {
  margin: 0;
  margin-top: 6px;
}
.content {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.content.visible {
  opacity: 1;
  transform: translateY(0);
}
