@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --accordion-btn-active-bg: #7652f7;
  --accordion-btn-active-color: #9500ff;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}
.nav-item {
  margin-right: 2%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background: #000;
  overflow-x: hidden !important;
}
.section {
  width: 100%;
  height: 100%;
  padding: 100px !important;
}

/* hero section animation */
.hero-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: auto;
  gap: 40px;
}
.hero-heading {
  padding-top: 100px;
}
.hero-image-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.hero-image {
  max-width: 100%;
  height: 100%;
}

.home-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-text h2,
.animate-text {
  margin: 0;
  word-wrap: break-word;
  display: inline-block;
  vertical-align: bottom;
  line-height: 140%;
}

.home-text h2 {
  font-weight: bolder;
  line-height: 140%;
}

.animate-text {
  margin: 0;
  overflow: hidden;
  display: inline-block;
  transform-origin: center;
}

.animate-text span {
  color: #7652f7;
  margin: 0;
  padding: 0;
  font-weight: bolder;
  display: inline-block;
  line-height: 140%;
  /* vertical-align: baseline; */
  display: none;
}

.animate-text-description {
  font-size: initial;
  font-weight: normal;
  color: #d9d9d9;
}

.animate-text span.text-in {
  display: block;
  animation: textIn 0.5s ease;
}

.animate-text span.text-out {
  animation: textOut 0.5s ease;
}

@keyframes textIn {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes textOut {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

#nocode {
  background-color: #000;
  width: auto;
  align-items: center;
  vertical-align: middle;
  color: #d9d9d9;
  padding: 10% 6%;
  z-index: 0;
}
#myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.icon {
  max-width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 39px;
}

.navbar {
  font-family: "Red Hat Display", sans-serif;
  background: #000 !important;
}
.navbar-items {
  background: #000 !important;
}
.logo {
  padding: 2% 2%;
  max-width: 80%;
}
.navbar-brand {
  padding: 2%;
}
.dropdown-menu {
  white-space: normal;
  background-color: #000 !important;
  color: #fff;
  display: flex;
  flex-direction: row;
  width: 500px;
  border-radius: 15px;
}

.navbar-toggler {
  float: right;
  margin-top: 4%;
  width: 60px;
  height: auto;
}
.navbar-icon {
  width: 60%;
}
.nav-item {
  width: 120px;
}
.nav-link {
  color: #d9d9d9 !important;
}
.dropdown-item {
  color: #d9d9d9 !important;
}
.dropdown-item:hover {
  color: #000 !important;
}

.header {
  font-family: "Red Hat Display", sans-serif;
  color: #d9d9d9;
  position: absolute;
  top: 45%;
  width: 100%;
  text-align: center;
}
.red {
  color: #9500ff;
}
.purple {
  color: #7652f7;
}
a {
  text-decoration: none !important;
}

.home-text {
  position: relative;
  z-index: 2;
}
.pills-tab-container {
  padding: 20px !important;
}
#pills-tab {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 240px);
  width: 100%;
  align-items: flex-start;
  text-align: center;
  padding: 20px;
}
.nav-pills .nav-item {
  margin-right: 5%;
}
.nav-pills .nav-item .nav-link {
  color: #4a5568 !important;
  font-family: "Red Hat Display", sans-serif;
  width: 240px;
  padding: 10% !important;
}
.nav-pills .nav-link.active {
  background-color: #7652f7 !important;
  color: white !important;
}

.home-text h4 {
  margin: 0;
  overflow: hidden;
}
.home-text h4 span {
  color: #7652f7;
  font-weight: 600;
  display: inline-block;
  line-height: 140%;
  display: none;
}

.home-text h4 span.text-in {
  display: block;
  animation: textIn 0.5s ease;
}
.home-text h4 span.text-out {
  animation: textOut 0.5s ease;
}
.home-accordion-header {
  font-weight: bolder;
}
.home-accordion-header:hover {
  color: #9500ff;
}

.accordion-section-content {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.know-more {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
}
.know-more h5 {
  text-align: left;
}

.accordion-button:not(.collapsed).home-accordion-header {
  background-color: #efeaff !important;
  color: #9500ff !important;
  border-color: rgb(0, 0, 0) !important;
}

/*to add color to the button icon*/
.accordion-button:not(.collapsed)::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="#9500ff"><path d="M2 3.5a.5.5 0 01.5-.5h11a.5.5 0 110 1h-11A.5.5 0 012 3.5zm0 5a.5.5 0 01.5-.5h11a.5.5 0 110 1h-11A.5.5 0 012 8.5zm0 5a.5.5 0 01.5-.5h11a.5.5 0 110 1h-11a.5.5 0 01-.5-.5z"/></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  filter: invert(100%) sepia(0%) saturate(7502%) hue-rotate(283deg)
    brightness(104%) contrast(103%);
}

