@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css");
@import url(../fonts/nohemi.css);
:root {
  --fhead: "Nohemi";
  --fbody: "DM Sans", sans-serif;
}

body {
  font-family: var(--fbody);
  font-weight: 400;
  background-color: #000;
}

.mainHeader {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  color: #FFFFFF;
  z-index: 1040;
  transition: 0.5s all ease;
}
.mainHeader .logo {
  font-family: var(--fhead);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
}
.mainHeader .navBtn {
  display: none;
}
.mainHeader .container {
  padding: 10px 20px;
  border-radius: 29px;
  display: flex;
  background-color: #000;
  align-items: center;
  border: 1px solid #FFFFFF;
  margin: 10px auto;
  width: calc(100vw - 20px);
  max-width: 1000px;
  transition: 0.5s all ease;
}
.mainHeader .navCollapse {
  margin-left: auto;
}
.mainHeader .navCollapse .navClose {
  display: none;
}
.mainHeader .navList {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  gap: 20px;
  align-items: center;
}
.mainHeader .navList a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: 0.3s all ease;
}
.mainHeader .navList a:hover {
  color: #12f3b7;
  font-weight: 600;
  letter-spacing: 5px;
}
.mainHeader.scrolled {
  background-color: #000;
  border-bottom: 1px solid #FFFFFF;
}
.mainHeader.scrolled .container {
  margin: 0 auto;
  border: none;
  border-radius: 0;
}

.smallBtn {
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 15px 5px 10px;
  background-color: #FFFFFF;
  color: #000;
  display: inline-block;
  text-decoration: none;
  font-size: 0.7rem;
  transition: 0.3s all ease;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.smallBtn.scrollDown {
  padding-right: 5px;
}
.smallBtn.scrollDown::after {
  content: "\f358";
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 400;
  margin-left: 5px;
  opacity: 0;
  transform: translateY(-5px);
}
.smallBtn.scrollDown:hover {
  padding-right: 15px;
}
.smallBtn.scrollDown:hover::after {
  transform: translateY(0);
  opacity: 1;
  top: 0;
  transition: 0.3s all ease;
}
.smallBtn.dark {
  background-color: #000;
  color: #FFFFFF;
}

.caseMainCard {
  display: flex;
  background-color: #222;
  border-radius: 25px;
  padding: 30px;
  margin-top: 200px;
}
.caseMainCard .imageWrapper {
  flex: 0 0 40%;
  width: 40%;
  position: relative;
}
.caseMainCard .imageWrapper img {
  position: absolute;
  width: 100%;
  height: calc(100% + 260px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  left: 0;
  bottom: -30px;
}
.caseMainCard .textArea {
  flex: 0 0 60%;
  width: 60%;
  color: #808080;
}
.caseMainCard .textArea h3 {
  color: #FFFFFF;
  font-weight: 600;
  font-family: var(--fhead);
}

#screenshots .imageSlide {
  height: 30vw;
  background-image: url(../img/bhouma/Frame_3.webp);
  background-size: cover;
  background-position: left top;
  animation-name: imageAnim;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes imageAnim {
  from {
    background-position-x: 0%;
  }
  to {
    background-position-x: calc(100% - 100vw);
  }
}
img {
  max-width: 100%;
  height: auto;
}

.scopeWrapper > div:nth-child(5n+1) .scopeCard .icon {
  color: rgb(245, 133, 148);
}
.scopeWrapper > div:nth-child(5n+2) .scopeCard .icon {
  color: rgb(192, 230, 116);
}
.scopeWrapper > div:nth-child(5n+3) .scopeCard .icon {
  color: rgb(99, 171, 248);
}
.scopeWrapper > div:nth-child(5n+4) .scopeCard .icon {
  color: rgb(155, 93, 248);
}
.scopeWrapper .scopeCard {
  padding: 30px;
  border-radius: 25px;
  background-color: #111;
}
.scopeWrapper .scopeCard .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  font-size: 26px;
  color: #12f3b7;
  margin-bottom: 20px;
}
.scopeWrapper .scopeCard h5 {
  font-family: var(--fhead);
  font-weight: 600;
  color: #FFFFFF;
}
.scopeWrapper .scopeCard p {
  margin-bottom: 0;
  color: #808080;
  font-size: 0.875rem;
}

#timeline {
  color: #808080;
}

