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

button {
  cursor: auto
}

:root {
  --bg-color: #1d0011;
  --font-xxl: 40px;
  --font-xl: 32px;
  --font-lg: 24px;
  --font-sm: 20px;
  --primary: #ff23a5
}

@font-face {
  font-family: "Chillax";
  src: url(../Assets/fontFamaliy/chillax/Chillax-Light.otf);
  font-weight: 300;
  font-style: normal
}

@font-face {
  font-family: "Chillax";
  src: url(../Assets/fontFamaliy/chillax/Chillax-Regular.otf);
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: "Chillax";
  src: url(../Assets/fontFamaliy/chillax/Chillax-Medium.otf);
  font-weight: 500;
  font-style: normal
}

body {
  font-family: "Chillax";
  font-weight: 400;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  overflow-x: hidden;
  opacity: 0
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0
}

.p-0 {
  padding: 0px !important
}

.fade-out {
  animation: fadeOut 300ms ease-out forwards
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(.98)
  }
}

body.fade-in {
  animation: fadeIn 400ms ease-out forwards
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

.StreamTop {
  position: relative;
  width: 100%
}

.stream-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center
}

.shadow-upper,
.shadow-lower {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2
}

.shadow-upper {
  top: 0
}

.shadow-lower {
  bottom: -1px
}

.stream-bg {
  z-index: 1;
  width: 100%;
  height: 100vh;
  object-fit: cover
}

.stream-video {
  position: absolute;
  top: 35%;
  left: 48%;
  transform: translate(-50%, -50%);
  max-width: 447px;
  z-index: 2;
  max-height: 252px;
  border: 4px solid
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 24px 6px 0;
}

.leftItem {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 40px
}

.logo-img {
  max-width: 100%;
  height: auto;
  display: block
}

@supports (-webkit-touch-callout:none) {
  .logo-img {
    transform: translateZ(0)
  }
}

.navbar {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  background: #14000c99;
  backdrop-filter: blur(8px);
  box-shadow: 1px 1px 5px 0 #ff5ff499;
  height: 40px
}

.nav-item a {
  padding: 16px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-decoration: none;
  text-shadow: 1px 1px 5px #ff23a599
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1
}

.nav-item.active a {
  background-color: var(--primary);
  padding: 6px 16px;
  color: #1d0011;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: capitalize;
  cursor: default;
  text-shadow: none
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 24px
}

.cta-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: capitalize
}

.cta-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff5ff4, var(--primary));
  box-shadow: 1px 1px 5px 0 #ff23a599;
  border-radius: 1px
}

.cta-glow {
  padding: 6px 16px;
  border-radius: 16px;
  color: #1d0011;
  font-size: 17px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
  background: #fff0;
  border: 1px solid #fff0;
  background-image: linear-gradient(var(--primary), var(--primary)), linear-gradient(228.75deg, #0137cb 8.02%, #e40087 92.45%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 1px 1px 5px 0 #ff23a599;
  overflow: hidden;
  z-index: 1
}

.cta-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(#f8f1ff, #f8f1ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1
}

.cta-glow:hover::after {
  opacity: 1
}

.cta-glow a {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease
}

.cta-glow:hover a {
  color: #290018
}

.coming-soon a {
  text-decoration: none
}

.mobileMenu i,
.menuClose i {
  color: var(--primary);
  font-size: 22px
}

.mobileMenu {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer
}

.mobileHeader,
.menuConetnt {
  display: none
}

.mobileMenuWrapper {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0010;
  z-index: 999
}

.mobileMenuWrapper.active {
  display: flex
}

.mobileHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px
}

.logoMenu p {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px
}

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

.menuConetnt a {
  line-height: 32px;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px
}

.menuConetnt .getintouch {
  margin-top: 32px;
  margin-bottom: 32px
}

.Updates,
.install,
.subscribe {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  margin-top: 8px
}

.install {
  margin-bottom: 16px
}

.subscribe {
  font-weight: 400
}

.subscribe a {
  display: inline;
  text-decoration: underline
}

