@import url("https://fonts.cdnfonts.com/css/neutraface-text");
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1) 0s;
}
#loading-overlay .spinner {
  border: 4px solid #000;
  border-top: 4px solid #bfd455;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

body {
  color: #383838;
  background-color: #fff;
  line-height: 1.3;
  font-family: "Neutraface Text", sans-serif;
}

.container {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 12px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: unset;
  color: unset;
}

@media (min-width: 576px) {
  .container {
    max-width: 564px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 744px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 984px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1164px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1384px !important;
  }
}
.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-left {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.flex-column {
  flex-direction: column;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-16 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-30 {
  font-size: 30px;
}

.fs-36 {
  font-size: 36px;
}

.fs-48 {
  font-size: 48px;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.br-4 {
  border-radius: 4px;
}

.br-8 {
  border-radius: 8px;
}

.m-0 {
  margin: 0px;
}

.mr-1 {
  margin-right: 4px;
}

.mr-2 {
  margin-right: 8px;
}

.mr-3 {
  margin-right: 12px;
}

.mr-4 {
  margin-right: 16px;
}

.mr-5 {
  margin-right: 20px;
}

.mr-6 {
  margin-right: 24px;
}

.mr-7 {
  margin-right: 28px;
}

.mr-8 {
  margin-right: 32px;
}

.p-0 {
  padding: 0px;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 20px;
}

.p-6 {
  padding: 24px;
}

.p-7 {
  padding: 28px;
}

.p-8 {
  padding: 32px;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 20px;
}

.gap-6 {
  gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.gap-8 {
  gap: 32px;
}

.custom-btn {
  background: #1e1e1e;
  border: 1px solid #1e1e1e;
  z-index: 1;
  width: 140px;
  height: 32px;
  color: #fff;
  padding: 2px 10px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
}

.custom-btn:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #fff;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  color: #1e1e1e;
}

.custom-btn:hover:after {
  left: 0;
  width: 100%;
}

.custom-btn:active {
  top: 2px;
}

.style-4 {
  display: flex;
  align-items: center;
  --line: #fff;
  --color: #fff;
  text-decoration: none;
  color: var(--color);
  position: relative;
}
.style-4 span {
  background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 2px;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  font-size: 24px;
  transform: translateZ(0);
}
.style-4 svg {
  vertical-align: top;
  display: inline;
  line-height: 2;
  width: 26px;
  height: 40px;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke: var(--line);
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.style-4:hover {
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}

.style-4-black {
  display: flex;
  align-items: center;
  --line: #636262;
  position: relative;
}
.style-4-black span {
  background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 105%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  transform: translateZ(0);
}
.style-4-black svg {
  vertical-align: top;
  display: inline;
  line-height: 2;
  width: 26px;
  height: 22px;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke: var(--line);
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}
.style-4-black:hover {
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}

.style-11 {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  position: relative;
  cursor: pointer;
  justify-content: flex-start;
  /* button */
  /* bg button */
  position: relative;
  z-index: 9;
  color: #1e1e1e;
  text-decoration: none;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #bfd455, #283271 50%, #1e1e1e 50%);
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
}
.style-11 .link {
  background-color: transparent;
  font-size: 28px;
  letter-spacing: 2px;
  color: #4c6082;
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 0;
  padding-left: 20px;
  left: 0;
  line-height: auto;
  overflow: hidden;
  white-space: nowrap;
  /*line*/
  /*arrow*/
}
.style-11 .link:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.3137254902);
  width: 2px;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.style-11 .link:after {
  content: "";
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  background-color: transparent;
  position: absolute;
  border: solid 2px rgba(255, 255, 255, 0);
  border-left: 0;
  border-bottom: 0;
  top: calc(50% - 6px);
  border-radius: 2px;
  transform: translateX(-27px) rotate(45deg);
  transition: all 0.1s 0.2s ease-in-out;
}
.style-11:before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0px;
  border-radius: 3px;
  transition: all 0.4s 0.3s ease-in-out;
}
.style-11:hover:before {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0px;
}
.style-11:hover .link {
  padding-left: 20px;
  opacity: 1 !important;
}
.style-11:hover .link:before {
  left: 0px;
  background-color: #fff;
  transform: rotate(90deg);
}
.style-11:hover .link:after {
  transform: translate(-21px) rotate(45deg);
  border-color: #fff;
}
.style-11:hover {
  background-position: 0%;
}

.style-29 {
  position: relative;
  z-index: 9;
  color: #1e1e1e;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #bfd455, #bfd455 50%, #1e1e1e 50%);
  background-size: 200% 100%;
  background-position: 100%;
  transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
}
.style-29:hover {
  background-position: 0%;
}
.style-29:hover:before, .style-29:hover:after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.2, 0, 0.3, 1);
}
.style-29:hover:before {
  transition-delay: 0s;
}
.style-29:hover:after {
  transition-delay: 0.1s;
}
.style-29:before, .style-29:after {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  width: 80%;
  left: 10%;
  height: 1px;
  background: #bfd455;
  pointer-events: none;
  opacity: 0;
  transform-origin: 50% 0%;
  transform: translate3d(0, 3px, 0);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.8, 1);
}
.style-29:before {
  transition-delay: 0.1s;
}
.style-29:after {
  content: "";
  top: calc(80% + 3px);
  width: 60%;
  left: 20%;
}

