@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@font-face {
  font-family: "Satoshi Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Satoshi Regular"), url("Satoshi-Regular.woff") format("woff");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Satoshi Regular";
}
.em {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  user-select: none;
}
a {
  text-decoration: none;
}
:root {
  --almost-black: #0a0a0a;
  --almost-white: #fcfcfa;
  --text-light: #fcfcfaa0;
}
#main {
  width: 100%;
  min-height: 100vh;
  background-color: var(--almost-black);
  position: relative;
}

#cursor {
  position: absolute;
  z-index: 900;
  width: 1.1vw;
  height: 1.1vw;
  border-radius: 50%;
  background-color: #eb4333;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
}

.linkedin {
  pointer-events: none;
  width: 10vw !important;
  height: 10vw !important;
  background-color: #23222293 !important;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--almost-white);
}

.linkedin p {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 1.2vw;
  margin-bottom: -5px;
}
.linkedin h4 {
  font-size: 1.5vw;
  font-weight: 700;
}

.transition {
  animation: fade 0.38s linear;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Navigation Bar */

.icon {
  width: 2vw;
  height: 2vw;
  background-color: var(--almost-white);
  border-radius: 50%;
  margin: 0 1vw;
}
#nav {
  position: fixed;
  padding: 0.6vw 0;
  top: 1.8vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0a0a0a81;
  backdrop-filter: blur(8px);
  width: 38vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 0.3px solid #55555565;
  z-index: 100;
}
#nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
#nav-links a {
  color: var(--almost-white);
  padding: 0.5vw 1vw;
  border-radius: 10px;
  transition: ease-in-out 0.3s;
  text-shadow: 3px solid #fcfcfa;
  font-weight: 500;
  font-size: 0.9vw;
}
#nav-links a:hover {
  background-color: #6c6b6b50;
}

/* ****** */

/* button */

.btn {
  color: var(--almost-white);
  padding: 0.6vw 0.9vw;
  border-radius: 10px;
  background-color: #eb4333;
  margin: 0 10px;
  transition: ease-in-out 0.3s;
  outline: none;
  border: none;
  font-weight: 600;
  font-size: 0.9vw;
}
.btn:hover {
  background-color: #ff230f;
  cursor: pointer;
  box-shadow: 0 0 0 4px #ff230f63;
}

.btn1 {
  color: var(--almost-white);
  padding: 0.7vw 1vw;
  border-radius: 10px;
  background-color: #eb4333;
  margin: 0 10px;
  transition: ease-in-out 0.3s;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 1vw;
}
.btn1:hover {
  background-color: #ff230f;
  cursor: pointer;
  box-shadow: 0 0 0 4px #ff230f63;
}

.btn2 {
  color: var(--almost-white);
  padding: 0.7vw 1vw;
  border-radius: 10px;
  background-color: #0a0a0a;
  margin: 0 10px;
  transition: ease-in-out 0.3s;
  outline: none;
  border: 0.3px solid #55555565;
  font-weight: 500;
  font-size: 1vw;
}
.btn2:hover {
  cursor: pointer;
  box-shadow: 0 0 0 4px #55555565;
}

/* Hero Section */

#hero-section {
  position: relative;
  width: 100vw;
  height: 120vh;
}
#hero-cont {
  width: 50vw;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
#hero-cont img {
  width: 20vw;
  margin-bottom: -2vw;
}
#hero-cont h1 {
  color: var(--almost-white);
  font-size: 5vw;
  font-weight: 650;
  padding: 2vw 0;
  line-height: 5.5vw;
}
#hero-cont p {
  width: 40vw;
  margin: 0 auto;
  font-size: 1.3vw;
  color: #fcfcfaa0;
}
#hero-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 0;
  gap: 1vw;
}
#glow {
  width: 80vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 1;
}

#glowing {
  width: 23vw;
  height: 13vw;
  border-radius: 25vw 25vw 0 0;
  background: linear-gradient(
    to right,
    #00f0ff,
    #ff6699,
    #ff9933,
    #ff3333,
    #ffffcc,
    #00f0ff,
    #ff3333
  );
  background-size: 300% 100%;
  animation: colorShift 7s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  filter: blur(60px);
}