.gradient-input-wrapper {
  margin-top: 16px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 4px 6px 4px 16px;
  border: 1px solid #fff0;
  background: linear-gradient(#1a0022, #1a0022) padding-box, linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%) border-box;
  width: 100%;
  max-width: 300px
}

.gradient-input-wrapper input {
  border: none;
  background: #fff0;
  outline: none;
  color: var(--primary);
  font-size: 16px;
  flex: 1;
  width: 100%;
  height: 40px
}

.gradient-input-wrapper input::placeholder {
  font-family: "Chillax";
  font-size: 16px;
  color: var(--primary);
  opacity: 1
}

.email-arrow {
  color: var(--primary);
  font-size: 20px;
  margin-left: 8px
}

.follow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 43px
}

.follow p {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px
}

.follow i {
  font-size: 23px;
  color: var(--primary)
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px
}

.StreamBottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 24px 96px
}

.bottomContent {
  display: flex;
  justify-content: space-between;
  align-items: end
}

.coming-soonContent {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px 0 6px;
  border-radius: 16px;
  border: 1px solid #fff0;
  background-origin: border-box;
  box-shadow: 1px 1px 5px 0 #ff5ff499;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 16px;
  height: 46px;
  transition: box-shadow 0.4s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.coming-soonContent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(186.8deg, #011c65 .8%, #0137cb 49.46%, #e40087 98.13%);
  z-index: -2
}

.coming-soonContent::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: #f8f1ff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1
}

.coming-soonContent:hover::after {
  opacity: 1
}

.commingSoon {
  padding: 9px 10px 9px 10px;
  border-radius: 10px;
  border: 1px solid #fff0;
  background: linear-gradient(34deg, #011c65 .8%, #0137cb 49.46%, #e40087 98.13%);
  background-origin: border-box;
  box-shadow: 1px 1px 5px 0 #ff5ff499;
  backdrop-filter: blur(8px);
  height: 34px;
  display: flex;
  align-items: center
}

.subTitle {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, font-size 0.3s ease, line-height 0.3s ease;
  position: relative;
  z-index: 2
}

.subTitle img {
  height: 15px;
  width: 20px;
  object-fit: cover
}

.default-arrow {
  display: inline-block;
  transition: opacity 0.3s ease
}

.subTitle .hover-arrow {
  display: none;
  transition: opacity 0.3s ease
}

.coming-soonContent:hover .default-arrow {
  display: none
}

.coming-soonContent:hover .hover-arrow {
  display: inline-block
}

.coming-soonContent:hover .subTitle {
  color: #0137cb;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500
}

.streaming-intro-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  width: fit-content;
  margin-top: 12px
}

.streaming-intro-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1
}

.streaming-intro {
  padding: 32px;
  border-radius: 32px;
  background-color: #14000c99;
  box-shadow: 1px 1px 5px 0 #ff5ff499;
  backdrop-filter: blur(8px);
  color: #fff
}

.streaming-heading {
  font-size: var(--font-xxl);
  font-weight: 500;
  color: #ebfbff;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-wrap-mode: nowrap
}

.streamspan {
  font-size: var(--font-xxl);
  font-weight: 500;
  color: #ebfbff;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-transform: math-auto
}

.streaming-heading span {
  display: block;
  color: var(--primary)
}

.streaming-description {
  font-size: var(--font-sm);
  line-height: 32px;
  font-weight: 400;
  color: #f8f1ff;
  padding-top: 16px
}

.discover-button {
  position: relative;
  z-index: 1;
  padding: 8px 23px;
  border-radius: 16px;
  background-color: #fff0;
  border: 1px solid #fff0;
  box-shadow: 1px 1px 5px 0 #ff5ff499;
  backdrop-filter: blur(8px);
  margin-top: 24px;
  width: auto;
  display: inline-block;
  overflow: hidden;
  transition: color 0.3s ease
}

.discover-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(var(--primary), var(--primary)) padding-box, linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%) border-box;
  z-index: -2
}

.discover-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(#f8f1ff, #f8f1ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1
}

.discover-button:hover::after {
  opacity: 1
}

.discover-button a {
  cursor: pointer;
  text-decoration: none;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-size: var(--font-sm);
  font-weight: 500;
  color: #1d0011;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease
}