.style-31 {
  position: relative;
  z-index: 9;
  color: #1e1e1e;
  text-decoration: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #bfd455, #bfd455 50%, #1e1e1e 50%);
  background-size: 200% 100%;
  background-position: 100%;
}

@keyframes custom-bg-position {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}
.hamburger {
  padding: 15px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  background-color: transparent;
}
.hamburger__container {
  width: 28px;
  height: 24px;
  position: relative;
}
.hamburger.active .hamburger__inner {
  transform: translate(-43px, 50%);
  opacity: 0;
}
.hamburger.active .hamburger__inner::before, .hamburger.active .hamburger__inner::after {
  transform: translate(86px, 0);
  opacity: 0;
}
.hamburger.active .hamburger__inner {
  display: none;
}
.hamburger__inner {
  width: 100%;
  height: 2px;
  background-color: #383838;
  border-radius: 4px;
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  background-color: transparent;
  height: 3.5px;
  top: 50%;
  transform: translate(5px, -50%);
  opacity: 1;
}
.hamburger__inner::before, .hamburger__inner::after {
  width: 100%;
  height: 2px;
  background-color: #383838;
  border-radius: 4px;
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  content: "";
  opacity: 1;
  transform: translate(-5px, 0);
}
.hamburger__inner::before {
  top: -5px;
}
.hamburger__inner::after {
  top: 5px;
}
.hamburger.active .hamburger__hidden {
  opacity: 1;
  transform: translate(0, -50%);
  background-color: transparent;
}
.hamburger.active .hamburger__hidden::before, .hamburger.active .hamburger__hidden::after {
  opacity: 1;
  transform: translate(0, 0);
}
.hamburger.active .hamburger__hidden::before {
  transform: rotate(45deg) translate(2px, 4px);
}
.hamburger.active .hamburger__hidden::after {
  transform: rotate(315deg) translate(4px, -6px);
}
.hamburger.is-active .hamburger__hidden {
  opacity: 1;
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__hidden::before {
  transform: translate(0, 5px) rotate(90deg);
  transform-origin: center;
}
.hamburger.is-active .hamburger__hidden::after {
  transform-origin: center;
  transform: translate(0, -5px) rotate(0);
}
.hamburger__hidden {
  opacity: 0;
  width: 100%;
  height: 2px;
  background-color: #383838;
  border-radius: 4px;
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  background-color: #1e1e1e;
  top: 50%;
  transform: translate(-50%, 43px);
}
.hamburger__hidden::before, .hamburger__hidden::after {
  width: 100%;
  height: 2px;
  background-color: #383838;
  border-radius: 4px;
  position: absolute;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.5s;
  background-color: #1e1e1e;
  content: "";
  transform: translate(-50%, 86px);
}
.hamburger__hidden::before {
  top: -5px;
}
.hamburger__hidden::after {
  top: 5px;
}

.text1 {
  color: #fff;
  font-weight: 400;
  position: relative;
  animation: text 2s ease-in-out forwards;
  text-transform: uppercase;
  display: block;
}

.text2 {
  text-transform: uppercase;
  display: block;
  opacity: 0;
  animation: top-down 0.8s ease-out;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes text {
  0% {
    letter-spacing: 14px;
    margin-bottom: 20px;
    transform: scale(1);
  }
  50% {
    letter-spacing: 25px;
    transform: scale(1.06);
    margin-bottom: 60px;
  }
  100% {
    letter-spacing: 14px;
    transform: scale(1);
    margin-bottom: 20px;
  }
}
.animation-section {
  overflow: hidden;
}

h1 {
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
}

.reveal-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: auto;
}

/* Style 5: Split Lines */
.style-5 .line {
  display: block;
  overflow: hidden;
}

.style-5 .line-inner {
  display: block;
  transform: translateY(100%);
}

#title {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.title-letter {
  font-size: 100px;
  margin-left: -2px;
  color: #bfd455;
  font-weight: 600;
}