.timelineWeeks {
  position: relative;
  padding-top: 30px;
  padding-bottom: 5px;
  display: grid;
  gap: 10px;
}
.timelineWeeks .markings {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.timelineWeeks .markings .labels {
  display: flex;
}
.timelineWeeks .markings .labels span {
  flex: 0 0 33.333333%;
  width: 33.333333%;
  color: #999;
}
.timelineWeeks .markings .line {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
}
.timelineWeeks .markings .line span {
  width: 0;
  height: 100%;
  border-left: 1px dashed #222;
}
.timelineWeeks .process {
  position: relative;
  z-index: 2;
}
.timelineWeeks .process .content {
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 10px;
  padding: 10px 20px 10px 25px;
  position: relative;
}
.timelineWeeks .process .content::before {
  content: "";
  position: absolute;
  width: 3px;
  height: calc(100% - 10px);
  border-radius: 3px;
  background-color: #12f3b7;
  top: 5px;
  left: 15px;
}
.timelineWeeks .process .content h6 {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0;
}
.timelineWeeks .process .content p {
  margin-bottom: 0;
  font-size: 0.7rem;
  color: #808080;
}
.timelineWeeks .processWidth-1 {
  flex: 0 0 8.333333%;
  width: 8.333333%;
}
.timelineWeeks .processWidth-2 {
  flex: 0 0 16.666667%;
  width: 16.666667%;
}
.timelineWeeks .processWidth-3 {
  flex: 0 0 25%;
  width: 25%;
}
.timelineWeeks .processWidth-4 {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}
.timelineWeeks .processWidth-5 {
  flex: 0 0 41.666667%;
  width: 41.666667%;
}
.timelineWeeks .processWidth-6 {
  flex: 0 0 50%;
  width: 50%;
}
.timelineWeeks .processWidth-7 {
  flex: 0 0 58.333333%;
  width: 58.333333%;
}
.timelineWeeks .processWidth-8 {
  flex: 0 0 66.666667%;
  width: 66.666667%;
}
.timelineWeeks .processWidth-9 {
  flex: 0 0 75%;
  width: 75%;
}
.timelineWeeks .processWidth-10 {
  flex: 0 0 83.333333%;
  width: 83.333333%;
}
.timelineWeeks .processWidth-11 {
  flex: 0 0 91.666667%;
  width: 91.666667%;
}
.timelineWeeks .processWidth-12 {
  flex: 0 0 100%;
  width: 100%;
}
.timelineWeeks .processStart-1 {
  margin-left: 8.333333%;
}
.timelineWeeks .processStart-2 {
  margin-left: 16.666667%;
}
.timelineWeeks .processStart-3 {
  margin-left: 25%;
}
.timelineWeeks .processStart-4 {
  margin-left: 33.333333%;
}
.timelineWeeks .processStart-5 {
  margin-left: 41.666667%;
}
.timelineWeeks .processStart-6 {
  margin-left: 50%;
}
.timelineWeeks .processStart-7 {
  margin-left: 58.333333%;
}
.timelineWeeks .processStart-8 {
  margin-left: 66.666667%;
}
.timelineWeeks .processStart-9 {
  margin-left: 75%;
}
.timelineWeeks .processStart-10 {
  margin-left: 83.333333%;
}
.timelineWeeks .processStart-11 {
  margin-left: 91.666667%;
}
.timelineWeeks .processStart-12 {
  margin-left: 100%;
}

#screenshots {
  background-color: #111;
}
#screenshots img {
  border-radius: 40px;
}
#screenshots #screenshot .item {
  position: relative;
}
#screenshots #screenshot .item::before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 27%;
  height: 4%;
  top: 1%;
  left: 50%;
  border-radius: 50px;
  transform: translateX(-50%);
}

