@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: 100% 100%;
  font-family: "Poppins", sans-serif;
  cursor: none;
}
body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  display: none;
}

body::-webkit-scrollbar-thumb {
  display: none;
}
::selection {
  background-color: #121212;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  left: -5px;
  top: -5px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.grow {
  width: 100px;
  height: 100px;
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s;
}

.loading-screen {
  position: fixed;
  top: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  z-index: 1000;
  transform: scaleX(0);
}
.load-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 900;
  pointer-events: none;
}

.container {
  max-width: 1155px;
  margin: auto;
}
.btn {
  padding: 8px 30px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  background-color: transparent;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: #fff;
  color: #000;
}
section {
  padding: 20px;
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  overflow: hidden;
}
header {
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
header .nav {
  padding: 0 20px;
}
header .nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  margin: 25px 0;
  gap: 100px;
}
.nav .nav-list .list-item {
  margin-right: -10px;
}
.nav .nav-list a {
  color: #fff;
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
}
.nav .nav-list .list-item a:hover {
  transform: scale(1.2);
}
.nav .nav-list .link-item-logo.no-point:hover {
  transform: scale(1);
}
.list-item {
  width: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.nav-list .list-item .header-logo {
  max-width: 83px;
  margin: auto;
}
#section-1 {
  position: relative;
  padding: 20px;
}
.stfn-img-wrapper {
  position: absolute;
  left: 50%;
  width: 105%;
  max-height: 385px;
  height: 100%;
  overflow: hidden;
  transform: translateX(-50%);
}
.stfn-img-wrapper img {
  position: absolute;
  width: 110%;
  object-fit: cover;
  top: 45px;
  transform: translateY(150%);
}

.about-wrapper {
  display: flex;
  padding: 30px 0 20px 0;
}
.left-col {
  margin: 20px;
  padding-top: 50px;
  flex-basis: 60%;
  max-width: 60%;
  position: relative;
}
.right-col {
  margin: 20px;
  position: relative;
  z-index: 2;
  flex-basis: 40%;
  max-width: 40%;
}
@keyframes scroll {
  to {
    transform: translateY(10px);
  }
}
.about-me-img {
  position: relative;
  margin-left: -210px;
}
.about-me-img::before {
  position: absolute;
  content: "";
  left: 30px;
  bottom: 70px;
  background-image: url(../img/scroll-arrow.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 10px;
  height: 59px;
  opacity: 1;
  animation: scroll 1s infinite alternate;
}
.about-me-img img {
  /* clip-path: polygon(0 0, 0 0, 0 0, 0 0); */
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transition: all 0.4s ease;
  margin-left: auto;
}
.hello-text {
  color: #fff;
  font-size: 30px;
  font-family: "Archivo Black", sans-serif;
  margin: 0 0 10px 0;
  position: relative;
  padding-left: 40px;
  overflow: hidden;
}
.hello-text span {
  position: relative;
  display: block;
  transform: translateY(100%);
}

.hello-text span:before {
  position: absolute;
  content: "";
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/wave-icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
.primary-heading {
  color: #fff;
  font-size: 110px;
  font-family: "Archivo Black", sans-serif;
  line-height: 1;
  text-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.primary-heading span {
  display: block;
  transform: translateY(100%);
}
.secondary-heading {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
}
.sub-heading {
  overflow: hidden;
}
.sub-heading span {
  transform: translateY(100%);
  display: block;
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  margin: 0;
  position: relative;
}
.about-text {
  color: #8d8e90;
  font-size: 16px;
  line-height: 1.87;
  max-width: 520px;
  margin-bottom: 20px;
  opacity: 0;
}
.about-text:last-child {
  margin-bottom: 0 !important;
}
.about-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
  opacity: 0;
}
.about-list li {
  color: #8d8e90 !important;
  line-height: 1.87;
}
.blue-bg-text {
  position: relative;
  width: max-content;
  margin-bottom: 50px;
}
.blue-mask {
  background: #6147ff;
  mix-blend-mode: color;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transform-origin: center left;
  display: inline-block;
  width: 200px;
  height: 56px;
  margin: 0;
}
/* ------------------------------------------- */
#section-2 {
  padding: 20px;
}
#section-2 .about-wrapper {
  padding-top: 0;
}
#section-2 .about-text {
  max-width: 100%;
  margin-bottom: 30px;
}
#section-2 img {
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}
#section-2 .left-col {
  flex-basis: 48%;
  max-width: 48%;
}
#section-2 .right-col {
  flex-basis: 52%;
  max-width: 52%;
}
#section-2 .about-wrapper {
  align-items: end;
}
#section-2 img {
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transition: all 0.5s;
}
#section-2 .buttons-wrapper {
  display: flex;
  align-items: ceter;
  gap: 30px;
}
#section-2 .portfolio-btn {
  background-color: #fff !important;
  color: #090709 !important;
  opacity: 0;
}
#section-2 .contact-btn {
  opacity: 0;
}
/* --------------------------------------------- */
#section-3 {
  position: relative;
  margin-top: 100px;
}
#section-3::before {
  position: absolute;
  content: "";
  background-image: url(../img/bg-shape.png);
  background-color: #121212;
  background-size: cover;
  mix-blend-mode: lighten;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 505px;
}
#section-3 .about-wrapper {
  padding-top: 65px;
  position: relative;
  z-index: 3;
  justify-content: space-between;
}
#section-3 .about-text {
  max-width: 434px;
}
#section-3 .services {
  padding-left: 25px;
  list-style: disc;
  opacity: 0;
}
#section-3 .services li {
  color: #fff;
  font-size: 22px;
  line-height: 1.81;
}
#section-3 .service-wrapper {
  padding-left: 120px;
}
#section-3 .example-wrapper {
  padding-left: 70px;
  margin-top: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}
