@font-face {
  font-family: "CoolveticaHVC";
  src: url("../fonts/Coolvetica_Hv_Comp.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Aonic_Regular";
  src: url("/fonts/Aeonik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Aonic_Bold";
  src: url("/fonts/fonnts.com-Aeonik-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --third-color: #ff9933;
  --font-family-primary: "CoolveticaHVC", sans-serif;
  --font-family-secondary: "Aonic_Regular", sans-serif;


  --primary-10: rgba(0, 0, 0, 0.1);
  --primary-20: rgba(0, 0, 0, 0.2);
  --primary-50: rgba(0, 0, 0, 0.5);
  --primary-60: rgba(0, 0, 0, 0.6);
  --primary-70: rgba(0, 0, 0, 0.7);
}

/* Prevent image selection */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  -webkit-user-drag: none;
  pointer-events: auto;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

*,
body {
  margin: 0;
  padding: 0;
}

body {
  /* font-family: 'Aonic_Regular', sans-serif; */
  background-color: var(--secondary-color);
  color: var(--primary-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.alignItem-fxEnd {
  align-items: flex-end;
}

.mainContainer {
  display: flex;
  flex-direction: column;
  /* justify-content: center;
    align-items: center; */
  /* padding: 10vh; */
}

.section-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10vh;
  padding: 10vh 4vw;
  padding-top: 0;
}

.logoContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.logo {
  /* width: 90vw;
  height: auto; */
  font-family: var(--font-family-primary);
  width: 90vw;
  color: var(--primary-color);
  text-decoration: none;
  overflow: hidden;
  text-transform: uppercase;
  margin-top: 3vw;
}

.orangeDash {
  background-color: var(--third-color);
  width: 2.5vw;
  height: 0.3vw;
  align-self: flex-start;
  margin-bottom: 1vw;
}

.sectionDesc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 2.1vw;
  line-height: 3vw;
}

.sectionDesc p {
  /* margin-bottom: 2vh; */
  padding: 0px;
}

.sectionDesc p b {
  font-family: "Aonic_Bold", sans-serif;
}

.appLinkChange {
  color: var(--primary-color);
  text-align: center;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  border-radius: 0.5vw;
  /* width: 12vw; */
  transition: all 0.5s;
  cursor: pointer;
  text-align: center;
  gap: 0rem;
  text-decoration: underline;
  text-decoration-thickness: 0.11vw;
  text-underline-offset: 5px;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}

.appLinkChange span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.appLinkChange span:after {
  /* content: "\2197"; */
  content: "";
  background-image: url('../images/ArrowUpRight.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1.8vw;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -2vw;
  transition: 0.5s;
  display: inline-block;
  width: 1.7vw;
  height: 1.7vw;
}

.appLinkChange:hover span {
  padding-right: 2vw;
}

.appLinkChange:hover span:after {
  opacity: 1;
  right: 0;
}

.appLinkChange:hover {
  color: var(--third-color);
}

.appLink a:hover {
  color: var(--third-color);
}

.appLink a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  /* text-decoration: none; */
  text-align: center;
  gap: 0rem;
  text-decoration: underline;
  text-decoration-thickness: 0.11vw;
  text-underline-offset: 5px;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: none;
}

.transition-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 3vw;
  width: 100%;
}

.appLink {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  /* gap: 2vw; */
  transform: translateY(-50%) translateX(-15px) scale(0.85);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  will-change: transform, opacity;
}

.appLink div {
  width: 17vw;
}

.floatingIcons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-15px) scale(0.85);
  transition: all 5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.floatingIcons img {
  width: 2vw;
  height: 2vw;
  padding: 1vw;
  background-color: var(--primary-color);
  border-radius: 100%;
  margin: 0 0.5vw;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  transform: translateZ(0);
  will-change: transform, background-color;
  backface-visibility: hidden;
}

.floatingIcons img:hover {
  transform: scale(1.1);
  background-color: var(--third-color);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.3);
}

.main-stage {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Keeps content on the right */
  padding-right: 8%;
}

.text-row {
  display: flex;
  gap: 40px;
  z-index: 10;
}

.text-item {
  font-size: 1.5vw;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 1px;
  opacity: 1;
}

/* Icons start fixed in the same right-side position as the text */
.icon-container {
  position: fixed;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
}

.store-icon {
  width: 3vw;
  height: 3vw;
  background: var(--primary-color);
  padding: 1vw;
  border-radius: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.5);
  transition: all 0.5s;
}

.store-icon img {
  width: inherit;
  padding: .5vw;
}

.store-icon:hover {
  /* transform: scale(1.1); */
  transform: scale(1.08);
  transition: all 0.5s;
  background-color: var(--third-color);
  box-shadow: 0 1vw 2vw rgba(255, 153, 51, 0.3);
}

.linkImg {
  align-self: center;
  width: 1.8vw;
  height: 1.8vw;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}


.appLink {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-family-secondary);
  font-size: 1.3vw;
  gap: 0vw;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateX(0) scale(1);
  will-change: transform, opacity;
}

.appLink a:hover .linkImg {
  display: inline-block;
  align-self: center;
  opacity: 1;
  transform: translateY(0);
}

.secH3 {
  font-family: var(--font-family-primary);
  font-size: 9vw;
  line-height: 9vw;
  margin: 0;
  text-transform: uppercase;
}