.discover-button:hover a {
  color: #290018
}

.bottomPara {
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--primary)
}

.section-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 432px
}

.Transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.TransformArt {
  font-weight: 500;
  font-size: 32px;
  color: var(--primary);
  line-height: 48px;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 1px 1px 5px #ff23a599
}

.startWatching {
  position: relative;
  font-family: "Chillax";
  padding: 8px 23px;
  height: 48px;
  background-color: var(--primary);
  font-size: var(--font-sm);
  color: #0c0800;
  font-weight: 500;
  border-radius: 16px;
  margin-top: 35px;
  border: none;
  box-shadow: 1px 1px 5px 0 #ff23a599;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  line-height: 32px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: math-auto;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  display: inline-block
}

.startWatching:hover {
  background-color: #f8f1ff;
  color: #290018
}

.startWatching::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, #e40087 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto
}

.experiance {
  font-weight: 500;
  color: var(--primary);
  font-size: var(--font-xxl);
  line-height: 48.72px;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 466px;
  margin-bottom: 87px;
  text-shadow: 1px 1px 5px #ff23a599
}

.card {
  position: relative;
  z-index: 1;
  padding: 32px;
  border-radius: 32px;
  box-shadow: 1px 1px 5px 0 #ff23a599;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(41 0 24 / .5);
  color: var(--primary);
  transition: background 0.4s ease, color 0.4s ease
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 32px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  box-shadow: 1px 1px 5px 0 #ff23a599;
  z-index: -1;
  transition: background 0.4s ease
}

.card-icon-wrapper {
  margin-bottom: 16px
}

.card:nth-child(2) {
  transform: translateY(-20px)
}

.card:nth-child(2) .card-description {
  width: 164px
}

.card-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary)
}

.card-description {
  color: #d1d5db;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px
}

.card:hover {
  background: linear-gradient(228.75deg, #0137cb, var(--primary));
  color: #ebfbff
}

.card:hover .card-title,
.card:hover .card-description {
  color: #ebfbff;
  transition: color 0.4s ease
}

.card-icon-wrapper img {
  transition: filter 0.3s ease
}

.card:hover .card-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(10%) saturate(300%) hue-rotate(275deg)
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 388px;
  margin-top: 5rem
}
/* find Art */
.findArt {
  padding: 0 16px
}

.artTitle {
  font-weight: 500;
  font-size: var(--font-xl);
  color: var(--primary);
  text-align: center;
  line-height: 48px;
  letter-spacing: 1px;
  padding-top: 30px;
  text-shadow: 1px 1px 5px #ff23a599
}

.artVideo {
  position: relative;
  margin: 100px auto 0 auto;
  border-radius: 64px;
  width: 100%;
  transition: width 0.5s ease-in-out;
  overflow: visible
}

#artVideo {
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  will-change: transform
}

.artVideo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 66px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  z-index: -1
}

.video-inner {
  position: relative;
  /* make container relative so text positions correctly */
  border-radius: 64px;
  overflow: hidden;
  background-color: #140011;
  width: 100%;
}
.video-credit {
  position: absolute;
  bottom: 30px;
  left: 50px;
    font-weight: 500;
      font-style: normal;
      font-size: 16px;
      line-height: 48.72px;
      letter-spacing: 1px;
      text-transform: capitalize;
      color: var(--primary);
}

.video-inner video {
  display: block;
  width: 100%;
  height: auto
}

.artButton {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px
}

.numbers {
  margin-top: 414px
}

.numbers h2 {
  font-weight: 500;
  font-size: var(--font-xxl);
  line-height: 48.72px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  color: var(--primary);
  text-shadow: 1px 1px 5px #ff23a599;
  margin-bottom: 90px
}

.numbers-border-wrapper {
  position: relative;
  z-index: 1;
  padding: 1px;
  border-radius: 64px;
  background: #fff0;
  width: fit-content;
  margin: 0 auto
}

.numbers-border-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 64px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1
}

.numbers-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: #29001880;
  border-radius: 64px
}