#sub-title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  top: -5px;
}

/* Opacity For Start */
.title-letter,
#sub-title {
  opacity: 0;
}

/*Animations*/
[data-animate-in] {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-animate-in=up] {
  transform: translate3d(0, 24px, 0);
}

[data-animate-in=left] {
  transform: translate3d(-25%, 0, 0);
}

[data-animate-in=right] {
  transform: translate3d(25%, 0, 0);
}

[data-animate-in=down] {
  transform: translate3d(0, -24px, 0);
}

[data-animate-in=fadeIn] {
  transform: translate3d(0, 0, 0);
}

[data-animate-in].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.page-loaded .fade-in,
.page-loaded.fade-in {
  opacity: 1;
}

.isSafari.isTouch [data-animate-in],
.isSafari.isTouch [data-animate-in=up] {
  opacity: 1;
  transition: none;
  transform: none;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

section {
  height: 100vh;
  padding: 0 clamp(4rem, 12vw, 20rem);
  display: grid;
  place-content: center;
}
section h2 {
  font-size: clamp(2rem, 5vw, 8rem);
}

@media (max-width: 768px) {
  .d-flex-sm {
    display: flex;
  }
  .justify-center-sm {
    justify-content: center;
  }
  .justify-start-sm {
    justify-content: flex-start;
  }
  .justify-end-sm {
    justify-content: flex-end;
  }
  .justify-between-sm {
    justify-content: space-between;
  }
  .justify-evenly-sm {
    justify-content: space-evenly;
  }
  .align-center-sm {
    align-items: center;
  }
  .align-left-sm {
    align-items: flex-end;
  }
  .align-start-sm {
    align-items: flex-start;
  }
  .flex-column-sm {
    flex-direction: column;
  }
  .gap-10-sm {
    gap: 10px;
  }
  .gap-20-sm {
    gap: 20px;
  }
  .gap-30-sm {
    gap: 30px;
  }
  .gap-50-sm {
    gap: 50px;
  }
  .d-none-sm {
    display: none;
  }
  .d-block-sm {
    display: block;
  }
  .d-grid-sm {
    display: grid;
  }
  .relative-sm {
    position: relative;
  }
  .absolute-sm {
    position: absolute;
  }
  .fs-10-sm {
    font-size: 10px;
  }
  .fs-12-sm {
    font-size: 12px;
  }
  .fs-14-sm {
    font-size: 14px;
  }
  .fs-16-sm {
    font-size: 16px;
  }
  .fs-18-sm {
    font-size: 18px;
  }
  .fs-20-sm {
    font-size: 20px;
  }
  .fs-24-sm {
    font-size: 24px;
  }
  .fs-30-sm {
    font-size: 30px;
  }
  .fs-36-sm {
    font-size: 36px;
  }
  .fs-48-sm {
    font-size: 48px;
  }
  .fw-400-sm {
    font-weight: 400;
  }
  .fw-500-sm {
    font-weight: 500;
  }
  .fw-600-sm {
    font-weight: 600;
  }
  .fw-700-sm {
    font-weight: 700;
  }
  .br-4-sm {
    border-radius: 4px;
  }
  .br-8-sm {
    border-radius: 8px;
  }
  .m-0-sm {
    margin: 0px;
  }
  .mr-1-sm {
    margin-right: 4px;
  }
  .mr-2-sm {
    margin-right: 8px;
  }
  .mr-3-sm {
    margin-right: 12px;
  }
  .mr-4-sm {
    margin-right: 16px;
  }
  .mr-5-sm {
    margin-right: 20px;
  }
  .mr-6-sm {
    margin-right: 24px;
  }
  .mr-7-sm {
    margin-right: 28px;
  }
  .mr-8-sm {
    margin-right: 32px;
  }
  .p-0-sm {
    padding: 0px;
  }
  .p-1-sm {
    padding: 4px;
  }
  .p-2-sm {
    padding: 8px;
  }
  .p-3-sm {
    padding: 12px;
  }
  .p-4-sm {
    padding: 16px;
  }
  .p-5-sm {
    padding: 20px;
  }
  .p-6-sm {
    padding: 24px;
  }
  .p-7-sm {
    padding: 28px;
  }
  .p-8-sm {
    padding: 32px;
  }
  .gap-1-sm {
    gap: 4px;
  }
  .gap-2-sm {
    gap: 8px;
  }
  .gap-3-sm {
    gap: 12px;
  }
  .gap-4-sm {
    gap: 16px;
  }
  .gap-5-sm {
    gap: 20px;
  }
  .gap-6-sm {
    gap: 24px;
  }
  .gap-7-sm {
    gap: 28px;
  }
  .gap-8-sm {
    gap: 32px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes opacity-minus {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity-plus {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity-plus-bg-line {
  0% {
    background-image: linear-gradient(0deg, rgba(99, 98, 98, 0) 0%, rgba(99, 98, 98, 0) 45%);
  }
  100% {
    background-image: linear-gradient(0deg, #636262 0%, rgba(99, 98, 98, 0) 105%);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(2deg);
  }
}
@keyframes moveLeft {
  from {
    left: -120px;
  }
  to {
    left: -85px;
  }
}
@keyframes moveRight {
  from {
    left: -85px;
  }
  to {
    left: -120px;
  }
}
@keyframes top-down {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  25% {
    transform: translateY(-20%);
    opacity: 0.45;
  }
  75% {
    transform: translateY(-15%);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slider-btn-left {
  0% {
    opacity: 0;
    left: 30px;
  }
  25% {
    opacity: 0.25;
    left: 25px;
  }
  50% {
    opacity: 0.55;
    left: 20px;
  }
  75% {
    opacity: 0.25;
    left: 15px;
  }
  100% {
    opacity: 0;
    left: 10px;
  }
}
@keyframes slider-btn-right {
  0% {
    opacity: 0;
    right: 30px;
  }
  25% {
    opacity: 0.25;
    right: 25px;
  }
  50% {
    opacity: 0.55;
    right: 20px;
  }
  75% {
    opacity: 0.25;
    right: 15px;
  }
  100% {
    opacity: 0;
    right: 10px;
  }
}
@keyframes down-up-reveal {
  0% {
    width: 0;
    transform: translateX(-10%);
  }
  100% {
    width: 550px;
    transform: translateX(0);
  }
}
body {
  cursor: none;
}

.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.cursor-ball {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-ball--inner svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1, h2, h3, h4, h5, h6 {
   font-family: "Fjalla One", sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  color: #181818;
}

p, a {
  font-family: "Neutraface Text", -apple-system, BlinkMacSystemFont;
  color: #181818;
}

.hero-wrapper, .about, .difference, .first-move, .testimonial {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header .inner-div .left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
}
header .inner-div .left img {
  width: 200px;
  height: auto;
}
main .hero-wrapper {
  background-image: url(./img/banner.webp);
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
main .hero-wrapper .inner-div .content {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
main .hero-wrapper .inner-div .content h1 {
  font-size: 75px;
  color: #a068f7;
  text-shadow: 2px 1px 10px rgba(41, 41, 41, 0.7882352941);
  text-transform: uppercase;
  text-align: center;
}
main .hero-wrapper .inner-div .content p {
  font-size: 20px;
  color: #a068f7;
  font-weight: 700;
  text-shadow: 2px 1px 10px rgba(41, 41, 41, 0.7882352941);
  text-transform: capitalize;
  margin-bottom: 10px;
  text-align: center;
}
main .hero-wrapper .inner-div .content .btn-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  align-items: center;
}
main .hero-wrapper .inner-div .content .btn-wrapper .ios img {
  width: 220px;
  height: auto;
}
main .hero-wrapper .inner-div .content .btn-wrapper .android img {
  width: 220px;
  height: auto;
}
main .about {
  background: #a068f7;
}
main .about .inner-div {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}
main .about .inner-div .left {
  width: 50%;
}
main .about .inner-div .left h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: capitalize;
}
main .about .inner-div .left p {
  font-size: 20px;
  padding: 30px 0;
}
main .about .inner-div .left a {
  background: #181818;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
}
main .about .inner-div .right {
  width: 50%;
}
main .about .inner-div .right img {
  border-radius: 25px;
}
main .difference .inner-div h2 {
  font-size: 100px;
  text-transform: uppercase;
  word-spacing: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
main .difference .inner-div .content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}
main .difference .inner-div .content .sep img {
  border-radius: 25px;
}
main .difference .inner-div .content .sep h3 {
  font-size: 24px;
  font-family: system-ui;
  line-height: 1.2;
  margin: 20px 0;
}
main .difference .inner-div .content .sep p {
  font-size: 16px;
}
main .first-move {
  background: #a068f7;
}
main .first-move .inner-div {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}
main .first-move .inner-div .left {
  width: 50%;
}
main .first-move .inner-div .left h2 {
  font-size: 80px;
  line-height: 1;
  text-transform: capitalize;
}
main .first-move .inner-div .left p {
  font-size: 20px;
  padding: 30px 0;
}
main .first-move .inner-div .left a {
  background: #181818;
  color: white;
  padding: 10px 30px;
  border-radius: 25px;
}
main .first-move .inner-div .right {
  width: 50%;
  display: flex;
  justify-content: center;
}
main .first-move .inner-div .right img {
  border-radius: 25px;
  width: 80%;
}

footer {
  border-top: 1px solid #eee;
}
footer .inner-div {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
}
footer .inner-div .top {
  padding: 40px 0;
}
footer .inner-div .top .dwnld-btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}
footer .inner-div .top .dwnld-btn a img {
  width: auto;
  height: 60px;
}
footer .inner-div .bottom {
  width: 100%;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .inner-div .bottom .left ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
footer .inner-div .bottom .left ul li {
  list-style: none;
}
footer .inner-div .bottom .right {
  width: 30%;
}
footer .inner-div .bottom .right ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
footer .inner-div .bottom .right ul a img {
  width: auto;
  height: 30px;
}
footer .inner-div .bottom .right ul a:nth-child(4) img {
  height: 38px;
}
footer .inner-div .bottom .right ul a:nth-child(3) img {
  height: 36px;
}
footer .inner-div .end {
  padding: 20px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .inner-div .end p {
  font-size: 12px;
  color: lightgrey;
}

@media (max-width: 1024px) {
  main .hero-wrapper {
    background-position-x: right;
  }
  main .hero-wrapper .inner-div .content {
    width: 100%;
  }
  main .hero-wrapper .inner-div .content h1 {
    font-size: 60px;
    text-shadow: 0px 0px 5px rgb(41 41 41 / 55%)
  }
  main .about .inner-div {
    gap: 20px;
    flex-direction: column;
    gap: 70px;
  }
  main .about .inner-div .left {
    width: 100%;
  }
  main .about .inner-div .right {
    width: 100%;
  }
  main .difference .inner-div h2 {
    font-size: 65px;
  }
  main .difference .inner-div .content {
    gap: 25px;
  }
  main .difference .inner-div .content .sep h3 {
    font-size: 18px;
    margin: 10px 0;
  }
  main .difference .inner-div .content .sep p {
    font-size: 13px;
  }
  main .first-move {
    height: 140vh;
  }
  main .first-move .inner-div {
    flex-direction: column;
    gap: 70px;
  }
  main .first-move .inner-div .left {
    width: 100%;
  }
  main .first-move .inner-div .right {
    width: 100%;
  }
}
@media (max-width: 560px) {
  main .hero-wrapper {
    background-position-x: center;
  }
  main .hero-wrapper .inner-div .content {
    top: 55%;
  }
  main .about .inner-div {
    gap: 40px;
  }
  main .about .inner-div .left h2 {
    font-size: 60px;
  }
  main .about .inner-div .left p {
    font-size: 18px;
    padding: 25px 0;
  }
  main .difference .inner-div h2 {
    font-size: 45px;
    word-spacing: 4px;
    letter-spacing: 2px;
  }
  main .difference .inner-div .content {
    overflow: auto;
  }
  main .difference .inner-div .content .sep {
    min-width: 80%;
  }
  main .first-move {
    height: 120vh;
  }
  main .first-move .inner-div {
    gap: 35px;
  }
  main .first-move .inner-div .left h2 {
    font-size: 60px;
  }
  main .first-move .inner-div .left p {
    font-size: 18px;
    padding: 25px 0;
  }
  main .first-move .inner-div .right img {
    width: 100%;
  }
  main .testimonial .testimonial-container {
    max-width: 100%;
    padding: 0;
  }
  main .testimonial .testimonial-container .testimonial-content .designation {
    margin-bottom: 10px;
  }
  main .testimonial .testimonial-container .testimonial-content .quote {
    line-height: 1.2;
  }
  main .testimonial .testimonial-container .testimonial-content .arrow-buttons {
    padding-top: 10px;
  }
  footer .inner-div .top .dwnld-btn {
    flex-direction: column;
  }
  footer .inner-div .top .dwnld-btn a img {
    width: 200px;
    height: auto;
  }
  footer .inner-div .bottom .left {
    gap: 15px;
  }
  footer .inner-div .bottom .left ul li a {
    font-size: 14px;
  }
  footer .inner-div .bottom .right {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */