@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;500;600;700&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  height: -webkit-fill-available;
  color: #fafafa;
  background-color: #080a0c;
}
main {
  overflow: hidden;
}
a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}
.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}
.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: inherit;
  max-width: 95%;
  height: auto;
  text-transform: unset;
  color: #e4e6e7;
}
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: #fafafa;
  background-color: #101419;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: #080a0c;
  background-color: #fafafa;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}
.header.on-scroll {
  background: #0c0f13;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}
.brand {
  font-family: inherit;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -1px;
  color: #fafafa;
  text-transform: uppercase;
}
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: #0c0f13;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link:hover {
  text-decoration: none;
  color: white;
}

.menu-link {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #fafafa;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.menu-block:hover {
  text-decoration: none;
  color: white;
  background-color: #099f1b;
}

.menu-inner a {
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
  padding: 4px 0;
}
.menu-inner a::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.5s transform ease;
  transform: scale3d(0, 1, 1);
  transform-origin: 0 50%;
}
.menu-inner a:hover::before {
  transform: scale3d(1, 1, 1);
}
.menu-inner a::before {
  background: #0bb520;
  border-radius: 50px;
  transform-origin: 100% 50%;
}
.menu-inner a:hover::before {
  transform-origin: 0 50%;
}

.menu-block {
  display: inline-block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #0bb520;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.75rem;
  height: 1rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  transform: rotate(0deg);
  background-color: #fafafa;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  right: -1.5rem;
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}

.banner-section {
  min-height: 100vh;
  background-color: #111215;
  position: relative;
}

.coming-soon img {
  max-width: 410px;
  width: 100%;
}
.coming-soon img:first-child {
  margin-bottom: 2rem;
}