#result {
  color: #808080;
}
#result h4 {
  font-weight: 900;
  font-family: var(--fhead);
  color: #000;
  font-size: 6rem;
  -webkit-text-stroke: 1px #12f3b7;
  paint-order: stroke color;
  text-shadow: 0 4px 100px rgba(18, 243, 183, 0.5);
}
#result h5 {
  color: #FFFFFF;
}

#challenge {
  padding-top: 0;
  counter-set: chaCounter;
}
#challenge .challengeCard {
  counter-increment: chaCounter;
  padding: 30px;
  border: 1px solid #12f3b7;
  border-radius: 30px;
  padding-top: 50px;
  background-color: #111;
  color: #808080;
  margin-top: 50px;
  position: relative;
}
#challenge .challengeCard::before {
  content: counter(chaCounter);
  background-color: #000;
  border: 1px solid #12f3b7;
  color: #12f3b7;
  font-size: 2rem;
  font-weight: 200;
  top: 0;
  left: 50%;
  border-radius: 40px;
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  position: absolute;
  transform: translate(-50%, -50%);
}
#challenge .challengeCard h4 {
  color: #FFFFFF;
}
#challenge .challengeCard p {
  margin-bottom: 0;
}

#homeBanner {
  background: linear-gradient(0deg, rgba(18, 243, 183, 0.7) 0%, rgba(18, 243, 183, 0.7) 17%, rgba(18, 243, 183, 0.5) 37%, rgba(18, 243, 183, 0.15) 62%, rgba(18, 243, 183, 0) 81%, rgba(18, 243, 183, 0.02) 112%);
  background-color: rgba(18, 243, 183, 0.02);
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 2;
}
#homeBanner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/stars.svg);
  background-size: contain;
  background-position-x: center;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
          mask-image: linear-gradient(180deg, #000, transparent);
  z-index: -1;
  animation: move 20s linear infinite;
}
#homeBanner h1 {
  font-family: var(--fhead);
  font-weight: 400;
  font-size: 10vw;
}
#homeBanner h4 {
  font-weight: 400;
}

@keyframes move {
  from {
    background-position-y: 0;
  }
  to {
    background-position-y: 37vw;
  }
}
#about .owl-carousel {
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%);
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 95%);
}
#about .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  text-align: center;
}
#about .owl-carousel .owl-stage .owl-item {
  text-align: center;
}
#about .owl-carousel .owl-stage img {
  max-width: 80%;
}

.mainBtn {
  border: 3px solid #07e19f;
  background: linear-gradient(84deg, #12f3b7 0%, rgba(18, 243, 183, 0.5) 100%);
  opacity: 1;
  display: inline-block;
  border-radius: 18px;
  box-shadow: rgba(7, 225, 159, 0.455) 0.120437px 0.602187px 1.59669px -0.75px, rgba(7, 225, 159, 0.475) 0.457707px 2.28853px 6.06802px -1.5px, rgba(7, 225, 159, 0.55) 2px 10px 26.5149px -2.25px;
  padding: 16px 24px;
  text-decoration: none;
  font-size: 24px;
  color: #000;
  transition: 0.3s all ease;
}
.mainBtn:hover {
  box-shadow: #07e19f 0.120437px 0.602187px 1.59669px -0.75px, #07e19f 0.457707px 2.28853px 6.06802px -1.5px, #07e19f 2px 10px 26.5149px -2.25px;
}
.mainBtn.small {
  padding: 8px 12px;
  font-size: 16px;
  border-radius: 10px;
  border-width: 1px;
}

.sectionTitle {
  color: #FFFFFF;
  font-size: 70px;
  margin-bottom: 35px;
}

#whatwedo {
  background: linear-gradient(rgb(0, 0, 0) 4%, rgba(7, 225, 159, 0.5) 50%, rgb(0, 0, 0) 96%);
  background-color: #000;
  position: relative;
}
#whatwedo .container {
  position: relative;
  z-index: 1;
}
#whatwedo::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://images.unsplash.com/photo-1527049979667-990f1d0d8e7f?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(0deg, transparent, #000, transparent);
          mask-image: linear-gradient(0deg, transparent, #000, transparent);
  opacity: 0.7;
}