#glowing::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: inherit;
  border-radius: 50%;
  filter: blur(200px);
  z-index: -1;
}

@keyframes colorShift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

#page2 {
  width: 100%;
  min-height: 100vh;
  color: var(--almost-white);
  padding: 9vw 10vw;
  text-align: center;
}
#page2 h4 {
  font-weight: 400;
  color: var(--text-light);
}
#slider1 {
  margin: 3vw 0;
  white-space: nowrap;
  overflow-x: hidden; /* Hide overflowing content */
  position: relative;
  background-color: var(--almost-black);
}

#images {
  white-space: nowrap;
  display: inline-block;
  animation-name: textMove;
  animation-timing-function: linear;
  animation-duration: 25s;
  animation-iteration-count: infinite;
}

@keyframes textMove {
  from {
    transform: translateX(0%); /* Start from the right */
  }
  to {
    transform: translateX(-100%); /* Move to the left */
  }
}

#slider1 img {
  padding: 0 1vw;
  transform: scale(0.8);
}

#slider1::-webkit-scrollbar {
  display: none;
}

.btn-type-p {
  display: inline-block;
  color: var(--almost-white);
  padding: 0.7vw 1vw;
  border-radius: 10px;
  background-color: #0a0a0a;
  margin: 0 10px;
  border: 0.3px solid #55555565;
  font-weight: 500;
  font-size: 1vw;
}
#section2 {
  margin: 8vw 0;
  text-align: center;
}
#section2 h1 {
  padding: 2vw 0;
  font-size: 3.7vw;
}
.para {
  color: var(--text-light);
  width: 40vw;
  margin: 0 auto;
  font-size: 1.3vw;
}

#page3 {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  overflow: hidden;
}
/* Swipper */

.outer-div {
  width: 27vw;
  border: 1px solid #7373733a;
  padding: 2vw;
  border-radius: 2vw;
  text-align: left;
}
.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1vw;
}
.outer-div p {
  width: 80%;
  color: var(--text-light);
}
.text {
  font-size: 0.9vw;
}
.small-text {
  font-size: 0.8vw;
}
.outer-div img {
  width: 10vw;
  margin: 1vw 0;
}
#swipper {
  display: flex;
  overflow-x: hidden;
  position: relative;
  margin: 0 -2vw;
  gap: 2vw;
  scroll-behavior: smooth;
}

#swipe {
  position: relative;
}

#left,
#right {
  position: absolute;
  transform: translateY(-50%);
  width: 2.8vw;
  height: 2.8vw;
  border-radius: 0.5vw;
  background-color: #ff3333;
  color: var(--almost-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#left {
  top: 50%;
  left: 0.5vw;
  opacity: 0;
  visibility: hidden;
}

#right {
  top: 50%;
  right: 0.5vw;
  opacity: 1;
  visibility: visible;
}

#left.show,
#right.show {
  opacity: 1;
  visibility: visible;
}

#left.hide,
#right.hide {
  opacity: 0;
  visibility: hidden;
}

#left h3,
#right h3 {
  transform: translateY(-12%);
  font-size: 2vw;
  font-weight: 400;
}

#focus-text {
  padding: 8vw 5vw 4vw 5vw;
  transition: filter 0.5s ease-in-out;
}

#focus-text.blurred {
  filter: blur(10px);
}

#focus-text h1 {
  font-size: 2.9vw;
  line-height: 3.2vw;
}

/* results */

