@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
* {
	padding: 0;
	margin: 0;
  font-family: 'Poppins', sans-serif;
}

ul,
ol,
li {
   list-style: none;
   margin: 0;
   padding: 0;
}

.z-i {
  z-index: 999;
}

.container {
  transition: .3s ease-in;
}

header {
  padding: 30px 40px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 90;
  transition: all 0.3s cubic-bezier(0.3, 0, 0.3, 1);
  -moz-transition: all 0.3s cubic-bezier(0.3, 0, 0.3, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0.3, 1);
  -o-transition: all 0.3s cubic-bezier(0.3, 0, 0.3, 1);
}

header > .row {
  max-width: 1440px;
  margin: auto;
}

header.sticky {
  position: fixed;
  background: #000000ab;
  box-shadow: 0 0 10px 0 #0000000f;
  padding: 20px;
  top: 0;
  transform: translateZ(0) translateY(0);
  -webkit-transform: translateZ(0) translateY(0);
    animation: .8s cubic-bezier(.3,0,.3,1) forwards header_animate_one;
}

header.sticky-down {
  transform: translateZ(0) translateY(0);
  -webkit-transform: translateZ(0) translateY(0);
    animation: .8s cubic-bezier(.3,0,.3,1) forwards header_animate_two;
}

@keyframes header_animate{0%{transform:translateZ(0) translateY(-100px)}100%{transform:translateZ(0) translateY(0)}}


@keyframes header_animate_one {
  0% {
    transform: translateZ(0) translateY(-100px);
  }
  100% {
    transform: translateZ(0) translateY(0px);
  }
}

@keyframes header_animate_two {
  0% {
    transform: translateZ(0) translateY(0px);
  }
  100% {
    transform: translateZ(0) translateY(-100px);
  }
}

@media only screen and (max-width: 768px) {
  header {
    padding: 15px;
  }
}

@media only screen and (max-width: 425px) {
  header {
    padding: 10px 0px;
  }
}

.preloader {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
  top: 0;
  height: 100%;
	width: 100%;
  z-index: 900;
}

