/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------
CSS STRUCTURE:

1. VARIABLES
2. GENERAL TYPOGRAPHY

--------------------------------------------------------------*/
body {
  --heading-font: "Manrope", sans-serif;
  --heading-font-weight: 400;
  --heading-color: #111;
  --heading-line-height: 1.24;

  --swiper-theme-color: #8c907e;

  /* bootstrap */
  --bs-body-font-family: "Manrope", sans-serif;
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #020106;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #8c907e;
  --bs-secondary: #6c757d;
  --bs-black: #111;
  --bs-light: #f1f1f0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 140, 144, 126;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: #111;
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #111;
  --bs-link-hover-color-rgb: 17, 17, 17;
}

body {
  letter-spacing: 0.03rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: var(--light-color);
}

h1,
h2,
h3 {
  margin: 25px 0;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 4.5rem;
}

h2,
.h2 {
  font-size: 3.6rem;
}

h3,
.h3 {
  font-size: 2.8rem;
}

h4,
.h4 {
  font-size: 1.8rem;
}

h5,
.h5 {
  font-size: 1.4rem;
}

h6,
.h6 {
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* container fluid */
.container-fluid {
  /* width: 98%; */
  max-width: 1800px;
}

/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-black);
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #8c907e;
  --bs-btn-border-color: #8c907e;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5e624e;
  --bs-btn-hover-border-color: #5e624e;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5e624e;
  --bs-btn-active-border-color: #5e624e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #8c907e;
  --bs-btn-disabled-border-color: #8c907e;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0.1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0.1rem;
  --bs-accordion-active-color: transparent;
  --bs-accordion-active-bg: transparent;
}

/* dark theme */
[data-bs-theme="dark"] body {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #fff;
  --bs-link-hover-color: #fff;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color-rgb: 255, 255, 255;
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;
}

[data-bs-theme="dark"] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] .bg-light {
  --bs-bg-opacity: 0.1;
}

/* end of Bootstrap Color Theme */

/* preloader */
.preloader {
  position: fixed;
  z-index: 99;
  background: #fff;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.preloader.loaded {
  height: 0;
}

/* navbar */
.navbar.fixed-top {
  transition: background-color 0.6s ease-out;
}

/* slideshow */
.slideshow {
  overflow: hidden;
}

/* .slideshow .swiper-slide {
  background-position-x: -300px;
  transition: background-position-x 1.6s ease-out;
  background-repeat: no-repeat;background-size: cover;
}
.slideshow .swiper-slide.swiper-slide-active {
  background-position-x: 0px;
} */
.slideshow .swiper-slide {
  /* background-size: 100%; */
  background-position: center;
  background-origin: padding-box;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-size 1s ease-in-out;
}

/* .slideshow .swiper-slide.swiper-slide-active {
  background-size: 120%;
} */

/* fade in */
.slideshow.fade-in .swiper-slide .banner-content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  transition-delay: 600ms;
}

.slideshow.fade-in .swiper-slide.swiper-slide-active .banner-content {
  opacity: 1;
}

