@charset "UTF-8";

/* No CSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --blue: rgb(21, 21, 100);

}

body {
  background: rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
}

#particles-js {
  height: 100vh;
  width: 100vw;
  position: fixed;
}

/* navigation */
nav {
  width: 100vw;
  height: 3rem;
  padding: 0 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding-right: 11vw; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2vh;
  position: fixed;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.1);
}

nav div ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

nav div.menu ul li {
  padding: 0 1vw;
  font-weight: 500;
}

nav div.menu ul li a {
  color: var(--blue);
  cursor: pointer;
  line-height: 3rem;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

nav div ul li a:hover {
  color: #fff;
}

nav div ul li button {
  border-radius: 4px;
  font-size: 1rem;
  padding: 0 9px;
  font-weight: 600;
  line-height: 2.2rem;
  text-transform: uppercase;
  background-color: var(--var);
  color: #fff;
  border: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

nav .btn a {
  color: #fff;
  font-size: 1rem;
  background: var(--blue);
  text-transform: capitalize;
  line-height: 1.2rem;
  text-decoration: none;
  padding: .5rem 1rem;
  margin: 0 0.5rem;
}

nav .btn a:hover {
  color: var(--blue);
  font-weight: bold;
  background: #fff;
}

nav .humbarg-menu {
  display: none;
}

#close-menu {
  display: none;
}

/* main */
#main {
  height: 100vh;
  width: 100vw;
  background-image: url("../images/computer.jpg");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-attachment: fixed;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-right: 11vw;
}

#main aside {
  margin: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 10;
  width: 20%;
  height: 60vh;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 0, 19, 0.2);
}

#main aside a {
  width: 100%;
  height: 3rem;
  /* gap: 0px; */
  margin-left: 1.2rem;
  letter-spacing: 3px;
  color: var(--blue);
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main aside a:hover {
  color: #fff;
}

#main .intro {
  height: 60vh;
  width: 63vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: rgba(99, 112, 168, 0.6);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 15px;
  /* border-top-left-radius: 15px; */
  /* border-bottom-left-radius: 15px; */
  gap: 10px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

#main .intro h1 {
  font-weight: bold;
  font-size: 2.2rem;
  color: #fff;
  text-transform: uppercase;
}

#main .intro h1 span {
  color: var(--blue);
}

#main .intro .text-anim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main .intro h2 {
  font-size: 1.8rem;
  display: inline-block;
  color: #fff;
  text-transform: capitalize;
}

#main .intro span.effect {
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: bold;
}

#main .intro p {
  text-transform: capitalize;
  font-size: 1.2rem;
  line-height: 1.7rem;
  letter-spacing: 3px;
  color: #fff;
}

#main .intro p a {
  color: #fff;
}

#main .intro .hire-btn {
  color: #fff;
  line-height: 1.5rem;
  background-color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  margin-top: .5rem;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  letter-spacing: 5px;
  padding: 5px 28px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main .intro .hire-btn:hover {
  color: var(--blue);
  background: #fff;
  font-weight: bold;
}

#main .img {
  height: 60vh;
  width: 50vh;
}

#main .img img {
  height: 176%;
  width: 114%;
  -webkit-filter: grayscale(0.5);
  filter: grayscale(0.5);
}

#about {
  margin: 10vh 0;
}

#about .container {
  width: 78vw;
  height: 70%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.05);
}

#about .text {
  margin: auto;
  width: 50%;
  text-transform: capitalize;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 1px;
}

#about .text h2 {
  color: #fff;
  position: relative;
}

#about .text h2::after {
  content: "";
  height: 2.4rem;
  position: absolute;
  width: 6px;
  margin-left: 2px;
  background-color: var(--blue);
}

#about .container h2 {
  margin-bottom: 18px;
}

#about .container p {
  line-height: 2.3rem;
  padding: 0 5%;
  text-align: justify;
}

#about .about-image {
  height: 100%;
  width: 50%;
}

#about .about-image img {
  height: 100%;
  width: 100%;
}

#about .bio-container {
  width: 78vw;
  height: 70vh;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.05);
}

#about .bio-container img {
  width: 50%;
  height: 100%;
}

#about .bio-container h2 {
  margin-bottom: 25px;
}

#about .services-container {
  width: 78vw;
  height: 70vh;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(0, 0, 0, 0.05);
}

#about .services-container .services ul {
  list-style: "👉";
  width: 73%;
  margin: auto;
  line-height: 3rem;
  text-align: justify;
}

#about .services-container h2 {
  margin-bottom: 20px;
}

#about .services-container img {
  width: 50%;
  height: 100%;
}

footer {
  width: 100vw;
  height: 2rem;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  text-align: center;
  margin: auto 0;
}

footer p {
  line-height: 2rem;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: capitalize;
}

footer p span {
  font-weight: bold;
}

.container-progress {
  position: relative;
  max-width: 500px;
  width: 100%;
  background: #fff;
  margin: 0 15px;
  padding: 10px 20px;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 14px 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 14px 7px rgba(0, 0, 0, 0.2);
}

.container-progress .skill-box {
  width: 100%;
  margin: 25px 0;
}

.skill-box .title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.skill-box .skill-bar {
  height: 8px;
  width: 100%;
  border-radius: 6px;
  margin-top: 6px;
  background: rgba(0, 0, 0, 0.1);
}

.skill-bar .skill-per {
  position: relative;
  display: block;
  height: 100%;
  width: 90%;
  border-radius: 6px;
  background: #4070f4;
  -webkit-animation: progress 0.4s ease-in-out forwards;
  animation: progress 0.4s ease-in-out forwards;
  opacity: 0;
}

.skill-per.css {
  width: 70%;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.skill-per.javascript {
  width: 50%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.skill-per.nodejs {
  width: 30%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes progress {
  0% {
    width: 0;
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.skill-per .tooltip {
  position: absolute;
  right: -14px;
  top: -28px;
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  background: #4070f4;
  z-index: 1;
}

.tooltip::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 10px;
  width: 10px;
  z-index: -1;
  background-color: #4070f4;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

body div.preloader {
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 20;
  background-image: url("../preloader/loader.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
