@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local("Poppins"), url("../fonts/Poppins/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

/* Large devices (laptops/desktops, <=1440px) */
body {
  background-color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 700;
  color: #42446E;
}
.section-subtitle {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
  color: #666666;
}
.section-title, .section-subtitle {
  text-align: center;
  line-height: 1;
}
.section-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tagline {
  font-size: 20px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
}

.text-gradient {
  background: -webkit-linear-gradient(60deg, #13b0f5, #e70faa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient span {
  -webkit-text-fill-color: #42446E;
}

.btn-hire {
  background-image: linear-gradient(45deg, #13b0f5, #e70faa);
  color: #f5f5f5;
  font-weight: 300;
}
.btn-hire:hover {
  background-image: linear-gradient(230deg, #13b0f5, #e70faa);
}

.btn-theme {
  color: #666666;
}

/* HEADER */
.header {
  padding-top: 40px;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
}
.nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #666666;
}
.nav-link:hover {
  color: #42446E;
  border-bottom: 3px solid #13b0f5;
}

/* SECTION INTRO */
.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100vh;
  color: #42446E;
}

.intro-content_item {
  flex: 1;
}

.text-typing {
  display: block;
  width: 0;
  margin-bottom: 10px;
  border-right: 10px solid #2dc9c5;
  font-size: 20px;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  animation: type 2s steps(30, end) 2000ms both, typing-move 0.7s step-end infinite;
}

@keyframes type {
  0% {
    width: 0;
  }
  100% {
    width: 130px;
  }
}
@keyframes typing-move {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #42446E;
  }
}
.intro-title {
  margin-left: -2px;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
}

.intro-subtitle {
  max-width: 450px;
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 1;
}

.intro-btn > .btn {
  margin-bottom: 10px;
  border: 2px solid #42446E;
  font-size: 18px;
  color: #42446E;
}
.intro-btn > .btn i {
  margin-right: 6px;
}

.intro-btn > .btn:first-child {
  margin-right: 20px;
}

.intro-btn > p {
  font-size: 14px;
}

.intro-btn .btn-download {
  text-decoration: underline;
}

.intro-image {
  text-align: center;
  font-size: 20em;
}

/* SECTION ABOUT */
.about {
  background-color: #ffffff;
}

.about-content {
  display: flex;
}

.about-content_item {
  flex: 1;
}

.about-text {
  font-size: 18px;
}
.about-text p {
  margin-bottom: 30px;
  line-height: 26px;
}

.about-list i {
  margin-right: 5px;
}

.about-personality {
  margin-bottom: 15px;
}
.about-personality span {
  display: inline-block;
  width: 80px;
  font-weight: 500;
}

.about-qualities {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-size: 16px;
}
.about-qualities li {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.about-image {
  display: flex;
  justify-content: center;
}

/* SECTION STACK */
.stack-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  font-size: 60px;
}
.stack-item {
  margin-bottom: 30px;
  flex-basis: 20%;
  text-align: center;
}
.stack-item-unknown {
  color: #666666;
}

/* SECTION WORKS */
.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 45px;
}
.work-item {
  position: relative;
  border-radius: 15px;
  box-shadow: 2px 2px 100px 0px rgba(0, 0, 0, 0.2);
}
.work-img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}
.work-img img {
  aspect-ratio: 4/3;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  object-fit: cover;
}
.work-img img:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.work-action {
  display: flex;
  justify-content: space-around;
  padding: 25px;
}
.work-action a {
  text-decoration: underline;
}
.work-link {
  color: #000000;
  font-size: 16px;
}
.work-link:hover {
  text-decoration: none;
}
.work-link_icon {
  margin-right: 10px;
}
.work-tags {
  position: absolute;
  left: 0;
  z-index: 1;
  padding: 5px 0 0 5px;
}
.work-tags span {
  padding: 5px 10px;
  background-image: linear-gradient(45deg, #13b0f5, #e70faa);
  color: #f5f5f5;
  border-radius: 12px;
  font-size: 12px;
}

/* SECTION FOOTER */
.footer-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  color: #42446E;
}
.footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-action .social-item {
  color: #42446E;
}
.footer-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 2px solid rgba(102, 102, 102, 0.3);
}
.footer-nav .nav-link {
  font-size: 18px;
  color: #42446E;
}

/* Medium devices (landscape tablets, <=1024px) */
@media only screen and (max-width: 992px) {
  .container {
    padding: 0 30px;
  }

  /* HEADER */
  .nav-item {
    margin-right: 35px;
  }

  /* SECTION WORK */
  .work-list {
    grid-gap: 45px 30px;
  }

  .work-action {
    padding: 15px;
  }
}
/* Small devices (portrait tablets and large phones, <=834px) */
/* Extra small devices (phones, <= 768px) */

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