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

:root {
  --primary: #3a49ee;
  --secondary: #fff;
  --font1: "Manrope", "Manrope Placeholder", sans-serif;
  --font2: "Geist", "Geist Placeholder", sans-serif;
  --font3: "Familjen Grotesk", sans-serif;
}

html body {
  background-color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary);
  font-family: var(--font1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400 !important;
  color: var(--secondary);
  line-height: 0.9em !important;
  letter-spacing: -0.04em;
}

p:last-child {
  margin-bottom: 0px;
}

html a {
  color: var(--secondary);
  transition: all 0.5s;
  text-decoration: none;
}

html a:hover {
  color: #f5f5f566;
}

section {
  position: relative;
}

html .container {
  max-width: 1440px;
  width: 100%;
  padding: 40px;
}

ul {
  list-style: none;
  margin: 0px !important;
  padding: 0px !important;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99;
}

header nav {
  backdrop-filter: blur(10px);
  border-radius: 24px;
  opacity: 1;
  border: 1px solid rgba(245, 245, 245, 0.1);
  width: fit-content;
  margin: 20px auto;
  padding: 10px 25px;
  background-color: rgba(58, 73, 238, 0.85);
}

header nav ul {
  display: flex;
  gap: 20px;
}

header nav ul li a {
  font-size: 14px;
  font-family: var(--font2);
}

header nav ul li:first-child {
  /* padding-right: 20px; */
  position: relative;
}

/* header nav ul li:first-child:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 1px;
  background-color: rgba(245, 245, 245, 0.1);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
} */

.banner_section {
  height: 100vh;
}

.banner_section h3 {
  font-size: 44px;
  margin-left: auto;
  width: fit-content;
  margin-bottom: 76px;
}

.banner_section img.img-fluid {
  max-width: 414px;
  width: 100%;
}

/* Animated Title Styles */
.animated-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em;
  justify-content: flex-end;
}

.animated-title .word-animate {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  animation: wordReveal 0.8s ease-out forwards;
  will-change: transform, opacity, filter;
}

.animated-title .word-animate:nth-child(1) {
  animation-delay: 0.1s;
}

.animated-title .word-animate:nth-child(2) {
  animation-delay: 0.3s;
}

.animated-title .word-animate:nth-child(3) {
  animation-delay: 0.5s;
}

.animated-title .word-animate:nth-child(4) {
  animation-delay: 0.7s;
}

.animated-title .word-animate:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

.not_ordinary_text_section {
  min-height: 200vh;
  padding: 0px 32px;
}

.not_ordinary_text_section .no_text_wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

#not1 .no_text_wrap h2,
#not1 .no_text_wrap h3 {
  max-width: 875px;
  width: 100%;
}

.not_ordinary_text_section h2,
.not_ordinary_text_section h3 {
  max-width: 1200px;
  width: 100%;
  font-size: 35px;
}