/* Video modal scrolling */
#video-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-modal-scroll-content {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.video-modal-nav-container {
  min-width: 260px !important;
  height: 500px;
  z-index: 1;
  border-radius: 30px;
}

.video-modal-nav-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  width: 260px !important;
  gap: 20px;
}

.flex-center {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.underline-text {
  padding-bottom: 5px;
  width: max-content;
  text-align: center;
  border-bottom: 3px solid #9500ff;
}

.navlist {
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.fixed {
  position: fixed;
}

.navlist li {
  margin-bottom: 20px;
}

.navlist a {
  color: black;
  font-weight: bolder;
  font-size: 1rem;
  padding: 10px 0px;
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.03em;
  word-spacing: 0.05em;
}

.navlist a:hover {
  color: #9500ff;
}

.active-nav {
  color: #9500ff !important;
}
.video-modal-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 40px;
}

.video-modal-nav-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}
.video-modal-nav-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #efeaff;
  border-radius: 30px;
  gap: 40px;
  padding: 40px;
}

.video-modal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #efeaff;
  border-radius: 30px;
  gap: 5px;
}

.video-modal-grid-columns-content {
  padding: 0px 10px;
  width: 100%;
  flex: 0 0 calc(50% - 20px);
}

.video-modal-grid-image {
  width: 100%;
  padding: 0;
}
.video-modal-grid-text {
  text-align: justify;
  display: flex;
  gap: 10px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 8px;
}
.video-modal-grid-text p {
  text-align: left;
  padding: 0px;
  width: 100%;
  margin: 0px;
}
.video-modal-grid-text h5 {
  color: black;
  font-weight: bolder;
  font-family: "Red Hat Display", sans-serif;
  word-spacing: 0.05em;
}
.modal-grid-text-columns {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;  
}
.brand-icon {
  max-width: 70%;
}
#process {
  background-color: #7652f7;
  color: #fffdfa;
  padding: 5% 5%;
  align-items: center;
  text-align: center;
}

#model {
  background-color: #000;
}
#product {
  background: #000;
  color: #edf2f4;
  padding: 4% 2%;
}
.products {
  font-family: "Red Hat Display", sans-serif;
  color: #d9d9d9;
}
.about {
  font-family: "Red Hat Display", sans-serif;
}
#aboutus {
  background-color: #7652f7;
  color: #fffdfa;
  padding: 5% 5%;
  align-items: center;
  text-align: center;
}
#contactus {
  background-color: #121212;
  color: #fffdfa;
  padding: 5% 5%;
}
.underline-contact-text {
  border-bottom: 3px solid #9500ff;
  padding-bottom: 10px;
  max-width: max-content;
}
#author {
  background-color: #7652f7;
  color: #fffdfa;
  padding: 5% 5%;
}
.contact {
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 200%;
}

h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  line-height: 1.5em !important;
  opacity: 90%;
}
h1,
h2,
h3,
h4 {
  font-family: "Red Hat Display", sans-serif;
  letter-spacing: 0.03em;
  word-spacing: 0.05em;
}
p {
  font-family: "Open Sans", sans-serif;
  line-height: 1.8em;
  opacity: 90%;
}
.list {
  padding: 2%;
}
.btn {
  background-color: #9500ff !important;
  color: #fff !important;
}
.btn:hover {
  -webkit-transform: translate(0px, -5px) scale(1.02);
  transform: translate(0px, -5px) scale(1.02);
}
.card:hover {
  -webkit-transform: translate(0px, -5px) scale(1);
  transform: translate(0px, -5px) scale(1);
}
.badge {
  background: #7652f7;
}
.col {
  padding: 2% 2%;
}
.largeimg {
  max-width: 100%;
  height: auto;
  /* min-width: 300px; */
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.smallimg {
  max-width: 80%;
  height: auto;
  min-width: 100px;
  aspect-ratio: 16/9;
  object-fit: contain;
}

/* model  section */

.flex-container {
  display: flex;
  flex-direction: row;
  height: auto;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.modal-usecase-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 30px 0px;
}
.modal-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.modal-uses-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.modal-uses-normal-item {
  order: 1;
}

.modal-uses-reverse-item {
  order: 2;
}

.usecase-video-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.usecase-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.usecase-text p {
  width: 100%;
}
.usecase-text-generation {
  padding-left: 100px;
}
/* usecase button styling */

.usecase-btn-box {
  display: flex;
  justify-content: space-between;
  width: auto;
  height: 45px;
  margin: 20px 0px;
  gap: 20px;
}
.usecase-btn-box a.usecase-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  border: 2px solid #9500ff;
  padding: 0.375rem 0.75rem;
  height: 100%;
  background-color: #9500ff;
  color: #fff;

  transition: 0.6s;
  border-radius: 0.375rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
a.usecase-btn:hover {
  color: #9500ff;
}
a.usecase-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.6s;
}
a.usecase-btn:hover::before {
  width: 100%;
}