.section-2 {
  display: flex;
  flex-direction: column;
  padding: 10vh 4vw;
  padding-bottom: 20vh;
}

.section2Head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.section2Text p {
  font-family: var(--font-family-primary);
  font-size: 9vw;
  line-height: 9vw;
  margin: 0;
}

.section2-para p {
  font-family: var(--font-family-secondary);
  font-size: 1.6vw;
  line-height: 2.6vw;
}

.gigCard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 0.1vw solid var(--primary-color);
  border-radius: 3vh;
  padding: 2vw;
  padding-right: 2vw;
  margin-top: 3vw;
}

.cardHead p {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 3.6vw;
}

.cardBottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* .cardSec2Container{
  margin-top: 2vh;
} */

.cardBottom div {
  display: flex;
  flex-direction: column;
}

.cardBottomHead {
  margin: 0;
  /* margin-top: 4vh; */
  font-family: var(--font-family-primary);
  font-size: 3.6vw;
}

.cardBottomBody {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
}

.section-3 {
  display: flex;
  flex-direction: column;
  padding: 10vh 4vw;
  padding-top: 0vh;
  padding-bottom: 20vh;
}

.section3Card {
  border: 0.1vw solid var(--primary-color);
  border-radius: 1vw;
  height: 60vh;
  margin-top: 7vh;
  overflow: hidden;
  position: relative;
}

/* 2. Physics Container (Medium Size) */
.physics-container {
  width: 100%;
  height: 60vh;
  max-width: 100%;
  margin-top: 2vw;
  position: relative;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 24px;
  overflow: hidden;
}

/* 3. The Tags (HTML Elements) */
.tag {
  display: inline-block;
  padding: 2vw 4vw;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: .1vw solid #000000;
  border-radius: 10vw;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 1.5vw;
  text-align: center;
  position: absolute;
  white-space: nowrap;
  visibility: hidden;
  will-change: transform;
}

.physics-container1 {
  width: 90vw;
  height: 60vh;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #000000;
  border-radius: 24px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.tag1 {
  display: inline-block;
  padding: 2vw 4vw;
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  white-space: nowrap;
  visibility: hidden;
  will-change: transform;
}

.section-4 {
  display: flex;
  flex-direction: column;
  padding: 10vh 0vw;
  padding-top: 0vh;
  padding-bottom: 20vh;
}

.section-4 h3 {
  padding: 0vh 4vw;
}

.carousel-container {
  overflow: hidden;
  margin-top: 10vh;
  width: 100%;
}

.section4CardContainer {
  display: flex;
  flex-direction: row;
  /* width: calc(200%); */
  animation: scroll 10s linear infinite;
}

.section4CardContainer:hover {
  cursor: pointer;
  animation-play-state: paused;
}

.section4Card {
  display: flex;
  flex-direction: column;
  border: 0.1vw solid var(--primary-color);
  border-radius: 3vh;
  padding: 2vw;
  margin: 1vw;
  min-width: 38vw;
  transition: transform 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.sec4Name {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  font-weight: 500;
}

.sec4Job {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.2vw;
  color: var(--primary-color);
  opacity: 0.7;
}

.section4Head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.section4Head img {
  width: 4vw;
  height: 4vw;
  border-radius: 100%;
}

.section4Dash {
  width: 24vw;
  height: .09vw;
  background-color: var(--primary-20);
  margin: 2vw 0;
  opacity: 0.5;
}

.section4Body p {
  margin: 0;
  /* margin-top: 5vh; */
  font-family: var(--font-family-secondary);
  font-size: 1.2vw;
  line-height: 2vw;
}

.section-5 {
  display: flex;
  flex-direction: column;
  padding: 10vh 4vw;
  padding-top: 0vh;
  padding-bottom: 20vh;
  gap: 5vh;
}

.section5Points {
  display: flex;
  justify-content: flex-start;
  padding: 3vw 10vw;
  margin: 0;
  border-top: 0.2vw solid var(--primary-color);
  font-family: var(--font-family-primary);
  font-size: 4vw;
  line-height: 4vw;
  text-transform: uppercase;
}

.section5Points li {
  margin: 0;
}

.section-6 {
  display: flex;
  flex-direction: column;
  padding: 10vh 4vw;
  padding-top: 0vh;
  padding-bottom: 20vh;
}

.section6Container {
  /* margin-top: 5vh; */
  margin-top: 0vh;
  align-items: center;
}

.section6Card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 5vh;
  border: 0.2vw solid var(--primary-color);
  border-radius: 2vw;
}

.section6InnerContainer {
  display: flex;
  flex-direction: row;
  gap: 5vh;
}

.section6Card1 {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  margin-top: 5vh;
  border: 0.2vw solid var(--primary-color);
  border-radius: 2vw;
}

.sec6Img {
  width: 48vw;
  height: auto;
}

.section6Text {
  padding: 1.5vw;
  /* padding-right: 0; */
}

.section6Text1 {
  position: relative;
  bottom: 8vh;
  padding: 0px 2vw;
  padding-right: 0;
}

.section6Text2 {
  padding: 2vw;
}

.section6Text3 {
  padding: 0px 2vw;
  padding-right: 0;
  justify-content: flex-end;
}

.sec6H4 {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 3.7vw;
  text-transform: uppercase;
}

.sec6Txt {
  margin: 0;
  margin-top: 2vh;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 2vw;
}

.sec6Img1 {
  width: 46vw;
  height: auto;
}

.sec6Img2 {
  width: 35vw;
  height: auto;
}

.sec6Img3 {
  width: 846px;
  height: auto;
}

.sec6Img4 {
  content: url("../images/group4.png");
  width: 46vw;
  height: auto;
}

.section-7 {
  display: flex;
  margin-top: 10vw;
  margin-bottom: 0vw;
  padding: 10vh 4vw;
}

.section7Card {
  display: flex;
  flex-direction: row;
  border: 0.3vw solid var(--primary-color);
  border-radius: 40px;
  position: relative;
  width: 100%;
  height: 70vh;
}

.sec7Img {
  /* flex: .4; */
  /* width: 45vw; */
  width: 43vw;
  height: auto;
}

/* Target first image */
.sec7Img img:nth-child(1) {
  position: absolute;
  top: -24vh;
  bottom: 0;
  left: 16vw;
  width: 30vw;
  height: auto;
}

/* Target second image */
.sec7Img img:nth-child(2) {
  position: absolute;
  top: -24vh;
  bottom: 0;
  left: 0vw;
  width: 30vw;
  height: auto;
}

[data-aos="custom-slide-right"] {
  opacity: 0;
  transform: translateX(-100px) rotate(10deg);
  transition-property: transform, opacity;
}

[data-aos="custom-slide-right"].aos-animate {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

[data-aos="custom-slide-left"] {
  opacity: 0;
  transform: translateX(100px) rotate(-10deg);
  transition-property: transform, opacity;
}

[data-aos="custom-slide-left"].aos-animate {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

.section7Text {
  display: flex;
  flex-direction: column;
  width: 45vw;
  justify-content: center;
  align-items: flex-start;
}

.sec7H4 {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 6.9vw;
  text-transform: uppercase;
}

.sec7img1 {
  width: 12vw;
  height: auto;
}

.sec7app {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  margin-top: 2vw;
}

.section-8 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 15vh;
  padding: 10vh 4vw;
  padding-top: 0;
  /* gap: 5vh; */
}

.section-8 p,
h3 {
  text-align: left;
}

.sec8body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: .1vw solid var(--primary-color);
  border-radius: 2vw;
  padding: 2vw;
  margin: 3vw 0vw 2vw 0vw;
}

.sec8body div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2vw;
}

