/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Global */
:root {
  --color-white-100: hsl(220, 10%, 100%);
  --color-white-200: hsl(220, 10%, 95%);
  --color-white-300: hsl(220, 10%, 85%);
  --color-white-400: hsl(220, 10%, 65%);
  --color-white-500: hsl(220, 10%, 50%);

  --color-black-border: hsl(0, 0%, 26%);
  --color-black-100: hsl(240, 5%, 15%);
  --color-black-200: hsl(240, 5%, 12%);
  --color-black-300: hsl(240, 5%, 09%);
  --color-black-400: hsl(240, 5%, 06%);
  --color-black-500: hsl(240, 5%, 03%);

  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* --brand-color: hsl(36, 100%, 50%); */
  --brand-color: #38d6ff;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* list-style: none;
  list-style-type: none; */
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #141416;
  color: #fff;
  cursor: default;
}

/*Custom cursor */
.cursor {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  z-index: 1000;
}
/* a:hover,
button:hover {
  cursor: none;
}
a:hover ~ .cursor,
button:hover ~ .cursor {
  width: 50px;
  height: 50px;
  border-color: #ff9900;
  background-color: rgba(255, 255, 255, 0.8);
} */
section {
  position: relative;
  z-index: 10;
}

/* Navbar */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.header.is-sticky {
  top: 0;
  transform: translateY(-100%);
}
.header .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  max-width: 90dvw;
  height: 4.25rem;
  border-radius: 3rem;
  box-shadow: var(--shadow-medium);
  background-color: rgb(255 255 255 / 70%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-black-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  max-height: 50px;
}
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
  padding-block: 6rem 2rem;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease;
}
.menu.is-active {
  right: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.5rem;
  list-style: none;
}
.menu-link {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-black-500);
  transition: all 0.3s ease;
}
.menu-link:hover {
  color: #158dac;
}
.menu-link.active-nav {
  position: relative;
  transition: all 0.3s ease;
}
.menu-link.active-nav:hover {
  color: var(--color-black-500);
}
.menu-link.active-nav::after {
  content: "";
  position: absolute;
  background-color: var(--brand-color) !important;
  margin: 4px 10px;
  width: calc(100% + 10px);
  left: -15px;
  top: 7px;
  height: 75%;
  z-index: -1;
}