a.usecase-btn:nth-child(2) {
  background: #fff;
  color: #9500ff;
}
a.usecase-btn:nth-child(2):hover {
  color: white;
}
a.usecase-btn:nth-child(2)::before {
  background: #9500ff;
}

/* home category button box style */

.home-category-btn-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  width: 100%;
  height: 100%;
  gap: 20px;
}

.home-category-btn-box a.home-category-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 2px solid #9500ff;
  padding: 0.375rem 0.75rem;
  height: 45px;
  background-color: #fff;
  color: #9500ff;
  transition: 0.6s;
  border-radius: 0.375rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
a.home-category-btn:hover {
  color: #fff;
}
a.home-category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #9500ff;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.6s;
}
a.home-category-btn:hover::before {
  width: 100%;
}

.icon {
  font-size: 1.3rem;
}
.usecase {
  max-width: 50%;
  align-items: center;
}
.uses {
  padding: 4% 0%;
}
.uses-text {
  padding: 4%;
}

.mail-icon {
  width: 30px;
  aspect-ratio: 1/1;
}
.card-horizontal {
  display: flex;
  flex: 1 1 auto;
}
.author {
  max-width: 70%;
  min-width: 240px;
  border-radius: 30px 30px;
  box-shadow: 10px 10px #fff;
}
.vid {
  max-width: 100%;
  width: 100%;
  border: 2px #171710 solid;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.market {
  border-radius: 16px;
}

/* blogs css goes here */

.blogimg {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.blog-card-img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.blog-hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  height: 12em;
  gap: 20px;
}