.numbers-card {
  background: linear-gradient(228.75deg, #0137cb, var(--primary));
  border-radius: 32px;
  padding: 32px;
  text-align: center;
  color: #ebfbff
}

.card-number {
  font-size: var(--font-xxl);
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px;
  padding: 16px 24px;
  border-radius: 24px;
  background: linear-gradient(228.75deg, #0137cb, var(--primary));
  position: relative;
  z-index: 1;
  transition: all 0.4s ease
}

.card-number::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 16px;
  background: linear-gradient(228.75deg, #e40087 8.02%, #0137cb 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: padding 0.4s ease
}

.numbers-container .number-description {
  padding-top: 16px;
  font-size: var(--font-sm);
  color: #ebfbff;
  text-align: left
}
       /* stream section */
.streaming-section-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 395px 0 40px 126px
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  position: sticky;
  top: 30%
}

.available-Install {
  display: flex;
  align-items: end;
  gap: 50px
}

.installApps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px
}

.info-section h2 {
  font-family: Chillax;
  font-weight: 500;
  font-size: 40px;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--primary);
  text-shadow: 1px 1px 5px #ff23a599
}

.info-section span {
  display: block
}

.available-on-section h2,
.install-section h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px;
  color: var(--primary)
}

.available-on-section ul {
  padding-top: 16px
}

.available-on-section ul li {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0;
  color: #f8f1ff;
  padding-bottom: 6px
}

.install-app-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px
}

.device-mockup {
  position: sticky;
  top: auto;
  z-index: auto;
  border-radius: 32px;
  background-color: #1d0011;
  box-shadow: 1px 1px 5px 0 #ff23a599;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px 0 1px 1px;
  border-radius: inherit;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none
}

.device-mockup video {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 32px
}

.device-mockup:nth-child(1) video {
  max-height: 242px;
  max-width: 360px
}

.device-mockup:nth-child(2) video {
  max-height: 398px;
  max-width: 503px
}

.device-mockup:nth-child(3) video {
  max-height: 504px;
  max-width: 745px
}

.device-mockup:nth-child(4) video {
  max-height: 738px;
  max-width: 798px
}

.mockup-p {
  position: absolute;
    transform: translate(-50%, -50%);
    rotate:-90deg;
    transform-origin: left center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--primary);
}
.device-mockup:nth-child(1) .mockup-p{
    left: 8%;
      top: 46%;
}

.device-mockup:nth-child(2) .mockup-p {
  left: 6%;
  top: 46%;
}

.device-mockup:nth-child(3) .mockup-p {
  left:4%;
  top: 46%;
}

.device-mockup:nth-child(4) .mockup-p {
  left: 4%;
  top: 46%;
}

.device-mockup:nth-child(1) {
  z-index: 1;
  top: 30%;
  right: 149px;
  padding: 20px 22px 20px 50px
}

.device-mockup:nth-child(2) {
  z-index: 2;
  top: 24%;
  right: 93px;
  padding: 24px 20px 24px 50px
}

.device-mockup:nth-child(3) {
  z-index: 3;
  top: 20%;
  right: -5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 28px 19px 28px 50px
}

.device-mockup:nth-child(4) {
  z-index: 4;
  top: 50%
}

.device-mockup.last-device {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 48px 58px 49px 70px;
  border-top-left-radius: 44px;
  border-bottom-left-radius: 44px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}

.device-mockup.last-device .mockup-p {
  rotate: -90deg;
  margin: 0;
  white-space: nowrap
}

.device-mockup.last-device::before {
  border-top-left-radius: 44px;
  border-bottom-left-radius: 44px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0
}

.last-device .tv-default {
  display: block
}

.last-device .tv-alternate {
  display: none
}

.excellenceDots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--primary);
  width: 144px;
  padding: 16px;
  border-radius: 24px;
  margin: 0 auto;
  display: none
}

.excellenceDots div {
  height: 8px;
  width: 8px;
  background-color: var(--primary);
  transition: width 0.3s ease, border-radius 0.3s ease
}

.dot1 {
  width: 40px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 24px
}

.dot2,
.dot3,
.dot4 {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: var(--primary)
}