.sec8body input {
  width: 40vw;
  height: 5vh;
  padding: 1.2vw 0vw;
  font-family: var(--font-family-secondary);
  /* font-size: 1.4vw; */
  font-size: 1.9vw;
  font-weight: 400;
  border: 0vw;
  border-bottom: 0.1vw solid var(--primary-color);
  border-radius: 0vw;
  margin-top: 2vh;
  outline: none;
}

/* .sec8body input::placeholder {
  color: var(--primary-color);
  opacity: 1;
  padding: 0vw 0vw;
} */

.sec8body textarea {
  /* width: 75vw; */
  width: 100%;
  /* width: 40vw; */
  height: 10vh;
  padding: 1.2vw 0vw;
  font-family: var(--font-family-secondary);
  /* font-size: 1.4vw; */
  font-size: 1.9vw;
  font-weight: 400;
  border: 0vw;
  border-bottom: 0.1vw solid var(--primary-color);
  border-radius: 0vw;
  margin: 0vw 3vw;
  margin-top: 4.2vw;
  outline: none;
  resize: none;
}

.input-wrapper-required {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-wrapper-required::after {
  content: '*';
  color: red;
  position: absolute;
  left: calc(3.6ch + 1.5vw);
  top: 60%;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: var(--font-family-secondary);
  font-size: 2vw;
  opacity: .5;
}

.input-wrapper-required.has-value::after {
  display: none;
}

.input-wrapper-required input:not(:placeholder-shown)+.input-wrapper-required::after,
.input-wrapper-required input:focus:not(:placeholder-shown)::after {
  display: none;
}

.input-wrapper-required:has(textarea)::after {
  content: '*';
  color: red;
  position: absolute;
  left: calc(14ch + 2.5vw);
  top: calc(4.5vw + 2.2vw);
  pointer-events: none;
  font-family: var(--font-family-secondary);
  font-size: 2vw;
}

.input-wrapper-required textarea:not(:placeholder-shown)~.input-wrapper-required::after {
  display: none;
}

.sec8body img {
  align-self: center;
  width: 1.5vw;
  height: auto;
}

.secBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw 3vw;
  margin: 0vw;
  margin-top: 5vw;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0.5vw;
  text-decoration: none;
  cursor: pointer;
  gap: 1vw;
}

.button {
  border-radius: 4px;
  background-color: var(--primary-color);
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  padding: 1vw 3vw;
  border-radius: 0.5vw;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  /* content: "\2197"; */
  content: "";
  background-image: url('../images/whiteArrowUpRight.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 1.8vw;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -2vw;
  transition: 0.5s;
  display: inline-block;
  width: 1.7vw;
  height: 1.7vw;
}

.button:hover span {
  padding-right: 2vw;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.shareFeebackBtn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1vw 0vw;
  /* padding: 1vw 3vw; */
}

.shareFeebackBtn .cta1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  padding: 1vw 3vw;
  border-radius: .5vw;
  overflow: visible;
}