/* Animated Text Paragraph Styles */
.animated-text-paragraph {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.animated-text-paragraph .word-animate {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
  will-change: transform, opacity, filter;
}

.text-animate-container.animate .word-animate {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Staggered delays for each word */
/* Staggered delays for each word */
.text-animate-container.animate .word-animate:nth-child(1) {
  transition-delay: 0.05s;
}

.text-animate-container.animate .word-animate:nth-child(2) {
  transition-delay: 0.1s;
}

.text-animate-container.animate .word-animate:nth-child(3) {
  transition-delay: 0.15s;
}

.text-animate-container.animate .word-animate:nth-child(4) {
  transition-delay: 0.2s;
}

.text-animate-container.animate .word-animate:nth-child(5) {
  transition-delay: 0.25s;
}

.text-animate-container.animate .word-animate:nth-child(6) {
  transition-delay: 0.3s;
}

.text-animate-container.animate .word-animate:nth-child(7) {
  transition-delay: 0.35s;
}

.text-animate-container.animate .word-animate:nth-child(8) {
  transition-delay: 0.4s;
}

.text-animate-container.animate .word-animate:nth-child(9) {
  transition-delay: 0.45s;
}

.text-animate-container.animate .word-animate:nth-child(10) {
  transition-delay: 0.5s;
}

.text-animate-container.animate .word-animate:nth-child(11) {
  transition-delay: 0.55s;
}

.text-animate-container.animate .word-animate:nth-child(12) {
  transition-delay: 0.6s;
}

.text-animate-container.animate .word-animate:nth-child(13) {
  transition-delay: 0.65s;
}

.text-animate-container.animate .word-animate:nth-child(14) {
  transition-delay: 0.7s;
}

.text-animate-container.animate .word-animate:nth-child(15) {
  transition-delay: 0.75s;
}

.text-animate-container.animate .word-animate:nth-child(16) {
  transition-delay: 0.8s;
}

.text-animate-container.animate .word-animate:nth-child(17) {
  transition-delay: 0.85s;
}

.text-animate-container.animate .word-animate:nth-child(18) {
  transition-delay: 0.9s;
}

.text-animate-container.animate .word-animate:nth-child(19) {
  transition-delay: 0.95s;
}

.text-animate-container.animate .word-animate:nth-child(20) {
  transition-delay: 1s;
}

.text-animate-container.animate .word-animate:nth-child(21) {
  transition-delay: 1.05s;
}

.text-animate-container.animate .word-animate:nth-child(22) {
  transition-delay: 1.1s;
}

.text-animate-container.animate .word-animate:nth-child(23) {
  transition-delay: 1.15s;
}

.text-animate-container.animate .word-animate:nth-child(24) {
  transition-delay: 1.2s;
}

.text-animate-container.animate .word-animate:nth-child(25) {
  transition-delay: 1.25s;
}

.text-animate-container.animate .word-animate:nth-child(26) {
  transition-delay: 1.3s;
}

.text-animate-container.animate .word-animate:nth-child(27) {
  transition-delay: 1.35s;
}

.text-animate-container.animate .word-animate:nth-child(28) {
  transition-delay: 1.4s;
}

.text-animate-container.animate .word-animate:nth-child(29) {
  transition-delay: 1.45s;
}

.text-animate-container.animate .word-animate:nth-child(30) {
  transition-delay: 1.5s;
}

.text-animate-container.animate .word-animate:nth-child(31) {
  transition-delay: 1.55s;
}

.text-animate-container.animate .word-animate:nth-child(32) {
  transition-delay: 1.6s;
}

.text-animate-container.animate .word-animate:nth-child(33) {
  transition-delay: 1.65s;
}

.text-animate-container.animate .word-animate:nth-child(34) {
  transition-delay: 1.7s;
}

.text-animate-container.animate .word-animate:nth-child(35) {
  transition-delay: 1.75s;
}

.text-animate-container.animate .word-animate:nth-child(36) {
  transition-delay: 1.8s;
}

.text-animate-container.animate .word-animate:nth-child(37) {
  transition-delay: 1.85s;
}

.text-animate-container.animate .word-animate:nth-child(38) {
  transition-delay: 1.9s;
}

.text-animate-container.animate .word-animate:nth-child(39) {
  transition-delay: 1.95s;
}

.text-animate-container.animate .word-animate:nth-child(40) {
  transition-delay: 2s;
}

.text-animate-container.animate .word-animate:nth-child(41) {
  transition-delay: 2.05s;
}

.text-animate-container.animate .word-animate:nth-child(42) {
  transition-delay: 2.1s;
}

.text-animate-container.animate .word-animate:nth-child(43) {
  transition-delay: 2.15s;
}

.text-animate-container.animate .word-animate:nth-child(44) {
  transition-delay: 2.2s;
}

.text-animate-container.animate .word-animate:nth-child(45) {
  transition-delay: 2.25s;
}

.text-animate-container.animate .word-animate:nth-child(46) {
  transition-delay: 2.3s;
}

.text-animate-container.animate .word-animate:nth-child(47) {
  transition-delay: 2.35s;
}

.text-animate-container.animate .word-animate:nth-child(48) {
  transition-delay: 2.4s;
}

.text-animate-container.animate .word-animate:nth-child(49) {
  transition-delay: 2.45s;
}

.text-animate-container.animate .word-animate:nth-child(50) {
  transition-delay: 2.5s;
}


#not2 .no_text_wrap h2,
#not2 .no_text_wrap h3 {
  max-width: 1200px;
  width: 100%;
}

.contact_us_text_section {
  min-height: 600vh;
  display: flex;
  justify-content: center;
}

.contact_us_text_section .contact_us_text_wrap {
  position: sticky;
  top: 0;
  overflow: visible;
  height: 100vh;
  display: flex;
  align-items: center;
}

.contact_us_text_wrap h2,
.contact_us_text_wrap h3 {
  font-size: 64px;
  font-family: var(--font3);
  animation: scaleSection linear both;
  animation-timeline: view();
}

@keyframes scaleSection {
  0% {
    opacity: 1;
    scale: 1;
  }

  50% {
    scale: 0.9;
    opacity: 0.9;
  }

  100% {
    scale: 0.8;
    opacity: 0.8;
  }
}

.video_section {
  height: 100vh;
  padding: 40px 60px;
}

.video_section:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: auto;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(#000 80%, #0000 100%);
  z-index: -1;
}

.video_section h3 {
  max-width: 700px;
  width: 100%;
  font-size: 35px;
}

.feature_section {
  padding: 0px 30px;
}

.feature_section .feature_box {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1440px;
  width: 100%;
}

.feature_box .image {
  max-width: 675px;
  height: 675px;
  width: 100%;
}

.feature_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature_box .content {
  border-top: 1px solid #222225;
  padding-top: 30px;
  height: fit-content;
  position: sticky;
  top: 107px;
  overflow: visible;
  width: 100%;
  display: flex;
  gap: 15px;
}

.feature_box .content h4 {
  font-size: 35px;
  color: #f5f5f566;
  margin-bottom: 0px;
}

.feature_box .content h3 {
  font-size: 35px;
}

.feature_box .content p {
  max-width: 322px;
  width: 100%;
  margin-left: auto;
  font-size: 16px;
  color: #f5f5f566;
  line-height: 1.2em;
}

.feature_section .feature_box:nth-child(2),
.feature_section .feature_box:nth-child(3) {
  margin: 30px auto;
}

h3 {
  animation: slideUp 2s ease-out forwards;
  animation-delay: 0.5s;
}

footer {
  background-color: #0f0f0f;
  padding: 0px 30px;
  max-width: 1360px;
  width: 100%;
  margin: 0px auto;
  border-radius: 17px;
  margin-bottom: 20px;
}

footer .footer_top {
  padding: 30px 0px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

footer ul li a {
  font-size: 16px;
  margin-bottom: 10px;
}

footer .footer_bottom {
  padding: 30px 0px;
}

footer h2,
footer h3 {
  font-size: 56px;
  margin: 0px;
}

@media only screen and (max-width: 1199px) {
  .banner_section {
    height: 70vh;
  }

  .word-animate {
    font-size: 35px;
  }

  footer h2,
  footer h3 {
    font-size: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .banner_section {
    height: 70vh;
  }

  html .container {
    padding: 10px;
  }

  .word-animate {
    font-size: 25px;
  }

  .not_ordinary_text_section {
    min-height: 100vh;
  }

  .contact_us_text_wrap h2 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  footer {
    margin: 10px !important;
  }

  footer h2,
  footer h3 {
    font-size: 20px;
  }

  footer {
    padding: 0px 15px;
  }
}