.ca-carousel {
  --nav-size: 3.5rem;
  --nav-offset: 1.75rem;
  position: relative;
  max-width: 89%;
  margin: 2.5rem auto;
  padding: 0 calc(var(--nav-size) + var(--nav-offset));
}
@media (max-width: 37.5em) {
  .ca-carousel {
    max-width: 95%;
  }
}

.ca-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.ca-carousel__viewport:active {
  cursor: grabbing;
}

.ca-carousel__track {
  display: flex;
  transition: transform 0.32s ease;
}

.ca-carousel__slide {
  flex: 0 0 100%;
  background: #fff;
  position: relative;
}

.ca-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ca-carousel__body {
  padding: 1rem 1.125rem;
}
.ca-carousel__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}
.ca-carousel__body p {
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
}

.ca-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--nav-size);
  height: var(--nav-size);
  border: 0;
  background: #777;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 0.625rem 1.375rem rgba(0, 0, 0, 0.18);
  border-radius: 1000px;
}
.ca-carousel__nav:hover {
  background: #666;
}
.ca-carousel__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.ca-carousel__nav--prev {
  left: 0;
}

.ca-carousel__nav--next {
  right: 0;
}

.ca-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  padding-top: 0.875rem;
}

.ca-carousel__dot {
  width: 0.875rem;
  height: 0.875rem;
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border-radius: 1000px;
}
.ca-carousel__dot.is-active {
  background: rgba(0, 0, 0, 0.9);
}

.gor__text1 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 3rem;
  width: 70%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 56.25em) {
  .gor__text1 {
    position: relative;
    left: auto;
    transform: translate(0, 0);
    top: auto;
    width: 100% !important;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }
}

.gor__text2 {
  position: absolute;
  left: 5rem;
  transform: translate(0, -50%);
  top: 50%;
  width: 40% !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 56.25em) {
  .gor__text2 {
    position: relative;
    left: auto;
    transform: translate(0, 0);
    top: auto;
    width: 100% !important;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.ip {
  background-color: #000;
  color: #fff;
}
.ip__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
.ip video,
.ip img {
  margin-top: 5rem;
  width: 80%;
  margin: 0 auto;
}

.water {
  background-color: #000;
  color: #fff;
}
.water .primary-heading {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 10rem 0 5rem;
}
.water__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 2rem;
  padding-bottom: 5rem;
}
@media (max-width: 50em) {
  .water__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.water__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.water__logo {
  width: 3rem;
}

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

html {
  font-size: 62.5%;
}
@media (max-width: 40em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: sans-serif;
}

.primary-heading {
  font-size: 3.2rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.6rem;
  font-weight: 600;
}

.basic-text {
  font-size: 1.5rem;
}

.full__img > *,
.full__img {
  width: 100%;
  display: block;
}

.add__black {
  color: #000 !important;
}

.hero {
  position: relative;
}
.hero__text {
  position: absolute;
  top: 5rem;
  width: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .hero__text {
    width: 80%;
    text-align: left;
    top: 10rem;
  }
}
.hero__text img {
  width: 100%;
  display: block;
}
.hero__text h1 {
  font-weight: 400;
  font-size: 2.2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 10rem auto;
  gap: 2rem;
}
@media (max-width: 50em) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.specs-grid__text {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translate(-50%, 0);
  width: 80%;
  font-size: 1.4rem;
  font-weight: 600;
}
.specs-grid__cell {
  position: relative;
}
.specs-grid__cell img {
  height: 100%;
  object-fit: cover;
}
.specs-grid__cell:nth-child(1) {
  grid-column: 1/-1;
}
.specs-grid__cell:nth-child(1) p {
  top: 50%;
  transform: translate(0, -50%);
  left: 3rem;
  width: 30%;
}
@media (max-width: 50em) {
  .specs-grid__cell:nth-child(1) p {
    left: 50%;
    top: 2rem;
    transform: translate(-50%, 0);
    width: 80%;
  }
}
.specs-grid__cell:nth-child(2) {
  grid-row: 2/4;
}
@media (max-width: 50em) {
  .specs-grid__cell:nth-child(2) {
    grid-row: 3/4;
    grid-column: 1/-1;
  }
}

.headers {
  width: 80%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.headers__title {
  background: linear-gradient(90deg, #000, #868686) 0 0/100% no-repeat;
  color: transparent;
  background-clip: text;
  width: fit-content;
  font-size: 3.2rem;
  font-weight: 600;
}
.headers__second {
  background: linear-gradient(90deg, #000, #868686) 0 0/100% no-repeat;
  color: transparent;
  background-clip: text;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 600;
}
.headers__bg {
  background: linear-gradient(90deg, #000, #868686) 0 0/100% no-repeat;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2000px;
  font-size: 2.4rem;
  width: fit-content;
  font-weight: 600;
  width: fit-content;
}
.headers__bg:last-child {
  margin-top: 5rem;
}
.headers__bg:first-child {
  margin-bottom: 3rem;
}

.battery {
  position: relative;
}
.battery__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
.battery__text-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
@media (max-width: 50em) {
  .battery__text-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lowtemp {
  padding: 5rem;
  background-color: #000;
  color: #fff;
}
.lowtemp__text {
  text-align: center;
}
.lowtemp__text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 5rem 0;
}
@media (max-width: 50em) {
  .lowtemp__text-grid {
    grid-template-columns: 1fr;
  }
}

.hyper {
  position: relative;
}
.hyper__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  right: 3rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 50em) {
  .hyper__text {
    right: 50%;
    transform: translate(50%, 0);
    top: 5rem;
    width: 80%;
  }
}

.power {
  position: relative;
  background-color: #000;
  padding-top: 10rem;
}
@media (max-width: 50em) {
  .power {
    padding: 0;
  }
}
.power__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 2rem;
  z-index: 999;
}
@media (max-width: 50em) {
  .power__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
  }
}
.power__text .inside {
  position: relative;
}
.power__text .inside div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (max-width: 50em) {
  .power__text .inside div {
    top: auto;
    left: auto;
    transform: translate(0, 0);
    width: 100%;
  }
}
.power__text img {
  width: 35rem;
}
@media (max-width: 50em) {
  .power__text img {
    display: none;
  }
}

.titan__text {
  width: 80%;
  margin: 10rem auto 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.titan__img {
  width: 80%;
  margin: 0 auto 5rem;
  display: block;
}

.last {
  margin: 0 auto 5rem;
}

.camera {
  position: relative;
}
.camera__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
  display: flex;
  gap: 5rem;
}
.camera__text div {
  display: flex;
  flex-direction: column;
}
@media (max-width: 50em) {
  .camera__text div {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.ultra {
  background-color: #000;
  color: #fff;
}
.ultra__text {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 5rem;
}
.ultra img,
.ultra video {
  width: 80%;
  margin: 0 auto;
}
.ultra img:last-child,
.ultra video:last-child {
  padding-bottom: 5rem;
}
.ultra img:first-child,
.ultra video:first-child {
  padding-top: 5rem;
}

.onelense {
  width: 80%;
  margin: 10rem auto;
}
.onelense__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
}
.onelense__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 50em) {
  .onelense__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.onelense__grid-cell {
  text-align: center;
}

.k4 {
  position: relative;
}
.k4__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40%;
  left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .k4__text {
    left: 50%;
    top: 1rem;
    width: 80%;
    transform: translate(-50%, 0);
  }
}
.k4 video {
  width: 100%;
}
.k4__vid-big {
  display: block;
}
@media (max-width: 50em) {
  .k4__vid-big {
    display: none;
  }
}
.k4__vid-small {
  display: none;
}
@media (max-width: 50em) {
  .k4__vid-small {
    display: block;
  }
}

.texture {
  width: 80%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.texture__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.texture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 50em) {
  .texture-grid {
    grid-template-columns: 1fr;
  }
}

.dynamic {
  position: relative;
  width: 80%;
  margin: 5rem auto;
}
@media (max-width: 50em) {
  .dynamic {
    width: 100%;
    margin: 0;
  }
}
.dynamic video {
  width: 100%;
}
.dynamic__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -40%);
  left: 5rem;
  color: #fff;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .dynamic__text {
    top: 5rem;
    transform: translate(-50%, 0);
    left: 50%;
    width: 80%;
  }
}
.dynamic-big {
  display: block;
}
@media (max-width: 50em) {
  .dynamic-big {
    display: none;
  }
}
.dynamic-small {
  display: none;
}
@media (max-width: 50em) {
  .dynamic-small {
    display: block;
  }
}