.artwork {
  font-family: Chillax;
  font-weight: 500;
  font-size: 40px;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  color: var(--primary);
  margin-top: 375px;
  text-shadow: 1px 1px 5px #ff23a599
}

.artP {
  font-weight: 400;
  font-size: var(--font-lg);
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
  color: #f8f1ff;
  margin-top: 20px
}

.slowArt-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  max-width: 1235px;
  margin: 112px auto 0;
  padding: 15px;
  height: 992px
}

.gradient-border {
  padding: 1px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  box-sizing: border-box
}

.gradient-border.left {
  border-radius: 32px 0 0 32px;
  padding-right: 0
}

.gradient-border.left .info-card {
  border-radius: 32px 0 0 32px;
  padding-right: 0
}

.gradient-border.right {
  border-radius: 0 32px 32px 0
}

.gradient-border.right .info-card {
  border-radius: 0 32px 32px 0;
  padding-right: 0
}

.info-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #1d0011;
  border-radius: 30px;
  padding: 0 40px;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
  position: relative
}

.column {
  flex: 1;
  padding: 0 32px;
  min-width: 300px;
  position: relative
}

.border-gradient {
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px
}

.border-gradient-right {
  border-right: 1px solid;
  border-image-slice: 1;
  border-width: 1px
}

.border-gradient-purple {
  border-image-source: linear-gradient(233.53deg, #8d730c 11.3%, #e40087 141.56%)
}

.column h2 {
  font-size: var(--font-xxl);
  margin-bottom: 40px;
  font-weight: 500;
  color: var(--primary);
  margin-top: 100px;
  text-align: left
}

.column p {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--primary);
  font-weight: 500;
  max-width: 475px;
  line-height: 48px;
  letter-spacing: 1px
}

.healthContentList {
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px
}

.slowArt-section .healthContentList li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #f8f1ff;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px
}

.column .surveyBtn {
  margin-bottom: 90px
}

.info-card .startWatching {
  margin-bottom: 100px
}

.slowArt-section .gradient-border {
  transition: background 0.4s ease, box-shadow 0.4s ease
}

.slowArt-section .gradient-border:hover .info-card {
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  box-shadow: 1px 1px 5px 0 #8d730c99;
  transition: background 0.4s ease, box-shadow 0.4s ease
}

.slowArt-section .gradient-border .info-card {
  transition: background 0.4s ease, box-shadow 0.4s ease
}

.slowArt-section .gradient-border:hover .content-body {
  color: #fff8eb;
  transition: color 0.3s ease
}

.slowArt-section .gradient-border:hover .title,
.slowArt-section .gradient-border:hover p,
.slowArt-section .gradient-border:hover li {
  color: #fff8eb
}

.slowArt-section .gradient-border:hover .healthContentList li img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease
}

.slowArt-section .gradient-border:hover .startWatching {
  background-color: #f8f1ff;
  color: #290018;
  transition: background-color 0.3s ease, color 0.3s ease
}

.slowArt-section .gradient-border:hover .startWatching::before {
  opacity: 0;
  transition: opacity 0.3s ease
}

.content {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 56px;
  margin-top: 100px
}

.content p {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 315px
}

.contentright p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #f8f1ff;
  width: 441px;
  padding-top: 16px
}

.contentright a {
  color: #f8f1ff;
  cursor: pointer
}

.gradient-border {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  width: fit-content;
  position: relative
}

.gradient-border input {
  border: none;
  outline: none;
  border-radius: 16px;
  padding: 8px 12px 8px 32px;
  background-color: #1d0011;
  color: #fff;
  font-size: 14px;
  width: 534px;
  height: 64px
}

.arrow-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff0;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

input::placeholder {
  font-family: "Chillax";
  color: #f8f1ff;
  font-size: 20px;
  font-weight: 400;
  line-height: 64px
}

.testimonials-title {
  color: #f0c;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48.72px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: capitalize;
  text-shadow: 1px 1px 5px #ff23a599
}

.testimonials-cards-wrapper {
  background: linear-gradient(35deg, var(--primary) 0%, #0137cb 100%);
  padding: 1px;
  border-radius: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content
}

.testimonialCards {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 32px;
  background: #1d0011;
  border-radius: 64px;
  padding: 32px
}

.testimonial-card {
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 2px 24px 0 #0002;
  width: 100%;
  height: auto
}

.testimonial-avatar-rect img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 16px
}