.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.zCard {
  background: linear-gradient(179deg, #12f3b7 0%, #12f3b7 26%, rgba(18, 243, 183, 0.5) 100%);
  padding: 20px 20px;
  box-shadow: rgba(94, 94, 94, 0.72) 0px 0.60219px 0.60219px -1.25px, rgba(94, 94, 94, 0.635) 0px 2.28853px 2.28853px -2.5px, rgba(94, 94, 94, 0.25) 0px 10px 10px -3.75px;
  border-radius: 40px;
  border: 1px solid #FFFFFF;
  font-size: 14px;
  color: #FFFFFF;
  position: relative;
}
.zCard .imgWrapper {
  padding-top: 75%;
  position: relative;
  margin-bottom: 10px;
}
.zCard .imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.zCard .title {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  color: #FFFFFF;
  align-items: center;
}
.zCard .title .number {
  background-color: #FFFFFF;
  color: #12f3b7;
  padding: 10px;
  font-size: 22px;
  border-radius: 27px;
  flex: 0 0 53px;
  height: 53px;
  display: grid;
  place-content: center;
}
.zCard .title h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.zCard p {
  margin-bottom: 0;
}
.zCard.glass {
  transition: 0.3s all ease;
  color: #FFFFFF;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background: hsla(0, 0%, 100%, 0.17);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 1px solid hsla(0, 0%, 100%, 0.18);
  transition: all 0.3s ease;
}
.zCard.glass .title {
  color: #FFFFFF;
}
.zCard.glass .title .number {
  background-color: #FFFFFF;
  color: #000;
}
.zCard.glass:hover {
  transform: translateY(2px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: hsla(0, 0%, 100%, 0.1);
}
.zCard .icon {
  margin-bottom: 10px;
}
.zCard .icon img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  mix-blend-mode: screen;
}

.blackCard {
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.06) 0%, rgba(237, 237, 237, 0.03) 22.7689%, rgba(201, 201, 201, 0.04) 67.6594%, rgba(171, 171, 171, 0.02) 100%);
  padding: 40px 60px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
.blackCard::before {
  content: "";
  position: absolute;
  background: radial-gradient(rgba(18, 243, 183, 0.753), transparent 50%);
  background-size: 60% 70%;
  background-position-x: -334px;
  background-position-y: 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 50%;
  height: 100%;
  opacity: 0.7;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.blackCard ul {
  padding-left: 0;
}
.blackCard ul li:not(:last-child) {
  margin-bottom: 10px;
}

#learn .line {
  width: 5px;
  position: absolute;
  height: 100%;
  left: -30px;
  top: 0;
  border: 1px solid;
  background: linear-gradient(rgba(10, 76, 242, 0) 0%, rgba(18, 243, 183, 0.753) 38.2883%, rgba(18, 243, 183, 0.9) 50.9132%, rgba(18, 243, 183, 0.753) 63.0631%, rgba(10, 76, 242, 0) 100%);
  background-size: 100% 200px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

#about {
  padding-top: 15vw;
  padding-bottom: 100px;
  background: linear-gradient(180deg, rgba(18, 243, 183, 0.7) 0%, transparent 50%);
  color: #ccc;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: radial-gradient(#000 30%, transparent 70%);
  left: -10%;
  top: 0;
  z-index: 0;
  border-radius: 50%;
}
#about .container {
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
#about p.big {
  color: #FFFFFF;
  font-size: 1.7rem;
}

.link {
  text-decoration: none;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0px;
  transition: 0.3s all ease;
}
.link:hover {
  color: #12f3b7;
}
.link.dark {
  color: #000;
}
.link.dark:hover {
  color: #07e19f;
}