.shareFeebackBtn p {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  line-height: 1.4vw;
  transition: transform 500ms ease;
}

.shareFeebackBtn .cta1 span {
  display: inline-block;
  transition: transform 200ms ease;
}

/* arrow */
.shareFeebackBtn .cta1::after {
  content: "";
  position: absolute;
  /* right: 1vw;
    width: 1.8vw;
    height: 1.8vw; */
  right: 2vw;
  width: 1.6vw;
  height: 1.6vw;
  background-image: url("../images/whiteArrowUpRight.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 400ms ease, transform 400ms ease;
  pointer-events: none;
}

/* on hover: show arrow and move only the text */
.shareFeebackBtn .cta1:hover p {
  transition: transform 200ms ease;
  transform: translateX(-10px);
}

.shareFeebackBtn .cta1:hover::after {
  opacity: 1;
  transform: translateX(0);
}



.sec8Success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  padding: 5vw;
}

.sec8Success img {
  width: 8vw;
  height: auto;
}

.sec8Success h4 {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 5vw;
  line-height: 2vw;
  text-transform: uppercase;
}

.sec8Success p {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.8vw;
  line-height: 2.5vw;
  text-align: center;
}

.section-9 {
  display: flex;
  flex-direction: column;
  padding: 10vh 4vw;
  padding-top: 0vh;
  padding-bottom: 20vh;
}

.sec9bottom {
  display: flex;
  flex-direction: row;
  /* gap: 5vw; */
  margin-top: 10vh;
}

.sec9mainblog {
  padding-right: 3vw;
}

.sec9img {
  width: 40vw;
  height: auto;
  border-radius: 2vw;
  margin-bottom: 3vh;
}

.sec9img1 {
  width: 15vw;
  height: 10vw;
  border-radius: 1vw;
  margin-right: 4vh;
}

.sec9blog-title {
  margin: 0;
  margin-bottom: 3vh;
  font-family: var(--font-family-primary);
  font-size: 3.5vw;
  line-height: 3vw;
}

.sec9blog-decs {
  font-family: var(--font-family-secondary);
  font-size: 1.3vw;
  line-height: 1.3vw;
  margin: 0;
  width: 40vw;
}

.sec9blogs {
  display: flex;
  flex-direction: row;
  margin-bottom: 5vh;
}

.sec9minRead {
  font-family: var(--font-family-secondary);
  font-size: 1.3vw;
  line-height: 1vw;
  font-weight: bold;
  color: var(--primary-color);
  opacity: 0.4;
}

.section-10 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10vh 4vw;
  padding-bottom: 20vh;
}

.section10arrow {
  display: flex;
  justify-content: space-between;
  padding: 1.5vw 2vw;
  margin: 0;
  /* border-top: 0.2vw solid var(--primary-color); */
  font-family: var(--font-family-primary);
  font-size: 3.5vw;
  line-height: 4vw;
  text-transform: uppercase;
}

.accordion-item {
  border-bottom: 0.2vw solid var(--primary-color);
}

.accordion-item:first-child .section10arrow {
  border-top: 0.2vw solid var(--primary-color);
}

.accordion-header {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* .accordion-header:hover {
  background-color: rgba(255, 153, 51, 0.1);
} */

.accordion-arrow {
  width: 1.5vw;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 2vw;
}

.accordion-content p {
  padding: 0 2vw 2vw 2vw;
  margin: 0;
}

.section10arrow li {
  margin: 0;
  list-style-type: none;
  /* margin-top: 5vh; */
}

.sec10Head {
  width: 30vw;
}

.sec10Body {
  width: 50vw;
  /* margin-top: 5vw; */
}

.section-11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0vw;
  margin-top: 1vw;
  margin-bottom: 1vw;
}

.footerLogo {
  width: 15vw;
  height: auto;
  margin-top: 3vw;
}

.verticalLine {
  width: 0.15vw;
  height: 2vw;
  background-color: var(--primary-color);
  margin: 0 1vw;
}

.sec11Links {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 1vw;
  margin: 5vw 0vw;
}

.sec11Links div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 0vw;
}