.gradient-circle {
  position: absolute;
  left: -250px;
  top: 200px;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 70%;
  background-image: -webkit-linear-gradient(45deg, #0bb520, #000000);
  background-image: -o-linear-gradient(45deg, #0bb520, #000000);
  background-image: linear-gradient(45deg, #0bb520, #000000);
  opacity: 0.25;
  -webkit-filter: blur(100px);
  filter: blur(100px);
}

.gradient-circle.two {
  left: auto;
  top: -250px;
  right: -250px;
  bottom: auto;
  background-image: -webkit-linear-gradient(45deg, #00d327, #00d327);
  background-image: -o-linear-gradient(45deg, #00d327, #00d327);
  background-image: linear-gradient(45deg, #00d327, #00d327);
}

.line {
  position: absolute;
  height: 2px;
  width: 65%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
}

.line.left {
  left: 0;
}

.line.right {
  right: 0;
}

.line.bottom {
  bottom: 0;
}

.pt-75px {
  padding-top: 75px;
}

.pb-75px {
  padding-bottom: 75px;
}

.service-section {
  background-color: #111215;
}

.service-section .item-box img {
  width: 100px;
}

.service-section .item-box .cont {
  padding-left: 30px;
}

.service-section .item-box h6 {
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.service-section .item-box:hover h6 {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-section .item-box p {
  line-height: 1.4;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #b1a0a0;
}

.service-section .item-box {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  padding: 40px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-section {
  background-color: #111215;
  position: relative;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 90px;
  text-align: center;
}

.color-font {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-section .img-box {
  position: relative;
}

.about-section .img-box img {
  position: relative;
  padding: 5px;
  border-radius: 5px;
  z-index: 2;
}

.about-section .img-box:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  border-radius: 5px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
  z-index: 0;
}

.section-header {
  color: white;
  font-size: 55px;
  font-weight: 600;
}

.section-seb-heading {
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.p-text {
  color: white;
}

.about-text-section {
  width: 85%;
}

.about-section .img-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #111215;
  border-radius: 5px;
  z-index: 1;
}

.more-animation-link a:hover {
  text-decoration: none;
  color: #00d327;
}

.more-animation-link a:after {
  display: inline-block;
  content: "";
}

@keyframes changeLetter {
  0% {
    content: "";
    padding-left: 0px;
  }
  30% {
    padding-left: 3px;
    content: url("../img/svg/arrow_right_white_small.svg");
  }
  60% {
    padding-left: 6px;
    content: url("../img/svg/arrow_right_white.svg");
  }
  100% {
    content: url("../img/svg/arrow_right_white.svg");
    padding-left: 8px;
  }
}

.more-animation-link a:after {
  animation: changeLetter 1s linear infinite;
}

.more-animation-link a {
  padding: 10px 15px 10px 0;
  /*border: 1px solid #FFF;*/
  /*border-radius: 10px;*/
  color: #00d327;
  line-height: 1em;
}

@media only screen and (max-width: 600px) {
  .banner-text {
    font-size: 90px;
  }

  .freelancer-banner-img {
    margin-left: auto;
    margin-right: auto;
    width: 190px !important;
    height: 190px !important;
    margin-bottom: 30px;
  }

  .p-text-center {
    text-align: center;
  }

  .coming-soon img {
    max-width: 290px;
  }
}

.freelancer-banner-img:hover::after {
  animation: bannerimgani 1s linear infinite;
}

@keyframes bannerimgani {
  0% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(36deg, #00d327, #28a745, #17a2b8);
  }
  10% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(72deg, #00d327, #28a745, #17a2b8);
  }
  20% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(108deg, #00d327, #28a745, #17a2b8);
  }
  30% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(144deg, #00d327, #28a745, #17a2b8);
  }
  40% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(180deg, #00d327, #28a745, #17a2b8);
  }
  50% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(216deg, #00d327, #28a745, #17a2b8);
  }
  60% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(252deg, #00d327, #28a745, #17a2b8);
  }
  70% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(288deg, #00d327, #28a745, #17a2b8);
  }
  80% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(324deg, #00d327, #28a745, #17a2b8);
  }
  90% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(360deg, #00d327, #28a745, #17a2b8);
  }
  100% {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#00d327),
      color-stop(#28a745),
      to(#17a2b8)
    );
    background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
    background: linear-gradient(0deg, #00d327, #28a745, #17a2b8);
  }
}

.freelancer-banner-img:after {
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
  animation: bannerimgani 1s linear infinite;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  z-index: -1;
}

.freelancer-banner-img {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  z-index: 2;
}

.freelancer-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.cd-headline.clip .typing {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00d327),
    color-stop(#28a745),
    to(#17a2b8)
  );
  background: -webkit-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: -o-linear-gradient(left, #00d327, #28a745, #17a2b8);
  background: linear-gradient(to right, #00d327, #28a745, #17a2b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.freelancre-banner-box .get-in-touch .icon-box img {
  width: 45px;
}

.freelancre-banner-box .get-in-touch .icon-box {
  width: 70px;
  height: 50px;
  background: -webkit-linear-gradient(
    323.53deg,
    #18191d 6.69%,
    rgba(4, 4, 5, 0.1) 85.43%
  );
  background: -o-linear-gradient(
    323.53deg,
    #18191d 6.69%,
    rgba(4, 4, 5, 0.1) 85.43%
  );
  background: linear-gradient(
    126.47deg,
    #18191d 6.69%,
    rgba(4, 4, 5, 0.1) 85.43%
  );
  display: flex;
  /* position: relative; */
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-left: 10px;
}

.freelancre-banner-box h3 {
  font-size: 65px;
  font-weight: 400;
  margin-right: 20px;
  line-height: 1em;
}

.freelancre-banner-box h5.text a {
  color: white;
}

.freelancre-banner-box h5.text {
  font-size: 22px;
  font-weight: 500;
  /*line-height: 1em;*/
}

.freelancre-banner-box p.text {
  font-size: 16px;
  text-transform: uppercase;
  color: #a4a7b1;
  line-height: 1em;
  line-height: 1.4em;
}

.banner-box-bottom {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: 700;
  font-size: 90px;
  text-align: left;
}