footer .topSection {
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(#111, #222);
  color: #FFFFFF;
}
footer .topSection p {
  color: #808080;
}
footer .topSection .logo {
  font-family: var(--fhead);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
}
footer .socialList {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  gap: 10px;
}
footer .socialList a {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: grid;
  place-content: center;
  border: 1px solid #333;
  color: #FFFFFF;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s all ease;
}
footer .socialList a:hover {
  color: #FFA500;
  background-color: #12f3b7;
  border-color: #12f3b7;
}
footer .emailInput {
  border-radius: 30px;
  border: 1px solid #FFFFFF;
  display: flex;
}
footer .emailInput input {
  flex: 0 1 100%;
  padding: 10px 20px;
  border: none;
  color: #FFFFFF;
  background-color: transparent;
}
footer .emailInput button {
  background-color: transparent;
  border: none;
  border-radius: 0 25px 25px 0;
  padding: 10px 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: 0.3s all ease;
}
footer .emailInput button:hover {
  background-color: #FFFFFF;
  color: #000;
}
footer .copy {
  padding: 10px;
  text-align: center;
  color: #777;
}
footer .copy a {
  text-decoration: none;
  color: #FFFFFF;
}

.popupWrapper {
  position: fixed;
  z-index: 1041;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: grid;
  place-content: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: 0.5s all ease;
}
.popupWrapper .popupCard {
  background-color: #222;
  width: calc(100vw - 32px);
  max-width: 400px;
  border-radius: 20px;
  padding: 30px;
  transform: scale(0.5);
  opacity: 0;
  transition: 0.3s all ease;
  transition-delay: 0.3s;
  position: relative;
}
.popupWrapper .popupCard .closeBtn {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 10px;
  width: 30px;
  height: 30px;
  border: none;
  background-color: #000;
  color: #FFFFFF;
  transition: 0.3s all ease;
}
.popupWrapper .popupCard .closeBtn:hover {
  background-color: #FFFFFF;
  color: #12f3b7;
}
.popupWrapper .popupCard h3 {
  font-weight: 700;
  font-family: var(--fhead);
  color: #fff;
}
.popupWrapper.active {
  transform: translateY(0);
  opacity: 1;
  transition: 0.3s opacity ease;
}
.popupWrapper.active .popupCard.active {
  opacity: 1;
  transition-delay: 0s;
  transform: scale(1);
}

.projectCard {
  display: block;
  text-decoration: none;
  color: #808080;
}
.projectCard .imgWrapper {
  padding-top: 75%;
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}
.projectCard .imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s all ease;
}
.projectCard .tag {
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.projectCard .tag.web {
  background-color: rgba(7, 225, 159, 0.3);
  color: #07e19f;
  display: inline-block;
}
.projectCard h4 {
  font-weight: 700;
  color: #FFFFFF;
}
.projectCard p {
  color: #808080;
}
.projectCard .calltoAction {
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}
.projectCard .calltoAction::before {
  content: "";
  position: absolute;
  width: 0;
  right: 0;
  left: auto;
  bottom: 0;
  height: 1px;
  background-color: #FFFFFF;
  transition: 0.5s width ease;
}
.projectCard .calltoAction:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.projectCard:hover img {
  transform: scale(1.1);
}

.zForm .zLbl {
  display: block;
  width: 100%;
  font-weight: 600;
  color: #FFFFFF;
}
.zForm .zInp {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  width: 100%;
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: 0.3s all ease;
}
.zForm .zInp:focus {
  outline: none;
  border-color: #FFFFFF;
}
.zForm select.zInp {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-caret-down-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) calc(50% + 1px);
}
.zForm select.zInp option {
  background-color: #000;
}

#otherPage {
  padding-top: 100px;
  padding-bottom: 50px;
}
#otherPage h1 {
  font-family: var(--fhead);
  font-weight: 400;
  font-size: 5rem;
  text-align: center;
  color: #FFFFFF;
}