#section-3 .web-example img {
  margin: auto;
}
#section-3 .contact-wrapper {
  margin-top: 20px;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#section-3 .get-in-touch-text {
  font-size: 30px;
  color: #fff;
  text-align: center;
  opacity: 0;
}
#section-3 .secondary-heading {
  overflow: hidden;
  margin-bottom: 30px;
}
#section-3 .secondary-heading span {
  display: block;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  transform: translateY(100%);
}
#section-3 .contact-btn {
  opacity: 0;
}
/* ------------------------------------ */

#footer {
  background-color: #000;
  background-image: url("../img/bg-shape.png");
  background-size: cover;
  margin-bottom: 55px;
  position: relative;
  width: 100%;
  bottom: 0;
}
.footer-wrapper {
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
#footer p {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.footer-social-icons a {
  width: 16px;
}
.footer-social-icons a svg path {
  transition: all 0.3s ease;
}
.footer-social-icons a:hover svg path {
  fill: #fff;
}
@media (min-width: 2000px) {
  #section-1::before {
    background-size: 100% 100%;
  }
}

@media (max-width: 1440px) {
  .stfn-img-wrapper {
    height: 305px;
  }
}
@media (max-width: 1199px) {
  .primary-heading span {
    font-size: 90px;
  }
  .about-me-img {
    margin-left: -70px;
  }
  .about-me-img img {
    margin-left: auto;
  }
  .about-text {
    max-width: 430px;
  }
  #section-3 .service-wrapper {
    padding-left: 0;
  }
  #section-3 .example-wrapper {
    padding-left: 0;
  }
  .about-me-img::before {
    left: -50px;
  }
  .blue-bg-text {
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .cursor {
    display: none;
  }
  .left-col,
  .right-col {
    margin: 0;
  }
  .about-wrapper {
    gap: 20px;
  }
  .primary-heading span {
    font-size: 80px;
  }
  .secondary-heading {
    margin-bottom: 10px;
    line-height: 1;
  }
  .secondary-heading span {
    font-size: 28px !important;
  }
  .sub-heading span {
    font-size: 26px;
  }

  .blue-mask {
    width: 145px;
  }
  .stfn-img-wrapper {
    height: 235px;
  }

  #section-3 {
    margin-top: 0;
  }
  #section-3 .service-wrapper {
    padding-left: 0;
  }
  #section-3 .example-wrapper {
    margin-top: 50px;
    padding-left: 0;
    padding-right: 15px;
  }
  #section-3 .services li {
    font-size: 16px;
  }
  #section-3 .contact-wrapper {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  #section-2 .about-wrapper {
    align-items: center;
  }
  .about-wrapper {
    padding-top: 0;
    align-items: center;
  }
  .about-text {
    font-size: 14px;
  }
  .about-list {
    font-size: 14px;
  }
  .about-list,
  .about-text {
    margin-bottom: 20px !important;
  }
  .cursor {
    display: none;
  }
}
@media (max-width: 950px) {
  .about-me-img::before {
    left: -20px;
  }
}
@media (max-width: 890px) {
  .about-text {
    max-width: 350px;
  }
  .primary-heading span {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  .about-me-img::before {
    display: none;
  }
  .about-wrapper {
    flex-direction: column;
  }
  .col {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
  }
  .stfn-img-wrapper {
    height: 100px;
  }
  .stfn-img-wrapper img {
    top: 0;
  }
  #section-2 .left-col {
    flex-basis: 100%;
    max-width: 100%;
  }
  #section-2 .right-col {
    flex-basis: 100%;
    max-width: 100%;
  }
  .primary-heading span {
    font-size: 50px;
  }
  .secondary-heading span {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }
  .sub-heading span {
    font-size: 24px;
  }
  .list-item {
    width: 83px;
  }
  header .nav .nav-list {
    gap: 40px;
  }
  .nav .nav-list a {
    font-size: 20px;
  }
  .left-col {
    padding-top: 0;
  }
  .about-text {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .blue-mask {
    width: 125px;
  }
  .about-me-img {
    margin-top: 30px;
    margin-left: 0;
  }
  .about-list {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .about-list li {
    font-size: 14px;
  }
  #section-2 .about-wrapper {
    flex-direction: column-reverse;
  }
  #section-2 .about-text {
    margin-bottom: 20px;
  }
  #section-2 .left-col {
    margin-top: 30px;
  }
  #section-3 {
    margin-top: 20px;
  }
  #section-3 .service-wrapper {
    padding-left: 0;
  }
  #section-3 .about-wrapper {
    padding-top: 30px;
  }
  #section-3::before {
    height: 400px;
  }
  #section-3 .services li {
    font-size: 18px;
  }
  #section-3 .example-wrapper {
    margin-top: 50px;
    padding-left: 0;
    padding-right: 0;
  }
  .web-example {
    margin-top: 25px;
  }
  #section-3 .contact-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  #section-3 .get-in-touch-text {
    font-size: 18px;
  }
}