.cont {
  white-space: nowrap;
  display: inline-block;
}
.divs {
  width: 25vw;
  height: 27vw;
  border: 1px solid #7373733a;
  padding: 1vw;
  margin: 0 1vw;
  border-radius: 2vw;
  display: flex;
  align-items: end;
  justify-content: center;
  background-image: url(./nostalgia.jpg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 150px #0a0a0a inset;
}
.divs h2 {
  font-size: 1.8vw;
  padding: 0.6vw 0;
}
.divs p {
  color: var(--text-light);
}
.divs h5 {
  font-weight: 400;
  margin: 1vw 0.4vw;
  border: 1px solid #8f8f8f64;
  padding: 0.5vw;
  border-radius: 1.2vw;
}
.items {
  display: flex;
}
#results {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.resultSwipe {
  white-space: nowrap;
  display: inline-block;
  animation-name: imgMove;
  animation-timing-function: linear;
  animation-duration: 35s;
  animation-iteration-count: infinite;
}
@keyframes imgMove {
  from {
    transform: translateX(0%); /* Start from the right */
  }
  to {
    transform: translateX(-100%); /* Move to the left */
  }
}
#shadow {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    #0a0a0a,
    #0a0a0a00,
    #0a0a0a00,
    #0a0a0a00,
    #0a0a0a00,
    #0a0a0a
  );
  z-index: 500;
}

#grads2 {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1vw;
}
.red,
.blue {
  padding: 2vw 4.5vw 3vw 4.5vw;
  border: 1px solid #8f8f8f64;
  border-radius: 2vw;
}
.blue {
  background: radial-gradient(
    circle at top left,
    #1c84c5,
    #0c3650,
    #0a0a0a,
    #0a0a0a,
    #0a0a0a,
    #0a0a0a
  );
}
.red {
  background: radial-gradient(
    circle at top right,
    #a85131,
    #531113,
    #0a0a0a,
    #0a0a0a,
    #0a0a0a,
    #0a0a0a
  );
}

.blue-red h1,
#grads2 h1 {
  font-size: 2.7vw;
  padding: 1vw 0;
}
.blue-red p,
#grads2 p {
  color: var(--text-light);
  font-size: 1vw;
  width: 25vw;
}
.blue-red p {
  color: var(--text-light);
  font-size: 1vw;
  width: 30vw;
}
.flexeddiv {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw 0;
}
.blue-red {
  width: 69vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vw 4.5vw 3vw 4.5vw;
  border: 1px solid #8f8f8f64;
  border-radius: 2vw;
  background: radial-gradient(
      circle at bottom left,
      #a85131,
      #531113,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      transparent 60%
    ),
    radial-gradient(
      circle at top right,
      #1c84c5,
      #0c3650,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      #0a0a0a,
      transparent 60%
    );
}

#h1-width {
  width: 40vw;
  line-height: 4.2vw;
}
#compare {
  display: flex;
  justify-content: center;
  margin-top: -80px;
}
.tick {
  color: #ff3333;
  font-weight: 400;
  font-size: 2vw;
}
.cross {
  color: #92929290;
  font-weight: 500;
  font-size: 1.2vw;
}
.box {
  background-color: #0a0a0a90;
  border: 1px solid #8f8f8f64;
  padding: 2vw;
  border-radius: 1.2vw;
  text-align: left;
  margin: 2vw 1vw;
  width: 30vw;
  min-height: 18vw;
  font-size: 1.2vw;
}
#leftb {
  color: #92929290;
}
#leftb p {
  padding: 0.5vw 0;
}
#h2-width {
  width: 45vw;
  line-height: 4.2vw;
  margin-bottom: -20px;
}
#process-items {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#process-items img {
  width: 4vw;
}
#audit,
#setup,
#profit {
  width: 15vw !important;
}
#process-items h2 {
  font-size: 1.8vw;
}
#process-items p {
  font-size: 1.2vw;
  color: var(--text-light);
  margin-top: 15px;
}
#setup img {
  margin-bottom: 10px;
}
#profit img {
  margin-bottom: 5px;
}
#h3-width {
  width: 42vw;
  line-height: 4.2vw;
  margin-bottom: -80px;
}
/* testimonials scroll */

.test-box img {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  margin-right: 1vw;
  object-fit: cover;
}