.preloader .preloader-section {
  	background-color: #151931;
  	height: 100%;
	width: 100%;
	position: fixed;
  	top: 0;
  	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.loaded .preloader-section {
  	transform: translateY(-101%);
  	transition: 1s 0.5s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.preloader .preloader-section img {
	max-width: 150px;
  margin-bottom: 25px;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}

.hero {
	position: relative;
    z-index: 0;
	height: 100vh;
	background-image: url(/assets/img/header-bg.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero:after {
    position: absolute;
    content: "";
    background: #120f2d;
    width: 100%;
    height: 100%;
    opacity: .5;
    top: 0px !important;
    z-index: 2;
}

.hero .container {
  position: relative;
  height: 100%;
  z-index: 999;
}

.hero .row {
  align-items: center;
  height: 100%;
  align-content: center;
}

.hero .row .col-md-12 {
  padding-left: 25px;
  padding-right: 25px;
}


.line-wrapper {
	top: 0px;
	left: 50%;
	bottom: 0px;
	width: 80%;
	z-index: -1;
	display: block;
	position: absolute;
	transform: translateX(-50%);
	border-left: 1px solid #00000012;
}

.line-wrapper:before {
  width: 3px;
  left: -2px;
  content: "";
  height: 20px;
  position: absolute;
  animation: linescroll1 5s ease-out infinite;
  background:yellow;
}

.line-wrapper .line-item {
  width: 32%;
  float: left;
  height: 100%;
  position: relative;
  display: inline-block;
  border-right: 1px solid #00000012;
}

.line-wrapper .line-item:before {
  width: 3px;
  right: -2px;
  content: "";
  height: 20px;
  position: absolute;
}

.line-wrapper .line-item:nth-child(odd):before {
  animation: linescroll2 5s ease-out infinite;
  background:yellow;
}

.line-wrapper .line-item:nth-child(even):before {
  animation: linescroll1 10s ease-out infinite;
  background:yellow;
}

@keyframes linescroll1 {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 50%;
    opacity: .5;	
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}

@keyframes linescroll2 {
  0% {
    opacity: 1;
    bottom: 0px;
  }
  50% {
    bottom: 50%;
    opacity: .5;	
  }
  100% {
    bottom: 100%;
    opacity: 1;
  }
}

header .logo {
  position: relative;
  margin-right: 30px;
  float: left;
  font-size: 0;
}

header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
}

header .logo img {
  max-width: 70px;
  height: auto;
  transition: all .3s cubic-bezier(.3, 0, .3, 1);
  -moz-transition: all .3s cubic-bezier(.3, 0, .3, 1);
  -webkit-transition: all .3s cubic-bezier(.3, 0, .3, 1);
  -o-transition: all .3s cubic-bezier(.3, 0, .3, 1);
}

header .logo img.aim-in {
  opacity: 0;
  animation: ani-in 1.5s forwards;
}

@keyframes ani-in {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

header .logo img.aim-out {
  opacity: 0;
  animation: aim-out 1.5s forwards;
}

@keyframes aim-out {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@media only screen and (max-width: 768px) {
  header .logo img {
    max-width: 50px;
  }
}

.navbar-toggler {
  position: inherit;
  top: 5%;
  right: 10px;
  transform: translate(0,-50%);
  z-index: 999;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:hover {
  height: 30px;
  width: 45px;
  margin-top: 15px;
}

.navbar-toggler .navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon::after, .navbar-toggler .navbar-toggler-icon::before {
  width: 80%;
  background-color: #F9CA21;	
  padding-right: 5px !important;
}

.navbar-toggler.toggler-spring .navbar-toggler-icon {
  margin: 7px 6px;
}

.navbar-toggler .navbar-toggler-icon {
  top: 10px;
}
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon::before {
  background-color: #F9CA21;
  width: 100%;
  height: 3px;
  display: block;
  position: absolute;
  border-radius: 100px;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon::before {
  content: "";
  display: block;
}
.navbar-toggler .navbar-toggler-icon::before {
  top: -10px;
}
.navbar-toggler .navbar-toggler-icon::after {
  bottom: -10px;
}
.navbar-toggler.toggler-spring .navbar-toggler-icon {
  top: 0;
  transition: background-color 0s 0.13s linear;
}
.navbar-toggler.toggler-spring .navbar-toggler-icon::before {
  top: 14px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navbar-toggler.toggler-spring .navbar-toggler-icon::after {
  top: 28px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.navbar-toggler.toggler-spring.active .navbar-toggler-icon {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.navbar-toggler.toggler-spring.active .navbar-toggler-icon::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.navbar-toggler.toggler-spring.active .navbar-toggler-icon::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.navbar-toggler.no-touch {
	pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .navbar-toggler,
  .navbar-toggler:active,
  .navbar-toggler:hover  {
    height: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .navbar-toggler .navbar-toggler-icon {
    width: 80%;
  }
}

@media only screen and (max-width: 768px) {
  .navbar-toggler.toggler-spring .navbar-toggler-icon::before {
    top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .navbar-toggler.toggler-spring .navbar-toggler-icon::after {
    top: 20px;
  }
}

.menu {
  background: #151931db;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items:center;
  z-index: 1;
  transform: translateY(-101%);
  transition: 1s 0.5s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.menu.open {
  transform: translateY(0%);
  transition: 1s 0.5s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
  overflow: auto;
  padding-top: 20px;
}

.full-menu {
  display: flex;
  justify-content: center;
  align-items:center;
  height: 100vh;
  width: 100%;
  padding: 20px 15px;
}

.wrap-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap-menu li {
  margin-bottom: 40px;
}

.wrap-menu li a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 80px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: 1s;
}

@media only screen and (max-width: 768px) {
  .wrap-menu li a {
    font-size: 40px;
  }
}

@media only screen and (max-width: 1024px) {
  .wrap-menu li a {
    font-size: 60px;
  }
}

.wrap-menu li a:hover {
  transition: all 0.2s ease-out;
  color: #F9CA21;
}



.hero-title {
  font-size: 80px;
  color: #fff;
}

.hero-title .hero-name {
  color: #F9CA21;
}

.post,
.hero-description,
.hero-hello {
  color: #fff;
  font-size: 20px;
}


.btn {
  border: 1px solid #F9CA21;
  color: #000;
  padding: 15px 30px;
  margin-top: 30px;
  background: #F9CA21;
  border-radius: 12px;
}

.btn:hover {
  border: 1px solid #F9CA21;
  color: #F9CA21;
  background: #f9ca212e;
}


.resume {
  position: relative;
  background: #f7f7f7;
  padding: 100px 0px
}

.socials-icon {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social {
  margin-bottom: 20px;
}

.social a svg {
  fill: #ffffff8f;
  max-height: 35px;
  transition: .3s ease-in;
}

.social a svg:hover {
  fill: #fff;
  max-height: 36px;
}

.top-title {
  font-size: 64px;
  line-height: 1.25;
  color: #cccdda;
  font-weight: 600;
  text-align: center;
}

.sub-title {
  font-size: 30px;
  line-height: 1.25;
  text-align: center;
  color: #171931;
}

.wrap-box {
  position: relative;
  margin-top: 60px;
  margin-right: 50px;
  padding-left: 100px;
}

.wrap-box:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  left: 2rem;
  background: #d9dae7;
  border-radius: 35%;
}

.box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  transition: .3s ease-in;
}

.box:before  {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -72.5px;
  top: 50%;
  background: url(/assets/img/circle.svg);
  z-index: 1;
}

.box-icon {
  margin-right: 15px;
}

.box-icon img{
  max-width: 40px;
}

.box-description .info{
  color: #46435e;
}

.box-description .description{
  color: #46435e;
  font-size: 15px;
  line-height: 32px;
}

.row.skills {
  margin-top: 50px;
}

.skill-bars,
.skill-more {
  margin-top: 50px;
}
.skill-bars .bar{
  margin: 35px 0;
}
.skill-bars .bar:first-child{
  margin-top: 0px;
}
.skill-bars .bar .info{
  margin-bottom: 5px;
}
.skill-bars .bar .info span{
  font-weight: 500;
  font-size: 17px;
  opacity: 0;
  animation: showText 0.5s 1s linear forwards;
}
@keyframes showText {
  100%{
    opacity: 1;
  }
}
.skill-bars .bar .progress-line{
  height: 10px;
  width: 100%;
  background: #f0f0f0;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05),
              0 1px rgba(255,255,255,0.8);
  animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.bar .progress-line span{
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  background: #F9CA21;
  animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
}
.bar .progress-line.html span{
  width: 90%;
}
.bar .progress-line.css span{
  width: 80%;
}
.bar .progress-line.javascript span{
  width: 65%;
}
.bar .progress-line.wordpress span{
  width: 70%;
}
.bar .progress-line.mysql span{
  width: 75%;
}
.progress-line span::before{
  position: absolute;
  content: "";
  top: -10px;
  right: 0;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-color: #171931;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
.progress-line span::after{
  position: absolute;
  top: -28px;
  right: 0;
  font-weight: 500;
  background: #171931;
  color: #fff;
  padding: 1px 8px;
  font-size: 12px;
  border-radius: 3px;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
@keyframes showText2 {
  100%{
    opacity: 1;
  }
}
.progress-line.html span::after{
  content: "90%";
}
.progress-line.css span::after{
  content: "80%";
}
.progress-line.javascript span::after{
  content: "65%";
}
.progress-line.wordpress span::after{
  content: "70%";
}
.progress-line.mysql span::after{
  content: "75%";
}


.badge {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05),
              0 1px rgba(255,255,255,0.8);
  text-align: center;
  margin-right: 25px;
  margin-bottom: 25px;
  color: #737380;
  font-size: 16px;
}

@media only screen and (max-width: 1199.98px) {
  .wrap-box {
    padding-left: 60px;
  }

  .box {
    padding: 25px;
  }

  .box:before {
    left: -32.5px;
  }
}


.portfolio {
  position: relative;
  background: #fff;
  padding: 100px 0px;
}

.project-card {
  text-decoration: none;
  color: #000;
  transition: .3s ease-in;
  display: block;
  box-shadow: 0 0.2rem 0.55rem rgb(0 0 0 / 8%);
  border-radius: 12px;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-7px);
}

.project-img {
  overflow: hidden;
  position: relative;
}

.project-img img {
  width: 100%;
  display: block;
}

.project-desc {
  padding: 20px;
}

.project-desc h3 {
  margin: 32px 0;
  color: #000;
  position: relative;
}

.project-desc svg {
  width: 20px;
}

.project-desc p {
  font-size: 16px;
  line-height: 32px;
  color: #46435e;
}


.project-desc .project-arrow {
  position: relative;
  display: inline-block;
  background-color: #18033C;
  height: 1px;
  width: 40px;
  top: -5px;
  margin: 0 20px;
  transition: width 400ms;
}
.project-desc .project-arrow:before {
  top: 0;
  transform: rotate(0);
  opacity: 0;
  content: "";
  position: absolute;
  background: #18033C;
  height: 1px;
  width: 10px;
  right: -2px;
  margin-right: 0;
  backface-visibility: hidden;
  transition: transform 400ms,  top 400ms,  opacity 200ms;
}
.project-desc .project-arrow:after {
  top: 0;
  transform: rotate(0);
  opacity: 0;
  content: "";
  position: absolute;
  background: #18033C;
  height: 1px;
  width: 10px;
  right: -2px;
  margin-right: 0;
  backface-visibility: hidden;
  transition: transform 400ms,  top 400ms,  opacity 200ms;
}

.project-card:hover .project-arrow {
  width: 50px;
}
.project-card:hover .project-arrow:before {
  top: -3px;
  transform: rotate(30deg);
  margin-left: 5px;
  opacity: 1;
}
.project-card:hover .project-arrow:after {
  top: 3px;
  transform: rotate(-30deg);
  margin-left: 5px;
  opacity: 1;
}

.project-year {
  font-size: 16px;
  color: #46435e;
  position: absolute;
  transform: translateX(0);
  opacity: 1;
  transition: transform 400ms,  opacity 200ms,  color 400ms;
  top: 30%;
}

.project-card:hover .project-year {
  transform: translateX(30px);
  opacity: 0;
}

.project-view {
  font-size: 16px;
  color: #46435e;
  position: absolute;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform 400ms,  opacity 200ms,  color 400ms;
  top: 30%;
}

.project-card:hover .project-view {
  transform: translateX(10px);
  opacity: 1;
}

.project-pause {
  position: absolute;
    height: 46px;
    width: 60px;
    right: -20px;
    top: -16px;
    font-size: 18px;
    justify-content: center;
    background-color: #171931;
    display: flex;
    align-items: center;
    border-radius: 40px;
    z-index: 10;
}

.project-card.none {
  position: relative;
  pointer-events:none;
}

.project-pause svg{
  width: 30px;
  fill: #F9CA21;
}


.project-1 {
  margin-top: 70px;
}

.project-2 {
  margin-top: 300px;
}

.project-3 {
  margin-top: 50px;
}

.project-4 {
  margin-top: 200px;
}

.project-5 {
  margin-top: 200px;
}
.project-6 {
  margin-top: 80px;
}

.about {
  margin-top: 100px;
}

.about-img {
  max-width: 100%;
  border-radius: 12px;
}

.about-info .top-title,
.about-info .sub-title {
  text-align: left;
}

.about-info .about-text {
  font-size: 16px;
  color: #46435e;
  line-height: 32px;
}
.about-cn li {
  margin-bottom: 10px;
  color: #46435e;
}

.about-cn svg {
  max-width: 15px;
  fill: #F9CA21;
  margin-right: 8px;
}

footer{
  margin-top: 150px;
  background: #F9CA21;
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;

}

footer .top-title {
  color: #fff4cc;
}

.contact-text {
  text-align: center;
}

footer .btn {
  background: #151931;
  color: #fff;
  border: 1px solid #151931;
}

footer .btn:hover{
  background: #1519315c;
  color: #fff;
  border: 1px solid #151931;
}

.footer-socials {
  margin-top: 150px;
}

footer .socials-icon {
  flex-direction: initial;
  justify-content: center;
  align-items: center;
}

footer .socials-icon .social {
  margin-left: 10px;
  margin-right: 10px;
}

footer .socials-icon .social svg {
  fill: #151931;
}

footer .social a svg:hover {
  fill: #1519315c;
  max-height: 35px;
}

footer .social {
  max-width: 40px;
}


@media only screen and (max-width: 991.98px) {
  .socials-icon {
    display: none;
  }

  .project-1,
  .project-2,
  .project-3,
  .project-4,
  .project-5,
  .project-6{
    margin-top: 70px;
  }

  footer .socials-icon {
    display: flex;
  }
}


@media only screen and (max-width: 767.98px) {
  .hero-title {
    font-size: 40px;
  }

  .about-img {
    margin-bottom: 30px;
  }

  .post,
  .hero-description,
  .hero-hello {
    font-size: 16px;
  }

  .btn {
  padding: 10px 20px;
  }

  header.sticky {
    padding: 15px 0;
  }

  .project-pause {
    right: -3px;
  }
}


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

  .wrap-box {
    margin-right: 20px;
    padding-left: 30px;
  }

  .wrap-box:before {
    left: 12px;
  }

  .box:before {
    left: -22.5px;
  }

  .box {
    display: block;
  }

  .box-icon {
    margin-bottom: 15px;
}

  .top-title {
    font-size: 46px;

  }
}

@media only screen and (max-width: 379.98px) {
  .hero-title {
    font-size: 35px;
  }

  .sub-title {
    font-size: 26px;
  }
}