.sec11Links a {
  font-family: var(--font-family-secondary);
  font-size: 2vw;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.sec11Links a:hover {
  color: var(--third-color);
  transition: all 0.5s ease-in-out;
}

.sec11Links img {
  width: 2.5vw;
  height: auto;
  margin: 1vw 0.5vw;
  /* border: .1vw solid var(--primary-color); */
  border-radius: 30vw;
  padding: .8vw;
  margin: .3vw;
  background-color: var(--secondary-color);
  /* transition: all 0.5s ease-in-out; */
  /* box-shadow: 0 0vw 1vw rgba(0, 0, 0, 0.5); */
  transition: all 0.5s;
}

.sec11Links img:hover {
  background-color: var(--third-color);
  /* border: .1vw solid var(--third-color); */
  /* transition: all 0.5s ease-in-out; */
  transition: all 0.5s;
  transform: scale(1.08);
  background-color: var(--third-color);
  /* box-shadow: 0 0vw 1vw rgb(255, 153, 51); */
}

.dividerLine {
  width: 100%;
  height: 0.01vw;
  opacity: 0.2;
  background-color: var(--primary-color);
}

.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.norris {
  text-decoration: none;
  font-weight: bolder;
  display: flex;
  overflow: hidden;
  text-transform: uppercase;
  cursor: pointer;
}

/* Container for each individual character */
.char-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* The two layers of text (top and bottom) */
.char-container span {
  display: block;
  height: 2vw;
  pointer-events: none;
}

/* Color of the text that slides in from below */
.char-bottom {
  color: var(--third-color);
}

/* The container for text reveals */
.text-mask {
  overflow: hidden;
  display: block;
}

[data-gsap="slide-up"] {
  opacity: 1;
  transform: translateY(100px);
  will-change: transform, opacity;
}

/* [data-gsap="slide-up"] {
  visibility: hidden;
  will-change: transform, clip-path;
} */

/* terms and conditions */
.termLogoSection {
  display: flex;
  flex-direction: column;
  padding: 0vw 4vw;
}

.logo-terms {
  font-family: var(--font-family-primary);
  font-size: 12vw;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  margin: 1vw 0vw;
}

.dividerLine-terms {
  width: 100%;
  height: 0.1vw;
  /* opacity: 0.2; */
  background-color: var(--primary-color);
}

.HeadSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2vw 4vw;
  gap: 2vw;
}

.termTitle {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 10vw;
  line-height: 10vw;
  color: var(--primary-color);
  text-align: center;
}

.termDate {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 1.5vw;
  color: var(--primary-color);
  text-align: center;
}

.termDesc {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 2vw;
  color: var(--primary-60);
  text-align: center;
  padding: 0 9vw;
}

.termsContentSection {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2vw 4vw;
}

.contentSection {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 50vw;
}

.contentPoints {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  scroll-margin-top: 10vw;
}

.contentSection h2 {
  margin: 0;
  font-family: var(--font-family-primary);
  font-size: 5vw;
  line-height: 6vw;
  color: var(--primary-color);
}

.contentSection ul {
  margin: 0;
  width: 50vw;
}

.contentSection p {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.5vw;
  line-height: 2vw;
  color: var(--primary-color);
  /* width: 60vw; */
}

.contentSection li {
  margin: 0;
  font-family: var(--font-family-secondary);
  font-size: 1.4vw;
  line-height: 2vw;
  color: var(--primary-color);
}

.contentTable {
  /* margin-left: 5vw; */
  height: fit-content;
  /* max-height: 80vh; */
  overflow-y: auto;
  border: 0.1vw solid var(--primary-color);
  border-radius: 1vw;
  padding: 1vw 2vw;
  position: sticky;
  top: 2vh;
}

.contentTable a {
  font-family: var(--font-family-secondary);
  font-size: 1.2vw;
  line-height: 1.2vw;
  text-decoration: none;
  color: var(--primary-60);
  display: block;
  transition: color 0.3s ease;
  width: 25vw;
}

.contentTable a:hover {
  color: var(--primary-color);
}

.contentTable a:active {
  color: var(--primary-color);
  font-weight: bold;
}

.g-recaptcha {
  /* margin: 2vw 58vw 0vw 0vw; */
  transform: scale(0.77);
  -webkit-transform: scale(0.77);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}

.footerApp {
  display: none !important;
}
.footerApp:hover {
  background-color: var(--secondary-color);
}

@media screen and (max-width: 1024px) {

  .section-2 {
    padding: 0vh 4vw;
  }

  .section6InnerContainer {
    gap: 2vh;
    flex-direction: column;
  }

  .section6Card {
    margin-top: 2vh;
  }

  .section6Card1 {
    margin-top: 2vh;
  }

  .section6Text1 {
    bottom: 0vh;
  }

  .sec7Img {
    width: 44vw;
  }

  .sec7Img img:nth-child(1) {
    top: -12vh;
  }

  .sec7Img img:nth-child(2) {
    top: -12vh;
  }


  .shareFeebackBtn .cta1 {
    padding: 2vw 4vw;
    border-radius: 2vw;
  }

  .shareFeebackBtn p {
    font-size: 1.8vw;
    line-height: 2.5vw;
    transition: transform 200ms ease;
    transform: translateX(-10px);
  }

  .shareFeebackBtn .cta1::after {
    right: 2vw;
    width: 2.3vw;
    height: 2.3vw;
    opacity: 1;
    transform: translateX(0);
  }

}