.test-box {
  width: 22vw;
  text-align: left;
  border: 1px solid #8f8f8f40;
  padding: 2vw;
  border-radius: 2vw;
  margin: 1vw;
}
.test-box p {
  font-size: 1vw;
  color: var(--text-light);
}
#profilepic {
  display: flex;
  align-items: center;
  margin-top: 1vw;
}
#pinfo {
  display: inline-block;
}
#pinfo h3 {
  font-weight: 500;
  font-size: 1.2vw;
}
#pinfo p {
  font-size: 0.9vw;
}
#testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}
#test-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 50px 50px #0a0a0a, inset 0px -50px 50px #0a0a0a;
  z-index: 500;
}
.first-scroll {
  animation-name: first;
  animation-duration: 67s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.third-scroll {
  animation-name: first;
  animation-duration: 65s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes first {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}
.second-scroll {
  animation-name: second;
  animation-duration: 65s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes second {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
#faq {
  margin: 8vw auto;
  width: 55vw;
}
.quesdiv {
  position: relative;
  display: flex;
  align-content: center;
  justify-content: space-between;
  transition: all ease-in-out 0.2s;
}
.question {
  width: 52vw;
  border: 1px solid #8f8f8f40;
  padding: 1.2vw 2vw;
  border-radius: 0.8vw;
  margin: 1vw;
  transition: all ease-in-out 0.2s;
}
.answer p {
  padding: 1.8vw 0 0 0;
  font-size: 1vw;
  color: var(--text-light);
  text-align: left;
}
.question h5 {
  font-weight: 500;
  font-size: 1.2vw;
}
.plus {
  position: absolute;
  right: 1vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8vw !important;
  transition: transform 0.4s ease;
}
.plus.rotate {
  transform: rotate(180deg);
}
.question:hover {
  cursor: pointer;
}
.answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.answer.show {
  max-height: 200px;
  opacity: 1;
}
#lastcont {
  position: relative;
}
#lastsec {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8f8f8f40;
  padding: 1.2vw 2vw;
  border-radius: 2vw;
  width: 63vw;
  margin: 10vw auto;
  min-height: 25vw;
  background-color: #0a0a0a65;
  backdrop-filter: blur(20px);
  z-index: 10;
}
#wid {
  width: 40vw;
}
#lastsec h1 {
  font-size: 4vw;
  line-height: 4.5vw;
  font-weight: 600;
}
#lastsec p {
  font-size: 1.2vw;
  color: var(--text-light);
  padding: 1.5vw 0;
}

.lastglow {
  width: 80vw;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -195%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 0;
}

#glowin {
  width: 23vw;
  height: 23vw;
  border-radius: 50%;
  background: linear-gradient(
    to right,
    #00f0ff,
    #ff6699,
    #ff9933,
    #ff3333,
    #ffffcc,
    #00f0ff,
    #ff3333
  );
  background-size: 300% 100%;
  animation: colorShift 7s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  filter: blur(60px);
}

#glowin::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: inherit;
  border-radius: 50%;
  filter: blur(200px);
  z-index: -1;
}

#page4 {
  width: 100%;
  color: var(--almost-white);
  padding: 3vw 10vw;
  min-height: 20vw;
}

#footer {
  margin-top: -10vw;
  width: 100%;
  background-color: #0a0a0a65;
  backdrop-filter: blur(20px);
  border-top: 1px solid #8f8f8f40;
  text-align: left !important;
}
#footcont h1 {
  display: inline-block;
}
#leftfoot {
  width: 28vw;
  padding: 1vw 0;
}
#leftfoot h4 {
  padding: 0 0 0.5vw 0;
  font-weight: 600;
  font-size: 1.2vw;
}
#leftfoot p {
  padding-bottom: 1vw;
  color: var(--text-light);
}
#email {
  background: transparent;
  outline: none;
  border: 1px solid #8f8f8f40;
  padding: 0.8vw 0.5vw;
  border-radius: 0.7vw;
  font-size: 1vw;
  width: 65%;
  color: var(--almost-white);
}
.flexedfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*shaking animation */

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.emailanimation {
  animation: shake 0.3s ease-in-out;
}

ul {
  padding-top: 1vw;
  list-style-type: none;
  padding-left: 0;
}
#rightfoot {
  display: flex;
  position: relative;
  gap: 2vw;
}
li {
  color: var(--text-light);
  transition: all ease-in-out 0.2s;
}
li:hover {
  color: var(--almost-white);
  cursor: pointer;
}