.blog-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.blog-content p {
  width: 100% !important;
}
.blog-share {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.social-button-container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.demo {
  max-width: 80%;
  height: auto;
  min-width: 300px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.form-group {
  padding: 4px;
}
.demoform {
  padding: 6%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
}
.power {
  font-weight: bold;
  margin-top: 20%;
}
.icons {
  max-width: 80px;
  aspect-ratio: 1 / 1;
  padding: 2%;
  min-width: 60px;
}
.card {
  border: none !important;
  background-color: rgba(245, 245, 245, 0) !important;
}
.process {
  max-width: 80%;
  min-width: 300px;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.form-box {
  padding: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timings {
  background-color: #121212;
  color: #fffdfa;
  padding: 2%;
}
.group {
  background-color: #121212 !important;
  color: #fffdfa !important;
  list-style: none !important;
}
.group-item {
  background-color: #121212 !important;
  color: #d9d9d9 !important;
  border: none !important;
  text-decoration: none !important;
  padding: 2% 0% !important;
}

/* style for the video in action page bullet points  */

.bullet-list {
  list-style-type: none;
  width: 100%;
  height: 100%;
  padding-left: 0;
  margin: 0px;
}

.bullet-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  font-family: "Open Sans", sans-serif;
  line-height: 1.8em;
  vertical-align: middle;
}

.bullet-list li .purple {
  flex-shrink: 0;
  margin-right: 10px;
}

.bullet-list li p {
  margin: 0;
}

/* video analytics intelligence style */

.video-analytics-hero {
  border: 2px solid red;
}

.video-insights-grid {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  border: 2px solid red;
}
.analytics-cards {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.video-insights-grid-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  border: 2px solid green;
  align-items: center;
  justify-content: space-between;
}
.card-icon {
  max-width: 50%;
}
.analytics-category-card {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 15px;
  padding: 15px;
  background-color: white;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.analytics-category-card-video {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analytics-category-card:hover {
  box-shadow: 0 4px 6px #9500ffe0;
}

.title {
  color: rgb(255, 162, 0);
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  margin: 0;
}
.title1 {
  font-size: 20px;
  color: black;
  font-weight: bolder;
  text-align: center;
  margin: 0;
  padding-top: 10px;
}

/* video-analytics application page style */

.application-usecase-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
/* footer and media queries */

footer {
  background-color: #121212;
  color: #d9d9d9;
  text-align: center;
  padding: 2%;
}
@media (min-width: 280px) {
  .section {
    padding: 70px 20px !important;
  }
  .pills-tab-container {
    padding: 10px 0px !important;
  }
  #pills-tab {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, 220px);
    padding: 10px;
  }
  .nav-pills .nav-item {
    margin-right: 0;
  }
  .nav-pills .nav-item .nav-link {
    width: 220px;
    padding: 5% !important;
    font-size: "10px";
  }
  .nav-pills .nav-link.active {
    color: white !important;
  }
  .home-category-btn-box {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
  }
  .animate-text {
    width: 140px;
  }
  .modal-grid-text-columns {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
  }
  .video-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 430px) {
  .section {
    padding: 70px 20px !important;
  }
  .pills-tab-container {
    padding: 20px !important;
  }
  #pills-tab {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, 240px);
    padding: 20px;
  }
  .nav-pills .nav-item {
    margin-right: 0;
  }

  .nav-pills .nav-item .nav-link {
    width: 240px;
    padding: 10% !important;
    font-size: var(--bs-body-font-size);
  }
  .nav-pills .nav-link.active {
    color: white !important;
  }
  .home-category-btn-box {
    grid-template-columns: repeat(2, minmax(170px, 1fr)) !important;
  }
  .animate-text {
    width: 155px;
  }
}

@media (max-width: 430px) {
  body {
    text-align: left;
  }
  .video-modal-grid {
    padding: 10px;
  }
  .video-modal-nav-section-content {
    padding: 10px;
  }
  .platform-features {
    padding: 20px !important;
    gap: 30px;
  }
  .brand-icon {
    max-width: 40%;
    padding: 4%;
  }

  .industry {
    margin-left: 0%;
  }
  .navbar-brand {
    padding: 0%;
  }
  .row {
    display: block !important;
  }
  .logo {
    padding: 4%;
    max-width: 40%;
  }
  #nocode {
    margin-top: 15%;
    text-align: left;
  }
  .container-fluid {
    display: block !important;
  }
  .list-group {
    display: block !important;
  }
  .card-horizontal {
    flex-direction: row !important;
  }
  #aboutus {
    padding-top: 13% !important;
  }
  .p-20 {
    padding: 20px !important;
  }
  .p-top-40 {
    padding-top: 40px !important;
  }
  .analytics-cards {
    padding: 20px !important;
    gap: 20px;
  }
}

@media (min-width: 525px) {
  .modal-grid-text-columns {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .analytics-cards {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
  .section {
    padding: 70px 100px !important;
  }
  .animate-text {
    width: max-content;
  }
  .modal-grid-text-columns {
    flex-direction: column;
    justify-content: space-between;
    gap: 0px;
  }
  .video-modal-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .accordion-section-content {
    grid-template-columns: 1fr;
  }
  .know-more h5 {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .modal-uses {
    grid-template-columns: 1fr;
  }
  .modal-uses-2 {
    grid-template-columns: 1fr;
  }
  .flex-container {
    flex-direction: column;
  }
  .modal-uses-normal-item {
    order: 2;
  }

  .modal-uses-reverse-item {
    order: 1;
  }
  .reverse-direction {
    flex-direction: column-reverse !important;
  }
  .usecase-text-generation {
    padding-left: 0px;
  }
  .hero-image-container {
    width: 100%;
  }
  .hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 100%;
  }
  .hero-section-container {
    grid-template-columns: 1fr;
  }
  .hero-heading {
    padding-top: 0px;
  }
}
@media (min-width: 992px) {
  .modal-uses-video-generation {
    flex-direction: row-reverse !important;
  }
  .home-category-btn-box {
    grid-template-columns: repeat(4, minmax(170px, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .analytics-cards {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
  .modal-grid-text-columns {
    flex-direction: row;
    gap: 10px;
  }
  .video-modal-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .video-modal-nav-container {
    display: none;
  }

  .hero-image-container {
    width: 100%;
  }
}

@media (min-width: 1230px) {
  .video-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1440px) {
  .analytics-cards {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }
  .animate-text {
    width: 175px;
  }
  .modal-uses {
    grid-template-columns: 1fr fr;
  }
  .modal-uses-2 {
    grid-template-columns: 1fr 1fr;
  }
}