/* Tablet - 1024px */
@media screen and (max-width: 1024px) {

  .floatingIcons img {
    width: 10vw;
    height: 10vw;
    padding: 2vw;
    margin: 0 1vw;
  }

  .section-1 {
    /* gap: 15vh; */
    gap: 35vh;
    padding: 8vh 6vw;
  }

  .logo {
    width: 95vw;
    padding: 0vh 0vw;
    padding-bottom: 5vh;
  }

  .orangeDash {
    width: 5vw;
    height: 0.8vw;
  }

  .sectionDesc {
    font-size: 4vw;
    line-height: 6vw;
  }

  .transition-container {
    min-height: 8vw;
  }

  /* .appLink {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 3vw;
    gap: 2vw;
    font-size: 2.5vw;
  } */

  .appLink {
    flex-direction: row;
    align-items: flex-end;
    /* font-size: 3.5vw; */
    font-size: 4vw;
    /* gap: 4vw; */
  }

  .appLink div {
    width: 24vw;
  }

  .appLinkChange {
    font-size: 2vw;
    gap: 4vw;
  }

  .appLinkChange span:after {
    width: 2.7vw;
    height: 2.7vw;
  }

  .appLinkChange:hover span:after {
    right: -1vw;
  }

  .linkImg {
    width: 2.5vw;
    height: 2.5vw;
  }

  .icon-container {
    flex-direction: row;
    bottom: 5vw !important;
  }

  .store-icon {
    /* width: 5vw;
    height: 5vw; */

    width: 9vw;
    height: 9vw;
  }


  .store-icon img {
    width: inherit;
    padding: 1.5vw;
  }

  /* .floatingIcons img {
    width: 3vw;
    height: 3vw;
    padding: 1.5vw;
    margin: 0 0.5vw;
  } */

  .section-2,
  .section-3,
  .section-5,
  .section-6 {
    padding: 8vh 3vw;
  }

  .cardSec2Container {
    margin-top: 2vh;
  }

  .cardBottom div {
    gap: 1vw
  }

  .section-4 {
    padding: 8vh 0vw;
  }

  .section-4 h3 {
    padding: 0vh 3vw;
  }

  .secH3 {
    font-size: 15vw;
    line-height: 19vw;
  }

  .section2Text p {
    font-size: 15vw;
    line-height: 15vw;
  }

  .section2-para p {
    font-size: 2.5vw;
    line-height: 3.5vw;
  }

  .tag {
    padding: 3vw 3vw;
    font-size: 2vw;
    line-height: 3vw;
    border-radius: 25vw;
  }

  .gigCard {
    padding: 4vw;
    margin-top: 5vw;
  }

  .cardHead p {
    font-size: 7vw;
  }

  .cardBottom {
    flex-direction: column;
  }

  .cardBottomHead {
    font-size: 7vw;
  }

  .cardBottomBody {
    font-size: 3.2vw;
  }

  .carousel-container {
    margin-top: 5vh;
  }

  .section4CardContainer {
    animation-duration: 10s;
  }

  .section4CardContainer:hover {
    animation-play-state: running;
  }

  .section4Card {
    margin: 2vw;
    padding: 4vw;
    min-width: 55vw;
  }

  .section4Head img {
    width: 8vw;
    height: 8vw;
  }

  .sec4Name {
    font-size: 2.5vw;
  }

  .sec4Job {
    font-size: 2.2vw;
  }

  .section4Body p {
    font-size: 2.2vw;
    line-height: 3vw;
  }

  .section5Points {
    font-size: 6vw;
    line-height: 6vw;
    padding: 4vw 6vw;
  }

  .section6Card {
    flex-direction: column-reverse;
  }

  .section6InnerContainer {
    flex-direction: column;
    gap: 0vh;
  }

  .sec6Img,
  .sec6Img1,
  .sec6Img2,
  .sec6Img3,
  .sec6Img4 {
    width: 90vw;
  }

  .sec6Img4 {
    content: url("../images/group6.png");
  }

  .sec6H4 {
    font-size: 6vw;
  }

  .sec6Txt {
    font-size: 2.8vw;
    line-height: 3.5vw;
    margin: 2vh 0px;
  }

  .secBtn {
    font-size: 2vw;
    padding: 1vw 2vw;
  }

  .section-7 {
    margin-top: 30vw;
  }

  .section7Card {
    flex-direction: column;
    height: auto;
    padding: 4vw;
  }

  .sec7Img {
    display: flex;
    width: 80vw;
    margin-bottom: 4vh;
    flex-direction: row;
  }

  .sec7Img img {
    position: static;
    margin-top: -40vw;
    width: 100%;
  }

  /* Target first image */
  .sec7Img img:nth-child(1) {
    position: relative;
    top: 0vh;
    bottom: 0;
    /* left: 35vw; */
    left: 33vw;
    width: 100%;
    height: auto;
  }

  /* Target second image */
  .sec7Img img:nth-child(2) {
    position: relative;
    top: 0vh;
    bottom: 0;
    /* left: 20vw; */
    left: -29vw;
    width: 100%;
    height: auto;
  }

  .section7Text {
    width: 100%;
  }

  .sec7H4 {
    font-size: 10vw;
  }

  .sec7img1 {
    width: 20vw;
  }

  .input-wrapper-required:has(textarea)::after {
    /* top: calc(6.5vh + 2.2vw); */

    top: calc(3vh + 2.2vw);
    left: calc(14ch + 2.5vw);
  }

  .shareFeebackBtn .cta1 {
    padding: 2vw 4vw;
    border-radius: 2vw;
  }

  .shareFeebackBtn p {
    font-size: 2vw;
    line-height: 3vw;
    transition: transform 200ms ease;
    transform: translateX(-10px);
  }

  .shareFeebackBtn .cta1::after {
    right: 2vw;
    width: 2.6vw;
    height: 2.6vw;
    opacity: 1;
    transform: translateX(0);
  }

  .sec9bottom {
    flex-direction: column;
  }

  .sec9mainblog {
    padding-right: 0;
    margin-bottom: 5vh;
  }

  .sec9img {
    width: 88vw;
  }

  .sec9blog-title {
    font-size: 5vw;
    line-height: 4.5vw;
  }

  .sec9blog-decs {
    width: 88vw;
    font-size: 2.2vw;
    line-height: 2.8vw;
  }

  .sec9img1 {
    width: 25vw;
    height: 15vw;
  }

  .sec9minRead {
    font-size: 2vw;
  }

  .accordion-content {
    font-size: 3.5vw;
    line-height: 5vw;
  }

  .accordion-content p {
    margin: 2vw 0vw;
  }

  .section-10 {
    flex-direction: column;
  }

  .sec10Head,
  .sec10Body {
    width: 100%;
    margin-top: 5vw;
  }

  .section10arrow {
    font-size: 5vw;
    line-height: 5vw;
    padding: 3vw;
  }

  .dividerLine {
    height: 0.04vw;
  }

  .footerLogo {
    width: 25vw;
  }

  .sec11Links {
    margin: 5vw 0vw 20vw 0vw;
  }

  .sec11Links img {
    width: 3.4vw;
    height: auto;
    margin: 0.4vw;
  }

  .sec11Links a {
    font-size: 2.4vw;
  }


  .logo-terms {
    font-size: 15vw;
  }

  .HeadSection {
    padding: 6vw 4vw;
    gap: 4vw;
  }

  .termTitle {
    font-size: 16vw;
  }

  .termDate {
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .termDesc {
    font-size: 3.5vw;
    line-height: 4vw;
    padding: 0 8vw;
  }

  .termsContentSection {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contentSection {
    width: 100%;
  }

  .contentSection h2 {
    font-size: 9vw;
    line-height: 12vw;
  }

  .contentSection ul {
    width: 80vw;
    padding: 0 8vw;
  }

  .contentSection li {
    font-size: 4vw;
    line-height: 5vw;
  }

  .contentSection p {
    font-size: 4vw;
    line-height: 5vw;
  }

  .contentTable {
    display: none;
  }

}

/* Mobile - Large (480px and below) */
@media screen and (max-width: 480px) {

  /* Mobile-specific: No sliding, only fade transition */
  .floatingIcons {
    flex-direction: column;
    transform: translateY(-50%) translateX(0) scale(1) !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .floatingIcons.transitioning {
    transform: translateY(-50%) translateX(0) scale(1) !important;
  }

  .section-1 {
    gap: 50vw;
    padding: 6vh 3vw;
  }

  .orangeDash {
    width: 8vw;
    height: 1.2vw;
  }

  .sectionDesc {
    font-size: 4.5vw;
    line-height: 8vw;
    margin-bottom: 5vh;
  }

  .transition-container {
    min-height: 12vw;
  }

  .appLink {
    flex-direction: column;
    align-items: flex-end;
    /* font-size: 3.5vw; */
    font-size: 4vw;
    gap: 4vw;
  }

  .appLink div {
    width: 50vw;
  }

  .appLinkChange {
    font-size: 4vw;
    line-height: 7vw;
    gap: 4vw;
  }

  .appLinkChange span:after {
    width: 5.7vw;
    height: 5.7vw;
  }

  .appLinkChange:hover span:after {
    right: -4vw;
  }

  .linkImg {
    width: 3.5vw;
    height: 3.5vw;
  }

  .store-icon {
    width: 10vw;
    height: 10vw;
  }

  .icon-container {
    flex-direction: column;
  }

  .floatingIcons img {
    width: 8vw;
    height: 8vw;
    padding: 2vw;
    margin: 0 1vw;
  }

  .section-2,
  .section-3,
  .section-5,
  .section-6,
  .section-7,
  .section-8,
  .section-9,
  .section-10 {
    padding: 6vh 3vw;
  }

  .section-4 {
    padding: 6vh 0vw;
  }

  .section-4 h3 {
    padding: 0vh 3vw;
  }

  .secH3 {
    font-size: 18vw;
    line-height: 22vw;

  }

  .section2Text p {
    font-size: 17vw;
    line-height: 17vw;
  }

  .section2-para p {
    font-size: 3.5vw;
    line-height: 5.5vw;
  }

  .tag {
    padding: 6vw 4vw;
    font-size: 3.5vw;
    line-height: 4vw;
    /* min-width: 50vw; */
    border-radius: 30vw;
  }

  .gigCard {
    padding: 5vw;
    border-radius: 2vw;
  }

  .cardHead p {
    font-size: 9.5vw;
  }

  .cardBottom {
    flex-direction: column;
  }

  .cardBottomHead {
    font-size: 10vw;
    margin-top: 2vh;
  }

  .cardBottomBody {
    font-size: 4.5vw;
  }

  .section4CardContainer {
    animation-duration: 10s;
  }

  .section4CardContainer:hover {
    animation-play-state: running;
  }

  .section4Card {
    padding: 5vw;
    border-radius: 3vw;
    min-width: 70vw;
    margin: 3vw;
  }

  .secBtn {
    font-size: 4vw;
    padding: 2vw 4vw;
    border-radius: 1vw;
  }

  .section4Head {
    gap: 12px;
  }

  .section4Head img {
    width: 12vw;
    height: 12vw;
  }

  .sec4Name {
    font-size: 3.5vw;
  }

  .sec4Job {
    font-size: 3.2vw;
  }

  .section4Body p {
    font-size: 3.2vw;
    line-height: 4.2vw;
    width: 70vw;
  }

  .section5Points {
    font-size: 8vw;
    line-height: 8vw;
    padding: 4vh 10vw;
  }

  .section6Text1 {
    padding-top: 10vw;
  }

  .sec6H4 {
    font-size: 8vw;
  }

  .sec6Txt {
    font-size: 3.5vw;
    line-height: 4.5vw;
  }

  .section-7 {
    margin-top: 30vw;
  }

  .section7Card {
    border-radius: 20px;
    padding: 5vw;
  }

  .sec7H4 {
    font-size: 12vw;
  }

  .sec7img1 {
    width: 30vw;
  }

  .sec7Img img:nth-child(1) {
    left: 30vw !important;
  }

  .sec7Img img:nth-child(2) {
    left: -50vw !important;
  }

  .sec7app {
    gap: 3vw;
  }

  .sec8body input {
    font-size: 3vw;
  }

  .sec8body textarea {
    font-size: 3vw;
  }

  .sec8body img {
    width: 4vw;
    height: auto;
  }

  .input-wrapper-required::after {
    left: calc(4ch + 1.5vw);
    top: 60%;
    font-size: 3vw;
  }

  .input-wrapper-required:has(textarea)::after {
    left: calc(16ch + 2.5vw);
    top: calc(5vw + 2.2vw);
    font-size: 3vw;
  }

  .shareFeebackBtn .cta1 {
    padding: 3vw 6vw;
    border-radius: 2vw;
  }

  .shareFeebackBtn p {
    font-size: 3vw;
    line-height: 3vw;
    transition: transform 200ms ease;
    transform: translateX(-10px);
  }

  /* .shareFeebackBtn .cta1:hover p {
    transition: transform 200ms ease;
    transform: translateX(-10px);
} */

  .shareFeebackBtn .cta1::after {
    right: 4vw;
    width: 3.6vw;
    height: 3.6vw;
    opacity: 1;
    transform: translateX(0);
  }

  .button {
    font-size: 3vw;
    line-height: 3vw;
    border-radius: 0.9vw;
    padding: 3vw 3vw;
  }

  .button:hover span:after {
    right: -8vw;
  }

  .button:hover span {
    padding-right: 0vw;
  }

  .button span:after {
    width: 5vw;
    height: 2vh;
  }

  .sec8Success {
    gap: 5vw;
    /* padding: 8vw; */
  }

  .sec8Success img {
    width: 15vw;
    height: auto;
  }

  .sec8Success h4 {
    font-size: 8vw;
    line-height: 2vw;
  }

  .sec8Success p {
    font-size: 3vw;
    line-height: 3vw;
  }



  .sec9blog-title {
    font-size: 7vw;
    line-height: 6.5vw;
  }

  .sec9blog-decs {
    font-size: 3.2vw;
    line-height: 4vw;
  }

  .sec9img1 {
    width: 35vw;
    height: 20vw;
    margin-right: 3vh;
  }

  .sec9minRead {
    font-size: 3vw;
  }

  .section10arrow {
    font-size: 10vw;
    line-height: 6vw;
    padding: 8vw 3vw;
  }

  .footerLogo {
    width: 35vw;
  }

  .dividerLine {
    height: 0.1vw;
  }

  .sec11Links {
    flex-wrap: wrap;
    gap: 5vw;
    align-items: center;
    justify-content: center;
    padding: 0vw 10vw;
    margin: 5vw 0vw 30vw 0vw;
  }

  .sec11Links div {
    gap: 1.2vw;
  }

  #tandc {
    font-size: 0;
  }

  #tandc::after {
    content: "T&C";
    font-size: 5vw;
  }

  .sec11Links a {
    font-size: 5vw;
  }

  .sec11Links img {
    width: 7vw;
  }

  .verticalLine {
    width: 0.3vw;
    height: 5vw;
  }

  .logo-terms {
    font-size: 15vw;
  }

  .HeadSection {
    padding: 6vw 4vw;
    gap: 6vw;
  }

  .termTitle {
    font-size: 16vw;
  }

  .termDate {
    font-size: 3.5vw;
    line-height: 4vw;
  }

  .termDesc {
    font-size: 3.5vw;
    line-height: 4vw;
    padding: 0 8vw;
  }

  .termsContentSection {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contentSection {
    width: 100%;
  }

  .contentSection h2 {
    font-size: 9vw;
    line-height: 12vw;
  }

  .contentSection ul {
    width: 80vw;
    padding: 0 8vw;
  }

  .contentSection li {
    font-size: 4vw;
    line-height: 5vw;
  }

  .contentSection p {
    font-size: 4vw;
    line-height: 5vw;
  }

  .contentTable {
    display: none;
  }

  .footerApp {
    display: flex !important;
    flex-direction: row;
  }

  .footerApp img {
    width: 30vw;
    height: auto;
    border-radius: 0;
  }
}

@media screen and (max-width: 375px) {
  .sec7Img img:nth-child(1) {
    left: 28vw !important;
  }

  .sec7Img img:nth-child(2) {
    left: -65vw !important;
  }
}

/* Spotlight effect */
/* .spotlight {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 1) 0%,
    rgba(255, 153, 51, 0.6) 30%,
    rgba(255, 153, 51, 0.3) 60%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

.spotlight.hidden {
  opacity: 0;
} */