.testimonial-name {
  color: #ebfbff;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  margin-top: 16px;
  margin-bottom: 4px
}

.testimonial-role {
  color: #ebfbff;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 16px
}

.testimonial-quote {
  color: #ebfbff;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px
}

.testimonials-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 68px
}

.appcolumn.left .appcontent-body {
  background: linear-gradient(206.8deg, #011c65 .8%, #0137cb 49.46%, #e40087 98.13%);
  padding: 9px 76px;
  height: 882px
}

.appcolumn.right .appcontent-body img {
  max-width: 100%;
  height: 882px;
  display: block
}

.app-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1235px;
  margin: 112px auto 0;
  padding: 15px;
  gap: 0
}

.appGradient-border {
  flex: 1 1 50%;
  padding: 1px;
  min-width: 300px;
  box-sizing: border-box
}

.appGradient-border.left {
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  border-radius: 64px 0 0 64px;
  padding-right: 0
}

.appGradient-border.left .app-card {
  border-radius: 64px 0 0 64px;
  padding-right: 0
}

.appGradient-border.right {
  border-radius: 0 64px 64px 0
}

.appGradient-border.right .app-card {
  border-radius: 0 64px 64px 0;
  padding-right: 0
}

.app-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: #1d0011;
  border-radius: 30px;
  overflow: hidden;
  position: relative
}

.appcolumn {
  flex: 1;
  min-width: 300px;
  position: relative
}

.appGradient-gradient {
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px
}

.appGradient-gradient-right {
  border-right: 1px solid;
  border-image-slice: 1;
  border-width: 1px
}

.appGradient-gradient-purple {
  border-image-source: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%)
}

.appButton button {
  margin-top: 212px;
  margin-bottom: 32px;
  font-family: "Chillax";
  padding: 0 24px;
  background: linear-gradient(209deg, #0137cb 8.02% 8.02%, var(--primary) 92.45%);
  border-radius: 32px;
  border: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 48px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #f8f1ff
}

.appTitle {
  font-weight: 500;
  font-size: var(--font-xxl);
  line-height: 48px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: #f8f1ff;
  padding-bottom: 16px
}

.appParagraph {
  font-weight: 500;
  font-size: var(--font-lg);
  line-height: 32px;
  letter-spacing: 1px;
  color: #f8f1ff;
  padding-bottom: 48px
}

input[type="text"] {
  margin-bottom: 16px;
  border: 1px solid #f8f1ff;
  border-radius: 16px;
  height: 56px;
  width: 394px;
  padding: 4px 6px 4px 16px;
  background-color: #fff0;
  color: #f8f1ff;
  outline: none;
  font-weight: 400;
  font-size: var(--font-sm);
  line-height: 32px;
  font-family: "Chillax"
}

.join {
  display: inline-block;
  padding: 8px 23px;
  border-radius: 16px;
  border: none;
  box-shadow: 1px 1px 5px 0 #FF23A599;
  transition: box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #fff0;
  text-decoration: none
}

.join::before,
.join::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  z-index: -1;
  transition: opacity 0.4s ease-in-out
}

.join::before {
  background-color: #f8f1ff;
  z-index: -2
}