.blogCard {
  background: rgba(255, 255, 255, 0.1);
  display: block;
  padding: 20px 20px;
  box-shadow: rgba(94, 94, 94, 0.72) 0px 0.60219px 0.60219px -1.25px, rgba(94, 94, 94, 0.635) 0px 2.28853px 2.28853px -2.5px, rgba(94, 94, 94, 0.25) 0px 10px 10px -3.75px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  text-decoration: none;
  color: #FFFFFF;
  transition: 0.3s all ease;
}
.blogCard .imgWrapper {
  padding-top: 75%;
  position: relative;
  margin-bottom: 10px;
}
.blogCard .imgWrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}
.blogCard .desc {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.blogCard .desc div {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.blogCard .desc div i {
  color: #12f3b7;
}
.blogCard .desc div span {
  font-size: 0.875rem;
  font-weight: 400px;
}
.blogCard h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* number of lines to show */
  -webkit-box-orient: vertical;
}
.blogCard p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.blogCard i {
  color: transparent;
  -webkit-text-stroke: 1px #12f3b7;
  margin-bottom: 10px;
  margin-top: 20px;
}
.blogCard:hover {
  transform: translateY(2px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: hsla(0, 0%, 100%, 0.1);
}

.map {
  width: 100%;
  height: 50vh;
  border-radius: 40px;
}

.blogDetails {
  color: #808080;
}
.blogDetails h3 {
  color: #FFFFFF;
  font-weight: 600;
}
.blogDetails h4 {
  color: #FFFFFF;
}
.blogDetails .desc {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.blogDetails .desc div {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.blogDetails .desc div i {
  color: #12f3b7;
}
.blogDetails .desc div span {
  font-size: 0.875rem;
  font-weight: 400px;
}
.blogDetails .h4List li::marker {
  font-weight: 500;
  color: #FFFFFF;
  font-size: calc(1.275rem + 0.3vw);
}

.img-2-1 {
  position: relative;
  padding-top: 50%;
}
.img-2-1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#otherPage {
  padding-top: calc(8rem + 78px);
  padding-bottom: 8rem;
  background-color: rgba(255, 255, 255, 0.06);
}

.timeLineCards {
  display: none;
}

@media (max-width: 991px) {
  .mainHeader .container {
    padding: 10px 10px 10px 20px;
    width: calc(100vw - 40px);
  }
  .mainHeader .navCollapse {
    position: fixed;
    z-index: 1041;
    background-color: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: grid;
    place-content: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: 0.5s all ease;
  }
  .mainHeader .navCollapse .navClose {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
    border: none;
    background-color: transparent;
    color: #FFFFFF;
  }
  .mainHeader .navCollapse.active {
    transform: translateY(0);
    opacity: 1;
    transition: 0.3s opacity ease;
  }
  .mainHeader .navList {
    flex-direction: column;
  }
  .mainHeader .navBtn {
    flex: 0 0 36px;
    display: grid;
    place-content: center;
    margin-left: auto;
    height: 36px;
    width: 36px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    background-color: transparent;
    border-radius: 18px;
    text-align: center;
    line-height: 0;
  }
  .sectionTitle {
    font-size: 48px;
  }
  #about p.text-center {
    font-size: 1.3rem;
  }
  .blackCard::before {
    background-position-x: -224px;
  }
  .caseMainCard {
    flex-wrap: wrap;
    margin-top: 150px;
  }
  .caseMainCard .imageWrapper,
  .caseMainCard .textArea {
    flex: 0 0 100%;
    width: 100%;
  }
  .caseMainCard .imageWrapper {
    padding-top: 50%;
  }
  .caseMainCard .imageWrapper img {
    height: calc(100% + 200px);
    width: 100%;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
  #result h4 {
    font-size: 4rem;
  }
  .timelineWeeks .process .content {
    padding: 5px 10px 5px 10px;
  }
  .timelineWeeks .process .content h6 {
    font-size: 14px;
  }
  .timelineWeeks .process .content::before {
    left: 5px;
  }
  #timeline .col-xl-6.col-lg-8.col-md-10 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .blackCard::before {
    background-position-x: -204px;
  }
  .order-flip {
    flex-direction: column-reverse;
  }
  .timelineWeeks {
    display: none;
  }
  .timeLineCards {
    display: block;
  }
  .timeLineCards .cardTime {
    background-color: rgba(34, 34, 34, 0.7);
    border-radius: 10px;
    padding: 15px;
  }
  .timeLineCards .cardTime:not(:last-child) {
    margin-bottom: 24px;
  }
  .timeLineCards .cardTime .markings .labels {
    display: flex;
  }
  .timeLineCards .cardTime .markings .labels span {
    width: 33.333333%;
    flex: 0 0 33.333333%;
    font-weight: 500;
    text-transform: uppercase;
    color: #808080;
    font-size: 8px;
  }
  .timeLineCards .cardTime .markings .line {
    display: flex;
    margin-top: 5px;
    margin-bottom: 10px;
    justify-content: space-between;
    position: relative;
  }
  .timeLineCards .cardTime .markings .line::before {
    content: "";
    display: block;
    background-color: #333;
    height: 1px;
    width: calc(100% - 1px);
    position: absolute;
    left: 0;
    top: 2px;
  }
  .timeLineCards .cardTime .markings .line span {
    width: 1px;
    height: 5px;
    display: block;
    background-color: #333;
  }
  .timeLineCards .cardTime .markings .line::after {
    content: "";
    display: block;
    background-color: #12f3b7;
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    border-radius: 3px;
  }
  .timeLineCards .cardTime .markings .line.processWidth-1::after {
    width: 8.333333%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-2::after {
    width: 16.666667%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-3::after {
    width: 25%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-4::after {
    width: 33.333333%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-5::after {
    width: 41.666667%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-6::after {
    width: 50%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-7::after {
    width: 58.333333%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-8::after {
    width: 66.666667%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-9::after {
    width: 75%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-10::after {
    width: 83.333333%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-11::after {
    width: 91.666667%;
  }
  .timeLineCards .cardTime .markings .line.processWidth-12::after {
    width: 100%;
  }
  .timeLineCards .cardTime .markings .line.processStart-1::after {
    left: 8.333333%;
  }
  .timeLineCards .cardTime .markings .line.processStart-2::after {
    left: 16.666667%;
  }
  .timeLineCards .cardTime .markings .line.processStart-3::after {
    left: 25%;
  }
  .timeLineCards .cardTime .markings .line.processStart-4::after {
    left: 33.333333%;
  }
  .timeLineCards .cardTime .markings .line.processStart-5::after {
    left: 41.666667%;
  }
  .timeLineCards .cardTime .markings .line.processStart-6::after {
    left: 50%;
  }
  .timeLineCards .cardTime .markings .line.processStart-7::after {
    left: 58.333333%;
  }
  .timeLineCards .cardTime .markings .line.processStart-8::after {
    left: 66.666667%;
  }
  .timeLineCards .cardTime .markings .line.processStart-9::after {
    left: 75%;
  }
  .timeLineCards .cardTime .markings .line.processStart-10::after {
    left: 83.333333%;
  }
  .timeLineCards .cardTime .markings .line.processStart-11::after {
    left: 91.666667%;
  }
  .timeLineCards .cardTime .markings .line.processStart-12::after {
    left: 100%;
  }
  .timeLineCards .cardTime h6 {
    margin-bottom: 0;
    font-weight: 600;
    color: #FFFFFF;
  }
}
@media (max-width: 576px) {
  .mainBtn {
    font-size: 18px;
    padding: 10px 20px;
  }
  #homeBanner::before {
    background: url(../img/stars-portrait.svg);
    background-position-x: center;
    animation-name: movenew;
  }
  @keyframes movenew {
    from {
      background-position-y: 0;
    }
    to {
      background-position-y: 216.8vw;
    }
  }
  #about {
    padding-top: 20vw;
    padding-bottom: 10vw;
  }
  #about::before {
    width: 200%;
    left: -50%;
  }
  #about .container {
    padding-top: 20vw;
    padding-bottom: 30vw;
  }
  #learn .line {
    left: 10px;
    display: none;
  }
  .blackCard {
    max-width: 100%;
    margin-left: auto;
    padding: 20px 30px;
  }
  .blackCard::before {
    display: none;
  }
  #otherPage h1 {
    font-size: 3rem;
  }
  #screenshots .imageSlide {
    height: 75vw;
  }
}/*# sourceMappingURL=main.css.map */