.film {
  background-color: #000;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 5rem;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .film {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.film__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.ai {
  width: 80%;
  margin: 10rem auto;
  background-color: #000;
  color: #fff;
}
@media (max-width: 50em) {
  .ai {
    margin: 0;
    width: 100%;
  }
}
.ai__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
.ai img {
  width: 100%;
  display: block;
}

.immersive__text {
  width: 80%;
  margin: 5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.immersive__text h2 {
  background: linear-gradient(235deg, #51d7d9 22%, #012d45 42%) 0 0/100% no-repeat;
  color: transparent;
  background-clip: text;
}
.immersive__float {
  position: relative;
}
.immersive__float-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
  position: absolute;
  top: 75rem;
  width: 80%;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
}
@media (max-width: 62.5em) {
  .immersive__float-grid {
    bottom: 20rem;
    grid-template-columns: repeat(2, 1fr);
    top: auto;
  }
}

.flagship {
  position: relative;
}
.flagship__text {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 40%;
  color: #fff;
  left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .flagship__text {
    top: 3rem;
    transform: translate(-50%, 0);
    width: 80%;
    left: 50%;
  }
}

.symm {
  position: relative;
}
.symm__text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 10rem;
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top {
  background-color: #eef2f3;
}
.top .addpadd {
  padding: 25rem 10rem 5rem;
}
@media (max-width: 50em) {
  .top .addpadd {
    padding: 15rem 1rem 5rem;
  }
}
.top__text {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0;
}
.top__float {
  position: relative;
}
.top__float-text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 5rem;
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.top__float-text .asdasdsa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hyperai__img {
  width: 60%;
  margin: 10rem auto 5rem;
  display: block;
}
.hyperai__text {
  width: 80%;
  margin: 0 auto 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hyperai__cell {
  position: relative;
  width: 70%;
  margin: 0 auto 5rem;
}
.hyperai__cell-text {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 5rem;
  width: 30%;
}
@media (max-width: 50em) {
  .hyperai__cell-text {
    top: 5rem;
    transform: translate(-50%, 0);
    left: 50%;
    width: 80%;
  }
}
.hyperai__cell-big {
  display: block;
  width: 100%;
}
@media (max-width: 50em) {
  .hyperai__cell-big {
    display: none;
  }
}
.hyperai__cell-small {
  display: none;
  width: 100%;
}
@media (max-width: 50em) {
  .hyperai__cell-small {
    display: block;
  }
}

.gemini {
  position: relative;
}
.gemini__text1 {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
  text-align: center;
  padding: 5rem 0;
}
.gemini__text1 img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 50em) {
  .gemini__text1 img {
    width: 100%;
  }
}
.gemini__text2 {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 10rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 50em) {
  .gemini__text2 {
    top: 20rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 70%;
  }
}

/*# sourceMappingURL=Index.css.map */
