@font-face {
  font-family: "Plus Jakarta Sans", sans-serif;
  src: url("../font/PlusJakartaSans-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Moliga";
  src: url("../font/Moliga.woff2") format("woff2"),
    url("../font/Moliga.woff") format("woff"),
    url("../font/Moliga.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #e0fe44;
  --dark: #121212;
  --white: #f4f4f4;
  --grd-1: linear-gradient(
    233.79deg,
    #52d10f 0%,
    #edfabb 51.5%,
    #aece15 98.94%
  );
  --mol: "Moliga", sans-serif;
  --plus: "Plus Jakarta Sans", sans-serif;
  --off-white: #ebebec;
  --smoth: cubic-bezier(0.42, 0, 0.58, 1);
  --glow: url(../img/glow.webp);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0e0f11;
  font-family: var(--plus);
  color: #b4bbc9;
  transition: var(--smoth);
}
h1,
h2,
h3,
h4 {
  font-family: var(--mol);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover {
  color: inherit;
}
button {
  border: none;
  outline: none;
  background-color: transparent;
}
input {
  background-color: transparent;
  border: none;
  outline: none;
}

p {
  padding: 0;
  margin: 0;
}
.text-grd {
  leading-trim: both;
  text-edge: cap;
  background: linear-gradient(233.79deg, #52d10f 0%, #edfabb 50%, #aece15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.primary-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18px 32px 16px 32px;
  gap: 10px;
  background: linear-gradient(270deg, #13fb86 0%, #ffd230 100%);
  box-shadow: -4px -4px 16px rgba(31, 249, 130, 0.3),
    4px 4px 16px rgba(244, 212, 52, 0.3);
  border-radius: 16px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  color: var(--dark);
}
.primary-btn:hover {
  box-shadow: 4px 4px 16px rgba(31, 249, 129, 0.4),
    -4px -4px 16px rgba(244, 212, 52, 0.4);
}
.mt-52 {
  margin-top: 52px;
}
.mb-90 {
  margin-bottom: 90px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Header======== */
main {
  width: 100%;
}
section {
  width: 100%;
  overflow-x: clip;
}
footer {
  overflow-x: clip;
  overflow-x: hidden;
  background-color:#0e0f11;
}
.header {
  padding-top: 24px;
  width: 100%;
  background-color: #0e0f11;
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar {
  width: 100%;
  padding: 10px 14px;
  max-width: 1828px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
}
.navbar-brand {
  max-width: 200px;
  display: inline-block;
}

.custom-toggler {
  width: 34px;
  height: 34px;
  border-radius: 4px;
}
.toggler-icon {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--primary);
  display: block;
  margin: 5px auto;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.toggler-icon.active:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
  -moz-transform: rotate(45deg) translate(6px, 6px);
  -ms-transform: rotate(45deg) translate(6px, 6px);
  -o-transform: rotate(45deg) translate(6px, 6px);
  transform: rotate(45deg) translate(6px, 6px);
}
.toggler-icon.active:nth-child(2) {
  opacity: 0;
}
.toggler-icon.active:nth-child(2) {
  opacity: 0;
}
.toggler-icon.active:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  -moz-transform: rotate(-45deg) translate(5px, -5px);
  -ms-transform: rotate(-45deg) translate(5px, -5px);
  -o-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}
.header-cta {
  background-color: var(--primary);
  color: var(--dark);
  padding: 10px 24px 8px 24px;
  border-radius: 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  height: 50px;
  transition: 0.3s linear;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
}
.header-cta:hover {
  background-color: var(--primary);
  box-shadow: 0px 0px 10px #aece15;
  border-color: #52d10f;
  color: var(--dark);
}
.navbar-nav {
  padding: 12px 24px;
  gap: 28px;
  width: 100%;
  max-width: 445px;
  background: rgba(224, 254, 68, 0.05);
  border-radius: 24px;
}
.nav-link {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

/* =================================== */
.hero-section {
  width: 100%;
  position: relative;
}
.hero-heading {
  max-width: 1053px;
  text-align: center;
  margin: 80px auto 0px auto;
  font-size: clamp(18px, 16vw, 180px);
  line-height: 70%;
  text-transform: uppercase;
}
.heading-text-md {
  font-size: clamp(18px, 11vw, 120px);
  line-height: 85%;
  text-transform: uppercase;
  letter-spacing: 0.006em;
}
.heading-text-md span {
  font-family: var(--plus);
}
.text-lg {
  font-size: 22px;
  line-height: 150%;
}
.hero-text {
  max-width: 690px;
}
.stage {
  perspective: 1200px;
}
.mobile-image {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0px auto;
  will-change: transform;
  opacity: 1;
  transform: translateY(-80px) perspective(700px) rotateX(40deg);
  position: relative;
  z-index: 12;
}
.mobile-image img {
  width: 100%;
  height: auto;
}

.mobile-image::after {
  content: "";
  background-image: var(--glow);
  background-size: contain;
  background-position: center;
  width: 200%;
  position: absolute;
  height: 500px;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  background-repeat: no-repeat;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
.cta-wrapper {
  padding: 20px;
  width: 100%;
  max-width: 1432px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(252, 255, 242, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 44px;
}
.cta-wrapper::after {
  content: "";
  background-image: var(--glow);
  background-size: contain;
  background-position: center;
  width: 200%;
  position: absolute;
  height: 500px;
  top: -10%;
  left: 50%;
  transform: translate(-50%);
  background-repeat: no-repeat;
  z-index: -1;
  user-select: none;
  pointer-events: none;
}
.inner-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(252, 255, 242, 0.2);
  border-radius: 30px;
  padding: 80px 110px;
}
.app-feature-wrapper {
  width: 100%;
  max-width: 1400px;
  display: flex;
  gap: 24px;
}
.app-feature-card-wrapper {
  width: 100%;
  max-width: 500px;
}
.app-feature-card {
  width: 100%;
  background: rgba(161, 161, 161, 0.05);
  border: 1px solid #fcfff225;
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
  transition: 0.4s;
}
.app-feature-card.hover:hover {
  border-color: var(--primary);
  transform: translate(0px, 5px);
  box-shadow: 0px 0px 20px #53d10f49;
}
.app-feature-card.card-md {
  padding: 24px;
}
.feature-name {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 44px;
}
.swap-animation .ia-1 {
  transition: 0.4s;
}
.swap-animation .ia-2 {
  transition: 0.4s;
}
.af-card-glow {
  position: absolute;
  z-index: -1;
}
.top-right {
  top: -90%;
  right: -70%;
}
.top-left {
  top: -70%;
  left: -50%;
}
.left-bottom {
  bottom: -90%;
  left: -70%;
}
.right-bottom {
  bottom: -90%;
  right: -70%;
}
.swap {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.swap-animation {
  z-index: 1;
  margin-bottom: -34px;
  transition: 0.4s;
  width: 100%;
}
.app-feature-card:hover .swap-animation {
  margin-bottom: 34px;
}
.app-feature-card:hover .swap-animation .ia-1 {
  transform: translateY(100%);
}
.app-feature-card:hover .swap-animation .ia-2 {
  transform: translateY(-100%);
}
.app-feature-card:hover .swap {
  transform: translate(-50%, -50%) rotate(180deg);
}
.app-feature-card-wrapper p {
  font-size: 18px;
  text-align: center;
  transform-origin: 0% 100%;
  transition: 0.4s;
  opacity: 0;
  margin-top: 0px;
}

.app-feature-card:hover p {
  opacity: 1;
}
.app-wallet {
  margin: 0 auto;
  position: relative;
}
.app-coin {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -0%);
  z-index: -1;
  transition: 0.4s;
}
.app-feature-card:hover .app-coin {
  top: -30px;
}
.mobile-landing {
  width: 380px;
  height: 100%;
}
.swap-animation .marks {
  position: absolute;
  left: 40%;
  top: 35%;
  background: rgba(0, 0, 0, 0.296);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 16px;
  transition: 0.4s;
}
.app-feature-card:hover .marks {
  left: 45%;
  top: 40%;
}
.af-card {
  max-width: 268px;
  position: absolute;
  left: 30%;
  top: -10%;
  transition: 0.4s;
}
.app-feature-card:hover .af-card {
  left: 40%;
  top: 20%;
}
#cardOpen {
  height: 90vh;
}
#cardCodinatior {
  height: 400px;
}
.animated-card {
  width: 100%;
  max-width: 600px;
  will-change: transform;
  opacity: 1;
  /* transform: matrix(0.99, -0.14, 0.93, 0.37, 0, 0); */
  z-index: 5;
  position: relative;
}
.animated-card img {
  z-index: 2;
}
.animated-card span {
  border: 4px solid var(--primary);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
}
.animated-card .before {
  opacity: 1;
  transform: translate(-40px, 40px);
}
.animated-card .after {
  opacity: 1;
  transform: translate(-80px, 80px);
}
.card-holder {
  height: 100%;
  min-height: 388px;
  height: 100%;
}
.card-glow {
  width: 130%;
  position: absolute;
  left: -30%;
  top: -50%;
  user-select: none;
  pointer-events: none;
}
.app-feature-content {
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 330px;
}
.app-feature-display {
  transform: rotate(3deg);
  width: 90%;
}
.mobile-screen {
  max-width: 280px;
  height: 368px;
  margin-bottom: -30px;
}

.app-feature-card:hover .app-feature-display {
  top: 30px;
}
.card-md h6 {
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.glow-md {
  position: absolute;
  left: auto;
  right: -40%;
  top: -40%;
}
.three-card-box {
  width: 100%;
  margin: 0 auto;
}
.three-card-box.t-card {
  max-width: 880px;
}
.card-box,
.mobile-box {
  width: 100%;
  max-width: 530px;
  height: 430px;
  position: relative;
}
.three-card-box.mobile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 320px;
  width: 100%;
  background: linear-gradient(360deg, #0e0f11 55.45%, rgba(14, 15, 17, 0) 100%);
  background-size: cover;
  z-index: 2;
}
.mobile-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.flat-card {
  width: 100%;
  max-width: 210px;
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0px 4px 10px rgba(63, 255, 37, 0.2));
}
.mobile-card {
  width: 100%;
  max-width: 210px;
  position: absolute;
  bottom: -60px;
}
.flat-card.card-center,
.mobile-card.card-center {
  transform: translate(-50%, 0%);
  left: 50%;
  z-index: 2;
}
.flat-card.card-left,
.mobile-card.card-left {
  transform: rotate(-5deg);
  left: 60px;
  transform-origin: left bottom;
}
.flat-card.card-right,
.mobile-card.card-right {
  transform: rotate(5deg);
  right: 60px;
  transform-origin: right bottom;
}
.card-box::before {
  content: "";
  bottom: -10%;
  left: 0;
  position: absolute;
  width: 100%;
  height: 204px;
  z-index: 3;
  background: linear-gradient(360deg, #0e0f11 55.45%, rgba(14, 15, 17, 0) 100%);
}
.glow-card {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    233.79deg,
    #52d10f 0%,
    #edfabb 51.5%,
    #aece15 98.94%
  );
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.trust-face {
  display: flex;
  align-items: center;
}
.avatar,
.uesr-image {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 2px solid #000;

  background-color: #52d10f;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.avatar:not(:first-child) {
  margin-left: -16px;
}
.uesr-image {
  border-color: var(--white);
}
.count {
  font-size: 70px;
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial-card {
  padding: 20px;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(105, 105, 105, 0.05) 100%
  );
  border-radius: 16px;
  user-select: none;
}
.testimonial-card .user-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.swiper-pagination {
  position: static;
  margin-top: 28px;
}
.swiper-pagination-bullet-active {
  background: var(--primary);
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  opacity: 1;
  border: 1px solid #737373;
}

.accordion-button {
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  content: "";
  width: 14px;
  height: 15px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'><path d='M14 8.11768H8V14.1177H6V8.11768H0V6.11768H6V0.117676H8V6.11768H14V8.11768Z' fill='white'/></svg>")
    no-repeat center center;
  background-size: contain;
}

.accordion-button:not(.collapsed)::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='15' viewBox='0 0 14 15' fill='none'><path d='M14 8.11768H8V14.1177H6V8.11768H0V6.11768H6V0.117676H8V6.11768H14V8.11768Z' fill='white'/></svg>")
    no-repeat center center;
  transform: rotate(45deg);
}
.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(163, 163, 163, 0.1);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 16px;
}
.accordion-body {
  color: #aaa;
  font-size: 15px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.125);
}
.footer-container {
  width: 100%;
  max-width: 1440px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(252, 255, 242, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.letti-glow {
  max-width: 1190px;
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translate(-50%, 0%);
  pointer-events: none;
}
.star-img {
  position: absolute;
  width: 100%;
  max-width: 590px;
  top: -10px;
  left: 50%;
  transform: translate(-50%, 0px);
  pointer-events: none;
}
.company-description {
  padding: 140px 16px;
  width: 100%;
  max-width: 520px;
}
.company-description p {
  font-size: 16px;
}
.footer-links {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px dashed #8e8e8e;
  backdrop-filter: blur(2.5px);
  position: relative;
  z-index: 4;
  display: flex;
}
.f-nav-links {
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  border-right: 1px dashed #8e8e8e;
}
.f-quick-links {
  padding: 40px;
  width: 100%;
  max-width: 540px;
}
.f-quick-links h3 {
  font-size: 32px;
  text-transform: uppercase;
}
.social-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.social-links-item {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-links-item img {
  transition: 0.3s;
}
.social-links-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links-item:hover img {
  transform: scale(1.1);
}
.news-letter {
  padding: 5px;
  height: 60px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(163, 163, 163, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.news-letter input {
  width: 100%;
  flex-grow: 1;
  color: #fff;
  padding: 0px 0px 0px 10px;
}
.sub-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 10px;
  width: 154px;
  background: #000000;
  border-radius: 10px;
  color: var(--white);
  text-transform: uppercase;
}
.f-quick-links p {
  font-size: 14px;
}
.star-falling {
  width: 100%;
  max-width: 840px;
  height: 570px;
  position: absolute;
  top: -20%;
  left: 0px;
}
.footer {
  z-index: 2;
}
.star-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3px;
  height: 160px;
  background: linear-gradient(white, transparent);
  opacity: 0.8;
  transform: rotate(116deg);
  animation: fall 4s linear infinite;
}
.star-element::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: -2px;
  top: 0;
  background-color: #fff;
  filter: blur(1px);
  background-repeat: no-repeat;
}

/* falling animation */
@keyframes fall {
  0% {
    transform: translateX(0) translateY(0) rotate(116deg);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(600px) translateY(400px) rotate(116deg);
    opacity: 0;
  }
}

.page-heading h1 {
  max-width: 1125px;
  margin: 0 auto;
}
.page-saprator {
  margin-top: -50px;
}
.glow-logo {
  max-width: 140px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.about-img {
  max-width: 544px;
  position: relative;
}
.about-img .mobile-home {
  width: 100%;
  max-width: 230px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.about-img .mobile-card {
  width: 100%;
  max-width: 470px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0%, -50%);
  transition: 0.5s;
}
.app-feature-card:hover .about-img .mobile-home {
  transform: translate(60%, 0%);
}
.mission {
  font-size: 120px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: -30px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff0f;
  text-align: center;
  user-select: none;
}
.feature-name.name-3 {
  color: var(--primary);
}
.abt-card {
  height: 100%;
  position: relative;
}
.abt-card .graphic {
  width: 100%;
  margin-top: 40px;
  transition: 0.4s;
  filter: saturate(0);
  animation: flot alternate infinite 1s ease-in-out;
}
.abt-card:hover .graphic {
  filter: saturate(1);
}
@keyframes flot {
  0% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(-4px);
  }
}
.abt-card-glow {
  position: absolute;
  top: -60%;
  right: -60%;
  max-width: 700px;
  width: 100%;
  transition: 0.4s;
}
.abt-card:hover .abt-card-glow {
  top: -50%;
  right: -50%;
}
.yc-img{
width: 100%;
height: 198px;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.yc-img .glow-md{
  max-width:300px;
}
.yc-icon{
  width: 100%;
  max-width: 110px;
}
.user-icon {
  animation: flot 1s alternate-reverse infinite linear;
}
.user-icon.sec {
  animation: pulse 3s infinite reverse;
}
.price-icon {
  transform-origin: top left;
  animation: shoot 2s alternate-reverse infinite linear;
}
.globe {
  animation: round 10s infinite linear;
}

@keyframes pulse {
0%{
transform: rotateY(0deg) scaleX(1);
}
100%{
transform: rotateY(180deg) scaleX(-1);
}
}
@keyframes round {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(180deg) ;
}
}
@keyframes shoot {
0%{
transform: rotate(0deg);
}
100%{
transform: rotate(10deg) ;
}
}

  .flow {
    stroke-dasharray: 50 10;
    animation: flowRight 1.5s linear infinite;
  }
  .flow.reverse {
    animation: flowLeft 1.5s linear infinite;
  }

  @keyframes flowRight {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -60; }
  }
  @keyframes flowLeft {
    from { stroke-dashoffset: 60; }
    to { stroke-dashoffset: 0; }
  }
  .gif-image{
    width: 100%;
    opacity: .8;

  }

  .mobile-landing-gif {
  width: 380px;
  min-width:240px;
  height: 100%;
}

.contact-container{
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(252, 255, 242, 0.2);
border-radius: 30px;
padding: 40px;
transition: .4s;
}
.form-group label{
font-weight: 600;
}
.form-group label span{
  color: #F00000;}

.form-group .form-input{
width: 100%;
background: rgba(98, 122, 3, 0.1);
border-radius: 16px;
padding: 18px 20px;
color: var(--white);
outline: none;
border: none;
}
textarea{
  resize: none;
}
.contact-heading{
   font-size: clamp(18px, 10vw, 80px);
   line-height: 80%;
   text-transform: uppercase;
}
.contact-details p{
color: #ffffffd8;
font-size:20px;
}
.contact-details p span{
  font-weight: 600;
  color: var(--white);
}
.side-mobile{
  max-height:420px;
  height: 100%;
  transition: .4s;
}
.side-mobile.sm-1{
  margin-left: -40px;
}
.side-mobile-box{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact-container.hover:hover {
  border-color: var(--primary);
  transform: translate(0px, 5px);
  box-shadow: 0px 0px 20px #53d10f49;
}
.contact-container:hover .side-mobile.sm-1{
  margin-left: 1px;
}
.app-sum{
  font-size: 44px;
  font-weight: 700;
  line-height: 140%;
}
.download-count{
  font-size: 26px;
  font-weight: 700;
  line-height: 120%;
  margin-left: 16px;
}
.download-link{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 140px;
}
.download-link img{
  width: 100%;
}