@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --mainColor: #37d49d;
  --bgcolor: #161616;
}

::selection {
  color: var(--mainColor);
  background-color: #343434;
}

html::-webkit-scrollbar {
  display: none;
}

.content::-webkit-scrollbar {
  display: none;
}

html, .content {
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  overflow: hidden;
}

body {
  color: #fff;
  background-color: #0c0c0c;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

body > div {
  width: 100%;
  height: 100%;
  transition: all .6s ease-out;
  animation: .6s ease-out forwards sds;
}

.content {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden auto;
}

#header {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 3.5rem;
  display: flex;
}

.logo {
  width: 5rem;
  margin-left: 4.7rem;
}

.logo img {
  cursor: pointer;
  border-radius: 10pc;
  width: 100%;
}

#nav {
  flex-basis: 35rem;
  justify-content: space-between;
  align-items: center;
  width: 47%;
  margin-right: 3rem;
  padding-inline: 2rem;
  display: flex;
}

#nav a {
  color: #fff;
  letter-spacing: .15rem;
  padding: .5rem 0;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

#nav a:before {
  content: "";
  background-color: var(--mainColor);
  width: 0;
  height: .21rem;
  transition: all .3s linear;
  display: inline-block;
  position: absolute;
  bottom: -.7rem;
  left: 0;
}

li {
  list-style: none;
}

#nav li:hover :before {
  width: 100%;
}

#main {
  margin-top: 10rem;
  padding-inline: 2.7rem;
}

#headings {
  height: 18vh;
}

#main h1 {
  color: #ffffffdb;
  margin-top: 6rem;
  margin-left: 4rem;
  font-size: 4rem;
  font-weight: 700;
}

.defaultcolor {
  color: var(--mainColor);
}

mark {
  color: #0db188;
  background-color: #0000;
  font-weight: bold;
}

#main h1#autotext {
  margin-top: 0;
  display: inline-block;
}

.typed-cursor {
  color: var(--mainColor);
  margin-left: 1rem;
  font-size: 3rem;
  display: inline-block;
}

#main p {
  margin-top: 10rem;
  padding-inline: 3rem;
  font-size: 1.8rem;
}

#homeBtns {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  row-gap: 10px;
  margin-top: 7rem;
  display: flex;
}

.btn {
  z-index: 1;
  color: #090909;
  cursor: pointer;
  background: #e8e8e8;
  border: .1rem solid #e8e8e8;
  border-radius: .4em;
  margin-left: 3rem;
  padding: .7em 1.7em;
  font-size: 1.8rem;
  transition: all .2s ease-in;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
}

.btn:before {
  content: "";
  z-index: -1;
  background-color: #0000000d;
  border-radius: 50%;
  width: 140%;
  height: 180%;
  transition: all .5s cubic-bezier(.55, 0, .1, 1) .1s;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%)scaleY(1)scaleX(1.25);
}

.btn:after {
  content: "";
  background-color: var(--mainColor);
  z-index: -1;
  border-radius: 50%;
  width: 160%;
  height: 190%;
  transition: all .5s cubic-bezier(.55, 0, .1, 1) .1s;
  display: block;
  position: absolute;
  top: 180%;
  left: 55%;
  transform: translateX(-50%)scaleY(1)scaleX(1.45);
}

.btn:hover {
  color: #fff;
  border: .1rem solid #009087;
}

.btn:hover:before {
  background-color: var(--mainColor);
  top: -35%;
  transform: translateX(-50%)scaleY(1.3)scaleX(.8);
}

.btn:hover:after {
  background-color: #009087;
  top: -45%;
  transform: translateX(-50%)scaleY(1.3)scaleX(.8);
}

.socialLinks {
  justify-content: flex-start;
  gap: 30px;
  width: 30%;
  margin-top: 8rem;
  margin-left: 3rem;
  display: flex;
}

.socialLinks a {
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  transition: all .3s linear;
}

.socialLinks a:hover {
  color: var(--mainColor);
}

#rightContainer .intro_sec {
  background-image: url("bg.f18f46d9.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#hireme {
  padding: 2rem;
  display: none;
}

.backBtn {
  border: .2rem solid var(--mainColor);
  color: var(--mainColor);
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  width: 5.5rem;
  margin-top: 3rem;
  margin-left: 3rem;
  font-size: 2rem;
  line-height: 5rem;
  transition: all .5s ease-in;
}

.backBtn:hover {
  color: #2bbb89c2;
  border-color: #2bbb89c2;
}

#hireme h1 {
  text-transform: uppercase;
  margin-block: 3rem;
  margin-left: 2rem;
  font-size: 4rem;
}

#hireme p {
  color: #898989;
  margin-left: 2rem;
  font-size: 1.6rem;
}

#hireme form {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 4rem 2rem;
  width: 100%;
  margin-top: 5rem;
  display: flex;
}

#hireme form .field {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding-inline: 2rem;
  display: flex;
}

#hireme form input {
  color: #fff;
  background: none;
  border: none;
  border-bottom: .2rem solid #fff;
  outline: none;
  width: 100%;
  padding: .6rem .2rem;
  font-size: 1.7rem;
  transition: all .5s linear;
}