.join::after {
  background: linear-gradient(14deg, #0137cb 49.46%, #e40087 98.13%);
  opacity: 0
}

.join:hover::after {
  opacity: 1
}

.join:hover::before {
  opacity: 0
}

.gradient-text {
  font-family: "Chillax";
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  color: #fff0;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: -webkit-text-fill-color 0.4s ease-in-out, color 0.4s ease-in-out;
  position: relative;
  z-index: 2
}

.join:hover .gradient-text {
  -webkit-text-fill-color: #f8f1ff;
  color: #f8f1ff
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgb(0 0 0 / .6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px
}

.modal-content {
  background-color: #2134B0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 5px 20px rgb(0 0 0 / .3);
  position: relative
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  cursor: pointer
}

.modal-content iframe {
  width: 100% !important;
  max-width: 100%;
  height: 316px;
  border-radius: 8px;
  border: none;
  background-color: #fff0
}

.footer-section {
  padding: 196px 32px 109px 32px
}

.footer-container {
  max-width: 1235px;
  margin: 0 auto
}

.footer-gradient {
  background: #1d0011;
  border-radius: 64px;
  border: 1px solid #fff0;
  position: relative;
  padding: 56px 53px
}

.footer-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px;
  border-radius: 64px;
  background: linear-gradient(228.75deg, #0137CB 8.02%, #FF23A5 92.45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0
}

.footer-content {
  position: relative;
  z-index: 2
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(244.71deg, #0137CB 0%, #FF23A5 68.63%);
  margin: 32px 0
}

.follow-us {
  display: flex;
  gap: 19px
}

.follow-us p {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  line-height: 32px;
  letter-spacing: 1px
}

.follow-us img {
  object-fit: contain
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 200px;
  margin-top: 56px;
  padding: 24px 0
}

.footer-heading {
  font-size: var(--font-xl);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(234.24deg, #0137CB 23.86%, #FF23A5 94.77%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff0;
  background-clip: text;
  color: #fff0;
  text-align: left
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--primary);
  list-style: none;
  font-weight: 500
}

.platform-list li {
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 32px;
  font-size: 16px;
  color: var(--primary);
  list-style: none
}

.footer-links li a {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px
}

.footer-col p a {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 1px
}

.footer-signup-title {
  line-height: 24px;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  padding-top: 32px;
  padding-bottom: 8px
}

.getintouch a {
  text-decoration: none;
  padding-top: 32px
}

.footer-subscribe {
  color: var(--primary);
  margin-bottom: 16px;
  width: 400px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1px;
  font-size: 16px;
  padding-top: 8px
}

.email-subscribe {
  -webkit-font-smoothing: antialiased;
  position: relative;
  align-items: center;
  padding: 1px;
  background: linear-gradient(228.75deg, #0137cb 8.02%, var(--primary) 92.45%);
  width: fit-content;
  position: relative;
  display: flex;
  border-radius: 12px
}

.email-subscribe input,
.email-subscribe button {
  border: none;
  outline: none;
  background-color: #fff0;
  font-size: 16px;
  line-height: 32px;
  height: 100%;
  color: var(--primary);
  appearance: none;
  -webkit-appearance: none
}

.email-subscribe input {
  border: none;
  outline: none;
  border-radius: 12px;
  background-color: #1d0011;
  color: #fff;
  font-size: 14px;
  width: 247px;
  height: 40px;
  display: block;
  flex: 1;
  padding: 0 0 0 8px;
  min-width: 0;
  border: none;
  background: #1d0011
}

.email-subscribe input::placeholder {
  color: var(--primary);
  opacity: 1;
  font-family: "Chillax", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px
}

.email-submit-link {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff0;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.email-subscribe button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block
}

.footer-availability {
  color: var(--primary);
  font-size: 16px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 1px
}

.footer-apps {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 32px;
  line-height: 32px;
  letter-spacing: 1px
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 45px;
  width: 170px;
  padding: 4px 10px;
  background-color: #ede8d0;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  width: fit-content
}

.app-store-btn img {
  height: 25px;
  width: auto
}

.fa-solid,
.fas {
  font-weight: 900;
  font-size: 25px
}

.app-store-btn span {
  font-size: 12px
}

.app-store-btn strong {
  font-size: 18px;
  font-weight: 600;
  display: block
}

.footer-links-bottom {
  display: flex;
  gap: 16px
}

.footer-col .footer-subscribe a {
  font-weight: 400;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer
}

.footer-bottom {
  display: flex;
  justify-content: start;
  gap: 36px
}

.footerBottom {
  display: flex;
  gap: 32px
}

.footer-bottom img {
  width: 52px;
  height: auto;
  object-fit: contain
}

.footerBottom p {
  color: var(--primary);
  font-weight: 400;
  line-height: 32px
}

.footer-links-bottom a {
  cursor: pointer;
  color: var(--primary);
  text-decoration: underline;
  line-height: 32px
}