:root {
  --proxima: "proxima";

  --black: #000;
  --black333: #333;
  --white: #fff;
  --primary: #ff8300;
  --666: #b5b2b3;
  --e7e9ed: #e7e9ed;
  --E6DEED: #e6deed;
  --835CA5: #835ca5;
  --body-bg: #0a0104;
  --body-bg: #0a0104;

  --radius-12: 12px;
  --radius-16: 16px;

  --sm: 14px;
  --base: 16px;
  --lg: 18px;
  --xl: 20px;
  --font22: 22px;
  --xxl: 24px;
  --2xl: 28px;

  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
}

body {
  font-family: var(--proxima);
  font-weight: var(--fw-400);
  background: var(--body-bg);
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

.main-site {
  padding: 79px 0 0;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
  transition: all ease-in-out 200ms;
  background: var(--body-bg);
}

header.header.scroll {
  background: rgb(10 1 4 / 80%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header .navbar {
  padding: 15px 0;
  min-height: 79px;
}

.navbar-brand {
  max-width: 163px;
  width: 100%;
  padding: 0;
}

.navbar-brand:focus-visible {
  outline: none;
}

.header .navbar-nav .nav-item:not(:last-child) {
  margin-right: 12px;
}

.header .navbar-nav .nav-link {
  padding: 0 14px;
  color: var(--white);
  font-size: var(--sm);
  font-weight: var(--fw-600);
  line-height: 20px;
  transition: all ease-in-out 0.3s;
}

.header .navbar-nav .nav-link:hover {
  color: #d20000;
}

.header .navbar-nav .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.contact-btn {
  color: var(--black);
  text-align: center;
  font-family: var(--proxima);
  font-size: var(--sm);
  font-weight: var(--fw-500);
  line-height: normal;
  border-radius: var(--radius-12);
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
  transition: all ease-in-out 200ms;
}

.contact-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-section {
  /* background: url(../images/herobg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  padding: 128px 0 60px;
  margin-top: -79px;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 112px;
  left: 3.2%;
  width: 38px;
  height: 38px;
  background: url("../images/banner_star2.svg");
  background-size: contain;
  background-position: center;
  animation: animName 6s linear infinite;
}

/* feature */
.features {
  /* padding: 128px 0 60px;
  margin-top: -79px; */
  position: relative;
  overflow: hidden;
}

.feature-star-left {
  content: "";
  position: absolute;
  top: -50px;
  bottom: auto;
  left: -120px;
  width: 38px;
  height: 38px;
  z-index: 2;
  background: url(../images/banner_star3.svg);
  background-size: contain;
  background-position: center;
  animation: animName 6s linear infinite;
}

.feature-star-right {
  content: "";
  position: absolute;
  top: -50px;
  bottom: auto;
  right: -120px;
  width: 38px;
  height: 38px;
  z-index: 2;
  background: url(../images/banner_star3.svg);
  background-size: contain;
  background-position: center;
  animation: animName 6s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 4%;
  width: 21px;
  height: 21px;
  background: url("../images/banner_star1.svg");
  background-size: contain;
  background-position: center;
  animation: animName2 6s linear infinite;
}

@keyframes animName2 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.hero-text h1 {
  color: var(--white);
  font-size: 58px;
  font-weight: var(--fw-700);
  line-height: 70px;
  max-width: 660px;
}

.hero-text h1 strong {
  background: linear-gradient(97deg, #ff8300 7.87%, #ff006e 35.94%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: var(--fw-700);
}

.hero-text h1 strong img {
  position: relative;
  top: -4px;
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

.herovideo-main {
  position: relative;
}

.herocircle3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  object-fit: contain;
}

.herocirlce2 {
  width: 492px;
  height: 492px;
  border-radius: 492px;
  border: 1.5px solid #ff0000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: circleRotateReverse 7s infinite linear;
  /* animation: unset; */
}

.stargradient {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  position: absolute;
}

.stargradient2 {
  right: 50%;
  -webkit-transform: translate(-50%, 55%);
  position: absolute;
  bottom: 100%;
  transform: translate(-50%, 55%) scale(0.6);
}

.herocirlce1 {
  width: 592px;
  height: 592px;
  border-radius: 492px;
  border: 1.5px solid #ff0000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: circleRotate 7s infinite linear;
  /* animation: unset; */
}

.stargradient3 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  position: absolute;
  margin: auto;
  top: 0;
}

.stargradient3_small {
  right: 0;
  -webkit-transform: translate(-50%, 55%);
  position: absolute;
  bottom: 0;
  transform: translate(53%, 55%) scale(0.6);
  top: 00;
  margin: auto;
}

@keyframes circleRotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes circleRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* hero */
.hero-shadow-left {
  background: url(../images/hero-shadow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 400px;
  height: 400px;
  position: absolute;
  left: -100px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 100%;
}

.hero-shadow-right {
  background: url(../images/hero-shadow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 530px;
  height: 530px;
  position: absolute;
  right: -130px;
  bottom: -80px;
  z-index: 0;
  border-radius: 100%;
}

/* feature */
.feature-shadow-left {
  background: url(../images/hero-shadow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 500px;
  height: 500px;
  position: absolute;
  left: -120px;
  top: 6%;
  z-index: -1;
  border-radius: 100%;
}

.feature-shadow-left1 {
  background: url(../images/hero-shadow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 500px;
  height: 500px;
  position: absolute;
  left: -120px;
  top: 43%;
  z-index: -1;
  border-radius: 100%;
}

.feature-shadow-left2 {
  background: url(../images/hero-shadow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 500px;
  height: 500px;
  position: absolute;
  left: -120px;
  top: 75%;
  z-index: -1;
  border-radius: 100%;
}

.feature-shadow-right {
  background: url(../images/hero-shadow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 550px;
  height: 550px;
  position: absolute;
  right: -140px;
  top: 24%;
  z-index: -1;
  border-radius: 100%;
}

.feature-shadow-right1 {
  background: url(../images/hero-shadow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 550px;
  height: 550px;
  position: absolute;
  right: -140px;
  top: 56%;
  z-index: -1;
  border-radius: 100%;
}

.hero-video-box {
  text-align: center;
  max-width: 314px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-video-box video {
  border-radius: 52px;
  width: 100%;
}

.hero-img-box {
  text-align: center;
  max-width: 486px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-img-box .hero-img {
  max-width: 267px;
  height: 535px;
  width: 100%;
}

.hero-img-box .hero-img:first-child {
  margin-top: 50px;
  margin-right: -40px;
  position: relative;
  z-index: 1;
}

.hero-text p {
  color: var(--666);
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-400);
  /* max-width: 493px; */
  margin: 18px 0 0;
}

.hero-text .hero-sub-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--fw-600);
  color: var(--white);
}

.hero-text p span {
  color: var(--666);
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-700);
}

.btn_store_group {
  margin: 60px 0 0;
  column-gap: 16px;
  row-gap: 10px;
}

.social-icons {
  column-gap: 10px;
}

.latest-ai-features {
  padding: 92px 0 100px;
  position: relative;
}

.latest-ai-features::after {
  content: "";
  position: absolute;
  bottom: 112px;
  left: 4.5%;
  width: 38px;
  height: 38px;
  background: url(../images/polygon_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: animName 6s linear infinite;
}

.latest-ai-features::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 4.5%;
  width: 29px;
  height: 29px;
  background: url(../images/polygon_right.svg);
  background-size: contain;
  background-position: center;
  animation: animName2 6s linear infinite;
  background-repeat: no-repeat;
}

.vidoe-shape-set::after {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/aiafterbg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 1120px;
  width: 100%;
  margin: 10px auto 0;
  z-index: 1;
}

/* blog section */
.challenges-container {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  /* background-color: #000; */
}

@media (max-width: 991px) {
  .challenges-container {
    max-width: 991px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .challenges-container {
    max-width: 640px;
    padding: 16px;
    gap: 24px;
  }
}

.challenge-card {
  display: flex;
  width: 356px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.card-image {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  /* border: 8px solid #262626; */
}

@media (max-width: 640px) {
  .card-image {
    height: 200px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.card-title {
  color: #fff;
  font-family: var(--proxima);
  font-size: 22px;
  font-weight: var(--fw-700);
  line-height: 24px;
  margin: 0;
}

@media (max-width: 640px) {
  .card-title {
    font-size: 20px;
  }
}

.card-description {
  color: #b5b2b3;
  font-family: var(--proxima);
  font-size: 16px;
  font-weight: var(--fw-400);
  line-height: 24px;
  margin: 0;
}

@media (max-width: 640px) {
  .card-description {
    font-size: 14px;
  }
}

/* .vidoe-shape-set::before {
  content: "";
  position: absolute;
  width: 729px;
  height: 257px;
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(50px);
  z-index: 2;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
} */

.cmn-heading h2 {
  color: var(--white);
  text-align: center;
  font-family: proxima;
  font-size: 46px;
  font-style: normal;
  font-weight: var(--fw-700);
  line-height: 60px;
  /* 130.435% */
}

.vid-aifbox {
  max-width: 844px;
  width: 100%;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  /* border: 11px solid #000;
  background: #000; */
  z-index: 3;
  height: 484px;
}

.vid-aifbox video {
  width: 100%;
  border-radius: 24px;
}

.vid-aifbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
}

/* .vid-aifbox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
   border-radius: 24px; 
  border-radius: 0px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  z-index: 3;
  opacity: 1;
  transition: all ease-in-out 100ms;
} */

.play-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  margin: auto;
  z-index: 4;
  display: block;
  opacity: 1;
}

.play-btn img {
  width: 100px;
}

.vid-aifbox.playing .play-btn {
  opacity: 0;
}

.vid-aifbox.playing::after {
  opacity: 0;
}

.feature-para {
  font-size: 18px;
  line-height: 27px;
  font-weight: var(--fw-400);
  color: var(--666);
  max-width: 970px;
  margin: 12px auto 0;
}

.new-heading {
  position: relative;
}

.new-heading::before {
  content: "";
  width: 75px;
  height: 5px;
  border-radius: 6px;
  background-color: #d20000;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.inner-feat-heading h3 {
  color: var(--white);
  font-family: proxima;
  font-size: 36px;
  font-style: normal;
  font-weight: var(--fw-700);
  line-height: 50px;
}

.inner-feat-heading .para {
  color: var(--666);
  font-family: proxima;
  font-size: 18px;
  font-style: normal;
  font-weight: var(--fw-400);
  line-height: 27px;
  margin: 14px 0 0;
  max-width: 492px;
}

.inner-feat-heading .para span {
  color: var(--white);
  font-weight: 600;
}

.features {
  padding: 100px 0;
  position: relative;
}

/* .features::after {
  content: "";
  position: absolute;
  top: -10%;
  right: 0;
  height: 274px;
  width: 137px;
  background: url(../images/clipcirclehalf.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 1;
} */

.features-column {
  row-gap: 90px;
}

.food-photo-masterpiece {
  padding: 100px 0;
  background: url("../images/fodsmbg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.foodms-heading h3 {
  color: #000;
  font-family: proxima;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}

.foodms-heading p {
  color: #666;
  font-family: proxima;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  margin: 20px 0 0;
  padding-right: 10px;
}

.right-custom-part {
  position: relative;
  /* border: 1px solid red; */
  min-height: 510px;
}

.feature-col-video {
  border-radius: 42px;
  /* background: #fff; */
  box-shadow: 2px 4px 50px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* padding: 10px; */
  max-width: 498px;
  width: 100%;
  height: 378px;
}

.feature-col-video video {
  width: 100%;
  border-radius: 32px;
}

.feature-col-video img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 32px;
}

.grub-hub {
  max-width: 28%;
  width: 100%;
  position: absolute;
  right: 0;
  padding-top: 5%;
  -webkit-animation: float 4s infinite linear;
  animation: grub 4s infinite linear;
}

@keyframes grub {
  from {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }
}

.uber {
  max-width: 58%;
  position: absolute;
  right: 0;
  width: 100%;
  -webkit-animation: float 16.8s infinite linear;
  animation: uber 5s infinite linear;
}

@keyframes uber {
  from {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }

  to {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }
}

.chownow {
  max-width: 46%;
  position: absolute;
  width: 100%;
  right: 0;
  padding-top: 21%;
  animation: uber 5s infinite linear;
}

@keyframes chownow {
  from {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }

  to {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }
}

.clover {
  max-width: 25%;
  left: 32%;
  position: absolute;
  top: 0;
  padding-top: 23%;
  width: 100%;
  animation: clover 5s infinite linear;
}

@keyframes clover {
  from {
    transform: rotate(0deg) translate3d(5px, 0, 0) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translate3d(5px, 0, 0) rotate(-360deg);
  }
}

.postmates {
  right: 0;
  max-width: 160px;
  position: absolute;
  width: 100%;
  top: 44%;
  animation: doordash 5s infinite linear;
}

@keyframes bounce2 {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.cttoast {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 40%;
  width: 100%;
  animation: cttoast 5s infinite linear;
}

@-webkit-keyframes cttoast {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.square {
  position: absolute;
  padding-bottom: 11%;
  max-width: 56%;
  width: 100%;
  left: 0;
  text-align: right;
  bottom: 0;
  animation: square 5s infinite linear;
}

@keyframes square {
  0% {
    transform: translatey(-20px);
  }

  50% {
    transform: translatey(0px);
  }

  100% {
    transform: translatey(-20px);
  }
}

.doordash {
  position: absolute;
  bottom: 0;
  max-width: 35%;
  text-align: right;
  width: 100%;
  padding-bottom: 10%;
  animation: doordash 5s infinite linear;
}

@keyframes doordash {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

.menusnap-editing {
  padding: 100px 0;
}

.menusnap-gradient {
  padding: 50px 46px 0 30px;
  border-radius: 32px;
  background: linear-gradient(283deg, #fff6ed 0%, #fff0f7 100%);
}

.menusnap-heading h5 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  /* 122.222% */
  margin: 0 0 20px;
}

.menusnap-heading p {
  color: #000;
  font-family: proxima;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 150% */
  max-width: 600px;
}

.menusnap-heading h5 span {
  background: linear-gradient(93deg, #ff8300 0.33%, #ff006e 42.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.getapp-txt {
  color: #000;
  font-family: proxima;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
}

.iphone-cut {
  position: relative;
}

.halfcircle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 63%;
  border-radius: 30rem 30rem 0 0;
}

.animated-gradient {
  animation: animateBg 8s linear infinite;
  background-image: linear-gradient(90deg,
      #ff8300,
      #db5779,
      #ff9524,
      #f13765,
      #ff8300,
      #db5779);
  background-size: 500% 100%;
}

@keyframes animateBg {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 0%;
  }
}

@keyframes gradients {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 50% 0;
  }

  50% {
    background-position: 90% 0;
  }

  60% {
    background-position: 60%;
  }

  75% {
    background-position: 40%;
  }

  100% {
    background-position: 0 0;
  }
}

.iphone-img {
  width: 100%;
  z-index: 1;
  position: relative;
  height: auto;
  object-fit: contain;
  object-position: bottom;
}

.pricing-sec {
  padding: 0px 0 90px;
}

.pricing-list {
  text-align: center;
}

.pricing-list ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.pricing-list li {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.pricing-list li img {
  width: 20px;
}

.pricing-list li span {
  color: #666;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}

.pricing-list li:not(:last-child) {
  margin-bottom: 20px;
}

/* .plan-box {
  border-radius: 24px;
  border: 1px solid #dfdfdf;
  background: #fff;
  padding: 22px 16px 18px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
} */

.plan-box {
  border-radius: 24px;
  border: none;
  background: #fff;
  padding: 22px 16px 18px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 18px 40px 0px rgba(0, 0, 0, 0.02),
    0px 8px 14px 0px rgba(0, 0, 0, 0.02), 0px 0px 12px 0px rgba(0, 0, 0, 0.03);
  align-items: start;
  /* border: 1px solid #ebebeb; */
  cursor: pointer;
  transition: all ease-in-out 200ms;
}

.plan-box:hover {
  box-shadow: 0px 18px 32px 0px rgba(255, 131, 0, 0.04),
    0px 6px 14px 0px rgba(255, 131, 0, 0.05),
    0px 0px 12px 0px rgba(255, 131, 0, 0.03);
}

.planbox-gradient {
  position: relative;
  transition: all;
}

.plan-box h4 {
  color: var(--black);
  font-size: 14px;
  font-weight: var(--fw-500);
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.plan-box h3 {
  color: var(--black);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: auto 0 18px;
}

.plan-box h3 sub {
  color: rgba(0, 0, 0, 0.5);
  font-family: proxima;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  bottom: 0;
}

.trial-tag {
  color: #4d4d4d;
  font-family: proxima;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  border-radius: 40px;
  background: rgba(232, 232, 232, 0.5);
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pricing-row {
  margin: 40px 0 0;
}

.gift-circle {
  width: 25.714px;
  height: 25.714px;
  flex-shrink: 0;
  border-radius: 57.857px;
  opacity: 0.9;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.save-tag {
  border-radius: 73.929px 91px 0px 73.929px;
  background: linear-gradient(90deg, #ffbe0b -42.56%, #ff006e 95.18%);
  padding: 6px 9px 6px 6px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.save-tag .sv-txt {
  color: #fff;
  text-align: right;
  font-family: proxima;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-left: 5px;
}

.gift-circle>span {
  width: 50px;
  height: 50px;
  transform: scale(3);
  position: relative;
  top: -5px;
}

.pricing-row>.row {
  row-gap: 16px;
  justify-content: center;
}

.plan-box .yrl-plan {
  width: calc(100% - 50%);
}

.plan-box h3 {
  font-size: 26px;
  line-height: normal;
  margin: auto 0 18px;
}

.footer {
  padding: 25px 0;
  background: #0f0f0f;
  position: relative;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}

.foot-links a {
  color: #fff;
  font-family: proxima;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.copyright-txt {
  color: #fff;
  font-family: proxima;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}

.footer-logo {
  margin-bottom: 26px;
}

.footer-logo:focus-visible {
  outline: none;
}

.footer-logo img {
  max-width: 163px;
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.foot-links {
  margin-bottom: 25px;
}

.opacity-footer-txt {
  color: #fff;
  text-align: center;
  font-family: proxima;
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 200px;
  /* 166.667% */
  opacity: 0.07;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

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

/* floating shadows */

.uber img {
  box-shadow: 12px 12px 30px 0px rgba(7, 194, 107, 0.25);
  border-radius: 50%;
}

.grub-hub img {
  filter: drop-shadow(12px 12px 30px rgba(255, 128, 0, 0.25));
  border-radius: 50%;
}

.chownow img {
  filter: drop-shadow(12px 12px 30px rgba(253, 79, 87, 0.25));
  border-radius: 50%;
}

.clover img {
  box-shadow: 12px 12px 30px 0px rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.postmates img {
  box-shadow: 12px 12px 30px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}

.square img {
  filter: drop-shadow(12px 12px 30px rgba(0, 0, 0, 0.25));
  border-radius: 50%;
}

.cttoast img {
  box-shadow: 12px 12px 30px 0px rgba(255, 76, 0, 0.25);
  border-radius: 50%;
}

.doordash img {
  box-shadow: 12px 12px 30px 0px rgba(255, 48, 8, 0.25);
  border-radius: 50%;
}

.inner-page {
  padding: 70px 0;
}

.inner-page .main-title {
  font-size: 40px;
  font-weight: 700;
}

.inner-page p {
  color: #333;
  line-height: 32px;
  font-size: 18px;
}

.max-w-100 {
  max-width: 100% !important;
}

.inner-pages-site .hero-section::before,
.inner-pages-site .hero-section::after {
  display: none;
}

.inner-page ul {
  padding: 0 0 0 15px;
  list-style: none;
}

.inner-page ul li {
  padding-left: 20px;
  position: relative;
  font-size: 18px;
  line-height: 32px;
}

.inner-page ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  margin: auto 0;
  bottom: 4px;
}

.inner-talkwith {
  border-radius: var(--radius-16);
  border: 1px solid var(--e7e9ed);
  background: var(--white);
  box-shadow: 0 0 20px #00000014;
  padding: 30px;
}

.contact-cmn-heading h3 {
  color: var(--black);
  font-size: var(--xxl);
  font-weight: var(--fw-600);
  line-height: 120%;
}

.contact-cmn-heading p {
  color: var(--black333);
  font-size: var(--base);
  font-weight: var(--fw-400);
  line-height: 169%;
  margin: 10px 0 0;
}

.callbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 60px;
  height: 60px;
  background: #fdebe1;
  border-radius: var(--radius-16);
}

.callbox .custom-icon {
  color: var(--835CA5);
  font-size: var(--30);
}

.calltext h4 {
  color: var(--black333);
  font-size: var(--sm);
  font-weight: var(--fw-400);
  line-height: 120%;
  margin: 0 0 7px;
}

.callbox svg path {
  fill: #ec503c;
  stroke: #ec503c;
}

.calltext p {
  color: var(--black);
  font-size: var(--base);
  font-weight: var(--fw-500);
  line-height: 120%;
}

.callbox-column {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 22px 0 0;
}

.contact-form {
  row-gap: 30px;
  padding-left: 30px;
}

label.error {
  margin-top: 5px;
  font-size: 14px;
}

.custom-country-picker .intl-tel-input {
  width: 100%;
}

.swal2-container {
  z-index: 9999999999999;
}

.diff-color-bg {
  background: linear-gradient(283deg, #fff6ed 0%, #fff0f7 100%);
  color: #ff2222;
}

.launch-section {
  padding: 60px 0;
  position: relative;
  background: #171717;
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
}

.smooth-typing-wrapper {
  display: flex;
  margin: auto;
  position: absolute;
  max-width: 69vw;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  /* padding-top: 80px; */
  padding-left: 15px;
  padding-right: 15px;
}

.smooth-typing-wrapper .smooth-typing {
  font-size: 10vw;
  overflow: hidden;
  white-space: nowrap;
  color: var(--greenlight);
  font-weight: 800;
  line-height: 0.8;
  animation: smooth-typing 5s steps(500) infinite;
}

@keyframes smooth-typing {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

.launch-relative {
  position: relative;
  z-index: 4;
}

.launch-content h6 {
  color: var(--white);
  text-align: center;
  font-size: 46px;
  font-weight: var(--fw-700);
  line-height: normal;
}

.launch-content p {
  color: var(--white);
  font-size: 22px;
  font-weight: var(--fw-600);
  line-height: 26px;
  /* 162.5% */
}

.launching-img {
  width: 52px;
  height: 52px;
}

.notify-input {
  width: calc(100% - 149px);
}

.notify-form {
  border-radius: 16px;
  background: #0a0104;
  justify-content: space-between;
  padding: 24px;
  max-width: 546px;
  margin: 0 auto;
}

.notify-form .form-control {
  border-radius: 10px;
  background: #191919;
  padding: 12px 16px;
  color: var(--black);
  font-size: 14px;
  font-weight: var(--fw-400);
  line-height: normal;
  border: none;
  box-shadow: none;
  color: var(--white);
  outline: none;
  height: 52px;
}

.notify-form .form-control::placeholder {
  color: rgb(255 255 255 / 30%);
}

.notify-form .btn-primary {
  color: var(--black);
  background-color: var(--white);
  font-size: 14px;
  line-height: normal;
  font-weight: var(--fw-700);
  border-radius: 10px;
  border: none;
  height: 52px;
  min-width: 139px;
  max-width: 139px;
  width: 100%;
  box-shadow: none;
}

.notify-form .btn-primary:active {
  color: #d20000;
  background-color: var(--white);
  box-shadow: none;
}

/* slider */
.experience-section {
  padding: 100px 0;
}

/* .event-card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
} */

.experience-section .custom-container {
  height: auto !important;
}

/* .custom-container .swiper-slide {
  width: 784px !important;
  height: fit-content;
} */

/* .swiper-slide.swiper-slide-active {
  width: 784px !important;
} */

.event-card__container {
  width: 100%;
  /* height: auto; */
  position: relative;
  border-radius: 36px;
  background-color: #151515;
  padding: 12px;
}

.event-card__content-wrapper {
  display: flex;
  gap: 32px;
}

.event-card__image-container {
  margin: 0;
}

.event-card__image {
  width: 285px;
  /* max-height: 350px; */
  max-height: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.event-card__text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
  padding-right: 12px;
}

.quote-icon {
  width: 58px;
  height: 44px;
}

.event-card__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card__title {
  color: #fff;
  font-family: var(--proxima);
  font-size: 20px;
  font-weight: var(--fw-600);
  line-height: 26px;
  margin: 0;
  font-style: italic;
}

.event-card__description {
  color: #b5b2b3;
  font-family: var(--proxima);
  font-size: 16px;
  font-weight: var(--fw-400);
  font-style: italic;
  line-height: 21px;
  margin: 0;
}

/* slider */
.swiper-container {
  width: 100%;
  height: 100%;
}

/*  */
.swiper-button-container {
  position: static;
  left: 0;
  transform: inherit;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  column-gap: 32px;
}

.cmn-arrow {
  border: 1px solid var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev {
  background-image: unset;
  background: url(../images/slider/arrow-left.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  position: unset;
  /* transform: translateY(-50%); */
  z-index: 1;
  cursor: pointer;
}

.swiper-button-next {
  background-image: unset;
  background: url(../images/slider/arrow-right.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  position: unset;
  /* transform: translateY(-50%); */
  z-index: 1;
  cursor: pointer;
}

.swiper-button-container .swiper-button-next,
.swiper-button-container .swiper-button-prev {
  margin-top: 0;
}

.swiper-wrapper {
  height: auto;
}

.custom-container {
  position: relative;
}

.custom-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 328px;
  /* height: 374px; */
  height: 100%;
  background: linear-gradient(270deg,
      rgba(10, 1, 4, 0) 0%,
      rgba(10, 1, 4, 0.5) 25.35%,
      #0a0104 100%);
}

.custom-container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 328px;
  /* height: 374px; */
  height: 100%;
  background: linear-gradient(90deg,
      rgba(10, 1, 4, 0) 0%,
      rgba(10, 1, 4, 0.5) 25.35%,
      #0a0104 100%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: unset;
}

/* new slider demo */

.custom-container {
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 1rem;
  width: 2rem;
  height: 2rem;
  opacity: 0.75;
  border-radius: 50%;
  color: var(--white-100);
  background: var(--black-300);
}

.experience-section .swiper-button-container {
  margin: 24px 0 0;
}

.experience-section .event-card {
  height: 100%;
  display: flex;
}

.experience-section .swiper-slide {
  height: auto;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.event-card__content-wrapper {
  height: 100%;
}

.custom-alert {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 999999999999;
}

.inner-pages-site .hero-text h1 strong {
    color: #d20000;
    background: inherit;
    -webkit-text-fill-color: inherit;
}

/* media query  */
/*  /////////////// */
/*  //// */
/*  /////////// */
/* media query  */

@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .vidoe-shape-set::before {
    -webkit-backdrop-filter: blur(50px);
  }
}

@media only screen and (max-width: 1399px) {
  .right-custom-part {
    min-height: 560px;
  }

  .doordash {
    max-width: 28%;
  }

  .square {
    max-width: 54%;
    padding-bottom: 15%;
  }

  .clover {
    max-width: 37%;
    left: 0;
    position: absolute;
    top: 0;
    padding-top: 28%;
    width: 100%;
    text-align: right;
  }

  .uber {
    max-width: 70%;
  }

  .chownow {
    max-width: 54%;
    padding-top: 23%;
  }

  .herocirlce1 {
    width: 552px;
    height: 552px;
  }

  .herocirlce2 {
    width: 462px;
    height: 462px;
  }

  .herocircle3 {
    max-width: 370px;
  }

  /*  */
}

@media (max-width: 1350px) {
  .event-card {
    padding: 20px;
  }

  .event-card__container {
    width: 100%;
  }

  .quote-icon {
    width: 28px;
    height: 24px;
  }

  .event-card__title {
    font-size: 16px;
    line-height: 18px;
  }

  .event-card__description {
    font-size: 14px;
    line-height: 16px;
  }

  .event-card__content-wrapper {
    display: flex;
    gap: 24px;
  }

  .event-card__image {
    width: 220px;
    max-height: 100%;
  }

  .custom-container::before {
    width: 58px;
    height: 284px;
  }

  .custom-container::after {
    width: 58px;
    height: 284px;
  }

  .experience-section .custom-container {
    height: 360px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    background-size: 12px;
  }

  .swiper-button-container {
    width: 116px;
    column-gap: 22px;
  }

  .cmn-arrow {
    width: 38px;
    height: 38px;
  }

  .experience-section {
    padding: 45px 0 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-img-box .hero-img {
    max-width: 232px;
    height: 455px;
    width: 100%;
  }

  .vid-aifbox {
    max-width: 705px;
  }

  .vidoe-shape-set::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 87px;
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(50px);
    z-index: 2;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .features-column>.row:nth-of-type(even) .inner-feat-heading {
    padding-right: 25px;
  }

  .features-column {
    row-gap: 50px;
  }

  .chownow {
    transform: scale(0.8);
  }

  .chownow {
    max-width: 65%;
    padding-top: 30%;
  }

  .square {
    max-width: 54%;
    padding-bottom: 10%;
  }

  .cttoast {
    max-width: 43%;
  }

  .clover {
    max-width: 30%;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .hero-text h1 strong img {
    width: 35px;
  }

  .hero-video-box {
    max-width: 285px;
  }

  .herocirlce1 {
    width: 500px;
    height: 500px;
  }

  .herocirlce2 {
    width: 422px;
    height: 422px;
  }

  .herocircle3 {
    max-width: 340px;
  }

  .halfcircle {
    height: 46%;
  }
}

@media only screen and (max-width: 1024px) {
  .inner-feat-heading h3 {
    font-size: 28px;
    line-height: 40px;
  }

  .foodms-heading h3 {
    font-size: 26px;
    line-height: 35px;
  }

  .foodms-heading p {
    margin: 15px 0 0;
    padding: 0;
  }

  .menusnap-heading h5 {
    font-size: 26px;
    line-height: 34px;
    margin: 0 0 10px;
  }

  .btn_store_group {
    margin: 30px 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .challenge-card {
    width: 100%;
    max-width: 500px;
  }

  .feature-col-video {
    height: 308px;
  }

  .header .navbar-toggler {
    padding: 0;
    border: none;
    box-shadow: none !important;
    outline: none !important;
  }

  .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--black);
    box-shadow: 0 0 5px #0000003d;
    border-radius: 10px;
  }

  .navbar-collapse ul {
    padding: 15px 15px;
  }

  .header .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }

  .header .navbar-nav .nav-item:not(:last-child) .nav-link {
    border-bottom: 1px solid #d9cdcd;
  }

  .header .navbar-nav .nav-link {
    padding: 10px 0px;
  }

  .header .navbar-nav .nav-item:first-child .nav-link {
    padding-top: 0;
  }

  .header .navbar-nav .nav-item:last-child .nav-link {
    padding-bottom: 0;
  }

  .header .navbar {
    padding: 8px 0;
    min-height: 60px;
  }

  .contact-btn {
    padding: 12px 14px;
  }

  .latest-ai-features {
    padding: 45px 0 60px;
  }

  .cmn-heading h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .main-site {
    padding: 60px 0 0;
  }

  .vidoe-shape-set::after {
    max-width: 100%;
    width: calc(100% - 16px);
  }

  .play-btn img {
    width: 80px;
  }

  .features-column>.row:nth-of-type(even) .inner-feat-heading {
    padding-right: 8px;
  }

  .features-column {
    row-gap: 30px;
  }

  .inner-feat-heading h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .features {
    padding: 0 0 45px;
  }

  .food-photo-masterpiece {
    padding: 45px 0;
  }

  .foodms-heading p {
    margin: 10px 0 0;
    padding: 0;
  }

  .foodms-heading h3 {
    font-size: 22px;
    line-height: 32px;
  }

  .clover {
    max-width: 40%;
    left: 0;
    position: absolute;
    top: 0;
    padding-top: 24%;
    width: 100%;
    text-align: right;
  }

  .chownow {
    max-width: 53%;
    padding-top: 23%;
  }

  .menusnap-editing {
    padding: 45px 0;
  }

  .menusnap-gradient>.row {
    flex-direction: column-reverse;
  }

  .menusnap-heading h5 br {
    display: none;
  }

  .menusnap-heading {
    text-align: center;
  }

  .menusnap-heading p {
    max-width: 100%;
  }

  .pricing-sec {
    padding: 0px 0 45px;
  }

  .pricing-list li:not(:last-child) {
    margin-bottom: 12px;
  }

  /* .features::after {
    width: 70px;
  } */

  .herocirlce1 {
    width: 550px;
    height: 550px;
  }

  .herocirlce2 {
    width: 452px;
    height: 452px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1,
  .hero-text p {
    max-width: 100%;
  }

  .btn_store_group {
    margin: 25px 0 0;
    justify-content: center;
  }

  .hero-section {
    padding-top: 90px;
  }

  .halfcircle {
    height: 60%;
  }

  .inner-page {
    padding: 40px 0;
  }

  .event-card__image {
    max-height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-brand {
    max-width: 120px;
  }

  .latest-ai-features {
    padding: 40px 0 60px;
  }

  .cmn-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .vid-aifbox {
    max-width: 650px;
  }

  .play-btn img {
    width: 65px;
  }

  .features-column>.row:nth-of-type(even) {
    flex-direction: column-reverse;
  }

  .features-column {
    row-gap: 20px;
  }

  .inner-feat-heading h3 br {
    display: none;
  }

  .inner-feat-heading {
    text-align: center;
  }

  .inner-feat-heading .para {
    margin: 10px 0 0;
    font-size: var(--base);
    line-height: 26px;
  }

  .inner-feat-heading h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .features {
    padding: 0 0 30px;
  }

  .features-column {
    row-gap: 30px;
  }

  .food-photo-masterpiece {
    padding: 30px 0 0;
  }

  .foodms-heading {
    text-align: center;
  }

  .foodms-heading h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .foodms-heading p {
    font-size: 16px;
    line-height: 25px;
  }

  .chownow {
    max-width: 67%;
    padding-top: 34%;
  }

  .clover {
    max-width: 30%;
    padding-top: 34%;
  }

  .postmates {
    top: 39%;
  }

  .menusnap-editing {
    padding: 30px 0;
  }

  .pricing-sec {
    padding: 0px 0 30px;
  }

  .pricing-row {
    margin: 25px 0 0;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 18px;
  }

  .foot-links {
    margin-bottom: 20px;
    justify-content: center;
    gap: 10px 17px;
  }

  .copyright-txt {
    text-align: center;
  }

  .hero-section::after,
  .hero-section::before,
  .latest-ai-features::after,
  .latest-ai-features::before {
    display: none;
  }

  .opacity-footer-txt {
    font-size: 80px;
  }

  .hero-section .container {
    max-width: 100%;
  }

  .hero-video-box {
    max-width: 255px;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 36px;
    padding: 0 15px;
  }

  .hero-text p {
    margin: 12px 0 0;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-text h1 strong img {
    width: 25px;
  }

  .herocirlce1 {
    width: 480px;
    height: 480px;
  }

  .herocirlce2 {
    width: 412px;
    height: 412px;
  }

  .hero-video-box video {
    border-radius: 32px;
  }

  .hero-section {
    padding-bottom: 30px;
  }

  .inner-page {
    padding: 30px 0;
  }

  .inner-page h4 {
    font-size: 20px;
  }

  .inner-page h5 {
    font-size: 18px;
  }

  .inner-page p,
  .inner-page ul li {
    font-size: 16px;
    line-height: 26px;
  }

  .inner-page h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .event-card {
    padding: 16px;
  }

  .event-card__content-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .experience-section .custom-container {
    height: 580px;
  }

  .event-card__container {
    padding: 16px;
  }

  .event-card__image {
    width: 100%;
  }

  .event-card__text-content {
    padding-top: 0;
    padding-right: 0;
  }

  .custom-container::before,
  .custom-container::after {
    width: 48px;
    height: 100%;
  }

  .event-card__image {
    max-height: 350px;
  }

  .experience-section .swiper-button-container {
    margin: 10px 0 0;
  }

  .experience-section {
    padding: 45px 0 30px;
  }

  .experience-section .cmn-heading h2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-brand {
    max-width: 105px;
  }

  .contact-btn {
    padding: 11px 14px;
  }

  .latest-ai-features {
    padding: 25px 0 40px;
  }

  .cmn-heading h2 {
    font-size: 22px;
    line-height: 26px;
  }

  .vid-aifbox {
    border-width: 5px;
    max-width: 95%;
    border-radius: 16px;
  }

  .vid-aifbox::after,
  .vid-aifbox video {
    border-radius: 12px;
  }

  .play-btn img {
    width: 45px;
  }

  .vidoe-shape-set::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 87px;
    border-radius: 42px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(50px);
    z-index: 2;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .features {
    padding: 30px 0 30px;
  }

  .features-column {
    row-gap: 25px;
  }

  .inner-feat-heading h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 10px 0 0;
  }

  .inner-feat-heading .para {
    margin: 6px 0 0;
  }

  .foodms-heading h3 {
    font-size: 18px;
    line-height: 25px;
  }

  .foodms-heading p {
    margin: 6px 0 0;
  }

  .header .navbar-nav .nav-link {
    font-size: 15px;
    padding: 13px 0px;
  }

  .cmn-circle {
    position: static;
    padding: 0;
    width: 50%;
    max-width: inherit;
    text-align: center;
  }

  .right-custom-part {
    min-height: 560px;
    position: static;
    display: flex;
    flex-wrap: wrap-reverse;
    row-gap: 21px;
    align-items: center;
  }

  .postmates {
    order: 1;
  }

  .uber {
    order: 2;
  }

  .menusnap-gradient {
    padding: 25px 15px 0;
    border-radius: 15px;
    overflow: hidden;
  }

  .menusnap-gradient .btn_store_group img {
    width: 160px;
  }

  .menusnap-heading h5 {
    font-size: 22px;
    line-height: 29px;
    margin: 0 0 10px;
  }

  .menusnap-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .plan-box h4 {
    margin: 0 0 10px;
  }

  .plan-box {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .plan-box h3 {
    font-size: 20px;
    line-height: normal;
    margin: auto 0 8px;
  }

  .save-tag {
    border-radius: 73.929px 46px 0px 73.929px;
  }

  .pricing-list li span {
    font-size: var(--base);
    line-height: 21px;
    text-align: left;
  }

  .opacity-footer-txt {
    font-size: 60px;
  }

  .feature-col-video {
    width: 94%;
    margin: 0 auto;
    padding: 7px;
    border-radius: 24px;
  }

  .feature-col-video video {
    border-radius: 20px;
  }

  .herocircle3 {
    max-width: 300px;
  }

  .herocirlce2 {
    width: 360px;
    height: 360px;
  }

  .herocirlce1 {
    width: 430px;
    height: 430px;
  }

  .hero-section .btn_store_group img {
    max-width: 150px;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 32px;
    padding: 0 5px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 26px;
  }

  .hero-img-box .hero-img {
    max-width: 162px;
    height: 315px;
    width: 100%;
  }

  .vid-aifbox {
    height: 284px;
  }

  .hero-text p span {
    font-size: 16px;
    line-height: 26px;
  }

  .btn_store_group {
    margin: 18px 0 0;
  }

  .herovideo-main {
    min-height: 449px;
  }

  .inner-pages-site .hero-section {
    padding-top: 100px;
  }

  .inner-page {
    padding: 25px 0;
  }

  .inner-page h4 {
    font-size: 18px;
  }

  .inner-page h5 {
    font-size: 16px;
  }

  .inner-pages-site .hero-text h1 {
    font-size: 22px;
    line-height: 24px;
    padding: 0 5px;
  }
}

@media only screen and (max-width: 510px) {
  .custom-price-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .menusnap-heading h5 {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 10px;
  }

  .opacity-footer-txt {
    font-size: 42px;
  }

  .cmn-circle img {
    transform: scale(0.8);
  }

  .right-custom-part {
    row-gap: 4px;
  }

  .hero-video-box {
    max-width: 220px;
    margin: 15px auto 0;
  }

  .herocircle3 {
    max-width: 270px;
  }

  .herocirlce2 {
    width: 330px;
    height: 330px;
  }

  .herocirlce1 {
    width: 390px;
    height: 390px;
  }

  .footer .btn_store img {
    max-width: 158px;
  }

  .herovideo-main {
    min-height: 400px;
  }

  .notify-input {
    width: 100%;
  }

  .feature-col-video {
    height: 258px;
  }

  .inner-page p,
  .inner-page ul li,
  .inner-page a {
    font-size: 15px;
    line-height: 25px;
  }

  .launch-content h6 {
    font-size: 22px;
    word-break: break-all;
  }

  .inner-page h4 {
    font-size: 16px;
    line-height: normal;
  }

  .launch-content p {
    font-size: 16px;
    line-height: 20px;
  }

  .hero-text .hero-sub-title {
    font-size: 14px;
    line-height: 18px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form .form-control {
    width: 100%;
  }

  .notify-form .btn-primary {
    min-width: 100%;
    max-width: 100%;
  }

  .inner-page h2 {
    font-size: 20px;
    line-height: normal;
  }

  .inner-pages-site .hero-text h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .event-card__image {
    max-height: 250px;
  }
}

@media only screen and (max-width: 375px) {
  .menusnap-gradient .btn_store_group img {
    width: 130px;
  }

  .hero-text h1 {
    font-size: 22px;
    line-height: 30px;
    padding: 0 5px;
  }

  .herocirlce1 {
    width: 320px;
    height: 330px;
  }

  .herocirlce2 {
    width: 280px;
    height: 280px;
  }

  .herocircle3 {
    max-width: 230px;
  }

  .hero-video-box {
    max-width: 190px;
  }
}