header .hero-title {
  font-size: 45px;
  line-height: 50px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}
header .typing-container {
  min-height: 63px;
  display: inline-block;
  overflow: hidden;
}
header .typing-container::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 42px;
  margin-left: 4px;
  background-color: white;
  opacity: 1;
  -webkit-animation: typingcursoranim 0.6s linear infinite alternate;
          animation: typingcursoranim 0.6s linear infinite alternate;
}
header .hero-description {
  color: #fff;
  font-size: 18px;
  max-width: 613.29px;
  line-height: 30px;
  font-weight: 600;
}
header .hero-description li::before {
  content: "- ";
  color: #fff;
}
header .square-parent {
  width: 400px;
  position: relative;
}
header .square-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 400px;
  height: 420px;
  background-color: #212121;
  border-radius: 16px;
}

.experience-card {
  background-color: #212121;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 40px 20px 40px 20px;
  margin-bottom: 30px;
}
.experience-card .experience-content {
  padding-left: 40px;
  padding-right: 40px;
}
.experience-card .experience-title {
  margin: 0;
  font-weight: bold;
}
.experience-card .experience-company {
  color: #fff;
  font-style: italic;
}
.experience-card .experience-brief {
  color: #fff;
  margin-top: 15px;
}
.experience-card .experience-date {
  color: rgb(127, 127, 127);
  margin: 0;
  font-size: 0.85rem;
}

.project-img-parent {
  position: relative;
}
.project-img-parent .project-desc {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.4px);
  -webkit-backdrop-filter: blur(2.4px);
}

.review-card {
  max-width: 80%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.client-position {
  color: grey;
  font-style: italic;
}

.review-img {
  border: 1px solid #fff;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

@-webkit-keyframes typingcursoranim {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes typingcursoranim {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 760px) {
  header {
    padding: 30px;
  }
  .typing-container {
    min-height: 110px !important;
  }
  .hero-title {
    font-size: 36px !important;
  }
  .square-bg {
    width: 100% !important;
  }
}/*# sourceMappingURL=index.css.map */