#hireme form .btn {
  margin-top: 0;
}

input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

#hireme form textarea {
  color: #fff;
  resize: none;
  background: none;
  border: none;
  border-bottom: .2rem solid #fff;
  outline: none;
  width: 100%;
  height: 14rem;
  padding: .4rem .8rem;
  font-size: 1.7rem;
  transition: all .5s linear;
  display: block;
}

#hireme form input:focus, #hireme form textarea:focus {
  border-bottom-color: var(--mainColor);
}

.about {
  display: none;
}

#leftContainer .about {
  background-image: url("bg.f6d19d66.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#rightContainer .about {
  background-color: var(--bgcolor);
  padding: 1rem;
}

#rightContainer .about h1 {
  margin-block: 5rem;
  margin-left: 4rem;
  font-size: 5rem;
  font-weight: bolder;
}

#rightContainer .about #texts {
  color: #e8e8e8;
  margin-left: 4rem;
  font-size: 1.5rem;
}

#rightContainer .about p {
  margin-block: 2rem;
}

.works {
  display: none;
}

#leftContainer .works {
  padding-top: 8.5rem;
}

.works h1 {
  margin-left: 5rem;
  padding-top: 3rem;
  font-size: 5rem;
}

.works > div {
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-top: 3rem;
  padding-bottom: 2rem;
  display: flex;
}

.project {
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.project img {
  cursor: pointer;
  width: 80%;
}

#rightContainer .works {
  background-color: var(--bgcolor);
}

.scrollBar {
  width: .2rem;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

#rightContainer .scrollBar {
  top: 100%;
  left: 0;
}

.progress {
  background-color: var(--mainColor);
  width: 100%;
  height: 0;
}

#popupOverlay {
  background-color: #ffffff27;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 3rem 1rem 1rem;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

#popup {
  color: #ffffffe7;
  background-color: #161616;
  border-radius: .7rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  width: 100%;
  max-width: 65rem;
  padding: 1rem 2rem;
  transition: all .4s ease-out;
  display: flex;
  transform: scale(0);
}

#popup.open {
  transform: scale(1);
}

#popup h1 {
  color: #0db188;
  letter-spacing: .6px;
  font-weight: bolder;
}

#popup p {
  font-size: 1.5rem;
}

#popup #tags {
  color: #e8e8e8;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 1.7rem;
  width: 90%;
  padding-top: 2rem;
  font-size: 1.6rem;
  display: flex;
}

#popup #tags .tag {
  cursor: pointer;
  color: #0db188;
  background-color: #000;
  border: .1rem solid #83f7ef;
  border-radius: 10pc;
  padding: .2rem .8rem;
  transition: all .2s linear;
}

#popup #tags .tag:hover {
  transform: translateY(-3px);
}

#popup #buttons {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  display: flex;
}

#popup #buttons button {
  color: #fff;
  cursor: pointer;
  background-color: #0db188;
  border: none;
  border-radius: .7rem;
  padding: .6rem 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  transition: all .2s linear;
}

#popup #buttons button:hover {
  background-color: #009087;
}

#testimonialContainer {
  -webkit-user-select: none;
  user-select: none;
  width: 90%;
  margin-inline: auto;
  position: relative;
}

#freelancingProject .card {
  color: #e8e8e8;
  background-color: #000;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 1.3rem 1.3rem 1.6rem;
  display: flex;
}

#freelancingProject .card img {
  cursor: default;
  border-radius: 50%;
  width: 10rem;
  transition: all .3s ease-out;
}

#freelancingProject .card img:hover {
  transform: scale(1.1);
}

#freelancingProject .card #feedback {
  letter-spacing: .3px;
  font-size: 1.8rem;
}

#freelancingProject .card #clientName {
  color: #37d49d;
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@media screen and (width <= 1333px) {
  .works h1 {
    font-size: 3.5rem;
  }
}

@media screen and (width <= 960px) {
  .mobHide {
    z-index: -1;
    opacity: .4;
    position: absolute;
  }

  #rightContainer.mobHide .intro_sec {
    background-image: url("bg.f6d19d66.jpg");
  }

  .socialLinks {
    width: 40%;
  }

  #leftContainer .works {
    padding-top: 0;
  }
}

@media screen and (width <= 510px) {
  #nav {
    margin-right: 0;
  }

  .logo {
    margin-left: 1.3rem;
    margin-right: .5rem;
  }

  #headings {
    height: 12vh;
  }

  #main h1 {
    margin-left: 1rem;
    font-size: 2.8rem;
  }

  #main p {
    margin-top: 5rem;
    padding-left: 1rem;
  }

  #main .btn {
    margin-left: 1rem;
  }

  .socialLinks {
    width: 50%;
    margin-top: 6rem;
  }

  #rightContainer .about #texts {
    margin-left: 1.5rem;
  }

  #hireme form .field {
    flex-direction: column;
  }

  #hireme .backBtn {
    margin-top: 0;
  }

  #popup p {
    font-size: 1.3rem;
  }

  #freelancingProject .card #feedback {
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=index.de60c63c.css.map */