.menu-block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}
.menu-block button.register {
  border: none;
  background-color: var(--color-black-500);
  color: var(--brand-color);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    padding: unset;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    font-size: 1rem;
    text-transform: capitalize;
  }
}
.burger {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1rem;
  z-index: 99;
  visibility: visible;
  background-color: transparent;
  border: none;
  outline: none;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  line-height: 1.25;
  background-color: var(--color-black-500);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.has-submenu {
  position: relative;
}
.has-submenu:hover > .submenu,
.has-submenu.open > .submenu {
  visibility: visible;
  opacity: 1;
}
.submenu {
  visibility: hidden;
  opacity: 0;
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 192%;
  left: -200px;
  overflow: auto;
  list-style-type: none;
  gap: 30px;
  width: auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  background-color: rgb(255 255 255 / 10%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid #666666;
}
.inBtnSubMenu {
  top: 133% !important;
  flex-direction: row;
  gap: 10px !important;
  right: 0 !important;
  left: auto !important;
}
.submenu-toggle i {
  transition: transform 0.3s ease;
}
.loginBtn {
  height: 41px;
  font-size: 0.91rem;
  font-weight: 600;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 24px;
  padding: 2px 20px;
  background: #38d6ff;
  color: #000000;
  box-shadow: 5px 5px 12px #7c7c7c, -2px -3px 12px #ffffff;
}
.loginBtn span svg {
  height: 24px;
  width: 24px;
}

.submenu-toggle i.rotate {
  transform: rotate(180deg);
}
.ztBs {
  background-color: var(--brand-color);
  width: 230px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #000000;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  transition: all 0.4s;
}
.ztZh {
  background-color: #8ddd8d;
  width: 230px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #000000;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  transition: all 0.4s;
}
.ztBs span,
.ztZh span {
  display: block;
}
.ztZh:hover > .sbIcon i,
.ztBs:hover > .sbIcon i {
  color: #ffffff;
}
.productOverlayImg {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proImg-container {
  height: 500px;
  width: 500px;
}
.proImg-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.proColorOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #00000096;
  z-index: 1;
}
.txtZindex10 {
  z-index: 10;
}
.txtZindex10 p span {
  display: block;
  font-style: italic;
  color: var(--brand-color);
  font-weight: 600;
}
/* Hero */
.hero {
  height: 160vh;
  background-image: url("../images/heroBanner.avif");
  background-size: 100%; /* start at normal size */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: background-size 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.hero-content {
  z-index: 2;
  position: relative;
  display: grid;
  height: auto;
  width: 100%;
  pointer-events: auto;
  min-height: 100vh;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2em;
}
.hero p {
  margin: 1rem 0;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 200;
}
.hero .titleTxt {
  max-width: 850px;
  text-align: left;
  position: relative;
  margin: 158px 0px 30px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
.hero .subTitletxt {
  position: relative;
  margin: 0px 0px 50px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  max-width: 750px;
}
.hero .actionBtn {
  position: relative;
  margin: 26px 0px 10px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
/* Button */
.btn {
  background: var(--brand-color);
  color: #000000;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 0px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #ff5656;
}
.f35em h2 {
  font-size: 3.5em !important;
}
.colabProductOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Features */
.features {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: 270px;
  z-index: 1;
}
.gridContainer {
  position: static;
  display: flex;
  align-items: stretch;
  height: auto;
  width: 90dvw;
  min-height: auto;
  margin: 0 auto;
  z-index: 2;
}
.grid-item {
  border: 1px solid var(--color-black-border); /* Inner border for each box */
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.grid-40 {
  flex: 0 0 40%; /* 40% width */
}

.grid-60 {
  flex: 0 0 60%; /* 60% width */
}
.feature-left {
  width: 40%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.featureOverlay {
  height: 100%;
  width: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.featureOverlay img {
  width: 846px;
  height: 708px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.featuresContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
.fecTitle {
  position: relative;
  margin: 250px 0px 20px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  max-width: 450px;
  height: auto;
  text-align: left;
  font-weight: 600;
}
.fecTitle h2 {
  font-weight: 600;
}
.feInfo {
  position: relative;
  margin: 0px 0px 10px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  max-width: 450px;
  height: auto;
  text-align: left;
  font-weight: 300;
}
.feInfo p {
  font-weight: 300;
  color: var(--color-white-300);
}
.feature-right {
  width: 60%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
}
.featuresElementgrp {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -100px;
  margin-bottom: -114px;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
.cardOne {
  position: relative;
  margin: 0px 0px -160px calc((100% - 586px) * 0.5);
  left: 20px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
.cardTow {
  position: relative;
  margin: 0px 0px -158px calc((100% - 586px) * 0.5);
  left: 20px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
.cardThree {
  position: relative;
  margin: 0px 0px -172px calc((100% - 586px) * 0.5);
  left: 275px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
.cardFour {
  position: relative;
  margin: 0px 0px 0px calc((100% - 586px) * 0.5);
  left: 275px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
.feaElementCard {
  width: 240px;
  height: auto;
}
.cardOverlay {
  pointer-events: none;
  border-radius: 10px;
  bottom: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.6);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: hsl(220deg 5.26% 11.18%);
  background-color: var(--color-black-100);
}
.cardCont {
  position: relative;
  pointer-events: auto;
  width: 240px;
  height: auto;
}
.cardContArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(4, min-content) 1fr;
  grid-template-columns: 100%;
}
.cardIconAre {
  position: relative;
  margin: 30px 0px 10px 0;
  left: 29px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 46px;
  height: 34px;
}
.cardIconAre i {
  font-size: 2.2rem;
  color: var(--brand-color);
}
.cardHeadtxt {
  position: relative;
  margin: 0px 0px 11px 0;
  left: 28px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
  width: 195px;
  height: auto;
}
.cardHeadtxt h3 {
  font-size: 18px;
  text-align: left;
  color: var(--color-white-100);
}
.cardsubbHeadTxt {
  position: relative;
  margin: 0px 0px 22px 0;
  left: 28px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
  width: 183px;
  height: auto;
}
.cardsubbHeadTxt p {
  font-size: 14px;
  text-align: left;
  color: var(--color-white-400);
}
.cardsperetor {
  position: relative;
  margin: 0px 0px 28px 0;
  left: 28px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
  width: 183px;
  height: 5px;
}
.cardspacer {
  visibility: hidden;
  height: 130px;
  width: 0;
  grid-area: 1 / 1 / 3 / 2;
}
.seperetorLine {
  background-color: var(--color-black-100);
  border-radius: 7px;
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.1), inset 0 1px 0 rgba(0, 0, 0, 0.25);
  height: 8px;
  min-height: 2px;
}
.card {
  background: #111;
  padding: 1.5rem;
  border-radius: 6px;
}

.bsProductBtn {
  position: relative;
  margin: 42px 0px 100px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 3 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: 60px;
  text-align: left;
}

/* About */
.about {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: 180px;
  z-index: 1;
}
.aboutImage {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.aboutContain {
  width: 50%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
  z-index: 2;
}
.abContain-item {
  border: 1px solid var(--color-black-border);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}
.grid-50 {
  flex: 0 0 50%;
}
.aboutOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.aboutOverlay img {
  width: 1000px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.aboutLftContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

.aboutTitle {
  position: relative;
  margin: 280px 0px 20px calc((100% - 570px) * 0.5);
  left: 36px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  max-width: 500px;
  height: auto;
  text-align: left;
  font-weight: 600;
}
.aboutTitle h2 {
  line-height: 1.6em;
  text-align: left;
  font-size: 30px;
  font-weight: 600;
}

.aboutRighttxtArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 798px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
.abText {
  position: relative;
  margin: 110px 0px 25px calc((100% - 520px) * 0.5);
  left: 70px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 400px;
  height: auto;
}
.abText p {
  font-weight: 300;
  color: var(--color-white-300);
  text-align: left;
}
.aboutBtn {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 66px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 142px;
  height: 60px;
}
/* product */
.productOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.productOverlay img {
  width: 1000px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.ProductLftContain {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  min-height: 650px;
}
.productimage {
  height: 700px;
  width: auto;
}
.productimage img {
  height: 100%;
  width: 100%;
}
.productRighttxtArea {
  /* position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 798px;
  grid-template-rows: min-content 2fr min-content;
  grid-template-columns: 100%; */
  position: static;
  display: grid;
  grid-template-rows: auto auto auto; /* 3 rows for title, text, button */
  grid-template-columns: 1fr; /* single column */
  width: 100%;
  max-width: 520px;
  margin: 0 auto; /* center whole block */
  padding: 60px 0; /* top & bottom space */
  row-gap: 20px;
}
.productTitle {
  position: relative;
  margin: 110px 0px 25px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: auto;
}
.productTitle h2 {
  text-align: left;
}
.productText {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: auto;
}
.productText p {
  text-align: left;
}
.productBtn {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: 60px;
  text-align: left;
}
/* Numbers */
.numbers {
  height: 120vh;
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.numberOverlay {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.numberOverlay img {
  width: 200%;
  scale: 1;
  position: relative;
  left: 445px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}

.numbersContain {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 100px;
  margin-top: -300px;
  z-index: 2;
}
.numCol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.numCol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.numberTitle h2 {
  font-weight: 400;
  font-size: 2.5rem;
}
.numCol-item h3 {
  font-size: 3.2rem;
  color: var(--brand-color);
  font-weight: 600;
}
/* CTA */
.cta {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: -120px;
  margin-bottom: 200px;
  z-index: 1;
}
.cta-left {
  width: 60%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cta-right {
  width: 40%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
}
.ctaOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.ctaOverlay img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.ctaVideo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  min-height: 650px;
}

.video-container {
  height: auto;
  width: 200px;
}
.video-container img {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.video-container video {
  height: 100%;
  width: 100%;
}
.ctaRighttxtArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 650px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
  z-index: 2;
}

/* Feature */
.pntCol_1 {
  background-color: #e788da;
}
.pntCol_2 {
  background-color: #8a88e7;
}
.pntCol_3 {
  background-color: #88d9e7;
}
.pntCol_4 {
  background-color: #88e7a5;
}
.pntCol_5 {
  background-color: #e7e188;
}
.pntCol_6 {
  background-color: #e7ab88;
}
.pntCol_7 {
  background-color: #f15e5e;
}
.pntCol_8 {
  background-color: #4f52e0;
}
.pntCol_9 {
  background-color: #c470fc;
}
.pntCol_10 {
  background-color: var(--brand-color);
}
.fechGridContainer {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: auto;
  width: 90dvw;
  min-height: auto;
  margin: 0 auto;
}
.indColumStrip {
  --bg-overlay-color: rgb(63, 67, 73);
  --bg-gradient: none;
  --padding: 1px;
  --margin: 1px;
  min-width: 980px;
  width: 100%;
  --direction: ltr;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  display: flex;
  /* margin: 0px 0px -1px calc((100% - 980px) * 0.5); */
  margin: 0px;
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
.ferColumns {
  -moz-column-gap: var(--margin);
  column-gap: var(--margin);
  direction: var(--direction);
  display: flex;
  margin: 0 auto;
  position: relative;
  width: calc(100% - var(--padding) * 2);
  background-color: #333333;
}
.ferLtrColumns {
  direction: ltr;
  flex: var(--column-flex) 1 0%;
  left: 0;
  margin-bottom: var(--padding);
  margin-top: var(--padding);
  min-width: 0;
  position: relative;
  top: 0;
  background-color: #141414;
}
.ferLftColumns {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 196px;
  --column-flex: 196;
  margin-left: var(--padding);
}
.ferRgtColumns {
  --bg-overlay-color: rgb(var(--color_11));
  --bg-gradient: none;
  width: 100%;
  --column-width: 781px;
  --column-flex: 781;
  margin-right: var(--padding);
}
.featuresSec {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}
.ferInContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
.ferIcon {
  position: relative;
  margin: 66px 0px 70px calc((100% - 196px) * 0.5);
  left: 50px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ferIcon img {
  height: 64px;
}
.ferContentTxt {
  position: relative;
  margin: 53px 0px 10px calc((100% - 781px) * 0);
  left: 70px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.ferContentTxt p {
  color: var(--color-white-500);
}
/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 10%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand h2 {
  color: var(--brand-color, #ff9900);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-links h3,
.footer-newsletter h3,
.footer-social h3,
.footer-location h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--brand-color, #ff9900);
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer-newsletter button {
  background: var(--brand-color, #ff9900);
  border: none;
  padding: 0.6rem 1rem;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #ff5656;
}

.footer-contact-social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-location p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location p i {
  color: var(--brand-color, #ff9900);
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: var(--brand-color, #ff9900);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* contact */
.contact-form-section {
  padding: 60px 60px;
  background: #141416;
  text-align: center;
}

.form-container {
  margin: auto;
  padding: 30px;
  border-radius: 20px;
}

.form-container h2 {
  margin-bottom: 10px;
  margin-top: 0;
}

.form-container p {
  margin-bottom: 10px;
  color: var(--color-white-400);
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}
.form-group label {
  font-size: 14px;
}
.grid-100 {
  width: 100%;
}
.contactUs {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: 180px;
  z-index: 1;
}
.mt-250 {
  margin-top: -250px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
}
.videoPlay {
  border: 1px solid var(--color-black-border);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  width: 50%;
  background-color: var(--color-black-500);
  position: relative;
  height: auto;
  display: flex;
  z-index: 2;
}
.contact {
  margin-bottom: 200px;
}
.dfrmDflex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 10px;
  column-gap: 20px;
}
.f13 {
  width: calc((100% - 40px) / 3);
  margin-bottom: 2px;
}

/* --------------
    BREADCRAMB
---------------- */
.breadCrumb {
  height: calc(50vh + 200px);
  background-image: url(../images/contactWaveBg.avif);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: background-size 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.breadCrumb-content {
  z-index: 2;
  position: relative;
  display: grid;
  height: auto;
  width: 100%;
  pointer-events: auto;
  min-height: 50vh;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

.breadCrumb .breadCrumb_Title {
  width: calc(100% - 180px);
  text-align: left;
  position: relative;
  margin: 250px 0px 10px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

.breadCrumb .breadCrumb_nav {
  position: relative;
  margin: 0px 0px 50px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: calc(100% - 180px);
}
.breadCrumb_nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
}
.colorOverlay {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgb(2 3 9 / 70%);
}
.breadCrumb_nav ul li a {
  color: #ffffff;
}
.breadCrumb_nav ul li a i {
  font-size: 24px;
  line-height: 24px;
  margin-right: 8px;
}
.breadCrumb_nav ul li:last-child {
  color: #b2b2b2;
}
.breadIoc {
  margin: 0 10px;
}

.aboutPg {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
.mt-300 {
  margin-top: -300px;
}
.mb-1 {
  margin-bottom: -1px;
}
.mb200 {
  margin-bottom: 200px;
}
.mt50 {
  margin-top: 50px;
}
.aboutPgLftContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 600px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
.aboutPgRtlContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 600px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
  z-index: 2;
}
.aboutPgDtltext {
  position: relative;
  margin: 110px 0px 25px calc((100% - 640px) * 0.5);
  left: 70px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: auto;
}
.aboutPgBtn {
  position: relative;
  margin: 40px 0px 0px calc((100% - 640px) * 0.5);
  left: 66px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 142px;
  height: 60px;
}
.aboutPgDtltext p {
  margin-bottom: 10px;
}
.aboutPgTitle {
  position: relative;
  margin: 250px 0px 20px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 450px;
  height: auto;
  text-align: left;
  font-weight: 600;
}
.aboutPgCenterTitle h2,
.aboutPgTitle h2 {
  font-size: 2.2em;
}
.aboutPgCenterTitle {
  position: relative;
  margin: 250px 0px 20px calc((100% - 450px) * 0.5);
  left: 0;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 450px;
  height: auto;
  text-align: center;
  font-weight: 600;
}

.contact-section {
  position: relative;
  z-index: 10;
  color: #ffffff;
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact-container {
  max-width: 90vw;
  margin: auto;
  padding: 50px 230px;
  text-align: center;
  background-color: #141416;
}
.contactPage {
  margin-bottom: 100px;
  margin-top: 100px;
}

/* Header */
.contact-header h2 {
  font-size: 2.4rem;
  line-height: 3.3rem;
  margin-bottom: 100px;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: linear-gradient(180deg, #1c1c1f, #141416);
  padding: 32px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #c7c7cc;
  margin-bottom: 14px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}
.sbtxtSubMenu {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.8;
}
/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal */
.modal {
  background: #1f1f22;
  width: 92%;
  max-width: 60dvw;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: auto;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close */
.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
  z-index: 10;
}

.close-btn:hover {
  color: #fff;
}

/* Slider */
.slider {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.slide {
  width: 100%;
  max-height: 80dvh;
  flex-shrink: 0;
  padding: 34px 34px 50px 34px;
  box-sizing: border-box;
}

/* Poster */
.poster img {
  width: 100%;
  border-radius: 10px;
}

/* Video */
video {
  width: 100%;
  border-radius: 10px;
  background: #000;
}

/* News */
.news h3 {
  margin-top: 0;
  color: #00e0ff;
}

.news ul {
  padding-left: 18px;
}

.news li {
  margin-bottom: 10px;
  color: #ccc;
}

/* Controls */
.controls {
  display: flex;
  justify-content: space-between;
  padding: 12px 34px;
  position: absolute;
  bottom: 0px;
  right: 0;
  font-size: 22px;
  cursor: pointer;
  color: #aaa;
  z-index: 10;
  width: 100%;
}

.controls button {
  background: #00e0ff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.controls button:hover {
  background: #00bcd4;
}

/* model end */
.loginBtnSvg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mb100 {
  margin-bottom: 100px;
}
.tncGridContainer {
  position: static;
  display: flex;
  align-items: stretch;
  height: auto;
  width: 60dvw;
  min-height: auto;
  margin: 0 auto;
  z-index: 2;
}
.tnc-container {
  margin: auto;
  padding: 30px;
  border-radius: 20px;
}
.tnc-container h2,
.tnc-container h3,
.tnc-container h4,
.tnc-container h5,
.tnc-container h6 {
  color: var(--color-white-100);
  margin-top: 10px;
}
.tnc-container p {
  font-size: 14px;
}
.tnc-container p,
.tnc-container ul {
  color: var(--color-white-400);
  margin-bottom: 8px;
}
.tnc-container a {
  overflow-wrap: break-word;
  word-break: break-word;
}
ul.tcul {
  padding-inline-start: 40px;
}
.tncSection {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
/*--------------------------
  MOBILE & TABLET RESPONSIVE
---------------------------*/

/* Small devices (mobile) */
@media only screen and (max-width: 767px) {
  section.contactUs.mt-250.contactFromPage {
    margin-top: -250px !important;
  }
  /* Navbar */
  .about.mt-250 {
    margin-top: -250px !important;
  }
  .f13 {
    width: 100%;
    margin-bottom: 2px;
  }
  .header .container {
    padding-inline: 1rem;
  }
  .brand {
    font-size: 1.2rem;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    padding-block: 6rem 2rem;
    background-color: #000000f2;
    box-shadow: var(--shadow-medium);
    transition: all 0.35s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
  }
  .burger.is-active .burger-line {
    background-color: var(--color-white-100);
  }
  .menu-block button.register {
    padding: 0.8rem 1rem;
  }
  .contactUs {
    height: auto;
    width: 100%;
    pointer-events: auto;
    position: relative;
    margin-top: 80px;
    z-index: 1;
  }
  .menu-link {
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-white-300);
    transition: all 0.3s ease;
  }
  .has-submenu {
    text-align: center;
  }
  .rqstDmTxt {
    display: none;
  }
  .submenu {
    position: relative;
    top: auto;
    left: auto;
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
    list-style-type: none;
    gap: 8px;
    width: auto;
    padding: 5px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    background-color: rgb(255 255 255 / 10%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid #282828;
  }
  .inBtnSubMenu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
  }
  .loginBtn .txt {
    display: none;
  }
  .loginBtn {
    height: 41px;
    width: 41px;
    padding: 0;
  }
  .loginBtn .btnSpan {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ztBs {
    background-color: var(--brand-color);
    width: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
    gap: 12px;
    padding: 6px 8px;
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    transition: all 0.4s;
  }
  .ztZh {
    background-color: #8ddd8d;
    width: auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-direction: row;
    gap: 12px;
    padding: 6px 8px;
    border-radius: 12px;
    color: #000000;
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    transition: all 0.4s;
  }
  .ztBs span,
  .ztZh span {
    display: contents;
  }
  .modal {
    background: #1f1f22;
    width: 98%;
    max-width: 100dvw;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: auto;
    animation: slideUp 0.4s ease;
  }
  .slide {
    width: 100%;
    max-height: 100dvh;
    flex-shrink: 0;
    padding: 10px 10px 50px 10px;
    box-sizing: border-box;
  }
  .controls {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    position: absolute;
    bottom: 0px;
    right: 0;
    font-size: 22px;
    cursor: pointer;
    color: #aaa;
    z-index: 10;
    width: 100%;
  }
  .aboutPgCenterTitle h2,
  .aboutPgTitle h2 {
    font-size: 1.6em;
  }
  .revCol {
    flex-direction: column-reverse !important;
  }
  .contact-section {
    position: relative;
    z-index: 10;
    color: #ffffff;
    margin-top: 50px;
  }
  .contact-container {
    max-width: 95vw;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
    background-color: #141416;
  }
  .tncGridContainer {
    position: relative;
    display: flex;
    align-items: stretch;
    height: auto;
    width: 100%;
    min-height: auto;
    margin: 0 auto;
    z-index: 2;
  }
  .tnc-container {
    margin: auto;
    padding: 0px;
    border-radius: 20px;
    width: 100%;
  }
  /* Hero Section */
  .hero {
    background-size: cover !important;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .titleTxt,
  .hero .subTitletxt,
  .hero .actionBtn {
    margin-left: 20px;
    left: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 30px;
  }

  .form-container {
    margin: auto;
    padding: 40px 10px;
    border-radius: 20px;
  }

  .features {
    margin-top: 70px;
  }
  /* Features */
  .featuresContain,
  .featuresElementgrp {
    grid-template-columns: 1fr !important;
    margin-left: 0 !important;
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    grid-template-columns: 100%;
    row-gap: 16px;
  }
  .feature-left,
  .feature-right,
  .cardOne,
  .cardTow,
  .cardThree,
  .cardFour {
    width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
  }
  .feaElementCard {
    width: 100% !important;
    margin: 0 auto;
  }
  .grid-item {
    border: 0px solid var(--color-black-border);
  }
  .gridContainer {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    width: 90dvw;
    min-height: auto;
    margin: 0 auto;
    z-index: 2;
  }
  .fecTitle {
    position: relative;
    margin: 250px 0px 20px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    max-width: 450px;
    height: auto;
    text-align: left;
    font-weight: 600;
  }
  .feInfo {
    position: relative;
    margin: 0px 0px 10px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    max-width: 450px;
    height: auto;
    text-align: left;
    font-weight: 300;
  }
  .contact {
    margin-bottom: 80px;
  }
  .cta {
    margin-bottom: 80px;
  }
  /* About Section */
  .videoPlay,
  .aboutImage,
  .aboutContain,
  .aboutLftContain {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem;
    border: none;
    min-height: 400px;
  }
  .about {
    height: auto;
    width: 100%;
    pointer-events: auto;
    position: relative;
    margin-top: 80px;
    z-index: 1;
  }
  .aboutTitle,
  .abText,
  .aboutBtn {
    margin: 20px auto !important;
    left: 0 !important;
    width: 90% !important;
  }
  .aboutTitle h2 {
    font-size: 1.8rem;
    text-align: left;
  }
  .abText p {
    font-size: 0.95rem;
    text-align: left;
  }
  .contact .gridContainer {
    flex-direction: column-reverse !important;
  }

  /* Product Section */
  .ProductLftContain,
  .productRighttxtArea {
    width: 100% !important;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .productTitle {
    position: relative;
    margin: 110px 0px 25px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    width: auto;
    height: auto;
  }
  .productText {
    position: relative;
    margin: 40px 0px 0px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    width: auto;
    height: auto;
  }
  .productTitle h2 {
    font-size: 1.6rem;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .productText p {
    font-size: 0.95rem;
    text-align: left;
  }
  .productBtn {
    width: 100% !important;
    text-align: left;
    margin: 40px 0px 0px calc((100% - 320px) * 0.5);
  }
  .productimage {
    width: 100%;
    height: auto;
  }

  /* Numbers Section */
  .numbersContain {
    gap: 50px !important;
  }
  .numCol {
    flex-direction: row !important;
    gap: 30px !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .numberTitle {
    padding: 20px;
    text-align: center;
  }
  .numberTitle h2 {
    font-size: 2rem;
  }
  .numCol-item h3 {
    font-size: 2rem;
  }

  /* CTA Section */
  .cta-left,
  .cta-right {
    width: 100% !important;
    margin: 0 auto;
    padding: 1rem;
  }
  .ctaRighttxtArea {
    min-height: auto !important;
    padding: 1rem;
  }
  .breadCrumb {
    background-position: center;
  }

  .breadCrumb .breadCrumb_Title {
    width: calc(100% - 39px);
    text-align: left;
    position: relative;
    margin: 250px 0px 10px calc((100% - 964px) * 0);
    left: 24px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
  }
  .breadCrumb .breadCrumb_Title h1 {
    font-size: 20px;
  }
  .breadCrumb .breadCrumb_nav {
    position: relative;
    margin: 0px 0px 50px calc((100% - 980px) * 0);
    left: 24px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    width: calc(100% - 39px);
  }

  .breadCrumb_nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
  }
  .aboutPgDtltext {
    position: relative;
    margin: 25px 0px 25px calc((100% - 275px) * 0.5);
    left: 4px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    width: auto;
    height: auto;
  }
  .aboutPgBtn {
    position: relative;
    margin: 13px 0px 0px calc((100% - 399px) * 0.5);
    left: 66px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    width: 142px;
    height: 60px;
  }

  .mt-300 {
    margin-top: -200px !important;
  }

  .indColumStrip {
    min-width: auto;
    margin-bottom: 30px;
  }
  .ferColumns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .ferContentTxt {
    position: relative;
    margin: 6px 0px 10px calc((100% - 690px) * 0);
    left: 6px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    width: 100%;
    max-width: max-content;
    height: auto;
  }

  .ferLftColumns {
    --bg-overlay-color: rgb(var(--color_11));
    --bg-gradient: none;
    width: 100%;
    --column-width: 196px;
    --column-flex: 196;
    margin-left: 0;
    margin-right: 0;
  }
  .ferLtrColumns {
    direction: ltr;
    flex: var(--column-flex) 196 1 0%;
    left: 0;
    margin-bottom: 0;
    margin-top: 0;
    min-width: 0;
    position: relative;
    top: 0;
    background-color: #141414;
  }
  .ferIcon {
    position: relative;
    margin: 10px 0px;
    left: 10px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    width: 78px;
    height: 78px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

/* Medium devices (tablet) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
  .hero .titleTxt,
  .hero .subTitletxt,
  .hero .actionBtn {
    margin-left: 40px;
    left: 0;
  }

  .featuresContain,
  .featuresElementgrp {
    grid-template-columns: 1fr !important;
  }
  .feature-left,
  .feature-right {
    width: 100% !important;
    margin: 0 auto;
  }
  .feaElementCard {
    width: 80% !important;
    margin: 0 auto;
  }

  .aboutImage,
  .aboutContain {
    width: 100% !important;
    padding: 1rem;
  }
  .aboutTitle h2 {
    font-size: 2rem;
  }
  .abText p {
    font-size: 1rem;
  }

  .ProductLftContain,
  .productRighttxtArea {
    width: 100% !important;
  }
  .productTitle h2 {
    font-size: 2rem;
  }
  .productText p {
    font-size: 1rem;
  }
  .productBtn {
    width: 100% !important;
  }

  .numbersContain {
    gap: 70px !important;
  }
  .numCol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px !important;
  }

  .cta-left,
  .cta-right {
    width: 100% !important;
    margin: 0 auto;
  }
}