/* slide in */
.slide-in .swiper-slide .banner-content h2,
.slide-in .swiper-slide .banner-content p,
.slide-in .swiper-slide .banner-content .btn {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in .swiper-slide .banner-content h2 {
  transition-delay: 600ms;
}

.slide-in .swiper-slide .banner-content p {
  transition-delay: 800ms;
}

.slide-in .swiper-slide .banner-content .btn {
  transition-delay: 1000ms;
}

.slide-in .swiper-slide.swiper-slide-active .banner-content h2,
.slide-in .swiper-slide.swiper-slide-active .banner-content p,
.slide-in .swiper-slide.swiper-slide-active .banner-content .btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* swiper slide-clip */
.slide-clip .swiper-slide .image-holder img {
  transform: scale(1.2);
  transition: transform 1s ease-in-out;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder img {
  transform: scale(1);
}

.slide-clip .swiper-slide .image-holder {
  clip-path: inset(100% 0 0 0);
  display: block;
}

.slide-clip .swiper-slide.swiper-slide-active .image-holder {
  animation: 1s slide-clip forwards;
}

.slide-clip .swiper-slide.swiper-slide-prev .image-holder,
.slide-clip .swiper-slide.swiper-slide-next .image-holder {
  animation: 1s slide-down;
}

@keyframes slide-clip {
  0% {
    clip-path: inset(100% 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes slide-down {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 0 0 0);
  }
}

/* swipe animation */
.swipe-up {
  clip-path: inset(0 0 100% 0);
  display: block;
}

.aos-animate .swipe-up {
  animation: 1s swipe-up forwards;
}

/*.down-leave-active { animation: 1s down-leave; }*/
@keyframes swipe-up {
  0% {
    clip-path: inset(0 0 100% 0);
  }

  100% {
    clip-path: inset(0);
  }
}

/* polygon */
.polygon {
  clip-path: polygon(
    0 0,
    100% 0,
    100% 20%,
    100% 100%,
    80% 100%,
    20% 100%,
    0 100%,
    0% 20%
  );
}

.aos-animate .polygon {
  animation: 1s polygon forwards;
}

@keyframes polygon {
  0% {
    clip-path: polygon(
      0 0,
      100% 0,
      100% 20%,
      100% 100%,
      80% 100%,
      20% 100%,
      0 100%,
      0% 20%
    );
  }

  100% {
    clip-path: polygon(
      20% 0%,
      80% 0%,
      100% 20%,
      100% 80%,
      80% 100%,
      20% 100%,
      0% 80%,
      0% 20%
    );
  }
}

/* open-up */
.open-up {
  clip-path: inset(48% 34% 36% 35%);
}

.aos-animate.open-up {
  animation: 1s open-up forwards;
}

@keyframes open-up {
  0% {
    clip-path: inset(48% 34% 36% 35%);
  }

  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}

/*@keyframes down-leave {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(100% 0 0 0); }
}*/
.swipe-up {
  --delay: 0.05s;
}

.swipe-up {
  animation-delay: 1s;
  /* animation-delay: data(swipe-delay); */
}

/* Text Effects */
.txt-fx {
  overflow: hidden;
  line-height: 1;
}
.txt-fx.zoom {
  overflow: visible;
}

.txt-fx .word {
  overflow: hidden;
  transform-origin: 0 100%;
  display: inline-block;
  line-height: 1em;
}
.txt-fx .letter {
  transform-origin: 0 100%;
  display: inline-block;
  line-height: 1em;
}

.txt-fx {
  --delay: 50ms;
  --easing: cubic-bezier(0.5, 0, 0.53, 1);
}

/* fade right */
.txt-fx.fade-right .letter {
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
  transition: transform 0.6s var(--easing), opacity 0.6s var(--easing);
}

.aos-animate .txt-fx.fade-right .letter {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* slide up */
.txt-fx.slide-up .letter {
  transform: translate3d(0, 1.2em, 0);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.slide-up .letter,
.aos-animate .txt-fx.slide-up .letter {
  transform: translate3d(0, 0, 0);
}

/* domino */
.txt-fx.domino .letter {
  transform-origin: 50% 0;
  transform: rotateY(90deg);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.domino .letter,
.aos-animate .txt-fx.domino .letter {
  transform: rotateY(0);
}

/* zoom */
.txt-fx.zoom .letter {
  transform-origin: 50% 0;
  transform: scale(3);
  transition: transform 0.9s var(--easing);
}

.swiper-slide-active .txt-fx.zoom .letter,
.aos-animate .txt-fx.zoom .letter {
  transform: scale(1);
}

/* Swiper */
/* - Swiper Slide Arrows 1
------------------------------------------------------------- */
.icon-arrow {
  position: absolute;
  top: 50%;
  font-size: 2em;
  color: var(--dark-color);
  z-index: 8;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease-out;
}

.icon-arrow:hover {
  opacity: 1;
}

.icon-arrow.icon-arrow-left {
  left: 30px;
}

.icon-arrow.icon-arrow-right {
  right: 30px;
}

@media (max-width: 991px) {
  .icon-arrow.icon-arrow-left,
  .icon-arrow.icon-arrow-right {
    display: none;
  }
  .swiper-pagination {
    position: relative;
  }
}

/** Swiper Slide Arrows 2
--------------------------------------------------------------*/
.icon-arrow.no-outline {
  top: 40%;
  font-size: 1.7em;
  color: var(--grey-color);
  border: none;
}

.icon-arrow.no-outline:hover {
  background: none;
  color: var(--dark-color);
}

.icon-arrow.light-arrow.no-outline {
  color: var(--light-color);
  opacity: 0.7;
}

.icon-arrow.light-arrow.no-outline:hover {
  opacity: 1;
}

.swiper-button-normal {
  background: transparent;
}

.swiper-button-normal .icon {
  font-size: 1.6em;
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/** Swiper Slide Arrows with background 3
--------------------------------------------------------------*/
.icon-arrow {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

/*--- Image hover Effects
-----------------------------------------------*/
.image-zoom-effect {
  display: flex;
  flex-wrap: wrap;
}

.image-zoom-effect .image-holder {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-zoom-effect:hover .image-holder {
  transform: scale(0.95);
}

.image-zoom-effect img {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-zoom-effect:hover img {
  transform: scale(1.1);
}

/* - Border Hover Effects
------------------------------------------------------------- */
.border-animation a,
.border-animation a:after,
.border-animation a:before {
  transition: all 0.5s;
}

.border-animation a {
  position: relative;
}

.border-animation a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  content: ".";
  color: transparent;
  background: var(--bs-primary);
  height: 2px;
}

.border-animation a:hover:after {
  width: 100%;
}

.content-light .border-animation a:hover:after,
.content-light .border-animation li.active a:after {
  background: var(--bs-primary);
}

/* - Border Hover No Effects
------------------------------------------------------------- */
.border-animation .no-effect a:after {
  background: none;
}

/* - Border Hover Effects 2
------------------------------------------------------------- */
.border-animation-left .item-anchor {
  position: relative;
  margin-bottom: 20px;
}

.border-animation-left .item-anchor:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  z-index: 9;
  background: var(--bs-dark);
  transition: all 0.5s ease;
}

.border-animation-left.light-border .item-anchor:after,
.border-animation-left .item-anchor:after {
  background: var(--bs-dark);
}

.border-animation-left .item-anchor:hover:after,
.border-animation-left .item-anchor:focus:after {
  width: 100%;
}

/* background */
.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 600px;
}

a.search-button {
  margin-right: 4px;
}

.background.pattern-bg {
  background: url(images/pattern-bg.png) no-repeat;
}

.background.normal-bg {
  background: url(images/newsletter-image.jpg) no-repeat;
}

/* large text */
.title-xlarge {
  font-size: calc(2rem + 10vw);
  /* 10.4em; */
  font-family: var(--heading-font);
  color: var(--bs-gray-300);
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
}

/*--------------------------------------------------------------
/** 7.8 Video Section
--------------------------------------------------------------*/
.video .video-content {
  position: relative;
}

.video .video-player {
  position: absolute;
}

.video .video-player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video .video-player a {
  position: relative;
}

.video .video-player svg {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media (max-width: 600px) {
  .video .video-player img.text-pattern {
    width: 60%;
    display: flex;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
/** 7.9 Testimonial Slider
--------------------------------------------------------------*/
.testimonials .section-title {
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

.testimonial-swiper .testimonial-item blockquote {
  font-size: 2.5em;
}

.testimonial-swiper .testimonial-item blockquote > p {
  margin: 0;
}

.testimonials .review-title {
  font-size: 14px;
}

.testimonial-swiper .swiper-slide {
  opacity: 0.2;
  width: 42% !important;
}

.testimonial-swiper.swiper-3d .swiper-slide-shadow-left,
.testimonial-swiper.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.testimonial-swiper .swiper-slide-active {
  opacity: 1;
}

.testimonials .swiper-pagination {
  left: 0;
  right: 0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: #8c907e;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-swiper .testimonial-item blockquote {
    font-size: 1.8em;
  }
}

@media only screen and (max-width: 999px) {
  .testimonial-swiper .testimonial-item blockquote {
    font-size: 1.2em;
  }
}

/** 7.13 Instagram
--------------------------------------------------------------*/
.instagram .insta-item {
  position: relative;
  margin-bottom: 20px;
}

.instagram .insta-item a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.6s ease-out;
}

/* Link Effect
 - Place anywhere you want your link to animate
 - Add data-after="Any text" to the link within the class
 - Use span within the anchor tag for the effect to work
------------------------------------------------------------- */
.link-effect a {
  position: relative;
  padding: 0;
  overflow: hidden;
  transition: transform 0.5s;
  display: block;
}

.link-effect a::after {
  content: attr(data-after);
  display: inline-block;
  transform: translateY(100%);
  position: absolute;
  left: 0;
  font-size: 1rem;
  text-align: inherit;
  text-transform: uppercase;
  transition: inherit;
}

.link-effect a > span {
  display: inline-block;
  transform: translateY(0%);
  transition: inherit;
}

.link-effect:hover a > span {
  transform: translateY(-100%);
}

.link-effect:hover a::after {
  transform: translateY(0%);
}

/* rotating text */
.text-rotate {
  animation: rotation 50s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/* button */
.btn-link {
  font-size: 0.875rem;
  font-family: var(--bs-body-font-family);
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  text-decoration: none;
}

a.btn-link,
a.btn-link:after {
  transition: all 0.5s;
}

a.btn-link {
  position: relative;
}

a.btn-link:before,
a.btn-link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--bs-dark);
  height: 1px;
}

[data-bs-theme="dark"] a.btn-link:after {
  background-color: var(--bs-white);
}

a.btn-link:before {
  background-color: var(--bs-gray);
  width: 100%;
}

a.btn-link.is-checked:after,
a.btn-link:hover:after {
  width: 100%;
}

a.btn-link.text-white:after {
  background-color: var(--bs-white);
}

a.btn-link.text-light:after {
  background-color: var(--bs-light);
}

/* image zoom */
.image-zoom {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease-out;
}

.nav-link {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 16.4px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: none;
}

.section-title {
  color: #3e247d;
  text-align: center;
  font-family: Manrope;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 64px */
  letter-spacing: -1.92px;
  align-self: stretch;
  margin-top: 80px;
  margin-bottom: 24px;
}

.section-title-big {
  background: linear-gradient(89deg, #3e247d 0%, #5935b9 50%, #9a76fa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Manrope;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2.88px;
  align-self: stretch;
}

.section-subtitle {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  align-self: stretch;
}

input::placeholder {
  color: #82899d;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
input.email-address-navBar.red-placeholder::placeholder {
  font-size: 10px !important;
}
input.email-address.red-placeholder::placeholder {
  font-size: 14px !important;
}
.red-placeholder::placeholder {
  color: red !important;
}
.email-address {
  width: 300px;
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 34.133px;
  border: 0.356px solid rgba(2, 1, 6, 0.3);
  background: #fff;
  margin-right: 12px;
}

button.primary-button {
  display: flex;
  padding: 18px 36px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 48px;
  border: 4.5px solid #d3c6ff;
  background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
}

.logo-bar {
  width: 1320px;
  background: #e8daff;
  margin-left: 4.5rem;
  margin-top: -23px;
  border-radius: 24px;
  padding: 40px;
}

img.logo-image {
  height: min-content;
}

.primary-button {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 48px;
  border: 2px solid #beabfd;
  background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  text-transform: none;
  cursor: pointer;
}

.primary-button-form {
  display: inline-flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 34.133px;
  border: 2px solid #beabfd;
  background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.book-demo {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 8px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0px 0px 1.889px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

section.features.py-5 {
  background: linear-gradient(219deg, #fafafa 19.72%, #d9dce2 119.51%);
}

/* Accordian section */
/* Remove border, background, and arrow icon from accordion buttons */
.accordion-button {
  border: none;
  background-color: transparent;
  padding: 0;
  color: #82899d;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Remove color and padding changes when accordion button is clicked */
.accordion-button:not(.collapsed) {
  color: #007bff; /* Active tab text color */
  background-color: transparent; /* Ensure no background color on active state */
  box-shadow: none;
}

/* Remove arrow icons */
.accordion-button::after {
  display: none;
}

/* Hover effect for the accordion button */
.accordion-button:hover {
  color: #0056b3;
}

/* Remove border and padding from accordion items */
.accordion-item {
  border: none;
  padding: 0;
  background: transparent;
}
.accordion-header {
  margin-bottom: 0px;
  margin-top: 0px;
}
/* Optionally add spacing between accordion items */
.accordion-item + .accordion-item {
  margin-top: 0px;
}

.heading-section-case {
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
}

.color-purple {
  color: #9a76fa;
}

.accordion-body {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 20px;
}

.spacer {
  margin-bottom: 15px;
}

.shadow-why {
  margin-top: -13rem;
  margin-left: 8rem;
}

.heading-rocketium {
  color: #020106;
  font-family: Manrope;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.6px;
}

.sub-heading-rocketium {
  color: #020106;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.24px;
  margin-top: -20px;
}

button#headingOneButton:not(.collapsed),
button#headingOneButton:hover {
  color: #cb8f00;
}

button#headingTwoButton:not(.collapsed),
button#headingTwoButton:hover {
  color: #057aeb;
}

button#headingThreeButton:not(.collapsed),
button#headingThreeButton:hover {
  color: #198f39;
}

button#headingFourButton:not(.collapsed),
button#headingFourButton:hover {
  color: #9e1b05;
}
button#headingFiveButton:not(.collapsed),
button#headingFiveButton:hover {
  color: #26b59f;
}

/* Optional: Center-align image within its container */
.image-container {
  display: flex;
  justify-content: end;
  align-items: center;
}

/* Responsive adjustment for mobile */
@media (max-width: 767px) {
  .text-section,
  .image-section {
    text-align: center;
  }
}

footer#footer {
  background: url(https://rocketium.com/website/images/footer-bg.webp);
  background-size: cover;
}

h5.widget-title.text-uppercase.mb-4 {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

li.menu-item {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}

img.footer-logo {
  width: 222px;
  height: 29.115px;
}

img.footer-medal {
  width: 490px;
  margin-top: 30px;
  margin-bottom: 30px;
}

img#displayImage {
  width: 431.687px;
  height: 585.007px;
}

img.footer-badge {
  width: 289px;
}

.experience {
  display: flex;
  width: 1280px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 36px;
  border: 0.524px solid #82899d;
  background: rgba(255, 255, 255, 0.49);
  backdrop-filter: blur(25.449665069580078px);
}

.internal-experience {
  width: 1232px;
  height: 363px;
  padding: 50px 150px 41.543px 150px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: radial-gradient(
    72.12% 72.12% at 50% 50%,
    rgba(190, 171, 253, 0.6) 0%,
    rgba(190, 171, 253, 0) 100%
  );
}

h2.sign-up-heading {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-top: 0px;
  margin-bottom: 44px;
}

.internal-testimonials-1 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/images/test-bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.test-sym {
  margin-bottom: 20px;
  margin-top: 0px;
}

.internal-testimonials-2 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/images/test-bg2.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.internal-testimonials-3 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/images/test-bg3.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.internal-testimonials-4 {
  width: 1296px;
  height: 455px;
  border-radius: 40px;
  background: url(https://rocketium.com/website/images/test-bg4.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonials-heading {
  color: #020106;
  font-family: Manrope;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 80px */
  letter-spacing: -3.2px;
}

.testimonials-heading-color {
  color: #9a76fa;
  font-family: Manrope;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -3.2px;
  padding-left: 0.5em;
}

.testimonials-text {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
  padding: 0px 185px;
}

.testimonials-author-title {
  color: #216d61;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.testimonials-author-title-blue {
  color: #057aeb;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.testimonials-author-title-purple {
  color: #5935b9;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.testimonials-author-name {
  color: #020106;
  font-family: "Helvetica Neue";
  font-size: 12.287px;
  font-style: normal;
  font-weight: 400;
  line-height: 13.823px; /* 112.5% */
  letter-spacing: -0.415px;
}

.testimonials-experience {
  margin-top: 36px;
}

/* Custom Previous Arrow */
.swiper-button-prev {
  background: none; /* Remove default background */
  background-image: url("https://rocketium.com/website/images/left-icon.svg"); /* Replace with your custom icon path */
  background-size: 16px 16px; /* Adjust size of the icon within the button */
  background-repeat: no-repeat;
  background-position: center;
  width: auto; /* Width will be controlled by padding */
  height: auto; /* Height will be controlled by padding */
  padding: 14px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 0.638px solid #020106;
  content: ""; /* Ensure no default Swiper content is displayed */
}

/* Custom Next Arrow */
.swiper-button-next {
  background: none;
  background-image: url("https://rocketium.com/website/images/right-icon.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  width: auto;
  height: auto;
  padding: 14px 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 0.638px solid #020106;
  content: "";
}

/* Hover Effect */
.swiper-button-next:hover {
  background-color: black; /* Change background to black */
  border-color: black; /* Change border color to black */
  background-image: url("https://rocketium.com/website/images/right-icon-white.svg");
}

.swiper-button-prev:hover {
  background-color: black; /* Change background to black */
  border-color: black; /* Change border color to black */
  background-image: url("https://rocketium.com/website/images/left-icon-white.svg");
}

/* Optional: Positioning of the buttons */
.testimonials-swiper-button {
  position: relative;
  top: 2.5rem;
  left: 34rem;
  display: inline-block;
}

.swiper-button-prev {
  margin-right: 5px;
}

.swiper-button-next {
  margin-left: 0rem;
  border-radius: 16px;
  border: 0.638px solid #020106;
}

.swiper-button-prev:after {
  content: "";
}

.swiper-button-next:after {
  content: "";
}

.integrations {
  width: 100%;
  background: linear-gradient(101deg, #fff 33.31%, #d9dce2 194.46%);
  margin-top: 80px;
  padding: 20px 0px;
}

.sign-up {
  margin: 55px 0;
}

.integrations-heading {
  color: #020106;
  font-family: Manrope;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.2px;
}

.integrations-text {
  display: block;
  color: #020106;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  margin-top: 45px;
}

.integrations-text-mobile {
  display: none;
}

/* Custom Styles */

h2.case-study-header {
  color: #020106;
  font-family: Manrope;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px; /* 100% */
  letter-spacing: -2.4px;
}

section.case-studies.py5.bg-white {
  width: 100%;
}

.case-studies-container {
  margin-top: 80px;
  margin-bottom: 80px;
}

.case-studies-text {
  width: 420px;
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

span.case-studies-number {
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.96px;
}

span.cs-sub-text {
  color: #020106;
  font-family: Manrope;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

p.cs-sub-text {
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.nums {
  width: 505px;
  display: flex;
  gap: 36px;
  justify-content: space-between;
}

.btn-group {
  width: 100%;
  padding: 12px;
  align-items: center;
  flex-shrink: 0;
}
.tab-button {
  color: #020106;
  font-family: Manrope;
  background: #ffffff;
  border: 0.488px solid #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px; /* 100% */
  padding: 10px 24px;
  text-align: left;
}
.tab-button.active {
  color: #000;
  border-radius: 12px;
  border: 0.488px solid #fff;
  background: #ededef;
  backdrop-filter: blur(23.700000762939453px);
  margin-left: 35px;
  font-weight: 500;
}
.swiper-slide {
  display: flex;
  align-items: center;
}
.slide-content {
  width: 1280px;
  height: 456.5px;
  margin-left: 0rem;
  background-image: url(https://rocketium.com/website/images/bg-cs.png);
  background-repeat: no-repeat;
}
.slide-content img {
  border-radius: 1rem;
  width: 100%;
}
.slide-details {
  flex: 1;
  padding: 24px 0;
}
.img-bg-cs {
  padding: 3rem 1rem;
}
.download-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  margin-top: 1rem;
}

.tabs-slider-next {
  position: relative;
  left: 47rem;
  top: -3.5rem;
  display: inline-block;
}

.tabs-slider-prev {
  position: relative;
  left: 35rem;
  top: -3.5rem;
  display: inline-block;
}

.img-cs {
  width: auto !important;
}

/* Square box in the top-right corner */
.square-box {
  width: 131px;
  height: 133px;
  position: absolute;
  top: 0rem;
  right: 1.5rem;
  border-radius: 12px;
  border: 0.488px solid #fff;
  background: #ededef;
  backdrop-filter: blur(23.700000762939453px);
  cursor: pointer;
  display: none;
}

.square-box .arrow-icon {
  font-size: 24px;
  color: #666;
}

.cs-bg-section {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/images/cs-bg1.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section1 {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/images/cs-bg-p.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section2 {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-section3 {
  width: auto;
  height: 409px;
  background-image: url(https://rocketium.com/website/images/cs-bg3.webp) !important;
  border-radius: 12px;
  margin: 24px 0px 24px 24px;
}

.cs-bg-content {
  padding: 42px;
}

.cs-download {
  position: absolute;
  bottom: 6rem;
}

button.cs-download-button {
  border-radius: 73px;
  border: 1.5px solid #020106;
  padding: 3px 20px;
  background: transparent;
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
}

button.cs-download-button:hover {
  background: #020106; /* Black background on hover */
  color: #ffffff; /* White text on hover */
}

button.cs-download-button svg path {
  fill: #020106; /* Default color */
  transition: fill 0.3s ease; /* Smooth transition */
}

button.cs-download-button:hover svg path {
  fill: #ffffff; /* Change to white on hover */
}

.cs-image-text {
  color: #020106;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
}

.ai-section {
  width: 100%;
  margin-top: 87px;
  margin-bottom: 73px;
}

/* img.brand-element {
  width: 219.143px;
  height: 139.455px;
} */

.ai-section-heading {
  width: 940px;
  color: #020106;
  font-family: Manrope;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 57.6px */
  text-align: left;
}

.purple-color {
  color: #9a76fa;
}

/* Fade-in effect for the container when it comes into view */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.inner {
  width: 1280px;
  height: 807px;
  background: url(https://rocketium.com/website/images/internal-ai-bg.png);
  background-repeat: no-repeat;
}

.inner-bg {
  width: 1280px;
  height: 807px;
  background: url(https://rocketium.com/website/images/internal-ai-bg.png);
  background-repeat: no-repeat;
}

.inner-content {
  padding: 36px 41px;
}

.ai-inner-text {
  color: #020106;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 41.6px */
}

.circles-purple {
  width: 181.429px;
  height: 115.455px;
}

.divider-rocketium {
  margin-top: 24px;
  margin-bottom: 24px;
}

.ai-section-subtext {
  color: #020106;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
}

#greenSection {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}
#blueSection {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

#purpleSection {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.products-section {
  display: flex;
  justify-content: center; /* Centers child elements horizontally */
  align-items: center; /* Centers child elements vertically */
  flex-direction: column; /* Keeps elements stacked */
  position: relative;
  animation: gradientCycle 10s infinite;
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(https://rocketium.com/website/images/bg-products1.webp);
  background-size: cover;
  background-position: center;
}

img.brand-element {
  width: 181.028px;
  height: 115.199px;
}

.products-section-mobile {
  display: none;
}

@keyframes gradientCycle {
  0% {
    background-image: url(https://rocketium.com/website/images/bg-products1.webp);
  }
  14.29% {
    background-image: url(https://rocketium.com/website/images/bg-products2.webp);
  }
  28.57% {
    background-image: url(https://rocketium.com/website/images/bg-products3.webp);
  }
  42.86% {
    background-image: url(https://rocketium.com/website/images/bg-products4.webp);
  }
  57.14% {
    background-image: url(https://rocketium.com/website/images/bg-products5.webp);
  }
  71.43% {
    background-image: url(https://rocketium.com/website/images/bg-products6.webp);
  }
  85.71% {
    background-image: url(https://rocketium.com/website/images/bg-products7.webp);
  }
  100% {
    background-image: url(https://rocketium.com/website/images/bg-products1.webp);
  }
}

.blue-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ai-inner-pill {
  width: 270px;
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  border: 2.5px solid #99dfd5;
  background: #216d61;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
  gap: 12px;
}

.ai-inner-pill-blue {
  width: 300px;
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  border: 2.5px solid #73b9fc;
  background: #0575e1;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
  gap: 12px;
}

.ai-inner-pill-purple {
  width: 245px;
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  border: 2.5px solid #beabfd;
  background: #5935b9;
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
  gap: 12px;
}

.ai-inner-img {
  margin-top: 3.5rem;
}

.arrow-green {
  width: 124px;
  height: 124px;
}

.square-box-green {
  position: absolute;
  right: 0;
}

.square-box-blue {
  position: absolute;
  right: 0;
}

.square-box-purple {
  position: absolute;
  right: 0;
}

span.purple {
  color: #835cea;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
}

span.blue {
  color: #2391fa;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
}

span.green {
  color: #3dc8b3;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}

.credits-section {
  align-items: center;
  gap: 42px;
}

.credit-text {
  margin: 0;
}

.credit-text {
  color: #000;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.widget-title {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

span.bold {
  font-weight: 700;
}

.hero-banner-gif {
  background: url(https://rocketium.com/website/images/hero-banner-bg.webp) no-repeat center center;
  background-size: cover;
  margin-top: 74px;
  padding: 30px;
  border-radius: 64px;
}

.banner-form {
  margin-top: 36px;
}

.hero-banner {
  width: 100%;
  border-radius: 13.858px;
  border: 0.446px solid #fff;
  box-shadow: 0px 3px 12px 0px rgba(154, 101, 238, 0.1),
    0px 5.625px 16.874px 0px rgba(154, 101, 238, 0.1),
    0px 11.249px 39.372px 0px rgba(154, 101, 238, 0.1);
}

.logo {
  height: 22.11px;
  width: 167px;
}

.section-title-mobile {
  display: none;
}

.d-flex-mobile {
  display: flex;
}

p.logo-text {
  margin-bottom: 40px;
}
.ai-mobile {
  display: none;
}

section.content-mobile {
  display: none;
}

.mobile-sign {
  display: none;
}

section.case-studies-mobile.py2.bg-white {
  display: none;
}

section.features-mobile.py-2 {
  display: none;
}

#mobile-footer {
  display: none;
}
#desktop-footer {
  display: block;
}
section.testimonials-mobile {
  display: none;
}
.container-logo {
  overflow: hidden; /* Prevent overflow outside the container */
  width: 100%; /* Ensure it spans full width */
}

.slider {
  display: flex; /* Use flexbox for alignment */
  animation: slidein 20s linear infinite; /* Smooth, continuous animation */
}

.logos {
  display: flex; /* Flexbox to align logos horizontally */
  flex-wrap: nowrap; /* Prevent wrapping of logos */
}

.fab {
  flex: 0 0 16.66%; /* Each logo takes up 16.66% of the container (6 logos per view) */
  text-align: center;
  padding: 0 10px; /* Optional spacing between logos */
}

.fab img {
  max-width: 100%; /* Ensure logos fit their container */
  /* max-height: 36px; */
  /*filter: grayscale(1);  Initially, logos appear in grayscale */
  /*-webkit-filter: grayscale(1);  Grayscale for Webkit browsers */
  -webkit-transition: all 0.8s ease-in-out; /* Smooth transition for hover */
  transition: all 0.8s ease-in-out; /* Smooth transition for hover */
}

.fab img:hover {
  filter: none; /* Remove grayscale on hover */
  -webkit-filter: grayscale(0); /* Remove grayscale for Webkit */
  -webkit-transform: scale(1.01); /* Slight scaling effect on hover */
  transform: scale(1.01); /* Slight scaling effect on hover */
}

@keyframes slidein {
  0% {
    transform: translateX(0); /* Start position */
  }
  100% {
    transform: translateX(-100%); /* Slide out completely */
  }
}
section.logo-bar.py-1 {
  display: none;
}
section.features-mobile.py-1 {
  display: none;
}

img.circles-img {
  width: 100vw;
}
.mobile-nav {
  display: none;
}
/* General Reset for Mobile */
@media only screen and (max-width: 360px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }

  .slide-content {
    width: 366px;
    height: 590px;
    margin-left: 0px !important;
    background-image: none !important;
    background-repeat: no-repeat;
    border: 1px solid gainsboro;
    border-radius: 24px;
  }

  .section-subtitle {
    font-size: 16px !important;
  }

  .ai-section-heading {
    width: 286px !important;
    font-size: 21px !important;
    letter-spacing: -0.45px !important;
  }

  img.footer-medal {
    width: 336px !important;
  }

  /* Ensure Specific Elements Don't Cause Overflow */
  .ai-mobile-case,
  .ai-mobile {
    width: 100% !important;
    max-width: 100vw;
  }

  .inner {
    margin-left: 1.5% !important;
  }

  .square-box-green,
  .square-box-blue {
    right: 1rem !important;
  }

  .inner {
    width: 319.957px !important;
    height: 596.212px !important;
    margin-left: 4.5% !important;
    background: url(https://rocketium.com/website/images/subtract-s8.png) !important;
    background-repeat: no-repeat;
  }
  .ai-inner-pill {
    width: 180px !important;
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }
  .ai-inner-text {
    font-size: 16px !important;
    width: 222px !important;
  }
  .ai-section-subtext,
  span.green,
  span.blue {
    font-size: 13px !important;
  }
  .ai-inner-pill-blue {
    width: 205px !important;
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }
  .sm-s8 {
    width: 60.87px;
    height: 62.609px;
    flex-shrink: 0;
  }

  /* Adjust margins and paddings that might cause issues */
  * {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 361px) and (max-width: 380px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }

  .slide-content {
    width: 366px;
    height: 590px;
    margin-left: 0px !important;
    background-image: none !important;
    background-repeat: no-repeat;
    border: 1px solid gainsboro;
    border-radius: 24px;
  }

  .section-subtitle {
    font-size: 16px !important;
  }

  .ai-section-heading {
    width: 280px !important;
    font-size: 22px !important;
  }

  img.footer-medal {
    width: 336px !important;
  }

  /* Ensure Specific Elements Don't Cause Overflow */
  .ai-mobile-case,
  .ai-mobile {
    width: 100% !important;
    max-width: 100vw;
  }

  .inner {
    margin-left: 1.5% !important;
  }

  .square-box-green,
  .square-box-blue {
    right: 1.75rem !important;
  }

  .inner {
    width: 319.957px !important;
    height: 596.212px !important;
    margin-left: 4.5% !important;
    background: url(https://rocketium.com/website/images/subtract-s8.png) !important;
    background-repeat: no-repeat;
  }
  .ai-inner-pill {
    width: 180px !important;
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }
  .ai-inner-text {
    font-size: 16px !important;
    width: 222px !important;
  }
  .ai-section-subtext,
  span.green,
  span.blue {
    font-size: 13px !important;
  }
  .ai-inner-pill-blue {
    width: 205px !important;
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }
  .sm-s8 {
    width: 60.87px;
    height: 62.609px;
    flex-shrink: 0;
  }

  /* Adjust margins and paddings that might cause issues */
  * {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 381px) and (max-width: 399px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }

  .slide-content {
    width: 366px;
    height: 590px;
    margin-left: 0px !important;
    background-image: none !important;
    background-repeat: no-repeat;
    border: 1px solid gainsboro;
    border-radius: 24px;
  }

  .section-subtitle {
    font-size: 16px !important;
  }

  .ai-section-heading {
    width: 280px !important;
    font-size: 22px !important;
  }

  img.footer-medal {
    width: 336px !important;
  }

  /* Ensure Specific Elements Don't Cause Overflow */
  .ai-mobile-case,
  .ai-mobile {
    width: 100% !important;
    max-width: 100vw;
  }

  .inner {
    margin-left: 1.5% !important;
  }

  .square-box-green,
  .square-box-blue {
    right: 1.75rem !important;
  }

  .inner {
    width: 319.957px !important;
    height: 596.212px !important;
    margin-left: 8.5% !important;
    background: url(https://rocketium.com/website/images/subtract-s8.png) !important;
    background-repeat: no-repeat;
  }
  .ai-inner-pill {
    width: 180px !important;
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }
  .ai-inner-text {
    font-size: 16px !important;
    width: 222px !important;
  }
  .ai-section-subtext,
  span.green,
  span.blue {
    font-size: 13px !important;
  }
  .ai-inner-pill-blue {
    width: 205px !important;
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }
  .sm-s8 {
    width: 60.87px;
    height: 62.609px;
    flex-shrink: 0;
  }

  /* Adjust margins and paddings that might cause issues */
  * {
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 425px) and (max-width: 430px) {
  .square-box-green,
  .square-box-blue {
    right: 2rem !important;
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 599px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box;
  }
  /* Adjust margins and paddings that might cause issues */
  * {
    margin: 0;
    padding: 0;
  }
  .ai-mobile-case {
    width: 360px;
    display: inline-flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
  }
  nav.navbar.navbar-expand-lg.desktop-nav {
    display: none;
  }
  .book-demo-nav {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 0px 1.889px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  form#nav-form {
    /* gap: 10px; */
    display: flex;
  }
  .dropdown-item-subheading,
  .dropdown-item-subheading-blue {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
  }
  .dropdown-desc {
    margin-bottom: 0px;
    margin-top: -15px;
  }
  .mobile-nav {
    width: 100%;
    display: block;
  }
  .accordion-item-nav {
    width: 351px;
    border-bottom: 1px solid #eae9e9;
  }
  .primary-button-form {
    font-size: 18px;
  }
  .book-demo,
  .login-section,
  .internal-experience-new {
    display: none;
  }
  .login-section-mobile {
    display: block;
  }
  .login-button {
    text-align: left !important;
    margin-left: 0px !important;
  }
  section.features-mobile.py-1 {
    display: block;
  }
  section.logo-bar.py-1 {
    display: block;
  }
  .ai-inner-text-purple {
    font-size: 22px;
    width: 295px;
  }
  .logo {
    height: 27px;
    width: 27px;
  }
  .section-title {
    display: none;
  }
  .ai-inner-img {
    margin-top: 10px;
  }
  .video-container {
    position: relative;
    width: 100%;
    height: 262px;
    overflow: hidden;
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .section-title-big {
    font-size: 34px;
    line-height: 100%; /* 36px */
    letter-spacing: -1.08px;
    margin-top: 6px !important;
  }
  .section-title-mobile {
    display: block;
    color: #3e247d;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 12px;
  }
  .section-subtitle {
    color: #020106;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 23.4px */
    margin-bottom: -12px;
  }
  .products-section {
    display: none;
  }
  .products-section-mobile {
    display: block;
    position: relative;
    animation: gradientMobileCycle 10s infinite;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image: url(https://rocketium.com/website/images/bg-mobile-products1.webp);
    background-size: cover;
    background-position: center;
  }

  @keyframes gradientMobileCycle {
    0% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products1.webp);
    }
    14.29% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products2.webp);
    }
    28.57% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products3.webp);
    }
    42.86% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products4.webp);
    }
    57.14% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products5.webp);
    }
    71.43% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products6.webp);
    }
    85.71% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products7.webp);
    }
    100% {
      background-image: url(https://rocketium.com/website/images/bg-mobile-products1.webp);
    }
  }

  .d-flex-mobile {
    display: inline-grid;
    gap: 12px;
  }
  .email-address {
    width: 330px;
  }
  .email-address::placeholder {
    font-size: 18px;
  }
  .hero-banner {
    width: 100%;
  }
  .hero-banner-gif {
    margin-top: 24px;
    border-radius: 48px;
  }
  .logo-bar {
    width: 434px;
    background: #ffffff;
    margin-left: 0px;
    margin-top: 20px;
    border-radius: 0px;
    padding: 0px;
    padding-bottom: 6px !important;
    margin-bottom: 0px;
  }
  img.logo-image {
    max-width: 50px;
    max-height: 14px;
    height: auto;
  }
  .logo-text {
    color: rgba(2, 1, 6, 0.6);
    text-align: center;
    font-family: Manrope;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  svg.bi.bi-heart-fill {
    width: 8px;
  }
  p.logo-text {
    margin-bottom: 10px;
  }
  .ai-section {
    width: 100%;
    display: none;
  }
  section.image-unmask {
    display: none;
  }
  section.content {
    display: none;
  }
  section.features.py-5 {
    display: none;
  }
  .ai-section-heading {
    width: 308px;
    font-size: 24px;
    letter-spacing: -0.7px;
    margin-top: 12px;
  }
  .ai-mobile {
    width: 430px;
    display: inline-flex;
    gap: 24px;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
  }
  .ai-mobile-img {
    width: 58px;
  }
  section.sign-up-testimonial {
    margin-top: 40px !important;
  }
  #greenMobile {
    position: relative;
    filter: drop-shadow(0px 0.887px 5.323px rgba(61, 200, 179, 0.05))
      drop-shadow(0px 5.323px 5.323px rgba(61, 200, 179, 0.05))
      drop-shadow(0px 0.887px 5.323px rgba(61, 200, 179, 0.05));
  }

  #blueMobile {
    position: relative;
    filter: drop-shadow(0px 0.887px 5.323px rgba(35, 145, 250, 0.05))
      drop-shadow(0px 5.323px 5.323px rgba(35, 145, 250, 0.05))
      drop-shadow(0px 0.887px 5.323px rgba(35, 145, 250, 0.05));
    margin-top: 40px;
    margin-bottom: 40px;
  }

  #purpleMobile {
    position: relative;
    filter: drop-shadow(0px 0.887px 5.323px rgba(35, 145, 250, 0.05))
      drop-shadow(0px 5.323px 5.323px rgba(35, 145, 250, 0.05))
      drop-shadow(0px 0.887px 5.323px rgba(35, 145, 250, 0.05));
  }
  .inner {
    width: 366.043px;
    height: 671.585px;
    margin-left: 7.5%;
    background: url(https://rocketium.com/website/images/bg-mobile.png);
    background-repeat: no-repeat;
  }
  .inner-content {
    padding: 16px 18px;
  }
  .square-box-blue {
    position: absolute;
    right: 1rem;
    display: flex;
    width: 70px;
    height: 72px;
    padding: 0px;
    flex-shrink: 0;
    z-index: 2;
  }
  .square-box-green {
    position: absolute;
    right: 1rem;
    display: flex;
    width: 70px;
    height: 72px;
    padding: 0px;
    flex-shrink: 0;
    z-index: 2;
  }
  .square-box-purple {
    position: absolute;
    right: 1rem;
    display: flex;
    width: 70px;
    height: 72px;
    padding: 0px;
    flex-shrink: 0;
    z-index: 2;
  }
  .ai-inner-text {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    width: 280px;
  }
  .ai-inner-pill-blue {
    width: 230px;
    font-size: 14px;
    margin-bottom: 16px;
    gap: 10px;
  }
  .ai-inner-pill {
    width: 204px;
    font-size: 14px;
    margin-bottom: 16px;
    gap: 9px;
  }
  .ai-inner-pill-purple {
    width: 192px;
    font-size: 14px;
    margin-bottom: 16px;
    gap: 10px;
  }
  .ai-section-subtext {
    font-size: 16px;
    line-height: 140%;
  }
  span.blue {
    color: #0c73e2;
    font-size: 16px;
    line-height: 140%;
  }
  span.green {
    color: #226d62;
    font-size: 16px;
    line-height: 140%;
  }
  span.purple {
    color: #5935b9;
    font-size: 16px;
    line-height: 140%;
  }
  section.content-mobile {
    display: block;
  }
  .case-studies-container {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .integrations {
    margin-top: 0px;
  }
  h2.case-study-header {
    font-size: 36px;
    line-height: 100%; /* 36px */
    letter-spacing: -1.08px;
  }
  .btn-group {
    width: 80%;
    padding: 0px;
    align-items: center;
    flex-shrink: 0;
  }
  button.cs-download-button {
    font-size: 16px;
    border-radius: 40px;
  }
  section.testimonials {
    display: none;
  }

  section.case-studies.py5.bg-white {
    width: 100%;
    display: none;
  }

  .slide-content {
    width: 366px;
    height: 590px;
    margin-left: 4vw;
    background-image: none !important;
    background-repeat: no-repeat;
    border: 1px solid gainsboro;
    border-radius: 24px;
  }
  .square-box {
    position: absolute;
    top: 28.6rem;
    right: 1.2rem;
    display: flex;
    width: 70px;
    height: 70px;
    padding: 29.981px;
    justify-content: center;
    align-items: center;
    gap: 29.981px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 0.488px solid #fff;
    background: #ededef;
    backdrop-filter: blur(23.700000762939453px);
    z-index: 2;
  }
  .cs-bg-section {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/images/bg-case-lp.png) !important;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section1 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section2 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/images/bg-case3.webp) !important;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section3 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/images/cs-p-m.png) !important;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 18px 0px 0px 28px;
  }
  .cs-bg-section4 {
    width: 336px;
    height: 206px;
    background-image: url(https://rocketium.com/website/images/bg-case2.png) !important;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin: 18px 0px 0px 28px;
  }
  .cs-image-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 120%;
  }
  .cs-bg-content {
    padding: 0px;
    width: 270px;
    margin-top: 14px;
    margin-left: 8px;
  }
  .cs-download {
    position: absolute;
    bottom: 24rem;
  }
  .case-studies-text {
    width: 324px;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  span.case-studies-number {
    font-size: 22px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.6px;
  }
  .slide-details {
    flex: 1;
    padding: 18px 0;
    margin-left: 30px;
  }
  .tabs-slider-prev {
    position: relative;
    left: -4rem;
    top: -2.5rem;
    display: inline-block;
  }
  img.footer-logo {
    width: 204px;
    height: 27px;
    margin-top: 60px;
  }
  img.footer-medal {
    width: 385px;
    margin-top: 20px;
    margin-bottom: 4px;
  }
  img.circles-img {
    width: 100vw;
    height: 165px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tabs-slider-next {
    position: relative;
    left: 8rem;
    top: -2.5rem;
    display: inline-block;
  }
  .row-case-studies {
    width: 334px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 16px;
  }
  span.cs-sub-text {
    font-size: 11.6px;
    font-weight: 300;
    line-height: 13.5px;
    height: 2;
  }
  .experience {
    display: flex;
    width: 366px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.49);
    border: 0.6px solid rgba(2, 1, 6, 0.3);
    backdrop-filter: blur(25.449665069580078px);
  }
  h2.sign-up-heading {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 16px;
  }
  .internal-experience {
    width: 330px;
    height: 250.96px;
    padding: 5px;
    padding-top: 21px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: radial-gradient(
      72.12% 72.12% at 50% 50%,
      rgba(190, 171, 253, 0.6) 0%,
      rgba(190, 171, 253, 0) 100%
    );
  }
  .internal-experience-mobile {
    display: block !important;
    width: 330px;
    height: 470px;
    padding: 5px;
    padding-top: 21px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: radial-gradient(
      72.12% 72.12% at 50% 50%,
      rgba(190, 171, 253, 0.6) 0%,
      rgba(190, 171, 253, 0) 100%
    );
  }
  .internal-experience-new,
  .mobile-sign-up {
    display: none;
  }
  .email-address-mobile {
    width: 265px;
    display: flex;
    padding: 13px 38px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 48px;
    border: 0.6px solid rgba(2, 1, 6, 0.3);
    background: #fff;
  }
  /* Custom styles for the placeholder */
  .email-address-mobile::placeholder {
    color: #82899d;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .email-address-mobile:focus::placeholder {
    color: #020106;
  }
  button.primary-button {
    font-size: 18px;
  }
  .mobile-sign {
    display: block;
  }
  section.case-studies-mobile.py2.bg-white {
    display: block;
  }
  .heading-rocketium {
    font-size: 36px;
    letter-spacing: -1.08px;
  }
  .features-mobile {
    background: linear-gradient(219deg, #fafafa 19.72%, #d9dce2 119.51%);
  }
  .sub-heading-rocketium {
    font-size: 16px;
    margin-top: -20px;
  }
  .feature-mobile-section {
    display: flex;
    gap: 48px;
    align-items: center;
  }
  .features-image-container {
    width: 382px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  section.features-mobile.py-2 {
    display: block;
  }
  .border-top.py-2 {
    display: none;
  }
  .features-image-container img {
    max-width: 100%;
    height: auto;
  }
  .features-text-y {
    color: #cb8f00;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
  }
  .features-text-b {
    color: #057aeb;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
  }
  .features-text-g {
    color: #198f39;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
  }
  .features-text-r {
    color: #9e1b05;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
  }
  .features-text-dr {
    color: #26b59f;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
  }
  .sub-text-features {
    color: #020106;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .logo-desktop {
    display: none;
  }

  /* Custom Previous Arrow */
  .features-swiper-button-prev {
    background: none; /* Remove default background */
    background-image: url("https://rocketium.com/website/images/left-icon.svg"); /* Replace with your custom icon path */
    background-size: 16px 16px; /* Adjust size of the icon within the button */
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 0.638px solid #020106;
    content: ""; /* Ensure no default Swiper content is displayed */
  }

  /* Custom Next Arrow */
  .features-swiper-button-next {
    background: none;
    background-image: url("https://rocketium.com/website/images/right-icon.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 0.638px solid #020106;
    background-color: #020106;
    content: "";
  }

  .features-next {
    width: 24px;
    height: 24px;
    padding: 14px;
    position: relative;
    bottom: 28.5rem;
    left: 23.5rem;
  }
  .features-prev {
    width: 24px;
    height: 24px;
    padding: 14px;
    position: relative;
    bottom: 28rem;
    left: -1rem;
  }
  .integrations-heading {
    font-size: 36px;
    letter-spacing: -1.44px;
    margin-top: 0px;
    margin-bottom: 12px;
    margin-left: 12px;
  }
  .integrations-text {
    display: none;
  }
  p.cs-sub-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
  }
  .integrations-text-mobile {
    display: block;
    color: #020106;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.4px;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 12px;
  }
  .circles-section {
    height: 165px;
    overflow: hidden;
    background-image: url(https://rocketium.com/website/images/bg-circles.png);
  }
  .sign-up {
    margin: 20px 0;
  }
  .circle-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 414px;
    height: 165px;
    margin: 0 auto;
    margin-left: -12px;
    perspective: 1500px;
    animation: fadeIn 1s ease-out;
  }
  section.integrations.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  #mobile-footer {
    display: block;
    margin-top: -3rem;
  }

  .credits-container {
    margin-top: 50px;
    /* margin-bottom: 40px; */
    padding-bottom: 120px;
  }

  .accordion-header button {
    text-align: left;
    padding: 16px;
    color: #000;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .accordion-body {
    color: #020106;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 0rem 1rem;
  }

  .accordion-item {
    border-bottom: 1px solid #000;
  }

  #desktop-footer {
    display: none;
  }
  /* Default styles for the SVG icon */
  .arrow-icon {
    display: inline-block;
    width: 13px;
    height: 23px;
    margin-left: auto;
    transition: transform 0.3s ease;
    transform: rotate(270deg);
  }

  .arrow-icon::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="9" viewBox="0 0 13 9" fill="none"><path d="M12.1681 0.867188C12.5035 0.867188 12.69 1.25516 12.4804 1.51707L6.91269 8.47676C6.75256 8.67692 6.44811 8.67692 6.28798 8.47676L0.720239 1.51707C0.510716 1.25516 0.697184 0.867187 1.03259 0.867188L12.1681 0.867188Z" fill="%2317100E"/></svg>')
      no-repeat center center;
    background-size: contain;
  }

  .arrow-icon-nav {
    display: inline-block;
    width: 13px;
    height: 23px;
    margin-left: auto;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
  }

  .arrow-icon-nav::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="9" viewBox="0 0 13 9" fill="none"><path d="M12.1681 0.867188C12.5035 0.867188 12.69 1.25516 12.4804 1.51707L6.91269 8.47676C6.75256 8.67692 6.44811 8.67692 6.28798 8.47676L0.720239 1.51707C0.510716 1.25516 0.697184 0.867187 1.03259 0.867188L12.1681 0.867188Z" fill="%2317100E"/></svg>')
      no-repeat center center;
    background-size: contain;
  }

  /* Rotate the arrow when expanded */
  .accordion-button-nav:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
  }

  /* Rotate the arrow when expanded */
  .accordion-button:not(.collapsed) .arrow-icon {
    transform: rotate(180deg);
  }

  .mobile-nav-header {
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  .mobile-nav-body {
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    border: 4px solid #fff;
    background: #f5f5f7;
  }

  .mobile-nav-resources {
    color: #020106;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 17.6px */
    text-transform: none;
    margin-bottom: 24px;
  }

  .mobile-nav-resources-text {
    color: #020106;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 18.2px */
    margin-top: 8px;
  }

  .mobile-nav-resources-header {
    color: #5935b9;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 24px;
    text-transform: none;
  }

  .testimonials-heading {
    color: #020106;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.08px;
  }

  .testimonials-heading-color {
    color: #9a76fa;
    font-family: Manrope;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -1.08px;
    margin-top: -0.5rem;
    margin-bottom: 3rem;
  }

  .internal-testimonials-1 {
    width: 385px;
    height: 478px;
    padding: 30px;
    border-radius: 36px;
    background: url(https://rocketium.com/website/images/1.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .testimonials-author-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }
  .internal-testimonials-2 {
    width: 385px;
    height: 478px;
    padding: 30px;
    border-radius: 36px;
    background: url(https://rocketium.com/website/images/2.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-3 {
    width: 385px;
    height: 478px;
    padding: 30px;
    border-radius: 36px;
    background: url(https://rocketium.com/website/images/3.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .internal-testimonials-4 {
    width: 385px;
    height: 478px;
    padding: 30px;
    border-radius: 36px;
    background: url(https://rocketium.com/website/images/4.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .testimonials-text {
    color: #020106;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 0 0;
  }
  .email-address-test-mobile {
    width: 300px;
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 34.133px;
    border: 0.356px solid rgba(2, 1, 6, 0.3);
    background: #fff;
  }
  .email-address-test-mobile::placeholder {
    color: #82899d;
    text-align: center;
    font-family: Manrope;
    font-size: 15.098px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .test-mob {
    width: 300px;
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 15.098px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .testimonials-text-mobile {
    color: #000;
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .test-image-mobile {
    width: 262.518px;
    height: 60.781px;
  }
  .testimonials-author-title-blue {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .testimonials-author-title-purple {
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .testimonials-swiper-button {
    position: relative;
    top: 2.5rem;
    right: 0rem;
    left: 0rem;
    display: inline-block;
    margin-left: 0rem;
  }
  .heading-section {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.48px;
    margin-left: 10px;
  }
  section.testimonials-mobile {
    display: block;
  }
  .fab img {
    max-width: 100%;
    height: auto;
  }
}

/* Styles for tablet portrait mode */
@media (min-width: 600px) and (max-width: 899px) {
  section.sign-up-testimonial {
    margin-top: 40px !important;
  }
  .internal-experience-new {
    width: 650px !important;
    height: 240px !important;
    padding: 30px 15px 30.543px 15px !important;
  }
  .testimonials-text-new {
    font-size: 18px !important;
    margin-top: 0px !important;
  }
  .test-sym-new {
    width: 175px !important;
    height: 154.655px !important;
    flex-shrink: 0;
  }
  nav.navbar.navbar-expand-lg.desktop-nav {
    display: none;
  }
  .book-demo-nav {
    display: flex;
    padding: 8px;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 0px 1.889px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    margin-top: 24px;
    margin-bottom: 24px;
  }
  form#nav-form {
    /* gap: 10px; */
    display: flex;
  }
  .dropdown-item-subheading,
  .dropdown-item-subheading-blue {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
  }
  .dropdown-desc {
    margin-bottom: 0px;
    margin-top: -15px;
  }
  .mobile-nav {
    width: 100%;
    display: block;
  }
  .accordion-item-nav {
    width: 351px;
    border-bottom: 1px solid #eae9e9;
  }
  .primary-button-form {
    font-size: 18px;
  }
  .book-demo,
  .login-section {
    display: none;
  }
  .login-section-mobile {
    display: block;
  }
  .login-button {
    text-align: left !important;
    margin-left: 0px !important;
  }
  .accordion-header button {
    width: 100%;
    text-align: left;
    padding: 16px;
    color: #000;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .arrow-icon-nav {
    display: inline-block;
    width: 13px;
    height: 23px;
    margin-left: auto;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
  }
  .arrow-icon-nav::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="9" viewBox="0 0 13 9" fill="none"><path d="M12.1681 0.867188C12.5035 0.867188 12.69 1.25516 12.4804 1.51707L6.91269 8.47676C6.75256 8.67692 6.44811 8.67692 6.28798 8.47676L0.720239 1.51707C0.510716 1.25516 0.697184 0.867187 1.03259 0.867188L12.1681 0.867188Z" fill="%2317100E"/></svg>')
      no-repeat center center;
    background-size: contain;
  }
  .mobile-nav-body {
    display: flex;
    padding: 20px !important;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
    border: 4px solid #fff;
    background: #f5f5f7;
  }
  .mobile-nav-resources-header {
    color: #5935b9;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 24px;
    text-transform: none;
  }
  .mobile-nav-resources {
    color: #020106;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    text-transform: none;
    margin-bottom: 24px;
  }
  .mobile-nav-resources-text {
    color: #020106;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-top: 8px;
  }
  .mobile-nav-header {
    font-size: 20px !important;
    font-weight: 500 !important;
  }
  .primary-button-form {
    font-size: 18px;
  }
  .book-demo,
  .login-section {
    display: none;
  }
  .logo {
    height: 30px;
    width: 30px;
  }
  .ai-inner-img {
    margin-top: 1rem;
  }

  .inner-img-bg {
    margin-top: 0.5rem;
  }
  .section-title-big {
    font-size: 48px;
    letter-spacing: -1.536px;
  }

  .section-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: -1.02px;
    margin-top: 34px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .banner-form {
    margin-top: 2px;
  }

  .email-address {
    width: 201px;
    display: flex;
    padding: 0px 0px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 34.133px;
    border: 0.356px solid rgba(2, 1, 6, 0.3);
    background: #fff;
    margin-right: 12px;
  }

  .email-address::placeholder {
    color: #82899d;
    text-align: center;
    font-family: Manrope;
    font-size: 10.67px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .primary-button-form {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 10.67px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .hero-banner {
    width: 640px;
    height: 360px;
  }

  .hero-banner-gif {
    margin-top: 0px;
    border-radius: 48px;
  }

  p.logo-text {
    font-size: 12.467px;
    margin-bottom: 28px;
  }

  .logo-desktop.py-5 {
    margin-top: -2rem;
    margin-bottom: -3rem;
  }

  .fab img {
    max-width: 100%;
    max-height: 16px;
  }

  .ai-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  img.brand-element {
    width: 129.067px;
    height: 82.133px;
  }

  .ai-section-heading {
    width: 534px;
    font-size: 32px;
  }

  .products-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .blue-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #greenSection,
  #blueSection,
  #purpleSection {
    width: 680px;
  }

  .inner,
  .inner-bg {
    width: 682.667px;
    height: 430.4px;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab-p.png);
    background-repeat: no-repeat;
  }

  .inner-content {
    padding: 28px 41px;
  }

  .ai-inner-pill {
    width: 173px;
    font-size: 10.667px;
    margin-bottom: 6px;
  }

  .ai-inner-pill-blue {
    width: 193px;
    font-size: 10.667px;
    margin-bottom: 6px;
  }

  .ai-inner-pill-purple {
    width: 163px;
    font-size: 10.667px;
    margin-bottom: 6px;
  }

  .ai-inner-text {
    font-size: 19.2px;
  }

  .ai-section-subtext {
    font-size: 9.6px;
  }

  span.green,
  span.blue,
  span.purple {
    font-size: 9.6px;
  }

  .square-box-green,
  .square-box-blue,
  .square-box-purple {
    position: absolute;
    right: -2px;
    width: 66.133px;
    height: 66.133px;
  }

  .arrow-green {
    width: 66.133px;
    height: 66.133px;
  }

  section.features.py-5 {
    margin-top: -2rem !important;
    margin-bottom: -5rem;
  }

  .heading-rocketium {
    font-size: 42.667px;
    letter-spacing: -0.853px;
  }

  .sub-heading-rocketium {
    font-size: 12.8px;
    letter-spacing: 0.128px;
  }

  img#displayImage {
    width: 230.233px;
    height: 312.004px;
  }

  .shadow-why {
    width: 401.089px;
    height: 127.852px;
    transform: rotate(16.436deg);
    margin-top: -4rem;
    margin-left: 5rem;
  }

  .accordion-button {
    width: 218px;
    font-size: 12.8px;
  }

  .accordion-body {
    font-size: 10.667px;
  }

  .divider-rocketium {
    margin-top: 12.4px;
    margin-bottom: 12.4px;
    width: 180px;
  }

  .heading-section-case {
    font-size: 25.6px;
    letter-spacing: -0.64px;
  }

  .circles-purple {
    width: 97.219px;
    height: 61.867px;
  }

  img.img-fluid.why-rock {
    width: 122.92px;
    height: 78.222px;
  }

  .case-studies-container {
    margin-top: 24px;
    margin-bottom: 0px;
    padding-top: 26px;
  }

  .tab-content.mt-5 {
    margin-top: 0px !important;
  }

  .internal-testimonials-1,
  .internal-testimonials-2,
  .internal-testimonials-3,
  .internal-testimonials-4,
  .internal-testimonials-blue-1,
  .internal-testimonials-blue-2,
  .internal-testimonials-ca-1,
  .internal-testimonials-ca-2 {
    width: 680px;
    height: 274px;
  }

  .testimonials-text {
    font-size: 19.2px;
    padding: 0px 96px;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 19.2px;
  }

  .test-sym {
    width: 34px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .sign-up {
    margin: 42px 0;
  }

  svg.linkedin-icon,
  svg.youtube-icon {
    width: 25.653px;
    height: 25.643px;
  }

  .credits-section {
    align-items: center;
    gap: 18px;
  }

  .cs-image-text {
    font-size: 19.2px;
  }

  button.cs-download-button {
    font-size: 9.6px;
  }

  .case-studies-text {
    width: 227.2px;
    font-size: 9.6px;
    margin-top: 0px;
    margin-bottom: 8px;
  }

  .nums {
    width: 280px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-content {
    width: 682.667px;
    height: 243.743px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/images/bg-cs-tab-p.png);
    background-repeat: no-repeat;
  }

  .cs-bg-content {
    padding: 24px;
  }

  .cs-bg-section {
    width: 320px;
    height: 210px;
    background-image: url(https://rocketium.com/website/images/cs-bg1.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: 320px;
    height: 210px;
    background-image: url(https://rocketium.com/website/images/cs-bg2.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: 320px;
    height: 210px;
    background-image: url(https://rocketium.com/website/images/cs-bg3-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2 {
    width: 320px;
    height: 210px;
    background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section3 {
    width: 320px;
    height: 210px;
    background-image: url(https://rocketium.com/website/images/cs-bg3.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .square-box {
    width: 69.371px;
    height: 70.847px;
    position: absolute;
    top: 0rem;
    right: 1rem;
  }

  span.case-studies-number {
    font-size: 25.6px;
    letter-spacing: -0.512px;
  }

  p.cs-sub-text {
    font-size: 9.6px;
  }

  .cs-download,
  .cs-download-p {
    position: absolute;
    bottom: 4rem;
  }

  .col-two-third {
    padding: 0px 20px !important;
  }
  .slide-details {
    flex: 1;
    padding: 25px 0;
  }

  .swiper-button-prev {
    background-size: 11px 11px;
    padding: 10px 24px;
  }

  .swiper-button-next {
    background-size: 11px 11px;
    padding: 10px 24px;
  }

  .tabs-slider-prev {
    left: 19rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 25.5rem;
    top: -2.5rem;
  }

  .testimonials-experience {
    margin-top: 12px;
  }

  .testimonials-swiper-button {
    position: relative;
    top: 1.5rem;
    left: 18rem;
    display: inline-block;
  }

  .integrations {
    width: 100%;
    background: linear-gradient(101deg, #fff 33.31%, #d9dce2 194.46%);
    margin-top: 20px;
    padding: 0px 0px;
  }

  .integrations-heading {
    font-size: 42.667px;
    letter-spacing: -0.853px;
    text-align: end;
  }

  .integrations-text {
    font-size: 12.8px;
    letter-spacing: -0.341px;
    margin-top: 31px;
  }

  img.circles-img {
    width: 100vw;
  }

  .experience {
    width: 683px;
    padding: 24px;
  }

  .internal-experience {
    width: 657.067px;
    height: 210px;
    padding: 30px 86px 34px 86px;
  }

  h2.sign-up-heading {
    font-size: 34.133px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -1.067px;
    margin-bottom: 20px;
  }

  img.footer-logo {
    width: 118.4px;
    height: 15.528px;
  }

  img.footer-medal {
    width: 261.462px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  img.footer-badge {
    width: 154.103px;
  }

  .widget-title,
  li.menu-item {
    font-size: 8.533px;
  }

  footer#footer {
    background: url(https://rocketium.com/website/images/footer-bg.webp);
    background-size: cover;
  }

  #desktop-footer {
    display: block;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }

  .credit-text {
    font-size: 6.4px;
  }
}
/* .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 5rem;
} */

.navbar-expand-lg .navbar-nav {
  flex-direction: row;
  gap: 55px;
  position: relative;
}

.custom-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-40%);
  background: white;
  border-radius: 12px;
  padding: 20px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.company {
  min-width: 330px !important;
  border-radius: 24px;
  border: 8px solid #fff;
  background: #f5f5f7;
  padding: 44px 20px;
}
p.dropdown-title-comp {
  color: #020106;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0.48px;
  text-transform: none;
}
p.dropdown-ecom {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 5px;
  text-transform: none;
  cursor: pointer;
}
p.dropdown-ecom-text {
  color: #020106;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
  text-transform: none;
  cursor: pointer;
}

p.dropdown-use-case {
  color: #020106;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 24px;
  text-transform: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.use-case {
  min-width: 330px !important;
  border-radius: 24px;
  border: 8px solid #fff;
  background: linear-gradient(222deg, #fff -4.9%, #e2daff 84.87%);
  padding: 44px 20px;
}
.company-demo {
  min-width: 330px !important;
}
.internal-experience-nav-company {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 54px 20px;
}
.navbar .nav-item.dropdown {
  position: static;
}

.navbar .nav-item.dropdown:hover .custom-dropdown {
  display: block;
}

.dropdown-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.dropdown-item {
  text-align: left;
  white-space: normal;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dropdown-item-company:nth-child(1),  /* First column */
.dropdown-item-company:nth-child(2),
.dropdown-item-company:nth-child(3) {
  /* Third column */
  flex: 0 1 30%; /* Do not grow, take exactly 25% width */
  min-width: 30%; /* Prevent shrinking below 25% */
}

/* Assign widths */
.dropdown-item:nth-child(1),  /* First column */
.dropdown-item:nth-child(3) {
  /* Third column */
  flex: 0 1 30%; /* Do not grow, take exactly 25% width */
  min-width: 30%; /* Prevent shrinking below 25% */
}

.dropdown-item:nth-child(2) {
  /* Second column (image) */
  flex: 0 1 40%; /* Do not grow, take exactly 50% width */
  min-width: 40%; /* Prevent shrinking below 50% */
}

.dropdown-item:hover {
  background-color: white;
}

.dropdown-image {
  text-align: -webkit-center;
}

.dropdown-desc {
  color: #020106;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 21.6px */
  text-transform: none;
}

.dropdown-sub-text {
  text-transform: none;
  color: #020106;
  font-family: Manrope;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}

.nav-pill-green {
  width: 205px !important;
  font-size: 14px !important;
  text-transform: initial;
}

.dropdown-item-heading {
  color: #000;
  font-family: Manrope;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.dropdown-item-subheading {
  color: #216d61;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 12px;
}

.dropdown-item-subheading-blue {
  color: #057aeb;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 12px;
}

.dropdown-item-subheading-purple {
  color: #5935b9;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: none;
  margin-top: 30px;
  margin-bottom: 12px;
}

.brand-element-nav {
  width: 102px;
  height: 64.909px;
}

.internal-experience-nav {
  border-radius: 24px;
  background: linear-gradient(222deg, #fff -4.9%, #e2daff 84.87%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px 18px;
}

.sign-up-heading-nav {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  margin-top: 10px;
}

.sign-sub-heading-nav {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.email-address-nav {
  width: 267px;
  display: flex;
  padding: 9px 0px;
  justify-content: center;
  align-items: center;
  gap: 17.311px;
  align-self: stretch;
  border-radius: 34.623px;
  border: 0.433px solid rgba(2, 1, 6, 0.3);
  background: #fff;
  margin-bottom: 10px;
}

.email-address-nav::placeholder {
  color: #020106;
  text-align: center;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.primary-button-form-nav {
  display: flex;
  padding: 12px 90px;
  justify-content: center;
  align-items: center;
  gap: 17.311px;
  align-self: stretch;
  border-radius: 34.623px;
  border: 2.164px solid #d3c6ff;
  background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.dropdown-item.int {
  margin-left: -10px;
}

form#nav-form {
  gap: 10px;
}

.email-address-navBar {
  display: flex;
  padding: 8px 8px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 34.623px;
  border: 0.433px solid rgba(2, 1, 6, 0.3);
  background: #fff;
}
.email-address-navBar::placeholder {
  color: #82899d;
  text-align: center;
  font-family: Manrope;
  font-size: 11.942px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.primary-button-form-navBar {
  display: inline-flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 34.133px;
  border: 2px solid #beabfd;
  background: linear-gradient(81deg, #8a3ffc -7.53%, #9a76fa 80.97%);
  color: #fff;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
}

.login-button {
  color: #9a76fa;
  text-align: center;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: none;
  margin-left: -9rem;
}

.logout-icon {
  margin-left: -3rem;
}

.col-one-third {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.col-two-third {
  flex: 2;
  padding: 20px;
  text-align: center;
}

section.sign-up-testimonial {
  margin-top: 80px;
}

.internal-experience-new {
  width: 1232px;
  height: 460px;
  padding: 50px 85px 41.543px 85px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: radial-gradient(
    72.12% 72.12% at 50% 50%,
    rgba(190, 171, 253, 0.6) 0%,
    rgba(190, 171, 253, 0) 100%
  );
}

.testimonials-text-new {
  color: #000;
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
  margin-top: 16px;
}

.test-sym-new {
  width: 325px;
  height: 304.655px;
  flex-shrink: 0;
}

.test-sym-mobile {
  width: 55.641px;
  height: 48.219px;
  flex-shrink: 0;
}

.internal-experience-mobile {
  display: none;
}

.login-button {
  display: block; /* Show login button by default */
}

.logout-icon {
  display: none; /* Hide logout icon by default */
}

.search-container {
  position: relative;
  display: inline-block;
}

.login-dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  right: 0;
  min-width: 150px;
  z-index: 1000;
}

.login-dropdown-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.login-dropdown-menu a:hover {
  background: radial-gradient(
    72.12% 72.12% at 50% 50%,
    rgba(190, 171, 253, 0.6) 0%,
    rgba(190, 171, 253, 0) 100%
  );
}

.search-container:hover .login-dropdown-menu {
  display: block;
}

.cta-error {
  font-size: small;
  color: red;
  text-transform: none;
}

a.rocketium-creative-nav:hover {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: linear-gradient(
    85deg,
    rgba(64, 211, 188, 0.1) 0%,
    rgba(33, 109, 97, 0) 100%
  );
}

a.rocketium-performance-nav:hover {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: linear-gradient(
    85deg,
    rgba(5, 122, 235, 0.1) 0%,
    rgba(5, 122, 235, 0) 100%
  );
}

/* .dropdown-toggle::after {
  transform: rotate(-90deg);
} */

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

.dropdown-toggle.show::after {
  transform: rotate(0deg);
}
svg.icons-automation {
  width: 48px;
}

/* Styles for landscape tablets */
@media (min-width: 900px) and (max-width: 1024px) {
  .dropdown-content {
    max-width: 900px;
  }
  .dropdown-menu.custom-dropdown {
    width: 90vw !important;
  }
  .dropdown-menu.custom-dropdown.resources-nav {
    width: 620px !important;
  }
  .dropdown-item-heading {
    font-size: 34px !important;
  }
  .brand-element-nav {
    width: 92px !important;
    height: 54.909px !important;
  }
  img#hoverImage {
    width: 330px !important;
  }
  .sign-up-heading-nav {
    font-size: 19px !important;
    margin-bottom: 8px;
  }
  .internal-experience-nav-company {
    padding: 54px 42px;
  }
  .email-address-nav {
    width: 220px !important;
  }
  .primary-button-form-nav {
    padding: 12px 67px !important;
  }
  .company-demo {
    min-width: 300px !important;
  }
  .company-demo,
  .use-case,
  .company {
    min-width: 300px !important;
  }
  .w-100 {
    width: auto !important;
  }
  .primary-button-form-navBar {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  .navbar-expand-lg .navbar-nav {
    gap: 30px !important;
  }
  .email-address-navBar {
    padding: 0px 0px !important;
  }
  .login-button {
    display: block;
    margin-left: 8px !important;
  }
  .internal-experience-new {
    width: 865px !important;
    height: 340px !important;
    padding: 50px 34px 41.543px 34px !important;
  }
  .testimonials-text-new {
    font-size: 25px !important;
    margin-top: 0px !important;
  }
  .test-sym-new {
    width: 225px !important;
    height: 204.655px !important;
    flex-shrink: 0;
  }

  .section-title-big {
    font-size: 68px;
    letter-spacing: -2.04px;
  }

  .section-title {
    text-align: center;
    font-size: 44px;
    letter-spacing: -1.32px;
    margin-top: 45px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .banner-form {
    margin-top: 14px;
  }

  .hero-banner-gif {
    margin-top: 38px;
    border-radius: 48px;
  }

  .email-address {
    width: 240px;
    display: flex;
    padding: 16px 18px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 34.133px;
    border: 0.356px solid rgba(2, 1, 6, 0.3);
    background: #fff;
    margin-right: 12px;
  }

  .email-address::placeholder {
    color: #82899d;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .primary-button-form {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .hero-banner {
    width: 874.667px;
    height: 466.489px;
  }

  p.logo-text {
    margin-bottom: 30px;
  }

  .logo-desktop.py-5 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .fab img {
    max-width: 100%;
    max-height: 24px;
  }

  .ai-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  img.brand-element {
    width: 150px;
    height: 90px;
  }

  .ai-section-heading {
    width: 680px;
    font-size: 38px;
  }

  .inner-content {
    padding: 20px 32px;
  }

  .products-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .blue-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #greenSection,
  #blueSection,
  #purpleSection {
    width: 1024px;
  }

  .inner {
    width: 910.222px;
    height: 575px;
    margin-left: 4rem;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab.png);
    background-repeat: no-repeat;
  }

  .inner-bg {
    width: 910.222px;
    height: 546.844px;
    margin-left: 4rem;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab-bg.png);
    background-repeat: no-repeat;
  }

  .ai-inner-pill {
    width: 225px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-pill-blue,
  .ai-inner-pill-purple {
    width: 258px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-text {
    font-size: 23px;
  }

  .ai-section-subtext {
    font-size: 14px;
  }

  span.green,
  span.blue,
  span.purple {
    font-size: 14px;
  }

  .square-box-green,
  .square-box-blue,
  .square-box-purple {
    position: absolute;
    right: 3rem;
    width: 88.178px;
    height: 88.178px;
  }

  .arrow-green {
    width: 88.178px;
    height: 88.178px;
  }

  section.features.py-5 {
    padding-top: 45px !important;
    padding-bottom: 0px !important;
  }

  .heading-rocketium {
    font-size: 48px;
    letter-spacing: -0.88px;
  }

  .sub-heading-rocketium {
    font-size: 20px;
    letter-spacing: 0.171px;
  }

  img#displayImage {
    width: 307.091px;
    height: 416.159px;
  }

  .accordion-button {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 11.378px;
  }

  .heading-section-case {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .circles-purple {
    width: 129.625px;
    height: 82.489px;
  }

  img.img-fluid.why-rock {
    width: 122.92px;
    height: 78.222px;
  }

  .case-studies-container {
    margin-top: 56px;
    margin-bottom: 30px;
  }

  .tab-content.mt-5 {
    margin-top: 14px !important;
  }

  .testimonials-experience {
    margin-top: 20px;
  }

  .internal-testimonials-1,
  .internal-testimonials-2,
  .internal-testimonials-3,
  .internal-testimonials-4,
  .internal-testimonials-blue-1,
  .internal-testimonials-blue-2,
  .internal-testimonials-ca-1,
  .internal-testimonials-ca-2 {
    width: 930px;
    height: 340px;
  }

  .testimonials-text {
    font-size: 24px;
    padding: 0px 135px;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 24px;
  }

  .test-sym {
    width: 46px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .cs-image-text {
    font-size: 24px;
  }

  button.cs-download-button {
    font-size: 12.8px;
  }

  .case-studies-text {
    width: 304.356px;
    font-size: 12.8px;
  }

  .nums {
    width: 375px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-content {
    width: 915px;
    height: 328px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/images/bg-cs-tab.png);
    background-repeat: no-repeat;
  }

  .cs-bg-section {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg1.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg2.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg3-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section3 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg3.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .square-box {
    width: 92px;
    height: 94px;
    position: absolute;
    top: 0rem;
    right: 2rem;
  }

  span.case-studies-number {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  p.cs-sub-text {
    font-size: 12px;
  }

  .cs-download,
  .cs-download-p {
    position: absolute;
    bottom: 4rem;
  }

  .slide-details {
    flex: 1;
    padding: 25px 0;
  }

  .tabs-slider-prev {
    left: 23rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 35rem;
    top: -2.5rem;
  }

  .testimonials-swiper-button {
    position: relative;
    top: 2.5rem;
    left: 23rem;
    display: inline-block;
  }

  .integrations-heading {
    font-size: 44px;
    letter-spacing: -0.88px;
    text-align: end;
  }

  .integrations-text {
    font-size: 17.067px;
    letter-spacing: -0.341px;
    margin-top: 22px;
  }

  img.circles-img {
    width: 100vw;
    height: 359.111px;
  }

  .experience {
    width: 910px;
    padding: 24px;
  }

  .internal-experience {
    width: 876px;
    height: 258px;
    padding: 30px 86px 34px 86px;
  }

  h2.sign-up-heading {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
    letter-spacing: -1.422px;
    margin-bottom: 20px;
  }

  img.footer-medal {
    width: 363px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  img.footer-badge {
    width: 214px;
  }

  .widget-title,
  li.menu-item {
    font-size: 12px;
  }

  #desktop-footer {
    display: block;
  }

  footer#footer {
    background: url(https://rocketium.com/website/images/footer-bg.webp);
    background-size: cover;
  }

  .credits-section {
    align-items: center;
    gap: 30px;
  }

  .credit-text {
    font-size: 8.533px;
  }

  svg.linkedin-icon,
  svg.youtube-icon {
    width: 34.204px;
    height: 34.191px;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }
  .ai-inner-img {
    margin-top: 2rem;
  }

  .inner-img-bg {
    margin-top: 0rem;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .w-100 {
    width: auto !important;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 55px;
  }

  .section-title-big {
    font-size: 64px;
    letter-spacing: -2.04px;
  }

  .section-title {
    text-align: center;
    font-size: 40px;
    letter-spacing: -1.32px;
    margin-top: 45px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .banner-form {
    margin-top: 14px;
  }

  .hero-banner-gif {
    margin-top: 38px;
    border-radius: 48px;
  }

  .email-address {
    width: 240px;
    display: flex;
    padding: 16px 18px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 34.133px;
    border: 0.356px solid rgba(2, 1, 6, 0.3);
    background: #fff;
    margin-right: 12px;
  }

  .email-address::placeholder {
    color: #82899d;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .primary-button-form {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .hero-banner {
    width: 874.667px;
    height: 466.489px;
  }

  p.logo-text {
    margin-bottom: 30px;
  }

  .logo-desktop.py-5 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .fab img {
    max-width: 100%;
    max-height: 24px;
  }

  .ai-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  img.brand-element {
    width: 129px;
    height: 82px;
  }

  .ai-section-heading {
    width: 608px;
    font-size: 32px;
  }

  .inner-content {
    padding: 20px 32px;
  }

  .products-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .blue-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #greenSection,
  #blueSection,
  #purpleSection {
    width: 1180px;
  }

  .inner {
    width: 910.222px;
    height: 573px;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab.png);
    background-repeat: no-repeat;
    margin: 0 auto;
  }

  .inner-bg {
    width: 910.222px;
    height: 547px;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab-bg.png);
    background-repeat: no-repeat;
    margin: 0 auto;
  }

  .ai-inner-pill {
    width: 225px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-pill-blue,
  .ai-inner-pill-purple {
    width: 206px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-img {
    margin-top: 2rem;
  }

  .inner-img-bg {
    margin-top: 2rem;
  }

  .ai-inner-text {
    font-size: 23px;
  }

  .ai-section-subtext {
    font-size: 14px;
  }

  span.green,
  span.blue,
  span.purple {
    font-size: 14px;
  }

  .square-box-green,
  .square-box-blue,
  .square-box-purple {
    position: absolute;
    right: 8.5rem;
    width: 88.178px;
    height: 88.178px;
  }

  .arrow-green {
    width: 88.178px;
    height: 88.178px;
  }

  section.features.py-5 {
    padding-top: 45px !important;
    padding-bottom: 0px !important;
  }

  .heading-rocketium {
    font-size: 48px;
    letter-spacing: -0.88px;
  }

  .sub-heading-rocketium {
    font-size: 20px;
    letter-spacing: 0.171px;
  }

  img#displayImage {
    width: 307.091px;
    height: 416.159px;
  }

  .accordion-button {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 11.378px;
  }

  .heading-section-case {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .circles-purple {
    width: 129.625px;
    height: 82.489px;
  }

  img.img-fluid.why-rock {
    width: 122.92px;
    height: 78.222px;
  }

  .case-studies-container {
    margin-top: 56px;
    margin-bottom: 30px;
  }

  .tab-content.mt-5 {
    margin-top: 14px !important;
  }

  .testimonials-experience {
    margin-top: 20px;
  }

  .internal-testimonials-1,
  .internal-testimonials-2,
  .internal-testimonials-3,
  .internal-testimonials-4,
  .internal-testimonials-blue-1,
  .internal-testimonials-blue-2,
  .internal-testimonials-ca-1,
  .internal-testimonials-ca-2 {
    width: 930px;
    height: 340px;
    border-radius: 24px;
  }

  .testimonials-text {
    font-size: 24px;
    padding: 0px 135px;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 24px;
  }

  .test-sym {
    width: 46px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .cs-image-text {
    font-size: 24px;
  }

  button.cs-download-button {
    font-size: 12.8px;
  }

  .case-studies-text {
    width: 304.356px;
    font-size: 12.8px;
  }

  .nums {
    width: 375px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
  }

  .slide-content {
    width: 915px;
    height: 328px;
    margin-left: 0;
    background-image: url(https://rocketium.com/website/images/bg-cs-tab.png);
    background-repeat: no-repeat;
  }

  .cs-bg-section {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg1.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg2.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg3-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2 {
    width: auto;
    height: 291px;
    background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .square-box {
    width: 92px;
    height: 94px;
    position: absolute;
    top: 0rem;
    right: 2rem;
  }

  span.case-studies-number {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  p.cs-sub-text {
    font-size: 12px;
  }

  .cs-download,
  .cs-download-p {
    position: absolute;
    bottom: 20rem;
  }

  .slide-details {
    flex: 1;
    padding: 12px 0;
  }

  .tabs-slider-prev {
    left: 23rem;
    top: -2.5rem;
  }

  .tabs-slider-next {
    left: 35rem;
    top: -2.5rem;
  }

  .testimonials-swiper-button {
    position: relative;
    top: 2.5rem;
    left: 23rem;
    display: inline-block;
  }

  .integrations-heading {
    font-size: 48px;
    letter-spacing: -0.88px;
    text-align: end;
  }

  .integrations-text {
    font-size: 16px;
    letter-spacing: -0.341px;
    margin-top: 22px;
  }

  img.circles-img {
    width: 100vw;
  }

  .experience {
    width: 910px;
    padding: 24px;
  }

  .internal-experience {
    width: 876px;
    height: 258px;
    padding: 30px 86px 34px 86px;
  }

  h2.sign-up-heading {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
    letter-spacing: -1.422px;
    margin-bottom: 20px;
  }

  img.footer-medal {
    width: 363px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  img.footer-badge {
    width: 214px;
  }

  .widget-title,
  li.menu-item {
    font-size: 12px;
  }

  #desktop-footer {
    display: block;
  }

  footer#footer {
    background: url(https://rocketium.com/website/images/footer-bg.webp);
    background-size: cover;
  }

  .credits-section {
    align-items: center;
    gap: 30px;
  }

  .credit-text {
    font-size: 8.533px;
  }

  svg.linkedin-icon,
  svg.youtube-icon {
    width: 34.204px;
    height: 34.191px;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }
}

@media (min-width: 1181px) and (max-width: 1366px) {
  .w-100 {
    width: auto !important;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 55px;
  }

  .section-title-big {
    font-size: 68px;
    letter-spacing: -2.04px;
  }

  .section-title {
    text-align: center;
    font-size: 44px;
    letter-spacing: -1.32px;
    margin-top: 45px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    color: #020106;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .banner-form {
    margin-top: 14px;
  }

  .hero-banner-gif {
    margin-top: 38px;
    border-radius: 48px;
  }

  .email-address {
    width: 240px;
    display: flex;
    padding: 16px 18px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 34.133px;
    border: 0.356px solid rgba(2, 1, 6, 0.3);
    background: #fff;
    margin-right: 12px;
  }

  .email-address::placeholder {
    color: #82899d;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .primary-button-form {
    color: #fff;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  p.logo-text {
    margin-bottom: 30px;
  }

  .logo-desktop.py-5 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .fab img {
    max-width: 100%;
    max-height: 24px;
  }

  .ai-section {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  img.brand-element {
    width: 155px;
    height: 95px;
  }

  .ai-section-heading {
    width: 650px;
    font-size: 38px;
  }

  .inner-content {
    padding: 20px 32px;
  }

  .products-section {
    padding-top: 87px;
    padding-bottom: 10px;
  }

  .blue-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #greenSection,
  #blueSection,
  #purpleSection {
    width: 1336px;
  }

  .inner {
    width: 1140px;
    height: 803px;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto; /* Ensures centering */
  }

  .inner-bg {
    width: 1140px;
    height: 776px;
    background: url(https://rocketium.com/website/images/internal-ai-bg-tab-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto; /* Ensures centering */
  }

  .ai-inner-pill {
    width: 225px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-pill-blue,
  .ai-inner-pill-purple {
    width: 206px;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ai-inner-img {
    margin-top: 3.5rem;
  }

  .inner-img-bg {
    margin-top: 4rem;
  }

  .ai-inner-text {
    font-size: 32px;
  }

  .ai-section-subtext {
    font-size: 16px;
  }

  span.green,
  span.blue,
  span.purple {
    font-size: 16px;
  }

  .square-box-green,
  .square-box-blue,
  .square-box-purple {
    position: absolute;
    right: 6rem;
  }

  .arrow-green {
    width: 116.178px;
    height: 115.178px;
  }

  section.features.py-5 {
    padding-top: 45px !important;
    padding-bottom: 0px !important;
  }

  .heading-rocketium {
    font-size: 48px;
    letter-spacing: -0.88px;
  }

  .sub-heading-rocketium {
    font-size: 20px;
    letter-spacing: 0.171px;
  }

  img#displayImage {
    width: 307.091px;
    height: 416.159px;
  }

  .accordion-button {
    font-size: 14px;
  }

  .accordion-body {
    font-size: 11.378px;
  }

  .heading-section-case {
    font-size: 36px;
    letter-spacing: -0.64px;
  }

  .circles-purple {
    width: 129.625px;
    height: 82.489px;
  }

  img.img-fluid.why-rock {
    width: 122.92px;
    height: 78.222px;
  }

  .case-studies-container {
    margin-top: 56px;
    margin-bottom: 30px;
  }

  .tab-content.mt-5 {
    margin-top: 14px !important;
  }

  .testimonials-experience {
    margin-top: 20px;
  }

  .internal-testimonials-1,
  .internal-testimonials-2,
  .internal-testimonials-3,
  .internal-testimonials-4,
  .internal-testimonials-blue-1,
  .internal-testimonials-blue-2,
  .internal-testimonials-ca-1,
  .internal-testimonials-ca-2 {
    width: auto;
    height: 340px;
  }

  .testimonials-text {
    font-size: 24px;
    padding: 0px 240px;
  }

  .testimonials-author-title,
  .testimonials-author-title-blue,
  .testimonials-author-title-purple,
  .testimonials-author-title-orange {
    font-size: 24px;
  }

  .test-sym {
    width: 46px;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .cs-image-text {
    font-size: 32px;
  }

  button.cs-download-button {
    font-size: 16px;
  }

  .case-studies-text {
    width: 378px;
    font-size: 16px;
  }

  .nums {
    width: 420px;
  }

  .slide-content {
    width: 1140px; /* Adjust as needed */
    height: 400px; /* Adjust as needed */
    margin-left: 0;
    background-image: url(https://rocketium.com/website/images/bg-cs-tab.png);
    background-repeat: no-repeat;
    background-size: contain; /* Ensures the full image is visible */
    background-position: center; /* Centers the image */
  }

  .cs-bg-section {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/images/cs-bg1.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section1 {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/images/cs-bg2.webp) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2-lp {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/images/cs-bg3-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .cs-bg-section2 {
    width: auto;
    height: 364px;
    background-image: url(https://rocketium.com/website/images/cs-bg-lp.png) !important;
    border-radius: 12px;
    margin: 17px 0px 17px 17px;
  }

  .square-box {
    width: 122px;
    height: 124px;
    position: absolute;
    top: 0rem;
    right: 0rem;
  }

  span.case-studies-number {
    font-size: 42px;
    letter-spacing: -0.64px;
  }

  p.cs-sub-text {
    font-size: 16px;
  }

  .cs-download,
  .cs-download-p {
    position: absolute;
    bottom: 20rem;
  }

  .slide-details {
    flex: 1;
    padding: 12px 0;
  }

  .tabs-slider-prev {
    left: 29rem;
    top: -3.5rem;
  }

  .tabs-slider-next {
    left: 41rem;
    top: -3.5rem;
  }

  .testimonials-swiper-button {
    position: relative;
    top: 2.5rem;
    left: 29rem;
    display: inline-block;
  }

  .integrations-heading {
    font-size: 44px;
    letter-spacing: -0.88px;
    text-align: end;
  }

  .integrations-text {
    font-size: 17.067px;
    letter-spacing: -0.341px;
    margin-top: 22px;
  }

  img.circles-img {
    width: 100vw;
  }

  .experience {
    width: auto;
    padding: 24px;
  }

  .internal-experience {
    width: 1080px;
    height: 258px;
    padding: 30px 86px 34px 86px;
  }

  h2.sign-up-heading {
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 57.6px */
    letter-spacing: -1.422px;
    margin-bottom: 20px;
  }

  img.footer-medal {
    width: 363px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  img.footer-badge {
    width: 214px;
  }

  .widget-title,
  li.menu-item {
    font-size: 12px;
  }

  #desktop-footer {
    display: block;
  }

  footer#footer {
    background: url(https://rocketium.com/website/images/footer-bg.webp);
    background-size: cover;
  }

  .credits-section {
    align-items: center;
    gap: 30px;
  }

  .credit-text {
    font-size: 8.533px;
  }

  svg.linkedin-icon,
  svg.youtube-icon {
    width: 34.204px;
    height: 34.191px;
  }

  .nav-link {
    font-size: 11.662px;
  }

  .primary-button {
    font-size: 9.956px;
  }

  img.img-fluid.green-section {
    width: 122.925px;
    height: 78.222px;
  }
}
